From damienpaul at gmail.com Wed Aug 1 12:31:33 2012 From: damienpaul at gmail.com (Damo) Date: Wed, 1 Aug 2012 03:31:33 -0700 (PDT) Subject: conversion from RGB to grayscale Message-ID: <1343817093413-4024652.post@n3.nabble.com> I am curious as to what is the formula used to convert RGB images to grayscale, using the command RGB2Gray. Any information will be helpful. -- View this message in context: http://mailinglists.scilab.org/conversion-from-RGB-to-grayscale-tp4024652.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From vogt at centre-cired.fr Wed Aug 1 14:44:24 2012 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 01 Aug 2012 14:44:24 +0200 Subject: [scilab-Users] conversion from RGB to grayscale In-Reply-To: <1343817093413-4024652.post@n3.nabble.com> References: <1343817093413-4024652.post@n3.nabble.com> Message-ID: <501924A8.1000409@centre-cired.fr> Hi I do not know how scilab does it, but i've been tought (in a general context) to use the luminance when doing this. More info here: http://en.wikipedia.org/wiki/Luminance_%28relative%29 According to this method, one should compute Y = 0.2126 R + 0.7152 G + 0.0722 B and then use the color (Y,Y,Y) as a gray tone (in the RGB space). I did not check wether Scilab actually does this. PS: the NASA has a great page on color usage, contrast, and more: http://colorusage.arc.nasa.gov/guidelines.php Best Regards AVS 01/08/2012 12:31, Damo wrote: > I am curious as to what is the formula used to convert RGB images to > grayscale, using the command RGB2Gray. > > Any information will be helpful. > > > > -- > View this message in context: http://mailinglists.scilab.org/conversion-from-RGB-to-grayscale-tp4024652.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > > -- > To unsubscribe from this mailing-list, please send an empty mail to > users-unsubscribe at lists.scilab.org > To check the archives of this mailing list, see > http://mailinglists.scilab.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From vogt at centre-cired.fr Wed Aug 1 14:59:35 2012 From: vogt at centre-cired.fr (Adrien Vogt-Schilb) Date: Wed, 01 Aug 2012 14:59:35 +0200 Subject: [scilab-Users] Converting from continuous to discrete time tranfer function. In-Reply-To: References: Message-ID: <50192837.70207@centre-cired.fr> On 25/07/2012 00:16, steven hallacy wrote: > Hello, > > With Scilab, I know of two ways of converting from a continuous time > transfer function (e.g. 1/s) to a discrete time transfer funtion: > > 1st way: > s=poly(0,'s') > ss2tf(cls2dls(tf2ss(syslin('c',1/s)),0.1)) > > This way requires a lot of typing. > > 2nd Way: > s=poly(0,'s');z=poly(0,'z'); > sl=syslin('c',1/s); > sl2=horner(sl,(2/0.1)*(z-1)/(z+1)) > > This way requires me to remember the tustin approximation. > > Does matlab have anything like Matlab's c2d function? > > Stephen Hi Did you try defining it yourself? function y=c2d(x,p) if argn(2)<2 p=0.1 end y= ss2tf(cls2dls(tf2ss(syslin('c',x)),p)) endfunction s=poly(0,'s') c2d(1/s) you can do similar stuff each time you use something that requires lots of typing BR AVS -------------- next part -------------- An HTML attachment was scrubbed... URL: From sahallacy at hotmail.com Thu Aug 2 03:11:28 2012 From: sahallacy at hotmail.com (steven hallacy) Date: Wed, 1 Aug 2012 20:11:28 -0500 Subject: [scilab-Users] Converting from continuous to discrete time tranfer function. In-Reply-To: <50192837.70207@centre-cired.fr> References: ,<50192837.70207@centre-cired.fr> Message-ID: Thanks. Date: Wed, 1 Aug 2012 14:59:35 +0200 From: vogt at centre-cired.fr To: users at lists.scilab.org Subject: Re: [scilab-Users] Converting from continuous to discrete time tranfer function. On 25/07/2012 00:16, steven hallacy wrote: Hello, With Scilab, I know of two ways of converting from a continuous time transfer function (e.g. 1/s) to a discrete time transfer funtion: 1st way: s=poly(0,'s') ss2tf(cls2dls(tf2ss(syslin('c',1/s)),0.1)) This way requires a lot of typing. 2nd Way: s=poly(0,'s');z=poly(0,'z'); sl=syslin('c',1/s); sl2=horner(sl,(2/0.1)*(z-1)/(z+1)) This way requires me to remember the tustin approximation. Does matlab have anything like Matlab's c2d function? Stephen Hi Did you try defining it yourself? function y=c2d(x,p) if argn(2)<2 p=0.1 end y= ss2tf(cls2dls(tf2ss(syslin('c',x)),p)) endfunction s=poly(0,'s') c2d(1/s) you can do similar stuff each time you use something that requires lots of typing BR AVS -------------- next part -------------- An HTML attachment was scrubbed... URL: From communication at scilab-enterprises.com Thu Aug 2 11:01:05 2012 From: communication at scilab-enterprises.com (Communication) Date: Thu, 02 Aug 2012 11:01:05 +0200 Subject: Release of Scilab 5.4.0 beta 2 Message-ID: <501A41D1.3090100@scilab-enterprises.com> Dear Scilab Users, Scilab Enterprises is glad to announce the release of Scilab 5.4.0 beta 2 which includes new eigs function to calculate eigenvalues and eigenvectors of matrices and improvements in Scilab documentation. Scilab 5.4.0 beta 2 is a test version provided to the community and available for download on our website at: http://www.scilab.org/products/scilab/download/5.4.0-beta-2 If you find a bug, please report it to Scilab bug tracking system (http://bugzilla.scilab.org/). Best Regards -- Communications and Public Relations Department ---------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France http://www.scilab-enterprises.com From jasper at amsterchem.com Thu Aug 2 11:43:14 2012 From: jasper at amsterchem.com (jasper van baten) Date: Thu, 02 Aug 2012 11:43:14 +0200 Subject: [scilab-Users] Release of Scilab 5.4.0 beta 2 In-Reply-To: <501A41D1.3090100@scilab-enterprises.com> References: <501A41D1.3090100@scilab-enterprises.com> Message-ID: <501A4BB2.7080905@amsterchem.com> Dear Scilab Authors, The installer removes the registry keys in HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Scilab HKEY_LOCAL_MACHINE\SOFTWARE\Scilab for previous installed versions, which breaks compatibility of applications that depend on those keys. Can this be fixed? While at the subject of registry entries, the value HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Scilab\LASTINSTALL HKEY_LOCAL_MACHINE\SOFTWARE\Scilab\LASTINSTALL is written by an installation, and removed by an uninstallation, leaving no convenient way for applications that want to use scilab to find the latest installed version. For example, install 5.3.3, install 5.4 beta, uninstall 5.4 beta and the LASTINSTALL key is not present. Any suggestion on how to check for the scilab installation with the highest version number, short of searching the file system? Many thanks, best wishes, Jasper. On 8/2/2012 11:01, Communication wrote: > Dear Scilab Users, > > Scilab Enterprises is glad to announce the release of Scilab 5.4.0 > beta 2 which includes new eigs function to calculate eigenvalues and > eigenvectors of matrices and improvements in Scilab documentation. > > Scilab 5.4.0 beta 2 is a test version provided to the community and > available for download on our website at: > http://www.scilab.org/products/scilab/download/5.4.0-beta-2 > > If you find a bug, please report it to Scilab bug tracking system > (http://bugzilla.scilab.org/). > > Best Regards > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From craig at fasortronics.com Sat Aug 4 07:11:45 2012 From: craig at fasortronics.com (CraigD) Date: Fri, 3 Aug 2012 22:11:45 -0700 (PDT) Subject: Scilab 5.4.0 master compile error on OSX 10.7.4 Message-ID: <1344057105496-4024666.post@n3.nabble.com> I have successfully completed the "./configure" for the master version of Scilab on Mac OSX 10.7.4 and when I try to "make" I receive this error related to MATIO. Making all in matio ... src/c/matfile_manager.c: In function ?matfile_manager?: src/c/matfile_manager.c:98: error: dereferencing pointer to incomplete type make[2]: *** [libscimatio_algo_la-matfile_manager.lo] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all-recursive] Error 1 I found some mention of the problem being the use of MATIO 1.50.0 and I found an old patch -- I tried the suggested change in the patch but no luck. Do I need to use a different version of MATIO? Any help would be appreciated. PS: My purpose of compiling Scilab is to figure out the problem that I am having trying to "build" the CGLAB toolbox. I was successful "building" the toolbox in Ubuntu, but on the Mac I have not been successful. I thought that I would first try compiling on the Mac, but it has turned out being much more work than I had bargained for -- but I am still trying and learning a lot along the way. The nightly build binary works fine on the Mac, though the CGLAB toolbox will not "build". -- View this message in context: http://mailinglists.scilab.org/Scilab-5-4-0-master-compile-error-on-OSX-10-7-4-tp4024666.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From sylvestre.ledru at scilab-enterprises.com Sat Aug 4 15:20:32 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Sat, 04 Aug 2012 15:20:32 +0200 Subject: [scilab-Users] Scilab 5.4.0 master compile error on OSX 10.7.4 In-Reply-To: <1344057105496-4024666.post@n3.nabble.com> References: <1344057105496-4024666.post@n3.nabble.com> Message-ID: <501D21A0.20403@scilab-enterprises.com> Le 04/08/2012 07:11, CraigD a ?crit : > I have successfully completed the "./configure" for the master version of > Scilab on Mac OSX 10.7.4 and when I try to "make" I receive this error > related to MATIO. > > Making all in matio > ... > src/c/matfile_manager.c: In function ?matfile_manager?: > src/c/matfile_manager.c:98: error: dereferencing pointer to incomplete type > make[2]: *** [libscimatio_algo_la-matfile_manager.lo] Error 1 > make[1]: *** [all-recursive] Error 1 > make: *** [all-recursive] Error 1 > > I found some mention of the problem being the use of MATIO 1.50.0 and I > found an old patch -- I tried the suggested change in the patch but no luck. > Do I need to use a different version of MATIO? > > We do not support officially matio 1.5. Here is a patch for the version 1.5 on the code review but we might not merge it for Scilab 5.4.0: http://codereview.scilab.org/#/c/6680/ Otherwise, you should have a look to --without-matio in the configure It is not necessary for cglab. S Sylvestre From sylvestre.ledru at scilab-enterprises.com Sat Aug 4 17:24:59 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Sat, 04 Aug 2012 17:24:59 +0200 Subject: [scilab-Users] Release of Scilab 5.4.0 beta 2 In-Reply-To: <501A4BB2.7080905@amsterchem.com> References: <501A41D1.3090100@scilab-enterprises.com> <501A4BB2.7080905@amsterchem.com> Message-ID: <501D3ECB.8060103@scilab-enterprises.com> Hello, Please report a bug on this. Sylvestre Le 02/08/2012 11:43, jasper van baten a ?crit : > Dear Scilab Authors, > > The installer removes the registry keys in > > HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Scilab > HKEY_LOCAL_MACHINE\SOFTWARE\Scilab > > for previous installed versions, which breaks compatibility of > applications that depend on those keys. Can this be fixed? > > While at the subject of registry entries, the value > > HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Scilab\LASTINSTALL > HKEY_LOCAL_MACHINE\SOFTWARE\Scilab\LASTINSTALL > > is written by an installation, and removed by an uninstallation, > leaving no convenient way for applications that want to use scilab to > find the latest installed version. For example, install 5.3.3, install > 5.4 beta, uninstall 5.4 beta and the LASTINSTALL key is not present. > Any suggestion on how to check for the scilab installation with the > highest version number, short of searching the file system? > > Many thanks, best wishes, > > Jasper. > > > On 8/2/2012 11:01, Communication wrote: >> Dear Scilab Users, >> >> Scilab Enterprises is glad to announce the release of Scilab 5.4.0 >> beta 2 which includes new eigs function to calculate eigenvalues and >> eigenvectors of matrices and improvements in Scilab documentation. >> >> Scilab 5.4.0 beta 2 is a test version provided to the community and >> available for download on our website at: >> http://www.scilab.org/products/scilab/download/5.4.0-beta-2 >> >> If you find a bug, please report it to Scilab bug tracking system >> (http://bugzilla.scilab.org/). >> >> Best Regards >> >> > -- Sylvestre Ledru Operations Manager / Community Manager ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France http://www.scilab-enterprises.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael.baudin at contrib.scilab.org Sun Aug 5 19:30:56 2012 From: michael.baudin at contrib.scilab.org (michael.baudin at contrib.scilab.org) Date: Sun, 05 Aug 2012 19:30:56 +0200 Subject: [scilab-Users] new probability and statistics toolbox - CASCI In-Reply-To: References: Message-ID: <574c88af378685d7eb23fd23568bf4ee@contrib.scilab.org> Hi, This toolbox fills a space which is partly left empty by Scilab, so it is very much appreciated. It seems to have interesting functions for parameter estimation. The set of design of experiments functions is also nice. From my point of view, the main issue is the lack of help pages and the lack of tests. But this toolbox will be surely a source of inspiration for others. Best regards, Micha?l PS For an overview of tools for probabilities and statistics in Scilab, please consider: http://wiki.scilab.org/Documents%20and%20tutorials%20for%20Probabilities%20and%20Statistics%20in%20Scilab For an analysis of the "ideal" statistics module, please consider the on-going work at: http://wiki.scilab.org/The-Ideal-Statistics-Module On Sat, 28 Jul 2012 15:09:36 -0300, Ricardo Fabbri wrote: > Hi, > > I'd like to share with you the new probability and statistics toolbox > CASCI that I uploaded with permission from the authors to ATOMS and > FORGE: > > http://atoms.scilab.org/toolboxes/casci > > The git repository is in Forge. > > Perhaps that will save some people ongoing work. Please give us > feedback on the usefulness of such a toolbox. > > Here are the function descriptions: > > > intbinomial - binomial confidence interval > intexponential - exponential confidence interval > intnormalm - normal confidence interval for ? > intnormals - normal confidence interval for ? > intpoisson - Poisson confidence interval > cdfbeta - beta type 1 cdf > cdfbeta2 - beta type 2 cdf > cdfbinomial - binomial cdf > cdfchi2 - ?2 (central and non-central) cdf > cdfcv - sample coefficient of variation cdf > cdfdphase - discrete Phase-Type cdf > cdfexponential - exponential cdf > cdffisher - Fisher (central and non-central) cdf > cdffoldednormal - folded normal cdf > cdfgamma - gamma cdf > cdfgev - generalized Extreme Value cdf > cdfhypergeometric - hypergeometric cdf > cdfjohnson - Johnson?s cdf > cdflognormal - lognormal cdf > cdfmedian - normal sample median cdf > cdfnormal - normal cdf > cdfpareto - Pareto cdf > cdfpascal - Pascal cdf > cdfpoisson - Poisson cdf > cdfrnge - normal range cdf > cdfstandev - normal sample standard-deviation cdf > cdfstudent - Student (central and non-central) cdf > cdfweibull - Weibull cdf > boxbehnken - Box-Behnken designs > boxcoxlinear - Box-Cox linearity transformation > centralcomposite - central composite designs > coded2natural - coded to natural variables > doxpand - design expansion > doxptim - design optimisation > equiradial - equiradial designs > factorial2 - two levels full and fractional factorial designs > mulreg - multilinear regression analysis > mulregdisp - multilinear regression analysis results display > mulregplot - multilinear regression analysis results plot > natural2coded - natural to coded variables > plackettburman - Plackett-Burman designs > simpdex - simplex designs > fitbeta - beta type 1 parameters estimation > fitgamma - gamma parameters estimation > fitgev - generalized Extreme Value parameters estimation > fitjohnson - Johnson parameters estimation > fitlognormal - lognormal parameters estimation > fitweibull - Weibull parameters estimation > idfbeta - beta type 1 idf > idfbeta2 - beta type 2 idf > idfchi2 - ?2 (central and non-central) idf > idfcv - sample coefficient of variation idf > idfexponential - exponential idf > idffisher - Fisher (central and non-central) idf > idfgamma - gamma idf > idfgev - generalized Extreme Value idf > idfjohnson - Johnson?s idf > idflognormal - lognormal idf > idfmedian - normal sample median idf > idfnormal - normal idf > idfpareto - Pareto idf > idfstandev - normal sample standard-deviation idf > idfstudent - Student (central and non-central) idf > idfweibull - Weibull idf > allcombination - matrix element combinations > allpermutation - matrix element permutations > arrangement - number Ap of arrangements > combination - number Cn of combinations > confhyper - confluent hypergeometric function > depth - non parametric multivariate depth > hausdorff - Hausdorff (median) distance between polylines > lowess - LOcally WEighted Scatterplot Smoothing > momdphase - first moments of a Discrete Phase-Type distribution > nearestneighbors - find the k nearest neighbors > neldermead - Nelder Mead?s downhill simplex nonlinear optimization > algorithm > savitzkygolay - Savitzky-Golay smoothing filter > simplex - simplex computation > simplexolve - solve a system of non-linear equations > torczon - Torczon?s multidirectional nonlinear optimization algorithm > vandercorput - Van der Corput?s sequence > boxplot - Box plot > qplot - quantile plot > qqplot - quantile-quantile plot > pdfbeta - beta type 1 pdf > pdfbeta2 - beta type 2 pdf > pdfbinomial - binomial pdf > pdfchi2 - ?2 (central and non-central) pdf > pdfcp - CP pdf > pdfcpk - CP K pdf > pdfcpm - CP M pdf > pdfcpmk - CP M K pdf > pdfcpuv - V ?nnman?s Cp (u, v) pdf > pdfcv - sample coefficient of variation pdf > pdfdphase - discrete phase-type pdf > pdfexponential - exponential pdf > pdffisher - Fisher (central and non-central) pdf > pdffoldednormal - folded normal pdf > pdfgamma - gamma pdf > pdfgev - generalized Extreme Value pdf > pdfhypergeometric - hypergeometric pdf > pdfkernel - kernel smoothed pdf > pdfjohnson - Johnson?s pdf > pdflognormal - lognormal pdf > pdfmedian - normal sample median pdf > pdfmultinormal - multinormal pdf > pdfnormal - normal pdf > pdfpareto - Pareto pdf > pdfpascal - Pascal pdf > pdfpoisson - Poisson pdf > pdfrnge - normal range pdf > pdfstandev - normal sample standard-deviation pdf > pdfstudent - Student pdf > pdfweibull - Weibull pdf > quadhermite - Gauss-Hermite quadrature > quadlaguerre - Gauss-Laguerre quadrature > quadlegendre - Gauss-Legendre quadrature > quadsimpson - Simpson quadrature > rndbeta - beta type 1 random number generator > rndbeta2 - beta type 2 random number generator > rndbinomial - binomial random number generator > rndexponential - exponential random number generator > rndfoldednormal - folded normal random number generator > rndgamma - gamma random number generator > rndgev - generalized Extreme Value random number generator > rndjohnson - Johnson?s random number generator > rndlognormal - lognormal random number generator > rndmultinormal - multinormal random number generator > rndnormal - normal random number generator > rndpareto - Pareto random number generator > rndpascal - Pascal random number generator > rndpoisson - Poisson random number generator > rndstandev - normal sample standard-deviation random number > rndweibull - Weibull random number > generator > autocorrelation - autocorrelation coefficient > bootstrap - bootstrap sampling > correlation - correlation matrix > crosscorrelation - crosscorrelation coefficient > kurtosis - kurtosis coefficient > quantile - quantile > rnge - range > skewness - skewness coefficient > standev - standard deviation > totalmedian - total median coefficients > varcovar - variance-covariance matrix > arlmean - ARL of the mean control chart > arlmeanRR - ARL of the Run Rules mean control chart > arlmedian - ARL of the median control chart > arlmedianRR - ARL of the Run Rules median control chart > arlrnge - ARL of the range control chart > arlstandev - ARL of the standard-deviation control chart > arlstandevRR - ARL of the Run Rules standard-deviation control chart > cp - capability index CP estimation and confidence interval > cpk - capability index CP K estimation and confidence interval > krnge - range coefficients KR (n) > kstandev - standard-deviation coefficients KS (n, r) > mcpshahriari - Shahriari?s multivariate capability index CP > mcptaam - Taam?s multivariate capability index CP > andersondarling - Anderson-Darling?s normality test > ansaribradley - Ansari-Bradley?s test > bartlett - Bartlett?s test > grubbs - Grubbs test > kendall - Kendall?s test > levene - Levene?s test > mardia - Mardia?s test > spearman - Spearman?s test > tstbinomial1 - binomial one sample p test > tstbinomial2 - binomial two samples p test > tstexponential - exponential ? test > tstnormalm1 - normal one sample ? test > tstnormalm2 - normal two samples ? test > tstnormals1 - normal one sample ? test > tstnormals2 - normal two samples ? test > tstsku - normal skewness and kurtosis test > waldwolfowitz - Wald-Wolfowitz?s run test > wilcoxon1 - Wilcoxon?s one sample (paired) test > wilcoxon2 - Wilcoxon?s two samples test > > > > > -- > Dr Ricardo Fabbri > Professor of Computer Engineering > GNU/Linux registered user #175401 > www.lems.brown.edu/~rfabbri > pt.wikipedia.org/wiki/IPRJ > labmacambira.sf.net > > -- > To unsubscribe from this mailing-list, please send an empty mail to > users-unsubscribe at lists.scilab.org > To check the archives of this mailing list, see > http://mailinglists.scilab.org/ From hosti at telenet.be Mon Aug 6 22:43:51 2012 From: hosti at telenet.be (ivran) Date: Mon, 6 Aug 2012 13:43:51 -0700 (PDT) Subject: constrained optimalisation with f(x,y) polynomals Message-ID: <1344285831163-4024673.post@n3.nabble.com> hi guys, I'm having a big problem using scilab and some basic math. I would really appreciate some help with it 'cause i'm stuck - Consider the following problem: 2 polynomials, each describing a coordinate on its own. Together they form a 2D - f(x1,x2) surface which can have 2 - or more - maximums on a certain spot. f(x1) = p1 = 2 3 4 5 6 55.044419 - 1.3570362x1 + 0.0162766x1 - 0.0001039x1 + 0.0000004x1 - 4.592D-10x1 + 1.854D-13x1 f(x2) = p2 = 2 3 4 5 6 560.98702 - 23.76471x2 + 0.2962816x2 - 0.0009662x2 + 0.0000013x2 - 8.576D-10x2 + 2.074D-13x2 I have two problems here: 1) Does anyone know how to combine these 1D polynomials to a 2D polynomial? f(x1, x2) = px1x2 = p1 + p2 ...won't work. How can I solve this without overloading the '+' method? 2) suppose I *could* combine these 2 functions: f(x1, x2) = ...x1 + ...x2 + ...x1^n + ..x2^n how can I find the maximum values of this function?, given the following constraints: x1.x2 <= 1024 x1.x2 >= 0 I'm (a little) familiar with Lagrange and the scilab procedures regarding this topic... but it would be very helpful if someone could post me a example of this (or something close related) 2D constrained optimization problem. I'm really stuck at this... could you point me in the right direction? ..tkx in advance!! Iwein -- View this message in context: http://mailinglists.scilab.org/constrained-optimalisation-with-f-x-y-polynomals-tp4024673.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From doucetjb at hotmail.com Tue Aug 7 10:15:01 2012 From: doucetjb at hotmail.com (Jean-Baptiste DOUCET) Date: Tue, 7 Aug 2012 10:15:01 +0200 Subject: How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: References: <1344189195.16587.blah>,,<5020C905.6090901@scilab-enterprises.com>, Message-ID: Hi, I am a beginner, and I have few knowledges about Scilab. I am working with Scilab 5.3. under Linux. I read several tutorials about how to import a Matrix from a .txt file to Scilab, but I always get error message. The kind of .txt file I have to habdle is the following one: PH-7: STEAMING RATES FOR FA 12AC, CYCLE 24 STEAMING RATES [kg/(m2s)] FOR ROD I1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0277 0,0518 0,0167 0,0016 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0023 0,0000 0,0000 0,0008 0,0068 0,0352 0,0892 0,1348 0,0879 0,0473 0,0164 0,0013 0,0000 0,0000 0,0000 274,35 cm 0,0532 0,0208 0,0212 0,0416 0,0653 0,1268 0,2032 0,2524 0,2020 0,1463 0,0891 0,0429 0,0128 0,0054 0,0000 280,07 cm 0,0879 0,0483 0,0539 0,0916 0,1292 0,2048 0,2796 0,3316 0,3056 0,2627 0,2076 0,1480 0,0913 0,0710 0,0000 285,78 cm 0,2462 0,1908 0,1965 0,2439 0,2815 0,3433 0,3981 0,3750 0,4191 0,3876 0,3457 0,2963 0,2396 0,2149 0,0000 291,50 cm 0,2677 0,2188 0,2353 0,2903 0,3298 0,3874 0,3114 0,3704 0,3622 0,3309 0,4271 0,3921 0,3515 0,3339 0,0000 297,21 cm 0,3646 0,3246 0,3359 0,3783 0,4090 0,3384 0,4002 0,4477 0,4430 0,4186 0,3836 0,3414 0,2924 0,3480 0,0000 302,93 cm 0,3451 0,3096 0,3323 0,2383 0,2945 0,3664 0,4256 0,4764 0,4870 0,4734 0,4504 0,4217 0,3877 0,3734 0,0000 308,64 cm 0,3075 0,4059 0,2948 0,3543 0,3964 0,4511 0,4966 0,5386 0,5496 0,5395 0,5213 0,4985 0,4717 0,4608 0,0394 314,36 cm 0,2286 0,1895 0,2331 0,3114 0,3655 0,4270 0,4766 0,5253 0,5503 0,5484 0,5386 0,5240 0,5061 0,4994 0,1102 320,07 cm 0,3241 0,2917 0,3264 0,3890 0,4323 0,4820 0,5234 0,5664 0,5906 0,5899 0,5818 0,5697 0,5547 0,5491 0,2164 325,79 cm 0,1835 0,1481 0,2014 0,2900 0,3511 0,4140 0,4631 0,4869 0,5237 0,5555 0,5546 0,5495 0,5414 0,5391 0,2225 331,51 cm 0,2779 0,2466 0,2925 0,3643 0,4136 0,4649 0,4807 0,5058 0,5418 0,5477 0,5698 0,5880 0,5816 0,5800 0,1625 337,22 cm 0,1394 0,1074 0,1613 0,2478 0,3092 0,2922 0,3525 0,4089 0,4490 0,4587 0,4625 0,4627 0,4609 0,4616 0,0714 342,94 cm 0,2228 0,1913 0,2424 0,3146 0,3650 0,3543 0,4030 0,4514 0,4888 0,4987 0,5033 0,5051 0,5046 0,5058 0,1644 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0069 0,0506 0,1296 0,1940 0,2122 0,2237 0,2327 0,2405 0,2467 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0021 0,0329 0,1074 0,1103 0,1976 0,2575 0,2745 0,2859 0,2953 0,3036 0,3097 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0057 0,0135 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0083 0,0115 0,0340 0,0511 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD J1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0067 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0062 0,0382 0,0660 0,0255 0,0050 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0043 0,0000 0,0000 0,0019 0,0107 0,0454 0,1065 0,1546 0,1060 0,0613 0,0251 0,0044 0,0000 0,0000 0,0000 274,35 cm 0,0618 0,0222 0,0235 0,0483 0,0760 0,1438 0,2232 0,2715 0,2231 0,1673 0,1074 0,0562 0,0204 0,0107 0,0000 280,07 cm 0,0985 0,0504 0,0575 0,1010 0,1430 0,2224 0,2976 0,3479 0,3235 0,2823 0,2285 0,1688 0,1096 0,0875 0,0000 285,78 cm 0,2592 0,1957 0,2035 0,2559 0,2950 0,3581 0,4125 0,3209 0,4334 0,4032 0,3630 0,3156 0,2608 0,2367 0,0000 291,50 cm 0,2808 0,2236 0,2420 0,3006 0,3418 0,4006 0,3306 0,3875 0,3803 0,3505 0,3807 0,4074 0,3684 0,3515 0,0000 297,21 cm 0,3749 0,3284 0,3407 0,3865 0,4186 0,3543 0,4154 0,4613 0,4575 0,4341 0,4006 0,3601 0,3130 0,2923 0,0000 302,93 cm 0,3561 0,3134 0,3376 0,2507 0,3086 0,3808 0,4394 0,4888 0,4995 0,4866 0,4645 0,4367 0,4040 0,3903 0,0011 308,64 cm 0,3209 0,4094 0,3019 0,3650 0,4080 0,4629 0,5082 0,5491 0,5604 0,5505 0,5330 0,5109 0,4852 0,4745 0,0545 314,36 cm 0,2429 0,1951 0,2414 0,3228 0,3776 0,4391 0,4881 0,5356 0,5605 0,5589 0,5493 0,5353 0,5180 0,5113 0,1326 320,07 cm 0,3358 0,2959 0,3331 0,3977 0,4417 0,4922 0,5334 0,5754 0,5996 0,5990 0,5912 0,5794 0,5648 0,5594 0,2395 325,79 cm 0,1975 0,1536 0,2092 0,3006 0,3622 0,4256 0,4743 0,4700 0,5077 0,5648 0,5640 0,5593 0,5515 0,5493 0,2452 331,51 cm 0,2898 0,2516 0,2987 0,3729 0,4228 0,4748 0,4649 0,5165 0,5521 0,5580 0,5566 0,5745 0,5904 0,5888 0,1881 337,22 cm 0,1547 0,1136 0,1701 0,2598 0,2770 0,3093 0,3682 0,4224 0,4614 0,4711 0,4749 0,4755 0,4737 0,4744 0,0933 342,94 cm 0,2370 0,1982 0,2503 0,3248 0,3752 0,3683 0,4160 0,4628 0,4993 0,5092 0,5139 0,5156 0,5152 0,5165 0,1904 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0138 0,0690 0,1545 0,2175 0,2348 0,2458 0,2543 0,2616 0,2674 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0047 0,0432 0,1277 0,1338 0,2199 0,2769 0,2932 0,3040 0,3128 0,3207 0,3265 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0018 0,0134 0,0239 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0056 0,0215 0,0495 0,0692 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD A9 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0004 0,0019 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0159 0,0244 0,0074 0,0038 0,0038 0,0025 0,0100 0,0158 0,0013 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 274,35 cm 0,0947 0,1130 0,0699 0,0563 0,0551 0,0467 0,0696 0,0831 0,0404 0,0153 0,0016 0,0000 0,0000 0,0000 0,0000 280,07 cm 0,1367 0,1625 0,1202 0,1116 0,1153 0,1034 0,1360 0,1633 0,1224 0,0823 0,0450 0,0178 0,0027 0,0004 0,0000 285,78 cm 0,2981 0,3209 0,2781 0,2669 0,2687 0,2530 0,2834 0,3074 0,2718 0,2286 0,1763 0,1225 0,0738 0,0570 0,0000 291,50 cm 0,3173 0,3425 0,3119 0,3112 0,3191 0,3079 0,3371 0,3673 0,3549 0,3274 0,2895 0,2449 0,1948 0,1744 0,0000 297,21 cm 0,4048 0,4248 0,3975 0,3955 0,4007 0,3896 0,3491 0,3097 0,3660 0,4063 0,3757 0,3393 0,2971 0,2792 0,0000 302,93 cm 0,3856 0,4092 0,3237 0,2587 0,2802 0,2708 0,3099 0,3529 0,3571 0,3379 0,3076 0,3469 0,3821 0,3703 0,0000 308,64 cm 0,3522 0,3785 0,3609 0,3714 0,3867 0,3780 0,4069 0,4409 0,4468 0,4330 0,4103 0,3819 0,3483 0,3345 0,0000 314,36 cm 0,2781 0,3117 0,3051 0,3295 0,3555 0,3518 0,3859 0,4291 0,4531 0,4501 0,4380 0,4208 0,3993 0,3912 0,0060 320,07 cm 0,3650 0,3922 0,3854 0,4043 0,4246 0,4209 0,4479 0,4848 0,5076 0,5061 0,4967 0,4829 0,4656 0,4592 0,0555 325,79 cm 0,2324 0,2686 0,2722 0,3072 0,3413 0,3407 0,3763 0,4232 0,4608 0,4680 0,4674 0,4622 0,4536 0,4512 0,0598 331,51 cm 0,3196 0,3490 0,3509 0,3790 0,4065 0,4057 0,4343 0,4746 0,5095 0,5170 0,5174 0,5138 0,5072 0,5056 0,1561 337,22 cm 0,1878 0,2249 0,2318 0,2658 0,2999 0,2931 0,2303 0,2850 0,3317 0,3443 0,3900 0,4290 0,4304 0,4327 0,0586 342,94 cm 0,2678 0,2989 0,3035 0,3310 0,3587 0,3532 0,3435 0,3510 0,3925 0,4046 0,4420 0,4743 0,4765 0,4791 0,1432 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0071 0,0313 0,0439 0,0548 0,0654 0,0757 0,0832 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0060 0,0268 0,0268 0,0581 0,1138 0,1759 0,1990 0,2170 0,2331 0,2477 0,2570 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0021 0,0088 0,0000 If you open this .txt file with wordpad, you see how it looks like. I have to import 3 Matrix of this file. I tried with mfscanf and with fscanfMat, but nothing helps, I always become error messages. My Matrix should be with 15 columns and 66 lines, the number of columns changes, but not the number of lines. I dont' need the first column with the cm. What could you suggest me? It would be really helpfull, because I am not coming forward. Thank you very much for your support! Best Regards, jean-baptiste doucet -------------- next part -------------- An HTML attachment was scrubbed... URL: From denis.crete at thalesgroup.com Tue Aug 7 10:17:36 2012 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Tue, 7 Aug 2012 10:17:36 +0200 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: References: <1344189195.16587.blah>,,<5020C905.6090901@scilab-enterprises.com>, Message-ID: <25374_1344327441_5020CF11_25374_3014_1_908CBC9017354841B2F32BBEC70A05A101C37EBB6C21@THSONEA01CMS01P.one.grp> I suspect the ? cm ? and the ? , ? instead of "." are 2 problems. Denis De : Jean-Baptiste DOUCET [mailto:doucetjb at hotmail.com] Envoy? : mardi 7 ao?t 2012 10:15 ? : users at lists.scilab.org Objet : [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hi, I am a beginner, and I have few knowledges about Scilab. I am working with Scilab 5.3. under Linux. I read several tutorials about how to import a Matrix from a .txt file to Scilab, but I always get error message. The kind of .txt file I have to habdle is the following one: PH-7: STEAMING RATES FOR FA 12AC, CYCLE 24 STEAMING RATES [kg/(m2s)] FOR ROD I1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0277 0,0518 0,0167 0,0016 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0023 0,0000 0,0000 0,0008 0,0068 0,0352 0,0892 0,1348 0,0879 0,0473 0,0164 0,0013 0,0000 0,0000 0,0000 274,35 cm 0,0532 0,0208 0,0212 0,0416 0,0653 0,1268 0,2032 0,2524 0,2020 0,1463 0,0891 0,0429 0,0128 0,0054 0,0000 280,07 cm 0,0879 0,0483 0,0539 0,0916 0,1292 0,2048 0,2796 0,3316 0,3056 0,2627 0,2076 0,1480 0,0913 0,0710 0,0000 285,78 cm 0,2462 0,1908 0,1965 0,2439 0,2815 0,3433 0,3981 0,3750 0,4191 0,3876 0,3457 0,2963 0,2396 0,2149 0,0000 291,50 cm 0,2677 0,2188 0,2353 0,2903 0,3298 0,3874 0,3114 0,3704 0,3622 0,3309 0,4271 0,3921 0,3515 0,3339 0,0000 297,21 cm 0,3646 0,3246 0,3359 0,3783 0,4090 0,3384 0,4002 0,4477 0,4430 0,4186 0,3836 0,3414 0,2924 0,3480 0,0000 302,93 cm 0,3451 0,3096 0,3323 0,2383 0,2945 0,3664 0,4256 0,4764 0,4870 0,4734 0,4504 0,4217 0,3877 0,3734 0,0000 308,64 cm 0,3075 0,4059 0,2948 0,3543 0,3964 0,4511 0,4966 0,5386 0,5496 0,5395 0,5213 0,4985 0,4717 0,4608 0,0394 314,36 cm 0,2286 0,1895 0,2331 0,3114 0,3655 0,4270 0,4766 0,5253 0,5503 0,5484 0,5386 0,5240 0,5061 0,4994 0,1102 320,07 cm 0,3241 0,2917 0,3264 0,3890 0,4323 0,4820 0,5234 0,5664 0,5906 0,5899 0,5818 0,5697 0,5547 0,5491 0,2164 325,79 cm 0,1835 0,1481 0,2014 0,2900 0,3511 0,4140 0,4631 0,4869 0,5237 0,5555 0,5546 0,5495 0,5414 0,5391 0,2225 331,51 cm 0,2779 0,2466 0,2925 0,3643 0,4136 0,4649 0,4807 0,5058 0,5418 0,5477 0,5698 0,5880 0,5816 0,5800 0,1625 337,22 cm 0,1394 0,1074 0,1613 0,2478 0,3092 0,2922 0,3525 0,4089 0,4490 0,4587 0,4625 0,4627 0,4609 0,4616 0,0714 342,94 cm 0,2228 0,1913 0,2424 0,3146 0,3650 0,3543 0,4030 0,4514 0,4888 0,4987 0,5033 0,5051 0,5046 0,5058 0,1644 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0069 0,0506 0,1296 0,1940 0,2122 0,2237 0,2327 0,2405 0,2467 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0021 0,0329 0,1074 0,1103 0,1976 0,2575 0,2745 0,2859 0,2953 0,3036 0,3097 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0057 0,0135 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0083 0,0115 0,0340 0,0511 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD J1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0067 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0062 0,0382 0,0660 0,0255 0,0050 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0043 0,0000 0,0000 0,0019 0,0107 0,0454 0,1065 0,1546 0,1060 0,0613 0,0251 0,0044 0,0000 0,0000 0,0000 274,35 cm 0,0618 0,0222 0,0235 0,0483 0,0760 0,1438 0,2232 0,2715 0,2231 0,1673 0,1074 0,0562 0,0204 0,0107 0,0000 280,07 cm 0,0985 0,0504 0,0575 0,1010 0,1430 0,2224 0,2976 0,3479 0,3235 0,2823 0,2285 0,1688 0,1096 0,0875 0,0000 285,78 cm 0,2592 0,1957 0,2035 0,2559 0,2950 0,3581 0,4125 0,3209 0,4334 0,4032 0,3630 0,3156 0,2608 0,2367 0,0000 291,50 cm 0,2808 0,2236 0,2420 0,3006 0,3418 0,4006 0,3306 0,3875 0,3803 0,3505 0,3807 0,4074 0,3684 0,3515 0,0000 297,21 cm 0,3749 0,3284 0,3407 0,3865 0,4186 0,3543 0,4154 0,4613 0,4575 0,4341 0,4006 0,3601 0,3130 0,2923 0,0000 302,93 cm 0,3561 0,3134 0,3376 0,2507 0,3086 0,3808 0,4394 0,4888 0,4995 0,4866 0,4645 0,4367 0,4040 0,3903 0,0011 308,64 cm 0,3209 0,4094 0,3019 0,3650 0,4080 0,4629 0,5082 0,5491 0,5604 0,5505 0,5330 0,5109 0,4852 0,4745 0,0545 314,36 cm 0,2429 0,1951 0,2414 0,3228 0,3776 0,4391 0,4881 0,5356 0,5605 0,5589 0,5493 0,5353 0,5180 0,5113 0,1326 320,07 cm 0,3358 0,2959 0,3331 0,3977 0,4417 0,4922 0,5334 0,5754 0,5996 0,5990 0,5912 0,5794 0,5648 0,5594 0,2395 325,79 cm 0,1975 0,1536 0,2092 0,3006 0,3622 0,4256 0,4743 0,4700 0,5077 0,5648 0,5640 0,5593 0,5515 0,5493 0,2452 331,51 cm 0,2898 0,2516 0,2987 0,3729 0,4228 0,4748 0,4649 0,5165 0,5521 0,5580 0,5566 0,5745 0,5904 0,5888 0,1881 337,22 cm 0,1547 0,1136 0,1701 0,2598 0,2770 0,3093 0,3682 0,4224 0,4614 0,4711 0,4749 0,4755 0,4737 0,4744 0,0933 342,94 cm 0,2370 0,1982 0,2503 0,3248 0,3752 0,3683 0,4160 0,4628 0,4993 0,5092 0,5139 0,5156 0,5152 0,5165 0,1904 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0138 0,0690 0,1545 0,2175 0,2348 0,2458 0,2543 0,2616 0,2674 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0047 0,0432 0,1277 0,1338 0,2199 0,2769 0,2932 0,3040 0,3128 0,3207 0,3265 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0018 0,0134 0,0239 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0056 0,0215 0,0495 0,0692 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD A9 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0004 0,0019 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0159 0,0244 0,0074 0,0038 0,0038 0,0025 0,0100 0,0158 0,0013 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 274,35 cm 0,0947 0,1130 0,0699 0,0563 0,0551 0,0467 0,0696 0,0831 0,0404 0,0153 0,0016 0,0000 0,0000 0,0000 0,0000 280,07 cm 0,1367 0,1625 0,1202 0,1116 0,1153 0,1034 0,1360 0,1633 0,1224 0,0823 0,0450 0,0178 0,0027 0,0004 0,0000 285,78 cm 0,2981 0,3209 0,2781 0,2669 0,2687 0,2530 0,2834 0,3074 0,2718 0,2286 0,1763 0,1225 0,0738 0,0570 0,0000 291,50 cm 0,3173 0,3425 0,3119 0,3112 0,3191 0,3079 0,3371 0,3673 0,3549 0,3274 0,2895 0,2449 0,1948 0,1744 0,0000 297,21 cm 0,4048 0,4248 0,3975 0,3955 0,4007 0,3896 0,3491 0,3097 0,3660 0,4063 0,3757 0,3393 0,2971 0,2792 0,0000 302,93 cm 0,3856 0,4092 0,3237 0,2587 0,2802 0,2708 0,3099 0,3529 0,3571 0,3379 0,3076 0,3469 0,3821 0,3703 0,0000 308,64 cm 0,3522 0,3785 0,3609 0,3714 0,3867 0,3780 0,4069 0,4409 0,4468 0,4330 0,4103 0,3819 0,3483 0,3345 0,0000 314,36 cm 0,2781 0,3117 0,3051 0,3295 0,3555 0,3518 0,3859 0,4291 0,4531 0,4501 0,4380 0,4208 0,3993 0,3912 0,0060 320,07 cm 0,3650 0,3922 0,3854 0,4043 0,4246 0,4209 0,4479 0,4848 0,5076 0,5061 0,4967 0,4829 0,4656 0,4592 0,0555 325,79 cm 0,2324 0,2686 0,2722 0,3072 0,3413 0,3407 0,3763 0,4232 0,4608 0,4680 0,4674 0,4622 0,4536 0,4512 0,0598 331,51 cm 0,3196 0,3490 0,3509 0,3790 0,4065 0,4057 0,4343 0,4746 0,5095 0,5170 0,5174 0,5138 0,5072 0,5056 0,1561 337,22 cm 0,1878 0,2249 0,2318 0,2658 0,2999 0,2931 0,2303 0,2850 0,3317 0,3443 0,3900 0,4290 0,4304 0,4327 0,0586 342,94 cm 0,2678 0,2989 0,3035 0,3310 0,3587 0,3532 0,3435 0,3510 0,3925 0,4046 0,4420 0,4743 0,4765 0,4791 0,1432 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0071 0,0313 0,0439 0,0548 0,0654 0,0757 0,0832 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0060 0,0268 0,0268 0,0581 0,1138 0,1759 0,1990 0,2170 0,2331 0,2477 0,2570 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0021 0,0088 0,0000 If you open this .txt file with wordpad, you see how it looks like. I have to import 3 Matrix of this file. I tried with mfscanf and with fscanfMat, but nothing helps, I always become error messages. My Matrix should be with 15 columns and 66 lines, the number of columns changes, but not the number of lines. I dont' need the first column with the cm. What could you suggest me? It would be really helpfull, because I am not coming forward. Thank you very much for your support! Best Regards, jean-baptiste doucet -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael.baudin at contrib.scilab.org Tue Aug 7 10:17:49 2012 From: michael.baudin at contrib.scilab.org (michael.baudin at contrib.scilab.org) Date: Tue, 07 Aug 2012 10:17:49 +0200 Subject: [scilab-Users] constrained optimalisation with f(x,y) polynomals In-Reply-To: <1344285831163-4024673.post@n3.nabble.com> References: <1344285831163-4024673.post@n3.nabble.com> Message-ID: <711a988c072b9cf7d3cec100273f3775@contrib.scilab.org> Hi, There is no multivariate polynomial in Scilab, so you cannot create a 2-variable polynomial by adding to single-variable polynomials. With neldermead, it is relatively simple to find the minimum of a 2-variable function, with nonlinear constraints. The script below prints the following output (in Scilab 5.3.3): xopt 10.239741 99.999999 fopt - 870129.52 copt 1023.974 This is not very accurate, but might be sufficient, depending on your goals. If you need a more accurate computation, you may use the fmincon toolbox : http://atoms.scilab.org/toolboxes/fmincon or ipopt: http://atoms.scilab.org/toolboxes/sci_ipopt But this might be more complicated, because these two tools are still in alpha stage. Best regards, Micha?l PS // Optimize an additive 2D polynomial with neldermead. function [f, c, index]=my2dpolynomial(x, index) f = [] c = [] if ( index==2 | index==6 ) then p1 = 1. - 2*x(1) + 3*x(1)^2 + 0.4*x(1)^3 p2 = 5. - 6*x(2) + 7*x(2)^2 + 0.8*x(2)^3 f = -p1 - p2 end if ( index==5 | index==6 ) then c1 = x(1) * x(2) c2 = 1024 - c1 c = [c1 c2] end endfunction rand("seed" , 0); x0 = [1. 1.].'; // Compute f(x0) fx0 = my2dpolynomial ( x0 , 2 ) // Compute the constraints: [ fx0 , cx0, index ] = my2dpolynomial ( x0 , 6 ) // Setup optimization nm = neldermead_new (); nm = neldermead_configure(nm,"-numberofvariables",2); nm = neldermead_configure(nm,"-function",my2dpolynomial); nm = neldermead_configure(nm,"-x0",x0); nm = neldermead_configure(nm,"-method","box"); nm = neldermead_configure(nm,"-nbineqconst",2); nm = neldermead_configure(nm,"-simplex0method","randbounds"); nm = neldermead_configure(nm,"-boundsmin",[0.0 0.0]); nm = neldermead_configure(nm,"-boundsmax",[100.0 100.0]); // Check that the cost function is correctly connected. [ nm , result ] = neldermead_function ( nm , x0 ); // // Perform optimization nm = neldermead_search(nm); xopt = neldermead_get(nm,"-xopt"); disp("xopt") disp(xopt) fopt = neldermead_get(nm,"-fopt") disp("fopt") disp(fopt) nm = neldermead_destroy(nm); disp("copt") disp(xopt(1)*xopt(2)) On Mon, 6 Aug 2012 13:43:51 -0700 (PDT), ivran wrote: > hi guys, > > I'm having a big problem using scilab and some basic math. I would > really > appreciate some help with it 'cause i'm stuck - Consider the > following > problem: > > 2 polynomials, each describing a coordinate on its own. Together they > form a > 2D - f(x1,x2) surface which can have 2 - or more - maximums on a > certain > spot. > > f(x1) = p1 = 2 3 > > 4 5 6 > 55.044419 - 1.3570362x1 + 0.0162766x1 - 0.0001039x1 + 0.0000004x1 > - > 4.592D-10x1 + 1.854D-13x1 > > f(x2) = p2 = 2 3 4 > 5 6 > 560.98702 - 23.76471x2 + 0.2962816x2 - 0.0009662x2 + 0.0000013x2 > - > 8.576D-10x2 + 2.074D-13x2 > > I have two problems here: > > 1) Does anyone know how to combine these 1D polynomials to a 2D > polynomial? > f(x1, x2) = px1x2 = p1 + p2 > ...won't work. How can I solve this without overloading the '+' > method? > > 2) suppose I *could* combine these 2 functions: > f(x1, x2) = ...x1 + ...x2 + ...x1^n + ..x2^n > how can I find the maximum values of this function?, given the > following > constraints: > x1.x2 <= 1024 > x1.x2 >= 0 > > I'm (a little) familiar with Lagrange and the scilab procedures > regarding > this topic... but it would be very helpful if someone could post me a > example of this (or something close related) 2D constrained > optimization > problem. > > I'm really stuck at this... could you point me in the right > direction? ..tkx > in advance!! > > Iwein > > > > > > > -- > View this message in context: > > http://mailinglists.scilab.org/constrained-optimalisation-with-f-x-y-polynomals-tp4024673.html > Sent from the Scilab users - Mailing Lists Archives mailing list > archive at Nabble.com. > > -- > To unsubscribe from this mailing-list, please send an empty mail to > users-unsubscribe at lists.scilab.org > To check the archives of this mailing list, see > http://mailinglists.scilab.org/ From saketkc at gmail.com Tue Aug 7 10:18:01 2012 From: saketkc at gmail.com (Saket Choudhary) Date: Tue, 7 Aug 2012 13:48:01 +0530 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: References: <5020C905.6090901@scilab-enterprises.com> Message-ID: You can use 'fscanfMat()' this will read the textfile in a Matrix http://help.scilab.org/docs/5.3.3/en_US/fscanfMat.html On 7 August 2012 13:45, Jean-Baptiste DOUCET wrote: > > Hi, > > > I am a beginner, and I have few knowledges about Scilab. I am working with > Scilab 5.3. under Linux. I read several tutorials about how to import a > Matrix from a .txt file to Scilab, but I always get error message. > The kind of .txt file I have to habdle is the following one: > PH-7: STEAMING RATES FOR FA 12AC, CYCLE 24 > > STEAMING RATES [kg/(m2s)] FOR ROD I1 > EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 > 224,998 239,998 254,998 269,998 276,809 285,181 > 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0277 0,0518 0,0167 > 0,0016 0,0000 0,0000 0,0000 0,0000 0,0000 > 268,63 cm 0,0023 0,0000 0,0000 0,0008 0,0068 0,0352 0,0892 0,1348 0,0879 > 0,0473 0,0164 0,0013 0,0000 0,0000 0,0000 > 274,35 cm 0,0532 0,0208 0,0212 0,0416 0,0653 0,1268 0,2032 0,2524 0,2020 > 0,1463 0,0891 0,0429 0,0128 0,0054 0,0000 > 280,07 cm 0,0879 0,0483 0,0539 0,0916 0,1292 0,2048 0,2796 0,3316 0,3056 > 0,2627 0,2076 0,1480 0,0913 0,0710 0,0000 > 285,78 cm 0,2462 0,1908 0,1965 0,2439 0,2815 0,3433 0,3981 0,3750 0,4191 > 0,3876 0,3457 0,2963 0,2396 0,2149 0,0000 > 291,50 cm 0,2677 0,2188 0,2353 0,2903 0,3298 0,3874 0,3114 0,3704 0,3622 > 0,3309 0,4271 0,3921 0,3515 0,3339 0,0000 > 297,21 cm 0,3646 0,3246 0,3359 0,3783 0,4090 0,3384 0,4002 0,4477 0,4430 > 0,4186 0,3836 0,3414 0,2924 0,3480 0,0000 > 302,93 cm 0,3451 0,3096 0,3323 0,2383 0,2945 0,3664 0,4256 0,4764 0,4870 > 0,4734 0,4504 0,4217 0,3877 0,3734 0,0000 > 308,64 cm 0,3075 0,4059 0,2948 0,3543 0,3964 0,4511 0,4966 0,5386 0,5496 > 0,5395 0,5213 0,4985 0,4717 0,4608 0,0394 > 314,36 cm 0,2286 0,1895 0,2331 0,3114 0,3655 0,4270 0,4766 0,5253 0,5503 > 0,5484 0,5386 0,5240 0,5061 0,4994 0,1102 > 320,07 cm 0,3241 0,2917 0,3264 0,3890 0,4323 0,4820 0,5234 0,5664 0,5906 > 0,5899 0,5818 0,5697 0,5547 0,5491 0,2164 > 325,79 cm 0,1835 0,1481 0,2014 0,2900 0,3511 0,4140 0,4631 0,4869 0,5237 > 0,5555 0,5546 0,5495 0,5414 0,5391 0,2225 > 331,51 cm 0,2779 0,2466 0,2925 0,3643 0,4136 0,4649 0,4807 0,5058 0,5418 > 0,5477 0,5698 0,5880 0,5816 0,5800 0,1625 > 337,22 cm 0,1394 0,1074 0,1613 0,2478 0,3092 0,2922 0,3525 0,4089 0,4490 > 0,4587 0,4625 0,4627 0,4609 0,4616 0,0714 > 342,94 cm 0,2228 0,1913 0,2424 0,3146 0,3650 0,3543 0,4030 0,4514 0,4888 > 0,4987 0,5033 0,5051 0,5046 0,5058 0,1644 > 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0069 0,0506 0,1296 0,1940 > 0,2122 0,2237 0,2327 0,2405 0,2467 0,0000 > 354,37 cm 0,0000 0,0000 0,0000 0,0021 0,0329 0,1074 0,1103 0,1976 0,2575 > 0,2745 0,2859 0,2953 0,3036 0,3097 0,0000 > 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0057 0,0135 0,0000 > 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0004 0,0083 0,0115 0,0340 0,0511 0,0000 > > > STEAMING RATES [kg/(m2s)] FOR ROD J1 > EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 > 224,998 239,998 254,998 269,998 276,809 285,181 > 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0067 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0062 0,0382 0,0660 0,0255 > 0,0050 0,0000 0,0000 0,0000 0,0000 0,0000 > 268,63 cm 0,0043 0,0000 0,0000 0,0019 0,0107 0,0454 0,1065 0,1546 0,1060 > 0,0613 0,0251 0,0044 0,0000 0,0000 0,0000 > 274,35 cm 0,0618 0,0222 0,0235 0,0483 0,0760 0,1438 0,2232 0,2715 0,2231 > 0,1673 0,1074 0,0562 0,0204 0,0107 0,0000 > 280,07 cm 0,0985 0,0504 0,0575 0,1010 0,1430 0,2224 0,2976 0,3479 0,3235 > 0,2823 0,2285 0,1688 0,1096 0,0875 0,0000 > 285,78 cm 0,2592 0,1957 0,2035 0,2559 0,2950 0,3581 0,4125 0,3209 0,4334 > 0,4032 0,3630 0,3156 0,2608 0,2367 0,0000 > 291,50 cm 0,2808 0,2236 0,2420 0,3006 0,3418 0,4006 0,3306 0,3875 0,3803 > 0,3505 0,3807 0,4074 0,3684 0,3515 0,0000 > 297,21 cm 0,3749 0,3284 0,3407 0,3865 0,4186 0,3543 0,4154 0,4613 0,4575 > 0,4341 0,4006 0,3601 0,3130 0,2923 0,0000 > 302,93 cm 0,3561 0,3134 0,3376 0,2507 0,3086 0,3808 0,4394 0,4888 0,4995 > 0,4866 0,4645 0,4367 0,4040 0,3903 0,0011 > 308,64 cm 0,3209 0,4094 0,3019 0,3650 0,4080 0,4629 0,5082 0,5491 0,5604 > 0,5505 0,5330 0,5109 0,4852 0,4745 0,0545 > 314,36 cm 0,2429 0,1951 0,2414 0,3228 0,3776 0,4391 0,4881 0,5356 0,5605 > 0,5589 0,5493 0,5353 0,5180 0,5113 0,1326 > 320,07 cm 0,3358 0,2959 0,3331 0,3977 0,4417 0,4922 0,5334 0,5754 0,5996 > 0,5990 0,5912 0,5794 0,5648 0,5594 0,2395 > 325,79 cm 0,1975 0,1536 0,2092 0,3006 0,3622 0,4256 0,4743 0,4700 0,5077 > 0,5648 0,5640 0,5593 0,5515 0,5493 0,2452 > 331,51 cm 0,2898 0,2516 0,2987 0,3729 0,4228 0,4748 0,4649 0,5165 0,5521 > 0,5580 0,5566 0,5745 0,5904 0,5888 0,1881 > 337,22 cm 0,1547 0,1136 0,1701 0,2598 0,2770 0,3093 0,3682 0,4224 0,4614 > 0,4711 0,4749 0,4755 0,4737 0,4744 0,0933 > 342,94 cm 0,2370 0,1982 0,2503 0,3248 0,3752 0,3683 0,4160 0,4628 0,4993 > 0,5092 0,5139 0,5156 0,5152 0,5165 0,1904 > 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0138 0,0690 0,1545 0,2175 > 0,2348 0,2458 0,2543 0,2616 0,2674 0,0000 > 354,37 cm 0,0000 0,0000 0,0000 0,0047 0,0432 0,1277 0,1338 0,2199 0,2769 > 0,2932 0,3040 0,3128 0,3207 0,3265 0,0000 > 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0018 0,0134 0,0239 0,0000 > 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0056 0,0215 0,0495 0,0692 0,0000 > > > STEAMING RATES [kg/(m2s)] FOR ROD A9 > EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 > 224,998 239,998 254,998 269,998 276,809 285,181 > 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 262,92 cm 0,0004 0,0019 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 268,63 cm 0,0159 0,0244 0,0074 0,0038 0,0038 0,0025 0,0100 0,0158 0,0013 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 274,35 cm 0,0947 0,1130 0,0699 0,0563 0,0551 0,0467 0,0696 0,0831 0,0404 > 0,0153 0,0016 0,0000 0,0000 0,0000 0,0000 > 280,07 cm 0,1367 0,1625 0,1202 0,1116 0,1153 0,1034 0,1360 0,1633 0,1224 > 0,0823 0,0450 0,0178 0,0027 0,0004 0,0000 > 285,78 cm 0,2981 0,3209 0,2781 0,2669 0,2687 0,2530 0,2834 0,3074 0,2718 > 0,2286 0,1763 0,1225 0,0738 0,0570 0,0000 > 291,50 cm 0,3173 0,3425 0,3119 0,3112 0,3191 0,3079 0,3371 0,3673 0,3549 > 0,3274 0,2895 0,2449 0,1948 0,1744 0,0000 > 297,21 cm 0,4048 0,4248 0,3975 0,3955 0,4007 0,3896 0,3491 0,3097 0,3660 > 0,4063 0,3757 0,3393 0,2971 0,2792 0,0000 > 302,93 cm 0,3856 0,4092 0,3237 0,2587 0,2802 0,2708 0,3099 0,3529 0,3571 > 0,3379 0,3076 0,3469 0,3821 0,3703 0,0000 > 308,64 cm 0,3522 0,3785 0,3609 0,3714 0,3867 0,3780 0,4069 0,4409 0,4468 > 0,4330 0,4103 0,3819 0,3483 0,3345 0,0000 > 314,36 cm 0,2781 0,3117 0,3051 0,3295 0,3555 0,3518 0,3859 0,4291 0,4531 > 0,4501 0,4380 0,4208 0,3993 0,3912 0,0060 > 320,07 cm 0,3650 0,3922 0,3854 0,4043 0,4246 0,4209 0,4479 0,4848 0,5076 > 0,5061 0,4967 0,4829 0,4656 0,4592 0,0555 > 325,79 cm 0,2324 0,2686 0,2722 0,3072 0,3413 0,3407 0,3763 0,4232 0,4608 > 0,4680 0,4674 0,4622 0,4536 0,4512 0,0598 > 331,51 cm 0,3196 0,3490 0,3509 0,3790 0,4065 0,4057 0,4343 0,4746 0,5095 > 0,5170 0,5174 0,5138 0,5072 0,5056 0,1561 > 337,22 cm 0,1878 0,2249 0,2318 0,2658 0,2999 0,2931 0,2303 0,2850 0,3317 > 0,3443 0,3900 0,4290 0,4304 0,4327 0,0586 > 342,94 cm 0,2678 0,2989 0,3035 0,3310 0,3587 0,3532 0,3435 0,3510 0,3925 > 0,4046 0,4420 0,4743 0,4765 0,4791 0,1432 > 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0071 0,0313 > 0,0439 0,0548 0,0654 0,0757 0,0832 0,0000 > 354,37 cm 0,0000 0,0000 0,0000 0,0060 0,0268 0,0268 0,0581 0,1138 0,1759 > 0,1990 0,2170 0,2331 0,2477 0,2570 0,0000 > 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0021 0,0088 0,0000 > > If you open this .txt file with wordpad, you see how it looks like. > I have to import 3 Matrix of this file. I tried with mfscanf and with > fscanfMat, but nothing helps, I always become error messages. > > My Matrix should be with 15 columns and 66 lines, the number of columns > changes, but not the number of lines. I dont' need the first column with > the cm. > What could you suggest me? It would be really helpfull, because I am not > coming forward. > Thank you very much for your support! > Best Regards, jean-baptiste doucet > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From saketkc at gmail.com Tue Aug 7 10:24:04 2012 From: saketkc at gmail.com (Saket Choudhary) Date: Tue, 7 Aug 2012 13:54:04 +0530 Subject: Plotting without firing up X Window Message-ID: Hi I have been working on a Scilab installation on a Server. I ssh to the server and then run 'scilab-adv-cli' Let me emphasize that i ssh without '-X' , thus not enabling Xsessions, and this is my constraint. I don't want to /can't use -X for ssh here. Is there a way to stil plot in Scilab without X ? Is there a way to directly save the plot to a file without firing up an X Window ? Thanks ! Saket -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab-enterprises.com Tue Aug 7 10:30:25 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Tue, 07 Aug 2012 10:30:25 +0200 Subject: [scilab-Users] Plotting without firing up X Window In-Reply-To: References: Message-ID: <5020D221.9060408@scilab-enterprises.com> Le 07/08/2012 10:24, Saket Choudhary a ?crit : > Hi > > I have been working on a Scilab installation on a Server. I ssh to the > server and then run 'scilab-adv-cli' > > Let me emphasize that i ssh without '-X' , thus not enabling Xsessions, > and this is my constraint. I don't want to /can't use -X for ssh here. > > Is there a way to stil plot in Scilab without X ? Is there a way to > directly save the plot to a file without firing up an X Window ? From the 5.4.0 beta 1 release, you can use the triplet driver/xinit/xend: See: http://help.scilab.org/docs/5.4.0-beta-2/en_US/driver.html Sylvestre From doucetjb at hotmail.com Tue Aug 7 10:35:25 2012 From: doucetjb at hotmail.com (Jean-Baptiste DOUCET) Date: Tue, 7 Aug 2012 10:35:25 +0200 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: <25374_1344327441_5020CF11_25374_3014_1_908CBC9017354841B2F32BBEC70A05A101C37EBB6C21@THSONEA01CMS01P.one.grp> References: <1344189195.16587.blah>,,<5020C905.6090901@scilab-enterprises.com>,,,<25374_1344327441_5020CF11_25374_3014_1_908CBC9017354841B2F32BBEC70A05A101C37EBB6C21@THSONEA01CMS01P.one.grp> Message-ID: Hi Denis, actually the original file was with "." and not with ",", I converted it because I exploited my file in excel. But I can try with the original one. And you're wright, I want get ride of the "cm" columns. I found this tutorials (http://www.commentcamarche.net/forum/affich-7312880-recuperer-des-donnees-d-un-txt-avec-scilab), I tried to adapt it to my matrix - please be patient, I am a beginner: [fid,mes]=mopen('fichier.txt','r'); // scilab was able to open my .txt file for k=1:5; dummy=mgetl(fid); // scilab couldn't come along with this line, actually I didn't really understand what was meant, but I wanted to see what I get like this end; clear dummy; eof=meof(fid); k=1; while eof==0; v=mfscanf(fid,['%s %s %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f']); // supposed to get ride of my first two columns. mat(k,:)=v(1:15);//supposed to reinject my 15 elements into my new matrix clear v; eof=meof(fid); k=k+1; end; mclose(fid); Thank you for your support From: denis.crete at thalesgroup.com To: users at lists.scilab.org Date: Tue, 7 Aug 2012 10:17:36 +0200 Subject: RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux I suspect the ? cm ? and the ? , ? instead of ?.? are 2 problems.Denis De : Jean-Baptiste DOUCET [mailto:doucetjb at hotmail.com] Envoy? : mardi 7 ao?t 2012 10:15 ? : users at lists.scilab.org Objet : [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hi, I am a beginner, and I have few knowledges about Scilab. I am working with Scilab 5.3. under Linux. I read several tutorials about how to import a Matrix from a .txt file to Scilab, but I always get error message. The kind of .txt file I have to habdle is the following one: PH-7: STEAMING RATES FOR FA 12AC, CYCLE 24 STEAMING RATES [kg/(m2s)] FOR ROD I1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0277 0,0518 0,0167 0,0016 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0023 0,0000 0,0000 0,0008 0,0068 0,0352 0,0892 0,1348 0,0879 0,0473 0,0164 0,0013 0,0000 0,0000 0,0000 274,35 cm 0,0532 0,0208 0,0212 0,0416 0,0653 0,1268 0,2032 0,2524 0,2020 0,1463 0,0891 0,0429 0,0128 0,0054 0,0000 280,07 cm 0,0879 0,0483 0,0539 0,0916 0,1292 0,2048 0,2796 0,3316 0,3056 0,2627 0,2076 0,1480 0,0913 0,0710 0,0000 285,78 cm 0,2462 0,1908 0,1965 0,2439 0,2815 0,3433 0,3981 0,3750 0,4191 0,3876 0,3457 0,2963 0,2396 0,2149 0,0000 291,50 cm 0,2677 0,2188 0,2353 0,2903 0,3298 0,3874 0,3114 0,3704 0,3622 0,3309 0,4271 0,3921 0,3515 0,3339 0,0000 297,21 cm 0,3646 0,3246 0,3359 0,3783 0,4090 0,3384 0,4002 0,4477 0,4430 0,4186 0,3836 0,3414 0,2924 0,3480 0,0000 302,93 cm 0,3451 0,3096 0,3323 0,2383 0,2945 0,3664 0,4256 0,4764 0,4870 0,4734 0,4504 0,4217 0,3877 0,3734 0,0000 308,64 cm 0,3075 0,4059 0,2948 0,3543 0,3964 0,4511 0,4966 0,5386 0,5496 0,5395 0,5213 0,4985 0,4717 0,4608 0,0394 314,36 cm 0,2286 0,1895 0,2331 0,3114 0,3655 0,4270 0,4766 0,5253 0,5503 0,5484 0,5386 0,5240 0,5061 0,4994 0,1102 320,07 cm 0,3241 0,2917 0,3264 0,3890 0,4323 0,4820 0,5234 0,5664 0,5906 0,5899 0,5818 0,5697 0,5547 0,5491 0,2164 325,79 cm 0,1835 0,1481 0,2014 0,2900 0,3511 0,4140 0,4631 0,4869 0,5237 0,5555 0,5546 0,5495 0,5414 0,5391 0,2225 331,51 cm 0,2779 0,2466 0,2925 0,3643 0,4136 0,4649 0,4807 0,5058 0,5418 0,5477 0,5698 0,5880 0,5816 0,5800 0,1625 337,22 cm 0,1394 0,1074 0,1613 0,2478 0,3092 0,2922 0,3525 0,4089 0,4490 0,4587 0,4625 0,4627 0,4609 0,4616 0,0714 342,94 cm 0,2228 0,1913 0,2424 0,3146 0,3650 0,3543 0,4030 0,4514 0,4888 0,4987 0,5033 0,5051 0,5046 0,5058 0,1644 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0069 0,0506 0,1296 0,1940 0,2122 0,2237 0,2327 0,2405 0,2467 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0021 0,0329 0,1074 0,1103 0,1976 0,2575 0,2745 0,2859 0,2953 0,3036 0,3097 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0057 0,0135 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0083 0,0115 0,0340 0,0511 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD J1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0067 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0062 0,0382 0,0660 0,0255 0,0050 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0043 0,0000 0,0000 0,0019 0,0107 0,0454 0,1065 0,1546 0,1060 0,0613 0,0251 0,0044 0,0000 0,0000 0,0000 274,35 cm 0,0618 0,0222 0,0235 0,0483 0,0760 0,1438 0,2232 0,2715 0,2231 0,1673 0,1074 0,0562 0,0204 0,0107 0,0000 280,07 cm 0,0985 0,0504 0,0575 0,1010 0,1430 0,2224 0,2976 0,3479 0,3235 0,2823 0,2285 0,1688 0,1096 0,0875 0,0000 285,78 cm 0,2592 0,1957 0,2035 0,2559 0,2950 0,3581 0,4125 0,3209 0,4334 0,4032 0,3630 0,3156 0,2608 0,2367 0,0000 291,50 cm 0,2808 0,2236 0,2420 0,3006 0,3418 0,4006 0,3306 0,3875 0,3803 0,3505 0,3807 0,4074 0,3684 0,3515 0,0000 297,21 cm 0,3749 0,3284 0,3407 0,3865 0,4186 0,3543 0,4154 0,4613 0,4575 0,4341 0,4006 0,3601 0,3130 0,2923 0,0000 302,93 cm 0,3561 0,3134 0,3376 0,2507 0,3086 0,3808 0,4394 0,4888 0,4995 0,4866 0,4645 0,4367 0,4040 0,3903 0,0011 308,64 cm 0,3209 0,4094 0,3019 0,3650 0,4080 0,4629 0,5082 0,5491 0,5604 0,5505 0,5330 0,5109 0,4852 0,4745 0,0545 314,36 cm 0,2429 0,1951 0,2414 0,3228 0,3776 0,4391 0,4881 0,5356 0,5605 0,5589 0,5493 0,5353 0,5180 0,5113 0,1326 320,07 cm 0,3358 0,2959 0,3331 0,3977 0,4417 0,4922 0,5334 0,5754 0,5996 0,5990 0,5912 0,5794 0,5648 0,5594 0,2395 325,79 cm 0,1975 0,1536 0,2092 0,3006 0,3622 0,4256 0,4743 0,4700 0,5077 0,5648 0,5640 0,5593 0,5515 0,5493 0,2452 331,51 cm 0,2898 0,2516 0,2987 0,3729 0,4228 0,4748 0,4649 0,5165 0,5521 0,5580 0,5566 0,5745 0,5904 0,5888 0,1881 337,22 cm 0,1547 0,1136 0,1701 0,2598 0,2770 0,3093 0,3682 0,4224 0,4614 0,4711 0,4749 0,4755 0,4737 0,4744 0,0933 342,94 cm 0,2370 0,1982 0,2503 0,3248 0,3752 0,3683 0,4160 0,4628 0,4993 0,5092 0,5139 0,5156 0,5152 0,5165 0,1904 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0138 0,0690 0,1545 0,2175 0,2348 0,2458 0,2543 0,2616 0,2674 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0047 0,0432 0,1277 0,1338 0,2199 0,2769 0,2932 0,3040 0,3128 0,3207 0,3265 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0018 0,0134 0,0239 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0056 0,0215 0,0495 0,0692 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD A9 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0004 0,0019 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0159 0,0244 0,0074 0,0038 0,0038 0,0025 0,0100 0,0158 0,0013 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 274,35 cm 0,0947 0,1130 0,0699 0,0563 0,0551 0,0467 0,0696 0,0831 0,0404 0,0153 0,0016 0,0000 0,0000 0,0000 0,0000 280,07 cm 0,1367 0,1625 0,1202 0,1116 0,1153 0,1034 0,1360 0,1633 0,1224 0,0823 0,0450 0,0178 0,0027 0,0004 0,0000 285,78 cm 0,2981 0,3209 0,2781 0,2669 0,2687 0,2530 0,2834 0,3074 0,2718 0,2286 0,1763 0,1225 0,0738 0,0570 0,0000 291,50 cm 0,3173 0,3425 0,3119 0,3112 0,3191 0,3079 0,3371 0,3673 0,3549 0,3274 0,2895 0,2449 0,1948 0,1744 0,0000 297,21 cm 0,4048 0,4248 0,3975 0,3955 0,4007 0,3896 0,3491 0,3097 0,3660 0,4063 0,3757 0,3393 0,2971 0,2792 0,0000 302,93 cm 0,3856 0,4092 0,3237 0,2587 0,2802 0,2708 0,3099 0,3529 0,3571 0,3379 0,3076 0,3469 0,3821 0,3703 0,0000 308,64 cm 0,3522 0,3785 0,3609 0,3714 0,3867 0,3780 0,4069 0,4409 0,4468 0,4330 0,4103 0,3819 0,3483 0,3345 0,0000 314,36 cm 0,2781 0,3117 0,3051 0,3295 0,3555 0,3518 0,3859 0,4291 0,4531 0,4501 0,4380 0,4208 0,3993 0,3912 0,0060 320,07 cm 0,3650 0,3922 0,3854 0,4043 0,4246 0,4209 0,4479 0,4848 0,5076 0,5061 0,4967 0,4829 0,4656 0,4592 0,0555 325,79 cm 0,2324 0,2686 0,2722 0,3072 0,3413 0,3407 0,3763 0,4232 0,4608 0,4680 0,4674 0,4622 0,4536 0,4512 0,0598 331,51 cm 0,3196 0,3490 0,3509 0,3790 0,4065 0,4057 0,4343 0,4746 0,5095 0,5170 0,5174 0,5138 0,5072 0,5056 0,1561 337,22 cm 0,1878 0,2249 0,2318 0,2658 0,2999 0,2931 0,2303 0,2850 0,3317 0,3443 0,3900 0,4290 0,4304 0,4327 0,0586 342,94 cm 0,2678 0,2989 0,3035 0,3310 0,3587 0,3532 0,3435 0,3510 0,3925 0,4046 0,4420 0,4743 0,4765 0,4791 0,1432 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0071 0,0313 0,0439 0,0548 0,0654 0,0757 0,0832 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0060 0,0268 0,0268 0,0581 0,1138 0,1759 0,1990 0,2170 0,2331 0,2477 0,2570 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0021 0,0088 0,0000 If you open this .txt file with wordpad, you see how it looks like. I have to import 3 Matrix of this file. I tried with mfscanf and with fscanfMat, but nothing helps, I always become error messages. My Matrix should be with 15 columns and 66 lines, the number of columns changes, but not the number of lines. I dont' need the first column with the cm. What could you suggest me? It would be really helpfull, because I am not coming forward. Thank you very much for your support! Best Regards, jean-baptiste doucet -------------- next part -------------- An HTML attachment was scrubbed... URL: From saketkc at gmail.com Tue Aug 7 11:00:26 2012 From: saketkc at gmail.com (Saket Choudhary) Date: Tue, 7 Aug 2012 14:30:26 +0530 Subject: [scilab-Users] Plotting without firing up X Window In-Reply-To: <5020D221.9060408@scilab-enterprises.com> References: <5020D221.9060408@scilab-enterprises.com> Message-ID: Thanks Sylvestre, Worked like a charm. Saket On 7 August 2012 14:00, Sylvestre Ledru < sylvestre.ledru at scilab-enterprises.com> wrote: > Le 07/08/2012 10:24, Saket Choudhary a ?crit : > > Hi >> >> I have been working on a Scilab installation on a Server. I ssh to the >> server and then run 'scilab-adv-cli' >> >> Let me emphasize that i ssh without '-X' , thus not enabling Xsessions, >> and this is my constraint. I don't want to /can't use -X for ssh here. >> >> Is there a way to stil plot in Scilab without X ? Is there a way to >> directly save the plot to a file without firing up an X Window ? >> > From the 5.4.0 beta 1 release, you can use the triplet driver/xinit/xend: > > See: > http://help.scilab.org/docs/5.**4.0-beta-2/en_US/driver.html > > Sylvestre > > -- > To unsubscribe from this mailing-list, please send an empty mail to > users-unsubscribe at lists.**scilab.org > To check the archives of this mailing list, see > http://mailinglists.scilab.**org/ > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Tue Aug 7 15:36:55 2012 From: sgougeon at free.fr (Samuel Gougeon) Date: Tue, 07 Aug 2012 15:36:55 +0200 Subject: Styles and layout for XML help files edition Message-ID: <502119F7.9050700@free.fr> Hello, Is it possible to have the Scilab help pages styles and layout within the Serna free XML editor ? When editing a xml Scilab help file with Serna, an error message is displayed : /No template is found for the document . /Then, there is a button "Choose a template". When pressing the "Choose a template", a dialog appears, in which it is possible to browse for setting the default with - a schema file - a CSS file Browsing for a schema expects some .xsd files, while the best guess that i have found in the scilab binary distribution are some .rng files in SCI\modules\helptools\schema\. Trying with SCI\modules\helptools\schema\scilab.rng and SCI\modules\helptools\schema\extendedStyle.xsl Then an error is displayed: /"Impossible to analyse the schema: The schema document does not have W3C correct namespace (should be http://www.w3.org/2001/XMLSchema) //The validation will not be supported." / OK, i just need the layout and styles. Finally, entering OK leads to Trying with other files in SCI\modules\helptools\xsl\* and in SCI\modules\helptools\data\css\* leads to other critical errors. Is there any standard Scilab files for using Serna (or other XML editors) for Scilab help pages edition? Thanks Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: moz-screenshot-2.png Type: image/png Size: 9062 bytes Desc: not available URL: From hosti at telenet.be Tue Aug 7 15:49:49 2012 From: hosti at telenet.be (ivran) Date: Tue, 7 Aug 2012 06:49:49 -0700 (PDT) Subject: constrained optimalisation with f(x,y) polynomals In-Reply-To: <711a988c072b9cf7d3cec100273f3775@contrib.scilab.org> References: <1344285831163-4024673.post@n3.nabble.com> <711a988c072b9cf7d3cec100273f3775@contrib.scilab.org> Message-ID: <3f591d4d-dfdf-4f45-a0e6-aa2190dbe0d3@jelani.telenet-ops.be> Micha?l , I really appreciate your reply!! It helped me a lot. Tkx! Iwein ----- Oorspronkelijk e-mail ----- Van: "michael.baudin [via Scilab / Xcos - Mailing Lists Archives]" Aan: "ivran" Verzonden: Dinsdag 7 augustus 2012 10:18:53 Onderwerp: Re: constrained optimalisation with f(x,y) polynomals Hi, There is no multivariate polynomial in Scilab, so you cannot create a 2-variable polynomial by adding to single-variable polynomials. With neldermead, it is relatively simple to find the minimum of a 2-variable function, with nonlinear constraints. The script below prints the following output (in Scilab 5.3.3): xopt 10.239741 99.999999 fopt - 870129.52 copt 1023.974 This is not very accurate, but might be sufficient, depending on your goals. If you need a more accurate computation, you may use the fmincon toolbox : http://atoms.scilab.org/toolboxes/fmincon or ipopt: http://atoms.scilab.org/toolboxes/sci_ipopt But this might be more complicated, because these two tools are still in alpha stage. Best regards, Micha?l PS // Optimize an additive 2D polynomial with neldermead. function [f, c, index]=my2dpolynomial(x, index) f = [] c = [] if ( index==2 | index==6 ) then p1 = 1. - 2*x(1) + 3*x(1)^2 + 0.4*x(1)^3 p2 = 5. - 6*x(2) + 7*x(2)^2 + 0.8*x(2)^3 f = -p1 - p2 end if ( index==5 | index==6 ) then c1 = x(1) * x(2) c2 = 1024 - c1 c = [c1 c2] end endfunction rand("seed" , 0); x0 = [1. 1.].'; // Compute f(x0) fx0 = my2dpolynomial ( x0 , 2 ) // Compute the constraints: [ fx0 , cx0, index ] = my2dpolynomial ( x0 , 6 ) // Setup optimization nm = neldermead_new (); nm = neldermead_configure(nm,"-numberofvariables",2); nm = neldermead_configure(nm,"-function",my2dpolynomial); nm = neldermead_configure(nm,"-x0",x0); nm = neldermead_configure(nm,"-method","box"); nm = neldermead_configure(nm,"-nbineqconst",2); nm = neldermead_configure(nm,"-simplex0method","randbounds"); nm = neldermead_configure(nm,"-boundsmin",[0.0 0.0]); nm = neldermead_configure(nm,"-boundsmax",[100.0 100.0]); // Check that the cost function is correctly connected. [ nm , result ] = neldermead_function ( nm , x0 ); // // Perform optimization nm = neldermead_search(nm); xopt = neldermead_get(nm,"-xopt"); disp("xopt") disp(xopt) fopt = neldermead_get(nm,"-fopt") disp("fopt") disp(fopt) nm = neldermead_destroy(nm); disp("copt") disp(xopt(1)*xopt(2)) On Mon, 6 Aug 2012 13:43:51 -0700 (PDT), ivran < [hidden email] > wrote: > hi guys, > > I'm having a big problem using scilab and some basic math. I would > really > appreciate some help with it 'cause i'm stuck - Consider the > following > problem: > > 2 polynomials, each describing a coordinate on its own. Together they > form a > 2D - f(x1,x2) surface which can have 2 - or more - maximums on a > certain > spot. > > f(x1) = p1 = 2 3 > > 4 5 6 > 55.044419 - 1.3570362x1 + 0.0162766x1 - 0.0001039x1 + 0.0000004x1 > - > 4.592D-10x1 + 1.854D-13x1 > > f(x2) = p2 = 2 3 4 > 5 6 > 560.98702 - 23.76471x2 + 0.2962816x2 - 0.0009662x2 + 0.0000013x2 > - > 8.576D-10x2 + 2.074D-13x2 > > I have two problems here: > > 1) Does anyone know how to combine these 1D polynomials to a 2D > polynomial? > f(x1, x2) = px1x2 = p1 + p2 > ...won't work. How can I solve this without overloading the '+' > method? > > 2) suppose I *could* combine these 2 functions: > f(x1, x2) = ...x1 + ...x2 + ...x1^n + ..x2^n > how can I find the maximum values of this function?, given the > following > constraints: > x1.x2 <= 1024 > x1.x2 >= 0 > > I'm (a little) familiar with Lagrange and the scilab procedures > regarding > this topic... but it would be very helpful if someone could post me a > example of this (or something close related) 2D constrained > optimization > problem. > > I'm really stuck at this... could you point me in the right > direction? ..tkx > in advance!! > > Iwein > > > > > > > -- > View this message in context: > > http://mailinglists.scilab.org/constrained-optimalisation-with-f-x-y-polynomals-tp4024673.html > Sent from the Scilab users - Mailing Lists Archives mailing list > archive at Nabble.com. > > -- > To unsubscribe from this mailing-list, please send an empty mail to > [hidden email] > To check the archives of this mailing list, see > http://mailinglists.scilab.org/ -- To unsubscribe from this mailing-list, please send an empty mail to [hidden email] To check the archives of this mailing list, see http://mailinglists.scilab.org/ If you reply to this email, your message will be added to the discussion below: http://mailinglists.scilab.org/constrained-optimalisation-with-f-x-y-polynomals-tp4024673p4024676.html To unsubscribe from constrained optimalisation with f(x,y) polynomals, click here . NAML -- View this message in context: http://mailinglists.scilab.org/constrained-optimalisation-with-f-x-y-polynomals-tp4024673p4024684.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.gomf at gmx.de Tue Aug 7 20:44:37 2012 From: a.gomf at gmx.de (Alexander Jossifov) Date: Tue, 07 Aug 2012 20:44:37 +0200 Subject: Problems with IIR butterworth bandpass filters (strange plots) Message-ID: <50216215.8080207@gmx.de> I've done some calculations with butterworth bandpass filters and encountered a problem that I can't seem to solve. There is a bug that was filed that is similar to this case but I'm new to Scilab so maybe I'm doing something wrong. Look at the example below, the plot of the filter is odd. It seems to get worse the smaller the bandwidth is. clf(); sr = 44100; o = 3; low = 22.387211 / sr; high = 44.668359 / sr; hz = iir(o, 'bp', 'butt', [low high], [0 0]); xmin = 0.0; xmax = 0.005; ymin = 0.0; ymax = 1.0; res = 8000; [hzm, fr] = frmag(hz, res); plot(fr, hzm, 'b') a = gca(); a.data_bounds = [xmin, ymin; xmax, ymax]; From rfabbri at gmail.com Tue Aug 7 23:33:57 2012 From: rfabbri at gmail.com (Ricardo Fabbri) Date: Tue, 7 Aug 2012 18:33:57 -0300 Subject: [scilab-Users] new probability and statistics toolbox - CASCI In-Reply-To: <574c88af378685d7eb23fd23568bf4ee@contrib.scilab.org> References: <574c88af378685d7eb23fd23568bf4ee@contrib.scilab.org> Message-ID: Hi, I am glad the toolbox got useful. The current functions are not my own work. The intention was to release the package "as-is", without much overhead to the original author. Otherwise, it would risk never getting shared ;-) See the help file inside help/cascidoc.pdf. I'm sure this could be converted to help pages in a straightforward (albeit labor-intensive) manner. Right now I am not able to do it myself, so volunteers are much appreciated! Best, -- Dr Ricardo Fabbri Professor of Computer Engineering GNU/Linux registered user #175401 www.lems.brown.edu/~rfabbri pt.wikipedia.org/wiki/IPRJ labmacambira.sf.net On Sun, Aug 5, 2012 at 2:30 PM, wrote: > Hi, > > This toolbox fills a space which is partly left empty by Scilab, > so it is very much appreciated. > It seems to have interesting functions for parameter estimation. The set of > design of experiments functions is also nice. > > From my point of view, the main issue is the lack of help pages and the lack > of tests. But this toolbox will be surely a source of inspiration for > others. > > Best regards, > > Micha?l > > PS > For an overview of tools for probabilities and statistics in Scilab, please > consider: > > http://wiki.scilab.org/Documents%20and%20tutorials%20for%20Probabilities%20and%20Statistics%20in%20Scilab > > For an analysis of the "ideal" statistics module, please consider the > on-going work at: > > http://wiki.scilab.org/The-Ideal-Statistics-Module > > > > On Sat, 28 Jul 2012 15:09:36 -0300, Ricardo Fabbri > wrote: >> >> Hi, >> >> I'd like to share with you the new probability and statistics toolbox >> CASCI that I uploaded with permission from the authors to ATOMS and >> FORGE: >> >> http://atoms.scilab.org/toolboxes/casci >> >> The git repository is in Forge. >> >> Perhaps that will save some people ongoing work. Please give us >> feedback on the usefulness of such a toolbox. >> >> Here are the function descriptions: >> >> >> intbinomial - binomial confidence interval >> intexponential - exponential confidence interval >> intnormalm - normal confidence interval for ? >> intnormals - normal confidence interval for ? >> intpoisson - Poisson confidence interval >> cdfbeta - beta type 1 cdf >> cdfbeta2 - beta type 2 cdf >> cdfbinomial - binomial cdf >> cdfchi2 - ?2 (central and non-central) cdf >> cdfcv - sample coefficient of variation cdf >> cdfdphase - discrete Phase-Type cdf >> cdfexponential - exponential cdf >> cdffisher - Fisher (central and non-central) cdf >> cdffoldednormal - folded normal cdf >> cdfgamma - gamma cdf >> cdfgev - generalized Extreme Value cdf >> cdfhypergeometric - hypergeometric cdf >> cdfjohnson - Johnson?s cdf >> cdflognormal - lognormal cdf >> cdfmedian - normal sample median cdf >> cdfnormal - normal cdf >> cdfpareto - Pareto cdf >> cdfpascal - Pascal cdf >> cdfpoisson - Poisson cdf >> cdfrnge - normal range cdf >> cdfstandev - normal sample standard-deviation cdf >> cdfstudent - Student (central and non-central) cdf >> cdfweibull - Weibull cdf >> boxbehnken - Box-Behnken designs >> boxcoxlinear - Box-Cox linearity transformation >> centralcomposite - central composite designs >> coded2natural - coded to natural variables >> doxpand - design expansion >> doxptim - design optimisation >> equiradial - equiradial designs >> factorial2 - two levels full and fractional factorial designs >> mulreg - multilinear regression analysis >> mulregdisp - multilinear regression analysis results display >> mulregplot - multilinear regression analysis results plot >> natural2coded - natural to coded variables >> plackettburman - Plackett-Burman designs >> simpdex - simplex designs >> fitbeta - beta type 1 parameters estimation >> fitgamma - gamma parameters estimation >> fitgev - generalized Extreme Value parameters estimation >> fitjohnson - Johnson parameters estimation >> fitlognormal - lognormal parameters estimation >> fitweibull - Weibull parameters estimation >> idfbeta - beta type 1 idf >> idfbeta2 - beta type 2 idf >> idfchi2 - ?2 (central and non-central) idf >> idfcv - sample coefficient of variation idf >> idfexponential - exponential idf >> idffisher - Fisher (central and non-central) idf >> idfgamma - gamma idf >> idfgev - generalized Extreme Value idf >> idfjohnson - Johnson?s idf >> idflognormal - lognormal idf >> idfmedian - normal sample median idf >> idfnormal - normal idf >> idfpareto - Pareto idf >> idfstandev - normal sample standard-deviation idf >> idfstudent - Student (central and non-central) idf >> idfweibull - Weibull idf >> allcombination - matrix element combinations >> allpermutation - matrix element permutations >> arrangement - number Ap of arrangements >> combination - number Cn of combinations >> confhyper - confluent hypergeometric function >> depth - non parametric multivariate depth >> hausdorff - Hausdorff (median) distance between polylines >> lowess - LOcally WEighted Scatterplot Smoothing >> momdphase - first moments of a Discrete Phase-Type distribution >> nearestneighbors - find the k nearest neighbors >> neldermead - Nelder Mead?s downhill simplex nonlinear optimization >> algorithm >> savitzkygolay - Savitzky-Golay smoothing filter >> simplex - simplex computation >> simplexolve - solve a system of non-linear equations >> torczon - Torczon?s multidirectional nonlinear optimization algorithm >> vandercorput - Van der Corput?s sequence >> boxplot - Box plot >> qplot - quantile plot >> qqplot - quantile-quantile plot >> pdfbeta - beta type 1 pdf >> pdfbeta2 - beta type 2 pdf >> pdfbinomial - binomial pdf >> pdfchi2 - ?2 (central and non-central) pdf >> pdfcp - CP pdf >> pdfcpk - CP K pdf >> pdfcpm - CP M pdf >> pdfcpmk - CP M K pdf >> pdfcpuv - V ?nnman?s Cp (u, v) pdf >> pdfcv - sample coefficient of variation pdf >> pdfdphase - discrete phase-type pdf >> pdfexponential - exponential pdf >> pdffisher - Fisher (central and non-central) pdf >> pdffoldednormal - folded normal pdf >> pdfgamma - gamma pdf >> pdfgev - generalized Extreme Value pdf >> pdfhypergeometric - hypergeometric pdf >> pdfkernel - kernel smoothed pdf >> pdfjohnson - Johnson?s pdf >> pdflognormal - lognormal pdf >> pdfmedian - normal sample median pdf >> pdfmultinormal - multinormal pdf >> pdfnormal - normal pdf >> pdfpareto - Pareto pdf >> pdfpascal - Pascal pdf >> pdfpoisson - Poisson pdf >> pdfrnge - normal range pdf >> pdfstandev - normal sample standard-deviation pdf >> pdfstudent - Student pdf >> pdfweibull - Weibull pdf >> quadhermite - Gauss-Hermite quadrature >> quadlaguerre - Gauss-Laguerre quadrature >> quadlegendre - Gauss-Legendre quadrature >> quadsimpson - Simpson quadrature >> rndbeta - beta type 1 random number generator >> rndbeta2 - beta type 2 random number generator >> rndbinomial - binomial random number generator >> rndexponential - exponential random number generator >> rndfoldednormal - folded normal random number generator >> rndgamma - gamma random number generator >> rndgev - generalized Extreme Value random number generator >> rndjohnson - Johnson?s random number generator >> rndlognormal - lognormal random number generator >> rndmultinormal - multinormal random number generator >> rndnormal - normal random number generator >> rndpareto - Pareto random number generator >> rndpascal - Pascal random number generator >> rndpoisson - Poisson random number generator >> rndstandev - normal sample standard-deviation random number >> rndweibull - Weibull random number >> generator >> autocorrelation - autocorrelation coefficient >> bootstrap - bootstrap sampling >> correlation - correlation matrix >> crosscorrelation - crosscorrelation coefficient >> kurtosis - kurtosis coefficient >> quantile - quantile >> rnge - range >> skewness - skewness coefficient >> standev - standard deviation >> totalmedian - total median coefficients >> varcovar - variance-covariance matrix >> arlmean - ARL of the mean control chart >> arlmeanRR - ARL of the Run Rules mean control chart >> arlmedian - ARL of the median control chart >> arlmedianRR - ARL of the Run Rules median control chart >> arlrnge - ARL of the range control chart >> arlstandev - ARL of the standard-deviation control chart >> arlstandevRR - ARL of the Run Rules standard-deviation control chart >> cp - capability index CP estimation and confidence interval >> cpk - capability index CP K estimation and confidence interval >> krnge - range coefficients KR (n) >> kstandev - standard-deviation coefficients KS (n, r) >> mcpshahriari - Shahriari?s multivariate capability index CP >> mcptaam - Taam?s multivariate capability index CP >> andersondarling - Anderson-Darling?s normality test >> ansaribradley - Ansari-Bradley?s test >> bartlett - Bartlett?s test >> grubbs - Grubbs test >> kendall - Kendall?s test >> levene - Levene?s test >> mardia - Mardia?s test >> spearman - Spearman?s test >> tstbinomial1 - binomial one sample p test >> tstbinomial2 - binomial two samples p test >> tstexponential - exponential ? test >> tstnormalm1 - normal one sample ? test >> tstnormalm2 - normal two samples ? test >> tstnormals1 - normal one sample ? test >> tstnormals2 - normal two samples ? test >> tstsku - normal skewness and kurtosis test >> waldwolfowitz - Wald-Wolfowitz?s run test >> wilcoxon1 - Wilcoxon?s one sample (paired) test >> wilcoxon2 - Wilcoxon?s two samples test >> >> >> >> >> -- >> Dr Ricardo Fabbri >> Professor of Computer Engineering >> GNU/Linux registered user #175401 >> www.lems.brown.edu/~rfabbri >> pt.wikipedia.org/wiki/IPRJ >> labmacambira.sf.net >> >> -- >> To unsubscribe from this mailing-list, please send an empty mail to >> users-unsubscribe at lists.scilab.org >> To check the archives of this mailing list, see >> http://mailinglists.scilab.org/ > > > -- > To unsubscribe from this mailing-list, please send an empty mail to > users-unsubscribe at lists.scilab.org > To check the archives of this mailing list, see > http://mailinglists.scilab.org/ > From denis.crete at thalesgroup.com Wed Aug 8 08:49:38 2012 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Wed, 8 Aug 2012 08:49:38 +0200 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: References: <1344189195.16587.blah>,,<5020C905.6090901@scilab-enterprises.com>,,,<25374_1344327441_5020CF11_25374_3014_1_908CBC9017354841B2F32BBEC70A05A101C37EBB6C21@THSONEA01CMS01P.one.grp> Message-ID: <28320_1344408563_50220BF3_28320_3695_1_908CBC9017354841B2F32BBEC70A05A101C37ECA4300@THSONEA01CMS01P.one.grp> Hello, I did not fully enter into your script, but I seems that you can get the result more quickly and concisely: // As you are under Linux, you can first edit the file with sed and collect the result in a Scilab vector of strings Mat_123=unix_g("sed -ne 's/,/./g; s/cm //p;' fichier.txt"); // Assume the 3 matrices have equal length to calculate the number of rows of each matrix i=size(Mat_123,'r')/3; // From here you can separate into 3 matrices of real elements Mat_1=evstr(Mat_123(1:i)); Mat_2=evstr(Mat_123(i+1:2*i)); Mat_3=evstr(Mat_123(2*i+1:3*i)); // Alternatively, you can collect the data into a 3D array HM_123=permute(hypermat([16,i,3],evstr(Mat_123)'),[2 1 3]); First column has been kept with the other 15 columns, but you can throw it away either within the sed script : sed -ne 's/,/./g; s/^.*cm //p;' or at the end : Mat_j(:,1)=[]; or HM_123(:,1,:)=[]; HTH Denis De : Jean-Baptiste DOUCET [mailto:doucetjb at hotmail.com] Envoy? : mardi 7 ao?t 2012 10:35 ? : users at lists.scilab.org Objet : RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hi Denis, actually the original file was with "." and not with ",", I converted it because I exploited my file in excel. But I can try with the original one. And you're wright, I want get ride of the "cm" columns. I found this tutorials (http://www.commentcamarche.net/forum/affich-7312880-recuperer-des-donnees-d-un-txt-avec-scilab), I tried to adapt it to my matrix - please be patient, I am a beginner: [fid,mes]=mopen('fichier.txt','r'); // scilab was able to open my .txt file for k=1:5; dummy=mgetl(fid); // scilab couldn't come along with this line, actually I didn't really understand what was meant, but I wanted to see what I get like this end; clear dummy; eof=meof(fid); k=1; while eof==0; v=mfscanf(fid,['%s %s %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f']); // supposed to get ride of my first two columns. mat(k,:)=v(1:15);//supposed to reinject my 15 elements into my new matrix clear v; eof=meof(fid); k=k+1; end; mclose(fid); Thank you for your support ________________________________ From: denis.crete at thalesgroup.com To: users at lists.scilab.org Date: Tue, 7 Aug 2012 10:17:36 +0200 Subject: RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux I suspect the ? cm ? and the ? , ? instead of "." are 2 problems. Denis De : Jean-Baptiste DOUCET [mailto:doucetjb at hotmail.com] Envoy? : mardi 7 ao?t 2012 10:15 ? : users at lists.scilab.org Objet : [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hi, I am a beginner, and I have few knowledges about Scilab. I am working with Scilab 5.3. under Linux. I read several tutorials about how to import a Matrix from a .txt file to Scilab, but I always get error message. The kind of .txt file I have to habdle is the following one: PH-7: STEAMING RATES FOR FA 12AC, CYCLE 24 STEAMING RATES [kg/(m2s)] FOR ROD I1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0277 0,0518 0,0167 0,0016 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0023 0,0000 0,0000 0,0008 0,0068 0,0352 0,0892 0,1348 0,0879 0,0473 0,0164 0,0013 0,0000 0,0000 0,0000 274,35 cm 0,0532 0,0208 0,0212 0,0416 0,0653 0,1268 0,2032 0,2524 0,2020 0,1463 0,0891 0,0429 0,0128 0,0054 0,0000 280,07 cm 0,0879 0,0483 0,0539 0,0916 0,1292 0,2048 0,2796 0,3316 0,3056 0,2627 0,2076 0,1480 0,0913 0,0710 0,0000 285,78 cm 0,2462 0,1908 0,1965 0,2439 0,2815 0,3433 0,3981 0,3750 0,4191 0,3876 0,3457 0,2963 0,2396 0,2149 0,0000 291,50 cm 0,2677 0,2188 0,2353 0,2903 0,3298 0,3874 0,3114 0,3704 0,3622 0,3309 0,4271 0,3921 0,3515 0,3339 0,0000 297,21 cm 0,3646 0,3246 0,3359 0,3783 0,4090 0,3384 0,4002 0,4477 0,4430 0,4186 0,3836 0,3414 0,2924 0,3480 0,0000 302,93 cm 0,3451 0,3096 0,3323 0,2383 0,2945 0,3664 0,4256 0,4764 0,4870 0,4734 0,4504 0,4217 0,3877 0,3734 0,0000 308,64 cm 0,3075 0,4059 0,2948 0,3543 0,3964 0,4511 0,4966 0,5386 0,5496 0,5395 0,5213 0,4985 0,4717 0,4608 0,0394 314,36 cm 0,2286 0,1895 0,2331 0,3114 0,3655 0,4270 0,4766 0,5253 0,5503 0,5484 0,5386 0,5240 0,5061 0,4994 0,1102 320,07 cm 0,3241 0,2917 0,3264 0,3890 0,4323 0,4820 0,5234 0,5664 0,5906 0,5899 0,5818 0,5697 0,5547 0,5491 0,2164 325,79 cm 0,1835 0,1481 0,2014 0,2900 0,3511 0,4140 0,4631 0,4869 0,5237 0,5555 0,5546 0,5495 0,5414 0,5391 0,2225 331,51 cm 0,2779 0,2466 0,2925 0,3643 0,4136 0,4649 0,4807 0,5058 0,5418 0,5477 0,5698 0,5880 0,5816 0,5800 0,1625 337,22 cm 0,1394 0,1074 0,1613 0,2478 0,3092 0,2922 0,3525 0,4089 0,4490 0,4587 0,4625 0,4627 0,4609 0,4616 0,0714 342,94 cm 0,2228 0,1913 0,2424 0,3146 0,3650 0,3543 0,4030 0,4514 0,4888 0,4987 0,5033 0,5051 0,5046 0,5058 0,1644 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0069 0,0506 0,1296 0,1940 0,2122 0,2237 0,2327 0,2405 0,2467 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0021 0,0329 0,1074 0,1103 0,1976 0,2575 0,2745 0,2859 0,2953 0,3036 0,3097 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0057 0,0135 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0083 0,0115 0,0340 0,0511 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD J1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0067 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0062 0,0382 0,0660 0,0255 0,0050 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0043 0,0000 0,0000 0,0019 0,0107 0,0454 0,1065 0,1546 0,1060 0,0613 0,0251 0,0044 0,0000 0,0000 0,0000 274,35 cm 0,0618 0,0222 0,0235 0,0483 0,0760 0,1438 0,2232 0,2715 0,2231 0,1673 0,1074 0,0562 0,0204 0,0107 0,0000 280,07 cm 0,0985 0,0504 0,0575 0,1010 0,1430 0,2224 0,2976 0,3479 0,3235 0,2823 0,2285 0,1688 0,1096 0,0875 0,0000 285,78 cm 0,2592 0,1957 0,2035 0,2559 0,2950 0,3581 0,4125 0,3209 0,4334 0,4032 0,3630 0,3156 0,2608 0,2367 0,0000 291,50 cm 0,2808 0,2236 0,2420 0,3006 0,3418 0,4006 0,3306 0,3875 0,3803 0,3505 0,3807 0,4074 0,3684 0,3515 0,0000 297,21 cm 0,3749 0,3284 0,3407 0,3865 0,4186 0,3543 0,4154 0,4613 0,4575 0,4341 0,4006 0,3601 0,3130 0,2923 0,0000 302,93 cm 0,3561 0,3134 0,3376 0,2507 0,3086 0,3808 0,4394 0,4888 0,4995 0,4866 0,4645 0,4367 0,4040 0,3903 0,0011 308,64 cm 0,3209 0,4094 0,3019 0,3650 0,4080 0,4629 0,5082 0,5491 0,5604 0,5505 0,5330 0,5109 0,4852 0,4745 0,0545 314,36 cm 0,2429 0,1951 0,2414 0,3228 0,3776 0,4391 0,4881 0,5356 0,5605 0,5589 0,5493 0,5353 0,5180 0,5113 0,1326 320,07 cm 0,3358 0,2959 0,3331 0,3977 0,4417 0,4922 0,5334 0,5754 0,5996 0,5990 0,5912 0,5794 0,5648 0,5594 0,2395 325,79 cm 0,1975 0,1536 0,2092 0,3006 0,3622 0,4256 0,4743 0,4700 0,5077 0,5648 0,5640 0,5593 0,5515 0,5493 0,2452 331,51 cm 0,2898 0,2516 0,2987 0,3729 0,4228 0,4748 0,4649 0,5165 0,5521 0,5580 0,5566 0,5745 0,5904 0,5888 0,1881 337,22 cm 0,1547 0,1136 0,1701 0,2598 0,2770 0,3093 0,3682 0,4224 0,4614 0,4711 0,4749 0,4755 0,4737 0,4744 0,0933 342,94 cm 0,2370 0,1982 0,2503 0,3248 0,3752 0,3683 0,4160 0,4628 0,4993 0,5092 0,5139 0,5156 0,5152 0,5165 0,1904 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0138 0,0690 0,1545 0,2175 0,2348 0,2458 0,2543 0,2616 0,2674 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0047 0,0432 0,1277 0,1338 0,2199 0,2769 0,2932 0,3040 0,3128 0,3207 0,3265 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0018 0,0134 0,0239 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0056 0,0215 0,0495 0,0692 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD A9 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0004 0,0019 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0159 0,0244 0,0074 0,0038 0,0038 0,0025 0,0100 0,0158 0,0013 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 274,35 cm 0,0947 0,1130 0,0699 0,0563 0,0551 0,0467 0,0696 0,0831 0,0404 0,0153 0,0016 0,0000 0,0000 0,0000 0,0000 280,07 cm 0,1367 0,1625 0,1202 0,1116 0,1153 0,1034 0,1360 0,1633 0,1224 0,0823 0,0450 0,0178 0,0027 0,0004 0,0000 285,78 cm 0,2981 0,3209 0,2781 0,2669 0,2687 0,2530 0,2834 0,3074 0,2718 0,2286 0,1763 0,1225 0,0738 0,0570 0,0000 291,50 cm 0,3173 0,3425 0,3119 0,3112 0,3191 0,3079 0,3371 0,3673 0,3549 0,3274 0,2895 0,2449 0,1948 0,1744 0,0000 297,21 cm 0,4048 0,4248 0,3975 0,3955 0,4007 0,3896 0,3491 0,3097 0,3660 0,4063 0,3757 0,3393 0,2971 0,2792 0,0000 302,93 cm 0,3856 0,4092 0,3237 0,2587 0,2802 0,2708 0,3099 0,3529 0,3571 0,3379 0,3076 0,3469 0,3821 0,3703 0,0000 308,64 cm 0,3522 0,3785 0,3609 0,3714 0,3867 0,3780 0,4069 0,4409 0,4468 0,4330 0,4103 0,3819 0,3483 0,3345 0,0000 314,36 cm 0,2781 0,3117 0,3051 0,3295 0,3555 0,3518 0,3859 0,4291 0,4531 0,4501 0,4380 0,4208 0,3993 0,3912 0,0060 320,07 cm 0,3650 0,3922 0,3854 0,4043 0,4246 0,4209 0,4479 0,4848 0,5076 0,5061 0,4967 0,4829 0,4656 0,4592 0,0555 325,79 cm 0,2324 0,2686 0,2722 0,3072 0,3413 0,3407 0,3763 0,4232 0,4608 0,4680 0,4674 0,4622 0,4536 0,4512 0,0598 331,51 cm 0,3196 0,3490 0,3509 0,3790 0,4065 0,4057 0,4343 0,4746 0,5095 0,5170 0,5174 0,5138 0,5072 0,5056 0,1561 337,22 cm 0,1878 0,2249 0,2318 0,2658 0,2999 0,2931 0,2303 0,2850 0,3317 0,3443 0,3900 0,4290 0,4304 0,4327 0,0586 342,94 cm 0,2678 0,2989 0,3035 0,3310 0,3587 0,3532 0,3435 0,3510 0,3925 0,4046 0,4420 0,4743 0,4765 0,4791 0,1432 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0071 0,0313 0,0439 0,0548 0,0654 0,0757 0,0832 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0060 0,0268 0,0268 0,0581 0,1138 0,1759 0,1990 0,2170 0,2331 0,2477 0,2570 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0021 0,0088 0,0000 If you open this .txt file with wordpad, you see how it looks like. I have to import 3 Matrix of this file. I tried with mfscanf and with fscanfMat, but nothing helps, I always become error messages. My Matrix should be with 15 columns and 66 lines, the number of columns changes, but not the number of lines. I dont' need the first column with the cm. What could you suggest me? It would be really helpfull, because I am not coming forward. Thank you very much for your support! Best Regards, jean-baptiste doucet -------------- next part -------------- An HTML attachment was scrubbed... URL: From manasdas17 at gmail.com Wed Aug 8 10:34:44 2012 From: manasdas17 at gmail.com (manasdas17) Date: Wed, 8 Aug 2012 01:34:44 -0700 (PDT) Subject: Generating code of any xcos model Message-ID: <1344414884203-4024689.post@n3.nabble.com> Hi, i am using scilab-5.3.3.I need to know how to generate code(any e.g. C/Scilab) for any xcos model.Also,how could i extract the information about any xcos model after simulation. Regards Manas -- View this message in context: http://mailinglists.scilab.org/Generating-code-of-any-xcos-model-tp4024689.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From kisacik at yahoo.com Wed Aug 8 14:41:21 2012 From: kisacik at yahoo.com (kisacik) Date: Wed, 8 Aug 2012 05:41:21 -0700 (PDT) Subject: GPGPU / CUDA Support Message-ID: <1344429681859-4024690.post@n3.nabble.com> I have seen some documentation about the development efforts to take advantage of the GPU whenever it is available around March of 2011. But, I do not think my latest version of Scilab is actually using the GPU --other programs on my computer can use CUDA library etc... Is the GPU support implemented yet? If so, Do I have to install anything additional to enable it? TIA. -- View this message in context: http://mailinglists.scilab.org/GPGPU-CUDA-Support-tp4024690.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From sylvestre.ledru at scilab-enterprises.com Wed Aug 8 14:44:06 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Wed, 08 Aug 2012 14:44:06 +0200 Subject: [scilab-Users] GPGPU / CUDA Support In-Reply-To: <1344429681859-4024690.post@n3.nabble.com> References: <1344429681859-4024690.post@n3.nabble.com> Message-ID: <50225F16.2020908@scilab-enterprises.com> Le 08/08/2012 14:41, kisacik a ?crit : > I have seen some documentation about the development efforts to take > advantage of the GPU whenever it is available around March of 2011. But, I > do not think my latest version of Scilab is actually using the GPU --other > programs on my computer can use CUDA library etc... > > Is the GPU support implemented yet? If so, Do I have to install anything > additional to enable it? TIA. Yes, Scigpgu is probably what you are looking for: http://forge.scilab.org/index.php/p/sciCuda/ Regards, Sylvestre From doucetjb at hotmail.com Wed Aug 8 15:45:04 2012 From: doucetjb at hotmail.com (Jean-Baptiste DOUCET) Date: Wed, 8 Aug 2012 15:45:04 +0200 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: <28320_1344408563_50220BF3_28320_3695_1_908CBC9017354841B2F32BBEC70A05A101C37ECA4300@THSONEA01CMS01P.one.grp> References: <1344189195.16587.blah>,,<5020C905.6090901@scilab-enterprises.com>,,,<25374_1344327441_5020CF11_25374_3014_1_908CBC9017354841B2F32BBEC70A05A101C37EBB6C21@THSONEA01CMS01P.one.grp>,,<28320_1344408563_50220BF3_28320_3695_1_908CBC9017354841B2F32BBEC70A05A101C37ECA4300@THSONEA01CMS01P.one.grp> Message-ID: @Denis: thx 4 ur advise, but it still doesn't work. :-( I let you know, asa I found a solution jean-baptiste From: denis.crete at thalesgroup.com To: users at lists.scilab.org Date: Wed, 8 Aug 2012 08:49:38 +0200 Subject: RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hello,I did not fully enter into your script, but I seems that you can get the result more quickly and concisely: // As you are under Linux, you can first edit the file with sed and collect the result in a Scilab vector of stringsMat_123=unix_g("sed -ne 's/,/./g; s/cm //p;' fichier.txt");// Assume the 3 matrices have equal length to calculate the number of rows of each matrixi=size(Mat_123,'r')/3; // From here you can separate into 3 matrices of real elementsMat_1=evstr(Mat_123(1:i));Mat_2=evstr(Mat_123(i+1:2*i));Mat_3=evstr(Mat_123(2*i+1:3*i)); // Alternatively, you can collect the data into a 3D arrayHM_123=permute(hypermat([16,i,3],evstr(Mat_123)'),[2 1 3]); First column has been kept with the other 15 columns, but you can throw it away either within the sed script : sed -ne 's/,/./g; s/^.*cm //p;'or at the end : Mat_j(:,1)=[]; or HM_123(:,1,:)=[]; HTHDenis De : Jean-Baptiste DOUCET [mailto:doucetjb at hotmail.com] Envoy? : mardi 7 ao?t 2012 10:35 ? : users at lists.scilab.org Objet : RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hi Denis, actually the original file was with "." and not with ",", I converted it because I exploited my file in excel. But I can try with the original one. And you're wright, I want get ride of the "cm" columns. I found this tutorials (http://www.commentcamarche.net/forum/affich-7312880-recuperer-des-donnees-d-un-txt-avec-scilab), I tried to adapt it to my matrix - please be patient, I am a beginner:[fid,mes]=mopen('fichier.txt','r'); // scilab was able to open my .txt filefor k=1:5;dummy=mgetl(fid); // scilab couldn't come along with this line, actually I didn't really understand what was meant, but I wanted to see what I get like thisend;clear dummy;eof=meof(fid);k=1;while eof==0;v=mfscanf(fid,['%s %s %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f']); // supposed to get ride of my first two columns.mat(k,:)=v(1:15);//supposed to reinject my 15 elements into my new matrixclear v;eof=meof(fid);k=k+1;end;mclose(fid); Thank you for your support From: denis.crete at thalesgroup.com To: users at lists.scilab.org Date: Tue, 7 Aug 2012 10:17:36 +0200 Subject: RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under LinuxI suspect the ? cm ? and the ? , ? instead of ?.? are 2 problems.Denis De : Jean-Baptiste DOUCET [mailto:doucetjb at hotmail.com] Envoy? : mardi 7 ao?t 2012 10:15 ? : users at lists.scilab.org Objet : [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hi, I am a beginner, and I have few knowledges about Scilab. I am working with Scilab 5.3. under Linux. I read several tutorials about how to import a Matrix from a .txt file to Scilab, but I always get error message. The kind of .txt file I have to habdle is the following one: PH-7: STEAMING RATES FOR FA 12AC, CYCLE 24 STEAMING RATES [kg/(m2s)] FOR ROD I1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0277 0,0518 0,0167 0,0016 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0023 0,0000 0,0000 0,0008 0,0068 0,0352 0,0892 0,1348 0,0879 0,0473 0,0164 0,0013 0,0000 0,0000 0,0000 274,35 cm 0,0532 0,0208 0,0212 0,0416 0,0653 0,1268 0,2032 0,2524 0,2020 0,1463 0,0891 0,0429 0,0128 0,0054 0,0000 280,07 cm 0,0879 0,0483 0,0539 0,0916 0,1292 0,2048 0,2796 0,3316 0,3056 0,2627 0,2076 0,1480 0,0913 0,0710 0,0000 285,78 cm 0,2462 0,1908 0,1965 0,2439 0,2815 0,3433 0,3981 0,3750 0,4191 0,3876 0,3457 0,2963 0,2396 0,2149 0,0000 291,50 cm 0,2677 0,2188 0,2353 0,2903 0,3298 0,3874 0,3114 0,3704 0,3622 0,3309 0,4271 0,3921 0,3515 0,3339 0,0000 297,21 cm 0,3646 0,3246 0,3359 0,3783 0,4090 0,3384 0,4002 0,4477 0,4430 0,4186 0,3836 0,3414 0,2924 0,3480 0,0000 302,93 cm 0,3451 0,3096 0,3323 0,2383 0,2945 0,3664 0,4256 0,4764 0,4870 0,4734 0,4504 0,4217 0,3877 0,3734 0,0000 308,64 cm 0,3075 0,4059 0,2948 0,3543 0,3964 0,4511 0,4966 0,5386 0,5496 0,5395 0,5213 0,4985 0,4717 0,4608 0,0394 314,36 cm 0,2286 0,1895 0,2331 0,3114 0,3655 0,4270 0,4766 0,5253 0,5503 0,5484 0,5386 0,5240 0,5061 0,4994 0,1102 320,07 cm 0,3241 0,2917 0,3264 0,3890 0,4323 0,4820 0,5234 0,5664 0,5906 0,5899 0,5818 0,5697 0,5547 0,5491 0,2164 325,79 cm 0,1835 0,1481 0,2014 0,2900 0,3511 0,4140 0,4631 0,4869 0,5237 0,5555 0,5546 0,5495 0,5414 0,5391 0,2225 331,51 cm 0,2779 0,2466 0,2925 0,3643 0,4136 0,4649 0,4807 0,5058 0,5418 0,5477 0,5698 0,5880 0,5816 0,5800 0,1625 337,22 cm 0,1394 0,1074 0,1613 0,2478 0,3092 0,2922 0,3525 0,4089 0,4490 0,4587 0,4625 0,4627 0,4609 0,4616 0,0714 342,94 cm 0,2228 0,1913 0,2424 0,3146 0,3650 0,3543 0,4030 0,4514 0,4888 0,4987 0,5033 0,5051 0,5046 0,5058 0,1644 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0069 0,0506 0,1296 0,1940 0,2122 0,2237 0,2327 0,2405 0,2467 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0021 0,0329 0,1074 0,1103 0,1976 0,2575 0,2745 0,2859 0,2953 0,3036 0,3097 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0057 0,0135 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0083 0,0115 0,0340 0,0511 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD J1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0067 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0062 0,0382 0,0660 0,0255 0,0050 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0043 0,0000 0,0000 0,0019 0,0107 0,0454 0,1065 0,1546 0,1060 0,0613 0,0251 0,0044 0,0000 0,0000 0,0000 274,35 cm 0,0618 0,0222 0,0235 0,0483 0,0760 0,1438 0,2232 0,2715 0,2231 0,1673 0,1074 0,0562 0,0204 0,0107 0,0000 280,07 cm 0,0985 0,0504 0,0575 0,1010 0,1430 0,2224 0,2976 0,3479 0,3235 0,2823 0,2285 0,1688 0,1096 0,0875 0,0000 285,78 cm 0,2592 0,1957 0,2035 0,2559 0,2950 0,3581 0,4125 0,3209 0,4334 0,4032 0,3630 0,3156 0,2608 0,2367 0,0000 291,50 cm 0,2808 0,2236 0,2420 0,3006 0,3418 0,4006 0,3306 0,3875 0,3803 0,3505 0,3807 0,4074 0,3684 0,3515 0,0000 297,21 cm 0,3749 0,3284 0,3407 0,3865 0,4186 0,3543 0,4154 0,4613 0,4575 0,4341 0,4006 0,3601 0,3130 0,2923 0,0000 302,93 cm 0,3561 0,3134 0,3376 0,2507 0,3086 0,3808 0,4394 0,4888 0,4995 0,4866 0,4645 0,4367 0,4040 0,3903 0,0011 308,64 cm 0,3209 0,4094 0,3019 0,3650 0,4080 0,4629 0,5082 0,5491 0,5604 0,5505 0,5330 0,5109 0,4852 0,4745 0,0545 314,36 cm 0,2429 0,1951 0,2414 0,3228 0,3776 0,4391 0,4881 0,5356 0,5605 0,5589 0,5493 0,5353 0,5180 0,5113 0,1326 320,07 cm 0,3358 0,2959 0,3331 0,3977 0,4417 0,4922 0,5334 0,5754 0,5996 0,5990 0,5912 0,5794 0,5648 0,5594 0,2395 325,79 cm 0,1975 0,1536 0,2092 0,3006 0,3622 0,4256 0,4743 0,4700 0,5077 0,5648 0,5640 0,5593 0,5515 0,5493 0,2452 331,51 cm 0,2898 0,2516 0,2987 0,3729 0,4228 0,4748 0,4649 0,5165 0,5521 0,5580 0,5566 0,5745 0,5904 0,5888 0,1881 337,22 cm 0,1547 0,1136 0,1701 0,2598 0,2770 0,3093 0,3682 0,4224 0,4614 0,4711 0,4749 0,4755 0,4737 0,4744 0,0933 342,94 cm 0,2370 0,1982 0,2503 0,3248 0,3752 0,3683 0,4160 0,4628 0,4993 0,5092 0,5139 0,5156 0,5152 0,5165 0,1904 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0138 0,0690 0,1545 0,2175 0,2348 0,2458 0,2543 0,2616 0,2674 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0047 0,0432 0,1277 0,1338 0,2199 0,2769 0,2932 0,3040 0,3128 0,3207 0,3265 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0018 0,0134 0,0239 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0056 0,0215 0,0495 0,0692 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD A9 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0004 0,0019 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0159 0,0244 0,0074 0,0038 0,0038 0,0025 0,0100 0,0158 0,0013 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 274,35 cm 0,0947 0,1130 0,0699 0,0563 0,0551 0,0467 0,0696 0,0831 0,0404 0,0153 0,0016 0,0000 0,0000 0,0000 0,0000 280,07 cm 0,1367 0,1625 0,1202 0,1116 0,1153 0,1034 0,1360 0,1633 0,1224 0,0823 0,0450 0,0178 0,0027 0,0004 0,0000 285,78 cm 0,2981 0,3209 0,2781 0,2669 0,2687 0,2530 0,2834 0,3074 0,2718 0,2286 0,1763 0,1225 0,0738 0,0570 0,0000 291,50 cm 0,3173 0,3425 0,3119 0,3112 0,3191 0,3079 0,3371 0,3673 0,3549 0,3274 0,2895 0,2449 0,1948 0,1744 0,0000 297,21 cm 0,4048 0,4248 0,3975 0,3955 0,4007 0,3896 0,3491 0,3097 0,3660 0,4063 0,3757 0,3393 0,2971 0,2792 0,0000 302,93 cm 0,3856 0,4092 0,3237 0,2587 0,2802 0,2708 0,3099 0,3529 0,3571 0,3379 0,3076 0,3469 0,3821 0,3703 0,0000 308,64 cm 0,3522 0,3785 0,3609 0,3714 0,3867 0,3780 0,4069 0,4409 0,4468 0,4330 0,4103 0,3819 0,3483 0,3345 0,0000 314,36 cm 0,2781 0,3117 0,3051 0,3295 0,3555 0,3518 0,3859 0,4291 0,4531 0,4501 0,4380 0,4208 0,3993 0,3912 0,0060 320,07 cm 0,3650 0,3922 0,3854 0,4043 0,4246 0,4209 0,4479 0,4848 0,5076 0,5061 0,4967 0,4829 0,4656 0,4592 0,0555 325,79 cm 0,2324 0,2686 0,2722 0,3072 0,3413 0,3407 0,3763 0,4232 0,4608 0,4680 0,4674 0,4622 0,4536 0,4512 0,0598 331,51 cm 0,3196 0,3490 0,3509 0,3790 0,4065 0,4057 0,4343 0,4746 0,5095 0,5170 0,5174 0,5138 0,5072 0,5056 0,1561 337,22 cm 0,1878 0,2249 0,2318 0,2658 0,2999 0,2931 0,2303 0,2850 0,3317 0,3443 0,3900 0,4290 0,4304 0,4327 0,0586 342,94 cm 0,2678 0,2989 0,3035 0,3310 0,3587 0,3532 0,3435 0,3510 0,3925 0,4046 0,4420 0,4743 0,4765 0,4791 0,1432 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0071 0,0313 0,0439 0,0548 0,0654 0,0757 0,0832 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0060 0,0268 0,0268 0,0581 0,1138 0,1759 0,1990 0,2170 0,2331 0,2477 0,2570 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0021 0,0088 0,0000 If you open this .txt file with wordpad, you see how it looks like. I have to import 3 Matrix of this file. I tried with mfscanf and with fscanfMat, but nothing helps, I always become error messages. My Matrix should be with 15 columns and 66 lines, the number of columns changes, but not the number of lines. I dont' need the first column with the cm. What could you suggest me? It would be really helpfull, because I am not coming forward. Thank you very much for your support! Best Regards, jean-baptiste doucet -------------- next part -------------- An HTML attachment was scrubbed... URL: From meni.tima at hotmail.com Wed Aug 8 15:54:51 2012 From: meni.tima at hotmail.com (Tima) Date: Wed, 8 Aug 2012 06:54:51 -0700 (PDT) Subject: Call scilab in a plugin project Message-ID: <1344434091851-4024693.post@n3.nabble.com> Hi, I am trying to call scilab in a plugin project but I can't did it. In fact, I define environment variables SCI and LD_LIBRARY_PATH, and I configured the build Path. I succeeded to call scilab in a java project but with a plugin project, I have this error in execution: /java.lang.NoClassDefFoundError: org/scilab/modules/javasci/JavasciException at test_.actions.SampleAction.run(SampleAction.java:157) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:251) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:229) at ............... at ..... Caused by: java.lang.ClassNotFoundException: org.scilab.modules.javasci.JavasciException at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:513) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:429) at ........./ Can you help me please? Is the plugin project configuration different that java project configuration? Thanks, Tima -- View this message in context: http://mailinglists.scilab.org/Call-scilab-in-a-plugin-project-tp4024693.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From sylvestre.ledru at scilab-enterprises.com Wed Aug 8 15:57:26 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Wed, 08 Aug 2012 15:57:26 +0200 Subject: [scilab-Users] Call scilab in a plugin project In-Reply-To: <1344434091851-4024693.post@n3.nabble.com> References: <1344434091851-4024693.post@n3.nabble.com> Message-ID: <50227046.6010209@scilab-enterprises.com> Le 08/08/2012 15:54, Tima a ?crit : > Hi, > > I am trying to call scilab in a plugin project but I can't did it. > > In fact, I define environment variables SCI and LD_LIBRARY_PATH, and I > configured the build Path. > I succeeded to call scilab in a java project but with a plugin project, I > have this error in execution: > > /java.lang.NoClassDefFoundError: org/scilab/modules/javasci/JavasciException See the first item of the FAQ: http://help.scilab.org/docs/5.4.0-beta-2/en_US/javasci_faq_v2.html It is very likely to be your problem. Sylvestre From sgougeon at free.fr Wed Aug 8 16:08:15 2012 From: sgougeon at free.fr (Samuel Gougeon) Date: Wed, 08 Aug 2012 16:08:15 +0200 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: References: <1344189195.16587.blah>,,<5020C905.6090901@scilab-enterprises.com>, Message-ID: <502272CF.7030509@free.fr> Lines = mgetl("fichier.txt"); Lines(1:4)=[]; values = []; for line = Lines' values = [values ; evstr(tokens(strsubst(strsubst(line,"cm",""),",","."))')] end should do it. Le 07/08/2012 10:15, Jean-Baptiste DOUCET a ?crit : > .../... > If you open this .txt file with wordpad, you see how it looks like. > .../... It is easier to process and help with an attached file rather than a copy/paste one. Regards Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Wed Aug 8 16:12:45 2012 From: sgougeon at free.fr (Samuel Gougeon) Date: Wed, 08 Aug 2012 16:12:45 +0200 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: <502272CF.7030509@free.fr> References: <1344189195.16587.blah>,,<5020C905.6090901@scilab-enterprises.com>, <502272CF.7030509@free.fr> Message-ID: <502273DD.5040801@free.fr> Le 08/08/2012 16:08, Samuel Gougeon a ?crit : > Lines = mgetl("fichier.txt"); > Lines(1:4)=[]; > values = []; > for line = Lines' > values = [values ; > evstr(tokens(strsubst(strsubst(line,"cm",""),",","."))')] > end Just append a semi-column to cancel intermediate displays: values = [values ; evstr(tokens(strsubst(strsubst(line,"cm",""),",","."))')]; -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mike at Page-One.Waitrose.com Wed Aug 8 16:21:37 2012 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Wed, 8 Aug 2012 15:21:37 +0100 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: Message-ID: Hi, If nothing else works, I usually use mopen and mgetl to read the file into a Scilab array of strings, one string per line. Then I can manipulate the strings with string functions. For example, you could use strstr to find the "cm" at the start of each line and then use part to extract the numerical parts which look to be of fixed length. Finally using evstr will convert the strings back to numbers. Doing it this way allows you to handle things like header rows which don't always work properly if you try to read the whole thing into a matrix. So something like: f=mopen('c:\temp\tmp.txt') a=mgetl(f) s=strstr(a,"cm") n=evstr(part(s,4:8)) This should remove the two header lines and the cm value at the front, returning the first column of values. Another way would be to take the likes one at a time and use strtok to split out the values. You may need to play around with this to get the result you want, but I usually find it will work. HTH, Mike. -----Original Message----- From: Jean-Baptiste DOUCET [mailto:doucetjb at hotmail.com] Sent: 08 August 2012 14:45 To: users at lists.scilab.org Subject: RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux @Denis: thx 4 ur advise, but it still doesn't work. :-( I let you know, asa I found a solution jean-baptiste ---------------------------------------------------------------------------- -- From: denis.crete at thalesgroup.com To: users at lists.scilab.org Date: Wed, 8 Aug 2012 08:49:38 +0200 Subject: RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hello, I did not fully enter into your script, but I seems that you can get the result more quickly and concisely: // As you are under Linux, you can first edit the file with sed and collect the result in a Scilab vector of strings Mat_123=unix_g("sed -ne 's/,/./g; s/cm //p;' fichier.txt"); // Assume the 3 matrices have equal length to calculate the number of rows of each matrix i=size(Mat_123,'r')/3; // From here you can separate into 3 matrices of real elements Mat_1=evstr(Mat_123(1:i)); Mat_2=evstr(Mat_123(i+1:2*i)); Mat_3=evstr(Mat_123(2*i+1:3*i)); // Alternatively, you can collect the data into a 3D array HM_123=permute(hypermat([16,i,3],evstr(Mat_123)'),[2 1 3]); First column has been kept with the other 15 columns, but you can throw it away either within the sed script : sed -ne 's/,/./g; s/^.*cm //p;' or at the end : Mat_j(:,1)=[]; or HM_123(:,1,:)=[]; HTH Denis De : Jean-Baptiste DOUCET [mailto:doucetjb at hotmail.com] Envoy? : mardi 7 ao?t 2012 10:35 ? : users at lists.scilab.org Objet : RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hi Denis, actually the original file was with "." and not with ",", I converted it because I exploited my file in excel. But I can try with the original one. And you're wright, I want get ride of the "cm" columns. I found this tutorials (http://www.commentcamarche.net/forum/affich-7312880-recuperer-des-donnees-d -un-txt-avec-scilab), I tried to adapt it to my matrix - please be patient, I am a beginner: [fid,mes]=mopen('fichier.txt','r'); // scilab was able to open my .txt filefor k=1:5;dummy=mgetl(fid); // scilab couldn't come along with this line, actually I didn't really understand what was meant, but I wanted to see what I get like thisend;clear dummy;eof=meof(fid);k=1;while eof==0;v=mfscanf(fid,['%s %s %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f']); // supposed to get ride of my first two columns.mat(k,:)=v(1:15);//supposed to reinject my 15 elements into my new matrixclear v;eof=meof(fid);k=k+1;end;mclose(fid);Thank you for your support ---------------------------------------------------------------------------- -- From: denis.crete at thalesgroup.com To: users at lists.scilab.org Date: Tue, 7 Aug 2012 10:17:36 +0200 Subject: RE: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux I suspect the ? cm ? and the ? , ? instead of ?.? are 2 problems. Denis De : Jean-Baptiste DOUCET [mailto:doucetjb at hotmail.com] Envoy? : mardi 7 ao?t 2012 10:15 ? : users at lists.scilab.org Objet : [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux Hi, I am a beginner, and I have few knowledges about Scilab. I am working with Scilab 5.3. under Linux. I read several tutorials about how to import a Matrix from a .txt file to Scilab, but I always get error message. The kind of .txt file I have to habdle is the following one: PH-7: STEAMING RATES FOR FA 12AC, CYCLE 24 STEAMING RATES [kg/(m2s)] FOR ROD I1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0277 0,0518 0,0167 0,0016 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0023 0,0000 0,0000 0,0008 0,0068 0,0352 0,0892 0,1348 0,0879 0,0473 0,0164 0,0013 0,0000 0,0000 0,0000 274,35 cm 0,0532 0,0208 0,0212 0,0416 0,0653 0,1268 0,2032 0,2524 0,2020 0,1463 0,0891 0,0429 0,0128 0,0054 0,0000 280,07 cm 0,0879 0,0483 0,0539 0,0916 0,1292 0,2048 0,2796 0,3316 0,3056 0,2627 0,2076 0,1480 0,0913 0,0710 0,0000 285,78 cm 0,2462 0,1908 0,1965 0,2439 0,2815 0,3433 0,3981 0,3750 0,4191 0,3876 0,3457 0,2963 0,2396 0,2149 0,0000 291,50 cm 0,2677 0,2188 0,2353 0,2903 0,3298 0,3874 0,3114 0,3704 0,3622 0,3309 0,4271 0,3921 0,3515 0,3339 0,0000 297,21 cm 0,3646 0,3246 0,3359 0,3783 0,4090 0,3384 0,4002 0,4477 0,4430 0,4186 0,3836 0,3414 0,2924 0,3480 0,0000 302,93 cm 0,3451 0,3096 0,3323 0,2383 0,2945 0,3664 0,4256 0,4764 0,4870 0,4734 0,4504 0,4217 0,3877 0,3734 0,0000 308,64 cm 0,3075 0,4059 0,2948 0,3543 0,3964 0,4511 0,4966 0,5386 0,5496 0,5395 0,5213 0,4985 0,4717 0,4608 0,0394 314,36 cm 0,2286 0,1895 0,2331 0,3114 0,3655 0,4270 0,4766 0,5253 0,5503 0,5484 0,5386 0,5240 0,5061 0,4994 0,1102 320,07 cm 0,3241 0,2917 0,3264 0,3890 0,4323 0,4820 0,5234 0,5664 0,5906 0,5899 0,5818 0,5697 0,5547 0,5491 0,2164 325,79 cm 0,1835 0,1481 0,2014 0,2900 0,3511 0,4140 0,4631 0,4869 0,5237 0,5555 0,5546 0,5495 0,5414 0,5391 0,2225 331,51 cm 0,2779 0,2466 0,2925 0,3643 0,4136 0,4649 0,4807 0,5058 0,5418 0,5477 0,5698 0,5880 0,5816 0,5800 0,1625 337,22 cm 0,1394 0,1074 0,1613 0,2478 0,3092 0,2922 0,3525 0,4089 0,4490 0,4587 0,4625 0,4627 0,4609 0,4616 0,0714 342,94 cm 0,2228 0,1913 0,2424 0,3146 0,3650 0,3543 0,4030 0,4514 0,4888 0,4987 0,5033 0,5051 0,5046 0,5058 0,1644 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0069 0,0506 0,1296 0,1940 0,2122 0,2237 0,2327 0,2405 0,2467 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0021 0,0329 0,1074 0,1103 0,1976 0,2575 0,2745 0,2859 0,2953 0,3036 0,3097 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0057 0,0135 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0083 0,0115 0,0340 0,0511 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD J1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0067 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0062 0,0382 0,0660 0,0255 0,0050 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0043 0,0000 0,0000 0,0019 0,0107 0,0454 0,1065 0,1546 0,1060 0,0613 0,0251 0,0044 0,0000 0,0000 0,0000 274,35 cm 0,0618 0,0222 0,0235 0,0483 0,0760 0,1438 0,2232 0,2715 0,2231 0,1673 0,1074 0,0562 0,0204 0,0107 0,0000 280,07 cm 0,0985 0,0504 0,0575 0,1010 0,1430 0,2224 0,2976 0,3479 0,3235 0,2823 0,2285 0,1688 0,1096 0,0875 0,0000 285,78 cm 0,2592 0,1957 0,2035 0,2559 0,2950 0,3581 0,4125 0,3209 0,4334 0,4032 0,3630 0,3156 0,2608 0,2367 0,0000 291,50 cm 0,2808 0,2236 0,2420 0,3006 0,3418 0,4006 0,3306 0,3875 0,3803 0,3505 0,3807 0,4074 0,3684 0,3515 0,0000 297,21 cm 0,3749 0,3284 0,3407 0,3865 0,4186 0,3543 0,4154 0,4613 0,4575 0,4341 0,4006 0,3601 0,3130 0,2923 0,0000 302,93 cm 0,3561 0,3134 0,3376 0,2507 0,3086 0,3808 0,4394 0,4888 0,4995 0,4866 0,4645 0,4367 0,4040 0,3903 0,0011 308,64 cm 0,3209 0,4094 0,3019 0,3650 0,4080 0,4629 0,5082 0,5491 0,5604 0,5505 0,5330 0,5109 0,4852 0,4745 0,0545 314,36 cm 0,2429 0,1951 0,2414 0,3228 0,3776 0,4391 0,4881 0,5356 0,5605 0,5589 0,5493 0,5353 0,5180 0,5113 0,1326 320,07 cm 0,3358 0,2959 0,3331 0,3977 0,4417 0,4922 0,5334 0,5754 0,5996 0,5990 0,5912 0,5794 0,5648 0,5594 0,2395 325,79 cm 0,1975 0,1536 0,2092 0,3006 0,3622 0,4256 0,4743 0,4700 0,5077 0,5648 0,5640 0,5593 0,5515 0,5493 0,2452 331,51 cm 0,2898 0,2516 0,2987 0,3729 0,4228 0,4748 0,4649 0,5165 0,5521 0,5580 0,5566 0,5745 0,5904 0,5888 0,1881 337,22 cm 0,1547 0,1136 0,1701 0,2598 0,2770 0,3093 0,3682 0,4224 0,4614 0,4711 0,4749 0,4755 0,4737 0,4744 0,0933 342,94 cm 0,2370 0,1982 0,2503 0,3248 0,3752 0,3683 0,4160 0,4628 0,4993 0,5092 0,5139 0,5156 0,5152 0,5165 0,1904 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0138 0,0690 0,1545 0,2175 0,2348 0,2458 0,2543 0,2616 0,2674 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0047 0,0432 0,1277 0,1338 0,2199 0,2769 0,2932 0,3040 0,3128 0,3207 0,3265 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0018 0,0134 0,0239 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0056 0,0215 0,0495 0,0692 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD A9 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0004 0,0019 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0159 0,0244 0,0074 0,0038 0,0038 0,0025 0,0100 0,0158 0,0013 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 274,35 cm 0,0947 0,1130 0,0699 0,0563 0,0551 0,0467 0,0696 0,0831 0,0404 0,0153 0,0016 0,0000 0,0000 0,0000 0,0000 280,07 cm 0,1367 0,1625 0,1202 0,1116 0,1153 0,1034 0,1360 0,1633 0,1224 0,0823 0,0450 0,0178 0,0027 0,0004 0,0000 285,78 cm 0,2981 0,3209 0,2781 0,2669 0,2687 0,2530 0,2834 0,3074 0,2718 0,2286 0,1763 0,1225 0,0738 0,0570 0,0000 291,50 cm 0,3173 0,3425 0,3119 0,3112 0,3191 0,3079 0,3371 0,3673 0,3549 0,3274 0,2895 0,2449 0,1948 0,1744 0,0000 297,21 cm 0,4048 0,4248 0,3975 0,3955 0,4007 0,3896 0,3491 0,3097 0,3660 0,4063 0,3757 0,3393 0,2971 0,2792 0,0000 302,93 cm 0,3856 0,4092 0,3237 0,2587 0,2802 0,2708 0,3099 0,3529 0,3571 0,3379 0,3076 0,3469 0,3821 0,3703 0,0000 308,64 cm 0,3522 0,3785 0,3609 0,3714 0,3867 0,3780 0,4069 0,4409 0,4468 0,4330 0,4103 0,3819 0,3483 0,3345 0,0000 314,36 cm 0,2781 0,3117 0,3051 0,3295 0,3555 0,3518 0,3859 0,4291 0,4531 0,4501 0,4380 0,4208 0,3993 0,3912 0,0060 320,07 cm 0,3650 0,3922 0,3854 0,4043 0,4246 0,4209 0,4479 0,4848 0,5076 0,5061 0,4967 0,4829 0,4656 0,4592 0,0555 325,79 cm 0,2324 0,2686 0,2722 0,3072 0,3413 0,3407 0,3763 0,4232 0,4608 0,4680 0,4674 0,4622 0,4536 0,4512 0,0598 331,51 cm 0,3196 0,3490 0,3509 0,3790 0,4065 0,4057 0,4343 0,4746 0,5095 0,5170 0,5174 0,5138 0,5072 0,5056 0,1561 337,22 cm 0,1878 0,2249 0,2318 0,2658 0,2999 0,2931 0,2303 0,2850 0,3317 0,3443 0,3900 0,4290 0,4304 0,4327 0,0586 342,94 cm 0,2678 0,2989 0,3035 0,3310 0,3587 0,3532 0,3435 0,3510 0,3925 0,4046 0,4420 0,4743 0,4765 0,4791 0,1432 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0071 0,0313 0,0439 0,0548 0,0654 0,0757 0,0832 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0060 0,0268 0,0268 0,0581 0,1138 0,1759 0,1990 0,2170 0,2331 0,2477 0,2570 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0021 0,0088 0,0000 If you open this .txt file with wordpad, you see how it looks like. I have to import 3 Matrix of this file. I tried with mfscanf and with fscanfMat, but nothing helps, I always become error messages. My Matrix should be with 15 columns and 66 lines, the number of columns changes, but not the number of lines. I dont' need the first column with the cm. What could you suggest me? It would be really helpfull, because I am not coming forward. Thank you very much for your support! Best Regards, jean-baptiste doucet No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.2197 / Virus Database: 2437/5185 - Release Date: 08/07/12 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Serge.Steer at inria.fr Thu Aug 9 15:07:18 2012 From: Serge.Steer at inria.fr (Serge Steer) Date: Thu, 09 Aug 2012 15:07:18 +0200 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: References: <1344189195.16587.blah>,,<5020C905.6090901@scilab-enterprises.com>, Message-ID: <5023B606.9000908@inria.fr> If your data are stored in the file foo, you can read them using the following script which requires to know the number of columns (15) and the number of rows(65). Note that mk and Mk are data structures. You can get the numeric values in M1 using M1(:,[1 3:$) u=mopen('foo,'r'); ghead=mgetl(u,2); head1=mgetl(u,1); m1=mfscanf(1,u,"%s "+strcat("%f"+emptystr(1,15)," ")); M1=mfscanf(65,u,"%f %s "+strcat("%f"+emptystr(1,15)," ")+"\n"); head2=mgetl(u,1); m2=mfscanf(1,u,"%s "+strcat("%f"+emptystr(1,15)," ")); M2=mfscanf(65,u,"%f %s "+strcat("%f"+emptystr(1,15)," ")+"\n"); head3=mgetl(u,1); m3=mfscanf(1,u,"%s "+strcat("%f"+emptystr(1,15)," ")); M3=mfscanf(65,u,"%f %s "+strcat("%f"+emptystr(1,15)," ")+"\n"); mclose(u); Serge Steer Le 07/08/2012 10:15, Jean-Baptiste DOUCET a ?crit : > H-7: STEAMING RATES FOR FA 12AC, CYCLE 24 > > STEAMING RATES [kg/(m2s)] FOR ROD I1 > EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 > 224,998 239,998 254,998 269,998 276,809 285,181 > 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0277 0,0518 > 0,0167 0,0016 0,0000 0,0000 0,0000 0,0000 0,0000 > 268,63 cm 0,0023 0,0000 0,0000 0,0008 0,0068 0,0352 0,0892 0,1348 > 0,0879 0,0473 0,0164 0,0013 0,0000 0,0000 0,0000 > 274,35 cm 0,0532 0,0208 0,0212 0,0416 0,0653 0,1268 0,2032 0,2524 > 0,2020 0,1463 0,0891 0,0429 0,0128 0,0054 0,0000 > 280,07 cm 0,0879 0,0483 0,0539 0,0916 0,1292 0,2048 0,2796 0,3316 > 0,3056 0,2627 0,2076 0,1480 0,0913 0,0710 0,0000 > 285,78 cm 0,2462 0,1908 0,1965 0,2439 0,2815 0,3433 0,3981 0,3750 > 0,4191 0,3876 0,3457 0,2963 0,2396 0,2149 0,0000 > 291,50 cm 0,2677 0,2188 0,2353 0,2903 0,3298 0,3874 0,3114 0,3704 > 0,3622 0,3309 0,4271 0,3921 0,3515 0,3339 0,0000 > 297,21 cm 0,3646 0,3246 0,3359 0,3783 0,4090 0,3384 0,4002 0,4477 > 0,4430 0,4186 0,3836 0,3414 0,2924 0,3480 0,0000 > 302,93 cm 0,3451 0,3096 0,3323 0,2383 0,2945 0,3664 0,4256 0,4764 > 0,4870 0,4734 0,4504 0,4217 0,3877 0,3734 0,0000 > 308,64 cm 0,3075 0,4059 0,2948 0,3543 0,3964 0,4511 0,4966 0,5386 > 0,5496 0,5395 0,5213 0,4985 0,4717 0,4608 0,0394 > 314,36 cm 0,2286 0,1895 0,2331 0,3114 0,3655 0,4270 0,4766 0,5253 > 0,5503 0,5484 0,5386 0,5240 0,5061 0,4994 0,1102 > 320,07 cm 0,3241 0,2917 0,3264 0,3890 0,4323 0,4820 0,5234 0,5664 > 0,5906 0,5899 0,5818 0,5697 0,5547 0,5491 0,2164 > 325,79 cm 0,1835 0,1481 0,2014 0,2900 0,3511 0,4140 0,4631 0,4869 > 0,5237 0,5555 0,5546 0,5495 0,5414 0,5391 0,2225 > 331,51 cm 0,2779 0,2466 0,2925 0,3643 0,4136 0,4649 0,4807 0,5058 > 0,5418 0,5477 0,5698 0,5880 0,5816 0,5800 0,1625 > 337,22 cm 0,1394 0,1074 0,1613 0,2478 0,3092 0,2922 0,3525 0,4089 > 0,4490 0,4587 0,4625 0,4627 0,4609 0,4616 0,0714 > 342,94 cm 0,2228 0,1913 0,2424 0,3146 0,3650 0,3543 0,4030 0,4514 > 0,4888 0,4987 0,5033 0,5051 0,5046 0,5058 0,1644 > 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0069 0,0506 0,1296 > 0,1940 0,2122 0,2237 0,2327 0,2405 0,2467 0,0000 > 354,37 cm 0,0000 0,0000 0,0000 0,0021 0,0329 0,1074 0,1103 0,1976 > 0,2575 0,2745 0,2859 0,2953 0,3036 0,3097 0,0000 > 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0057 0,0135 0,0000 > 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0004 0,0083 0,0115 0,0340 0,0511 0,0000 > > > STEAMING RATES [kg/(m2s)] FOR ROD J1 > EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 > 224,998 239,998 254,998 269,998 276,809 285,181 > 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0067 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0062 0,0382 0,0660 > 0,0255 0,0050 0,0000 0,0000 0,0000 0,0000 0,0000 > 268,63 cm 0,0043 0,0000 0,0000 0,0019 0,0107 0,0454 0,1065 0,1546 > 0,1060 0,0613 0,0251 0,0044 0,0000 0,0000 0,0000 > 274,35 cm 0,0618 0,0222 0,0235 0,0483 0,0760 0,1438 0,2232 0,2715 > 0,2231 0,1673 0,1074 0,0562 0,0204 0,0107 0,0000 > 280,07 cm 0,0985 0,0504 0,0575 0,1010 0,1430 0,2224 0,2976 0,3479 > 0,3235 0,2823 0,2285 0,1688 0,1096 0,0875 0,0000 > 285,78 cm 0,2592 0,1957 0,2035 0,2559 0,2950 0,3581 0,4125 0,3209 > 0,4334 0,4032 0,3630 0,3156 0,2608 0,2367 0,0000 > 291,50 cm 0,2808 0,2236 0,2420 0,3006 0,3418 0,4006 0,3306 0,3875 > 0,3803 0,3505 0,3807 0,4074 0,3684 0,3515 0,0000 > 297,21 cm 0,3749 0,3284 0,3407 0,3865 0,4186 0,3543 0,4154 0,4613 > 0,4575 0,4341 0,4006 0,3601 0,3130 0,2923 0,0000 > 302,93 cm 0,3561 0,3134 0,3376 0,2507 0,3086 0,3808 0,4394 0,4888 > 0,4995 0,4866 0,4645 0,4367 0,4040 0,3903 0,0011 > 308,64 cm 0,3209 0,4094 0,3019 0,3650 0,4080 0,4629 0,5082 0,5491 > 0,5604 0,5505 0,5330 0,5109 0,4852 0,4745 0,0545 > 314,36 cm 0,2429 0,1951 0,2414 0,3228 0,3776 0,4391 0,4881 0,5356 > 0,5605 0,5589 0,5493 0,5353 0,5180 0,5113 0,1326 > 320,07 cm 0,3358 0,2959 0,3331 0,3977 0,4417 0,4922 0,5334 0,5754 > 0,5996 0,5990 0,5912 0,5794 0,5648 0,5594 0,2395 > 325,79 cm 0,1975 0,1536 0,2092 0,3006 0,3622 0,4256 0,4743 0,4700 > 0,5077 0,5648 0,5640 0,5593 0,5515 0,5493 0,2452 > 331,51 cm 0,2898 0,2516 0,2987 0,3729 0,4228 0,4748 0,4649 0,5165 > 0,5521 0,5580 0,5566 0,5745 0,5904 0,5888 0,1881 > 337,22 cm 0,1547 0,1136 0,1701 0,2598 0,2770 0,3093 0,3682 0,4224 > 0,4614 0,4711 0,4749 0,4755 0,4737 0,4744 0,0933 > 342,94 cm 0,2370 0,1982 0,2503 0,3248 0,3752 0,3683 0,4160 0,4628 > 0,4993 0,5092 0,5139 0,5156 0,5152 0,5165 0,1904 > 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0138 0,0690 0,1545 > 0,2175 0,2348 0,2458 0,2543 0,2616 0,2674 0,0000 > 354,37 cm 0,0000 0,0000 0,0000 0,0047 0,0432 0,1277 0,1338 0,2199 > 0,2769 0,2932 0,3040 0,3128 0,3207 0,3265 0,0000 > 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0018 0,0134 0,0239 0,0000 > 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0056 0,0215 0,0495 0,0692 0,0000 > > > STEAMING RATES [kg/(m2s)] FOR ROD A9 > EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 > 224,998 239,998 254,998 269,998 276,809 285,181 > 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 262,92 cm 0,0004 0,0019 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 268,63 cm 0,0159 0,0244 0,0074 0,0038 0,0038 0,0025 0,0100 0,0158 > 0,0013 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 274,35 cm 0,0947 0,1130 0,0699 0,0563 0,0551 0,0467 0,0696 0,0831 > 0,0404 0,0153 0,0016 0,0000 0,0000 0,0000 0,0000 > 280,07 cm 0,1367 0,1625 0,1202 0,1116 0,1153 0,1034 0,1360 0,1633 > 0,1224 0,0823 0,0450 0,0178 0,0027 0,0004 0,0000 > 285,78 cm 0,2981 0,3209 0,2781 0,2669 0,2687 0,2530 0,2834 0,3074 > 0,2718 0,2286 0,1763 0,1225 0,0738 0,0570 0,0000 > 291,50 cm 0,3173 0,3425 0,3119 0,3112 0,3191 0,3079 0,3371 0,3673 > 0,3549 0,3274 0,2895 0,2449 0,1948 0,1744 0,0000 > 297,21 cm 0,4048 0,4248 0,3975 0,3955 0,4007 0,3896 0,3491 0,3097 > 0,3660 0,4063 0,3757 0,3393 0,2971 0,2792 0,0000 > 302,93 cm 0,3856 0,4092 0,3237 0,2587 0,2802 0,2708 0,3099 0,3529 > 0,3571 0,3379 0,3076 0,3469 0,3821 0,3703 0,0000 > 308,64 cm 0,3522 0,3785 0,3609 0,3714 0,3867 0,3780 0,4069 0,4409 > 0,4468 0,4330 0,4103 0,3819 0,3483 0,3345 0,0000 > 314,36 cm 0,2781 0,3117 0,3051 0,3295 0,3555 0,3518 0,3859 0,4291 > 0,4531 0,4501 0,4380 0,4208 0,3993 0,3912 0,0060 > 320,07 cm 0,3650 0,3922 0,3854 0,4043 0,4246 0,4209 0,4479 0,4848 > 0,5076 0,5061 0,4967 0,4829 0,4656 0,4592 0,0555 > 325,79 cm 0,2324 0,2686 0,2722 0,3072 0,3413 0,3407 0,3763 0,4232 > 0,4608 0,4680 0,4674 0,4622 0,4536 0,4512 0,0598 > 331,51 cm 0,3196 0,3490 0,3509 0,3790 0,4065 0,4057 0,4343 0,4746 > 0,5095 0,5170 0,5174 0,5138 0,5072 0,5056 0,1561 > 337,22 cm 0,1878 0,2249 0,2318 0,2658 0,2999 0,2931 0,2303 0,2850 > 0,3317 0,3443 0,3900 0,4290 0,4304 0,4327 0,0586 > 342,94 cm 0,2678 0,2989 0,3035 0,3310 0,3587 0,3532 0,3435 0,3510 > 0,3925 0,4046 0,4420 0,4743 0,4765 0,4791 0,1432 > 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0071 > 0,0313 0,0439 0,0548 0,0654 0,0757 0,0832 0,0000 > 354,37 cm 0,0000 0,0000 0,0000 0,0060 0,0268 0,0268 0,0581 0,1138 > 0,1759 0,1990 0,2170 0,2331 0,2477 0,2570 0,0000 > 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 > 0,0000 0,0000 0,0000 0,0000 0,0021 0,0088 0,0000 -------------- next part -------------- An HTML attachment was scrubbed... URL: From doucetjb at hotmail.com Thu Aug 9 15:35:33 2012 From: doucetjb at hotmail.com (Jean-Baptiste DOUCET) Date: Thu, 9 Aug 2012 15:35:33 +0200 Subject: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux In-Reply-To: <5023B606.9000908@inria.fr> References: <1344189195.16587.blah>,,<5020C905.6090901@scilab-enterprises.com>, ,<5023B606.9000908@inria.fr> Message-ID: Thank you all for your help! Date: Thu, 9 Aug 2012 15:07:18 +0200 From: Serge.Steer at inria.fr To: users at lists.scilab.org Subject: Re: [scilab-Users] How to import a Matrix from a .txt file with Scilab 5.3 under Linux If your data are stored in the file foo, you can read them using the following script which requires to know the number of columns (15) and the number of rows(65). Note that mk and Mk are data structures. You can get the numeric values in M1 using M1(:,[1 3:$) u=mopen('foo,'r'); ghead=mgetl(u,2); head1=mgetl(u,1); m1=mfscanf(1,u,"%s "+strcat("%f"+emptystr(1,15)," ")); M1=mfscanf(65,u,"%f %s "+strcat("%f"+emptystr(1,15)," ")+"\n"); head2=mgetl(u,1); m2=mfscanf(1,u,"%s "+strcat("%f"+emptystr(1,15)," ")); M2=mfscanf(65,u,"%f %s "+strcat("%f"+emptystr(1,15)," ")+"\n"); head3=mgetl(u,1); m3=mfscanf(1,u,"%s "+strcat("%f"+emptystr(1,15)," ")); M3=mfscanf(65,u,"%f %s "+strcat("%f"+emptystr(1,15)," ")+"\n"); mclose(u); Serge Steer Le 07/08/2012 10:15, Jean-Baptiste DOUCET a ?crit : H-7: STEAMING RATES FOR FA 12AC, CYCLE 24 STEAMING RATES [kg/(m2s)] FOR ROD I1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0028 0,0277 0,0518 0,0167 0,0016 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0023 0,0000 0,0000 0,0008 0,0068 0,0352 0,0892 0,1348 0,0879 0,0473 0,0164 0,0013 0,0000 0,0000 0,0000 274,35 cm 0,0532 0,0208 0,0212 0,0416 0,0653 0,1268 0,2032 0,2524 0,2020 0,1463 0,0891 0,0429 0,0128 0,0054 0,0000 280,07 cm 0,0879 0,0483 0,0539 0,0916 0,1292 0,2048 0,2796 0,3316 0,3056 0,2627 0,2076 0,1480 0,0913 0,0710 0,0000 285,78 cm 0,2462 0,1908 0,1965 0,2439 0,2815 0,3433 0,3981 0,3750 0,4191 0,3876 0,3457 0,2963 0,2396 0,2149 0,0000 291,50 cm 0,2677 0,2188 0,2353 0,2903 0,3298 0,3874 0,3114 0,3704 0,3622 0,3309 0,4271 0,3921 0,3515 0,3339 0,0000 297,21 cm 0,3646 0,3246 0,3359 0,3783 0,4090 0,3384 0,4002 0,4477 0,4430 0,4186 0,3836 0,3414 0,2924 0,3480 0,0000 302,93 cm 0,3451 0,3096 0,3323 0,2383 0,2945 0,3664 0,4256 0,4764 0,4870 0,4734 0,4504 0,4217 0,3877 0,3734 0,0000 308,64 cm 0,3075 0,4059 0,2948 0,3543 0,3964 0,4511 0,4966 0,5386 0,5496 0,5395 0,5213 0,4985 0,4717 0,4608 0,0394 314,36 cm 0,2286 0,1895 0,2331 0,3114 0,3655 0,4270 0,4766 0,5253 0,5503 0,5484 0,5386 0,5240 0,5061 0,4994 0,1102 320,07 cm 0,3241 0,2917 0,3264 0,3890 0,4323 0,4820 0,5234 0,5664 0,5906 0,5899 0,5818 0,5697 0,5547 0,5491 0,2164 325,79 cm 0,1835 0,1481 0,2014 0,2900 0,3511 0,4140 0,4631 0,4869 0,5237 0,5555 0,5546 0,5495 0,5414 0,5391 0,2225 331,51 cm 0,2779 0,2466 0,2925 0,3643 0,4136 0,4649 0,4807 0,5058 0,5418 0,5477 0,5698 0,5880 0,5816 0,5800 0,1625 337,22 cm 0,1394 0,1074 0,1613 0,2478 0,3092 0,2922 0,3525 0,4089 0,4490 0,4587 0,4625 0,4627 0,4609 0,4616 0,0714 342,94 cm 0,2228 0,1913 0,2424 0,3146 0,3650 0,3543 0,4030 0,4514 0,4888 0,4987 0,5033 0,5051 0,5046 0,5058 0,1644 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0069 0,0506 0,1296 0,1940 0,2122 0,2237 0,2327 0,2405 0,2467 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0021 0,0329 0,1074 0,1103 0,1976 0,2575 0,2745 0,2859 0,2953 0,3036 0,3097 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0057 0,0135 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0083 0,0115 0,0340 0,0511 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD J1 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0004 0,0067 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0062 0,0382 0,0660 0,0255 0,0050 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0043 0,0000 0,0000 0,0019 0,0107 0,0454 0,1065 0,1546 0,1060 0,0613 0,0251 0,0044 0,0000 0,0000 0,0000 274,35 cm 0,0618 0,0222 0,0235 0,0483 0,0760 0,1438 0,2232 0,2715 0,2231 0,1673 0,1074 0,0562 0,0204 0,0107 0,0000 280,07 cm 0,0985 0,0504 0,0575 0,1010 0,1430 0,2224 0,2976 0,3479 0,3235 0,2823 0,2285 0,1688 0,1096 0,0875 0,0000 285,78 cm 0,2592 0,1957 0,2035 0,2559 0,2950 0,3581 0,4125 0,3209 0,4334 0,4032 0,3630 0,3156 0,2608 0,2367 0,0000 291,50 cm 0,2808 0,2236 0,2420 0,3006 0,3418 0,4006 0,3306 0,3875 0,3803 0,3505 0,3807 0,4074 0,3684 0,3515 0,0000 297,21 cm 0,3749 0,3284 0,3407 0,3865 0,4186 0,3543 0,4154 0,4613 0,4575 0,4341 0,4006 0,3601 0,3130 0,2923 0,0000 302,93 cm 0,3561 0,3134 0,3376 0,2507 0,3086 0,3808 0,4394 0,4888 0,4995 0,4866 0,4645 0,4367 0,4040 0,3903 0,0011 308,64 cm 0,3209 0,4094 0,3019 0,3650 0,4080 0,4629 0,5082 0,5491 0,5604 0,5505 0,5330 0,5109 0,4852 0,4745 0,0545 314,36 cm 0,2429 0,1951 0,2414 0,3228 0,3776 0,4391 0,4881 0,5356 0,5605 0,5589 0,5493 0,5353 0,5180 0,5113 0,1326 320,07 cm 0,3358 0,2959 0,3331 0,3977 0,4417 0,4922 0,5334 0,5754 0,5996 0,5990 0,5912 0,5794 0,5648 0,5594 0,2395 325,79 cm 0,1975 0,1536 0,2092 0,3006 0,3622 0,4256 0,4743 0,4700 0,5077 0,5648 0,5640 0,5593 0,5515 0,5493 0,2452 331,51 cm 0,2898 0,2516 0,2987 0,3729 0,4228 0,4748 0,4649 0,5165 0,5521 0,5580 0,5566 0,5745 0,5904 0,5888 0,1881 337,22 cm 0,1547 0,1136 0,1701 0,2598 0,2770 0,3093 0,3682 0,4224 0,4614 0,4711 0,4749 0,4755 0,4737 0,4744 0,0933 342,94 cm 0,2370 0,1982 0,2503 0,3248 0,3752 0,3683 0,4160 0,4628 0,4993 0,5092 0,5139 0,5156 0,5152 0,5165 0,1904 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0138 0,0690 0,1545 0,2175 0,2348 0,2458 0,2543 0,2616 0,2674 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0047 0,0432 0,1277 0,1338 0,2199 0,2769 0,2932 0,3040 0,3128 0,3207 0,3265 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0018 0,0134 0,0239 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0056 0,0215 0,0495 0,0692 0,0000 STEAMING RATES [kg/(m2s)] FOR ROD A9 EFPD 0,000 6,000 29,999 60,000 89,999 119,999 149,999 179,999 209,998 224,998 239,998 254,998 269,998 276,809 285,181 0,00 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 5,72 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 11,43 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 17,15 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 22,86 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 28,58 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 34,29 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 40,01 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 45,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 51,44 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 57,16 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 62,87 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 68,59 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 74,30 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 80,02 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 85,73 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 91,45 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 97,17 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 102,88 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 108,60 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 114,31 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 120,03 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 125,74 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 131,46 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 137,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 142,89 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 148,61 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 154,32 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 160,04 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 165,75 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 171,47 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 177,18 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 182,90 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 188,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 194,33 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 200,05 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 205,76 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 211,48 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 217,19 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 222,91 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 228,62 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 234,34 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 240,06 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 245,77 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 251,49 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 257,20 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 262,92 cm 0,0004 0,0019 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 268,63 cm 0,0159 0,0244 0,0074 0,0038 0,0038 0,0025 0,0100 0,0158 0,0013 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 274,35 cm 0,0947 0,1130 0,0699 0,0563 0,0551 0,0467 0,0696 0,0831 0,0404 0,0153 0,0016 0,0000 0,0000 0,0000 0,0000 280,07 cm 0,1367 0,1625 0,1202 0,1116 0,1153 0,1034 0,1360 0,1633 0,1224 0,0823 0,0450 0,0178 0,0027 0,0004 0,0000 285,78 cm 0,2981 0,3209 0,2781 0,2669 0,2687 0,2530 0,2834 0,3074 0,2718 0,2286 0,1763 0,1225 0,0738 0,0570 0,0000 291,50 cm 0,3173 0,3425 0,3119 0,3112 0,3191 0,3079 0,3371 0,3673 0,3549 0,3274 0,2895 0,2449 0,1948 0,1744 0,0000 297,21 cm 0,4048 0,4248 0,3975 0,3955 0,4007 0,3896 0,3491 0,3097 0,3660 0,4063 0,3757 0,3393 0,2971 0,2792 0,0000 302,93 cm 0,3856 0,4092 0,3237 0,2587 0,2802 0,2708 0,3099 0,3529 0,3571 0,3379 0,3076 0,3469 0,3821 0,3703 0,0000 308,64 cm 0,3522 0,3785 0,3609 0,3714 0,3867 0,3780 0,4069 0,4409 0,4468 0,4330 0,4103 0,3819 0,3483 0,3345 0,0000 314,36 cm 0,2781 0,3117 0,3051 0,3295 0,3555 0,3518 0,3859 0,4291 0,4531 0,4501 0,4380 0,4208 0,3993 0,3912 0,0060 320,07 cm 0,3650 0,3922 0,3854 0,4043 0,4246 0,4209 0,4479 0,4848 0,5076 0,5061 0,4967 0,4829 0,4656 0,4592 0,0555 325,79 cm 0,2324 0,2686 0,2722 0,3072 0,3413 0,3407 0,3763 0,4232 0,4608 0,4680 0,4674 0,4622 0,4536 0,4512 0,0598 331,51 cm 0,3196 0,3490 0,3509 0,3790 0,4065 0,4057 0,4343 0,4746 0,5095 0,5170 0,5174 0,5138 0,5072 0,5056 0,1561 337,22 cm 0,1878 0,2249 0,2318 0,2658 0,2999 0,2931 0,2303 0,2850 0,3317 0,3443 0,3900 0,4290 0,4304 0,4327 0,0586 342,94 cm 0,2678 0,2989 0,3035 0,3310 0,3587 0,3532 0,3435 0,3510 0,3925 0,4046 0,4420 0,4743 0,4765 0,4791 0,1432 348,65 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0071 0,0313 0,0439 0,0548 0,0654 0,0757 0,0832 0,0000 354,37 cm 0,0000 0,0000 0,0000 0,0060 0,0268 0,0268 0,0581 0,1138 0,1759 0,1990 0,2170 0,2331 0,2477 0,2570 0,0000 360,08 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 365,80 cm 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0000 0,0021 0,0088 0,0000 -------------- next part -------------- An HTML attachment was scrubbed... URL: From purpose_163 at yahoo.com Sun Aug 12 06:51:41 2012 From: purpose_163 at yahoo.com (aqeel ahmed) Date: Sat, 11 Aug 2012 21:51:41 -0700 (PDT) Subject: problem with scifunc_block_m Message-ID: <1344747101092-4024703.post@n3.nabble.com> hi, i have recently installed scilab 5.3.3.0 and facing a problem that i am not able to increase the number inputs to subject block. please note that i am using vs2008 with win xp pro. thanks -- View this message in context: http://mailinglists.scilab.org/problem-with-scifunc-block-m-tp4024703.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From rakhiwarriar at gmail.com Mon Aug 13 08:01:58 2012 From: rakhiwarriar at gmail.com (Rakhi Warriar) Date: Mon, 13 Aug 2012 11:31:58 +0530 Subject: Using Xcos generated C code to get HDL code Message-ID: Hi I have made an Xcos diagram with logic gates and have generated its C code using the Code generation functionality in Xcos. I would like to convert this to HDL code (verilog or VHDL) . Is there a toolbox/function available which can do this conversion.? I would want to then use this verilog/vhdl code and then simulate it using iverilog or ghdl. Thanks Rakhi IIT Bombay India -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab-enterprises.com Wed Aug 15 20:29:53 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Wed, 15 Aug 2012 20:29:53 +0200 Subject: [scilab-Users] Styles and layout for XML help files edition In-Reply-To: <502119F7.9050700@free.fr> References: <502119F7.9050700@free.fr> Message-ID: <502BEAA1.7080902@scilab-enterprises.com> Le 07/08/2012 15:36, Samuel Gougeon a ?crit : > Hello, > > Is it possible to have the Scilab help pages styles and layout within > the Serna > free XML editor ? The default mode works for me ?! The docbook formats work pretty nice too. Sylvestre -------------- next part -------------- An HTML attachment was scrubbed... URL: From ludo.wag at laposte.net Fri Aug 17 07:54:17 2012 From: ludo.wag at laposte.net (Orbeman) Date: Thu, 16 Aug 2012 22:54:17 -0700 (PDT) Subject: How to extract matrix in a huge text file Message-ID: <1345182857396-4024708.post@n3.nabble.com> Hello, I try to optimise the extraction of a huge matrix mxn of a text file. The syntax of the text is : single text line matrix 1xn single text line matrix mxn Data are exported from Moldflow (polymer injection software) with a native patran format (.ele) like : SCANDIUM Fiber orientation tensor on elements results 92622 102184 0 0 6 EleID Txx Tyy Tzz Txy Txz Tyz 17542 +3.40330E-01 +3.30003E-01 +3.29667E-01 +7.10335E-05 +1.90178E-04 -1.56400E-04 17546 +3.38631E-01 +3.30777E-01 +3.30592E-01 +4.99531E-05 +1.41874E-04 +1.10836E-04 102183 +3.40153E-01 +3.30106E-01 +3.29742E-01 +6.99497E-05 +1.86002E-04 -1.99423E-04 17553 +3.48919E-01 +3.26850E-01 +3.24231E-01 -2.52756E-05 +1.52858E-04 -1.58712E-04 102184 +3.38454E-01 +3.30879E-01 +3.30667E-01 +4.88692E-05 +1.37698E-04 +6.78126E-05 17544 +3.47692E-01 +3.27132E-01 +3.25176E-01 -1.53594E-04 -2.83984E-04 +3.80141E-04 ... The function fscanfMat work fine il y a delete (manualy) the matrix 1xn. It is a way to use this function without get an error with the presence of the 1xn matrix ? At this this I read the file and I duplicate only the 3:$ line but it takes too much time (about 60 s !). Thanks ! I hope I was understable because I've some difficulties to speak (and write) in english. -- View this message in context: http://mailinglists.scilab.org/How-to-extract-matrix-in-a-huge-text-file-tp4024708.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From Mike at Page-One.Waitrose.com Fri Aug 17 11:14:27 2012 From: Mike at Page-One.Waitrose.com (Mike Page) Date: Fri, 17 Aug 2012 10:14:27 +0100 Subject: [scilab-Users] How to extract matrix in a huge text file In-Reply-To: <1345182857396-4024708.post@n3.nabble.com> Message-ID: Hi, I don't know how fast it would be on your huge matrix, but the following works for your small example. f=mopen("C:\temp\tmp.txt"); Title = mgetl(f,1) Title = SCANDIUM Fiber orientation tensor on elements results Info = evstr(mgetl(f,1)) Info = 92622. 102184. 0. 0. 6. Head = mgetl(f,1) Head = EleID Txx Tyy Tzz Txy Txz Tyz Mat = evstr(mgetl(f,-1)) Mat = 17542. 0.34033 0.330003 0.329667 0.0000710 0.0001902 - 0.0001564 17546. 0.338631 0.330777 0.330592 0.0000500 0.0001419 0.0001108 102183. 0.340153 0.330106 0.329742 0.0000699 0.0001860 - 0.0001994 17553. 0.348919 0.32685 0.324231 - 0.0000253 0.0001529 - 0.0001587 102184. 0.338454 0.330879 0.330667 0.0000489 0.0001377 0.0000678 17544. 0.347692 0.327132 0.325176 - 0.0001536 - 0.0002840 0.0003801 HTH, Mike. -----Original Message----- From: Orbeman [mailto:ludo.wag at laposte.net] Sent: 17 August 2012 06:54 To: users at lists.scilab.org Subject: [scilab-Users] How to extract matrix in a huge text file Hello, I try to optimise the extraction of a huge matrix mxn of a text file. The syntax of the text is : single text line matrix 1xn single text line matrix mxn Data are exported from Moldflow (polymer injection software) with a native patran format (.ele) like : SCANDIUM Fiber orientation tensor on elements results 92622 102184 0 0 6 EleID Txx Tyy Tzz Txy Txz Tyz 17542 +3.40330E-01 +3.30003E-01 +3.29667E-01 +7.10335E-05 +1.90178E-04 -1.56400E-04 17546 +3.38631E-01 +3.30777E-01 +3.30592E-01 +4.99531E-05 +1.41874E-04 +1.10836E-04 102183 +3.40153E-01 +3.30106E-01 +3.29742E-01 +6.99497E-05 +1.86002E-04 -1.99423E-04 17553 +3.48919E-01 +3.26850E-01 +3.24231E-01 -2.52756E-05 +1.52858E-04 -1.58712E-04 102184 +3.38454E-01 +3.30879E-01 +3.30667E-01 +4.88692E-05 +1.37698E-04 +6.78126E-05 17544 +3.47692E-01 +3.27132E-01 +3.25176E-01 -1.53594E-04 -2.83984E-04 +3.80141E-04 ... The function fscanfMat work fine il y a delete (manualy) the matrix 1xn. It is a way to use this function without get an error with the presence of the 1xn matrix ? At this this I read the file and I duplicate only the 3:$ line but it takes too much time (about 60 s !). Thanks ! I hope I was understable because I've some difficulties to speak (and write) in english. -- View this message in context: http://mailinglists.scilab.org/How-to-extract-matrix-in-a-huge-text-file-tp4 024708.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. -- To unsubscribe from this mailing-list, please send an empty mail to users-unsubscribe at lists.scilab.org To check the archives of this mailing list, see http://mailinglists.scilab.org/ ----- No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.2197 / Virus Database: 2437/5204 - Release Date: 08/16/12 From ab at igh-essen.com Mon Aug 20 07:46:45 2012 From: ab at igh-essen.com (Andreas Stewering-Bone) Date: Mon, 20 Aug 2012 07:46:45 +0200 Subject: [Scilab-users] BUG ilib_mex_build? Message-ID: <5031CF45.30001@igh-essen.com> Hello , I noticed a different behavior between Scilab-5.4-beta1 Scilab-5.4-beta2 both Linux 32-Bit binary from the scilab homepage. I attached the funtion to compile a matlab mex funtion. Under Beta 1 everthing works fine (Compilation, loader,...), but under Beta 2 the Compilation fails with the missings header mex.h. This file is placed under SCI+"includes". So I think this path is missing in the Basic setup of this function. Greatings Andreas mode(-1); lines(0); function mex_builder() libname = "libcandbcscilab"; filename = [mysrcpath+filesep()+"signalcoding.c", ... mysrcpath+filesep()+"messagecoding.c", ... mysrcpath+filesep()+"libcandbc"+filesep()+"dbcModel.c", ... mysrcpath+filesep()+"libcandbc"+filesep()+"dbcReader.c", ... mysrcpath+filesep()+"libcandbc"+filesep()+"dbcWriter.c", ... mysrcpath+filesep()+"libcandbc"+filesep()+"lexer.c", ... mysrcpath+filesep()+"libcandbc"+filesep()+"parser.c", ... mysrcpath+filesep()+"hashtable"+filesep()+"hashtable.c", ... mysrcpath+filesep()+"hashtable"+filesep()+"hashtable_itr.c", ... "can_dbc.c"]; table = ["can_dbc", "can_dbc"]; mycflags = ["-I"+mysrcpath+" -I"+mysrcpath+filesep()+"hashtable"+" -I"+mysrcpath+filesep()+"libcandbc "]; myldflags = []; ilib_verbose(0); ilib_mex_build(libname, ... ["can_dbc", "can_dbc","cmex"], ... filename, ... "", ... "", ... myldflags, ... mycflags); endfunction mex_builder() clear mex_builder; Mit freundlichem Gru? Andreas Stewering-Bone -- ------------------------------------------------------------------------ Dipl.-Ing.(FH) Andreas Stewering-Bone andreas.stewering-bone at igh-essen.com Tel.: +49 201 / 36014-15 Ingenieurgemeinschaft IgH Gesellschaft f?r Ingenieurleistungen mbH Heinz-B?cker-Str. 34 D-45356 Essen Amtsgericht Essen HRB 11500 USt-Id.-Nr.: DE 174 626 722 Gesch?ftsf?hrung: - Dr.-Ing. S. Rotth?user, - Dr.-Ing. T. Finke, - Dr.-Ing. W. Hagemeister Tel.: +49 201 / 360-14-0 http://www.igh-essen.com ------------------------------------------------------------------------ From Michael.Hartl at ait.ac.at Mon Aug 20 12:38:18 2012 From: Michael.Hartl at ait.ac.at (Hartl Michael) Date: Mon, 20 Aug 2012 12:38:18 +0200 Subject: [Scilab-users] Can not compile Message-ID: <6C6C9250F4D8314A88B9955C38AAFD93B66F242333@MAILBOX.arc.local> Dear all, I just installed scilab and tryed to run a Xcos model (electrical demo). But it does not work since it does not find a fortran or c compiler. Even though I have Visual C express and visual c++ express and devC++ installed on my computer. The error message is as follows: ________________________ Main Modelica : C:\Users\HartlM\AppData\Local\Temp\SCI_TMP_12988_\Untitled_im.mo Flat Modelica : C:\Users\HartlM\AppData\Local\Temp\SCI_TMP_12988_\Untitled_imf.mo Simulation C code :C:\Users\HartlM\AppData\Local\Temp\SCI_TMP_12988_\Untitled_im.c Generate a loader file Generate a Makefile Running the Makefile !sorry compiling problem ! ! ! !A Fortran or C compiler is required. ! _______________________ Can anybody help me? Thank you all in advance. Cheers, Michael MICHAEL HARTL Scientist Energy Department Sustainable Thermal Energy Systems AIT Austrian Institute of Technology GmbH Giefinggasse 2 | 1210 Vienna | Austria T +43(0) 50550-6040 | M +43(0) 664 88390018 | F +43(0) 50550-6679 michael.hartl at ait.ac.at | http://www.ait.ac.at FN: 115980 i HG Wien | UID: ATU14703506 This email and any attachments thereto, is intended only for use by the addressee(s) named herein and may contain legally privileged and/or confidential information. If you are not the intended recipient, please notify the sender by return e-mail or by telephone and delete this message from your system and any printout thereof. Any unauthorized use, reproduction, or dissemination of this message is strictly prohibited. Please note that e-mails are susceptible to change. ?sterreichisches Forschungs- und Pr?fzentrum Arsenal Ges.m.b.H. shall not be liable for the improper or incomplete transmission of the information contained in this communication, nor shall it be liable for any delay in its receipt. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.dubois at limsi.fr Mon Aug 20 13:51:15 2012 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Mon, 20 Aug 2012 13:51:15 +0200 Subject: [Scilab-users] [Users] Discrete cosine transform In-Reply-To: <1345228164.512773.31919.54484@saddam3.rambler.ru> References: <1345228164.512773.31919.54484@saddam3.rambler.ru> Message-ID: <5f88cef569f494efaaf59443e2867688@limsi.fr> Hello, I'm not an expert by I think you can compute a DCT with a FFT. Some people (http://www.orkut.com/Main#CommMsgs?tid=223615&cmm=79234&hl=en-GB) suggested to take inspiration from Matlab DCT function. Otherwise you may take a look at SIP (http://siptoolbox.sourceforge.net/) which I believe has a DCT function. HTH, Mathieu On 2012-08-17 20:29, tvitklg at rambler.ru wrote: > Hello. Whether there is a function Discrete cosine transform (DCT)? > > tvitklg at rambler.ru From thinkerdafy at gmail.com Mon Aug 20 19:48:34 2012 From: thinkerdafy at gmail.com (=?ISO-8859-1?Q?Dennys_Alexis_Ferrer_Ya=F1ez?=) Date: Mon, 20 Aug 2012 12:48:34 -0500 Subject: [Scilab-users] help Message-ID: Saludos. Quisiera saber como puedo descargar informaci?n en la secci?n de libros y papeles donde se especifica que hay documentaci?n para usuarios principiantes y avanzados. Me exige un nombre de usuario y contrase?a, pero no me acepta los datos de ?sta cuenta. mi nombre de usuario es: dennysferrer o thinkerdafy at gmail.com contrase?a: thinkerdafyelec Estos datos que muestro no me los acepta y son los que especifique en la cuenta que cree. agradezco me puedan colaborar con esta inquietud. -- *Dennys Ferrer. Ing. Electr?nico. UFPS * -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.dubois at limsi.fr Mon Aug 20 22:52:10 2012 From: mathieu.dubois at limsi.fr (Mathieu Dubois) Date: Mon, 20 Aug 2012 22:52:10 +0200 Subject: [Scilab-users] [Users] Discrete cosine transform In-Reply-To: <1345486229.1902.20281.23838@saddam1.rambler.ru> References: <5f88cef569f494efaaf59443e2867688@limsi.fr> <1345486229.1902.20281.23838@saddam1.rambler.ru> Message-ID: <5032A37A.70302@limsi.fr> Le 20/08/2012 20:10, tvitklg at rambler.ru a ?crit : > What is this file "mfile2sci" where it(him) to take? This is the matlab to scilab translator. You can access it from scilab main window (click on "Applications"). > Under the reference " http: // scilabsoft.inria.fr/doc.html " I can not > go, is not loaded and gives out a mistake... This an old site. Take look to scilab documentation (doc("fft")). > > I'm not an expert by I think you can compute a DCT with a FFT. Some > people > (http://www.orkut.com/Main#CommMsgs?tid=223615&cmm=79234&hl=en-GB) > > > suggested to take inspiration from Matlab DCT function. > > Otherwise you may take a look at SIP > (http://siptoolbox.sourceforge.net/) > > which I believe has a DCT function. > > HTH, > Mathieu > > On 2012-08-17 20:29, tvitklg at rambler.ru > wrote: > > Hello. Whether there is a function Discrete cosine transform (DCT)? > > > > tvitklg at rambler.ru > From celso.co at gmail.com Tue Aug 21 05:59:30 2012 From: celso.co at gmail.com (Celso Co) Date: Tue, 21 Aug 2012 11:59:30 +0800 Subject: [Scilab-users] [Users] Discrete cosine transform In-Reply-To: <1345228164.512773.31919.54484@saddam3.rambler.ru> References: <1345228164.512773.31919.54484@saddam3.rambler.ru> Message-ID: Please see the following: http://mathworld.wolfram.com/DiscreteFourierTransform.htmlhttp://mathworld.wolfram.com/DiscreteFourierTransform.html http://mathworld.wolfram.com/FourierTransformCosine.html On Sat, Aug 18, 2012 at 2:29 AM, wrote: > Hello. Whether there is a function Discrete cosine transform (DCT)? > > > > tvitklg at rambler.ru > > > _______________________________________________ > Users mailing list > Users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -- Eng'r Celso B. Co, PhD ECE Mobile Nos; +63918 913 2123 From sahallacy at hotmail.com Tue Aug 21 06:11:29 2012 From: sahallacy at hotmail.com (steven hallacy) Date: Mon, 20 Aug 2012 23:11:29 -0500 Subject: [Scilab-users] Can not compile In-Reply-To: <6C6C9250F4D8314A88B9955C38AAFD93B66F242333@MAILBOX.arc.local> References: <6C6C9250F4D8314A88B9955C38AAFD93B66F242333@MAILBOX.arc.local> Message-ID: I have the same problem. I haven't tried to correct the issue yet, but I believe the problem stems from the fact that you are running a 64 bit version of Scilab without having a 64 bit compiler installed. Take a look at this: http://www.equalis.com/forums/posts.asp?group=&topic=207141&DGPCrPg=1&hhSearchTerms=&#Post210998. regards, Stephen From: Michael.Hartl at ait.ac.at To: users at lists.scilab.org Date: Mon, 20 Aug 2012 12:38:18 +0200 Subject: [Scilab-users] Can not compile Dear all, I just installed scilab and tryed to run a Xcos model (electrical demo). But it does not work since it does not find a fortran or c compiler. Even though I have Visual C express and visual c++ express and devC++ installed on my computer. The error message is as follows:________________________Main Modelica : C:\Users\HartlM\AppData\Local\Temp\SCI_TMP_12988_\Untitled_im.mo Flat Modelica : C:\Users\HartlM\AppData\Local\Temp\SCI_TMP_12988_\Untitled_imf.mo Simulation C code :C:\Users\HartlM\AppData\Local\Temp\SCI_TMP_12988_\Untitled_im.c Generate a loader file Generate a Makefile Running the Makefile !sorry compiling problem !! !!A Fortran or C compiler is required. ! _______________________ Can anybody help me? Thank you all in advance. Cheers,Michael MICHAEL HARTLScientist Energy Department Sustainable Thermal Energy SystemsAIT Austrian Institute of Technology GmbH Giefinggasse 2 | 1210 Vienna | Austria T +43(0) 50550-6040 | M +43(0) 664 88390018 | F +43(0) 50550-6679 michael.hartl at ait.ac.at | http://www.ait.ac.at FN: 115980 i HG Wien | UID: ATU14703506 This email and any attachments thereto, is intended only for use by the addressee(s) named herein and may contain legally privileged and/or confidential information. If you are not the intended recipient, please notify the sender by return e-mail or by telephone and delete this message from your system and any printout thereof. Any unauthorized use, reproduction, or dissemination of this message is strictly prohibited. Please note that e-mails are susceptible to change. ?sterreichisches Forschungs- und Pr?fzentrum Arsenal Ges.m.b.H. shall not be liable for the improper or incomplete transmission of the information contained in this communication, nor shall it be liable for any delay in its receipt. _______________________________________________ users mailing list users at lists.scilab.org http://lists.scilab.org/mailman/listinfo/users -------------- next part -------------- An HTML attachment was scrubbed... URL: From ludo.wag at laposte.net Mon Aug 20 22:22:26 2012 From: ludo.wag at laposte.net (Orbeman) Date: Mon, 20 Aug 2012 13:22:26 -0700 (PDT) Subject: [Scilab-users] Draw in 3d with keep a constant orientation Message-ID: <1345494146823-4024719.post@n3.nabble.com> Hello, I would like to draw a rectangle for example in a 3d plot. The center of the rectangle is located on the (x, y, z) coords but when I move the graph with the mouse I wonder how I can keep a constant the orientation (theta, phi) of the rectangle in the window graphic. Does anyone have an idea to do ? Thanks you ! -- View this message in context: http://mailinglists.scilab.org/Draw-in-3d-with-keep-a-constant-orientation-tp4024719.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From sylvestre.ledru at scilab-enterprises.com Tue Aug 21 10:34:31 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Tue, 21 Aug 2012 10:34:31 +0200 Subject: [Scilab-users] BUG ilib_mex_build? In-Reply-To: <5031CF45.30001@igh-essen.com> References: <5031CF45.30001@igh-essen.com> Message-ID: <50334817.6030601@scilab-enterprises.com> On 20/08/2012 07:46, Andreas Stewering-Bone wrote: > Hello , > > I noticed a different behavior between > > Scilab-5.4-beta1 > Scilab-5.4-beta2 > > both Linux 32-Bit binary from the scilab homepage. > > > I attached the funtion to compile a matlab mex funtion. > Under Beta 1 everthing works fine (Compilation, loader,...), > but under Beta 2 the Compilation fails with the missings header mex.h. We checked under Linux and Windows and the mex.h header is still shipped with this header. Are you sure you installed Scilab correctly ? Sylvestre -- Sylvestre Ledru Operation Manager / Community Manager ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France http://www.scilab-enterprises.com From Andreas.Stewering-Bone at gmx.de Tue Aug 21 10:57:19 2012 From: Andreas.Stewering-Bone at gmx.de (Andreas Stewering-Bone) Date: Tue, 21 Aug 2012 10:57:19 +0200 Subject: [Scilab-users] BUG ilib_mex_build? In-Reply-To: <50334817.6030601@scilab-enterprises.com> References: <5031CF45.30001@igh-essen.com> <50334817.6030601@scilab-enterprises.com> Message-ID: <20120821085719.119410@gmx.net> Hello Sylvestre, I am sorry, I tried it again and everything works fine. I am sorry to spent your time. Greatings Andreas -------- Original-Nachricht -------- > Datum: Tue, 21 Aug 2012 10:34:31 +0200 > Von: Sylvestre Ledru > An: users at lists.scilab.org > Betreff: Re: [Scilab-users] BUG ilib_mex_build? > On 20/08/2012 07:46, Andreas Stewering-Bone wrote: > > Hello , > > > > I noticed a different behavior between > > > > Scilab-5.4-beta1 > > Scilab-5.4-beta2 > > > > both Linux 32-Bit binary from the scilab homepage. > > > > > > I attached the funtion to compile a matlab mex funtion. > > Under Beta 1 everthing works fine (Compilation, loader,...), > > but under Beta 2 the Compilation fails with the missings header mex.h. > We checked under Linux and Windows and the mex.h header is still shipped > with this header. > Are you sure you installed Scilab correctly ? > > Sylvestre > > > -- > Sylvestre Ledru > Operation Manager / Community Manager > ----------------------------------------------------------- > Scilab Enterprises > 143bis rue Yves Le Coz - 78000 Versailles, France > http://www.scilab-enterprises.com > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users From Serge.Steer at inria.fr Tue Aug 21 15:27:38 2012 From: Serge.Steer at inria.fr (Serge Steer) Date: Tue, 21 Aug 2012 15:27:38 +0200 Subject: [Scilab-users] [Users] Discrete cosine transform In-Reply-To: <1345228164.512773.31919.54484@saddam3.rambler.ru> References: <1345228164.512773.31919.54484@saddam3.rambler.ru> Message-ID: <50338CCA.1000305@inria.fr> Le 17/08/2012 20:29, tvitklg at rambler.ru a ?crit : > > Hello. Whether there is a function Discrete cosine transform (DCT)? > > tvitklg at rambler.ru > > > > _______________________________________________ > Users mailing list > Users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users Please find below the dct and idct scilab code: function y = dct (x,flag) //Ref: A. K. Jain, "Fundamentals of Digital Image Processing", pp. 150-153. [mx,nx]=size(x); if argn(2)==1 then flag=-1,end if size(x,1)==1 then //transform x as a column vector x=matrix(x,-1,1); n=mx*nx; nc=1; else n=mx; nc=nx end if n==1 then y=matrix(y,mx,nx),return,end if flag==-1 then w=[sqrt(0.25/n);sqrt(0.5/n)*exp((-%i*%pi/2/n)*(1:n-1)')]*ones(1,nc); if isreal(x)&modulo(n,2)==0 then y=2*real(w.*fft([x(1:2:n,:); x(n:-2:2,:)],flag,1)); else y=fft([x;x($:-1:1,:)],flag,1); y=w.*y(1:n,:); if isreal(x) then y=real(y); end end else //inverse transform if isreal(x)&modulo(n,2)==0 then w = [sqrt(n/4);sqrt(n/2)*exp((%i*%pi/2/n)*(1:n-1)')]*ones(1,nc); y=fft(w.*x,flag,1); y([1:2:n,n:-2:1],:)=2*real(y); else w = [sqrt(4*n);sqrt(2*n)*exp((%i*%pi/2/n)*(1:n-1)')]*ones(1,nc); y=[x.*w;zeros(1,nc);-%i*w(2:$,:).*x($:-1:2,:)]; y=fft([x.*w;zeros(1,nc);-%i*w(2:$,:).*x($:-1:2,:)],flag,1); y=y(1:n,:); if isreal(x) then y=real(y); end end end y=matrix(y,mx,nx); endfunction function y=idct(x) y=dct(x,1) endfunction Serge Steer INRIA -------------- next part -------------- An HTML attachment was scrubbed... URL: From ludo.wag at laposte.net Wed Aug 22 15:13:36 2012 From: ludo.wag at laposte.net (Orbeman) Date: Wed, 22 Aug 2012 06:13:36 -0700 (PDT) Subject: [Scilab-users] How to extract matrix in a huge text file In-Reply-To: <1345182857396-4024708.post@n3.nabble.com> References: <1345182857396-4024708.post@n3.nabble.com> Message-ID: <1345641216374-4024727.post@n3.nabble.com> Thanks but I get an allocation memory (999) with the mgetl function. -- View this message in context: http://mailinglists.scilab.org/How-to-extract-matrix-in-a-huge-text-file-tp4024708p4024727.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From ludo.wag at laposte.net Wed Aug 22 19:16:52 2012 From: ludo.wag at laposte.net (Orbeman) Date: Wed, 22 Aug 2012 10:16:52 -0700 (PDT) Subject: [Scilab-users] How to extract matrix in a huge text file In-Reply-To: <1345641216374-4024727.post@n3.nabble.com> References: <1345182857396-4024708.post@n3.nabble.com> <1345641216374-4024727.post@n3.nabble.com> Message-ID: <1345655812780-4024728.post@n3.nabble.com> I've found a speed method "en bidouillant" with VBScript. In fact, I use some script for the Moldflow API. I have also program an inverse optimisation with Moldflow and of course Scilab. // function data=lecture_patran(path_file, var) //suppression des 3 premi?res lignes d'ent?te du format natif patran str_VBS=['Set oFSO = CreateObject('+ascii(34)+'Scripting.FileSystemObject'+ascii(34)+')'; 'oFSO.CopyFile '+ascii(34)+path_file+ascii(34)+', '+ascii(34)+'c:\file_patran_src.ele'+ascii(34); 'Set file_scr = oFSO.OpenTextFile('+ascii(34)+'c:\file_patran_src.ele'+ascii(34)+', 1)'; 'Set file_new = oFSO.OpenTextFile('+ascii(34)+path_file+ascii(34)+', 2)'; 'k = 0'; 'Do Until file_scr.AtEndOfStream'; ' str_line = file_scr.ReadLine'; ' if k >=3 then'; ' file_new.WriteLine str_line'; ' end if'; ' k = k +1'; 'Loop'; 'oFSO.DeleteFile '+ascii(34)+'c:\file_patran_src.ele'+ascii(34)+', True'] fd=mopen('c:\script_lecture_patran.vbs', 'wt') mputl(str_VBS, fd) mclose(fd) host('cscript '+ascii(34)+'c:\script_lecture_patran.vbs'+ascii(34)) deletefile('c:\script_lecture_patran.vbs') //nombre de colonnes ? lignes (ordre du tenseur) select var case 'a' then nj=6 else nj=1 end data=read(path_file, -1, nj) endfunction -- View this message in context: http://mailinglists.scilab.org/How-to-extract-matrix-in-a-huge-text-file-tp4024708p4024728.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From G.Ohenhen at scheuch.com Thu Aug 23 13:58:59 2012 From: G.Ohenhen at scheuch.com (Ohenhen Godwin) Date: Thu, 23 Aug 2012 11:58:59 +0000 Subject: [Scilab-users] Flexdock Message-ID: <75BB72BB8880804693A86DC66770DA700166D474@SAT-CL51.scheuch.com> Hello, Please I nead you help on how to use flexdock with scilab. I read in your tutorial about docking windows with flexdock and I downloaded the files but can?t use them. The question is whether I need to install it (there is no executable file) or did I download the wrong files. Whatever your reply is would be highly appreciated. Sincerely yours, Ohenhen Godwin ________________________________________ Godwin Ohenhen Entwicklungskonstruktion Product Development Scheuch GmbH Weierfing 68 4971 Aurolzm?nster, Austria Tel.: +43 7752 905-812 Fax: +43 7752 905-6812 http://www.scheuch.com Sitz: Aurolzm?nster, Firmenbuchnummer: FN 187927p, Firmenbuchgericht: Landesgericht Ried/I. Diese E-Mail enth?lt vertrauliche und/oder rechtlich gesch?tzte Informationen. Wenn Sie nicht der richtige Adressat sind oder die E-Mail irrt?mlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie die E-Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe der E-Mail ist nicht gestattet. This e-mail may contain confidential and/or legally privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sylvestre.ledru at scilab-enterprises.com Thu Aug 23 14:20:04 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Thu, 23 Aug 2012 14:20:04 +0200 Subject: [Scilab-users] Flexdock In-Reply-To: <75BB72BB8880804693A86DC66770DA700166D474@SAT-CL51.scheuch.com> References: <75BB72BB8880804693A86DC66770DA700166D474@SAT-CL51.scheuch.com> Message-ID: <50361FF4.1040606@scilab-enterprises.com> Le 23/08/2012 13:58, Ohenhen Godwin a ?crit : > Hello, > > Please I nead you help on how to use flexdock with scilab. I read in > your tutorial about docking windows with flexdock and I downloaded the > files but can?t use them. The question is whether I need to install it > (there is no executable file) or did I download the wrong files. Flexdock is an internal component to Scilab. It is not supposed to be addressed for Scilab itself. Could you detail what you are trying to do ? Sylvestre From chaudhary_upasna at yahoo.com Sat Aug 25 09:47:52 2012 From: chaudhary_upasna at yahoo.com (Upasna Chaudhary) Date: Sat, 25 Aug 2012 15:47:52 +0800 (SGT) Subject: [Scilab-users] compilation problem in scilab Message-ID: <1345880872.48574.YahooMailClassic@web193106.mail.sg3.yahoo.com> hello, when i save a program in and execute on console a path is coming "exec('C:\Program Files\scilab-5.3.3\neldermead_configure', -1)".and i don't find any result of a program.please help me.how it will solve. regards upasna banasthali vidyapith ?? jaipur ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From tvitklg at rambler.ru Sun Aug 26 14:38:31 2012 From: tvitklg at rambler.ru (tvitklg at rambler.ru) Date: Sun, 26 Aug 2012 16:38:31 +0400 Subject: [Scilab-users] Speech recognition using MFCC,LPC,HMM. Message-ID: <1345984711.832331.27938.12565@saddam4.rambler.ru> Hello. The example of job with sound files for understanding of recognition of speech is very necessary. For the program Matlab it can be seen here. http://www.mathworks.com/matlabcentral/fileexchange/?search_submit=fileexchange&query=MFCC&term=MFCC And in Scilab these examples are not converted and do not work. Where to find such examples for the program Scilab? -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Sun Aug 26 21:39:39 2012 From: sgougeon at free.fr (Samuel Gougeon) Date: Sun, 26 Aug 2012 21:39:39 +0200 Subject: [Scilab-users] Speech recognition using MFCC,LPC,HMM. In-Reply-To: <1345984711.832331.27938.12565@saddam4.rambler.ru> References: <1345984711.832331.27938.12565@saddam4.rambler.ru> Message-ID: <503A7B7B.2020409@free.fr> Hello, Le 26/08/2012 14:38, tvitklg at rambler.ru a ?crit : > > Hello. The example of job with sound files for understanding of > recognition of speech is very necessary. > > For the program Matlab it can be seen here. > > http://www.mathworks.com/matlabcentral/fileexchange/?search_submit=fileexchange&query=MFCC&term=MFCC > > And in Scilab these examples are not converted and do not work. > Where to find such examples for the program Scilab? > You may have a look at this contribution: http://fileexchange.scilab.org/toolboxes/136000 Regards Samuel Gougeon From dkajah at gmail.com Sun Aug 26 23:22:25 2012 From: dkajah at gmail.com (Daniel Penalva) Date: Sun, 26 Aug 2012 18:22:25 -0300 Subject: [Scilab-users] Problems in the acess of the LDAP services Message-ID: Hi fellows, iam sorry if this is not the better place to this but i was unable to find/acess others. Iam having problem to access bugzilla and Atoms account in which this e-mail is the login. I also have some bug to report, relating SciNotes, to report but cant access bugzilla in the moment. For the Scinotes: After extensive operations with large matrices and a lot of macro editing and saving, it stops to save macros and update the files, it did not had thrown anything to notice the bug. My version: scilab-master-1341247028 in Ubuntu 12.04 thank you -- *Democracia Digital Direta Informe-se: * http://pontosdecultura.org.br/noticias/carta-democracia-direta-em-circulacao/ *AfroAmbiental eh sociedade em Axe e Diversidade* http://afroambiental.org Daniel Penalva State related activity, currently: Phd - Physics in Institute for Theoretical Physics - http://www.ift.unesp.br/posgrad/ramais-alunos-pos.php Transparency portal(workflows): http://www.nightsc.com.br/aa/interface_v0.1.php *look for SUoU9 user, or do ctrl+f and SUoU9* FLOSS and related ideas enthusiastic -------------- next part -------------- An HTML attachment was scrubbed... URL: From Andreas.Stewering-Bone at gmx.de Mon Aug 27 08:51:11 2012 From: Andreas.Stewering-Bone at gmx.de (Andreas Stewering-Bone) Date: Mon, 27 Aug 2012 08:51:11 +0200 Subject: [Scilab-users] Bug in modules manager Message-ID: <20120827065111.261120@gmx.net> Hello, I think I found a bug in tbx_build_blocks.sci Scilab Version 5.4 beta 2 Source and binary version. Original Code: // export an image file if it doesn't exist files = gif_tlbx + "/" + names(i) + [".png" ".jpg" ".gif"]; if ~or(isfile(files)) then if ~generateBlockImage(block, gif_tlbx, names(i), "gif", %t) then error(msprintf(gettext("%s: Unable to export %s to %s.\n"),"tbx_build_blocks",names(i), gifFiles(i))); end end // export a schema file if it doesn't exist files = svg_tlbx + "/" + names(i) + [".svg" ".png" ".jpg" ".gif"]; if ~or(isfile(files)) then if ~generateBlockImage(block, svg_tlbx, names(i), "svg", %f) then error(msprintf(gettext("%s: Unable to export %s to %s.\n"),"tbx_build_blocks",names(i), svgFiles(i))); end end In the definition of the error messages, gifFiles and svgFiles are not defined and have to be replaceced by files. Best regards Andreas From tvitklg at rambler.ru Tue Aug 28 08:45:04 2012 From: tvitklg at rambler.ru (TViT) Date: Mon, 27 Aug 2012 23:45:04 -0700 (PDT) Subject: [Scilab-users] [Users] Discrete cosine transform In-Reply-To: <50338CCA.1000305@inria.fr> References: <1345228164.512773.31919.54484@saddam3.rambler.ru> <50338CCA.1000305@inria.fr> Message-ID: <1346136304948-4024738.post@n3.nabble.com> Prompt as to register this code in Scilab. Has copied this code in a file dct.sce and has moved to a folder C:\Program Files\scilab-5.3.3\modules\graphics\mac ros But in Scilab he is not caused. Scilab it(him) does not see as though it(him) no -- View this message in context: http://mailinglists.scilab.org/Users-Discrete-cosine-transform-tp4024712p4024738.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From tvitklg at rambler.ru Mon Aug 27 21:32:15 2012 From: tvitklg at rambler.ru (TViT) Date: Mon, 27 Aug 2012 12:32:15 -0700 (PDT) Subject: [Scilab-users] Speech recognition using MFCC,LPC,HMM. In-Reply-To: <503A7B7B.2020409@free.fr> References: <1345984711.832331.27938.12565@saddam4.rambler.ru> <503A7B7B.2020409@free.fr> Message-ID: <1346095935822-4024737.post@n3.nabble.com> I can not start ?????? archive -1.0-1-src.zip has unpacked and has started simplelpcgui.sce and all... Scilab has written to me only - > exec (' ?:\DataBase\ELECTRONICS\Speech Analysis using LPC in Scilab\simplelpcgui.sce ', -1) -- View this message in context: http://mailinglists.scilab.org/Scilab-users-Speech-recognition-using-MFCC-LPC-HMM-tp4024732p4024737.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From leonge at aia.es Tue Aug 28 12:19:35 2012 From: leonge at aia.es (=?ISO-8859-1?Q?Gladys_Eliana_Le=F3n_Sur=F3s?=) Date: Tue, 28 Aug 2012 12:19:35 +0200 Subject: [Scilab-users] Question about user's defined Blocks Scilab/Xcos Message-ID: Dear Mrs, I have a question concerning Modelica Blocks created in Scilab/Xcos and added to the palette in XCos. I create a few blocks and added to the XCos palette using the following script: This is the example for the a Block named "Line" *************************** loadXcosLibs(); getd("Path to directory"); %MODELICA_USER_LIBS = " Path to directory "; modelica_libs = getModelicaPath(); pal = xcosPal("Name of Palette"); scs_m = Line("define"); export_to_hdf5(" Path to directory\H5\Line.h5 ","scs_m"); clear scs_m; pal = xcosPalAddBlock(pal," Path to directory\H5\Line.h5"," Path to directory\ICONS\Line.png"," Path to directory \ICONS\Line.svg"); xcosPalAdd(pal); clear pal; ************************** Everything works well, but when I build a diagram using my Blocks in Xcos and save it, the images of the Blocks dissapear and I just see square boxes with pins (see the figure below). Could you help with this issue? Thank you. Best regards, Gladys L. [image: Im?genes integradas 1] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 82549 bytes Desc: not available URL: From Serge.Steer at inria.fr Tue Aug 28 14:21:20 2012 From: Serge.Steer at inria.fr (Serge Steer) Date: Tue, 28 Aug 2012 14:21:20 +0200 Subject: [Scilab-users] [Users] Discrete cosine transform In-Reply-To: <1346136304948-4024738.post@n3.nabble.com> References: <1345228164.512773.31919.54484@saddam3.rambler.ru> <50338CCA.1000305@inria.fr> <1346136304948-4024738.post@n3.nabble.com> Message-ID: <503CB7C0.6010001@inria.fr> Le 28/08/2012 08:45, TViT a ?crit : > Prompt as to register this code in Scilab. > Has copied this code in a file dct.sce and has moved to a folder C:\Program > Files\scilab-5.3.3\modules\graphics\mac ros > > But in Scilab he is not caused. Scilab it(him) does not see as though > it(him) no > > > > -- > View this message in context: http://mailinglists.scilab.org/Users-Discrete-cosine-transform-tp4024712p4024738.html > Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > These function will be included in a future scilab version. Waiting for that you can just execute the dct.sce file each time you start scilab exec("dct.sce"); where stands for the folder where dct.sce file had been stored Serge Steer From sgougeon at free.fr Tue Aug 28 14:30:00 2012 From: sgougeon at free.fr (Samuel Gougeon) Date: Tue, 28 Aug 2012 14:30:00 +0200 Subject: [Scilab-users] Speech recognition using MFCC,LPC,HMM. In-Reply-To: <1346095935822-4024737.post@n3.nabble.com> References: <1345984711.832331.27938.12565@saddam4.rambler.ru> <503A7B7B.2020409@free.fr> <1346095935822-4024737.post@n3.nabble.com> Message-ID: <503CB9C8.6030207@free.fr> Le 27/08/2012 21:32, TViT a ?crit : > I can not start ?????? archive -1.0-1-src.zip has unpacked and has started > simplelpcgui.sce and all... > Scilab has written to me only -> exec (' ?:\DataBase\ELECTRONICS\Speech > Analysis using LPC in Scilab\simplelpcgui.sce ', -1) > Then do: simplelpcgui() From tvitklg at rambler.ru Tue Aug 28 19:00:03 2012 From: tvitklg at rambler.ru (TViT) Date: Tue, 28 Aug 2012 10:00:03 -0700 (PDT) Subject: [Scilab-users] Speech recognition using MFCC,LPC,HMM. In-Reply-To: <503CB9C8.6030207@free.fr> References: <1345984711.832331.27938.12565@saddam4.rambler.ru> <503A7B7B.2020409@free.fr> <1346095935822-4024737.post@n3.nabble.com> <503CB9C8.6030207@free.fr> Message-ID: <1346173203084-4024742.post@n3.nabble.com> Thanks a beginning to work after passage of mistakes )) -- View this message in context: http://mailinglists.scilab.org/Scilab-users-Speech-recognition-using-MFCC-LPC-HMM-tp4024732p4024742.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From tvitklg at rambler.ru Tue Aug 28 19:08:24 2012 From: tvitklg at rambler.ru (TViT) Date: Tue, 28 Aug 2012 10:08:24 -0700 (PDT) Subject: [Scilab-users] [Users] Discrete cosine transform In-Reply-To: <503CB7C0.6010001@inria.fr> References: <1345228164.512773.31919.54484@saddam3.rambler.ru> <50338CCA.1000305@inria.fr> <1346136304948-4024738.post@n3.nabble.com> <503CB7C0.6010001@inria.fr> Message-ID: <1346173704960-4024743.post@n3.nabble.com> Tried on everyone. Has recollected that already registered macros through earlier buildmacros.bat and the file dct.bin has appeared I think now all should work. I shall experiment later. Thanks large.)) -- View this message in context: http://mailinglists.scilab.org/Users-Discrete-cosine-transform-tp4024712p4024743.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com. From clement.david at scilab-enterprises.com Wed Aug 29 10:08:17 2012 From: clement.david at scilab-enterprises.com (=?ISO-8859-1?Q?Cl=E9ment?= David) Date: Wed, 29 Aug 2012 10:08:17 +0200 Subject: [Scilab-users] Bug in modules manager In-Reply-To: <20120827065111.261120@gmx.net> References: <20120827065111.261120@gmx.net> Message-ID: <1346227697.1860.16.camel@work> Hello, Le lundi 27 ao?t 2012 ? 08:51 +0200, Andreas Stewering-Bone a ?crit : > I think I found a bug in > tbx_build_blocks.sci > Scilab Version 5.4 beta 2 Source and binary version. ... > In the definition of the error messages, gifFiles and svgFiles are not > defined and have to be replaceced by files. I guess it might be fixed in the latest nightly build (no more gifFiles / svgFiles references). But if you are able to reproduce, do not hesitate to reports bugs on http://bugzilla.scilab.org . -- Cl?ment DAVID Development Engineer ----------------------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France Phone: +33.1.80.77.04.68 http://www.scilab-enterprises.com From kaiojag at gmail.com Wed Aug 29 21:25:04 2012 From: kaiojag at gmail.com (Kaio Jonathas) Date: Wed, 29 Aug 2012 16:25:04 -0300 Subject: [Scilab-users] Portable Scilab Message-ID: Hello, Do you have any PORTABLE version for Scilab? Best Regards, Kaio Jonathas -------------- next part -------------- An HTML attachment was scrubbed... URL: From scurtin at mems-issys.com Wed Aug 29 22:08:03 2012 From: scurtin at mems-issys.com (Steve Curtin) Date: Wed, 29 Aug 2012 16:08:03 -0400 Subject: [Scilab-users] pfprintf, msscanf errors Message-ID: <001401cd8622$019144c0$04b3ce40$@com> Hello All, I have a question about formatted input and output which seems to fail almost capriciously. For instance I have the following line in a program: mfprintf(outf,'%f\t%f\n',var_a,var_b); and I sometimes (not not always) get the following error: !--error 998 printf: Not enough arguments. Likewise I've tested the following line in a small program, the following line works fine and reads all the variables [numargs, var1, var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12, var13, var14, var15, var16]... = msscanf(inline,'%s %s %s %d %d %d %f %f %f %f %d %f'); but when I paste it into a bigger one I get the following: f(inline,'%s %s %s %d %d %d %f %f %f %f %d %f') !--error 207 sscanf: Wrong type for argument 1: Matrix of strings expected. I'm more used to straight compiled C, is there another approach that works better for SciLab? This is on the Windows platform, I'm using 5.3.3. and the 5.4.0 beta2. Thanks, Steve -------------- next part -------------- An HTML attachment was scrubbed... URL: From nagakn at gmail.com Thu Aug 30 07:40:49 2012 From: nagakn at gmail.com (Naga Narasimha) Date: Wed, 29 Aug 2012 22:40:49 -0700 Subject: [Scilab-users] Compatibility With MAC OS Mountain Lion Message-ID: Hi, I wanted to know weather Scilab is compatible with new Mountain Lion MAC OS? Thanks Naga From sylvestre.ledru at scilab-enterprises.com Thu Aug 30 09:36:41 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Thu, 30 Aug 2012 09:36:41 +0200 Subject: [Scilab-users] Compatibility With MAC OS Mountain Lion In-Reply-To: References: Message-ID: <503F1809.1000702@scilab-enterprises.com> Le 30/08/2012 07:40, Naga Narasimha a ?crit : > Hi, > > I wanted to know weather Scilab is compatible with new Mountain Lion MAC OS? The current nightly works fine with Lion (the future 5.4.0 beta 3). http://www.scilab.org/fr/communities/developer_zone/scilab_versions/development_version/nightly_builds/branch_master Sylvestre From Andreas.Stewering-Bone at gmx.de Thu Aug 30 10:10:18 2012 From: Andreas.Stewering-Bone at gmx.de (Andreas Stewering-Bone) Date: Thu, 30 Aug 2012 10:10:18 +0200 Subject: [Scilab-users] Understanding block interfaces Message-ID: <20120830081018.51730@gmx.net> Hello I have some general questions about block and palette building. I would like to have a block with parameter dialog. Some of the parameters are shown on the block graphic interface (gr_i). But something changed if I compare the behavior between scicos and xcos. Only a static graphical image is shown with the parameters defined in section define (build block time). I do not want to show the image, I would like to see the actual text string. No I will shorty explain how I construct the block: - Definition of the block (Section define) model.label = ["XCos_SocketCAN_BCM_recieve"]; exprs=[sci2exp(CANID); sci2exp(INTERFACE);sci2exp(CHECKTIMEOUT);sci2exp(TIMEOUT);sci2exp(TIMESTAMP);sci2exp(CHECKNOFRAMES); sci2exp(DEBUG)]; gr_i=['xset(''font'',1,5);xstringb(orig(1),orig(2),[''SocketCAN BCM recieve'';''CANID: ''+string(CANID);''Interface: ''+INTERFACE;],sz(1),sz(2));'] x=standard_define([6 4],model,exprs,gr_i) x.graphics.out_label = ["Msg"]; Section plot exprs=arg1.graphics.exprs; CANID = exprs(1); INTERFACE = exprs(2); standard_draw(arg1) - Build the block macros_path = get_absolute_file_path("buildmacros.sce"); tbx_build_macros(TOOLBOX_NAME, macros_path); blocks = ["XCOS_SocketCAN_BCM_rcv"]; tbx_build_blocks(myscilabpath, blocks); - Load block palette pal = xcosPal("Xcos Linux CAN toolbox blocks"); blocks = ["XCOS_SocketCAN_BCM_rcv"]; for i=1:size(blocks, "*") h5 = ls(root_tlbx + "/images/h5/" + blocks(i) + "." + ["sod" "h5"]); gif = ls(root_tlbx + "/images/gif/" + blocks(i) + "." + ["png" "jpg" "gif"]); svg = ls(root_tlbx + "/images/svg/" + blocks(i) + "." + ["png" "jpg" "gif" "svg"]); pal = xcosPalAddBlock(pal, h5(1), gif(1), svg(1)); //pal = xcosPalAddBlock(pal, h5(1), [], []); end if ~xcosPalAdd(pal) then error(msprintf(gettext("%s: Unable to export %s.\n"), "can_toolbox.start", "pal")); end Whre is my problem. There are some basic blocks with the behavior I like to have, CONSTRAINT_c for example. Best regards Andreas From communication at scilab-enterprises.com Thu Aug 30 14:28:53 2012 From: communication at scilab-enterprises.com (Communication) Date: Thu, 30 Aug 2012 14:28:53 +0200 Subject: [Scilab-users] Release of Scilab 5.4.0 beta 3 Message-ID: <503F5C85.8010003@scilab-enterprises.com> Dear Scilab Users, Scilab Enterprises is glad to announce the release of Scilab 5.4.0 beta 3, the latest test version provided to the community before the stable version release. Scilab 5.4.0 beta 3 is available for download at: http://www.scilab.org/products/scilab/download/5.4.0-beta-3 If you find a bug, please report it to Scilab bug tracking system: http://bugzilla.scilab.org/ Best Regards Communications and Public Relations Department --------------------------------------------- Scilab Enterprises 143bis rue Yves Le Coz - 78000 Versailles, France http://www.scilab-enterprises.com From Ashok.Yadav at ril.com Fri Aug 31 12:13:50 2012 From: Ashok.Yadav at ril.com (Ashok.Yadav at ril.com) Date: Fri, 31 Aug 2012 15:43:50 +0530 Subject: [Scilab-users] Seismic Toolbox Message-ID: <22CB314F7062894BB818E97F0E5CC740029CFFC752@SIDCMBX03.in.ril.com> HI Scilab Users, Is there anybody who has used converter to convert matlab toolbox "Seismic Signal Processing" ( S4M) into scilab toolbox? I am a newbie in Scilab and wish to start my work in scilab but without any toolbox for seismic I am unable to start. Any guidance will help me head start. Regards, Ashok "Confidentiality Warning: This message and any attachments are intended only for the use of the intended recipient(s). are confidential and may be privileged. If you are not the intended recipient. you are hereby notified that any review. re-transmission. conversion to hard copy. copying. circulation or other use of this message and any attachments is strictly prohibited. If you are not the intended recipient. please notify the sender immediately by return email. and delete this message and any attachments from your system. Virus Warning: Although the company has taken reasonable precautions to ensure no viruses are present in this email. The company cannot accept responsibility for any loss or damage arising from the use of this email or attachment." -------------- next part -------------- An HTML attachment was scrubbed... URL: From antoine.monmayrant at laas.fr Fri Aug 31 12:36:40 2012 From: antoine.monmayrant at laas.fr (Antoine Monmayrant) Date: Fri, 31 Aug 2012 12:36:40 +0200 Subject: [Scilab-users] Seismic Toolbox In-Reply-To: <22CB314F7062894BB818E97F0E5CC740029CFFC752@SIDCMBX03.in.ril.com> References: <22CB314F7062894BB818E97F0E5CC740029CFFC752@SIDCMBX03.in.ril.com> Message-ID: <504093B8.7010602@laas.fr> On 31/08/2012 12:13, Ashok.Yadav at ril.com wrote: > > HI Scilab Users, > > Is there anybody who has used converter to convert matlab toolbox > "Seismic Signal Processing" ( S4M) into scilab toolbox? > > I am a newbie in Scilab and wish to start my work in scilab but > without any toolbox for seismic I am unable to start. > > Any guidance will help me head start. > > Regards, > > Ashok > Hi Ashok, I think that there is no silver bullet for Matlab to Scilab conversion. Scilab and Matlab are quite different languages that share a same base and same concepts. Usually, if you are experienced in Matlab, the transition to Scilab is really easy and you should be able to convert this toolbox "by hand". We have done it in our group for some small toolboxes and it went fine. Cheers, Antoine > > > "*Confidentiality Warning*: This message and any attachments are > intended only for the use of the intended recipient(s), are > confidential and may be privileged. If you are not the intended > recipient, you are hereby notified that any review, re-transmission, > conversion to hard copy, copying, circulation or other use of this > message and any attachments is strictly prohibited. If you are not the > intended recipient, please notify the sender immediately by return > email and delete this message and any attachments from your system. > > *Virus Warning:* Although the company has taken reasonable precautions > to ensure no viruses are present in this email. The company cannot > accept responsibility for any loss or damage arising from the use of > this email or attachment." > > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users -- +++++++++++++++++++++++++++++++++++++++++++++++++++++++ Antoine Monmayrant LAAS - CNRS 7 avenue du Colonel Roche 31077 TOULOUSE Cedex 4 FRANCE Tel:+33 5 61 33 64 59 email : antoine.monmayrant at laas.fr permanent email : antoine.monmayrant at polytechnique.org +++++++++++++++++++++++++++++++++++++++++++++++++++++++ -------------- next part -------------- An HTML attachment was scrubbed... URL: From illusionteam at gmail.com Fri Aug 31 20:29:20 2012 From: illusionteam at gmail.com (=?iso-8859-1?Q?C=E1ssio_Pazinatto?=) Date: Fri, 31 Aug 2012 15:29:20 -0300 Subject: [Scilab-users] ilib_for_link Mac OS X 10.8 Message-ID: <77EEE5D3-82A5-4EF6-A407-DAF5416C22E5@gmail.com> Hello, I'm using Scilab 5.40 beta 3 under Mac OS X 10.8 (Mountain Lion) and I'm getting an error when I try to use Dynamic Link to call Fortran Code (using gfortran compiler). Follow my test, note that it was OK on a computer running Linux and Scilab 5.33. FORTRAN CODE (matriz1.f90) subroutine matriz1(x,y,m) real (kind=8) :: x,y,m(2,3) m(1,1)=2 m(1,2)=1+x m(1,3)=-3*y m(2,1)=x*x m(2,2)=-2 m(2,3)=y+2 return end Compiler instruction: gfortran -shared -o matriz1.so matriz1.f90 SCILAB COMMAND ilib_for_link('matriz1','matriz1.f90',[],"f") RESULT: Gerar um arquivo de carga Gerar um Makefile ilib_gen_Make: Copia os arquivos de compila??o (Makefile*, libtool...) para TMPDIR ilib_gen_Make: Copia matriz1.f90 para TMPDIR ilib_gen_Make: Modifica??o do Makefile em TMPDIR. Executando o Makefile !--error 10000 ilib_compile: Ocorreu um erro durante a compila??o: libtool: unrecognized option `-c' Try `libtool --help' for more information. make: *** [matriz1.lo] Error 1 ilib_compile: O comando foi: make CFLAGS=" -D__SCILAB_TOOLBOX__ -I/Applications/scilab-5.4.0-beta-3.app/Contents/MacOS/share/scilab/../../include/scilab/ " CXXFLAGS=" -D__SCILAB_TOOLBOX__ -I/Applications/scilab-5.4.0-beta-3.app/Contents/MacOS/share/scilab/../../include/scilab/ " FFLAGS="-I/Applications/scilab-5.4.0-beta-3.app/Contents/MacOS/share/scilab/../../include/scilab/ " at line 129 of function ilib_compile called by : at line 94 of function ilib_for_link called by : ilib_for_link('matriz1','matriz1.f90',[],"f") Does anyone have an idea? Thanks! _____________ C?ssio Pazinatto -------------- next part -------------- An HTML attachment was scrubbed... URL: From fvogelnew1 at free.fr Fri Aug 31 21:22:57 2012 From: fvogelnew1 at free.fr (=?ISO-8859-1?Q?Fran=E7ois_Vogel?=) Date: Fri, 31 Aug 2012 21:22:57 +0200 Subject: [Scilab-users] [ANN]: Scipad-8.71 Message-ID: <50410F11.3070304@free.fr> ANNOUNCE: Scipad version 8.71 ============================= A new version of the Scipad text editor for Scilab and Scicoslab is available. CHANGES SINCE PREVIOUS VERSION ============================== NEW: * Multiline replace: replacing by a string containing special (escaped) characters, such as \n or \t, is now possible * Sashes positions are now saved and restored across Scipad sessions, recreating the layout of the tiles (Mondrian picture) with their specific sizes when reopening Scipad * Scipad now distributes tkdnd for both Windows and Linux, each in both 32 and 64 bits versions (thanks to Georgios Petasis for providing the tkdnd binaries) FIXED BUGS: * Worked around possible crash when saving files on Windows (Tk bugs 3071836 and 3146418) * Fixed multiline (regexp) search and replace: the text could be replaced at a wrong position when searching in regexp mode for a search pattern matching one or more \n in the found string * After Replace all, the buffer could still contain matches that should have been replaced * The progress bar is updated even if scrolling of the text widget is needed during replace all * The limits of the selection is correctly maintained when replacing at selection boundaries * Fixed Tcl error when clicking the "Open all files" button in the find in files results window during the building of the list of files to search in (this button is now greyed during this step) * Fixed error at startup under certain Linux OSs providing http 1.0 only * Scipad can no longer open off-screen (requires a Tk version that includes the fix for Tk bug 533519) * Trying to input text in the "Changelog", "Bugs & Wishlist", or "Adding translations" window no longer triggers a Tcl error * Fixed Tcl error when starting a block selection in environments running Tk 8.4 WHAT IS SCIPAD ? ================ Scipad is a powerful editor and graphical debugger for programs written in Scilab language. It is a mature and highly configurable programmer's editor, including features like syntax colorization, regexp search/replace, parentheses matching, logical/physical line numbering, peer windows, line and block text editing, and much more. Scipad can be used along with Scicoslab or Scilab, but even as a standalone text editor. Used as internal Sci(cos)lab editor, it interacts tightly with the interpreter, allowing: - Scilab code execution control - conditional breakpointing - variable retrieval and tooltip display - Scilab help lookup - access to source code of Scilab library function - control of Scilab facilities for Matlab code and creation of help documents - and much more Scipad also includes basic Modelica and XML syntax colorization; it is currently localized in 13 languages and further localizations can easily be added. Scipad is entirely written in Tcl/Tk and Scilab language. It has been tested and developed under various versions of Windows and Linux. WHERE CAN SCIPAD BE FOUND? ========================== Project page @ SourceForge.net: http://sourceforge.net/p/scipad/ Direct download: - for Scilab: http://sourceforge.net/projects/scipad/files/scipad-8.71/scipad-8.71-Scilab5.zip/download - for Scicoslab: http://sourceforge.net/projects/scipad/files/scipad-8.71/scipad-8.71-Scicoslab.zip/download Installation instructions: http://sourceforge.net/p/scipad/wiki/Installation/ Details regarding the tested platforms: http://sourceforge.net/p/scipad/wiki/Tested%20on/ LICENSE ======= Scipad is a free software distributed under the terms of the GPL (V2) license. From sylvestre.ledru at scilab-enterprises.com Fri Aug 31 21:37:28 2012 From: sylvestre.ledru at scilab-enterprises.com (Sylvestre Ledru) Date: Fri, 31 Aug 2012 21:37:28 +0200 Subject: [Scilab-users] ilib_for_link Mac OS X 10.8 In-Reply-To: <77EEE5D3-82A5-4EF6-A407-DAF5416C22E5@gmail.com> References: <77EEE5D3-82A5-4EF6-A407-DAF5416C22E5@gmail.com> Message-ID: <50411278.4040102@scilab-enterprises.com> On 31/08/2012 20:29, C?ssio Pazinatto wrote: > Hello, > > I'm using Scilab 5.40 beta 3 under Mac OS X 10.8 (Mountain Lion) and > I'm getting an error when I try to use Dynamic Link to call Fortran > Code (using gfortran compiler). Follow my test, note that it was OK on > a computer running Linux and Scilab 5.33. [...] > ilib_compile: Ocorreu um erro durante a compila??o: > libtool: unrecognized option `-c' > Try `libtool --help' for more information. > make: *** [matriz1.lo] Error 1 [...] > Does anyone have an idea? > Usually, this error message occurs when you don't have a fortran compiler (or i cannot be found). Could you try with ilib_verbose(2) ? This portion of the code did not change much with regard to 5.3.3. (and if it doesn't help, send us the config.log which will be generated in the TMPDIR directory) Thanks Sylvestre -------------- next part -------------- An HTML attachment was scrubbed... URL: