blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
ccd667d78a4c19e2cfe3353e81fe96c747d31090
449d555969bfd7befe906877abab098c6e63a0e8
/3647/CH2/EX2.9/Ex2_9.sce
d70a7dc83aea90563c26190210bbd1072ea49052
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
446
sce
Ex2_9.sce
//Solutions to Problems In applied mechanics //A N Gobby clear all; //friction of bearings is to to neglected clc //initialisation of variables h=2240//ft g=32.2//ft g1=15//in w=1200//lbf q=12//ft r=1.5//ft t=3.28//tonf ft t1=1.7//tonf ft x=550//ft s=6//ft //CALCULATIONS T=((w*(g1/q)^2)/(h*g))*(3/r)//tonf ft T1=t-t1+T//tonf ft W=(T1*h*s/(r))/(x)//ft lbf //RESULTS printf('the friction of bearings is to to neglected =% f',W)
9bb99aaac8f0d351219be776c6449af1e5f016fd
3726f9ac5467bbe87b3da0df216e090dbfaebfd5
/Scilab-Xcos/Boost_ss.sce
076f5eb139b9c08190b0492db2812a2bcb386a0b
[ "MIT" ]
permissive
JMVI/Power-electronics
e501d164c12baac256c25f009187b865d4b499f4
39324e83a455a09b0b88df58608f7b177c646f4f
refs/heads/master
2023-05-31T21:20:51.309488
2021-06-28T02:29:24
2021-06-28T02:29:24
275,470,619
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,866
sce
Boost_ss.sce
// ----------------------------------------------------------------------------- // Copyright (C) 2020 Jaime M. Villegas I. [jaime7592@gmail.com] // ----------------------------------------------------------------------------- // Filename : Boost_ss.m // Description : Small-signal analysis of non-ideal Boost Converter. Modeling, // open-loop and closed loop analysis (voltage control) // Version : 01.00 // Revision : 00 // Last modified : 07/08/2020 // References : R.W. Erickson, D. Maksimovic. "Fundamentals of Power // Electronics". 2nd ed. (2004) // ----------------------------------------------------------------------------- clear clc /*************************** Converter parameters ****************************/ // Converter quiescent parameters Vg = 48; // Input voltage Rload = 12; // Load resistance D = 0.6; // Duty cycle V = Vg/(1-D); // Output voltage I = V/(Rload*(1-D)); // Output current // Diode Rd = 10e-3; // Diode on-state resistance Vd = 0.7; // Diode forward voltage // Transistor Rt = 10e-3; // Transistor on-state resistance // Inductor L = 100e-6; // Inductor value RL = 0.05; // Inductor resistance // Capacitor Cout = 33e-6 // Capacitor value // *************************** Simulation parameters *************************/ // 1. Simulation time tsim = 10e-3; tstep = 100e-9; // 2. Line voltage and load current perturbations Vg_stp = 50; tstp_Vg = 0.8*tsim; Iload_stp = 10; tstp_Iload = 0.5*tsim; /***************************** Converter model *******************************/ // State-space model A = [-(RL+D*Rt+(1-D)*Rd)/L, -1/L; 1/Cout, -1/(Rload*Cout)]; B = [D/L, (Vg+Rd*I+Vd-Rt*I)/L, 0; 0, 0, 1]; C = [1, 0; 0, 1]; // Polynomial variable s = poly(0,"s"); Y = C*inv(s*eye(2,2) - A)*B; // Transfer functions Gid = syslin('c', Y(1,2)); // iL(s)/d(s) Gvg = syslin('c', Y(2,1)); // v(s)/vg(s) Gvd = syslin('c', Y(2,2)); // v(s)/d(s) // Output impedance re = RL+D*Rt+(1-D)*Rd // Equivalent loss resistance Zout = ( 1/( (s*L + re)/(1-D)^2 ) + s*Cout + 1/Rload )^(-1); /************************** Closed loop analysis ******************************/ // Closed-loop parameters Vm = 4; // PWM modulator gain Vref = 5; // Reference H = Vref/V; // Sensor gain // Uncompensated loop T_u = H/Vm // Loop gain // 1. Gvd(s) Tvd_u = syslin('c', T_u*Y(2,2)); // Uncompensated Gvd(s) t. function Ncoeff_Tvd_u = coeff(Tvd_u.num); // Numerator coefficients Dcoeff_Tvd_u = coeff(Tvd_u.den); // Denominator coefficients Tvu0 = Ncoeff_Tvd_u(1)/Dcoeff_Tvd_u(1); // Low frequency gain w0 = sqrt(Dcoeff_Tvd_u(1)); // Resonant frequency f0 = w0/(2*%pi); // 2. Gvg(s) Tvg_u = syslin('c', Y(2,1)/(1 + T_u)); // Uncompensated Gvg(s) t. function // 3. Zout(s) Zout_u = syslin('c', Zout/(1 + T_u)); // // Uncompensated output impedance // Uncompensated phase margin and crossover frequency [phi_u, fc_u] = p_margin(Tvd_u); // Desired phase margin and crossover frequency phi = 50; fc = 20000; // Compensator design (PID) fz = fc*sqrt( (1 - sind(phi) )/( 1 + sind(phi) ) ); fp = fc*sqrt( (1 + sind(phi) )/( 1 - sind(phi) ) ); fL = fc/10; Gc0 = (fc/f0)^2 * 1/Tvu0 * sqrt(fz/fp); wz = 2*%pi*fz; wp = 2*%pi*fp; wL = 2*%pi*fL; Gc = Gc0*(1+wL/s)*(1+s/wz)/(1+s/wp); // Compensated loop gain T_c = Gc*H/Vm // Compensator Tvd_c = syslin('c', T_c*Y(2,2)); // Compensated Gvd(s) transfer function Tvg_c = syslin('c', Y(2,1)/(1 + T_c)); // Compensated Gvg(s) transfer function Zout_c = syslin('c', Zout/(1 + T_c)); // Compensated phase margin and crossover frequency [phi_c, fc_c] = p_margin(Tvd_c); // Bode plots // Analyzed transfer function /* * c = 1: Gvd(s) - Control-to-Output * c = 2: Gvg(s) - Line-to-Output * c = 3: Zout(s) - Output impedance */ c = 2; select c case 1 clf(); bode([Tvd_u; Tvd_c], 0.01, 100000, ['Gvd_u(s)'; 'Gvd_c(s)']); case 2 clf(); bode([Tvg_u; Tvg_c], 0.01, 100000, ['Gvg_u(s)'; 'Gvg_c(s)']); case 3 clf(); bode([Zout_u; Zout_c], 0.01, 100000, ['Zout_u(s)'; 'Zout_c(s)']); end // ***************************** Simulation results ***************************/ // 1. Output voltage subplot(2,1,1) plot(vout_sim.time, vout_sim.values) xlabel("Time (s)", "fontsize", 2) ylabel("Voltage (V)", "fontsize", 2) title("Boost converter - Output voltage", "fontsize", 2.5) // 2. Output current subplot(2,1,2) plot(Iload_sim.time, Iload_sim.values, 'b', Iload_sim.time, vout_sim.values / Rload, 'r') xlabel("Time (s)", "fontsize", 2) ylabel("Current (A)", "fontsize", 2) title("Boost converter - Output current", "fontsize", 2.5) legend(["Iload perturbation"; "Iload"], "in_lower_right")
d39f7c704b83d9b92dcf37a2fff0ee06c93cb55e
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH13/EX13.2/13_02.sce
e26aa85ceafcc1c4de1329896d295bde05eac03b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
555
sce
13_02.sce
//Chapter 13, Problem 2, Figure 13.4 clc; A=[6 4;4 5]; B=[4;2]; X=A\B; I1=X(1,1); //I1 and I2 is a branch current I2=X(2,1); disp("From figure 13.5"); disp("Using Kirchhoff’s current law and labeling the current directions on the circuit"); disp("Divide the circuit into two loops and apply Kirchhoff’s voltage law to each."); printf("we get \n 6I1 + 4I2 = 4 \n 4I1 + 5I2 =2\n\n"); printf(" By solving both equations, we get \n"); printf("I1 = %.3f A\n",I1); printf("I2 = %.3f A\n",I2); printf("I1+I2 = %.3f A",I1+I2);
053ef126d0ecdee585cc081fdd3a54d8e3166522
449d555969bfd7befe906877abab098c6e63a0e8
/2153/CH18/EX18.1/ex_18_1.sce
1ef4ec46d4099b8e5dbe6b0b7ecb19d931d978a0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
256
sce
ex_18_1.sce
//Example 18.1 : magnetization and flux density clc; clear; close; //given data : mu0=4*%pi*10^-7; H=10^4;// in A/m Xm=3.7*10^-3;// room temperature mu_r=1+Xm; B=mu0*mu_r*H; M=Xm*H; disp(B,"the flux density,B(Wb/m^2) = ") disp(M,"magnetization,M(A/m) = ")
ad90234306b429a7ceadf7f3b965d70cfefc987b
449d555969bfd7befe906877abab098c6e63a0e8
/854/CH13/EX13.10/Example13_10.sce
f7ec0fa208d965b10e6e5dcd9264bc617d1656fb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
671
sce
Example13_10.sce
//clear// //Caption:Program to determine group velocity and phase velocity of a wave //Example13.10 //page470 clc; w = sym('w'); wo = sym('wo'); no = sym('no'); c = sym('c'); beta_w = (no*w^2)/(wo*c); disp(beta_w,'Phase constant=') d_beta_w = diff(beta_w,w); disp(d_beta_w,'Differentiation of phase constant w.r.to w =') Vg = 1/d_beta_w; Vg = limit(Vg,w,wo); Vp = w/beta_w; Vp = limit(Vp,w,wo); disp(Vg,'Group velocity =') disp(Vp,'Phase velocity=') //Result //Phase constant= // no*w^2/(c*wo) //Differentiation of phase constant w.r.to w = // 2*no*w/(c*wo) //Group velocity = // c/(2*no) //Phase velocity= // c/no
e6331655815627236b8a182f8f26961a73917873
449d555969bfd7befe906877abab098c6e63a0e8
/2399/CH8/EX8.2.2/Example_8_2_2.sce
ccedb12315d03d699682eacf372561f44c89387f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
784
sce
Example_8_2_2.sce
// Example 8.2.2 clc; clear; SN_dB=60; //signal to noise ratio h=6.626d-34 //plank's constant c=3d8; //speed of light lamda=1.3d-6; //wavelength eta=1; B=6.5d6; //Bandwidth SN=10^(SN_dB/10); f=c/lamda Popt= 2*SN*h*f*B/eta; //computing optical power Popt_dB = 10 * log10(Popt) + 30; //optical power in dbm Popt=Popt*10^6; printf("\nIncident power required to get an SNR of 60 dB at the receiver is %.4f microWatt or %.3f dBm",Popt,Popt_dB); printf("\nNOTE - Calculation error in the book.\nThey have take SN as 10^5 while calculating, which has lead to an error in final answer"); //Calculation error in the book.They have take SN as 10^5 while calculating, which has lead to an error in final answer //answer in the book 198.1nW and -37.71 dBm
caca7a0a23f06ef19f3c640bad1443f68947a413
449d555969bfd7befe906877abab098c6e63a0e8
/2183/CH5/EX5.5/Ex_5_5.sce
a5dd0ccb906885bc9fa84571f9100054423fbc4a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
217
sce
Ex_5_5.sce
// Example 5.5//external power efficiency clc; clear; close; eg=1.44;// v=2.8;//in volts an=0.20;;//efficiency nep=((an*(eg/v))*100);//external power efficiency disp(nep,"external power efficiency in percentage is")
874d03ecb5c72c665dbd2a6d95b082b60750c87a
ab1416f6fd6655094298e6c7bab1ac47d2533342
/samples/Scilab/scilab_script.sce
efa29227eea39598de1e6b5497b4b69a4a2a9df5
[ "MIT", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
monkslc/hyperpolyglot
6ddc09e9d10d30bd8ce5c80a3bd755fa5714d621
a55a3b58eaed09b4314ef93d78e50a80cfec36f4
refs/heads/master
2023-05-26T15:26:14.686247
2023-05-17T13:51:31
2023-05-17T13:51:31
248,387,967
43
11
Apache-2.0
2023-05-17T13:51:35
2020-03-19T02:02:35
RenderScript
UTF-8
Scilab
false
false
12
sce
scilab_script.sce
disp(%pi);
a015f55b201da185252693ed95cc053ce9728bc0
449d555969bfd7befe906877abab098c6e63a0e8
/497/CH12/EX12.1/Chap12_Ex1.sce
d55dca83660e09385fb94366087a109efa4492dd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,368
sce
Chap12_Ex1.sce
//Kunii D., Levenspiel O., 1991. Fluidization Engineering(II Edition). Butterworth-Heinemann, MA, pp 491 //Chapter-12, Example 1, Page 293 //Title: Fine Particle (Geldart A) Bubbling Bed Reactor //========================================================================================================== clear clc //INPUT Kr=10;//rate constant in m^3 gas/m^3 cat s D=2E-5;//Diffusion coefficient of gas in m^2/s dpbar=68;//Average partilce size in micrometers ephsilonm=0.5;//Void fraction of fixed bed gammab=0.005;//Ratio of volume of dispersed solids to that of bubble phase ephsilonmf=0.55;//Void fraction at minimum fluidization condition umf=0.006;//Velocity at minimum fluidization condition in m/s db=0.04;//Equilibrium bubble size in m Lm=0.7;//Length of the bed in m uo=0.1;//Superficial gas velocity in m/s dbed=0.26;//Diameter of the bed in m g=9.81;//Acceleration due to gravity in square m/s^2 //CALCULATION ubr=0.711*(g*db)^0.5;//Rise velocity of bubble from Eqn.(6.7) ub=uo-umf+ubr;//Velocity of bubbles in bubbling beds in Eqn.(6.8) Kbc=4.5*(umf/db)+5.85*((D^0.5*g^0.25)/db^(5/4));//Gas interchange coefficient between bubble and cloud from Eqn.(10.27) Kce=6.77*((D*ephsilonmf*0.711*(g*db)^0.5)/db^3)^0.5;//Gas interchange coefficient between emulsion and cloud from Eqn.(10.34) delta=uo/ub;//Fraction of bed in bubbles from Eqn.(6.29) fw=0.6;//Wake volume to bubble volume from Fig.(5.8) gammac=(1-ephsilonmf)*((3/(ubr*ephsilonmf/umf-1))+fw);//Volume of solids in cloud to that of the bubble from Eqn.(6.36) gammae=((1-ephsilonmf)*((1-delta)/delta))-gammab-gammac;//Volume of solids in emulsion to that of the bubble from Eqn.(6.35) ephsilonf=1-(1-delta)*(1-ephsilonmf);//Void fraction of fixed bed from Eqn.(6.20) Lf=(1-ephsilonm)*Lm/(1-ephsilonf);//Length of fixed bed from Eqn.(6.19) Krtou=Kr*Lm*(1-ephsilonm)/uo;//Dimensionless reaction rate group from Eqn.(5) Kf=gammab*Kr+1/((1/Kbc)+(1/(gammac*Kr+1/((1/Kce)+(1/(gammae*Kr))))));//Raction rate for fluidized bed from Eqn.(14) XA=1-exp(-1*Kf*Lf/ub);//Conversion from Eqn.(16) //OUTPUT mprintf('\nThe dimnesionless reaction rate group: %f',Krtou); mprintf('\nThe reaction rate for fluidized bed: %fs^-1',Kf); mprintf('\nConversion: %f',XA); //====================================END OF PROGRAM ======================================================
f97d4b2060d207437e3240a371803b9c526cca54
6813325b126713766d9778d7665c10b5ba67227b
/Chapter5/Ch_5_Eg_5.7.sce
98f76413f826ce74e3cc810c276db43f97b76750
[]
no_license
arvindrachna/Introduction_to_Scilab
955b2063b3faa33a855d18ac41ed7e0e3ab6bd1f
9ca5d6be99e0536ba1c08a7a1bf4ba64620ec140
refs/heads/master
2020-03-15T19:26:52.964755
2018-05-31T04:49:57
2018-05-31T04:49:57
132,308,878
1
0
null
null
null
null
UTF-8
Scilab
false
false
303
sce
Ch_5_Eg_5.7.sce
// To change the color of a curve using the properties of various objects x=-%pi:.2:2*%pi; y1=sin(x); y2=cos(x); plot(x,y1,"-rx",x,y2,":gO"); a=gca(); a.grid a.grid=[1,1]; p=a.parent; p.background p.background=3; c=a.children(1).children(1); c.foreground c.foreground=2;
2385c37a53656fd09c4c911a7e32d29bf1d9e19d
449d555969bfd7befe906877abab098c6e63a0e8
/2666/CH11/EX11.1/11_1.sce
c528f35854d62242275c4a597dffebd3b8b8a0fe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
457
sce
11_1.sce
clc //initialisation of variables h=500//cu ft p=14//psia t=70//F p1=90//psia q=1.4//ft h1=144//ft w=33000//ft n=1.35//ft g=1.46//ft //CALCULATIONS I=((q/0.4)*(h1*p*h))/(w)*[1-(p1/p)^(0.4)/(q)]*q//hp P=((-h1*p*h)*log(p1/p))/w//hp V=((n/0.35)*(h1*p*h)/w)*[1-(p1/p)^(0.35)/(n)]*g//hp //RESULTS printf('the isothermal horsepower=% f hp',I) printf('the isothermal horsepower=% f hp',P) printf('the polytropic horsepower require is=% f hp',V)
99f080283de2a428f6bdd9630301d79e9f8c59fa
449d555969bfd7befe906877abab098c6e63a0e8
/1673/CH3/EX3.25/3_25.sce
eb79715f6611e5d6ba9e0ae9499d3f2ccecdeccb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
657
sce
3_25.sce
//inverse intrpolation //example 3.25 //page 118 clc;clear;close; x=[2 3 4 5]; y=[8 27 64 125]; for i=1:3 d1(i)=y(i+1)-y(i); end for i=1:2 d2(i)=d1(i+1)-d1(i); end for i=1:1 d3(i)=d2(i+1)-d2(i); end yu=10;//square rooot of 10 y0=y(1); d=[d1(1) d2(1) d3(1)]; u1=(yu-y0)/d1(1); u2=((yu-y0-u1*(u1-1)*d2(1)/2)/d1(1)); u3=(yu-y0-u2*(u2-1)*d2(1)/2-u2*(u2-1)*(u2-2)*d3(1)/6)/d1(1); u4=(yu-y0-u3*(u3-1)*d2(1)/2-u3*(u3-1)*(u3-2)*d3(1)/6)/d1(1); u5=(yu-y0-u4*(u4-1)*d2(1)/2-u4*(u4-1)*(u4-2)*d3(1)/6)/d1(1); printf(' %f \n %f \n %f \n %f \n %f \n ',u1,u2,u3,u4,u5); printf(' the approximate square root of %d is: %0.3f',yu,x(1)+u5)
6f0688e494e2d4b4a9fdde7d4377df4694d23420
449d555969bfd7befe906877abab098c6e63a0e8
/199/CH9/EX9.7/Example_9_7.sce
d0b14b6a0b91120d81770069bee90eeebf47e9ac
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
582
sce
Example_9_7.sce
// Chapter9 // Page.No-402, Figure.No-9.21(a) // Example_9_7 // Value of tc,td and f0 // Given clear;clc; Ra=2.2*10^3; // Resistance in ohm Rb=3.9*10^3; // Resistance in ohm C=0.1*10^-6; // capacitance in farad tc=0.69*(Ra+Rb)*C; // Charging time of the capacitor printf("\n Charging time of the capacitor is = %.6f sec \n",tc) // Result td=0.69*Rb*C; // Discharging time of the capacitor printf("\n Discharging time of the capacitor is = %.6f sec \n",td) // Result T=tc+td; fo=1/T // Freq of oscillation printf("\n Freq of oscillation is = %.1f Hz \n",fo) // Result
e59381f1e622348f06efeeb6a4f54db91c0604f4
449d555969bfd7befe906877abab098c6e63a0e8
/3819/CH2/EX2.12/Ex2_12.sce
c3e09bab6638f072511dfdc86aa3d4f4203d1922
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
667
sce
Ex2_12.sce
// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal // Chapter 2 - Pressure and its measurements // Problem 2.12 //Given Data Set in the Problem h2=20/100 SG2=13.6 SG1=1 dens1=1000 dens2=13.6*dens1 g=9.81 //Calculations //equating pressure above the datum line; function [f]=F(h1) f=(dens2*g*h2)-(dens1*g*h1) endfunction h1=10; H1=fsolve(h1,F) //When vessel is completely filled with wter; //Equating pressure in the two limbs function [g]=G(y) g=(dens2*g*(0.2+2*y/100))-(dens1*g*(3+H1+y/100)) endfunction y=10; Y=fsolve(y,G) mprintf("The difference in the mercury level in the two limbs is %f cm\n",(20+2*Y))
6150febae3981bdc85300ba79f0c23dfb9768266
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH4/EX4.5/Ex4_5.sce
6d425637c6ec32cfb21dcb4f50e55e3fb15127c3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
553
sce
Ex4_5.sce
clc Pout=24000;//rated output power in watts Et=250;//rated terminal voltage Ra=0.1;//armature resistance N=1600;//speed in rpm //Ea(terminal voltage)= k*(N*phi),where k is constant & phi is flux per pole //At no load, 260=k*1600*phi ....(1) Ia=Pout/Et; //if the generated voltage under rated load is Ea1,then //Ea=k*1500*phi ....(2) //From equation (1)&(2), (Ea1/260)=((1500*phi)/(1600*phi)) Ea1=(1500*260)/1600; Vt=Ea1-Ia*Ra//terminal voltage at rated load printf('The terminal voltage of generator under given conditions is %f V.',Vt)
36b1272067fc0d7b025845005217e92ddbf583b6
e0124ace5e8cdd9581e74c4e29f58b56f7f97611
/3901/CH6/EX6.11/Ex6_11.sce
dfd5e1516baf8c413d1c422344453934046b86de
[]
no_license
psinalkar1988/Scilab-TBC-Uploads-1
159b750ddf97aad1119598b124c8ea6508966e40
ae4c2ff8cbc3acc5033a9904425bc362472e09a3
refs/heads/master
2021-09-25T22:44:08.781062
2018-10-26T06:57:45
2018-10-26T06:57:45
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
305
sce
Ex6_11.sce
clc clear all close; t=0:0.001:6.3; x=1.*((t>=0)&(t<%pi))-1.*((t>=%pi)&(t<=(2*%pi))); x_approx=0; for n=1:2:25 x_approx=x_approx+(4/%pi).*sin(n*t); end plot(t',x,'b');plot(t,x_approx,'r'); set(gca(),"x_location","middle","zoom_box",[t(1) -12 t($) 12]); legend("actual_signal","approximated_signal");
1b7743574f006d2af78db4d0cec9cc92545ec6c5
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/lemma-split/GOLD-TEST/tel.tst
347f8d6f91350a57dc801db87e4892b422cc3a28
[]
no_license
davidgu13/Lemma-vs-Form-Splits
c154f1c0c7b84ba5b325b17507012d41b9ad5cfe
3cce087f756420523f5a14234d02482452a7bfa5
refs/heads/master
2023-08-01T16:15:52.417307
2021-09-14T20:19:28
2021-09-14T20:19:28
395,023,433
3
0
null
null
null
null
UTF-8
Scilab
false
false
16,645
tst
tel.tst
తీయు తీస్తున్నాడు V;DUR;MASC;SG;3;PRS తీయు తీస్తున్నాను V;DUR;SG;1;PRS తీయు తీస్తున్నావు V;DUR;SG;2;PRS తీయు తీస్తున్నారు V;DUR;PL;2;PRS తీయు తీసింది V;FEM;SG;3;PST తీయు తీస్తాము V;PL;1;FUT తీయు తీస్తారు V;MASC;PL;3;FUT తీయు తీస్తావు V;SG;2;FUT తీయు తీస్తున్నాము V;DUR;PL;1;PRS తీయు తీశాము V;PL;1;PST తీయు తీస్తున్నారు V;DUR;MASC;PL;3;PRS తీయు తీశాడు V;MASC;SG;3;PST తీయు తీశావు V;SG;2;PST తీయు తీస్తున్నారు V;DUR;FEM;PL;3;PRS తీయు తీశారు V;MASC;PL;3;PST తీయు తీస్తాడు V;MASC;SG;3;FUT తీయు తీశారు V;PL;2;PST తీయు తీస్తాను V;SG;1;FUT తీయు తీశాను V;SG;1;PST తీయు తీస్తుంది V;FEM;SG;3;FUT తీయు తీస్తున్నది V;DUR;FEM;SG;3;PRS తీయు తీస్తారు V;FEM;PL;3;FUT తీయు తీశారు V;FEM;PL;3;PST తీయు తీస్తారు V;PL;2;FUT నర్తించు నర్తించారు V;MASC;PL;3;PST నర్తించు నర్తించాడు V;MASC;SG;3;PST నర్తించు నర్తించింది V;FEM;SG;3;PST నర్తించు నర్తించారు V;PL;2;PST నర్తించు నర్తించావు V;SG;2;PST నర్తించు నర్తించాము V;PL;1;PST నర్తించు నర్తించాను V;SG;1;PST నర్తించు నర్తించారు V;FEM;PL;3;PST పెట్టు పెట్టారు V;PL;2;PST పెట్టు పెట్టాడు V;MASC;SG;3;PST పెట్టు పెట్టావు V;SG;2;PST పెట్టు పెట్టాను V;SG;1;PST పెట్టు పెట్టింది V;FEM;SG;3;PST పెట్టు పెట్టారు V;FEM;PL;3;PST పెట్టు పెట్టారు V;MASC;PL;3;PST పెట్టు పెట్టాము V;PL;1;PST పండితుడు పండితునివలన N;ABL;SG పండితుడు పండితుడు N;NOM;SG పండితుడు పండితులకొరకు N;DAT;PL పండితుడు పండితునితో N;INS;SG పండితుడు పండితుడా N;VOC;SG పండితుడు పండితుని N;ACC;SG పండితుడు పండితులారా N;VOC;PL పండితుడు పండితులయందు N;AT;PL పండితుడు పండితునియందు N;AT;SG పండితుడు పండితునికొరకు N;DAT;SG పండితుడు పండితులు N;NOM;PL పండితుడు పండితులతో N;INS;PL పండితుడు పండితుల N;ACC;PL పండితుడు పండితునియొక్క N;GEN;SG పండితుడు పండితులవలన N;ABL;PL పండితుడు పండితులయొక్క N;GEN;PL పాడు పాడారు V;FEM;PL;3;PST పాడు పాడాను V;SG;1;PST పాడు పాడింది V;FEM;SG;3;PST పాడు పాడావు V;SG;2;PST పాడు పాడారు V;PL;2;PST పాడు పాడాడు V;MASC;SG;3;PST పాడు పాడారు V;MASC;PL;3;PST పాడు పాడాము V;PL;1;PST వరుణుడు వరుణునివలన N;ABL;SG వరుణుడు ఓ N;VOC;PL వరుణుడు వరుణులకొరకు N;DAT;PL వరుణుడు వరుణునికొరకు N;DAT;SG వరుణుడు వరుణునియొక్క N;GEN;SG వరుణుడు వరుణుల N;ACC;PL వరుణుడు వరుణా N;VOC;SG వరుణుడు వరుణుని N;ACC;SG వరుణుడు వరుణులతో N;INS;PL వరుణుడు వరుణులయొక్క N;GEN;PL వరుణుడు వరుణులవలన N;ABL;PL వరుణుడు వరుణులయందు N;AT;PL వరుణుడు వరుణుడు N;NOM;SG వరుణుడు వరుణులారా N;VOC;PL వరుణుడు వరుణునియందు N;AT;SG వరుణుడు వరుణునితో N;INS;SG వరుణుడు వరుణులు N;NOM;PL అలంకరించు అలంకరించాము V;PL;1;PST అలంకరించు అలంకరించారు V;FEM;PL;3;PST అలంకరించు అలంకరించాడు V;MASC;SG;3;PST అలంకరించు అలంకరించింది V;FEM;SG;3;PST అలంకరించు అలంకరించారు V;PL;2;PST అలంకరించు అలంకరించావు V;SG;2;PST అలంకరించు అలంకరించాను V;SG;1;PST అలంకరించు అలంకరించారు V;MASC;PL;3;PST నమ్మించు నమ్మించాను V;SG;1;PST నమ్మించు నమ్మించారు V;PL;2;PST నమ్మించు నమ్మించారు V;FEM;PL;3;PST నమ్మించు నమ్మించింది V;FEM;SG;3;PST నమ్మించు నమ్మించాడు V;MASC;SG;3;PST నమ్మించు నమ్మించావు V;SG;2;PST నమ్మించు నమ్మించాము V;PL;1;PST నమ్మించు నమ్మించారు V;MASC;PL;3;PST ఓడు ఓడాను V;SG;1;PST ఓడు ఓడారు V;FEM;PL;3;PST ఓడు ఓడారు V;PL;2;PST ఓడు ఓడావు V;SG;2;PST ఓడు ఓడాడు V;MASC;SG;3;PST ఓడు ఓడింది V;FEM;SG;3;PST ఓడు ఓడాము V;PL;1;PST ఓడు ఓడారు V;MASC;PL;3;PST స్తుతించు స్తుతించాడు V;MASC;SG;3;PST స్తుతించు స్తుతించారు V;FEM;PL;3;PST స్తుతించు స్తుతించాము V;PL;1;PST స్తుతించు స్తుతించింది V;FEM;SG;3;PST స్తుతించు స్తుతించారు V;MASC;PL;3;PST స్తుతించు స్తుతించాను V;SG;1;PST స్తుతించు స్తుతించారు V;PL;2;PST స్తుతించు స్తుతించావు V;SG;2;PST ప్రారంభించు ప్రారంభించాము V;PL;1;PST ప్రారంభించు ప్రారంభించాడు V;MASC;SG;3;PST ప్రారంభించు ప్రారంభించారు V;FEM;PL;3;PST ప్రారంభించు ప్రారంభించాను V;SG;1;PST ప్రారంభించు ప్రారంభించారు V;MASC;PL;3;PST ప్రారంభించు ప్రారంభించావు V;SG;2;PST ప్రారంభించు ప్రారంభించింది V;FEM;SG;3;PST ప్రారంభించు ప్రారంభించారు V;PL;2;PST చేయించు చేయించారు V;PL;2;PST చేయించు చేయించాను V;SG;1;PST చేయించు చేయించారు V;FEM;PL;3;PST చేయించు చేయించింది V;FEM;SG;3;PST చేయించు చేయించారు V;MASC;PL;3;PST చేయించు చేయించాడు V;MASC;SG;3;PST చేయించు చేయించాము V;PL;1;PST చేయించు చేయించావు V;SG;2;PST తోము తోమాము V;PL;1;PST తోము తోమారు V;FEM;PL;3;PST తోము తోమారు V;MASC;PL;3;PST తోము తోమావు V;SG;2;PST తోము తోమాను V;SG;1;PST తోము తోమింది V;FEM;SG;3;PST తోము తోమారు V;PL;2;PST తోము తోమాడు V;MASC;SG;3;PST అసురుడు అసురులకొరకు N;DAT;PL అసురుడు అసురులయందు N;AT;PL అసురుడు అసురునియొక్క N;GEN;SG అసురుడు అసురుని N;ACC;SG అసురుడు అసురులయొక్క N;GEN;PL అసురుడు అసురుడు N;NOM;SG అసురుడు అసురునియందు N;AT;SG అసురుడు అసురునికొరకు N;DAT;SG అసురుడు ఓయి N;VOC;SG అసురుడు అసురుల N;ACC;PL అసురుడు అసురులతో N;INS;PL అసురుడు అసురుడా N;VOC;SG అసురుడు అసురులవలన N;ABL;PL అసురుడు ఓరి N;VOC;PL అసురుడు అసురునివలన N;ABL;SG అసురుడు అసురులు N;NOM;PL అసురుడు అసురునితో N;INS;SG అభినందించు అభినందించాడు V;MASC;SG;3;PST అభినందించు అభినందించారు V;FEM;PL;3;PST అభినందించు అభినందించావు V;SG;2;PST అభినందించు అభినందించింది V;FEM;SG;3;PST అభినందించు అభినందించాను V;SG;1;PST అభినందించు అభినందించాము V;PL;1;PST అభినందించు అభినందించారు V;PL;2;PST అభినందించు అభినందించారు V;MASC;PL;3;PST గెలుచు గెలిచారు V;PL;2;PST గెలుచు గెలిచారు V;MASC;PL;3;PST గెలుచు గెలిచారు V;FEM;PL;3;PST గెలుచు గెలిచాను V;SG;1;PST గెలుచు గెలిచాము V;PL;1;PST గెలుచు గెలిచావు V;SG;2;PST గెలుచు గెలిచింది V;FEM;SG;3;PST గెలుచు గెలిచాడు V;MASC;SG;3;PST రాక్షసుడు రాక్షసులతో N;INS;PL రాక్షసుడు రాక్షసుడు N;NOM;SG రాక్షసుడు రాక్షసులయందు N;AT;PL రాక్షసుడు ఓరి N;VOC;PL రాక్షసుడు రాక్షసునియందు N;AT;SG రాక్షసుడు రాక్షసులయొక్క N;GEN;PL రాక్షసుడు రాక్షసా N;VOC;SG రాక్షసుడు రాక్షసులు N;NOM;PL రాక్షసుడు రాక్షసులవలన N;ABL;PL రాక్షసుడు రాక్షసునియొక్క N;GEN;SG రాక్షసుడు రాక్షసులకొరకు N;DAT;PL రాక్షసుడు రాక్షసునివలన N;ABL;SG రాక్షసుడు రాక్షసుని N;ACC;SG రాక్షసుడు రాక్షసునికొరకు N;DAT;SG రాక్షసుడు రాక్షసుల N;ACC;PL రాక్షసుడు రాక్షసునితో N;INS;SG ఉండు ఉన్నారు V;FEM;PL;3;PST ఉండు ఉన్నాము V;PL;1;PST ఉండు ఉన్నది V;FEM;SG;3;PST ఉండు ఉన్నారు V;PL;2;PST ఉండు ఉన్నావు V;SG;2;PST ఉండు ఉన్నాడు V;MASC;SG;3;PST ఉండు ఉన్నారు V;MASC;PL;3;PST ఉండు ఉన్నాను V;SG;1;PST ఎక్కు ఎక్కారు V;PL;2;PST ఎక్కు ఎక్కాను V;SG;1;PST ఎక్కు ఎక్కారు V;FEM;PL;3;PST ఎక్కు ఎక్కాము V;PL;1;PST ఎక్కు ఎక్కాడు V;MASC;SG;3;PST ఎక్కు ఎక్కారు V;MASC;PL;3;PST ఎక్కు ఎక్కింది V;FEM;SG;3;PST ఎక్కు ఎక్కావు V;SG;2;PST అతికించు అతికించాను V;SG;1;PST అతికించు అతికించారు V;FEM;PL;3;PST అతికించు అతికించాడు V;MASC;SG;3;PST అతికించు అతికించింది V;FEM;SG;3;PST అతికించు అతికించాము V;PL;1;PST అతికించు అతికించారు V;PL;2;PST అతికించు అతికించారు V;MASC;PL;3;PST అతికించు అతికించావు V;SG;2;PST క్రీడించు క్రీడిస్తున్నావు V;DUR;SG;2;PRS క్రీడించు క్రీడిస్తున్నాడు V;DUR;MASC;SG;3;PRS క్రీడించు క్రీడించాడు V;MASC;SG;3;PST క్రీడించు క్రీడిస్తున్నది V;DUR;FEM;SG;3;PRS క్రీడించు క్రీడించారు V;PL;2;PST క్రీడించు క్రీడించారు V;MASC;PL;3;PST క్రీడించు క్రీడించింది V;FEM;SG;3;PST క్రీడించు క్రీడించారు V;FEM;PL;3;PST క్రీడించు క్రీడించాము V;PL;1;PST క్రీడించు క్రీడిస్తున్నాము V;DUR;PL;1;PRS క్రీడించు క్రీడిస్తున్నారు V;DUR;FEM;PL;3;PRS క్రీడించు క్రీడిస్తున్నారు V;DUR;MASC;PL;3;PRS క్రీడించు క్రీడించాను V;SG;1;PST క్రీడించు క్రీడిస్తున్నారు V;DUR;PL;2;PRS క్రీడించు క్రీడిస్తున్నాను V;DUR;SG;1;PRS క్రీడించు క్రీడించావు V;SG;2;PST దాచు దాచారు V;FEM;PL;3;PST దాచు దాచావు V;SG;2;PST దాచు దాచాము V;PL;1;PST దాచు దాచారు V;MASC;PL;3;PST దాచు దాచారు V;PL;2;PST దాచు దాచాను V;SG;1;PST దాచు దాచాడు V;MASC;SG;3;PST దాచు దాచింది V;FEM;SG;3;PST ప్రవహించు ప్రవహిస్తున్నారు V;PL;2;PST ప్రవహించు ప్రవహిస్తున్నాడు V;MASC;SG;3;PST ప్రవహించు ప్రవహిస్తున్నది V;FEM;SG;3;PST ప్రవహించు ప్రవహిస్తున్నారు V;MASC;PL;3;PST ప్రవహించు ప్రవహిస్తున్నాము V;PL;1;PST ప్రవహించు ప్రవహిస్తున్నాను V;SG;1;PST ప్రవహించు ప్రవహిస్తున్నారు V;FEM;PL;3;PST ప్రవహించు ప్రవహిస్తున్నావు V;SG;2;PST ఆగు ఆగాము V;PL;1;PST ఆగు ఆగారు V;FEM;PL;3;PST ఆగు ఆగాడు V;MASC;SG;3;PST ఆగు ఆగారు V;MASC;PL;3;PST ఆగు ఆగారు V;PL;2;PST ఆగు ఆగాను V;SG;1;PST ఆగు ఆగావు V;SG;2;PST ఆగు ఆగింది V;FEM;SG;3;PST కనిపించు కనిపించాడు V;MASC;SG;3;PST కనిపించు కనిపించారు V;PL;2;PST కనిపించు కనిపించావు V;SG;2;PST కనిపించు కనిపించాను V;SG;1;PST కనిపించు కనిపించారు V;FEM;PL;3;PST కనిపించు కనిపించాము V;PL;1;PST కనిపించు కనిపించారు V;MASC;PL;3;PST కనిపించు కనిపించింది V;FEM;SG;3;PST విను విన్నాడు V;MASC;SG;3;PST విను విన్నాము V;PL;1;PST విను విన్నారు V;FEM;PL;3;PST విను విన్నారు V;MASC;PL;3;PST విను విన్నారు V;PL;2;PST విను విన్నది V;FEM;SG;3;PST విను విన్నావు V;SG;2;PST విను విన్నాను V;SG;1;PST
4c56ed68221a1a3c120b083e7576eff6721dab0d
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH11/EX11.14/14.sce
a3915d8f3a4bb7dee71dd0bb0f3ac21aae34d93e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
670
sce
14.sce
clc // C2H2+2.5O2+2.5*(79/21)N2 --> 2CO2+H2O+2.5*(79/21)N2 //26 kg C2H2 + 160 kg O2 + 526.6 kg N2 → 88 kg CO2 + 18 kg H2O + 526.6 kg N2 + 80 kg O2 //1 kg C2H2 + 6.15 kg O2 + 20.25 kg N2 → 3.38 kg CO2 + 0.69 kg H2O + 20.25 kg N2 + 3.07 kg O2 m_CO2=3.38; //kg m_H2O=0.69; //kg m_O2=3.07; //kg m_N2=20.25; //kg m_total=m_CO2+m_H2O+m_O2+m_N2; CO2=m_CO2/m_total*100; H2O=m_H2O/m_total*100; O2=m_O2/m_total*100; N2=m_N2/m_total*100; disp("Hence the gravimetric analysis of the complete combustion is :") disp("CO2=") disp(CO2) disp("%") disp("H2O=") disp(H2O) disp("%") disp("O2=") disp(O2) disp("%") disp("N2=") disp(N2) disp("%")
5bee7c7093d4e9affaf12777944712920c4a10fd
449d555969bfd7befe906877abab098c6e63a0e8
/3834/CH5/EX5.3.6/Ex5_3_6.sce
95400b954e6acb5c8642686685c4b2f7ca0c2c50
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
612
sce
Ex5_3_6.sce
//Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner //Windows 8 //Scilab version- 6.0.0 //Example 5.3.6 clc; clear; //given Dpmd=0.5;//polarization mode dispersion coefficient in ps/sqrt(km) L=100;//for assumed fiber length in km deltatpmd=Dpmd*sqrt(L);//pulse spread due to PMD in ps mprintf("Pulse spread caused by PMD for single mode fiber= %.2f ps",deltatpmd); BRpmd=1/(4*deltatpmd);//maximum bit rate limited by PMD in 10^12(bps) mprintf("\nBit Rate limited by PMD= %.2f Gbps",BRpmd*1e3);//multiplication by 1e3 to convert unit into Gbps from 10^12(bps)
b84a30665ab3748c7882e4244d379ad0ad12f75e
449d555969bfd7befe906877abab098c6e63a0e8
/2882/CH9/EX9.5/Ex9_5.sce
0e09466658a4b78ae6692a0a57660d08e4f690ca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
623
sce
Ex9_5.sce
//Tested on Windows 7 Ultimate 32-bit //Chapter 9 Frequency Response of Amplifier Pg no. 301 clear; clc; //Given P_rated=50;//wattage rating of amplifier RL=16;//load resistance of speaker in ohms Gp_dB=22;//power gain in dB units Gv_dB=37;//voltage gain in dB units //Solution disp("(i)"); Pi=P_rated/10^(Gp_dB/10);//input power required in watts printf("Pi = %.2f mW",Pi*10^3); disp("(ii)"); Vin=sqrt(P_rated*RL)/10^(Gv_dB/20);//input voltage required in volts printf("Vin = %.2f mV",Vin*10^3); //calculation error in textbook as wattage mentioned in question is 50 W and in solution is 37 W
6f11ce9af91bf3d163cc469669e10c18fc1d2362
a716b1a783311ba8f8caeb1aaaa71fed9e8895dd
/SciLab/functions/trade_off.sci
d2fc692078494e568fef01a2868c7b2fc0e0a4f3
[]
no_license
AvrilWeinbach/MutualismDecline
c669bd8cf30d9183d3c609549f75693aac854d48
ce5efa064ebcd01634f35db395445a41462bbb4a
refs/heads/main
2023-04-14T03:47:01.000489
2021-10-06T10:42:49
2021-10-06T10:42:49
412,018,063
0
0
null
null
null
null
UTF-8
Scilab
false
false
96
sci
trade_off.sci
function rP = trade_off(e,emax,delta) rP = (1-(e/emax).^delta).^(1/delta) endfunction
284175451c2e3b5dd85b0115b3c962125221657c
449d555969bfd7befe906877abab098c6e63a0e8
/3720/CH5/EX5.7/Ex5_7.sce
caed91990d7adbb16670e9aff4b5385d4a556baf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
615
sce
Ex5_7.sce
// Example 5_7 clc;clear;funcprot(0); // Given values P_atm=101.3;// The atmospheric pressure in kPa; rho=750;//The density of gasoline in kg/m^3 g=9.81;//m/s^2 z_1=0.75;// m z_3=2.75;// m D=(5/1000);// m // Calculation //(a) V_2=sqrt(2*g*z_1); A=(%pi*D^2)/4;//The cross-sectional area of the tube in m^2 v=V_2*A*1000;//The flow rate of gasoline in L/s V=4;// Volume of gasoline in litre gradt=V/v; printf('(a)The time needed to siphon 4 L of gasoline from the tank,gradt=%0.1f s\n',gradt); //(b) P_3=P_atm-((rho*g*z_3)/1000);// kPa printf('(b)The pressure at point 3,P_3=%0.1f kPa\n',P_3);
105d6cb5a80b4e4e41548430b7146b3ac8de9d0c
449d555969bfd7befe906877abab098c6e63a0e8
/680/CH4/EX4.10/4_10.sce
ed4c5450448b10b736ae89d897938bc27f8ab744
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
228
sce
4_10.sce
//Problem 4.10: //initializing the variables: m = 2000; // in lb d = 1200; // in ft //calculation: PE = m*d/2 PEbtu = PE/778.17 printf("\n\nResult\n\n") printf("\n the change in potential energy is %.0f Btu",PEbtu)
1a17a07a6b1a066ffa9db20049d4b87ccda83f42
e40c77edc9319d2b3cadd7aea8502a2bbc14e209
/lab11.sci
db6d03fe1a7a864249bd542036843b7b645d4f0d
[]
no_license
HugoSoaresFontes/sinais
c0fef3ed7ead2c62c5dc76ba290f056c1d678a1e
541a129cf4dc338a2d9556149274f9b4f37f9ec6
refs/heads/master
2021-01-25T05:02:16.625002
2017-09-08T12:40:02
2017-09-08T12:40:02
93,504,417
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,071
sci
lab11.sci
//Hugo Soares Eng Elétrica 2016.1 //ODE function ydot=funcao(t, y) ydot=1-y endfunction //Forward function ypos=forward(x, y,Tzao, tao) ypos = (Tzao/tao)*x+(1-Tzao/tao)*y endfunction //Backward function y=backward(x, y_anterior,Tzao, tao) y = (x*(Tzao/tao)+y_anterior)/(1+Tzao/tao) endfunction // Setagem inicial y0=0; t0=0; tao = 1; x = 1; tmax = 10; step = 1/800; t=t0:step:tmax; // Resultado através da ode continua = ode(y0,t0,t,funcao); //Count auxiliar utilzado para a plotagem dos gráficos de acordo com o Tzao count_auxiliar = 0; for count = 1:4 //Setagem dos valores de Tzao if (count == 1) Tzao = 1/10; end if (count == 2) Tzao = 10/10; count_auxiliar = 1; end if (count == 3) Tzao = 15/10; count_auxiliar = 2; end if (count == 4) Tzao = 20/10; count_auxiliar = 3; end //comprimento dos vetores com as amostras de backward e forward. DeltaT/Tzao + o valor inicial comprimento = ((tmax-t0)/Tzao)+1; y_discreto_forward = zeros(1, comprimento); //Calcula-se o y posterior -[y(i+1)] com base no y atual [y(i)] através da função forward for i = 1:comprimento-1 y_discreto_forward(1,i+1) = forward(x,y_discreto_forward(i),Tzao,tao); end //Calcula-se o y atual [y(i)] com base no y anterior [y(i-1)] através da função forward y_discreto_backward = zeros(1, comprimento); for i = 2:comprimento y_discreto_backward(1,i) = backward(x,y_discreto_backward(i-1),Tzao,tao); end // razao entre o tzao e o step do t da funcao continua calculada pela ode. Utilizada para // os valores das aproximacoes de back e forwad na mesma escala temporal da f continua razao = Tzao/step; //Correspondencias das aproximacoes com elementos de t. Onde o primeiro valor é o t0 t_correspondente = 1:comprimento; t_correspondente(1,1) = t0; for i = 2:comprimento t_correspondente(1,i) = t(1,(i-1)*razao); end //Plot para a aproximacao por forward subplot(4,2,count+count_auxiliar); plot(2); title("Por Forward com Tzao = " + string(Tzao) ); xlabel("Tempo"); ylabel("y(tempo)"); plot(t,continua); // Para fazer com que cada y(n) seja plotado isolado, dando o efeito de movimento for i = 1:comprimento plot(t_correspondente(i),y_discreto_forward(1,i), 'ro-'); tempo = (60000/(comprimento*30)) sleep(tempo); end //Para inserir a linha que liga os y(n) plot(t_correspondente,y_discreto_forward, 'ro-'); sleep(500); //Plot para a aproximacao por backward subplot(4,2,count+1+count_auxiliar); plot(2); title("Por Backward com Tzao = " + string(Tzao) ); xlabel("Tempo"); ylabel("y(tempo)"); plot(t,continua); for i = 1:comprimento plot(t_correspondente(i),y_discreto_backward(1,i), 'ro-'); tempo = (60000/(comprimento*30)) sleep(tempo); end plot(t_correspondente,y_discreto_backward, 'ro-'); sleep(500); end
8b50e50260f89fa0f2c6654ed2291878fae38666
c557cd21994aaa23ea4fe68fa779dd8b3aac0381
/test/ignore.tst
777f6d9ffec028c95b7060c501180f6d857ed079
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
dougsong/reposurgeon
394001c0da4c3503bc8bae14935808ffd6f45657
ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b
refs/heads/master
2023-03-09T15:22:45.041046
2023-02-25T08:33:06
2023-02-25T08:33:06
280,299,498
1
0
NOASSERTION
2023-02-25T08:33:08
2020-07-17T01:45:32
Go
UTF-8
Scilab
false
false
85
tst
ignore.tst
## Test conversion of explicit ignore properties read <ignore.svn prefer git write -
e71c9343d02d9515e778bcdedb04da15f071d893
449d555969bfd7befe906877abab098c6e63a0e8
/167/CH9/EX9.10/ex10.sce
179ab6c1ff69adc03b0357587a3951a728605b24
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
WINDOWS-1252
Scilab
false
false
1,533
sce
ex10.sce
//ex10 //Second-Law Analysis of an Otto Cycle clear clc //In Example 9–2, various quantities of interest were given r=8;//constant ratio T0=290;//temp in K T1=290;//temp at state 1 in K T2=652.4;//temp at state 2 in K T3=1575.1;//temp at state 3 in K P2=179.97;//pressure at state 2 in kPa P3=434.5;//pressure at state 3 in kPa Qin=800;//heat input in kJ/kg Qout=381.83;//heat output in kJ/kg Wnet=418.17;//net work done in kJ/kg s3o=3.5045;//entropy at state 3 s2o=2.4975;//entropy at state 2 R=0.287;//gas constant at kJ/kg/mol/K s23=s3o-s2o-R*log(P3/P2);//entropy change for state 2 -3 kJ/kg.K Qin=800;//heat input in kJ/kg Tsource=1700;//source temperature in K xdest23=T0*(s23-Qin/Tsource);//irreversibilty for state 2 3 //For process 4-1, s14=-s23;//entropy change at state 1 4 Qout=381.83;//heat output in kJ/kg Tsink=290;//temp of sink in K xdest41=T0*(s14+Qout/Tsink);//irreversibility for state 4 1 xdest12=0;//irreversibilty for state 1 2 xdest34=0;//irreversibility at state 3 4 xdestcycle=xdest12+xdest23+xdest34+xdest41;//net irreversibility printf('Irreversibility of cycle = %.1f kJ/kg \n',xdestcycle); s40=-s14;//entropy change for state 4 0 in kJ/k/kg u40=Qout;//internal energy at state 4 0 in kJ/kg v40=0;//specific volume at state 40 in m^3/kg v41=0;//specific volume at state 41 in m^3/kg P0=10;//initial pressure in kPa(junk value as P0 is multiplied by zero in next statement) Q=u40-T0*s40+P0*v40;//heat in kJ/kg printf(' Exergy distruction = %.1f kJ/kg \n',Q);
fbc41a8fbd0dccea9f143a7fbaaa3b6d05adcb15
449d555969bfd7befe906877abab098c6e63a0e8
/104/CH8/EX8.10/8_10.sce
86c3eca4c87c05feb6aa4a2786a856facabe798f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
293
sce
8_10.sce
//intersection of root loci with real axis s=%s sys=syslin('c',1/(s*(s+3)*(s^2+2*s+2))) clf evans(sys) K=kpure(sys) disp(K,"value of K where RL crosses jw axis=") p=poly([K 6 8 5 1],'s','coeff') x=roots(p) x1=clean(x(1,1)) x2=clean(x(2,1)) disp(x2,x1,"crossover points on jw axis=")
77caeb5563c683ada1adccccd5d97e708a1dcebd
4bbc2bd7e905b75d38d36d8eefdf3e34ba805727
/ee_scicoslab/scicos_flex/dspic/macros/flex_blocks/FLEX-Communication/FLEX_canconfig.sci
bb9ca162ec59224adab5eba393035c9a59de6a2a
[]
no_license
mannychang/erika2_Scicos-FLEX
397be88001bdef59c0515652a365dbd645d60240
12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba
refs/heads/master
2021-02-08T17:01:20.857172
2012-07-10T12:18:28
2012-07-10T12:18:28
244,174,890
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,776
sci
FLEX_canconfig.sci
// FLEX_canconfig function [x,y,typ] = FLEX_canconfig(job,arg1,arg2) x=[];y=[];typ=[]; select job case 'plot' then exprs=arg1.graphics.exprs; can_msg_id_1 = exprs(1); can_msg_id_2 = exprs(2); can_msg_id_3 = exprs(3); can_msg_id_4 = exprs(4); can_msg_id_5 = exprs(5); standard_draw(arg1); case 'getinputs' then [x,y,typ]=standard_inputs(arg1); case 'getoutputs' then [x,y,typ]=standard_outputs(arg1); case 'getorigin' then [x,y]=standard_origin(arg1); case 'set' then x=arg1; model=arg1.model;graphics=arg1.graphics; exprs=graphics.exprs; while %t do [ok,.. can_msg_id_1,.. can_msg_id_2,.. can_msg_id_3,.. can_msg_id_4,.. can_msg_id_5,.. exprs]=.. getvalue('CAN configuration parameters:',.. ['MESSAGE 1 ID:';.. 'MESSAGE 2 ID';.. 'MESSAGE 3 ID:';.. 'MESSAGE 4 ID:';.. 'MESSAGE 5 ID:'],.. list('vec',1,'vec',1,'vec',1,'vec',1,'vec',1),exprs); if ~ok then break,end mywarn = 0; if(can_msg_id_1<0 | can_msg_id_1>4294967281) then warning('Accepted values for id are in [0,4294967281]. Keeping previous values.'); mywarn = mywarn+ 1; end if(can_msg_id_2<0 | can_msg_id_2>4294967281) then warning('Accepted values for id are in [0,4294967281]. Keeping previous values.'); mywarn = mywarn+ 1; end if(can_msg_id_3<0 | can_msg_id_3>4294967281) then warning('Accepted values for id are in [0,4294967281]. Keeping previous values.'); mywarn = mywarn+ 1; end if(can_msg_id_4<0 | can_msg_id_4>4294967281) then warning('Accepted values for id are in [0,4294967281]. Keeping previous values.'); mywarn = mywarn+ 1; end if(can_msg_id_5<0 | can_msg_id_5>4294967281) then warning('Accepted values for id are in [0,4294967281]. Keeping previous values.'); mywarn = mywarn+ 1; end if mywarn > 0 then break, end in = []; out = []; [model,graphics,ok]=check_io(model,graphics,in,out,1,[]); if ok then graphics.exprs=exprs; model.rpar=[]; model.ipar=[can_msg_id_1,.. can_msg_id_2,.. can_msg_id_3,.. can_msg_id_4,.. can_msg_id_5]; model.dstate=[]; x.graphics=graphics;x.model=model; break end end case 'define' then // Default values: can_msg_id_1 = 1; can_msg_id_2 = 2; can_msg_id_3 = 3; can_msg_id_4 = 4; can_msg_id_5 = 5; model=scicos_model(); model.sim=list('flex_can_config',4); model.in = []; model.out = []; model.evtin=1; model.rpar=[]; model.ipar=[can_msg_id_1,.. can_msg_id_2,.. can_msg_id_3,.. can_msg_id_4,.. can_msg_id_5]; model.dstate=[]; model.blocktype='d'; model.dep_ut=[%t %f]; exprs=[sci2exp(can_msg_id_1);.. sci2exp(can_msg_id_2);.. sci2exp(can_msg_id_3);.. sci2exp(can_msg_id_4);.. sci2exp(can_msg_id_5)]; gr_i=['xstringb(orig(1),orig(2),.. [''FLEX CAN Config'';.. ''MSG1 ID: ''+string(can_msg_id_1);.. ''MSG2 ID: ''+string(can_msg_id_2);.. ''MSG3 ID: ''+string(can_msg_id_3);.. ''MSG4 ID: ''+string(can_msg_id_4);.. ''MSG5 ID: ''+string(can_msg_id_5)],.. sz(1),sz(2),''fill'');']; x=standard_define([6 5],model,exprs,gr_i); end endfunction
eb0e4c454f1ee5de44e88361150ccfc86cb75363
449d555969bfd7befe906877abab098c6e63a0e8
/564/CH4/EX4.3/4_3.sce
f95995f20a1187d8d987d5f3ea43026d25636d53
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
155
sce
4_3.sce
pathname=get_absolute_file_path('4_3.sce') filename=pathname+filesep()+'4_3data.sci' exec(filename) Fba=Loadc*(CD/BD);//FBA printf("\nFBA: %f KN",Fba);
75a63153589397fa7e1228db4679d954c6212e23
f8bb2d5287f73944d0ae4a8ddb85a18b420ce288
/Scilab/machine-sliding-mode/seigi/比例到達速(4画面).sce
dcac0df5e4a580e3c118eb346745139d524954bd
[]
no_license
nishizumi-lab/sample
1a2eb3baf0139e9db99b0c515ac618eb2ed65ad2
fcdf07eb6d5c9ad9c6f5ea539046c334afffe8d2
refs/heads/master
2023-08-22T15:52:04.998574
2023-08-20T04:09:08
2023-08-20T04:09:08
248,222,555
8
20
null
2023-02-02T09:03:50
2020-03-18T12:14:34
C
UTF-8
Scilab
false
false
3,251
sce
比例到達速(4画面).sce
//------------------------------------------------ //■2013.12.14 秋山殿 // 比例到達則+対称化 //------------------------------------------------ //▼2自由度機械システムの定義 L=[1 0; 0 2]; //アクチュエータに加わる力を表す行列(正則行列) //L=[1 3; 0 0]; //アクチュエータに加わる力を表す行列(正則でない正方行列) m1=1; m2=1; //質量 k1=1; k2=2; //ばね定数 d1=1; d2=2; //減衰定数 M=[m1 0; 0 m2]; // K = [k1 -k1; -k1 k1+k2]; D = [d1 -d1; -d1 d1+d2]; AF = [zeros(2,2) eye(2,2); -M*K -M*D]; BF = [zeros(2,2); L ]; //▼比例到達速のパラメータ R=[6 0; 0 6]; Q=[0.5 0; 0 0.5]; //▼切換超平面Sの定義(設計済) //S1=[4 0; 0 3]; //(対称1) S1=[3 0; 0 4]; //(対称2) //S1=[1 2; -3 6]; //(非対称1) //S1=[2 2; -1 5]; //(非対称2) S2=[eye(2,2)] S = [S1 S2]; //▼マッチング条件を満たさない不確かさ //D = [0.2 0.4;0.1 0.2;0.1 0.15;0.3 0.2]; //マッチングを満たさない D = [zeros(2,2); L ]; //マッチングを満たす F=[1 1 1 1;1 1 1 1]; dA=D*F disp(dA) AF=AF+dA //不確かさをAに加える // 離散化システムの定義 h = 0.02; // サンプリング時間 cont = syslin('c',AF,BF,S); disc = dscr(cont,h); //▼状態変数の初期値 X=[5.5 7.0 8.5 10.0]'; // ▼コンソールでLG_d, LG_vが対称行列になっているか確認 F={L*inv(S*BF)*S*AF}; //F = L*pinv(L)*inv(S2)*(S*AF) disp(F); [A,B,Sd] = abcd(disc); // ▼シミュレーション lines(0) for i = 1:250; // 切換関数 sigma = S*X; // 等価制御入力(通常) U = -inv(S*BF)*{(S*AF*X)+Q*sign(sigma)+R*sigma}; // 等価制御入力(擬似逆行列) //U = -pinv(L)*inv(S2)*{(S*AF*X)+Q*sign(sigma)+R*sigma}; dX =A*X+B*U; // データの保存 Xh1(:,i) = X; Uh1(:,i) = U; // 弄った Sh1(:,i) = sigma;// 弄った X = dX; end clf() // ▼グラフの描画 tt =0:h:(i-1)*h; //▼第1象限:制御入力 scf(0); xset("wdim",850,600) xset("thickness",2) xset("font",1,4) plot(tt,Uh1(1,:),tt,Uh1(2,:)),xgrid(2) l=legend(["$u_1$";"$u_2$"],4); l.font_size = 5; xset("thickness",1) xlabel('Time','fontsize',5,'fontname','Times') ylabel('Control Input','fontsize',5,'fontname','Times') //▼第2象限:状態変数 scf(1); xset("wdim",850,600) xset("thickness",2) xset("font",1,4) plot(tt,Xh1(1,:),tt,Xh1(2,:),tt,Xh1(3,:),tt,Xh1(4,:)),xgrid(2) l=legend(["$x_1$";"$x_2$";"$x_3$";"$x_4$"],1); l.font_size = 5; xset("thickness",1) xlabel('Time','fontsize',5,'fontname','Times') ylabel('State Variable','fontsize',5,'fontname','Times') //▼第3象限:切換関数 scf(2); xset("wdim",850,600) xset("thickness",2) xset("font",1,4) plot(tt,Sh1),xgrid(2) l=legend(["$\sigma_1$";"$\sigma_2$"],1); l.font_size = 5; xset("thickness",1) xlabel('Time','fontsize',5,'fontname','Times') ylabel('Swiching Function','fontsize',5,'fontname','Times') //▼第4象限:位相平面 scf(3); xset("wdim",850,600) xset("thickness",2) xset("font",1,4) plot(Xh1(1,:),Xh1(3,:),Xh1(2,:),Xh1(4,:)),xgrid(2) l=legend(["$x_1, x_3$";"$x_2, x_4$"],2); l.font_size = 5; xset("thickness",1) xlabel('$x_1, x_2$','fontsize',6,'fontname','Times') ylabel('$x_3, x_4$','fontsize',6,'fontname','Times') clear tt Uh1 Xh1 Sh1;
92b568752b78e40596e8cfb47507abca52f6fd6a
194d4cafa290b2fdf3aa87e18ddadcfff70a70d8
/frrrrrr.sci
5f5a62aa53c19399234dcee5edaf39b515d2e60e
[]
no_license
KomalT/tryout60
cc43d4a5d96b5525e691a907c7ad8c7e61004a3c
ef4cc3e641a77c2cea565035cf033536d91e29ea
refs/heads/master
2016-08-12T19:05:56.548794
2016-05-02T06:15:37
2016-05-02T06:15:37
55,436,025
0
0
null
null
null
null
UTF-8
Scilab
false
false
292
sci
frrrrrr.sci
clc;clear; x=[0 1 2 3]; y=[0 1 4 9]; Z=[x;y]; //disp(Z) function y=datafit1(x,k) y=k*x^2; endfunction k=4; for i=1:1:4 yy(i)=datafit1(x(1,i),k); end //disp(yy) function e = G(k,z) x=z(1);y=z(2); e=y-datafit1(x,k); endfunction [k,err]=datafit(G,Z,k) disp(k)
a775321b6be687d94ab463717b48d7a3c14b2e2d
449d555969bfd7befe906877abab098c6e63a0e8
/1754/CH8/EX8.1/Exa8_1.sce
881a0dc6cd5b2549b6ac58b709abcfb8cfacc8aa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
195
sce
Exa8_1.sce
//Exa 8.1 clc; clear; close; //Given data A=50;//unitless disp("Barkhausen criterion for oscillator : Beta*A=1"); Beta=1/A;//unitless disp(Beta,"Feedback Factor to make oscillator : ");
9f195822ad2676c760456c32d6b37b9424526b7a
449d555969bfd7befe906877abab098c6e63a0e8
/323/CH7/EX7.19/ex7_19.sci
8e78b9cc19234fac8d35d65d95825df884bf252c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
555
sci
ex7_19.sci
//Chapter7.19,Ex7.19,Pg7.33 clc; Vrms=40 Rf=1 //Diode forward resistance in ohms Rl=19 //load resistance Vm=sqrt(2)*Vrms printf("\n Vm=%.2f V \n",Vm) Im=Vm/(Rf+Rl) Idc=(2*Im)/%pi printf("\n Idc=%.1f A \n",Idc) Pdc=(Idc^2)*Rl printf("\n DC load power=%.1f W \n",Pdc) Pac=((Im/sqrt(2))^2)*(Rf+Rl) printf("\n Pac=%.2f W \n",Pac) n=(Pdc/Pac)*100 printf("\n Efficiency=%.2f percent \n",n) Vnl=(2*Vm)/%pi Vfl=Idc*Rl printf("\n Vfl=%.1f V \n",Vfl) percentreg=((Vnl-Vfl)/Vnl)*100 printf("\n Percentage Regulation=%.2f percent \n",percentreg)
ccf3a8b21dc047b9345cea8c2a801292767d931a
717ddeb7e700373742c617a95e25a2376565112c
/278/CH9/EX9.9/ex_9_9.sce
8125d075e9c996171fc1804f7263500fcbf5f93b
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
1,562
sce
ex_9_9.sce
//desing longitudinal joint clc //soltuion //given D=1250//mm P=2.5//N/mm^2 ftu=420//N/mm^2 fcu=650//N/mm^2 Tu=300//N/mm^2 eff=0.8 Fs=5//factor of safety pi=3.14 ft=ftu/Fs fc=fcu/Fs T=Tu/Fs t=P*D/(2*ft*eff)//mm//thickness of plate d=6*sqrt(t)//mm//DIA //Pt=(p-d)*t*ft=(p-31.5)*2100//N//tearing resistance of plate Ps=4*1.875*(pi/4)*d^2*T+(pi/4)*d^2*T//=8.5*(pi/4)*d^2*T//N//shearing resistance of rivet//N//shearing resistance of rivet //Pt=Ps //p-31.5=(397500/2100) //p=31.5+(397500/2100)//mm //pmax=C*t+41.28//mm=196mm //since p>pmax,therefore //p=pmax p=196//mm p'=196/2//mm d1=0.2*p+1.15*d//mm//diatnce between outtr and row and next row d2=0.165*p+0.67*d//mm//distance ebtween inner row for zigzag riveting t1=0.75*t//mm//thickness of wide strap t2=0.625*t//mm//thickness of narrow strap m=1.5*d//mm//margin Pt=(p-d)*t*ft//(p-31.5)*2100//N Pc=5*d*t*fc//N//crushing resistance of rivet P=p*t*ft//N//strength of the unriveted //joint may also fail due to combine teARING AND shearing reistance Pts=(p-2*d)*t*ft+(pi/4)*d^2*T//N printf("the value of forces calculted are,%f N\n,%f N\n,%f N\n",Pt,Pc,Pts) //eff=(least of Pt,Pc,Pts)/P eff=Pts/P//least is Ps printf("the eff is,%f\n",eff) printf("the pitch is,%f mm\n",p) printf("the thickness of wide strap is,%f mm\n",t1) printf("the thickness of narrow strap is,%f mm\n",t2) printf("the diameter of rivets is,%f mm",d) printf("the margine s,%f mm\n",m) printf("the distance btw outer and next row is,%f mm\n",d1) printf("the distance btw inner rows is,%f mm\n",d2)
16beb0ffaa8ee211bbdab5855805e050a5e30608
0e1b45c07f0938ba9c8a003d6ae1cf2d8315efdb
/acmp.ru/356, Копилка/c++/test-01.tst
11f659d6fa378cda03e4d6bb03831e7a393bab54
[]
no_license
Kot-Angens/acm
c85d8582c3e84f218415321743864b9680e01f2e
05472eaa0fff7abb6679826085da5e0c990df4cb
refs/heads/master
2021-01-24T22:36:05.159612
2012-10-02T13:51:56
2012-10-02T13:51:56
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
53
tst
test-01.tst
1000 1010 2 6 3 2 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~ 10 16
291cbb8c9a2d86467ca21415a137c18b0114cc95
449d555969bfd7befe906877abab098c6e63a0e8
/2939/CH1/EX1.12/Ex1_12.sce
5f0b5068dbba17f573aa061ed34da19f634f00d6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
375
sce
Ex1_12.sce
//Ex1_12 clc; //Given: mh=1.0078; mn=1.0087; ABe=8.0053; // atomic mass of beryllium //solution: B1=(4*mh+4*mn-ABe)*931; // in MeV Bh=B1/ABe; printf("\n The mean binding energy of Be atom in MeV is = %f ",Bh) disp("From previous problem we have the avg. binding energy of helium atom is 7.08 MeV, Hence Be is unstable to fission into 2 alphas")
845ea503e74f4bbd7bee34b81eb102f4107ce764
4b3c8d2302d37ad5981adb6f68fae3db1d9820c8
/add_Hemlets.sce
f1733a50b7b8bc92253c5b94bf5f76f86190eb73
[]
no_license
mayank1513/littleBird_RD_ResourceManagementSystem
002d19579b3b55a314450ec75d2874131741564b
090d016248164580defc9b4629ba54c9dc362949
refs/heads/master
2020-03-15T04:48:31.637752
2018-05-03T09:46:53
2018-05-03T09:46:53
131,970,842
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,041
sce
add_Hemlets.sce
blkInd = get('blockList','Value'); vilInd = get('villageList','Value'); str = get(get('edit_hemletList'),"String"); for i = 1:size(str,2)-1 str(i) = stripblanks(part(str(i),1:$-1)); end str($) = stripblanks(str($)); if isempty(blkInd)|isempty(vilInd) then messagebox("Select a block and village first","littleBird"); else addblk_msgStr = []; for i = 1:size(str,2) if isempty(str(i)) then continue; end if ~isempty(find(blocks(2)(blkInd)(2)(vilInd)==str(i))) then addblk_msgStr($+1) = str(i); continue; end //blocks(1 or 2)(block ind)(1 or 2)(vill ind) [blocks(2)(blkInd)(2)(vilInd), ind] = insertName(blocks(2)(blkInd)(2)(vilInd),str(i)); end set(get('hemletList'),'String',blocks(2)(blkInd)(2)(vilInd)); if ~isempty(addblk_msgStr) then messagebox(addblk_msgStr + " already exists in the list!", "littleBird: Duplicate entries ignored!!!","info"); end set(get('edit_hemletList'),"String",""); end
4a3451fa9036f82eba8672a3b909d5f537f1f66b
449d555969bfd7befe906877abab098c6e63a0e8
/788/CH3/EX3.3.a/3_3_data.sci
81f71df0d0a3430141a69ee9f5534611e6631a19
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
189
sci
3_3_data.sci
// Aim: Refer Example 3-3 for Problem Description // Given: // Load to be raised: F=3000; //lb // Distance: S=50; //ft // time required: t=10; //s //efficiency of the system: eta=80; //%
80a760b4ce64a90c0405c807c94b999d9c1b7735
ebd6f68d47e192da7f81c528312358cfe8052c8d
/swig/Examples/test-suite/scilab/scilab_identifier_name_runme.sci
9a4f3cc082c1bc6aec593f97192353f875d8529e
[ "LicenseRef-scancode-swig", "GPL-3.0-or-later", "LicenseRef-scancode-unknown-license-reference", "GPL-3.0-only", "Apache-2.0" ]
permissive
inishchith/DeepSpeech
965ad34d69eb4d150ddf996d30d02a1b29c97d25
dcb7c716bc794d7690d96ed40179ed1996968a41
refs/heads/master
2021-01-16T16:16:05.282278
2020-05-19T08:00:33
2020-05-19T08:00:33
243,180,319
1
0
Apache-2.0
2020-02-26T05:54:51
2020-02-26T05:54:50
null
UTF-8
Scilab
false
false
1,166
sci
scilab_identifier_name_runme.sci
exec("swigtest.start", -1); // Test truncating variables, constants, functions identifier names // not truncated gvar_identifier_name_set(-101); checkequal(gvar_identifier_name_get(), -101, "gvar_identifier_name_get()"); checkequal(CONS_IDENTIFIER_NAME_get(), -11, "CONS_IDENTIFIER_NAME_get()"); checkequal(function_identifier_name(), -21, "function_identifier_name()"); // truncated too_long_gvar_identi_set(101); checkequal(too_long_gvar_identi_get(), 101, "too_long_variable_id_get()"); checkequal(TOO_LONG_CONST_IDENT_get(), 11, "TOO_LONG_CONST_IDENT_get()"); checkequal(too_long_function_identi(), 21, "too_long_function_identi()"); // Test truncating when %scilabconst mode is activated checkequal(SC_CONST_IDENTIFIER_NAME, int32(-12), "SC_TOO_LONG_IDENTIF"); checkequal(SC_TOO_LONG_CONST_IDENTI, int32(14), "SC_TOO_LONG_IDENTIF"); // Test truncating in the case of struct st = new_st(); st_m_identifier_name_set(st, 15); checkequal(st_m_identifier_name_get(st), 15, "st_m_identifier_name_get(st)"); st_too_long_member_i_set(st, 25); checkequal(st_too_long_member_i_get(st), 25, "st_too_long_member_i_get(st)"); delete_st(st); exec("swigtest.quit", -1);
989a194624438198b2ec0e094fbe1009c0bdb08b
06a62d768e69fd9dda11b30011c252807e301813
/ml_sinh.sci
03eef99b55ccb1c10f76ba27cbd0b22fa67f144d
[]
no_license
vikram-niit/matlab
36ce3d9539629128251eab060164ce81c03aa690
da8aeb4d727c47474d37676650664bd028d7e41d
refs/heads/master
2020-03-18T13:40:37.068765
2018-05-25T03:51:55
2018-05-25T03:51:55
134,800,217
0
0
null
null
null
null
UTF-8
Scilab
false
false
755
sci
ml_sinh.sci
function [sinhVal] = ml_sinh(x,n) // Template file for Assignment-2 // Compute approximation of cos(x) using MacLaurin // Series upto the n-th order term (x^n/n!) // ----- DO NOT EDIT THIS PART OF THE CODE ----- numerator = x.^[1:n]; denom = cumprod(1:n); vec = [1, numerator./denom]; // ----- DO NOT EDIT ANYTHING ABOVE THIS LINE ----- // PLEASE USE "vec" for your further calculations // ---- YOU MAY START EDITING THE FUNCTION NOW ---- i = 1:n; vec2 = [1, (-1).^i.*numerator./denom]; sinhVal = (cumsum(vec) - cumsum(vec2))/2 ; trueValue = sinh(x); error = trueValue - sinhVal(n); disp(error); disp(trueValue); disp(sinhVal(4)); end
a27c2de5f8f88a38a167f2f697f7b77ff93ad7fb
449d555969bfd7befe906877abab098c6e63a0e8
/3682/CH2/EX2.1/Ex2_1.sce
9e450dd8e60b10fbda3b90ab77cdf073d716931f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
555
sce
Ex2_1.sce
// Exa 2.1 clc; clear; // Given data // An amplifier( Refer Fig. 2.5(a) ) Acl = -10; // Closed loop gain Ri = 10 * 10^3; // Input resistance of amplifier(Ω) // Solution // Since it is mentioned to design an amplifier, it means to calculate values for Rf(Feedback resistance) and R1. disp("Referring Fig. 2.5(a), we choose R1 as 10 kΩ i.e equal to input resistance of amplifier."); R1 = Ri; // Acl = -1 * Rf/R1; // Therefore; Rf= - Acl * Ri; printf(' The calculated value of Rf(Feedback resistane) is Rf = %d kΩ. \n',Rf/1000);
eba5cc2c26629f7aa04e808ce0339142ff487f97
449d555969bfd7befe906877abab098c6e63a0e8
/476/CH1/EX1.6/Example_1_6.sce
e677e2ab892f91bd22dda172f88b711fa86b6f99
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
479
sce
Example_1_6.sce
//A Textbook of Chemical Engineering Thermodynamics //Chapter 1 //Introduction and Basic Concepts //Example 6 clear; clc; //Given: //P/D = constant, where P is pressure and D is diameter //P =(2*10^5)*D Df = 2.5; //final diameter (m) Di = 0.5; //initial diameter(m) //To determine work done by gas //Work done = integral(PdV) //W = intg((2*10^5*D)d(pi/6)(D^3))....that is W = (%pi/4)*10^5*((Df^4)-Di^4); mprintf('Work done by gas is %6.4e J',W); //end
bc6f5d7cf8089fcb7c7f68a3bdf256dad8df7e37
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH2/EX2.4/Ex2_4.sce
446898ceb58a85e03088fb2ef4e7a9465f39a201
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
501
sce
Ex2_4.sce
//Initilization of variables Fx=68.7 //N Fy=22.9 //N Fz=-68.7 //N rx=2 //m ry=0 //m rz=4 //m rx1=5 //m ry1=1 //m rz1=1 //m //Calculation Mx=Fz*ry-Fy*rz //N-m My=-(Fz*rx-Fx*rz) //N-m Mz=Fy*rx-Fx*ry //N-m Mx1=Fz*ry1-Fy*rz1 //N-m My1=-(Fz*rx1-Fx*rz1) //N-m Mz1=Fy*rx1-Fx*ry1 //N-m //Result clc printf('Moment with respect to origin using point(2,0,4):%fi+%fj+%fk N.m\n',Mx,My,Mz) //N-m printf('Moment with respect to origin using point (5,1,1):%fi+%fj+%fk N.m \n',Mx1,My1,Mz1) //N-m
ab32a0573bf19956ed91f68e0068aee3bd3c580a
449d555969bfd7befe906877abab098c6e63a0e8
/575/CH4/EX4.2.3/4_2_3.sce
564f1c19e6084912d0ad5fd81d50c947afba4129
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
384
sce
4_2_3.sce
clc pathname=get_absolute_file_path('4_2_3.sce') filename=pathname+filesep()+'423.sci' exec(filename) printf(" All the values in the textbook are Approximated hence the values in this code differ from those of Textbook") m=m1+m2 printf(" \n Total mass after mixing m=%d g",m) x=(m1*x1 + m2*x2)/m printf(" \n The composition of the methanol in the product is %f and water is %f",x,1-x)
7ce2b05cc96658ce481e654e0ab0bf663ddba170
449d555969bfd7befe906877abab098c6e63a0e8
/2141/CH9/EX9.6/Ex9_6.sce
6f1dd3496d8071e4119ca18c869287d465ab1665
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
322
sce
Ex9_6.sce
clc //initialisation of variables h1=77.271 s1=0.16888 p2=132.86 h2=90.306 Wc=h2-h1 h4=31.100 r=200//lbm/hr T=12000//Btu //CALCULATIONS qL=h1-h4//Btu/lbm beta=qL/Wc //Btu/lbm Capacity=qL*r/T//tons //RESULTS printf('The coefficient of performance and the capacity of the plant in tons =%f tons',Capacity)
bdf8d8f8bc8ffc54112f8ed1374d5484b1e24fbf
449d555969bfd7befe906877abab098c6e63a0e8
/2606/CH4/EX4.13/ex4_13.sce
e2ef21e3a5630a121c90621b77d08763dac0b1af
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
315
sce
ex4_13.sce
//Page Number: 4.16 //Example 4.13 clc; //Given //x(t)=10cos((2*pi*10^8*t)+(200cos(2*pi*10^3*t))) //on differentiating //wi=2*pi*(1D+8)-4*pi*sin(2*pi*(1D+3)*t) //Therefore delw=4*%pi*(1D+5); wm=2*%pi*(1D+3); B=delw/wm; wb=2*(B+1)*wm; fb=wb/2*%pi; disp("rad/s",wb, "Wb"); disp("Hz",fb, "Fb");
e2132af7e1dc281d41592ce651db1231687f394e
449d555969bfd7befe906877abab098c6e63a0e8
/389/CH7/EX7.15/Example7_15.sce
bbfab304abca79c055cf5abfddb797dc21bb7572
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,405
sce
Example7_15.sce
clear; clc; // Illustration 7.15 // Page: 267 printf('Illustration 7.15 - Page: 267\n\n'); // solution //***Data***// w = 0.75;// [m] OD = 19.05/1000;// [m] l = 3.75;// [m] n = 20; t = 1.65/1000;// [m] Ws = 2.3;// [kg/s] Wal = 10;// [kg/s] Wt = 4;// [kg/s] Density = 800;// [kg/cubic m] viscocity = 0.005;// [kg/m.s] K = 0.1436;// [W/m.K] Ct = 2010;// [J/kg.K] Cal = 4187;// [J/kg.K] Y1_prime = 0.01;// [kg H2O/kg dry air] Y2_prime = 0.06;// [kg H2O/kg dry air] TempT = 95;// [OC] //*****// Free_area = (w-(n*OD))*l;// [square m] Gs_min = 2.3/Free_area;// [kg/square m.s] Yav_prime = (Y1_prime+Y2_prime)/2;// [kg H2O/kg dry air] // From Eqn. 7.86: ky = 0.0493*(Gs_min*(1+Yav_prime))^0.905;// [kg/square m.s.delta_Y_prime] // From Fig. 7.5: H1_prime = 56000;// [J/kg] Ao = 400*%pi*OD*l;// [square m] // Cooling water is distributed over 40 tubes & since tubes are staggered geta = Wal/(40*2*l);// [kg/m.s] geta_by_OD = geta/OD;// [kg/square m.s] // Assume: TempL = 28;// [OC] // From Eqn. 7.84: hL_prime = (982+(15.58*TempL))*(geta_by_OD^(1/3));// [W/square m.K] // From Eqn. 7.85: hL_dprime = 11360;// [W/square m.K] // From Fig. 7.5 (Pg 232) m = 5000;// [J/kg.K] Ky = 1/((1/ky)+(m/hL_dprime)); ID = (OD-(2*t));// [m] Ai = %pi*(ID^2)/4;// [square m] Gt_prime = Wt/(n*Ai);// [kg/square m.s] Re = ID*Gt_prime/viscocity; Pr = Ct*viscocity/K; // From a standard correlation: hT = 364;// [W/square m.K] Dav = (ID+OD)/2;// [m] Zm = (OD-ID)/2;// [m] Km = 112.5;// [W/m.K] // From Eqn. 7.67: Uo = 1/((OD/(ID*hT))+((OD/Dav)*(Zm/Km))+(1/hL_prime));// [W/square m.K] // From Eqn. 7.75: alpha1 = -(((Uo*Ao)/(Wt*Ct))+((Uo*Ao)/(Wal*Cal))); alpha2 = m*Uo*Ao/(Wt*Ct); // From Eqn. 7.76: beeta1 = Ky*Ao/(Wal*Cal); beeta2 = -((m*Ky*Ao/(Wal*Cal))-(Ky*Ao/Ws)); y = deff('[y] = f26(r)','y = (r^2)+((alpha1+beeta2)*r)+((alpha1*beeta2)-(alpha2*beeta1))'); r1 = fsolve(10,f26); r2 = fsolve(0,f26); beeta2 = 1.402; // From Eqn. 7.83: // N1-(M1*(r1+alpha1)/beeta1) = 0............................................(1) // N2-(M2*(r2+alpha2)/beeta2) = 0............................................(2) // From Eqn. 7.77: // At the top: x1 = 1; // TempL2+(M1*exp(r1*x1))+(M2*exp(-(r2*x1))) = TempL.........................(3) // From Eqn. 7.78: // At the bottom: x2 = 0; // H1_star-N1-N2 = H1_prime..................................................(4) // From Eqn. 7.80: // ((M1/r1)*(exp(r1)-1))+((M2*r2)*(exp(r2)-1)) = (Tempt-TempL)...............(5) // From Eqn. 7.81: // ((N1/r1)*(exp(r1)-1))+((N2*r2)*(exp(r2)-1)) = (H1_star-H1_prime)..........(6) // From Eqn. 7.91 & Eqn. 7.92: // Uo*Ao*(TempT-TempL)=Ky*Ao*(H1_star-H1_prime)..............................(7) // Elimination of M's & N's by solving Eqn. (1) to (4) and (7) simultaneously: // and from Fig. 7.5 (Pg 232): TempL1=28;// [OC] H1_star=(Uo*Ao*(TempT-TempL)/(Ky*Ao))+H1_prime;// [J/kmol] // Solving (1) to (4) simultaneously: a = [1 -(r1+alpha1)/beeta1 0 0;0 0 1 -(r2+alpha1)/beeta1;0 exp(r1*x1) 0 exp(r2*x1);1 0 1 0]; b = [0;0;TempT-TempL1;H1_star-H1_prime]; soln = a\b; N1 = soln(1); M1 = soln(2); N2 = soln(3); M2 = soln(4); // By Eqn. 5 delta_Temp = ((M1/r1)*(exp(r1)-1))+((M2*r2)*(exp(r2)-1));// [OC] Q = Uo*delta_Temp*Ao; TempT1 = TempT-(Q/(Wt*Ct));// [OC] H2_prime = Q/(Ws)+H1_prime;// [J/kg] printf("Temparature to which oil was cooled: %f OC\n",TempT1);
17d1bea8c98a94843d2a4377e961e6e33927e2e7
e4657d526ddb006886c9fca8229ddb7dc9b6c6cf
/two/Sub2.tst
523a5a63485afa77c25191f9f6bceafb860d638f
[]
no_license
marcusshepp/computer_arch
14cfcf65c13a5db1c2255a011a743601a55ac4cb
564dd2bcf32e7791b33e5ff41a3ec63e08b2b69e
refs/heads/master
2021-01-10T07:54:53.011805
2016-04-16T22:37:38
2016-04-16T22:37:38
43,556,935
1
0
null
null
null
null
UTF-8
Scilab
false
false
808
tst
Sub2.tst
load Sub2.hdl, output-file Sub2.out, compare-to Sub2.cmp, output-list x%B3.2.3 y%B3.2.3 out%B3.2.3; set x %B00, set y %B00, eval, output; set x %B00, set y %B01, eval, output; set x %B00, set y %B10, eval, output; set x %B00, set y %B11, eval, output; set x %B01, set y %B00, eval, output; set x %B01, set y %B01, eval, output; set x %B01, set y %B10, eval, output; set x %B01, set y %B11, eval, output; set x %B10, set y %B00, eval, output; set x %B10, set y %B01, eval, output; set x %B10, set y %B10, eval, output; set x %B10, set y %B11, eval, output; set x %B11, set y %B00, eval, output; set x %B11, set y %B01, eval, output; set x %B11, set y %B10, eval, output; set x %B11, set y %B11, eval, output;
d4faa95b2ad9dcce54e4d0571775dbf6f92d7897
d1d50d0e28187ba6034dbcc740aaa20488408d12
/Tests/wavegen_test.tst
32f030e57be39617a68a47c076eddaef1aca0337
[]
no_license
sunspec/svp_energy_lab
54cb4357202d3d1110a2d565067e7080312f5dc3
4937ce7509a0d027e54f44edd4e4568242e17419
refs/heads/master
2023-04-29T09:34:53.506932
2021-01-23T00:14:57
2021-01-23T00:14:57
85,247,070
10
18
null
2022-01-18T01:03:33
2017-03-16T22:27:53
Python
UTF-8
Scilab
false
false
310
tst
wavegen_test.tst
<scriptConfig name="wavegen_test" script="wavegen_test"> <params> <param name="wavegen.awg400.ip_addr" type="string">192.168.0.10</param> <param name="wavegen.awg400.comm" type="string">Network</param> <param name="wavegen.mode" type="string">Tektronix AWG400</param> </params> </scriptConfig>
386f1cfcd66efb722af5e23c4c7a277ce7946397
d465fcea94a1198464d7f8a912244e8a6dcf41f9
/system/kiks_save.sci
8bb1d5dc81990b1db64b528614f73ced26a1cc43
[]
no_license
manasdas17/kiks-scilab
4f4064ed7619cad9e2117a6c0040a51056c938ee
37dc68914547c9d0f423008d44e973ba296de67b
refs/heads/master
2021-01-15T14:18:21.918789
2009-05-11T05:43:11
2009-05-11T05:43:11
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,473
sci
kiks_save.sci
function [] = kiks_save() // Display mode mode(0); // Display warning for floating point exception ieee(1); // !! L.3: Matlab function uiputfile not yet converted, original calling sequence used [filename,pathname] = uiputfile(makecell([1,1],"*.kad"),"Save arena"); if max(size(mtlb_double(filename)))>1 then arena = [pathname,filename]; // L.7: No equivalent for findstr() in Scilab so mtlb_findstr() is called if isempty(mtlb_findstr(mtlb_lower([pathname,filename]),".kad")) then arena = arena+".kad"; end; //imwrite(uint8(KIKS_ARENA_COLORMASK_ORIG),arena,''TIFF''); //if isempty(KIKS_ARENA_WALLS) // walls=kiks_generate_wall_polygons(KIKS_ARENA_COLORMASK_ORIG); //else // walls=KIKS_ARENA_WALLS; //end; walls = kiks_arena_walls(); savematfile(arena,"walls","-MAT"); // !! L.18: Matlab function sprintf not yet converted, original calling sequence used // !! L.18: Unknown function kiks_status not converted, original calling sequence used kiks_status(sprintf("Saved arena to %s\n",arena)); end; //function kiks_save //global KIKS_ARENA_MASK_ORIG KIKS_ARENA_COLORMASK_ORIG //[filename,pathname] = uiputfile((makecell([cell(),''*.tif''])),''Choose arena file to open''); //if length(filename)>1 // arena = [pathname filename]; // if isempty(findstr(lower([pathname filename]),''.tif'')) // arena = [arena ''.tif'']; // end; // imwrite(uint8(KIKS_ARENA_COLORMASK_ORIG),arena,''TIFF''); //end; endfunction
5d1ef2945438694617de37711a2b72936632f9bd
449d555969bfd7befe906877abab098c6e63a0e8
/2495/CH8/EX8.18.12/Ex8_18_12.sce
4aa9383ecbf90e55d94113c97581b600238e8d33
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
420
sce
Ex8_18_12.sce
clear clc E1=0.222;//in V E2=0.095;//in v E=(E1-E2);//in V n=1;// F=96500;//in C/mol R=8.314;//in J/Kmol T=298;//in K Keq=10^((n*F*E)/(2.303*R*T));//equilibrium constant printf('Keq=%.1f',Keq) X=(Keq*0.1)/(1+Keq);//in moldm^3 printf('\nX=%.6f moldm^3',X) Y=0.1-X;//in moldm^3 printf('\nY=%.6f moldm^3',Y) //error in the solution //There are some errors in the solution given in textbook //page 487
6a6dae50f1307b50184d283a552586e88f458970
449d555969bfd7befe906877abab098c6e63a0e8
/3169/CH8/EX8.2/Ex8_2.sce
cd580b017ac3b4e418dacfa77d0094ec8f514b4a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
457
sce
Ex8_2.sce
//developed in windows XP operating system //platform Scilab 5.4.1 clc;clear all; //example 8.2 //calculation of the voltage build up at the junction //given data Z1=500//surge impedance(in ohm) of transmission line Z2=60//surge impedance(in ohm) of cable e=500//value of surge(in kV) //calculation tau=(Z1-Z2)/(Z2+Z1)//coefficient of reflection Vj=(1+tau)*e printf('The value of the voltage build up at the junction is %d kV',round(Vj))
e8d71cd2431eebae19199539665b563ef0e1c314
449d555969bfd7befe906877abab098c6e63a0e8
/1436/CH3/EX3.9/ex3_9.sce
0a12a5390d585781fa8e5b8069dd38e97abcba80
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
116
sce
ex3_9.sce
// Example 3.9, page no-167 clear clc rpm=1500 f=200 N=60*f/rpm printf("No of teeth on the wheel\nN=%d",N)
256887e8d637c06442f6a664eda79484de561c72
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.2/macros/scicos/mkvect.sci
3ec3cc4bc37956cc5f28ee17b9a6159d2e33edf6
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
174
sci
mkvect.sci
function out=mkvect(in) // Computes pointer vector with the number of elements as input. // Ex: [1 2 3] gives [1 2 4 7] as output out=rtitr(poly(1,'z','c'),poly(1,'z'),in)+1
50107638797dab611489f700a042abde89426357
449d555969bfd7befe906877abab098c6e63a0e8
/2360/CH5/EX5.11/ex5_11.sce
af7aa69b235d43bd6755e89ca2cd4e458679697d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
732
sce
ex5_11.sce
// Exa 5.11 format('v',7);clc;clear;close; // Given data R1 = 1000;// in ohm R2 = 100;// in ohm R3 = 4;// in k ohm R3 = R3*10^3;// in ohm //At bridge balance, R1*R3 = R2*R4; R4 = (R1*R3)/R2;// in ohm R4= R4*10^-3;//maximum unknown resistance in k ohm disp(R4,"The maximum unknown resistance in kΩ is"); R4= R4*10^3;// in ohm R_TH = ((R1*R2)/(R1+R2)) + ((R3*R4)/(R3+R4));// in ohm Si = 70;// in mm/µA Si = Si * 10^6;// in mm/A theta = 3;// in mm E = 10;// in V Rg = 80;// in ohm // theta = (Si*E*R3*del_R)/((R_TH+Rg)*((R3+R4)^2)); del_R = (theta*((R_TH+Rg)*((R3+R4)^2)))/(Si*E*R3);// in ohm disp(del_R,"The value of del_R in Ω is : ") disp("This much unbalance is necessary to cause the deflection of 3 mm")
f90583eeb7894c5b2cbe8c01bb8eff7d2e3232c8
449d555969bfd7befe906877abab098c6e63a0e8
/3774/CH8/EX8.11/Ex8_11.sce
c4de41f3b544130747457e67ba285bcf873e6cfd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,193
sce
Ex8_11.sce
// exa 8.11 Pg 236 clc;clear;close; // Given Data dv=100;//mm C=5.5;// spring index pi=1;// N/mm.sq. p=1.075;// N/mm.sq. del=6;// mm tau_max=400;// N/mm.sq. G=80;// kN/mm.sq. Fi=(%pi/4)*dv**2*pi;// N (initial tension in spring) printf('\n initial tension in spring = %.f N', Fi) F=(%pi/4)*dv**2*p;// N (maximum tension in spring) printf('\n maximum tension in spring = %.f N', F) k=(F-Fi)/del;// N/mm (stiffness of spring) printf('\n stiffness of spring = %.2f N/mm',k) //Tmax=F*Dm/2 where Dm=5.5*d Tmax_BY_d=F*5.5/2;// calculation //Tmax=(%pi/16)*d**3*tau_max d=sqrt(Tmax_BY_d/((%pi/16)*tau_max));// mm printf('\n diameter of spring = %.2f mm. Use 18 mm.',d) d=ceil(d);// mm (rounding) Dm=5.5*d;//mm printf('\n mean coil diameter = %.f mm',Dm) Do=Dm+d;//mm printf('\n outside coil diameter = %.f mm',Do) Di=Dm-d;// mm printf('\n initial coil diameter = %.f mm',Di) n=G*10**3*d*del/8/(F-Fi)/C**3;// no. of turns printf('\n no. of turns = %.f',n) nt=n+1;// total no. of turns printf('\n total no. of turns(for extension spring) = %.f',nt) gi=1;// mm (initial gap) lf=nt*d+(nt-1)*gi;// mm printf('\n free length of spring = %.f mm',lf) p=lf/(nt-1);//mm printf('\n pitch of coils = %.2f mm',p)
cba107a26d79567f9a9b09d426a43131792d8faf
449d555969bfd7befe906877abab098c6e63a0e8
/2642/CH5/EX5.2/Ex5_2.sce
580dcc0de180a50a11a573dacc37e32c7e76e650
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
897
sce
Ex5_2.sce
// FUNDAMENTALS OF ELECTICAL MACHINES // M.A.SALAM // NAROSA PUBLISHING HOUSE // SECOND EDITION // Chapter 5 : DIRECT CURRENT MOTORS // Example : 5.2 clc;clear; // clears the console and command history // Given data I = 20 // total current in A V_t = 250; // supply voltage in volt R_sh = 200; // shunt field resistance in Ω R_a = 0.3; // armature resistance in Ω // caclulations I_sh = V_t/R_sh; // shunt field current in A I_a = I-I_sh' // armature current E_b = V_t - R_a*I_a; // the back emf in V P_md = E_b*I_a; // mechanical power developed in W // display the result disp("Example 5.2 solution"); printf("\n The back emf is \n E_b = %.1f V \n\n",E_b ); printf(" \n Mechanical power developed is \n P_md = %.1f W" ,P_md ); printf(" \n NOTE : error in calculation they has taken I_a=18.13, instead of I_a=18.75");
b81c4bfad7dd0230d0b13d92e4f388b412931f74
be96e52def8294f354d9eb84ba5fd00c3306a984
/Templates/ImportTemplate.tst
ccd59f59625d7cb0b9aa15c902f99b4ccfce32de
[ "MIT" ]
permissive
FuryTechs/FuryTech.OdataTypescriptServiceGenerator
e6177564000a74e38e34bf82bd311a8d075b2a33
234c226ebe8a2faeb4f4661d2acca7bbeeb54e95
refs/heads/master
2023-04-28T06:05:05.934471
2023-04-18T05:34:27
2023-04-18T05:34:27
76,648,222
18
11
MIT
2023-04-18T05:34:28
2016-12-16T11:22:28
TypeScript
UTF-8
Scilab
false
false
52
tst
ImportTemplate.tst
import { $moduleNames$ } from '$relativePaths$';
6a259902a8ccbded8515472856012f8b07278700
1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08
/Scilab/SparamUtilities/XtalkChecker/XtalkChecker_v0.3.sce
7d8b31df43bd0a15a0ab0afd077f7f9a33552d4c
[]
no_license
lrayzman/SI-Scripts
5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d
9ab161c6deff2a27c9da906e37aa68964fabb036
refs/heads/master
2020-09-25T16:23:23.389526
2020-02-09T02:13:46
2020-02-09T02:13:46
66,975,754
0
0
null
null
null
null
UTF-8
Scilab
false
false
20,588
sce
XtalkChecker_v0.3.sce
//========================== Xtalk Checker =========================== // // General xtalk checker // // (c)2015 L. Rayzman // // // Created : // Last Update : 10/13/15 -- Added support for renormalization // // // TODO: Currently a simple test case for point-to-point. Some ideas for future // - Extend with some sort of simulation descriptor tool // - // // ==================================================================== // ==================================================================== clear; stacksize(200*1024*1024); exec("XtalkChecker_Utilities_v0.7.sci"); // Supporting functions/includes ////////////////////////////////// SPECIFY ///////////////////////////////// max_freq_for_FOM=10e9; // Maximum frequency boundary for computing the FOM xtalk_max_len=1; // Maximum number of xtalk elements to be saved trf_edge=100e-12; // Filter edge rate spZ0_renorm=50; // Set environment impedance /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // // THINGS FOR TOUCHSTONE FILES // frefsparam = emptystr(); // Filename of inputfile // // THINGS FOR SPARAM DATA // spreffreqs=[]; // Inputfile frequency points vector sprefdata=[]; // Inputfile S-param matrix data spcomments=[]; // Inputfile comments spZ0=50; // S-param impedance numofports=0; // Number of ports numofreqs=0; // Number of frequencies // // THINGS FOR NET-PORT MAPPING // // Net-to-port map netmap=struct('net_name',emptystr(), ... // - Name of net 'port_num', 0,... // - number of ports on the net 'pin_array',emptystr(),... // - pin number(s) (Ux_PinY) 'port_array',[]); // - Port number(s) netmap_cnt=0; // Count of netmap // // THINGS FOR PROGRESS COUNTER // progcntr_arr=[]; // Array used to compute the index of the marks progcntr_iter_cnt=0; // Iteration count progcntr_iter_total=0; // Iteration total (computed from all the stats) // // THINGS FOR RESULTS LOG // xtalk_struct=struct('xtalk_net',emptystr(1,xtalk_max_len),... // Xtalk information 'xtalk_pin',emptystr(1,xtalk_max_len),... 'xtalk_port',zeros(1,xtalk_max_len),... 'xtalk_fom',zeros(1,xtalk_max_len)); results_log=struct('net_name', emptystr(),... // results log 'port_num',0,... 'pin_array',emptystr(),... 'port_array',[],... 'xtalk_array', xtalk_struct); // // THINGS FOR OUTPUT FILE // foutfile_handle=0; // Output file handle foutfile_err=0; // Output file error on open foutfilename=emptystr(); // Output file name /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// ////////////////////////////// READ TOUCHSTONE ////////////////////////////// /////////////////// // Get Scilab Version /////////////////// version_str=getversion(); version_str=tokens(version_str,'-'); version_str=tokens(version_str(2),'.'); version(1)=msscanf(version_str(1), '%d'); version(2)=msscanf(version_str(2), '%d'); if (version(1)<5) then error("Invalid Scilab version. Version 5.5 or greater is required"); if getscilabmode()=="NW" then sleep(2000); quit; end; elseif (version(2) < 5) then error("Invalid Scilab version. Version 5.5 or greater is required"); if getscilabmode()=="NW" then sleep(2000); quit; end; end /////////////////// // Post basic instructions /////////////////// messagebox(["Basic instructions for using this utility" " 1. Import s-parameter" " 2. Select the number of crosstalk terms to collect" ... " 3. Select the edge-rate for the frequency domain filter" " 4. Select port impedance"], "modal"); /////////////////// // Get number of xtalk terms // to be reported /////////////////// temp = x_mdialog("Please enter parameters", "Maximum number of xtalk terms >0:", string(xtalk_max_len)); if (temp==[]) | (temp=="0") then messagebox("Script aborted", "","error","Abort"); if getscilabmode()=="NW" then sleep(2000); quit; else abort end; end xtalk_max_len = evstr(temp(1)); disp(strcat(["Info: Selected reporting of " string(xtalk_max_len) " xtalk elements "])); /////////////////// // Get the edge rate /////////////////// temp = x_mdialog("Please enter parameter", "Apply gaussian edge-rate filter 10-90% ps:", string(trf_edge/1e-12)); trf_edge = evstr(temp(1))*1e-12; if (temp==[]) | (trf_edge<0) | (trf_edge > 1000e-12) then messagebox("Edge rate outside of range. Script aborted", "","error","Abort"); if getscilabmode()=="NW" then sleep(2000); quit; else abort end; end disp(strcat(["Info: Applying " string(trf_edge/1e-12) "ps edge rate filter"])); /////////////////// // Get nominal environment impedances /////////////////// temp = x_mdialog("Please enter parameter", "Environment (port) resistance :", string(spZ0)); spZ0_renorm = evstr(temp(1)); if (temp==[]) | (spZ0_renorm<0) then messagebox("Environment resistance outside of range. Script aborted", "","error","Abort"); if getscilabmode()=="NW" then sleep(2000); quit; else abort end; end disp(strcat(["Info: Using environment resistance of " string(spZ0_renorm) " ohms"])); /////////////////// // Setup files/directories // Read touchstone files // Get user input /////////////////// // // Read input file // // frefsparam=uigetfile("*.s*p", "", "Please choose S-parameters file"); if frefsparam==emptystr() then messagebox("Invalid source file selection. Script aborted", "","error","Abort"); if getscilabmode()=="NW" then sleep(2000); quit; else abort end; end disp(strcat(["Info: Begin loading touchstone file " frefsparam])); [spreffreqs,sprefdata,spZ0,spcomments] = sptlbx_readtchstn(frefsparam); disp("Info: Finished loading touchstone file"); numofports=size(sprefdata,1); //Find number of ports if numofports < 4 then messagebox("Only 4-port or larger S-parameters are allowed. Script aborted", "","error","Abort"); if getscilabmode()=="NW" then sleep(2000); quit; else abort end; end if modulo(numofports,2) <> 0 then messagebox("Only even port-count S-parameters are allowed. Script aborted", "","error","Abort"); if getscilabmode()=="NW" then sleep(2000); quit; else abort end; end numofreqs=size(sprefdata,3); //Find number of frequency points /////////////////// // Display some basic stats /////////////////// freqstatsstr="Info: Freq points: "; freqscalar=1; select find([spreffreqs(1)/1e12 spreffreqs(1)/1e9 spreffreqs(1)/1e6 spreffreqs(1)/1e3 spreffreqs(1)] >= 1, 1) case 1 then //THz :) sHzPrefix= "T"; freqscalar=1e12; case 2 then //GHz sHzPrefix= "G"; freqscalar=1e9; case 3 then //MHz sHzPrefix= "M"; freqscalar=1e6; case 4 then // KHz sHzPrefix= "K"; freqscalar=1e3; case 5 then // Hz sHzPrefix=""; freqscalar=1; else sHzPrefix=""; freqscalar=1; end freqstatsstr=strcat([freqstatsstr msprintf("%0.2f", spreffreqs(1)/freqscalar) sHzPrefix "Hz to "]); select find([spreffreqs($)/1e12 spreffreqs($)/1e9 spreffreqs($)/1e6 spreffreqs($)/1e3 spreffreqs($)] >= 1, 1) case 1 then //THz :) sHzPrefix= "T"; freqscalar=1e12; case 2 then //GHz sHzPrefix= "G"; freqscalar=1e9; case 3 then //MHz sHzPrefix= "M"; freqscalar=1e6; case 4 then // KHz sHzPrefix= "K"; freqscalar=1e3; case 5 then // Hz sHzPrefix=""; freqscalar=1; else sHzPrefix=""; freqscalar=1; end freqstatsstr=strcat([freqstatsstr msprintf("%0.2f", spreffreqs($)/freqscalar) sHzPrefix "Hz; min freq delta: "]); select find([min(diff(spreffreqs))/1e12 min(diff(spreffreqs))/1e9 min(diff(spreffreqs))/1e6 min(diff(spreffreqs))/1e3 min(diff(spreffreqs))] >= 1, 1) case 1 then //THz :) sHzPrefix= "T"; freqscalar=1e12; case 2 then //GHz sHzPrefix= "G"; freqscalar=1e9; case 3 then //MHz sHzPrefix= "M"; freqscalar=1e6; case 4 then // KHz sHzPrefix= "K"; freqscalar=1e3; case 5 then // Hz sHzPrefix=""; freqscalar=1; else sHzPrefix=""; freqscalar=1; end freqstatsstr=strcat([freqstatsstr msprintf("%0.2f", min(diff(spreffreqs))/freqscalar) sHzPrefix "Hz"]); disp(freqstatsstr); clear freqstatsstr; clear freqscalar; /////////////////////////////////////////////////////////////////////////////// //////////////////////////// READ PORT MAPPING ////////////////////////////// disp("Info: Begin mapping ports to nets"); netmap_empty=netmap; netmap = PORT_ALIAS_EXTRCT_FORSIW(spcomments,numofports); netmap_cnt=size(netmap,1); // Check if unable to find any information from list and abort if and(netmap_empty==netmap)==%T then messagebox("Unable to read in port mapping information. Script aborted", "","error","Abort"); if getscilabmode()=="NW" then sleep(2000); quit; else abort end; end disp(strcat(["Info: Mapped " string(numofports) " ports to " string(netmap_cnt) " nets"])); //////////////////////////////////////////////////////////////////////////////// ////////////////////// RENORMALIZE PORT IMPEDANCE //////////////////////////// if spZ0_renorm <> spZ0 then disp(strcat(["Info: Begin renormalizing port resistance"])); sprefdata=SE_ZRENORM(sprefdata,spZ0_renorm, spZ0); end //////////////////////////////////////////////////////////////////////////////// //////////////////////////// COMPUTE XTALK /////////////////////////////////// //i-main(victim) net index //j-index of main(victim) net port //k-index of agressor net //l-index of agressor port //Apply transmitter edge filter compensation curve IL_comp_curve=exp(-(spreffreqs.^2)*1/0.31*(trf_edge)^2); //Compute the max frequency index for the FOM max_freq_idx=sum(spreffreqs<=max_freq_for_FOM); outstringtemp=emptystr(); outstringtemp_idx=0; // Xtalk FOM temporary variables Xtalk_FOM=0; // Xtracted FOM number Xtalk_FOM_Array=zeros(xtalk_max_len,1); // Temp FOM values array Xtalk_agg_net_idx_Array=zeros(xtalk_max_len,1); // Temp net index array associated with FOM array Xtalk_agg_pin_idx_Array=zeros(xtalk_max_len,1); // Temp port index associated with FOM array // Other temp variables results_log_xtalk_idx=0; // Index of xtalk aggressors in each results log //Compute progress indicator // Simply number of nets * number aggressors per net * number of ports per aggr progcntr_iter_total=netmap_cnt*(netmap_cnt-1)*2; // Compute the marks for progress bar for i=1:19 progcntr_arr(i)=round(progcntr_iter_total*i*0.05); end disp("Info: Begin computing Xtalk FOM"); if progcntr_iter_total>=1000 then mprintf(" 0"); end // Compute total iteration count for progress display // This is based on the for i=1:netmap_cnt // Go in each direction for j=1:netmap(i).port_num // Reset the FOM array Xtalk_FOM_Array=zeros(xtalk_max_len,1); // Extract IL data for victim net pair // TODO THIS: // For each aggressor ports for k=1:netmap_cnt if i<>k then //For each port for l=1:netmap(k).port_num // Plot the progress bar if progcntr_iter_total>=1000 then progcntr_iter_cnt=progcntr_iter_cnt+1; if vectorfind(progcntr_arr,progcntr_iter_cnt)<>[] then if vectorfind(progcntr_arr,progcntr_iter_cnt)==5 then //25% mprintf("25"); elseif vectorfind(progcntr_arr,progcntr_iter_cnt)==10 then //50% mprintf("50"); elseif vectorfind(progcntr_arr,progcntr_iter_cnt)==15 then //75% mprintf("75"); else mprintf("."); end end end // Apply IL compensation // Compute the integrated crosstalk FOM up to max freq Xtalk_FOM=sum(IL_comp_curve'.*abs(squeeze(sprefdata(netmap(i).port_array(j),netmap(k).port_array(l),:)))); // If FOM in top three, then push out the minimum value if Xtalk_FOM > min(Xtalk_FOM_Array) then // If greater than minimum, find the (first) minimum value and swap with FOM // Log the aggressor port indices Xtalk_agg_net_idx_Array(find(Xtalk_FOM_Array<=min(Xtalk_FOM_Array),1))=k; Xtalk_agg_pin_idx_Array(find(Xtalk_FOM_Array<=min(Xtalk_FOM_Array),1))=l; Xtalk_FOM_Array(find(Xtalk_FOM_Array<=min(Xtalk_FOM_Array),1))=Xtalk_FOM; end end end end // After done save results for each type // Note the net and pin_names for the aggressor results_log_xtalk_idx=0; results_log(i).net_name=netmap(i).net_name; results_log(i).port_num=results_log(i).port_num+1; results_log(i).pin_array(results_log(i).port_num)=netmap(i).pin_array(j); results_log(i).port_array(results_log(i).port_num)=netmap(i).port_array(j); results_log(i).xtalk_array(j)=xtalk_struct; // Initialization workaround for m=1:xtalk_max_len if Xtalk_FOM_Array(m)>0 then results_log_xtalk_idx=results_log_xtalk_idx+1; results_log(i).xtalk_array(j).xtalk_net(results_log_xtalk_idx)= netmap(Xtalk_agg_net_idx_Array(m)).net_name; results_log(i).xtalk_array(j).xtalk_pin(results_log_xtalk_idx)= netmap(Xtalk_agg_net_idx_Array(m)).pin_array(Xtalk_agg_pin_idx_Array(m)); results_log(i).xtalk_array(j).xtalk_port(results_log_xtalk_idx)=netmap(Xtalk_agg_net_idx_Array(m)).port_array(Xtalk_agg_pin_idx_Array(m)); results_log(i).xtalk_array(j).xtalk_fom(results_log_xtalk_idx)= Xtalk_FOM_Array(m); end end end end if progcntr_iter_total>=1000 then mprintf("100"); end //////////////////////////////////////////////////////////////////////////////// ///////////////////////////// PRINT RESULT /////////////////////////////////// /////////////////// // Setup files/directories // for output /////////////////// foutfilename=uiputfile(["*.csv", "csv files"], ".csv", "Please choose output .csv file"); if foutfilename==emptystr() then messagebox("Invalid output file selection. Script aborted", "","error","Abort"); if getscilabmode()=="NW" then sleep(2000); quit; else abort end; end // Strip out and append the extension, as necessary [fpath, ffname, fext]=fileparts(foutfilename); if fext==emptystr() then foutfilename=strcat([foutfilename ".csv"]); end disp(strcat(["Info: Begin writing output file " foutfilename])); /////////////////// // Write out the results log /////////////////// // Open file [foutfile_handle,foutfile_err]=mopen(foutfilename, 'wt'); if foutfile_err<>0 then error("Unable to open output file for write!"); if getscilabmode()=="NW" then sleep(2000); quit; else abort end; end // Temporary variables outwriteline=emptystr(); // Write header outwriteline="VICT_NET_NAME,VICT_PIN_NAME,VICT_PORT,AGGR_NET_NAME,AGGR_PIN_NAME,AGGR_PORT,AGGR_XTALK_FOM"; mfprintf(foutfile_handle, "%s\n",outwriteline); // Write everything out for i=1:size(results_log,1) // for each net // if pin does not exist, do blank fields for pins and xtalks if results_log(i).port_num == 0 then outwriteline=strcat([results_log(i).net_name ",,,,"]); //Print line to file mfprintf(foutfile_handle,"%s\n",outwriteline); else //pin exists for j=1:results_log(i).port_num //if no xtalk exists for pin, do blanks for xtalk field if and(results_log(i).xtalk_array(j).xtalk_fom==zeros(1,xtalk_max_len)) then outwriteline=strcat([results_log(i).net_name "," results_log(i).pin_array(j) "," string(results_log(i).port_array(j)) ",,,,,"]); //Print line to file mfprintf(foutfile_handle,"%s\n",outwriteline); else //xtalk exists //for all non-zero xtalks write xtalk aggressor pin and FOM for k=1:xtalk_max_len if results_log(i).xtalk_array(j).xtalk_fom(k) > 0 then outwriteline=strcat([results_log(i).net_name "," results_log(i).pin_array(j) "," string(results_log(i).port_array(j)) "," ... results_log(i).xtalk_array(j).xtalk_net(k) "," ... results_log(i).xtalk_array(j).xtalk_pin(k) "," ... string(results_log(i).xtalk_array(j).xtalk_port(k)) "," ... msprintf("%0.6e",results_log(i).xtalk_array(j).xtalk_fom(k))]); //Print line to file mfprintf(foutfile_handle,"%s\n",outwriteline); end end end end end end mclose(foutfile_handle); disp(strcat(["Info: Successfully wrote the output file"])); quit;
54774c4df1f24b5fa561e93371d2d4e84c2f790e
449d555969bfd7befe906877abab098c6e63a0e8
/764/CH5/EX5.14.a/data5_14.sci
c66d04478b40725a65823c0514a027048f45d828
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
674
sci
data5_14.sci
//(Design against Fluctuating Load) Example 5.14 //Inner diameter of the spherical pressure vessel Di (mm) Di = 500 //Ultimate tensile strength of 20C8 Sut (N/mm2) Sut = 440 //Yield tensile strength of 20C8 Syt (N/mm2) Syt = 242 //Minimum internal pressure in the vessel Pmin (N/mm2) Pmin = 0 //Maximum internal pressure in the vessel Pmax (N/mm2) Pmax = 6 //Factor of safety fs fs = 3.5 //Size factor Kb Kb = 0.85 //Hence 50 > d > 7.5 //Assume the value of d(mm) for function calling purpose d = 25 reliability = 50 //Operation //Nomenclature: //1 - Ground //2 - Machined or cold drawn //3 - Hot-rolled //4 - Forged op = 2
e978e45a9ca1dfbee4808b6d6db5dd13b5267732
449d555969bfd7befe906877abab098c6e63a0e8
/2021/CH10/EX10.3/EX10_3.sce
b5c71c150c5149062931a2012b368ac87bb35ec8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
247
sce
EX10_3.sce
//Finding of discharge through trapezoidal channel //Given B=6; z=1/3; C=60; y=3; sb=1/5000; //To Find A=(B+z*y)*y; P=B+(2*y*sqrt(1+z^2)); R=A/P; q=A*C*sqrt(R*sb); disp("Discharge through Trapezoidal channel ="+string(q)+" m^3/sec");
f65274e7f49f440df2622acc2796f4e2c19d3a00
449d555969bfd7befe906877abab098c6e63a0e8
/1748/CH1/EX1.8/Exa1_8.sce
01638cab4ccf6ed0c72a61060bd844ba2244a9e5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
908
sce
Exa1_8.sce
//Exa 1.8 clc; clear; close; //given data format('v',7); Phase=3;//no. of phase f=50;//in Hz P=16;//No. of pole alternator Slots=144;//No. of slots conductors=10;//conductors per slot fi=2.48*10^-2;//in weber n=Slots/P;//No. of slots/pole Zr=Slots*conductors/Phase;//No. of conductors/Phase T=Zr/2;//N. of turns/phase Beta=180/n;//Angular displacement between slots in degree m=n/Phase;//No. of slots/pole/Phase Kd=sind(m*Beta/2)/(m*sind(Beta/2));//Distribution factor :unitless disp("The coil span falls short of 2 slots i.e. "+string(2*180/9)+" degree."); alfa=40;//short pitch angle in degree Kp=cosd(alfa/2);//Unitless //Formula : f=P*N/120;//in Hz N=120*f/P;//in rpm Ep=4.44*Kd*Kp*fi*f*T;//in Volts LineVoltage=sqrt(3)*Ep;//in Volts disp("The speed is "+string(N)+" in rpm"); disp("The line emf is "+string(LineVoltage)+" Volts"); //Note : Answer in the book is not accurate.
0f5b264c22739b37d9fb4c32d5f816e8f817d342
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set8/s_Engineering_Economics_H._Agarwal_1208.zip/Engineering_Economics_H._Agarwal_1208/CH2/EX2.7/Exa7.sce
608da014471f5fd470df705c7f34e4c96dd7ea70
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
311
sce
Exa7.sce
errcatch(-1,"stop");mode(2);//Exa7 ; ; //given data is : CI=496.50;//compound interest in rupees n=3;//in years r=10;//rate in % per annum disp("CI is given by : "); disp("CI=P(1+r/100)^n-P"); //solving this eqn P=CI/((1+r/100)^n-1); disp("Principal amount is : "+string(P)+" Rupees.") exit();
acfc2bbd68eeb1e4e7c7851b929286b39de84643
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH10/EX10.10/Ex10_10.sce
4745062cf5d01a043fc67459f54b88a107b4cd0c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
226
sce
Ex10_10.sce
clear //Given A=7.5*10**-4 //m**2 I=12 //A //Calculation M=A*I //Result printf("\n Magnitude of the magnetic moment is %0.3f *10**-3 Am**2", M*10**3)
9fb6d89da7d6b908c33223cc807c069b0e0367ef
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH2/EX2.1/example2_1.sce
0e49f9ae98842dfb9f5821a843b4a45850418b69
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
576
sce
example2_1.sce
clc // Given that lambda = 5e-7 // wavelength of light in meter d = 1 // distance of wavefront received on the screen from the opening in meter n = 80 // no. of half period zone // Sample Problem 1 on page no. 2.38 printf("\n # PROBLEM 1 # \n") Rn = sqrt(n * lambda * d)// calculation for radius of nth half period zone A = %pi * d * lambda// calculation for area of half period zone printf("Standard formula used\n Rn = sqrt(n*d*lambda).\n A = pi*d*lambda.\n") printf("\n Radius of 80th half period zone = %f cm. \n Area of half period zone = %f square cm.",Rn*100,A*10000)
adfa3fbb0fa3d7efe9d0992b00189391eeec3287
7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2
/Scilab/virtual/RampTest/scilabwrite.sce
60b88316bb0cde54053cc64a3deda1dcd534a5b9
[]
no_license
advait23/sbhs-manual
e2c380051117e3a36398bb5ad046781f7b379cb9
d65043acd98334c44a0f0dbf480473c4c4451834
refs/heads/master
2021-01-16T19:50:40.218314
2012-11-16T04:11:12
2012-11-16T04:11:12
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
92,976
sce
scilabwrite.sce
0.10000E+00 0.10000E+01 0.00000E+00 0.10000E+03 0.10000E+01 0.40000E+02 0.50000E+02 0.10000E+01 0.20000E+01 0.40000E+02 0.50000E+02 0.20000E+01 0.50000E+01 0.40000E+02 0.50000E+02 0.50000E+01 0.60000E+01 0.40000E+02 0.50000E+02 0.60000E+01 0.70000E+01 0.40000E+02 0.50000E+02 0.70000E+01 0.80000E+01 0.40000E+02 0.50000E+02 0.80000E+01 0.90000E+01 0.40000E+02 0.50000E+02 0.90000E+01 0.10000E+02 0.40000E+02 0.50000E+02 0.10000E+02 0.11000E+02 0.40000E+02 0.50000E+02 0.11000E+02 0.12000E+02 0.40000E+02 0.50000E+02 0.12000E+02 0.13000E+02 0.40000E+02 0.50000E+02 0.13000E+02 0.14000E+02 0.40000E+02 0.50000E+02 0.14000E+02 0.15000E+02 0.40000E+02 0.50000E+02 0.15000E+02 0.16000E+02 0.40000E+02 0.50000E+02 0.16000E+02 0.17000E+02 0.40000E+02 0.50000E+02 0.17000E+02 0.18000E+02 0.40000E+02 0.50000E+02 0.18000E+02 0.19000E+02 0.40000E+02 0.50000E+02 0.19000E+02 0.20000E+02 0.40000E+02 0.50000E+02 0.20000E+02 0.21000E+02 0.40000E+02 0.50000E+02 0.21000E+02 0.22000E+02 0.40000E+02 0.50000E+02 0.22000E+02 0.23000E+02 0.40000E+02 0.50000E+02 0.23000E+02 0.24000E+02 0.40000E+02 0.50000E+02 0.24000E+02 0.25000E+02 0.40000E+02 0.50000E+02 0.25000E+02 0.26000E+02 0.40000E+02 0.50000E+02 0.26000E+02 0.27000E+02 0.40000E+02 0.50000E+02 0.27000E+02 0.28000E+02 0.40000E+02 0.50000E+02 0.28000E+02 0.29000E+02 0.40000E+02 0.50000E+02 0.29000E+02 0.30000E+02 0.40000E+02 0.50000E+02 0.30000E+02 0.31000E+02 0.40000E+02 0.50000E+02 0.31000E+02 0.32000E+02 0.40000E+02 0.50000E+02 0.32000E+02 0.33000E+02 0.40000E+02 0.50000E+02 0.33000E+02 0.34000E+02 0.40000E+02 0.50000E+02 0.34000E+02 0.35000E+02 0.40000E+02 0.50000E+02 0.35000E+02 0.36000E+02 0.40000E+02 0.50000E+02 0.36000E+02 0.37000E+02 0.40000E+02 0.50000E+02 0.37000E+02 0.38000E+02 0.40000E+02 0.50000E+02 0.38000E+02 0.39000E+02 0.40000E+02 0.50000E+02 0.39000E+02 0.40000E+02 0.40000E+02 0.50000E+02 0.40000E+02 0.41000E+02 0.40000E+02 0.50000E+02 0.41000E+02 0.42000E+02 0.40000E+02 0.50000E+02 0.42000E+02 0.43000E+02 0.40000E+02 0.50000E+02 0.43000E+02 0.44000E+02 0.40000E+02 0.50000E+02 0.44000E+02 0.45000E+02 0.40000E+02 0.50000E+02 0.45000E+02 0.46000E+02 0.40000E+02 0.50000E+02 0.46000E+02 0.47000E+02 0.40000E+02 0.50000E+02 0.47000E+02 0.48000E+02 0.40000E+02 0.50000E+02 0.48000E+02 0.49000E+02 0.40000E+02 0.50000E+02 0.49000E+02 0.50000E+02 0.40000E+02 0.50000E+02 0.50000E+02 0.51000E+02 0.40000E+02 0.50000E+02 0.51000E+02 0.52000E+02 0.40000E+02 0.50000E+02 0.52000E+02 0.53000E+02 0.40000E+02 0.50000E+02 0.53000E+02 0.54000E+02 0.40000E+02 0.50000E+02 0.54000E+02 0.55000E+02 0.40000E+02 0.50000E+02 0.55000E+02 0.56000E+02 0.40000E+02 0.50000E+02 0.56000E+02 0.57000E+02 0.40000E+02 0.50000E+02 0.57000E+02 0.58000E+02 0.40000E+02 0.50000E+02 0.58000E+02 0.59000E+02 0.40000E+02 0.50000E+02 0.59000E+02 0.60000E+02 0.40000E+02 0.50000E+02 0.60000E+02 0.61000E+02 0.40000E+02 0.50000E+02 0.61000E+02 0.62000E+02 0.40000E+02 0.50000E+02 0.62000E+02 0.63000E+02 0.40000E+02 0.50000E+02 0.63000E+02 0.64000E+02 0.40000E+02 0.50000E+02 0.64000E+02 0.65000E+02 0.40000E+02 0.50000E+02 0.65000E+02 0.66000E+02 0.40000E+02 0.50000E+02 0.66000E+02 0.67000E+02 0.40000E+02 0.50000E+02 0.67000E+02 0.68000E+02 0.40000E+02 0.50000E+02 0.68000E+02 0.69000E+02 0.40000E+02 0.50000E+02 0.69000E+02 0.70000E+02 0.40000E+02 0.50000E+02 0.70000E+02 0.71000E+02 0.40000E+02 0.50000E+02 0.71000E+02 0.72000E+02 0.40000E+02 0.50000E+02 0.72000E+02 0.73000E+02 0.40000E+02 0.50000E+02 0.73000E+02 0.74000E+02 0.40000E+02 0.50000E+02 0.74000E+02 0.75000E+02 0.40000E+02 0.50000E+02 0.75000E+02 0.76000E+02 0.40000E+02 0.50000E+02 0.76000E+02 0.77000E+02 0.40000E+02 0.50000E+02 0.77000E+02 0.78000E+02 0.40000E+02 0.50000E+02 0.78000E+02 0.79000E+02 0.40000E+02 0.50000E+02 0.79000E+02 0.80000E+02 0.40000E+02 0.50000E+02 0.80000E+02 0.81000E+02 0.40000E+02 0.50000E+02 0.81000E+02 0.82000E+02 0.40000E+02 0.50000E+02 0.82000E+02 0.83000E+02 0.40000E+02 0.50000E+02 0.83000E+02 0.84000E+02 0.40000E+02 0.50000E+02 0.84000E+02 0.85000E+02 0.40000E+02 0.50000E+02 0.85000E+02 0.86000E+02 0.40000E+02 0.50000E+02 0.86000E+02 0.87000E+02 0.40000E+02 0.50000E+02 0.87000E+02 0.88000E+02 0.40000E+02 0.50000E+02 0.88000E+02 0.89000E+02 0.40000E+02 0.50000E+02 0.89000E+02 0.90000E+02 0.40000E+02 0.50000E+02 0.90000E+02 0.91000E+02 0.40000E+02 0.50000E+02 0.91000E+02 0.92000E+02 0.40000E+02 0.50000E+02 0.92000E+02 0.93000E+02 0.40000E+02 0.50000E+02 0.93000E+02 0.94000E+02 0.40000E+02 0.50000E+02 0.94000E+02 0.95000E+02 0.40000E+02 0.50000E+02 0.95000E+02 0.96000E+02 0.40000E+02 0.50000E+02 0.96000E+02 0.97000E+02 0.40000E+02 0.50000E+02 0.97000E+02 0.98000E+02 0.40000E+02 0.50000E+02 0.98000E+02 0.99000E+02 0.40000E+02 0.50000E+02 0.99000E+02 0.10000E+03 0.40000E+02 0.50000E+02 0.10000E+03 0.10100E+03 0.40000E+02 0.50000E+02 0.10100E+03 0.10200E+03 0.40000E+02 0.50000E+02 0.10200E+03 0.10300E+03 0.40000E+02 0.50000E+02 0.10300E+03 0.10400E+03 0.40000E+02 0.50000E+02 0.10400E+03 0.10500E+03 0.40000E+02 0.50000E+02 0.10500E+03 0.10600E+03 0.40000E+02 0.50000E+02 0.10600E+03 0.10700E+03 0.40000E+02 0.50000E+02 0.10700E+03 0.10800E+03 0.40000E+02 0.50000E+02 0.10800E+03 0.10900E+03 0.40000E+02 0.50000E+02 0.10900E+03 0.11000E+03 0.40000E+02 0.50000E+02 0.11000E+03 0.11100E+03 0.40000E+02 0.50000E+02 0.11100E+03 0.11200E+03 0.40000E+02 0.50000E+02 0.11200E+03 0.11300E+03 0.40000E+02 0.50000E+02 0.11300E+03 0.11400E+03 0.40000E+02 0.50000E+02 0.11400E+03 0.11500E+03 0.40000E+02 0.50000E+02 0.11500E+03 0.11600E+03 0.40000E+02 0.50000E+02 0.11600E+03 0.11700E+03 0.40000E+02 0.50000E+02 0.11700E+03 0.11800E+03 0.40000E+02 0.50000E+02 0.11800E+03 0.11900E+03 0.40000E+02 0.50000E+02 0.11900E+03 0.12000E+03 0.40000E+02 0.50000E+02 0.12000E+03 0.12100E+03 0.40000E+02 0.50000E+02 0.12100E+03 0.12200E+03 0.40000E+02 0.50000E+02 0.12200E+03 0.12300E+03 0.40000E+02 0.50000E+02 0.12300E+03 0.12400E+03 0.40000E+02 0.50000E+02 0.12400E+03 0.12500E+03 0.40000E+02 0.50000E+02 0.12500E+03 0.12600E+03 0.40000E+02 0.50000E+02 0.12600E+03 0.12700E+03 0.40000E+02 0.50000E+02 0.12700E+03 0.12800E+03 0.40000E+02 0.50000E+02 0.12800E+03 0.12900E+03 0.40000E+02 0.50000E+02 0.12900E+03 0.13000E+03 0.40000E+02 0.50000E+02 0.13000E+03 0.13100E+03 0.40000E+02 0.50000E+02 0.13100E+03 0.13200E+03 0.40000E+02 0.50000E+02 0.13200E+03 0.13300E+03 0.40000E+02 0.50000E+02 0.13300E+03 0.13400E+03 0.40000E+02 0.50000E+02 0.13400E+03 0.13500E+03 0.40000E+02 0.50000E+02 0.13500E+03 0.13600E+03 0.40000E+02 0.50000E+02 0.13600E+03 0.13700E+03 0.40000E+02 0.50000E+02 0.13700E+03 0.13800E+03 0.40000E+02 0.50000E+02 0.13800E+03 0.13900E+03 0.40000E+02 0.50000E+02 0.13900E+03 0.14000E+03 0.40000E+02 0.50000E+02 0.14000E+03 0.14100E+03 0.40000E+02 0.50000E+02 0.14100E+03 0.14200E+03 0.40000E+02 0.50000E+02 0.14200E+03 0.14300E+03 0.40000E+02 0.50000E+02 0.14300E+03 0.14400E+03 0.40000E+02 0.50000E+02 0.14400E+03 0.14500E+03 0.40000E+02 0.50000E+02 0.14500E+03 0.14600E+03 0.40000E+02 0.50000E+02 0.14600E+03 0.14700E+03 0.40000E+02 0.50000E+02 0.14700E+03 0.14800E+03 0.40000E+02 0.50000E+02 0.14800E+03 0.14900E+03 0.40000E+02 0.50000E+02 0.14900E+03 0.15000E+03 0.40000E+02 0.50000E+02 0.15000E+03 0.15100E+03 0.40000E+02 0.50000E+02 0.15100E+03 0.15200E+03 0.40000E+02 0.50000E+02 0.15200E+03 0.15300E+03 0.40000E+02 0.50000E+02 0.15300E+03 0.15400E+03 0.40000E+02 0.50000E+02 0.15400E+03 0.15500E+03 0.40000E+02 0.50000E+02 0.15500E+03 0.15600E+03 0.40000E+02 0.50000E+02 0.15600E+03 0.15700E+03 0.40000E+02 0.50000E+02 0.15700E+03 0.15800E+03 0.40000E+02 0.50000E+02 0.15800E+03 0.15900E+03 0.40000E+02 0.50000E+02 0.15900E+03 0.16000E+03 0.40000E+02 0.50000E+02 0.16000E+03 0.16100E+03 0.40000E+02 0.50000E+02 0.16100E+03 0.16200E+03 0.40000E+02 0.50000E+02 0.16200E+03 0.16300E+03 0.40000E+02 0.50000E+02 0.16300E+03 0.16400E+03 0.40000E+02 0.50000E+02 0.16400E+03 0.16500E+03 0.40000E+02 0.50000E+02 0.16500E+03 0.16600E+03 0.40000E+02 0.50000E+02 0.16600E+03 0.16700E+03 0.40000E+02 0.50000E+02 0.16700E+03 0.16800E+03 0.40000E+02 0.50000E+02 0.16800E+03 0.16900E+03 0.40000E+02 0.50000E+02 0.16900E+03 0.17000E+03 0.40000E+02 0.50000E+02 0.17000E+03 0.17100E+03 0.40000E+02 0.50000E+02 0.17100E+03 0.17200E+03 0.40000E+02 0.50000E+02 0.17200E+03 0.17300E+03 0.40000E+02 0.50000E+02 0.17300E+03 0.17400E+03 0.40000E+02 0.50000E+02 0.17400E+03 0.17500E+03 0.40000E+02 0.50000E+02 0.17500E+03 0.17600E+03 0.40000E+02 0.50000E+02 0.17600E+03 0.17700E+03 0.40000E+02 0.50000E+02 0.17700E+03 0.17800E+03 0.40000E+02 0.50000E+02 0.17800E+03 0.17900E+03 0.40000E+02 0.50000E+02 0.17900E+03 0.18000E+03 0.40000E+02 0.50000E+02 0.18000E+03 0.18100E+03 0.40000E+02 0.50000E+02 0.18100E+03 0.18200E+03 0.40000E+02 0.50000E+02 0.18200E+03 0.18300E+03 0.40000E+02 0.50000E+02 0.18300E+03 0.18400E+03 0.40000E+02 0.50000E+02 0.18400E+03 0.18500E+03 0.40000E+02 0.50000E+02 0.18500E+03 0.18600E+03 0.40000E+02 0.50000E+02 0.18600E+03 0.18700E+03 0.40000E+02 0.50000E+02 0.18700E+03 0.18800E+03 0.40000E+02 0.50000E+02 0.18800E+03 0.18900E+03 0.40000E+02 0.50000E+02 0.18900E+03 0.19000E+03 0.40000E+02 0.50000E+02 0.19000E+03 0.19100E+03 0.40000E+02 0.50000E+02 0.19100E+03 0.19200E+03 0.40000E+02 0.50000E+02 0.19200E+03 0.19300E+03 0.40000E+02 0.50000E+02 0.19300E+03 0.19400E+03 0.40000E+02 0.50000E+02 0.19400E+03 0.19500E+03 0.40000E+02 0.50000E+02 0.19500E+03 0.19600E+03 0.40000E+02 0.50000E+02 0.19600E+03 0.19700E+03 0.40000E+02 0.50000E+02 0.19700E+03 0.19800E+03 0.40000E+02 0.50000E+02 0.19800E+03 0.19900E+03 0.40000E+02 0.50000E+02 0.19900E+03 0.20000E+03 0.40000E+02 0.50000E+02 0.20000E+03 0.20100E+03 0.40000E+02 0.50000E+02 0.20100E+03 0.20200E+03 0.40000E+02 0.50000E+02 0.20200E+03 0.20300E+03 0.40000E+02 0.50000E+02 0.20300E+03 0.20400E+03 0.40000E+02 0.50000E+02 0.20400E+03 0.20500E+03 0.40000E+02 0.50000E+02 0.20500E+03 0.20600E+03 0.40000E+02 0.50000E+02 0.20600E+03 0.20700E+03 0.40000E+02 0.50000E+02 0.20700E+03 0.20800E+03 0.40000E+02 0.50000E+02 0.20800E+03 0.20900E+03 0.40000E+02 0.50000E+02 0.20900E+03 0.21000E+03 0.40000E+02 0.50000E+02 0.21000E+03 0.21100E+03 0.40000E+02 0.50000E+02 0.21100E+03 0.21200E+03 0.40000E+02 0.50000E+02 0.21200E+03 0.21300E+03 0.40000E+02 0.50000E+02 0.21300E+03 0.21400E+03 0.40000E+02 0.50000E+02 0.21400E+03 0.21500E+03 0.40000E+02 0.50000E+02 0.21500E+03 0.21600E+03 0.40000E+02 0.50000E+02 0.21600E+03 0.21700E+03 0.40000E+02 0.50000E+02 0.21700E+03 0.21800E+03 0.40000E+02 0.50000E+02 0.21800E+03 0.21900E+03 0.40000E+02 0.50000E+02 0.21900E+03 0.22000E+03 0.40000E+02 0.50000E+02 0.22000E+03 0.22100E+03 0.40000E+02 0.50000E+02 0.22100E+03 0.22200E+03 0.40000E+02 0.50000E+02 0.22200E+03 0.22300E+03 0.40000E+02 0.50000E+02 0.22300E+03 0.22400E+03 0.40000E+02 0.50000E+02 0.22400E+03 0.22500E+03 0.40000E+02 0.50000E+02 0.22500E+03 0.22600E+03 0.40000E+02 0.50000E+02 0.22600E+03 0.22700E+03 0.40000E+02 0.50000E+02 0.22700E+03 0.22800E+03 0.40000E+02 0.50000E+02 0.22800E+03 0.22900E+03 0.40000E+02 0.50000E+02 0.22900E+03 0.23000E+03 0.40000E+02 0.50000E+02 0.23000E+03 0.23100E+03 0.40000E+02 0.50000E+02 0.23100E+03 0.23200E+03 0.40000E+02 0.50000E+02 0.23200E+03 0.23300E+03 0.40000E+02 0.50000E+02 0.23300E+03 0.23400E+03 0.40000E+02 0.50000E+02 0.23400E+03 0.23500E+03 0.40000E+02 0.50000E+02 0.23500E+03 0.23600E+03 0.40000E+02 0.50000E+02 0.23600E+03 0.23700E+03 0.40000E+02 0.50000E+02 0.23700E+03 0.23800E+03 0.40000E+02 0.50000E+02 0.23800E+03 0.23900E+03 0.40000E+02 0.50000E+02 0.23900E+03 0.24000E+03 0.40000E+02 0.50000E+02 0.24000E+03 0.24100E+03 0.40000E+02 0.50000E+02 0.24100E+03 0.24200E+03 0.40000E+02 0.50000E+02 0.24200E+03 0.24300E+03 0.40000E+02 0.50000E+02 0.24300E+03 0.24400E+03 0.40000E+02 0.50000E+02 0.24400E+03 0.24500E+03 0.40000E+02 0.50000E+02 0.24500E+03 0.24600E+03 0.40000E+02 0.50000E+02 0.24600E+03 0.24700E+03 0.40000E+02 0.50000E+02 0.24700E+03 0.24800E+03 0.40000E+02 0.50000E+02 0.24800E+03 0.24900E+03 0.40000E+02 0.50000E+02 0.24900E+03 0.25000E+03 0.40000E+02 0.50000E+02 0.25000E+03 0.25100E+03 0.40000E+02 0.50000E+02 0.25100E+03 0.25200E+03 0.40000E+02 0.50000E+02 0.25200E+03 0.25300E+03 0.40000E+02 0.50000E+02 0.25300E+03 0.25400E+03 0.40000E+02 0.50000E+02 0.25400E+03 0.25500E+03 0.40000E+02 0.50000E+02 0.25500E+03 0.25600E+03 0.40000E+02 0.50000E+02 0.25600E+03 0.25700E+03 0.40000E+02 0.50000E+02 0.25700E+03 0.25800E+03 0.40000E+02 0.50000E+02 0.25800E+03 0.25900E+03 0.40000E+02 0.50000E+02 0.25900E+03 0.26000E+03 0.40000E+02 0.50000E+02 0.26000E+03 0.26100E+03 0.40000E+02 0.50000E+02 0.26100E+03 0.26200E+03 0.40000E+02 0.50000E+02 0.26200E+03 0.26300E+03 0.40000E+02 0.50000E+02 0.26300E+03 0.26400E+03 0.40000E+02 0.50000E+02 0.26400E+03 0.26500E+03 0.40000E+02 0.50000E+02 0.26500E+03 0.26600E+03 0.40000E+02 0.50000E+02 0.26600E+03 0.26700E+03 0.40000E+02 0.50000E+02 0.26700E+03 0.26800E+03 0.40000E+02 0.50000E+02 0.26800E+03 0.26900E+03 0.40000E+02 0.50000E+02 0.26900E+03 0.27000E+03 0.40000E+02 0.50000E+02 0.27000E+03 0.27100E+03 0.40000E+02 0.50000E+02 0.27100E+03 0.27200E+03 0.40000E+02 0.50000E+02 0.27200E+03 0.27300E+03 0.40000E+02 0.50000E+02 0.27300E+03 0.27400E+03 0.40000E+02 0.50000E+02 0.27400E+03 0.27500E+03 0.40000E+02 0.50000E+02 0.27500E+03 0.27600E+03 0.40000E+02 0.50000E+02 0.27600E+03 0.27700E+03 0.40000E+02 0.50000E+02 0.27700E+03 0.27800E+03 0.40000E+02 0.50000E+02 0.27800E+03 0.27900E+03 0.40000E+02 0.50000E+02 0.27900E+03 0.28000E+03 0.40000E+02 0.50000E+02 0.28000E+03 0.28100E+03 0.40000E+02 0.50000E+02 0.28100E+03 0.28200E+03 0.40000E+02 0.50000E+02 0.28200E+03 0.28300E+03 0.40000E+02 0.50000E+02 0.28300E+03 0.28400E+03 0.40000E+02 0.50000E+02 0.28400E+03 0.28500E+03 0.40000E+02 0.50000E+02 0.28500E+03 0.28600E+03 0.40000E+02 0.50000E+02 0.28600E+03 0.28700E+03 0.40000E+02 0.50000E+02 0.28700E+03 0.28800E+03 0.40000E+02 0.50000E+02 0.28800E+03 0.28900E+03 0.40000E+02 0.50000E+02 0.28900E+03 0.29000E+03 0.40000E+02 0.50000E+02 0.29000E+03 0.29100E+03 0.40000E+02 0.50000E+02 0.29100E+03 0.29200E+03 0.40000E+02 0.50000E+02 0.29200E+03 0.29300E+03 0.40000E+02 0.50000E+02 0.29300E+03 0.29400E+03 0.40000E+02 0.50000E+02 0.29400E+03 0.29500E+03 0.40000E+02 0.50000E+02 0.29500E+03 0.29600E+03 0.40000E+02 0.50000E+02 0.29600E+03 0.29700E+03 0.40000E+02 0.50000E+02 0.29700E+03 0.29800E+03 0.40000E+02 0.50000E+02 0.29800E+03 0.29900E+03 0.40000E+02 0.50000E+02 0.29900E+03 0.30000E+03 0.40000E+02 0.50000E+02 0.30000E+03 0.30100E+03 0.40000E+02 0.50000E+02 0.30100E+03 0.30200E+03 0.40000E+02 0.50000E+02 0.30200E+03 0.30300E+03 0.40000E+02 0.50000E+02 0.30300E+03 0.30400E+03 0.40000E+02 0.50000E+02 0.30400E+03 0.30500E+03 0.40000E+02 0.50000E+02 0.30500E+03 0.30600E+03 0.40000E+02 0.50000E+02 0.30600E+03 0.30700E+03 0.40000E+02 0.50000E+02 0.30700E+03 0.30800E+03 0.40000E+02 0.50000E+02 0.30800E+03 0.30900E+03 0.40000E+02 0.50000E+02 0.30900E+03 0.31000E+03 0.40000E+02 0.50000E+02 0.31000E+03 0.31100E+03 0.40000E+02 0.50000E+02 0.31100E+03 0.31200E+03 0.40000E+02 0.50000E+02 0.31200E+03 0.31300E+03 0.40000E+02 0.50000E+02 0.31300E+03 0.31400E+03 0.40000E+02 0.50000E+02 0.31400E+03 0.31500E+03 0.40000E+02 0.50000E+02 0.31500E+03 0.31600E+03 0.40000E+02 0.50000E+02 0.31600E+03 0.31700E+03 0.40000E+02 0.50000E+02 0.31700E+03 0.31800E+03 0.40000E+02 0.50000E+02 0.31800E+03 0.31900E+03 0.40000E+02 0.50000E+02 0.31900E+03 0.32000E+03 0.40000E+02 0.50000E+02 0.32000E+03 0.32100E+03 0.40000E+02 0.50000E+02 0.32100E+03 0.32200E+03 0.40000E+02 0.50000E+02 0.32200E+03 0.32300E+03 0.40000E+02 0.50000E+02 0.32300E+03 0.32400E+03 0.40000E+02 0.50000E+02 0.32400E+03 0.32500E+03 0.40000E+02 0.50000E+02 0.32500E+03 0.32600E+03 0.40000E+02 0.50000E+02 0.32600E+03 0.32700E+03 0.40000E+02 0.50000E+02 0.32700E+03 0.32800E+03 0.40000E+02 0.50000E+02 0.32800E+03 0.32900E+03 0.40000E+02 0.50000E+02 0.32900E+03 0.33000E+03 0.40000E+02 0.50000E+02 0.33000E+03 0.33100E+03 0.40000E+02 0.50000E+02 0.33100E+03 0.33200E+03 0.40000E+02 0.50000E+02 0.33200E+03 0.33300E+03 0.40000E+02 0.50000E+02 0.33300E+03 0.33400E+03 0.40000E+02 0.50000E+02 0.33400E+03 0.33500E+03 0.40000E+02 0.50000E+02 0.33500E+03 0.33600E+03 0.40000E+02 0.50000E+02 0.33600E+03 0.33700E+03 0.40000E+02 0.50000E+02 0.33700E+03 0.33800E+03 0.40000E+02 0.50000E+02 0.33800E+03 0.33900E+03 0.40000E+02 0.50000E+02 0.33900E+03 0.34000E+03 0.40000E+02 0.50000E+02 0.34000E+03 0.34100E+03 0.40000E+02 0.50000E+02 0.34100E+03 0.34200E+03 0.40000E+02 0.50000E+02 0.34200E+03 0.34300E+03 0.40000E+02 0.50000E+02 0.34300E+03 0.34400E+03 0.40000E+02 0.50000E+02 0.34400E+03 0.34500E+03 0.40000E+02 0.50000E+02 0.34500E+03 0.34600E+03 0.40000E+02 0.50000E+02 0.34600E+03 0.34700E+03 0.40000E+02 0.50000E+02 0.34700E+03 0.34800E+03 0.40000E+02 0.50000E+02 0.34800E+03 0.34900E+03 0.40000E+02 0.50000E+02 0.34900E+03 0.35000E+03 0.40000E+02 0.50000E+02 0.35000E+03 0.35100E+03 0.40000E+02 0.50000E+02 0.35100E+03 0.35200E+03 0.40000E+02 0.50000E+02 0.35200E+03 0.35300E+03 0.40000E+02 0.50000E+02 0.35300E+03 0.35400E+03 0.40000E+02 0.50000E+02 0.35400E+03 0.35500E+03 0.40000E+02 0.50000E+02 0.35500E+03 0.35600E+03 0.40000E+02 0.50000E+02 0.35600E+03 0.35700E+03 0.40000E+02 0.50000E+02 0.35700E+03 0.35800E+03 0.40000E+02 0.50000E+02 0.35800E+03 0.35900E+03 0.40000E+02 0.50000E+02 0.35900E+03 0.36000E+03 0.40000E+02 0.50000E+02 0.36000E+03 0.36100E+03 0.40000E+02 0.50000E+02 0.36100E+03 0.36200E+03 0.40000E+02 0.50000E+02 0.36200E+03 0.36300E+03 0.40000E+02 0.50000E+02 0.36300E+03 0.36400E+03 0.40000E+02 0.50000E+02 0.36400E+03 0.36500E+03 0.40000E+02 0.50000E+02 0.36500E+03 0.36600E+03 0.40000E+02 0.50000E+02 0.36600E+03 0.36700E+03 0.40000E+02 0.50000E+02 0.36700E+03 0.36800E+03 0.40000E+02 0.50000E+02 0.36800E+03 0.36900E+03 0.40000E+02 0.50000E+02 0.36900E+03 0.37000E+03 0.40000E+02 0.50000E+02 0.37000E+03 0.37100E+03 0.40000E+02 0.50000E+02 0.37100E+03 0.37200E+03 0.40000E+02 0.50000E+02 0.37200E+03 0.37300E+03 0.40000E+02 0.50000E+02 0.37300E+03 0.37400E+03 0.40000E+02 0.50000E+02 0.37400E+03 0.37500E+03 0.40000E+02 0.50000E+02 0.37500E+03 0.37600E+03 0.40000E+02 0.50000E+02 0.37600E+03 0.37700E+03 0.40000E+02 0.50000E+02 0.37700E+03 0.37800E+03 0.40000E+02 0.50000E+02 0.37800E+03 0.37900E+03 0.40000E+02 0.50000E+02 0.37900E+03 0.38000E+03 0.40000E+02 0.50000E+02 0.38000E+03 0.38100E+03 0.40000E+02 0.50000E+02 0.38100E+03 0.38200E+03 0.40000E+02 0.50000E+02 0.38200E+03 0.38300E+03 0.40000E+02 0.50000E+02 0.38300E+03 0.38400E+03 0.40000E+02 0.50000E+02 0.38400E+03 0.38500E+03 0.40000E+02 0.50000E+02 0.38500E+03 0.38600E+03 0.40000E+02 0.50000E+02 0.38600E+03 0.38700E+03 0.40000E+02 0.50000E+02 0.38700E+03 0.38800E+03 0.40000E+02 0.50000E+02 0.38800E+03 0.38900E+03 0.40000E+02 0.50000E+02 0.38900E+03 0.39000E+03 0.40000E+02 0.50000E+02 0.39000E+03 0.39100E+03 0.40000E+02 0.50000E+02 0.39100E+03 0.39200E+03 0.40000E+02 0.50000E+02 0.39200E+03 0.39300E+03 0.40000E+02 0.50000E+02 0.39300E+03 0.39400E+03 0.40000E+02 0.50000E+02 0.39400E+03 0.39500E+03 0.40000E+02 0.50000E+02 0.39500E+03 0.39600E+03 0.40000E+02 0.50000E+02 0.39600E+03 0.39700E+03 0.40000E+02 0.50000E+02 0.39700E+03 0.39800E+03 0.40000E+02 0.50000E+02 0.39800E+03 0.39900E+03 0.40000E+02 0.50000E+02 0.39900E+03 0.40000E+03 0.40000E+02 0.50000E+02 0.40000E+03 0.40100E+03 0.40000E+02 0.50000E+02 0.40100E+03 0.40200E+03 0.40000E+02 0.50000E+02 0.40200E+03 0.40300E+03 0.40000E+02 0.50000E+02 0.40300E+03 0.40400E+03 0.40000E+02 0.50000E+02 0.40400E+03 0.40500E+03 0.40000E+02 0.50000E+02 0.40500E+03 0.40600E+03 0.40000E+02 0.50000E+02 0.40600E+03 0.40700E+03 0.40000E+02 0.50000E+02 0.40700E+03 0.40800E+03 0.40000E+02 0.50000E+02 0.40800E+03 0.40900E+03 0.40000E+02 0.50000E+02 0.40900E+03 0.41000E+03 0.40000E+02 0.50000E+02 0.41000E+03 0.41100E+03 0.40000E+02 0.50000E+02 0.41100E+03 0.41200E+03 0.40000E+02 0.50000E+02 0.41200E+03 0.41300E+03 0.40000E+02 0.50000E+02 0.41300E+03 0.41400E+03 0.40000E+02 0.50000E+02 0.41400E+03 0.41500E+03 0.40000E+02 0.50000E+02 0.41500E+03 0.41600E+03 0.40000E+02 0.50000E+02 0.41600E+03 0.41700E+03 0.40000E+02 0.50000E+02 0.41700E+03 0.41800E+03 0.40000E+02 0.50000E+02 0.41800E+03 0.41900E+03 0.40000E+02 0.50000E+02 0.41900E+03 0.42000E+03 0.40000E+02 0.50000E+02 0.42000E+03 0.42100E+03 0.40000E+02 0.50000E+02 0.42100E+03 0.42200E+03 0.40000E+02 0.50000E+02 0.42200E+03 0.42300E+03 0.40000E+02 0.50000E+02 0.42300E+03 0.42400E+03 0.40000E+02 0.50000E+02 0.42400E+03 0.42500E+03 0.40000E+02 0.50000E+02 0.42500E+03 0.42600E+03 0.40000E+02 0.50000E+02 0.42600E+03 0.42700E+03 0.40000E+02 0.50000E+02 0.42700E+03 0.42800E+03 0.40000E+02 0.50000E+02 0.42800E+03 0.42900E+03 0.40000E+02 0.50000E+02 0.42900E+03 0.43000E+03 0.40000E+02 0.50000E+02 0.43000E+03 0.43100E+03 0.40000E+02 0.50000E+02 0.43100E+03 0.43200E+03 0.40000E+02 0.50000E+02 0.43200E+03 0.43300E+03 0.40000E+02 0.50000E+02 0.43300E+03 0.43400E+03 0.40000E+02 0.50000E+02 0.43400E+03 0.43500E+03 0.40000E+02 0.50000E+02 0.43500E+03 0.43600E+03 0.40000E+02 0.50000E+02 0.43600E+03 0.43700E+03 0.40000E+02 0.50000E+02 0.43700E+03 0.43800E+03 0.40000E+02 0.50000E+02 0.43800E+03 0.43900E+03 0.40000E+02 0.50000E+02 0.43900E+03 0.44000E+03 0.40000E+02 0.50000E+02 0.44000E+03 0.44100E+03 0.40000E+02 0.50000E+02 0.44100E+03 0.44200E+03 0.40000E+02 0.50000E+02 0.44200E+03 0.45000E+03 0.40000E+02 0.50000E+02 0.45000E+03 0.45100E+03 0.40000E+02 0.50000E+02 0.45100E+03 0.45200E+03 0.40000E+02 0.50000E+02 0.45200E+03 0.45300E+03 0.40000E+02 0.50000E+02 0.45300E+03 0.45400E+03 0.40000E+02 0.50000E+02 0.45400E+03 0.45500E+03 0.40000E+02 0.50000E+02 0.45500E+03 0.45600E+03 0.40000E+02 0.50000E+02 0.45600E+03 0.45700E+03 0.40000E+02 0.50000E+02 0.45700E+03 0.45800E+03 0.40000E+02 0.50000E+02 0.45800E+03 0.45900E+03 0.40000E+02 0.50000E+02 0.45900E+03 0.46000E+03 0.40000E+02 0.50000E+02 0.46000E+03 0.46100E+03 0.40000E+02 0.50000E+02 0.46100E+03 0.46200E+03 0.40000E+02 0.50000E+02 0.46200E+03 0.46300E+03 0.40000E+02 0.50000E+02 0.46300E+03 0.46400E+03 0.40000E+02 0.50000E+02 0.46400E+03 0.46500E+03 0.40000E+02 0.50000E+02 0.46500E+03 0.46600E+03 0.40000E+02 0.50000E+02 0.46600E+03 0.46700E+03 0.40000E+02 0.50000E+02 0.46700E+03 0.46800E+03 0.40000E+02 0.50000E+02 0.46800E+03 0.46900E+03 0.40000E+02 0.50000E+02 0.46900E+03 0.47000E+03 0.40000E+02 0.50000E+02 0.47000E+03 0.47100E+03 0.40000E+02 0.50000E+02 0.47100E+03 0.47200E+03 0.40000E+02 0.50000E+02 0.47200E+03 0.47300E+03 0.40000E+02 0.50000E+02 0.47300E+03 0.47400E+03 0.40000E+02 0.50000E+02 0.47400E+03 0.47500E+03 0.40000E+02 0.50000E+02 0.47500E+03 0.47600E+03 0.40000E+02 0.50000E+02 0.47600E+03 0.47700E+03 0.40000E+02 0.50000E+02 0.47700E+03 0.47800E+03 0.40000E+02 0.50000E+02 0.47800E+03 0.47900E+03 0.40000E+02 0.50000E+02 0.47900E+03 0.48000E+03 0.40000E+02 0.50000E+02 0.48000E+03 0.48100E+03 0.40000E+02 0.50000E+02 0.48100E+03 0.48200E+03 0.40000E+02 0.50000E+02 0.48200E+03 0.48300E+03 0.40000E+02 0.50000E+02 0.48300E+03 0.48400E+03 0.40000E+02 0.50000E+02 0.48400E+03 0.48500E+03 0.40000E+02 0.50000E+02 0.48500E+03 0.48600E+03 0.40000E+02 0.50000E+02 0.48600E+03 0.48700E+03 0.40000E+02 0.50000E+02 0.48700E+03 0.48800E+03 0.40000E+02 0.50000E+02 0.48800E+03 0.48900E+03 0.40000E+02 0.50000E+02 0.48900E+03 0.49000E+03 0.40000E+02 0.50000E+02 0.49000E+03 0.49100E+03 0.40000E+02 0.50000E+02 0.49100E+03 0.49200E+03 0.40000E+02 0.50000E+02 0.49200E+03 0.49300E+03 0.40000E+02 0.50000E+02 0.49300E+03 0.49400E+03 0.40000E+02 0.50000E+02 0.49400E+03 0.49500E+03 0.40000E+02 0.50000E+02 0.49500E+03 0.49600E+03 0.40000E+02 0.50000E+02 0.49600E+03 0.49700E+03 0.40000E+02 0.50000E+02 0.49700E+03 0.49800E+03 0.40000E+02 0.50000E+02 0.49800E+03 0.49900E+03 0.40000E+02 0.50000E+02 0.49900E+03 0.50000E+03 0.40000E+02 0.50000E+02 0.50000E+03 0.50100E+03 0.40000E+02 0.50000E+02 0.50100E+03 0.50200E+03 0.40000E+02 0.50000E+02 0.50200E+03 0.50300E+03 0.40000E+02 0.50000E+02 0.50300E+03 0.50400E+03 0.40000E+02 0.50000E+02 0.50400E+03 0.50500E+03 0.40000E+02 0.50000E+02 0.50500E+03 0.50600E+03 0.40000E+02 0.50000E+02 0.50600E+03 0.50700E+03 0.40000E+02 0.50000E+02 0.50700E+03 0.50800E+03 0.40000E+02 0.50000E+02 0.50800E+03 0.50900E+03 0.40000E+02 0.50000E+02 0.50900E+03 0.51000E+03 0.40000E+02 0.50000E+02 0.51000E+03 0.51100E+03 0.40000E+02 0.50000E+02 0.51100E+03 0.51200E+03 0.40000E+02 0.50000E+02 0.51200E+03 0.51300E+03 0.40000E+02 0.50000E+02 0.51300E+03 0.51400E+03 0.40000E+02 0.50000E+02 0.51400E+03 0.51500E+03 0.40000E+02 0.50000E+02 0.51500E+03 0.51600E+03 0.40000E+02 0.50000E+02 0.51600E+03 0.51700E+03 0.40000E+02 0.50000E+02 0.51700E+03 0.51800E+03 0.40000E+02 0.50000E+02 0.51800E+03 0.51900E+03 0.40000E+02 0.50000E+02 0.51900E+03 0.52000E+03 0.40000E+02 0.50000E+02 0.52000E+03 0.52100E+03 0.40000E+02 0.50000E+02 0.52100E+03 0.52200E+03 0.40000E+02 0.50000E+02 0.52200E+03 0.52300E+03 0.40000E+02 0.50000E+02 0.52300E+03 0.52400E+03 0.40000E+02 0.50000E+02 0.52400E+03 0.52500E+03 0.40000E+02 0.50000E+02 0.52500E+03 0.52600E+03 0.40000E+02 0.50000E+02 0.52600E+03 0.52700E+03 0.40000E+02 0.50000E+02 0.52700E+03 0.52800E+03 0.40000E+02 0.50000E+02 0.52800E+03 0.52900E+03 0.40000E+02 0.50000E+02 0.52900E+03 0.53000E+03 0.40000E+02 0.50000E+02 0.53000E+03 0.53100E+03 0.40000E+02 0.50000E+02 0.53100E+03 0.53200E+03 0.40000E+02 0.50000E+02 0.53200E+03 0.53300E+03 0.40000E+02 0.50000E+02 0.53300E+03 0.53400E+03 0.40000E+02 0.50000E+02 0.53400E+03 0.53500E+03 0.40000E+02 0.50000E+02 0.53500E+03 0.53600E+03 0.40000E+02 0.50000E+02 0.53600E+03 0.53700E+03 0.40000E+02 0.50000E+02 0.53700E+03 0.53800E+03 0.40000E+02 0.50000E+02 0.53800E+03 0.53900E+03 0.40000E+02 0.50000E+02 0.53900E+03 0.54000E+03 0.40000E+02 0.50000E+02 0.54000E+03 0.54100E+03 0.40000E+02 0.50000E+02 0.54100E+03 0.54200E+03 0.40000E+02 0.50000E+02 0.54200E+03 0.54300E+03 0.40000E+02 0.50000E+02 0.54300E+03 0.54400E+03 0.40000E+02 0.50000E+02 0.54400E+03 0.54500E+03 0.40000E+02 0.50000E+02 0.54500E+03 0.54600E+03 0.40000E+02 0.50000E+02 0.54600E+03 0.54700E+03 0.40000E+02 0.50000E+02 0.54700E+03 0.54800E+03 0.40000E+02 0.50000E+02 0.54800E+03 0.54900E+03 0.40000E+02 0.50000E+02 0.54900E+03 0.55000E+03 0.40000E+02 0.50000E+02 0.55000E+03 0.55100E+03 0.40000E+02 0.50000E+02 0.55100E+03 0.55200E+03 0.40000E+02 0.50000E+02 0.55200E+03 0.55300E+03 0.40000E+02 0.50000E+02 0.55300E+03 0.55400E+03 0.40000E+02 0.50000E+02 0.55400E+03 0.55500E+03 0.40000E+02 0.50000E+02 0.55500E+03 0.55600E+03 0.40000E+02 0.50000E+02 0.55600E+03 0.55700E+03 0.40000E+02 0.50000E+02 0.55700E+03 0.55800E+03 0.40000E+02 0.50000E+02 0.55800E+03 0.55900E+03 0.40000E+02 0.50000E+02 0.55900E+03 0.56000E+03 0.40000E+02 0.50000E+02 0.56000E+03 0.56100E+03 0.40000E+02 0.50000E+02 0.56100E+03 0.56200E+03 0.40000E+02 0.50000E+02 0.56200E+03 0.56300E+03 0.40000E+02 0.50000E+02 0.56300E+03 0.56400E+03 0.40000E+02 0.50000E+02 0.56400E+03 0.56500E+03 0.40000E+02 0.50000E+02 0.56500E+03 0.56600E+03 0.40000E+02 0.50000E+02 0.56600E+03 0.56700E+03 0.40000E+02 0.50000E+02 0.56700E+03 0.56800E+03 0.40000E+02 0.50000E+02 0.56800E+03 0.56900E+03 0.40000E+02 0.50000E+02 0.56900E+03 0.57000E+03 0.40000E+02 0.50000E+02 0.57000E+03 0.57100E+03 0.40000E+02 0.50000E+02 0.57100E+03 0.57200E+03 0.40000E+02 0.50000E+02 0.57200E+03 0.57300E+03 0.40000E+02 0.50000E+02 0.57300E+03 0.57400E+03 0.40000E+02 0.50000E+02 0.57400E+03 0.57500E+03 0.40000E+02 0.50000E+02 0.57500E+03 0.57600E+03 0.40000E+02 0.50000E+02 0.57600E+03 0.57700E+03 0.40000E+02 0.50000E+02 0.57700E+03 0.57800E+03 0.40000E+02 0.50000E+02 0.57800E+03 0.57900E+03 0.40000E+02 0.50000E+02 0.57900E+03 0.58000E+03 0.40000E+02 0.50000E+02 0.58000E+03 0.58100E+03 0.40000E+02 0.50000E+02 0.58100E+03 0.58200E+03 0.40000E+02 0.50000E+02 0.58200E+03 0.58300E+03 0.40000E+02 0.50000E+02 0.58300E+03 0.58400E+03 0.40000E+02 0.50000E+02 0.58400E+03 0.58500E+03 0.40000E+02 0.50000E+02 0.58500E+03 0.58600E+03 0.40000E+02 0.50000E+02 0.58600E+03 0.58700E+03 0.40000E+02 0.50000E+02 0.58700E+03 0.58800E+03 0.40000E+02 0.50000E+02 0.58800E+03 0.58900E+03 0.40000E+02 0.50000E+02 0.58900E+03 0.59000E+03 0.40000E+02 0.50000E+02 0.59000E+03 0.59100E+03 0.40000E+02 0.50000E+02 0.59100E+03 0.59200E+03 0.40000E+02 0.50000E+02 0.59200E+03 0.59300E+03 0.40000E+02 0.50000E+02 0.59300E+03 0.59400E+03 0.40000E+02 0.50000E+02 0.59400E+03 0.59500E+03 0.40000E+02 0.50000E+02 0.59500E+03 0.59600E+03 0.40000E+02 0.50000E+02 0.59600E+03 0.59700E+03 0.40000E+02 0.50000E+02 0.59700E+03 0.59800E+03 0.40000E+02 0.50000E+02 0.59800E+03 0.59900E+03 0.40000E+02 0.50000E+02 0.59900E+03 0.60000E+03 0.40000E+02 0.50000E+02 0.60000E+03 0.60800E+03 0.40000E+02 0.50000E+02 0.60800E+03 0.60900E+03 0.40000E+02 0.50000E+02 0.60900E+03 0.61000E+03 0.40000E+02 0.50000E+02 0.61000E+03 0.61100E+03 0.40000E+02 0.50000E+02 0.61100E+03 0.61200E+03 0.40000E+02 0.50000E+02 0.61200E+03 0.61300E+03 0.40000E+02 0.50000E+02 0.61300E+03 0.61400E+03 0.40000E+02 0.50000E+02 0.61400E+03 0.61500E+03 0.40000E+02 0.50000E+02 0.61500E+03 0.61600E+03 0.40000E+02 0.50000E+02 0.61600E+03 0.61700E+03 0.40000E+02 0.50000E+02 0.61700E+03 0.61800E+03 0.40000E+02 0.50000E+02 0.61800E+03 0.61900E+03 0.40000E+02 0.50000E+02 0.61900E+03 0.62000E+03 0.40000E+02 0.50000E+02 0.62000E+03 0.62100E+03 0.40000E+02 0.50000E+02 0.62100E+03 0.62200E+03 0.40000E+02 0.50000E+02 0.62200E+03 0.62300E+03 0.40000E+02 0.50000E+02 0.62300E+03 0.62400E+03 0.40000E+02 0.50000E+02 0.62400E+03 0.62500E+03 0.40000E+02 0.50000E+02 0.62500E+03 0.62600E+03 0.40000E+02 0.50000E+02 0.62600E+03 0.62700E+03 0.40040E+02 0.50000E+02 0.62700E+03 0.62800E+03 0.40080E+02 0.50000E+02 0.62800E+03 0.62900E+03 0.40120E+02 0.50000E+02 0.62900E+03 0.63000E+03 0.40160E+02 0.50000E+02 0.63000E+03 0.63100E+03 0.40200E+02 0.50000E+02 0.63100E+03 0.63200E+03 0.40240E+02 0.50000E+02 0.63200E+03 0.63300E+03 0.40280E+02 0.50000E+02 0.63300E+03 0.63400E+03 0.40320E+02 0.50000E+02 0.63400E+03 0.63500E+03 0.40360E+02 0.50000E+02 0.63500E+03 0.63600E+03 0.40400E+02 0.50000E+02 0.63600E+03 0.63700E+03 0.40440E+02 0.50000E+02 0.63700E+03 0.63800E+03 0.40480E+02 0.50000E+02 0.63800E+03 0.63900E+03 0.40520E+02 0.50000E+02 0.63900E+03 0.64000E+03 0.40560E+02 0.50000E+02 0.64000E+03 0.64100E+03 0.40600E+02 0.50000E+02 0.64100E+03 0.64200E+03 0.40640E+02 0.50000E+02 0.64200E+03 0.64300E+03 0.40680E+02 0.50000E+02 0.64300E+03 0.64400E+03 0.40720E+02 0.50000E+02 0.64400E+03 0.64500E+03 0.40760E+02 0.50000E+02 0.64500E+03 0.64600E+03 0.40800E+02 0.50000E+02 0.64600E+03 0.64700E+03 0.40840E+02 0.50000E+02 0.64700E+03 0.64800E+03 0.40880E+02 0.50000E+02 0.64800E+03 0.64900E+03 0.40920E+02 0.50000E+02 0.64900E+03 0.65000E+03 0.40960E+02 0.50000E+02 0.65000E+03 0.65100E+03 0.41000E+02 0.50000E+02 0.65100E+03 0.65200E+03 0.41040E+02 0.50000E+02 0.65200E+03 0.65300E+03 0.41080E+02 0.50000E+02 0.65300E+03 0.65400E+03 0.41120E+02 0.50000E+02 0.65400E+03 0.65500E+03 0.41160E+02 0.50000E+02 0.65500E+03 0.65600E+03 0.41200E+02 0.50000E+02 0.65600E+03 0.65700E+03 0.41240E+02 0.50000E+02 0.65700E+03 0.65800E+03 0.41280E+02 0.50000E+02 0.65800E+03 0.65900E+03 0.41320E+02 0.50000E+02 0.65900E+03 0.66000E+03 0.41360E+02 0.50000E+02 0.66000E+03 0.66100E+03 0.41400E+02 0.50000E+02 0.66100E+03 0.66200E+03 0.41440E+02 0.50000E+02 0.66200E+03 0.66300E+03 0.41480E+02 0.50000E+02 0.66300E+03 0.66400E+03 0.41520E+02 0.50000E+02 0.66400E+03 0.66500E+03 0.41560E+02 0.50000E+02 0.66500E+03 0.66600E+03 0.41600E+02 0.50000E+02 0.66600E+03 0.66700E+03 0.41640E+02 0.50000E+02 0.66700E+03 0.66800E+03 0.41680E+02 0.50000E+02 0.66800E+03 0.66900E+03 0.41720E+02 0.50000E+02 0.66900E+03 0.67000E+03 0.41760E+02 0.50000E+02 0.67000E+03 0.67100E+03 0.41800E+02 0.50000E+02 0.67100E+03 0.67200E+03 0.41840E+02 0.50000E+02 0.67200E+03 0.67300E+03 0.41880E+02 0.50000E+02 0.67300E+03 0.67400E+03 0.41920E+02 0.50000E+02 0.67400E+03 0.67500E+03 0.41960E+02 0.50000E+02 0.67500E+03 0.67600E+03 0.42000E+02 0.50000E+02 0.67600E+03 0.67700E+03 0.42040E+02 0.50000E+02 0.67700E+03 0.67800E+03 0.42080E+02 0.50000E+02 0.67800E+03 0.67900E+03 0.42120E+02 0.50000E+02 0.67900E+03 0.68000E+03 0.42160E+02 0.50000E+02 0.68000E+03 0.68100E+03 0.42200E+02 0.50000E+02 0.68100E+03 0.68200E+03 0.42240E+02 0.50000E+02 0.68200E+03 0.68300E+03 0.42280E+02 0.50000E+02 0.68300E+03 0.68400E+03 0.42320E+02 0.50000E+02 0.68400E+03 0.68500E+03 0.42360E+02 0.50000E+02 0.68500E+03 0.68600E+03 0.42400E+02 0.50000E+02 0.68600E+03 0.68700E+03 0.42440E+02 0.50000E+02 0.68700E+03 0.68800E+03 0.42480E+02 0.50000E+02 0.68800E+03 0.68900E+03 0.42520E+02 0.50000E+02 0.68900E+03 0.69000E+03 0.42560E+02 0.50000E+02 0.69000E+03 0.69100E+03 0.42600E+02 0.50000E+02 0.69100E+03 0.69200E+03 0.42640E+02 0.50000E+02 0.69200E+03 0.69300E+03 0.42680E+02 0.50000E+02 0.69300E+03 0.69400E+03 0.42720E+02 0.50000E+02 0.69400E+03 0.69500E+03 0.42760E+02 0.50000E+02 0.69500E+03 0.69600E+03 0.42800E+02 0.50000E+02 0.69600E+03 0.69700E+03 0.42840E+02 0.50000E+02 0.69700E+03 0.69800E+03 0.42880E+02 0.50000E+02 0.69800E+03 0.69900E+03 0.42920E+02 0.50000E+02 0.69900E+03 0.70000E+03 0.42960E+02 0.50000E+02 0.70000E+03 0.70100E+03 0.43000E+02 0.50000E+02 0.70100E+03 0.70200E+03 0.43040E+02 0.50000E+02 0.70200E+03 0.70300E+03 0.43080E+02 0.50000E+02 0.70300E+03 0.70400E+03 0.43120E+02 0.50000E+02 0.70400E+03 0.70500E+03 0.43160E+02 0.50000E+02 0.70500E+03 0.70600E+03 0.43200E+02 0.50000E+02 0.70600E+03 0.70700E+03 0.43240E+02 0.50000E+02 0.70700E+03 0.70800E+03 0.43280E+02 0.50000E+02 0.70800E+03 0.70900E+03 0.43320E+02 0.50000E+02 0.70900E+03 0.71000E+03 0.43360E+02 0.50000E+02 0.71000E+03 0.71100E+03 0.43400E+02 0.50000E+02 0.71100E+03 0.71200E+03 0.43440E+02 0.50000E+02 0.71200E+03 0.71300E+03 0.43480E+02 0.50000E+02 0.71300E+03 0.71400E+03 0.43520E+02 0.50000E+02 0.71400E+03 0.71500E+03 0.43560E+02 0.50000E+02 0.71500E+03 0.71600E+03 0.43600E+02 0.50000E+02 0.71600E+03 0.71700E+03 0.43640E+02 0.50000E+02 0.71700E+03 0.71800E+03 0.43680E+02 0.50000E+02 0.71800E+03 0.71900E+03 0.43720E+02 0.50000E+02 0.71900E+03 0.72000E+03 0.43760E+02 0.50000E+02 0.72000E+03 0.72100E+03 0.43800E+02 0.50000E+02 0.72100E+03 0.72200E+03 0.43840E+02 0.50000E+02 0.72200E+03 0.72300E+03 0.43880E+02 0.50000E+02 0.72300E+03 0.72400E+03 0.43920E+02 0.50000E+02 0.72400E+03 0.72500E+03 0.43960E+02 0.50000E+02 0.72500E+03 0.72600E+03 0.44000E+02 0.50000E+02 0.72600E+03 0.72700E+03 0.44040E+02 0.50000E+02 0.72700E+03 0.72800E+03 0.44080E+02 0.50000E+02 0.72800E+03 0.72900E+03 0.44120E+02 0.50000E+02 0.72900E+03 0.73000E+03 0.44160E+02 0.50000E+02 0.73000E+03 0.73100E+03 0.44200E+02 0.50000E+02 0.73100E+03 0.73200E+03 0.44240E+02 0.50000E+02 0.73200E+03 0.73300E+03 0.44280E+02 0.50000E+02 0.73300E+03 0.73400E+03 0.44320E+02 0.50000E+02 0.73400E+03 0.73500E+03 0.44360E+02 0.50000E+02 0.73500E+03 0.73600E+03 0.44400E+02 0.50000E+02 0.73600E+03 0.73700E+03 0.44440E+02 0.50000E+02 0.73700E+03 0.73800E+03 0.44480E+02 0.50000E+02 0.73800E+03 0.73900E+03 0.44520E+02 0.50000E+02 0.73900E+03 0.74000E+03 0.44560E+02 0.50000E+02 0.74000E+03 0.74100E+03 0.44600E+02 0.50000E+02 0.74100E+03 0.74200E+03 0.44640E+02 0.50000E+02 0.74200E+03 0.74300E+03 0.44680E+02 0.50000E+02 0.74300E+03 0.74400E+03 0.44720E+02 0.50000E+02 0.74400E+03 0.74500E+03 0.44760E+02 0.50000E+02 0.74500E+03 0.74600E+03 0.44800E+02 0.50000E+02 0.74600E+03 0.74700E+03 0.44840E+02 0.50000E+02 0.74700E+03 0.74800E+03 0.44880E+02 0.50000E+02 0.74800E+03 0.74900E+03 0.44920E+02 0.50000E+02 0.74900E+03 0.75000E+03 0.44960E+02 0.50000E+02 0.75000E+03 0.75100E+03 0.45000E+02 0.50000E+02 0.75100E+03 0.75200E+03 0.45040E+02 0.50000E+02 0.75200E+03 0.75300E+03 0.45080E+02 0.50000E+02 0.75300E+03 0.75400E+03 0.45120E+02 0.50000E+02 0.75400E+03 0.75500E+03 0.45160E+02 0.50000E+02 0.75500E+03 0.75600E+03 0.45200E+02 0.50000E+02 0.75600E+03 0.75700E+03 0.45240E+02 0.50000E+02 0.75700E+03 0.75800E+03 0.45280E+02 0.50000E+02 0.75800E+03 0.75900E+03 0.45320E+02 0.50000E+02 0.75900E+03 0.76000E+03 0.45360E+02 0.50000E+02 0.76000E+03 0.76100E+03 0.45400E+02 0.50000E+02 0.76100E+03 0.76200E+03 0.45440E+02 0.50000E+02 0.76200E+03 0.76300E+03 0.45480E+02 0.50000E+02 0.76300E+03 0.76400E+03 0.45520E+02 0.50000E+02 0.76400E+03 0.76500E+03 0.45560E+02 0.50000E+02 0.76500E+03 0.76600E+03 0.45600E+02 0.50000E+02 0.76600E+03 0.76700E+03 0.45640E+02 0.50000E+02 0.76700E+03 0.76800E+03 0.45680E+02 0.50000E+02 0.76800E+03 0.76900E+03 0.45720E+02 0.50000E+02 0.76900E+03 0.77000E+03 0.45760E+02 0.50000E+02 0.77000E+03 0.77100E+03 0.45800E+02 0.50000E+02 0.77100E+03 0.77200E+03 0.45840E+02 0.50000E+02 0.77200E+03 0.77300E+03 0.45880E+02 0.50000E+02 0.77300E+03 0.77400E+03 0.45920E+02 0.50000E+02 0.77400E+03 0.77500E+03 0.45960E+02 0.50000E+02 0.77500E+03 0.77600E+03 0.46000E+02 0.50000E+02 0.77600E+03 0.77700E+03 0.46040E+02 0.50000E+02 0.77700E+03 0.77800E+03 0.46080E+02 0.50000E+02 0.77800E+03 0.77900E+03 0.46120E+02 0.50000E+02 0.77900E+03 0.78000E+03 0.46160E+02 0.50000E+02 0.78000E+03 0.78100E+03 0.46200E+02 0.50000E+02 0.78100E+03 0.78200E+03 0.46240E+02 0.50000E+02 0.78200E+03 0.78300E+03 0.46280E+02 0.50000E+02 0.78300E+03 0.78400E+03 0.46320E+02 0.50000E+02 0.78400E+03 0.78500E+03 0.46360E+02 0.50000E+02 0.78500E+03 0.78600E+03 0.46400E+02 0.50000E+02 0.78600E+03 0.78700E+03 0.46440E+02 0.50000E+02 0.78700E+03 0.78800E+03 0.46480E+02 0.50000E+02 0.78800E+03 0.78900E+03 0.46520E+02 0.50000E+02 0.78900E+03 0.79000E+03 0.46560E+02 0.50000E+02 0.79000E+03 0.79100E+03 0.46600E+02 0.50000E+02 0.79100E+03 0.79200E+03 0.46640E+02 0.50000E+02 0.79200E+03 0.79300E+03 0.46680E+02 0.50000E+02 0.79300E+03 0.79400E+03 0.46720E+02 0.50000E+02 0.79400E+03 0.79500E+03 0.46760E+02 0.50000E+02 0.79500E+03 0.79600E+03 0.46800E+02 0.50000E+02 0.79600E+03 0.79700E+03 0.46840E+02 0.50000E+02 0.79700E+03 0.79800E+03 0.46880E+02 0.50000E+02 0.79800E+03 0.79900E+03 0.46920E+02 0.50000E+02 0.79900E+03 0.80000E+03 0.46960E+02 0.50000E+02 0.80000E+03 0.80100E+03 0.47000E+02 0.50000E+02 0.80100E+03 0.80200E+03 0.47040E+02 0.50000E+02 0.80200E+03 0.80300E+03 0.47080E+02 0.50000E+02 0.80300E+03 0.80400E+03 0.47120E+02 0.50000E+02 0.80400E+03 0.80500E+03 0.47160E+02 0.50000E+02 0.80500E+03 0.80600E+03 0.47200E+02 0.50000E+02 0.80600E+03 0.80700E+03 0.47240E+02 0.50000E+02 0.80700E+03 0.80800E+03 0.47280E+02 0.50000E+02 0.80800E+03 0.80900E+03 0.47320E+02 0.50000E+02 0.80900E+03 0.81000E+03 0.47360E+02 0.50000E+02 0.81000E+03 0.81100E+03 0.47400E+02 0.50000E+02 0.81100E+03 0.81200E+03 0.47440E+02 0.50000E+02 0.81200E+03 0.81300E+03 0.47480E+02 0.50000E+02 0.81300E+03 0.81400E+03 0.47520E+02 0.50000E+02 0.81400E+03 0.81500E+03 0.47560E+02 0.50000E+02 0.81500E+03 0.81600E+03 0.47600E+02 0.50000E+02 0.81600E+03 0.81700E+03 0.47640E+02 0.50000E+02 0.81700E+03 0.81800E+03 0.47680E+02 0.50000E+02 0.81800E+03 0.81900E+03 0.47720E+02 0.50000E+02 0.81900E+03 0.82000E+03 0.47760E+02 0.50000E+02 0.82000E+03 0.82100E+03 0.47800E+02 0.50000E+02 0.82100E+03 0.82200E+03 0.47840E+02 0.50000E+02 0.82200E+03 0.82300E+03 0.47880E+02 0.50000E+02 0.82300E+03 0.82400E+03 0.47920E+02 0.50000E+02 0.82400E+03 0.82500E+03 0.47960E+02 0.50000E+02 0.82500E+03 0.82600E+03 0.48000E+02 0.50000E+02 0.82600E+03 0.82700E+03 0.48040E+02 0.50000E+02 0.82700E+03 0.82800E+03 0.48080E+02 0.50000E+02 0.82800E+03 0.82900E+03 0.48120E+02 0.50000E+02 0.82900E+03 0.83000E+03 0.48160E+02 0.50000E+02 0.83000E+03 0.83100E+03 0.48200E+02 0.50000E+02 0.83100E+03 0.83200E+03 0.48240E+02 0.50000E+02 0.83200E+03 0.83300E+03 0.48280E+02 0.50000E+02 0.83300E+03 0.83400E+03 0.48320E+02 0.50000E+02 0.83400E+03 0.83500E+03 0.48360E+02 0.50000E+02 0.83500E+03 0.83600E+03 0.48400E+02 0.50000E+02 0.83600E+03 0.83700E+03 0.48440E+02 0.50000E+02 0.83700E+03 0.83800E+03 0.48480E+02 0.50000E+02 0.83800E+03 0.83900E+03 0.48520E+02 0.50000E+02 0.83900E+03 0.84000E+03 0.48560E+02 0.50000E+02 0.84000E+03 0.84100E+03 0.48600E+02 0.50000E+02 0.84100E+03 0.84200E+03 0.48640E+02 0.50000E+02 0.84200E+03 0.84300E+03 0.48680E+02 0.50000E+02 0.84300E+03 0.84400E+03 0.48720E+02 0.50000E+02 0.84400E+03 0.84500E+03 0.48760E+02 0.50000E+02 0.84500E+03 0.84600E+03 0.48800E+02 0.50000E+02 0.84600E+03 0.84700E+03 0.48840E+02 0.50000E+02 0.84700E+03 0.84800E+03 0.48880E+02 0.50000E+02 0.84800E+03 0.84900E+03 0.48920E+02 0.50000E+02 0.84900E+03 0.85000E+03 0.48960E+02 0.50000E+02 0.85000E+03 0.85100E+03 0.49000E+02 0.50000E+02 0.85100E+03 0.85200E+03 0.49040E+02 0.50000E+02 0.85200E+03 0.85300E+03 0.49080E+02 0.50000E+02 0.85300E+03 0.85400E+03 0.49120E+02 0.50000E+02 0.85400E+03 0.85500E+03 0.49160E+02 0.50000E+02 0.85500E+03 0.85600E+03 0.49200E+02 0.50000E+02 0.85600E+03 0.85700E+03 0.49240E+02 0.50000E+02 0.85700E+03 0.85800E+03 0.49280E+02 0.50000E+02 0.85800E+03 0.85900E+03 0.49320E+02 0.50000E+02 0.85900E+03 0.86000E+03 0.49360E+02 0.50000E+02 0.86000E+03 0.86100E+03 0.49400E+02 0.50000E+02 0.86100E+03 0.86200E+03 0.49440E+02 0.50000E+02 0.86200E+03 0.86300E+03 0.49480E+02 0.50000E+02 0.86300E+03 0.86400E+03 0.49520E+02 0.50000E+02 0.86400E+03 0.86500E+03 0.49560E+02 0.50000E+02 0.86500E+03 0.86600E+03 0.49600E+02 0.50000E+02 0.86600E+03 0.86700E+03 0.49640E+02 0.50000E+02 0.86700E+03 0.86800E+03 0.49680E+02 0.50000E+02 0.86800E+03 0.86900E+03 0.49720E+02 0.50000E+02 0.86900E+03 0.87000E+03 0.49760E+02 0.50000E+02 0.87000E+03 0.87100E+03 0.49800E+02 0.50000E+02 0.87100E+03 0.87200E+03 0.49840E+02 0.50000E+02 0.87200E+03 0.87300E+03 0.49880E+02 0.50000E+02 0.87300E+03 0.87400E+03 0.49920E+02 0.50000E+02 0.87400E+03 0.87500E+03 0.49960E+02 0.50000E+02 0.87500E+03 0.87600E+03 0.50000E+02 0.50000E+02 0.87600E+03 0.87700E+03 0.50040E+02 0.50000E+02 0.87700E+03 0.87800E+03 0.50080E+02 0.50000E+02 0.87800E+03 0.87900E+03 0.50120E+02 0.50000E+02 0.87900E+03 0.88000E+03 0.50160E+02 0.50000E+02 0.88000E+03 0.88100E+03 0.50200E+02 0.50000E+02 0.88100E+03 0.88200E+03 0.50240E+02 0.50000E+02 0.88200E+03 0.88300E+03 0.50280E+02 0.50000E+02 0.88300E+03 0.88400E+03 0.50320E+02 0.50000E+02 0.88400E+03 0.88500E+03 0.50360E+02 0.50000E+02 0.88500E+03 0.88600E+03 0.50400E+02 0.50000E+02 0.88600E+03 0.88700E+03 0.50440E+02 0.50000E+02 0.88700E+03 0.88800E+03 0.50480E+02 0.50000E+02 0.88800E+03 0.88900E+03 0.50520E+02 0.50000E+02 0.88900E+03 0.89000E+03 0.50560E+02 0.50000E+02 0.89000E+03 0.89100E+03 0.50600E+02 0.50000E+02 0.89100E+03 0.89200E+03 0.50640E+02 0.50000E+02 0.89200E+03 0.89300E+03 0.50680E+02 0.50000E+02 0.89300E+03 0.89400E+03 0.50720E+02 0.50000E+02 0.89400E+03 0.89500E+03 0.50760E+02 0.50000E+02 0.89500E+03 0.89600E+03 0.50800E+02 0.50000E+02 0.89600E+03 0.89700E+03 0.50840E+02 0.50000E+02 0.89700E+03 0.89800E+03 0.50880E+02 0.50000E+02 0.89800E+03 0.89900E+03 0.50920E+02 0.50000E+02 0.89900E+03 0.90000E+03 0.50960E+02 0.50000E+02 0.90000E+03 0.90100E+03 0.51000E+02 0.50000E+02 0.90100E+03 0.90200E+03 0.51040E+02 0.50000E+02 0.90200E+03 0.90300E+03 0.51080E+02 0.50000E+02 0.90300E+03 0.90400E+03 0.51120E+02 0.50000E+02 0.90400E+03 0.90500E+03 0.51160E+02 0.50000E+02 0.90500E+03 0.90600E+03 0.51200E+02 0.50000E+02 0.90600E+03 0.90700E+03 0.51240E+02 0.50000E+02 0.90700E+03 0.90800E+03 0.51280E+02 0.50000E+02 0.90800E+03 0.90900E+03 0.51320E+02 0.50000E+02 0.90900E+03 0.91000E+03 0.51360E+02 0.50000E+02 0.91000E+03 0.91100E+03 0.51400E+02 0.50000E+02 0.91100E+03 0.91200E+03 0.51440E+02 0.50000E+02 0.91200E+03 0.91300E+03 0.51480E+02 0.50000E+02 0.91300E+03 0.91400E+03 0.51520E+02 0.50000E+02 0.91400E+03 0.91500E+03 0.51560E+02 0.50000E+02 0.91500E+03 0.91600E+03 0.51600E+02 0.50000E+02 0.91600E+03 0.91700E+03 0.51640E+02 0.50000E+02 0.91700E+03 0.91800E+03 0.51680E+02 0.50000E+02 0.91800E+03 0.91900E+03 0.51720E+02 0.50000E+02 0.91900E+03 0.92000E+03 0.51760E+02 0.50000E+02 0.92000E+03 0.92100E+03 0.51800E+02 0.50000E+02 0.92100E+03 0.92200E+03 0.51840E+02 0.50000E+02 0.92200E+03 0.92300E+03 0.51880E+02 0.50000E+02 0.92300E+03 0.92400E+03 0.51920E+02 0.50000E+02 0.92400E+03 0.92500E+03 0.51960E+02 0.50000E+02 0.92500E+03 0.92600E+03 0.52000E+02 0.50000E+02 0.92600E+03 0.92700E+03 0.52040E+02 0.50000E+02 0.92700E+03 0.92800E+03 0.52080E+02 0.50000E+02 0.92800E+03 0.92900E+03 0.52120E+02 0.50000E+02 0.92900E+03 0.93000E+03 0.52160E+02 0.50000E+02 0.93000E+03 0.93100E+03 0.52200E+02 0.50000E+02 0.93100E+03 0.93200E+03 0.52240E+02 0.50000E+02 0.93200E+03 0.93300E+03 0.52280E+02 0.50000E+02 0.93300E+03 0.93400E+03 0.52320E+02 0.50000E+02 0.93400E+03 0.93500E+03 0.52360E+02 0.50000E+02 0.93500E+03 0.93600E+03 0.52400E+02 0.50000E+02 0.93600E+03 0.93700E+03 0.52440E+02 0.50000E+02 0.93700E+03 0.93800E+03 0.52480E+02 0.50000E+02 0.93800E+03 0.93900E+03 0.52520E+02 0.50000E+02 0.93900E+03 0.94000E+03 0.52560E+02 0.50000E+02 0.94000E+03 0.94100E+03 0.52600E+02 0.50000E+02 0.94100E+03 0.94200E+03 0.52640E+02 0.50000E+02 0.94200E+03 0.94300E+03 0.52680E+02 0.50000E+02 0.94300E+03 0.94400E+03 0.52720E+02 0.50000E+02 0.94400E+03 0.94500E+03 0.52760E+02 0.50000E+02 0.94500E+03 0.94600E+03 0.52800E+02 0.50000E+02 0.94600E+03 0.94700E+03 0.52840E+02 0.50000E+02 0.94700E+03 0.94800E+03 0.52880E+02 0.50000E+02 0.94800E+03 0.94900E+03 0.52920E+02 0.50000E+02 0.94900E+03 0.95000E+03 0.52960E+02 0.50000E+02 0.95000E+03 0.95100E+03 0.53000E+02 0.50000E+02 0.95100E+03 0.95200E+03 0.53040E+02 0.50000E+02 0.95200E+03 0.95300E+03 0.53080E+02 0.50000E+02 0.95300E+03 0.95400E+03 0.53120E+02 0.50000E+02 0.95400E+03 0.95500E+03 0.53160E+02 0.50000E+02 0.95500E+03 0.95600E+03 0.53200E+02 0.50000E+02 0.95600E+03 0.95700E+03 0.53240E+02 0.50000E+02 0.95700E+03 0.95800E+03 0.53280E+02 0.50000E+02 0.95800E+03 0.95900E+03 0.53320E+02 0.50000E+02 0.95900E+03 0.96000E+03 0.53360E+02 0.50000E+02 0.96000E+03 0.96100E+03 0.53400E+02 0.50000E+02 0.96100E+03 0.96200E+03 0.53440E+02 0.50000E+02 0.96200E+03 0.96300E+03 0.53480E+02 0.50000E+02 0.96300E+03 0.96400E+03 0.53520E+02 0.50000E+02 0.96400E+03 0.96500E+03 0.53560E+02 0.50000E+02 0.96500E+03 0.96600E+03 0.53600E+02 0.50000E+02 0.96600E+03 0.96700E+03 0.53640E+02 0.50000E+02 0.96700E+03 0.96800E+03 0.53680E+02 0.50000E+02 0.96800E+03 0.96900E+03 0.53720E+02 0.50000E+02 0.96900E+03 0.97000E+03 0.53760E+02 0.50000E+02 0.97000E+03 0.97100E+03 0.53800E+02 0.50000E+02 0.97100E+03 0.97200E+03 0.53840E+02 0.50000E+02 0.97200E+03 0.97300E+03 0.53880E+02 0.50000E+02 0.97300E+03 0.97400E+03 0.53920E+02 0.50000E+02 0.97400E+03 0.97500E+03 0.53960E+02 0.50000E+02 0.97500E+03 0.97600E+03 0.54000E+02 0.50000E+02 0.97600E+03 0.97700E+03 0.54040E+02 0.50000E+02 0.97700E+03 0.97800E+03 0.54080E+02 0.50000E+02 0.97800E+03 0.97900E+03 0.54120E+02 0.50000E+02 0.97900E+03 0.98000E+03 0.54160E+02 0.50000E+02 0.98000E+03 0.98100E+03 0.54200E+02 0.50000E+02 0.98100E+03 0.98200E+03 0.54240E+02 0.50000E+02 0.98200E+03 0.98300E+03 0.54280E+02 0.50000E+02 0.98300E+03 0.98400E+03 0.54320E+02 0.50000E+02 0.98400E+03 0.98500E+03 0.54360E+02 0.50000E+02 0.98500E+03 0.98600E+03 0.54400E+02 0.50000E+02 0.98600E+03 0.98700E+03 0.54440E+02 0.50000E+02 0.98700E+03 0.98800E+03 0.54480E+02 0.50000E+02 0.98800E+03 0.98900E+03 0.54520E+02 0.50000E+02 0.98900E+03 0.99000E+03 0.54560E+02 0.50000E+02 0.99000E+03 0.99100E+03 0.54600E+02 0.50000E+02 0.99100E+03 0.99200E+03 0.54640E+02 0.50000E+02 0.99200E+03 0.99300E+03 0.54680E+02 0.50000E+02 0.99300E+03 0.99400E+03 0.54720E+02 0.50000E+02 0.99400E+03 0.99500E+03 0.54760E+02 0.50000E+02 0.99500E+03 0.99600E+03 0.54800E+02 0.50000E+02 0.99600E+03 0.99700E+03 0.54840E+02 0.50000E+02 0.99700E+03 0.99800E+03 0.54880E+02 0.50000E+02 0.99800E+03 0.99900E+03 0.54920E+02 0.50000E+02 0.99900E+03 0.10000E+04 0.54960E+02 0.50000E+02 0.10000E+04 0.10010E+04 0.55000E+02 0.50000E+02 0.10010E+04 0.10020E+04 0.55040E+02 0.50000E+02 0.10020E+04 0.10030E+04 0.55080E+02 0.50000E+02 0.10030E+04 0.10040E+04 0.55120E+02 0.50000E+02 0.10040E+04 0.10050E+04 0.55160E+02 0.50000E+02 0.10050E+04 0.10060E+04 0.55200E+02 0.50000E+02 0.10060E+04 0.10070E+04 0.55240E+02 0.50000E+02 0.10070E+04 0.10080E+04 0.55280E+02 0.50000E+02 0.10080E+04 0.10090E+04 0.55320E+02 0.50000E+02 0.10090E+04 0.10100E+04 0.55360E+02 0.50000E+02 0.10100E+04 0.10110E+04 0.55400E+02 0.50000E+02 0.10110E+04 0.10120E+04 0.55440E+02 0.50000E+02 0.10120E+04 0.10130E+04 0.55480E+02 0.50000E+02 0.10130E+04 0.10140E+04 0.55520E+02 0.50000E+02 0.10140E+04 0.10150E+04 0.55560E+02 0.50000E+02 0.10150E+04 0.10160E+04 0.55600E+02 0.50000E+02 0.10160E+04 0.10170E+04 0.55640E+02 0.50000E+02 0.10170E+04 0.10180E+04 0.55680E+02 0.50000E+02 0.10180E+04 0.10190E+04 0.55720E+02 0.50000E+02 0.10190E+04 0.10200E+04 0.55760E+02 0.50000E+02 0.10200E+04 0.10210E+04 0.55800E+02 0.50000E+02 0.10210E+04 0.10220E+04 0.55840E+02 0.50000E+02 0.10220E+04 0.10230E+04 0.55880E+02 0.50000E+02 0.10230E+04 0.10240E+04 0.55920E+02 0.50000E+02 0.10240E+04 0.10250E+04 0.55960E+02 0.50000E+02 0.10250E+04 0.10260E+04 0.56000E+02 0.50000E+02 0.10260E+04 0.10270E+04 0.56040E+02 0.50000E+02 0.10270E+04 0.10280E+04 0.56080E+02 0.50000E+02 0.10280E+04 0.10290E+04 0.56120E+02 0.50000E+02 0.10290E+04 0.10300E+04 0.56160E+02 0.50000E+02 0.10300E+04 0.10310E+04 0.56200E+02 0.50000E+02 0.10310E+04 0.10320E+04 0.56240E+02 0.50000E+02 0.10320E+04 0.10330E+04 0.56280E+02 0.50000E+02 0.10330E+04 0.10340E+04 0.56320E+02 0.50000E+02 0.10340E+04 0.10350E+04 0.56360E+02 0.50000E+02 0.10350E+04 0.10360E+04 0.56400E+02 0.50000E+02 0.10360E+04 0.10370E+04 0.56440E+02 0.50000E+02 0.10370E+04 0.10380E+04 0.56480E+02 0.50000E+02 0.10380E+04 0.10390E+04 0.56520E+02 0.50000E+02 0.10390E+04 0.10400E+04 0.56560E+02 0.50000E+02 0.10400E+04 0.10410E+04 0.56600E+02 0.50000E+02 0.10410E+04 0.10420E+04 0.56640E+02 0.50000E+02 0.10420E+04 0.10430E+04 0.56680E+02 0.50000E+02 0.10430E+04 0.10440E+04 0.56720E+02 0.50000E+02 0.10440E+04 0.10450E+04 0.56760E+02 0.50000E+02 0.10450E+04 0.10460E+04 0.56800E+02 0.50000E+02 0.10460E+04 0.10470E+04 0.56840E+02 0.50000E+02 0.10470E+04 0.10480E+04 0.56880E+02 0.50000E+02 0.10480E+04 0.10490E+04 0.56920E+02 0.50000E+02 0.10490E+04 0.10500E+04 0.56960E+02 0.50000E+02 0.10500E+04 0.10510E+04 0.57000E+02 0.50000E+02 0.10510E+04 0.10520E+04 0.57040E+02 0.50000E+02 0.10520E+04 0.10530E+04 0.57080E+02 0.50000E+02 0.10530E+04 0.10540E+04 0.57120E+02 0.50000E+02 0.10540E+04 0.10550E+04 0.57160E+02 0.50000E+02 0.10550E+04 0.10560E+04 0.57200E+02 0.50000E+02 0.10560E+04 0.10570E+04 0.57240E+02 0.50000E+02 0.10570E+04 0.10580E+04 0.57280E+02 0.50000E+02 0.10580E+04 0.10590E+04 0.57320E+02 0.50000E+02 0.10590E+04 0.10600E+04 0.57360E+02 0.50000E+02 0.10600E+04 0.10610E+04 0.57400E+02 0.50000E+02 0.10610E+04 0.10620E+04 0.57440E+02 0.50000E+02 0.10620E+04 0.10700E+04 0.57760E+02 0.50000E+02 0.10700E+04 0.10710E+04 0.57800E+02 0.50000E+02 0.10710E+04 0.10720E+04 0.57840E+02 0.50000E+02 0.10720E+04 0.10730E+04 0.57880E+02 0.50000E+02 0.10730E+04 0.10740E+04 0.57920E+02 0.50000E+02 0.10740E+04 0.10750E+04 0.57960E+02 0.50000E+02 0.10750E+04 0.10760E+04 0.58000E+02 0.50000E+02 0.10760E+04 0.10770E+04 0.58040E+02 0.50000E+02 0.10770E+04 0.10780E+04 0.58080E+02 0.50000E+02 0.10780E+04 0.10790E+04 0.58120E+02 0.50000E+02 0.10790E+04 0.10800E+04 0.58160E+02 0.50000E+02 0.10800E+04 0.10810E+04 0.58200E+02 0.50000E+02 0.10810E+04 0.10820E+04 0.58240E+02 0.50000E+02 0.10820E+04 0.10830E+04 0.58280E+02 0.50000E+02 0.10830E+04 0.10840E+04 0.58320E+02 0.50000E+02 0.10840E+04 0.10850E+04 0.58360E+02 0.50000E+02 0.10850E+04 0.10860E+04 0.58400E+02 0.50000E+02 0.10860E+04 0.10870E+04 0.58440E+02 0.50000E+02 0.10870E+04 0.10880E+04 0.58480E+02 0.50000E+02 0.10880E+04 0.10890E+04 0.58520E+02 0.50000E+02 0.10890E+04 0.10900E+04 0.58560E+02 0.50000E+02 0.10900E+04 0.10910E+04 0.58600E+02 0.50000E+02 0.10910E+04 0.10920E+04 0.58640E+02 0.50000E+02 0.10920E+04 0.10930E+04 0.58680E+02 0.50000E+02 0.10930E+04 0.10940E+04 0.58720E+02 0.50000E+02 0.10940E+04 0.10950E+04 0.58760E+02 0.50000E+02 0.10950E+04 0.10960E+04 0.58800E+02 0.50000E+02 0.10960E+04 0.10970E+04 0.58840E+02 0.50000E+02 0.10970E+04 0.10980E+04 0.58880E+02 0.50000E+02 0.10980E+04 0.10990E+04 0.58920E+02 0.50000E+02 0.10990E+04 0.11000E+04 0.58960E+02 0.50000E+02 0.11000E+04 0.11010E+04 0.59000E+02 0.50000E+02 0.11010E+04 0.11020E+04 0.59040E+02 0.50000E+02 0.11020E+04 0.11030E+04 0.59080E+02 0.50000E+02 0.11030E+04 0.11040E+04 0.59120E+02 0.50000E+02 0.11040E+04 0.11050E+04 0.59160E+02 0.50000E+02 0.11050E+04 0.11060E+04 0.59200E+02 0.50000E+02 0.11060E+04 0.11070E+04 0.59240E+02 0.50000E+02 0.11070E+04 0.11080E+04 0.59280E+02 0.50000E+02 0.11080E+04 0.11090E+04 0.59320E+02 0.50000E+02 0.11090E+04 0.11100E+04 0.59360E+02 0.50000E+02 0.11100E+04 0.11110E+04 0.59400E+02 0.50000E+02 0.11110E+04 0.11120E+04 0.59440E+02 0.50000E+02 0.11120E+04 0.11130E+04 0.59480E+02 0.50000E+02 0.11130E+04 0.11140E+04 0.59520E+02 0.50000E+02 0.11140E+04 0.11150E+04 0.59560E+02 0.50000E+02 0.11150E+04 0.11160E+04 0.59600E+02 0.50000E+02 0.11160E+04 0.11170E+04 0.59640E+02 0.50000E+02 0.11170E+04 0.11180E+04 0.59680E+02 0.50000E+02 0.11180E+04 0.11190E+04 0.59720E+02 0.50000E+02 0.11190E+04 0.11200E+04 0.59760E+02 0.50000E+02 0.11200E+04 0.11210E+04 0.59800E+02 0.50000E+02 0.11210E+04 0.11220E+04 0.59840E+02 0.50000E+02 0.11220E+04 0.11230E+04 0.59880E+02 0.50000E+02 0.11230E+04 0.11240E+04 0.59920E+02 0.50000E+02 0.11240E+04 0.11250E+04 0.59960E+02 0.50000E+02 0.11250E+04 0.11260E+04 0.60000E+02 0.50000E+02 0.11260E+04 0.11270E+04 0.60040E+02 0.50000E+02 0.11270E+04 0.11280E+04 0.60080E+02 0.50000E+02 0.11280E+04 0.11290E+04 0.60120E+02 0.50000E+02 0.11290E+04 0.11300E+04 0.60160E+02 0.50000E+02 0.11300E+04 0.11310E+04 0.60200E+02 0.50000E+02 0.11310E+04 0.11320E+04 0.60240E+02 0.50000E+02 0.11320E+04 0.11330E+04 0.60280E+02 0.50000E+02 0.11330E+04 0.11340E+04 0.60320E+02 0.50000E+02 0.11340E+04 0.11350E+04 0.60360E+02 0.50000E+02 0.11350E+04 0.11360E+04 0.60400E+02 0.50000E+02 0.11360E+04 0.11370E+04 0.60440E+02 0.50000E+02 0.11370E+04 0.11380E+04 0.60480E+02 0.50000E+02 0.11380E+04 0.11390E+04 0.60520E+02 0.50000E+02 0.11390E+04 0.11400E+04 0.60560E+02 0.50000E+02 0.11400E+04 0.11410E+04 0.60600E+02 0.50000E+02 0.11410E+04 0.11420E+04 0.60640E+02 0.50000E+02 0.11420E+04 0.11430E+04 0.60680E+02 0.50000E+02 0.11430E+04 0.11440E+04 0.60720E+02 0.50000E+02 0.11440E+04 0.11450E+04 0.60760E+02 0.50000E+02 0.11450E+04 0.11460E+04 0.60800E+02 0.50000E+02 0.11460E+04 0.11470E+04 0.60840E+02 0.50000E+02 0.11470E+04 0.11480E+04 0.60880E+02 0.50000E+02 0.11480E+04 0.11490E+04 0.60920E+02 0.50000E+02 0.11490E+04 0.11500E+04 0.60960E+02 0.50000E+02 0.11500E+04 0.11510E+04 0.61000E+02 0.50000E+02 0.11510E+04 0.11520E+04 0.61040E+02 0.50000E+02 0.11520E+04 0.11530E+04 0.61080E+02 0.50000E+02 0.11530E+04 0.11540E+04 0.61120E+02 0.50000E+02 0.11540E+04 0.11550E+04 0.61160E+02 0.50000E+02 0.11550E+04 0.11560E+04 0.61200E+02 0.50000E+02 0.11560E+04 0.11570E+04 0.61240E+02 0.50000E+02 0.11570E+04 0.11580E+04 0.61280E+02 0.50000E+02 0.11580E+04 0.11590E+04 0.61320E+02 0.50000E+02 0.11590E+04 0.11600E+04 0.61360E+02 0.50000E+02 0.11600E+04 0.11610E+04 0.61400E+02 0.50000E+02 0.11610E+04 0.11620E+04 0.61440E+02 0.50000E+02 0.11620E+04 0.11630E+04 0.61480E+02 0.50000E+02 0.11630E+04 0.11640E+04 0.61520E+02 0.50000E+02 0.11640E+04 0.11650E+04 0.61560E+02 0.50000E+02 0.11650E+04 0.11660E+04 0.61600E+02 0.50000E+02 0.11660E+04 0.11670E+04 0.61640E+02 0.50000E+02 0.11670E+04 0.11680E+04 0.61680E+02 0.50000E+02 0.11680E+04 0.11690E+04 0.61720E+02 0.50000E+02 0.11690E+04 0.11700E+04 0.61760E+02 0.50000E+02 0.11700E+04 0.11710E+04 0.61800E+02 0.50000E+02 0.11710E+04 0.11720E+04 0.61840E+02 0.50000E+02 0.11720E+04 0.11730E+04 0.61880E+02 0.50000E+02 0.11730E+04 0.11740E+04 0.61920E+02 0.50000E+02 0.11740E+04 0.11750E+04 0.61960E+02 0.50000E+02 0.11750E+04 0.11760E+04 0.62000E+02 0.50000E+02 0.11760E+04 0.11770E+04 0.62040E+02 0.50000E+02 0.11770E+04 0.11780E+04 0.62080E+02 0.50000E+02 0.11780E+04 0.11790E+04 0.62120E+02 0.50000E+02 0.11790E+04 0.11800E+04 0.62160E+02 0.50000E+02 0.11800E+04 0.11810E+04 0.62200E+02 0.50000E+02 0.11810E+04 0.11820E+04 0.62240E+02 0.50000E+02 0.11820E+04 0.11830E+04 0.62280E+02 0.50000E+02 0.11830E+04 0.11840E+04 0.62320E+02 0.50000E+02 0.11840E+04 0.11850E+04 0.62360E+02 0.50000E+02 0.11850E+04 0.11860E+04 0.62400E+02 0.50000E+02 0.11860E+04 0.11870E+04 0.62440E+02 0.50000E+02 0.11870E+04 0.11880E+04 0.62480E+02 0.50000E+02 0.11880E+04 0.11890E+04 0.62520E+02 0.50000E+02 0.11890E+04 0.11900E+04 0.62560E+02 0.50000E+02 0.11900E+04 0.11910E+04 0.62600E+02 0.50000E+02 0.11910E+04 0.11920E+04 0.62640E+02 0.50000E+02 0.11920E+04 0.11930E+04 0.62680E+02 0.50000E+02 0.11930E+04 0.11940E+04 0.62720E+02 0.50000E+02 0.11940E+04 0.11950E+04 0.62760E+02 0.50000E+02 0.11950E+04 0.11960E+04 0.62800E+02 0.50000E+02 0.11960E+04 0.11970E+04 0.62840E+02 0.50000E+02 0.11970E+04 0.11980E+04 0.62880E+02 0.50000E+02 0.11980E+04 0.11990E+04 0.62920E+02 0.50000E+02 0.11990E+04 0.12000E+04 0.62960E+02 0.50000E+02 0.12000E+04 0.12010E+04 0.63000E+02 0.50000E+02 0.12010E+04 0.12020E+04 0.63040E+02 0.50000E+02 0.12020E+04 0.12030E+04 0.63080E+02 0.50000E+02 0.12030E+04 0.12040E+04 0.63120E+02 0.50000E+02 0.12040E+04 0.12050E+04 0.63160E+02 0.50000E+02 0.12050E+04 0.12060E+04 0.63200E+02 0.50000E+02 0.12060E+04 0.12070E+04 0.63240E+02 0.50000E+02 0.12070E+04 0.12080E+04 0.63280E+02 0.50000E+02 0.12080E+04 0.12090E+04 0.63320E+02 0.50000E+02 0.12090E+04 0.12100E+04 0.63360E+02 0.50000E+02 0.12100E+04 0.12110E+04 0.63400E+02 0.50000E+02 0.12110E+04 0.12120E+04 0.63440E+02 0.50000E+02 0.12120E+04 0.12130E+04 0.63480E+02 0.50000E+02 0.12130E+04 0.12140E+04 0.63520E+02 0.50000E+02 0.12140E+04 0.12150E+04 0.63560E+02 0.50000E+02 0.12150E+04 0.12160E+04 0.63600E+02 0.50000E+02 0.12160E+04 0.12170E+04 0.63640E+02 0.50000E+02 0.12170E+04 0.12180E+04 0.63680E+02 0.50000E+02 0.12180E+04 0.12190E+04 0.63720E+02 0.50000E+02 0.12190E+04 0.12200E+04 0.63760E+02 0.50000E+02 0.12200E+04 0.12210E+04 0.63800E+02 0.50000E+02 0.12210E+04 0.12220E+04 0.63840E+02 0.50000E+02 0.12220E+04 0.12230E+04 0.63880E+02 0.50000E+02 0.12230E+04 0.12240E+04 0.63920E+02 0.50000E+02 0.12240E+04 0.12250E+04 0.63960E+02 0.50000E+02 0.12250E+04 0.12260E+04 0.64000E+02 0.50000E+02 0.12260E+04 0.12270E+04 0.64040E+02 0.50000E+02 0.12270E+04 0.12280E+04 0.64080E+02 0.50000E+02 0.12280E+04 0.12290E+04 0.64120E+02 0.50000E+02 0.12290E+04 0.12300E+04 0.64160E+02 0.50000E+02 0.12300E+04 0.12310E+04 0.64200E+02 0.50000E+02 0.12310E+04 0.12320E+04 0.64240E+02 0.50000E+02 0.12320E+04 0.12330E+04 0.64280E+02 0.50000E+02 0.12330E+04 0.12340E+04 0.64320E+02 0.50000E+02 0.12340E+04 0.12350E+04 0.64360E+02 0.50000E+02 0.12350E+04 0.12360E+04 0.64400E+02 0.50000E+02 0.12360E+04 0.12370E+04 0.64440E+02 0.50000E+02 0.12370E+04 0.12380E+04 0.64480E+02 0.50000E+02 0.12380E+04 0.12390E+04 0.64520E+02 0.50000E+02 0.12390E+04 0.12400E+04 0.64560E+02 0.50000E+02 0.12400E+04 0.12410E+04 0.64600E+02 0.50000E+02 0.12410E+04 0.12420E+04 0.64640E+02 0.50000E+02 0.12420E+04 0.12430E+04 0.64680E+02 0.50000E+02 0.12430E+04 0.12440E+04 0.64720E+02 0.50000E+02 0.12440E+04 0.12450E+04 0.64760E+02 0.50000E+02 0.12450E+04 0.12460E+04 0.64800E+02 0.50000E+02 0.12460E+04 0.12470E+04 0.64840E+02 0.50000E+02 0.12470E+04 0.12480E+04 0.64880E+02 0.50000E+02 0.12480E+04 0.12490E+04 0.64920E+02 0.50000E+02 0.12490E+04 0.12500E+04 0.64960E+02 0.50000E+02 0.12500E+04 0.12510E+04 0.65000E+02 0.50000E+02 0.12510E+04 0.12520E+04 0.65040E+02 0.50000E+02 0.12520E+04 0.12530E+04 0.65080E+02 0.50000E+02 0.12530E+04 0.12540E+04 0.65120E+02 0.50000E+02 0.12540E+04 0.12550E+04 0.65160E+02 0.50000E+02 0.12550E+04 0.12560E+04 0.65200E+02 0.50000E+02 0.12560E+04 0.12570E+04 0.65240E+02 0.50000E+02 0.12570E+04 0.12580E+04 0.65280E+02 0.50000E+02 0.12580E+04 0.12590E+04 0.65320E+02 0.50000E+02 0.12590E+04 0.12600E+04 0.65360E+02 0.50000E+02 0.12600E+04 0.12610E+04 0.65400E+02 0.50000E+02 0.12610E+04 0.12620E+04 0.65440E+02 0.50000E+02 0.12620E+04 0.12630E+04 0.65480E+02 0.50000E+02 0.12630E+04 0.12640E+04 0.65520E+02 0.50000E+02 0.12640E+04 0.12650E+04 0.65560E+02 0.50000E+02 0.12650E+04 0.12660E+04 0.65600E+02 0.50000E+02 0.12660E+04 0.12670E+04 0.65640E+02 0.50000E+02 0.12670E+04 0.12680E+04 0.65680E+02 0.50000E+02 0.12680E+04 0.12690E+04 0.65720E+02 0.50000E+02 0.12690E+04 0.12700E+04 0.65760E+02 0.50000E+02 0.12700E+04 0.12710E+04 0.65800E+02 0.50000E+02 0.12710E+04 0.12720E+04 0.65840E+02 0.50000E+02 0.12720E+04 0.12730E+04 0.65880E+02 0.50000E+02 0.12730E+04 0.12740E+04 0.65920E+02 0.50000E+02 0.12740E+04 0.12750E+04 0.65960E+02 0.50000E+02 0.12750E+04 0.12760E+04 0.66000E+02 0.50000E+02 0.12760E+04 0.12770E+04 0.66040E+02 0.50000E+02 0.12770E+04 0.12780E+04 0.66080E+02 0.50000E+02 0.12780E+04 0.12790E+04 0.66120E+02 0.50000E+02 0.12790E+04 0.12800E+04 0.66160E+02 0.50000E+02 0.12800E+04 0.12810E+04 0.66200E+02 0.50000E+02 0.12810E+04 0.12820E+04 0.66240E+02 0.50000E+02 0.12820E+04 0.12830E+04 0.66280E+02 0.50000E+02 0.12830E+04 0.12840E+04 0.66320E+02 0.50000E+02 0.12840E+04 0.12850E+04 0.66360E+02 0.50000E+02 0.12850E+04 0.12860E+04 0.66400E+02 0.50000E+02 0.12860E+04 0.12870E+04 0.66440E+02 0.50000E+02 0.12870E+04 0.12880E+04 0.66480E+02 0.50000E+02 0.12880E+04 0.12890E+04 0.66520E+02 0.50000E+02 0.12890E+04 0.12900E+04 0.66560E+02 0.50000E+02 0.12900E+04 0.12910E+04 0.66600E+02 0.50000E+02 0.12910E+04 0.12920E+04 0.66640E+02 0.50000E+02 0.12920E+04 0.12930E+04 0.66680E+02 0.50000E+02 0.12930E+04 0.12940E+04 0.66720E+02 0.50000E+02 0.12940E+04 0.12950E+04 0.66760E+02 0.50000E+02 0.12950E+04 0.12960E+04 0.66800E+02 0.50000E+02 0.12960E+04 0.12970E+04 0.66840E+02 0.50000E+02 0.12970E+04 0.12980E+04 0.66880E+02 0.50000E+02 0.12980E+04 0.12990E+04 0.66920E+02 0.50000E+02 0.12990E+04 0.13000E+04 0.66960E+02 0.50000E+02 0.13000E+04 0.13010E+04 0.67000E+02 0.50000E+02 0.13010E+04 0.13020E+04 0.67040E+02 0.50000E+02 0.13020E+04 0.13030E+04 0.67080E+02 0.50000E+02 0.13030E+04 0.13040E+04 0.67120E+02 0.50000E+02 0.13040E+04 0.13050E+04 0.67160E+02 0.50000E+02 0.13050E+04 0.13060E+04 0.67200E+02 0.50000E+02 0.13060E+04 0.13070E+04 0.67240E+02 0.50000E+02 0.13070E+04 0.13080E+04 0.67280E+02 0.50000E+02 0.13080E+04 0.13090E+04 0.67320E+02 0.50000E+02 0.13090E+04 0.13100E+04 0.67360E+02 0.50000E+02 0.13100E+04 0.13110E+04 0.67400E+02 0.50000E+02 0.13110E+04 0.13120E+04 0.67440E+02 0.50000E+02 0.13120E+04 0.13130E+04 0.67480E+02 0.50000E+02 0.13130E+04 0.13140E+04 0.67520E+02 0.50000E+02 0.13140E+04 0.13150E+04 0.67560E+02 0.50000E+02 0.13150E+04 0.13160E+04 0.67600E+02 0.50000E+02 0.13160E+04 0.13170E+04 0.67640E+02 0.50000E+02 0.13170E+04 0.13180E+04 0.67680E+02 0.50000E+02 0.13180E+04 0.13190E+04 0.67720E+02 0.50000E+02 0.13190E+04 0.13200E+04 0.67760E+02 0.50000E+02 0.13200E+04 0.13210E+04 0.67800E+02 0.50000E+02 0.13210E+04 0.13220E+04 0.67840E+02 0.50000E+02 0.13220E+04 0.13230E+04 0.67880E+02 0.50000E+02 0.13230E+04 0.13240E+04 0.67920E+02 0.50000E+02 0.13240E+04 0.13250E+04 0.67960E+02 0.50000E+02 0.13250E+04 0.13260E+04 0.68000E+02 0.50000E+02 0.13260E+04 0.13270E+04 0.68040E+02 0.50000E+02 0.13270E+04 0.13280E+04 0.68080E+02 0.50000E+02 0.13280E+04 0.13290E+04 0.68120E+02 0.50000E+02 0.13290E+04 0.13300E+04 0.68160E+02 0.50000E+02 0.13300E+04 0.13310E+04 0.68200E+02 0.50000E+02 0.13310E+04 0.13320E+04 0.68240E+02 0.50000E+02 0.13320E+04 0.13330E+04 0.68280E+02 0.50000E+02 0.13330E+04 0.13340E+04 0.68320E+02 0.50000E+02 0.13340E+04 0.13350E+04 0.68360E+02 0.50000E+02 0.13350E+04 0.13360E+04 0.68400E+02 0.50000E+02 0.13360E+04 0.13370E+04 0.68440E+02 0.50000E+02 0.13370E+04 0.13380E+04 0.68480E+02 0.50000E+02 0.13380E+04 0.13390E+04 0.68520E+02 0.50000E+02 0.13390E+04 0.13400E+04 0.68560E+02 0.50000E+02 0.13400E+04 0.13410E+04 0.68600E+02 0.50000E+02 0.13410E+04 0.13420E+04 0.68640E+02 0.50000E+02 0.13420E+04 0.13430E+04 0.68680E+02 0.50000E+02 0.13430E+04 0.13440E+04 0.68720E+02 0.50000E+02 0.13440E+04 0.13450E+04 0.68760E+02 0.50000E+02 0.13450E+04 0.13460E+04 0.68800E+02 0.50000E+02 0.13460E+04 0.13470E+04 0.68840E+02 0.50000E+02 0.13470E+04 0.13480E+04 0.68880E+02 0.50000E+02 0.13480E+04 0.13490E+04 0.68920E+02 0.50000E+02 0.13490E+04 0.13500E+04 0.68960E+02 0.50000E+02 0.13500E+04 0.13510E+04 0.69000E+02 0.50000E+02 0.13510E+04 0.13520E+04 0.69040E+02 0.50000E+02 0.13520E+04 0.13530E+04 0.69080E+02 0.50000E+02 0.13530E+04 0.13540E+04 0.69120E+02 0.50000E+02 0.13540E+04 0.13550E+04 0.69160E+02 0.50000E+02 0.13550E+04 0.13560E+04 0.69200E+02 0.50000E+02 0.13560E+04 0.13570E+04 0.69240E+02 0.50000E+02 0.13570E+04 0.13580E+04 0.69280E+02 0.50000E+02 0.13580E+04 0.13590E+04 0.69320E+02 0.50000E+02 0.13590E+04 0.13600E+04 0.69360E+02 0.50000E+02 0.13600E+04 0.13610E+04 0.69400E+02 0.50000E+02 0.13610E+04 0.13620E+04 0.69440E+02 0.50000E+02 0.13620E+04 0.13630E+04 0.69480E+02 0.50000E+02 0.13630E+04 0.13640E+04 0.69520E+02 0.50000E+02 0.13640E+04 0.13650E+04 0.69560E+02 0.50000E+02 0.13650E+04 0.13660E+04 0.69600E+02 0.50000E+02 0.13660E+04 0.13670E+04 0.69640E+02 0.50000E+02 0.13670E+04 0.13680E+04 0.69680E+02 0.50000E+02 0.13680E+04 0.13690E+04 0.69720E+02 0.50000E+02 0.13690E+04 0.13700E+04 0.69760E+02 0.50000E+02 0.13700E+04 0.13710E+04 0.69800E+02 0.50000E+02 0.13710E+04 0.13720E+04 0.69840E+02 0.50000E+02 0.13720E+04 0.13730E+04 0.69880E+02 0.50000E+02 0.13730E+04 0.13740E+04 0.69920E+02 0.50000E+02 0.13740E+04 0.13750E+04 0.69960E+02 0.50000E+02 0.13750E+04 0.13760E+04 0.70000E+02 0.50000E+02 0.13760E+04 0.13770E+04 0.70000E+02 0.50000E+02 0.13770E+04 0.13780E+04 0.70000E+02 0.50000E+02 0.13780E+04 0.13790E+04 0.70000E+02 0.50000E+02 0.13790E+04 0.13800E+04 0.70000E+02 0.50000E+02 0.13800E+04 0.13810E+04 0.70000E+02 0.50000E+02 0.13810E+04 0.13820E+04 0.70000E+02 0.50000E+02 0.13820E+04 0.13830E+04 0.70000E+02 0.50000E+02 0.13830E+04 0.13840E+04 0.70000E+02 0.50000E+02 0.13840E+04 0.13850E+04 0.70000E+02 0.50000E+02 0.13850E+04 0.13860E+04 0.70000E+02 0.50000E+02 0.13860E+04 0.13870E+04 0.70000E+02 0.50000E+02 0.13870E+04 0.13880E+04 0.70000E+02 0.50000E+02 0.13880E+04 0.13890E+04 0.70000E+02 0.50000E+02 0.13890E+04 0.13900E+04 0.70000E+02 0.50000E+02 0.13900E+04 0.13910E+04 0.70000E+02 0.50000E+02 0.13910E+04 0.13920E+04 0.70000E+02 0.50000E+02 0.13920E+04 0.13930E+04 0.70000E+02 0.50000E+02 0.13930E+04 0.13940E+04 0.70000E+02 0.50000E+02 0.13940E+04 0.13950E+04 0.70000E+02 0.50000E+02 0.13950E+04 0.13960E+04 0.70000E+02 0.50000E+02 0.13960E+04 0.13970E+04 0.70000E+02 0.50000E+02 0.13970E+04 0.13980E+04 0.70000E+02 0.50000E+02 0.13980E+04 0.13990E+04 0.70000E+02 0.50000E+02 0.13990E+04 0.14000E+04 0.70000E+02 0.50000E+02 0.14000E+04 0.14010E+04 0.70000E+02 0.50000E+02 0.14010E+04 0.14020E+04 0.70000E+02 0.50000E+02 0.14020E+04 0.14030E+04 0.70000E+02 0.50000E+02 0.14030E+04 0.14040E+04 0.70000E+02 0.50000E+02 0.14040E+04 0.14050E+04 0.70000E+02 0.50000E+02 0.14050E+04 0.14060E+04 0.70000E+02 0.50000E+02 0.14060E+04 0.14070E+04 0.70000E+02 0.50000E+02 0.14070E+04 0.14080E+04 0.70000E+02 0.50000E+02 0.14080E+04 0.14090E+04 0.70000E+02 0.50000E+02 0.14090E+04 0.14100E+04 0.70000E+02 0.50000E+02 0.14100E+04 0.14110E+04 0.70000E+02 0.50000E+02 0.14110E+04 0.14120E+04 0.70000E+02 0.50000E+02 0.14120E+04 0.14130E+04 0.70000E+02 0.50000E+02 0.14130E+04 0.14140E+04 0.70000E+02 0.50000E+02 0.14140E+04 0.14150E+04 0.70000E+02 0.50000E+02 0.14150E+04 0.14160E+04 0.70000E+02 0.50000E+02 0.14160E+04 0.14170E+04 0.70000E+02 0.50000E+02 0.14170E+04 0.14180E+04 0.70000E+02 0.50000E+02 0.14180E+04 0.14190E+04 0.70000E+02 0.50000E+02 0.14190E+04 0.14200E+04 0.70000E+02 0.50000E+02 0.14200E+04 0.14210E+04 0.70000E+02 0.50000E+02 0.14210E+04 0.14220E+04 0.70000E+02 0.50000E+02 0.14220E+04 0.14230E+04 0.70000E+02 0.50000E+02 0.14230E+04 0.14240E+04 0.70000E+02 0.50000E+02 0.14240E+04 0.14250E+04 0.70000E+02 0.50000E+02 0.14250E+04 0.14260E+04 0.70000E+02 0.50000E+02 0.14260E+04 0.14270E+04 0.70000E+02 0.50000E+02 0.14270E+04 0.14290E+04 0.70000E+02 0.50000E+02 0.14290E+04 0.14300E+04 0.70000E+02 0.50000E+02 0.14300E+04 0.14310E+04 0.70000E+02 0.50000E+02 0.14310E+04 0.14320E+04 0.70000E+02 0.50000E+02 0.14320E+04 0.14330E+04 0.70000E+02 0.50000E+02 0.14330E+04 0.14340E+04 0.70000E+02 0.50000E+02 0.14340E+04 0.14350E+04 0.70000E+02 0.50000E+02 0.14350E+04 0.14360E+04 0.70000E+02 0.50000E+02 0.14360E+04 0.14370E+04 0.70000E+02 0.50000E+02 0.14370E+04 0.14380E+04 0.70000E+02 0.50000E+02 0.14380E+04 0.14390E+04 0.70000E+02 0.50000E+02 0.14390E+04 0.14400E+04 0.70000E+02 0.50000E+02 0.14400E+04 0.14410E+04 0.70000E+02 0.50000E+02 0.14410E+04 0.14420E+04 0.70000E+02 0.50000E+02 0.14420E+04 0.14430E+04 0.70000E+02 0.50000E+02 0.14430E+04 0.14440E+04 0.70000E+02 0.50000E+02 0.14440E+04 0.14450E+04 0.70000E+02 0.50000E+02 0.14450E+04 0.14460E+04 0.70000E+02 0.50000E+02 0.14460E+04 0.14470E+04 0.70000E+02 0.50000E+02 0.14470E+04 0.14480E+04 0.70000E+02 0.50000E+02 0.14480E+04 0.14490E+04 0.70000E+02 0.50000E+02 0.14490E+04 0.14500E+04 0.70000E+02 0.50000E+02 0.14500E+04 0.14510E+04 0.70000E+02 0.50000E+02 0.14510E+04 0.14520E+04 0.70000E+02 0.50000E+02 0.14520E+04 0.14530E+04 0.70000E+02 0.50000E+02 0.14530E+04 0.14540E+04 0.70000E+02 0.50000E+02 0.14540E+04 0.14550E+04 0.70000E+02 0.50000E+02 0.14550E+04 0.14560E+04 0.70000E+02 0.50000E+02 0.14560E+04 0.14570E+04 0.70000E+02 0.50000E+02 0.14570E+04 0.14580E+04 0.70000E+02 0.50000E+02 0.14580E+04 0.14590E+04 0.70000E+02 0.50000E+02 0.14590E+04 0.14600E+04 0.70000E+02 0.50000E+02 0.14600E+04 0.14610E+04 0.70000E+02 0.50000E+02 0.14610E+04 0.14620E+04 0.70000E+02 0.50000E+02 0.14620E+04 0.14630E+04 0.70000E+02 0.50000E+02 0.14630E+04 0.14640E+04 0.70000E+02 0.50000E+02 0.14640E+04 0.14650E+04 0.70000E+02 0.50000E+02 0.14650E+04 0.14660E+04 0.70000E+02 0.50000E+02 0.14660E+04 0.14670E+04 0.70000E+02 0.50000E+02 0.14670E+04 0.14680E+04 0.70000E+02 0.50000E+02 0.14680E+04 0.14690E+04 0.70000E+02 0.50000E+02 0.14690E+04 0.14700E+04 0.70000E+02 0.50000E+02 0.14700E+04 0.14710E+04 0.70000E+02 0.50000E+02 0.14710E+04 0.14720E+04 0.70000E+02 0.50000E+02 0.14720E+04 0.14730E+04 0.70000E+02 0.50000E+02 0.14730E+04 0.14740E+04 0.70000E+02 0.50000E+02 0.14740E+04 0.14750E+04 0.70000E+02 0.50000E+02 0.14750E+04 0.14760E+04 0.70000E+02 0.50000E+02 0.14760E+04 0.14770E+04 0.70000E+02 0.50000E+02 0.14770E+04 0.14780E+04 0.70000E+02 0.50000E+02 0.14780E+04 0.14790E+04 0.70000E+02 0.50000E+02 0.14790E+04 0.14800E+04 0.70000E+02 0.50000E+02 0.14800E+04 0.14810E+04 0.70000E+02 0.50000E+02 0.14810E+04 0.14820E+04 0.70000E+02 0.50000E+02 0.14820E+04 0.14830E+04 0.70000E+02 0.50000E+02 0.14830E+04 0.14840E+04 0.70000E+02 0.50000E+02 0.14840E+04 0.14850E+04 0.70000E+02 0.50000E+02 0.14850E+04 0.14860E+04 0.70000E+02 0.50000E+02 0.14860E+04 0.14870E+04 0.70000E+02 0.50000E+02 0.14870E+04 0.14880E+04 0.70000E+02 0.50000E+02 0.14880E+04 0.14890E+04 0.70000E+02 0.50000E+02 0.14890E+04 0.14900E+04 0.70000E+02 0.50000E+02 0.14900E+04 0.14910E+04 0.70000E+02 0.50000E+02 0.14910E+04 0.14920E+04 0.70000E+02 0.50000E+02 0.14920E+04 0.14930E+04 0.70000E+02 0.50000E+02 0.14930E+04 0.14940E+04 0.70000E+02 0.50000E+02 0.14940E+04 0.14950E+04 0.70000E+02 0.50000E+02 0.14950E+04 0.14960E+04 0.70000E+02 0.50000E+02 0.14960E+04 0.14970E+04 0.70000E+02 0.50000E+02 0.14970E+04 0.14980E+04 0.70000E+02 0.50000E+02 0.14980E+04 0.14990E+04 0.70000E+02 0.50000E+02 0.14990E+04 0.15000E+04 0.70000E+02 0.50000E+02 0.15000E+04 0.15010E+04 0.70000E+02 0.50000E+02 0.15010E+04 0.15020E+04 0.70000E+02 0.50000E+02 0.15020E+04 0.15030E+04 0.70000E+02 0.50000E+02 0.15030E+04 0.15040E+04 0.70000E+02 0.50000E+02 0.15040E+04 0.15050E+04 0.70000E+02 0.50000E+02 0.15050E+04 0.15060E+04 0.70000E+02 0.50000E+02 0.15060E+04 0.15070E+04 0.70000E+02 0.50000E+02 0.15070E+04 0.15080E+04 0.70000E+02 0.50000E+02 0.15080E+04 0.15090E+04 0.70000E+02 0.50000E+02 0.15090E+04 0.15100E+04 0.70000E+02 0.50000E+02 0.15100E+04 0.15110E+04 0.70000E+02 0.50000E+02 0.15110E+04 0.15120E+04 0.70000E+02 0.50000E+02 0.15120E+04 0.15130E+04 0.70000E+02 0.50000E+02 0.15130E+04 0.15140E+04 0.70000E+02 0.50000E+02 0.15140E+04 0.15150E+04 0.70000E+02 0.50000E+02 0.15150E+04 0.15160E+04 0.70000E+02 0.50000E+02 0.15160E+04 0.15170E+04 0.70000E+02 0.50000E+02 0.15170E+04 0.15180E+04 0.70000E+02 0.50000E+02 0.15180E+04 0.15190E+04 0.70000E+02 0.50000E+02 0.15190E+04 0.15200E+04 0.70000E+02 0.50000E+02 0.15200E+04 0.15210E+04 0.70000E+02 0.50000E+02 0.15210E+04 0.15220E+04 0.70000E+02 0.50000E+02 0.15220E+04 0.15230E+04 0.70000E+02 0.50000E+02 0.15230E+04 0.15240E+04 0.70000E+02 0.50000E+02 0.15240E+04 0.15250E+04 0.70000E+02 0.50000E+02 0.15250E+04 0.15260E+04 0.70000E+02 0.50000E+02 0.15260E+04 0.15270E+04 0.70000E+02 0.50000E+02 0.15270E+04 0.15280E+04 0.70000E+02 0.50000E+02 0.15280E+04 0.15290E+04 0.70000E+02 0.50000E+02 0.15290E+04 0.15300E+04 0.70000E+02 0.50000E+02 0.15300E+04 0.15310E+04 0.70000E+02 0.50000E+02 0.15310E+04 0.15320E+04 0.70000E+02 0.50000E+02 0.15320E+04 0.15330E+04 0.70000E+02 0.50000E+02 0.15330E+04 0.15340E+04 0.70000E+02 0.50000E+02 0.15340E+04 0.15350E+04 0.70000E+02 0.50000E+02 0.15350E+04 0.15370E+04 0.70000E+02 0.50000E+02 0.15370E+04 0.15380E+04 0.70000E+02 0.50000E+02 0.15380E+04 0.15390E+04 0.70000E+02 0.50000E+02 0.15390E+04 0.15400E+04 0.70000E+02 0.50000E+02 0.15400E+04 0.15410E+04 0.70000E+02 0.50000E+02 0.15410E+04 0.15420E+04 0.70000E+02 0.50000E+02 0.15420E+04 0.15430E+04 0.70000E+02 0.50000E+02 0.15430E+04 0.15440E+04 0.70000E+02 0.50000E+02 0.15440E+04 0.15450E+04 0.70000E+02 0.50000E+02 0.15450E+04 0.15460E+04 0.70000E+02 0.50000E+02 0.15460E+04 0.15470E+04 0.70000E+02 0.50000E+02 0.15470E+04 0.15480E+04 0.70000E+02 0.50000E+02 0.15480E+04 0.15490E+04 0.70000E+02 0.50000E+02 0.15490E+04 0.15500E+04 0.70000E+02 0.50000E+02 0.15500E+04 0.15510E+04 0.70000E+02 0.50000E+02 0.15510E+04 0.15520E+04 0.70000E+02 0.50000E+02 0.15520E+04 0.15530E+04 0.70000E+02 0.50000E+02 0.15530E+04 0.15540E+04 0.70000E+02 0.50000E+02 0.15540E+04 0.15550E+04 0.70000E+02 0.50000E+02 0.15550E+04 0.15560E+04 0.70000E+02 0.50000E+02 0.15560E+04 0.15570E+04 0.70000E+02 0.50000E+02 0.15570E+04 0.15580E+04 0.70000E+02 0.50000E+02 0.15580E+04 0.15590E+04 0.70000E+02 0.50000E+02 0.15590E+04 0.15600E+04 0.70000E+02 0.50000E+02 0.15600E+04 0.15610E+04 0.70000E+02 0.50000E+02 0.15610E+04 0.15620E+04 0.70000E+02 0.50000E+02 0.15620E+04 0.15630E+04 0.70000E+02 0.50000E+02 0.15630E+04 0.15640E+04 0.70000E+02 0.50000E+02 0.15640E+04 0.15650E+04 0.70000E+02 0.50000E+02 0.15650E+04 0.15660E+04 0.70000E+02 0.50000E+02 0.15660E+04 0.15670E+04 0.70000E+02 0.50000E+02 0.15670E+04 0.15680E+04 0.70000E+02 0.50000E+02 0.15680E+04 0.15690E+04 0.70000E+02 0.50000E+02 0.15690E+04 0.15700E+04 0.70000E+02 0.50000E+02 0.15700E+04 0.15710E+04 0.70000E+02 0.50000E+02 0.15710E+04 0.15720E+04 0.70000E+02 0.50000E+02 0.15720E+04 0.15730E+04 0.70000E+02 0.50000E+02 0.15730E+04 0.15740E+04 0.70000E+02 0.50000E+02 0.15740E+04 0.15750E+04 0.70000E+02 0.50000E+02 0.15750E+04 0.15760E+04 0.70000E+02 0.50000E+02 0.15760E+04 0.15770E+04 0.70000E+02 0.50000E+02 0.15770E+04 0.15780E+04 0.70000E+02 0.50000E+02 0.15780E+04 0.15790E+04 0.70000E+02 0.50000E+02 0.15790E+04 0.15800E+04 0.70000E+02 0.50000E+02 0.15800E+04 0.15810E+04 0.70000E+02 0.50000E+02 0.15810E+04 0.15820E+04 0.70000E+02 0.50000E+02 0.15820E+04 0.15830E+04 0.70000E+02 0.50000E+02 0.15830E+04 0.15840E+04 0.70000E+02 0.50000E+02 0.15840E+04 0.15850E+04 0.70000E+02 0.50000E+02 0.15850E+04 0.15860E+04 0.70000E+02 0.50000E+02 0.15860E+04 0.15870E+04 0.70000E+02 0.50000E+02 0.15870E+04 0.15880E+04 0.70000E+02 0.50000E+02 0.15880E+04 0.15890E+04 0.70000E+02 0.50000E+02 0.15890E+04 0.15900E+04 0.70000E+02 0.50000E+02 0.15900E+04 0.15910E+04 0.70000E+02 0.50000E+02 0.15910E+04 0.15920E+04 0.70000E+02 0.50000E+02 0.15920E+04 0.15930E+04 0.70000E+02 0.50000E+02 0.15930E+04 0.15940E+04 0.70000E+02 0.50000E+02 0.15940E+04 0.15950E+04 0.70000E+02 0.50000E+02 0.15950E+04 0.15960E+04 0.70000E+02 0.50000E+02 0.15960E+04 0.15970E+04 0.70000E+02 0.50000E+02 0.15970E+04 0.15980E+04 0.70000E+02 0.50000E+02 0.15980E+04 0.15990E+04 0.70000E+02 0.50000E+02 0.15990E+04 0.16000E+04 0.70000E+02 0.50000E+02 0.16000E+04 0.16010E+04 0.70000E+02 0.50000E+02 0.16010E+04 0.16020E+04 0.70000E+02 0.50000E+02 0.16020E+04 0.16030E+04 0.70000E+02 0.50000E+02 0.16030E+04 0.16040E+04 0.70000E+02 0.50000E+02 0.16040E+04 0.16050E+04 0.70000E+02 0.50000E+02 0.16050E+04 0.16060E+04 0.70000E+02 0.50000E+02 0.16060E+04 0.16070E+04 0.70000E+02 0.50000E+02 0.16070E+04 0.16080E+04 0.70000E+02 0.50000E+02 0.16080E+04 0.16090E+04 0.70000E+02 0.50000E+02 0.16090E+04 0.16100E+04 0.70000E+02 0.50000E+02 0.16100E+04 0.16110E+04 0.70000E+02 0.50000E+02 0.16110E+04 0.16120E+04 0.70000E+02 0.50000E+02 0.16120E+04 0.16130E+04 0.70000E+02 0.50000E+02 0.16130E+04 0.16140E+04 0.70000E+02 0.50000E+02 0.16140E+04 0.16150E+04 0.70000E+02 0.50000E+02 0.16150E+04 0.16160E+04 0.70000E+02 0.50000E+02 0.16160E+04 0.16170E+04 0.70000E+02 0.50000E+02 0.16170E+04 0.16180E+04 0.70000E+02 0.50000E+02 0.16180E+04 0.16190E+04 0.70000E+02 0.50000E+02 0.16190E+04 0.16200E+04 0.70000E+02 0.50000E+02 0.16200E+04 0.16210E+04 0.70000E+02 0.50000E+02 0.16210E+04 0.16220E+04 0.70000E+02 0.50000E+02 0.16220E+04 0.16230E+04 0.70000E+02 0.50000E+02 0.16230E+04 0.16240E+04 0.70000E+02 0.50000E+02 0.16240E+04 0.16250E+04 0.70000E+02 0.50000E+02 0.16250E+04 0.16260E+04 0.70000E+02 0.50000E+02 0.16260E+04 0.16270E+04 0.70000E+02 0.50000E+02 0.16270E+04 0.16280E+04 0.70000E+02 0.50000E+02 0.16280E+04 0.16290E+04 0.70000E+02 0.50000E+02 0.16290E+04 0.16300E+04 0.70000E+02 0.50000E+02 0.16300E+04 0.16310E+04 0.70000E+02 0.50000E+02 0.16310E+04 0.16320E+04 0.70000E+02 0.50000E+02 0.16320E+04 0.16330E+04 0.70000E+02 0.50000E+02 0.16330E+04 0.16340E+04 0.70000E+02 0.50000E+02 0.16340E+04 0.16350E+04 0.70000E+02 0.50000E+02 0.16350E+04 0.16360E+04 0.70000E+02 0.50000E+02 0.16360E+04 0.16370E+04 0.70000E+02 0.50000E+02 0.16370E+04 0.16380E+04 0.70000E+02 0.50000E+02 0.16380E+04 0.16390E+04 0.70000E+02 0.50000E+02 0.16390E+04 0.16400E+04 0.70000E+02 0.50000E+02 0.16400E+04 0.16410E+04 0.70000E+02 0.50000E+02 0.16410E+04 0.16420E+04 0.70000E+02 0.50000E+02 0.16420E+04 0.16430E+04 0.70000E+02 0.50000E+02 0.16430E+04 0.16440E+04 0.70000E+02 0.50000E+02 0.16440E+04 0.16450E+04 0.70000E+02 0.50000E+02 0.16450E+04 0.16460E+04 0.70000E+02 0.50000E+02 0.16460E+04 0.16470E+04 0.70000E+02 0.50000E+02 0.16470E+04 0.16480E+04 0.70000E+02 0.50000E+02 0.16480E+04 0.16490E+04 0.70000E+02 0.50000E+02 0.16490E+04 0.16510E+04 0.70000E+02 0.50000E+02 0.16510E+04 0.16520E+04 0.70000E+02 0.50000E+02 0.16520E+04 0.16530E+04 0.70000E+02 0.50000E+02 0.16530E+04 0.16540E+04 0.70000E+02 0.50000E+02 0.16540E+04 0.16550E+04 0.70000E+02 0.50000E+02 0.16550E+04 0.16560E+04 0.70000E+02 0.50000E+02 0.16560E+04 0.16570E+04 0.70000E+02 0.50000E+02 0.16570E+04 0.16580E+04 0.70000E+02 0.50000E+02 0.16580E+04 0.16590E+04 0.70000E+02 0.50000E+02 0.16590E+04 0.16600E+04 0.70000E+02 0.50000E+02 0.16600E+04 0.16610E+04 0.70000E+02 0.50000E+02 0.16610E+04 0.16620E+04 0.70000E+02 0.50000E+02 0.16620E+04 0.16630E+04 0.70000E+02 0.50000E+02 0.16630E+04 0.16640E+04 0.70000E+02 0.50000E+02 0.16640E+04 0.16650E+04 0.70000E+02 0.50000E+02 0.16650E+04 0.16660E+04 0.70000E+02 0.50000E+02 0.16660E+04 0.16670E+04 0.70000E+02 0.50000E+02 0.16670E+04 0.16680E+04 0.70000E+02 0.50000E+02 0.16680E+04 0.16690E+04 0.70000E+02 0.50000E+02 0.16690E+04 0.16700E+04 0.70000E+02 0.50000E+02 0.16700E+04 0.16710E+04 0.70000E+02 0.50000E+02 0.16710E+04 0.16720E+04 0.70000E+02 0.50000E+02 0.16720E+04 0.16730E+04 0.70000E+02 0.50000E+02 0.16730E+04 0.16740E+04 0.70000E+02 0.50000E+02 0.16740E+04 0.16750E+04 0.70000E+02 0.50000E+02 0.16750E+04 0.16760E+04 0.70000E+02 0.50000E+02 0.16760E+04 0.16770E+04 0.70000E+02 0.50000E+02 0.16770E+04 0.16780E+04 0.70000E+02 0.50000E+02 0.16780E+04 0.16790E+04 0.70000E+02 0.50000E+02 0.16790E+04 0.16800E+04 0.70000E+02 0.50000E+02 0.16800E+04 0.16810E+04 0.70000E+02 0.50000E+02 0.16810E+04 0.16820E+04 0.70000E+02 0.50000E+02 0.16820E+04 0.16830E+04 0.70000E+02 0.50000E+02 0.16830E+04 0.16840E+04 0.70000E+02 0.50000E+02 0.16840E+04 0.16850E+04 0.70000E+02 0.50000E+02 0.16850E+04 0.16860E+04 0.70000E+02 0.50000E+02 0.16860E+04 0.16870E+04 0.70000E+02 0.50000E+02 0.16870E+04 0.16880E+04 0.70000E+02 0.50000E+02 0.16880E+04 0.16890E+04 0.70000E+02 0.50000E+02 0.16890E+04 0.16900E+04 0.70000E+02 0.50000E+02 0.16900E+04 0.16910E+04 0.70000E+02 0.50000E+02 0.16910E+04 0.16920E+04 0.70000E+02 0.50000E+02 0.16920E+04 0.16930E+04 0.70000E+02 0.50000E+02 0.16930E+04 0.16940E+04 0.70000E+02 0.50000E+02 0.16940E+04 0.16950E+04 0.70000E+02 0.50000E+02 0.16950E+04 0.16960E+04 0.70000E+02 0.50000E+02 0.16960E+04 0.16970E+04 0.70000E+02 0.50000E+02 0.16970E+04 0.16980E+04 0.70000E+02 0.50000E+02 0.16980E+04 0.16990E+04 0.70000E+02 0.50000E+02 0.16990E+04 0.17000E+04 0.70000E+02 0.50000E+02 0.17000E+04 0.17010E+04 0.70000E+02 0.50000E+02 0.17010E+04 0.17020E+04 0.70000E+02 0.50000E+02 0.17020E+04 0.17030E+04 0.70000E+02 0.50000E+02 0.17030E+04 0.17040E+04 0.70000E+02 0.50000E+02 0.17040E+04 0.17050E+04 0.70000E+02 0.50000E+02 0.17050E+04 0.17060E+04 0.70000E+02 0.50000E+02 0.17060E+04 0.17070E+04 0.70000E+02 0.50000E+02 0.17070E+04 0.17080E+04 0.70000E+02 0.50000E+02 0.17080E+04 0.17090E+04 0.70000E+02 0.50000E+02 0.17090E+04 0.17100E+04 0.70000E+02 0.50000E+02 0.17100E+04 0.17110E+04 0.70000E+02 0.50000E+02 0.17110E+04 0.17120E+04 0.70000E+02 0.50000E+02 0.17120E+04 0.17130E+04 0.70000E+02 0.50000E+02 0.17130E+04 0.17140E+04 0.70000E+02 0.50000E+02 0.17140E+04 0.17150E+04 0.70000E+02 0.50000E+02 0.17150E+04 0.17160E+04 0.70000E+02 0.50000E+02 0.17160E+04 0.17170E+04 0.70000E+02 0.50000E+02 0.17170E+04 0.17180E+04 0.70000E+02 0.50000E+02 0.17180E+04 0.17190E+04 0.70000E+02 0.50000E+02 0.17190E+04 0.17200E+04 0.70000E+02 0.50000E+02 0.17200E+04 0.17210E+04 0.70000E+02 0.50000E+02 0.17210E+04 0.17220E+04 0.70000E+02 0.50000E+02 0.17220E+04 0.17230E+04 0.70000E+02 0.50000E+02 0.17230E+04 0.17240E+04 0.70000E+02 0.50000E+02 0.17240E+04 0.17250E+04 0.70000E+02 0.50000E+02 0.17250E+04 0.17260E+04 0.70000E+02 0.50000E+02 0.17260E+04 0.17270E+04 0.70000E+02 0.50000E+02 0.17270E+04 0.17290E+04 0.70000E+02 0.50000E+02 0.17290E+04 0.17300E+04 0.70000E+02 0.50000E+02 0.17300E+04 0.17310E+04 0.70000E+02 0.50000E+02 0.17310E+04 0.17320E+04 0.70000E+02 0.50000E+02 0.17320E+04 0.17330E+04 0.70000E+02 0.50000E+02 0.17330E+04 0.17340E+04 0.70000E+02 0.50000E+02 0.17340E+04 0.17350E+04 0.70000E+02 0.50000E+02 0.17350E+04 0.17360E+04 0.70000E+02 0.50000E+02 0.17360E+04 0.17370E+04 0.70000E+02 0.50000E+02 0.17370E+04 0.17380E+04 0.70000E+02 0.50000E+02 0.17380E+04 0.17390E+04 0.70000E+02 0.50000E+02 0.17390E+04 0.17400E+04 0.70000E+02 0.50000E+02 0.17400E+04 0.17410E+04 0.70000E+02 0.50000E+02 0.17410E+04 0.17420E+04 0.70000E+02 0.50000E+02 0.17420E+04 0.17430E+04 0.70000E+02 0.50000E+02 0.17430E+04 0.17440E+04 0.70000E+02 0.50000E+02 0.17440E+04 0.17450E+04 0.70000E+02 0.50000E+02 0.17450E+04 0.17460E+04 0.70000E+02 0.50000E+02 0.17460E+04 0.17470E+04 0.70000E+02 0.50000E+02 0.17470E+04 0.17480E+04 0.70000E+02 0.50000E+02 0.17480E+04 0.17490E+04 0.70000E+02 0.50000E+02 0.17490E+04 0.17500E+04 0.70000E+02 0.50000E+02 0.17500E+04 0.17510E+04 0.70000E+02 0.50000E+02 0.17510E+04 0.17520E+04 0.70000E+02 0.50000E+02 0.17520E+04 0.17530E+04 0.70000E+02 0.50000E+02 0.17530E+04 0.17540E+04 0.70000E+02 0.50000E+02 0.17540E+04 0.17550E+04 0.70000E+02 0.50000E+02 0.17550E+04 0.17560E+04 0.70000E+02 0.50000E+02 0.17560E+04 0.17570E+04 0.70000E+02 0.50000E+02 0.17570E+04 0.17580E+04 0.70000E+02 0.50000E+02 0.17580E+04 0.17590E+04 0.70000E+02 0.50000E+02 0.17590E+04 0.17600E+04 0.70000E+02 0.50000E+02 0.17600E+04 0.17620E+04 0.70000E+02 0.50000E+02 0.17620E+04 0.17630E+04 0.70000E+02 0.50000E+02 0.17630E+04 0.17640E+04 0.70000E+02 0.50000E+02 0.17640E+04 0.17650E+04 0.70000E+02 0.50000E+02 0.17650E+04 0.17660E+04 0.70000E+02 0.50000E+02 0.17660E+04 0.17670E+04 0.70000E+02 0.50000E+02 0.17670E+04 0.17680E+04 0.70000E+02 0.50000E+02 0.17680E+04 0.17690E+04 0.70000E+02 0.50000E+02 0.17690E+04 0.17700E+04 0.70000E+02 0.50000E+02 0.17700E+04 0.17710E+04 0.70000E+02 0.50000E+02 0.17710E+04 0.17720E+04 0.70000E+02 0.50000E+02 0.17720E+04 0.17730E+04 0.70000E+02 0.50000E+02 0.17730E+04 0.17740E+04 0.70000E+02 0.50000E+02 0.17740E+04 0.17750E+04 0.70000E+02 0.50000E+02 0.17750E+04 0.17760E+04 0.70000E+02 0.50000E+02 0.17760E+04 0.17770E+04 0.70000E+02 0.50000E+02 0.17770E+04 0.17780E+04 0.70000E+02 0.50000E+02 0.17780E+04 0.17790E+04 0.70000E+02 0.50000E+02 0.17790E+04 0.17800E+04 0.70000E+02 0.50000E+02 0.17800E+04 0.17810E+04 0.70000E+02 0.50000E+02 0.17810E+04 0.17830E+04 0.70000E+02 0.50000E+02 0.17830E+04 0.17840E+04 0.70000E+02 0.50000E+02 0.17840E+04 0.17850E+04 0.70000E+02 0.50000E+02 0.17850E+04 0.17860E+04 0.70000E+02 0.50000E+02 0.17860E+04 0.17870E+04 0.70000E+02 0.50000E+02 0.17870E+04 0.17880E+04 0.70000E+02 0.50000E+02 0.17880E+04 0.17890E+04 0.70000E+02 0.50000E+02 0.17890E+04 0.17900E+04 0.70000E+02 0.50000E+02 0.17900E+04 0.17910E+04 0.70000E+02 0.50000E+02 0.17910E+04 0.17920E+04 0.70000E+02 0.50000E+02 0.17920E+04 0.17930E+04 0.70000E+02 0.50000E+02 0.17930E+04 0.17940E+04 0.70000E+02 0.50000E+02 0.17940E+04 0.17950E+04 0.70000E+02 0.50000E+02 0.17950E+04 0.17960E+04 0.70000E+02 0.50000E+02 0.17960E+04 0.17970E+04 0.70000E+02 0.50000E+02 0.17970E+04 0.17980E+04 0.70000E+02 0.50000E+02 0.17980E+04 0.17990E+04 0.70000E+02 0.50000E+02 0.17990E+04 0.18000E+04 0.70000E+02 0.50000E+02 0.18000E+04 0.18010E+04 0.70000E+02 0.50000E+02 0.18010E+04 0.18020E+04 0.70000E+02 0.50000E+02 0.18020E+04 0.18030E+04 0.70000E+02 0.50000E+02 0.18030E+04 0.18040E+04 0.70000E+02 0.50000E+02 0.18040E+04 0.18050E+04 0.70000E+02 0.50000E+02 0.18050E+04 0.18060E+04 0.70000E+02 0.50000E+02 0.18060E+04 0.18070E+04 0.70000E+02 0.50000E+02 0.18070E+04 0.18080E+04 0.70000E+02 0.50000E+02 0.18080E+04 0.18090E+04 0.70000E+02 0.50000E+02 0.18090E+04 0.18100E+04 0.70000E+02 0.50000E+02 0.18100E+04 0.18110E+04 0.70000E+02 0.50000E+02 0.18110E+04 0.18120E+04 0.70000E+02 0.50000E+02 0.18120E+04 0.18130E+04 0.70000E+02 0.50000E+02 0.18130E+04 0.18140E+04 0.70000E+02 0.50000E+02 0.18140E+04 0.18150E+04 0.70000E+02 0.50000E+02 0.18150E+04 0.18160E+04 0.70000E+02 0.50000E+02 0.18160E+04 0.18170E+04 0.70000E+02 0.50000E+02 0.18170E+04 0.18190E+04 0.70000E+02 0.50000E+02 0.18190E+04 0.18200E+04 0.70000E+02 0.50000E+02 0.18200E+04 0.18210E+04 0.70000E+02 0.50000E+02 0.18210E+04 0.18220E+04 0.70000E+02 0.50000E+02 0.18220E+04 0.18230E+04 0.70000E+02 0.50000E+02 0.18230E+04 0.18250E+04 0.70000E+02 0.50000E+02 0.18250E+04 0.18260E+04 0.70000E+02 0.50000E+02 0.18260E+04 0.18270E+04 0.70000E+02 0.50000E+02 0.18270E+04 0.18280E+04 0.70000E+02 0.50000E+02 0.18280E+04 0.18290E+04 0.70000E+02 0.50000E+02 0.18290E+04 0.18310E+04 0.70000E+02 0.50000E+02 0.18310E+04 0.18320E+04 0.70000E+02 0.50000E+02 0.18320E+04 0.18340E+04 0.70000E+02 0.50000E+02 0.18340E+04 0.18350E+04 0.70000E+02 0.50000E+02 0.18350E+04 0.18370E+04 0.70000E+02 0.50000E+02 0.18370E+04 0.18380E+04 0.70000E+02 0.50000E+02 0.18380E+04 0.18400E+04 0.70000E+02 0.50000E+02 0.18400E+04 0.18410E+04 0.70000E+02 0.50000E+02 0.18410E+04 0.18430E+04 0.70000E+02 0.50000E+02 0.18430E+04 0.18440E+04 0.70000E+02 0.50000E+02 0.18440E+04 0.18450E+04 0.70000E+02 0.50000E+02 0.18450E+04 0.18460E+04 0.70000E+02 0.50000E+02 0.18460E+04 0.18470E+04 0.70000E+02 0.50000E+02 0.18470E+04 0.18490E+04 0.70000E+02 0.50000E+02 0.18490E+04 0.18500E+04 0.70000E+02 0.50000E+02 0.18500E+04 0.18510E+04 0.70000E+02 0.50000E+02 0.18510E+04 0.18520E+04 0.70000E+02 0.50000E+02 0.18520E+04 0.18530E+04 0.70000E+02 0.50000E+02 0.18530E+04 0.18550E+04 0.70000E+02 0.50000E+02 0.18550E+04 0.18560E+04 0.70000E+02 0.50000E+02 0.18560E+04 0.18580E+04 0.70000E+02 0.50000E+02 0.18580E+04 0.18590E+04 0.70000E+02 0.50000E+02 0.18590E+04 0.18610E+04 0.70000E+02 0.50000E+02 0.18610E+04 0.18620E+04 0.70000E+02 0.50000E+02 0.18620E+04 0.18640E+04 0.70000E+02 0.50000E+02 0.18640E+04 0.18650E+04 0.70000E+02 0.50000E+02 0.18650E+04 0.18660E+04 0.70000E+02 0.50000E+02 0.18660E+04 0.18670E+04 0.70000E+02 0.50000E+02 0.18670E+04 0.18680E+04 0.70000E+02 0.50000E+02 0.18680E+04 0.18700E+04 0.70000E+02 0.50000E+02 0.18700E+04 0.18710E+04 0.70000E+02 0.50000E+02 0.18710E+04 0.18720E+04 0.70000E+02 0.50000E+02 0.18720E+04 0.18730E+04 0.70000E+02 0.50000E+02 0.18730E+04 0.18740E+04 0.70000E+02 0.50000E+02 0.18740E+04 0.18760E+04 0.70000E+02 0.50000E+02 0.18760E+04 0.18770E+04 0.70000E+02 0.50000E+02 0.18770E+04 0.18790E+04 0.70000E+02 0.50000E+02 0.18790E+04 0.18800E+04 0.70000E+02 0.50000E+02 0.18800E+04 0.18820E+04 0.70000E+02 0.50000E+02 0.18820E+04 0.18830E+04 0.70000E+02 0.50000E+02 0.18830E+04 0.18850E+04 0.70000E+02 0.50000E+02 0.18850E+04 0.18860E+04 0.70000E+02 0.50000E+02 0.18860E+04 0.18880E+04 0.70000E+02 0.50000E+02 0.18880E+04 0.18890E+04 0.70000E+02 0.50000E+02 0.18890E+04 0.18910E+04 0.70000E+02 0.50000E+02 0.18910E+04 0.18920E+04 0.70000E+02 0.50000E+02 0.18920E+04 0.18940E+04 0.70000E+02 0.50000E+02 0.18940E+04 0.18950E+04 0.70000E+02 0.50000E+02 0.18950E+04 0.18970E+04 0.70000E+02 0.50000E+02 0.18970E+04 0.18980E+04 0.70000E+02 0.50000E+02 0.18980E+04 0.19000E+04 0.70000E+02 0.50000E+02 0.19000E+04 0.19010E+04 0.70000E+02 0.50000E+02 0.19010E+04 0.19030E+04 0.70000E+02 0.50000E+02 0.19030E+04 0.19040E+04 0.70000E+02 0.50000E+02 0.19040E+04 0.19060E+04 0.70000E+02 0.50000E+02 0.19060E+04 0.19070E+04 0.70000E+02 0.50000E+02 0.19070E+04 0.19090E+04 0.70000E+02 0.50000E+02 0.19090E+04 0.19100E+04 0.70000E+02 0.50000E+02 0.19100E+04 0.19120E+04 0.70000E+02 0.50000E+02 0.19120E+04 0.19130E+04 0.70000E+02 0.50000E+02 0.19130E+04 0.19150E+04 0.70000E+02 0.50000E+02 0.19150E+04 0.19160E+04 0.70000E+02 0.50000E+02 0.19160E+04 0.19180E+04 0.70000E+02 0.50000E+02 0.19180E+04 0.19190E+04 0.70000E+02 0.50000E+02 0.19190E+04 0.19210E+04 0.70000E+02 0.50000E+02 0.19210E+04 0.19220E+04 0.70000E+02 0.50000E+02 0.19220E+04 0.19240E+04 0.70000E+02 0.50000E+02 0.19240E+04 0.19250E+04 0.70000E+02 0.50000E+02 0.19250E+04 0.19270E+04 0.70000E+02 0.50000E+02 0.19270E+04 0.19280E+04 0.70000E+02 0.50000E+02 0.19280E+04 0.19300E+04 0.70000E+02 0.50000E+02 0.19300E+04 0.19310E+04 0.70000E+02 0.50000E+02 0.19310E+04 0.19330E+04 0.70000E+02 0.50000E+02 0.19330E+04 0.19340E+04 0.70000E+02 0.50000E+02 0.19340E+04 0.19360E+04 0.70000E+02 0.50000E+02 0.19360E+04 0.19370E+04 0.70000E+02 0.50000E+02 0.19370E+04 0.19390E+04 0.70000E+02 0.50000E+02 0.19390E+04 0.19400E+04 0.70000E+02 0.50000E+02 0.19400E+04 0.19420E+04 0.70000E+02 0.50000E+02 0.19420E+04 0.19430E+04 0.70000E+02 0.50000E+02 0.19430E+04 0.19450E+04 0.70000E+02 0.50000E+02 0.19450E+04 0.19460E+04 0.70000E+02 0.50000E+02 0.19460E+04 0.19480E+04 0.70000E+02 0.50000E+02 0.19480E+04 0.19490E+04 0.70000E+02 0.50000E+02 0.19490E+04 0.19510E+04 0.70000E+02 0.50000E+02 0.19510E+04 0.19520E+04 0.70000E+02 0.50000E+02 0.19520E+04 0.19540E+04 0.70000E+02 0.50000E+02 0.19540E+04 0.19550E+04 0.70000E+02 0.50000E+02 0.19550E+04 0.19570E+04 0.70000E+02 0.50000E+02 0.19570E+04 0.19580E+04 0.70000E+02 0.50000E+02 0.19580E+04 0.19600E+04 0.70000E+02 0.50000E+02 0.19600E+04 0.19610E+04 0.70000E+02 0.50000E+02 0.19610E+04 0.19630E+04 0.70000E+02 0.50000E+02 0.19630E+04 0.19640E+04 0.70000E+02 0.50000E+02 0.19640E+04 0.19660E+04 0.70000E+02 0.50000E+02 0.19660E+04 0.19670E+04 0.70000E+02 0.50000E+02 0.19670E+04 0.19690E+04 0.70000E+02 0.50000E+02 0.19690E+04 0.19700E+04 0.70000E+02 0.50000E+02 0.19700E+04 0.19720E+04 0.70000E+02 0.50000E+02 0.19720E+04 0.19730E+04 0.70000E+02 0.50000E+02 0.19730E+04 0.19750E+04 0.70000E+02 0.50000E+02 0.19750E+04 0.19760E+04 0.70000E+02 0.50000E+02 0.19760E+04 0.19780E+04 0.70000E+02 0.50000E+02 0.19780E+04 0.19790E+04 0.70000E+02 0.50000E+02 0.19790E+04 0.19810E+04 0.70000E+02 0.50000E+02 0.19810E+04 0.19820E+04 0.70000E+02 0.50000E+02 0.19820E+04 0.19840E+04 0.70000E+02 0.50000E+02 0.19840E+04 0.19850E+04 0.70000E+02 0.50000E+02 0.19850E+04 0.19870E+04 0.70000E+02 0.50000E+02 0.19870E+04 0.19880E+04 0.70000E+02 0.50000E+02 0.19880E+04 0.19900E+04 0.70000E+02 0.50000E+02 0.19900E+04 0.19910E+04 0.70000E+02 0.50000E+02 0.19910E+04 0.19930E+04 0.70000E+02 0.50000E+02 0.19930E+04 0.19940E+04 0.70000E+02 0.50000E+02 0.19940E+04 0.19960E+04 0.70000E+02 0.50000E+02 0.19960E+04 0.19970E+04 0.70000E+02 0.50000E+02 0.19970E+04 0.19990E+04 0.70000E+02 0.50000E+02 0.19990E+04 0.20000E+04 0.70000E+02 0.50000E+02 0.20000E+04 0.20020E+04 0.70000E+02 0.50000E+02 0.20020E+04 0.20030E+04 0.70000E+02 0.50000E+02 0.20030E+04 0.20050E+04 0.70000E+02 0.50000E+02 0.20050E+04 0.20060E+04 0.70000E+02 0.50000E+02 0.20060E+04 0.20080E+04 0.70000E+02 0.50000E+02 0.20080E+04 0.20090E+04 0.70000E+02 0.50000E+02 0.20090E+04 0.20110E+04 0.70000E+02 0.50000E+02 0.20110E+04 0.20120E+04 0.70000E+02 0.50000E+02 0.20120E+04 0.20140E+04 0.70000E+02 0.50000E+02 0.20140E+04 0.20150E+04 0.70000E+02 0.50000E+02 0.20150E+04 0.20170E+04 0.70000E+02 0.50000E+02 0.20170E+04 0.20180E+04 0.70000E+02 0.50000E+02 0.20180E+04 0.20200E+04 0.70000E+02 0.50000E+02 0.20200E+04 0.20210E+04 0.70000E+02 0.50000E+02 0.20210E+04 0.20230E+04 0.70000E+02 0.50000E+02 0.20230E+04 0.20240E+04 0.70000E+02 0.50000E+02 0.20240E+04 0.20260E+04 0.70000E+02 0.50000E+02 0.20260E+04 0.20270E+04 0.70000E+02 0.50000E+02 0.20270E+04 0.20290E+04 0.70000E+02 0.50000E+02 0.20290E+04 0.20300E+04 0.70000E+02 0.50000E+02 0.20300E+04
c5d005dfc7e529f5f28879fd3600c45ffa55badf
449d555969bfd7befe906877abab098c6e63a0e8
/2885/CH15/EX15.3/ex15_3.sce
a7e94219085b24178fcc1da0e6d373584d662b5a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
219
sce
ex15_3.sce
//Caluclate the series resistance to convert it into voltmeter clear; clc; //soltion //given Im=100*10^-6;//A Rm=100;//ohm V=100;//V Rs=V/Im-Rm; printf("The value of series resistance is %.1f kΩ",Rs/1000);
b03050b845ef897d438fefec6cb602a27fa0e064
449d555969bfd7befe906877abab098c6e63a0e8
/1910/CH4/EX4.11/Chapter411.sce
0c6ae241736e121f443e11a6a2ecd966e191b8aa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,050
sce
Chapter411.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Introduction to heat transfer by S.K.Som, Chapter 4, Example 11") //A large slab wrought-iron is at a uniform temprature of Ti=550°C. //The temprature of one surface is suddenly changed to Tinf=50°C Tinf=50; Ti=550; //For slab conductivity(k=60W/(m*K)),Thermal diffusivity(alpha=1.6*10^-5m^2/s) //To calculate the time(t) required for the temprature to reach T=255°C at a depth of 80mm k=60; T=255; alpha=1.6^10-5; //Similarity parameter,eta=x/(2*(alpha*t)^0.5)=(10/t^0.5) //((T-Tinf)/(Ti-Tinf))=erf(10/t^0.5)...where erf is the error function. //Let ((T-Tinf)/(Ti-Tinf))=X X=((T-Tinf)/(Ti-Tinf)); //This implies erf(10/t^0.5)=0.41 //We read from the table the value of eta(=10/t^0.5)=0.38....corresponding to erf(eta)=0.41 //Therefore 10/t^0.5=0.38...this implies t=(10/0.38)^2 disp("The time required for the temprature to reach 255°C at a depth of 80mm, in minutes is") t=(10/0.38)^2/60
0b63e87c22f6bef504c4c57f8ab19acb502202be
2c2dc93267283e4aebcffffd5bd76e19ddcf5cc7
/output/C45-C.glass/Prob-result7.tst
9a8f42ab8a891f5e8d543ab0e0bdffe6697f53e8
[]
no_license
joseangeldiazg/probabilistic_keel
c9cf4ddc2cf750cbbeca88e6f84218084892ae1f
6c5ddf8c98cc7431d523b291e521d1e8607dc662
refs/heads/master
2020-05-21T12:26:41.754863
2017-01-08T10:29:44
2017-01-08T10:29:44
55,733,275
1
0
null
null
null
null
UTF-8
Scilab
false
false
981
tst
Prob-result7.tst
True-Class 1 2 3 4 5 6 7 1 0.9354838709677419 0.03225806451612903 0.0 0.0 0.0 0.0 0.03225806451612903 1 0.9354838709677419 0.03225806451612903 0.0 0.0 0.0 0.0 0.03225806451612903 1 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.9354838709677419 0.03225806451612903 0.0 0.0 0.0 0.0 0.03225806451612903 1 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.9354838709677419 0.03225806451612903 0.0 0.0 0.0 0.0 0.03225806451612903 1 0.9354838709677419 0.03225806451612903 0.0 0.0 0.0 0.0 0.03225806451612903 2 0.04 0.96 0.0 0.0 0.0 0.0 0.0 2 0.9354838709677419 0.03225806451612903 0.0 0.0 0.0 0.0 0.03225806451612903 2 0.0 1.0 0.0 0.0 0.0 0.0 0.0 2 0.0 1.0 0.0 0.0 0.0 0.0 0.0 2 0.04 0.96 0.0 0.0 0.0 0.0 0.0 2 0.0 1.0 0.0 0.0 0.0 0.0 0.0 2 0.04 0.96 0.0 0.0 0.0 0.0 0.0 3 0.9354838709677419 0.03225806451612903 0.0 0.0 0.0 0.0 0.03225806451612903 5 0.0 1.0 0.0 0.0 0.0 0.0 0.0 6 0.0 0.0 0.0 0.0 0.0 1.0 0.0 7 0.0 0.0 0.0 0.0 0.0 0.0 1.0 7 0.0 0.0 0.0 0.0 0.0 0.0 1.0 7 0.0 0.0 0.0 0.0 0.0 0.0 1.0
70d576b618ac38ef2baac36821d33619c012c956
449d555969bfd7befe906877abab098c6e63a0e8
/866/CH14/EX14.1/14_1.sce
d92386d337ecffd73dad195cdf75bca5943bce52
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
493
sce
14_1.sce
clc clear //initialisation of variables d= 2 //m t= 20 //mm p= 1.5 //N/mm^2 Load= 2500 //KN alpha= 60 //degrees //CALCULATIONS Cs= (p*d*10^3)/(2*t) Ls= (p*d*10^3)/(4*t) Ds= (Load*10^3)/(%pi*d*t*10^3) Ts= Ls+Ds sigman= (Ts*t*(cosd(90-alpha))^2+Cs*t*(cosd(alpha))^2)/t tab= Ts*sind(alpha)*cosd(alpha)-Cs*sind(alpha)*cosd(alpha) tmax= (Ts-Cs)/2 //RESULTS printf ('direct stress= %.1f N/mm^2',sigman) printf (' \n Shear stress=%.1f N/mm^2',tab) printf (' \n maximum Shear stress=%.1f N/mm^2',tmax)
4f83b696220f4d5e661df4bdc4e2af49f05e3c7a
449d555969bfd7befe906877abab098c6e63a0e8
/409/CH24/EX24.8/Example24_8.sce
3a5978de5efc5a19a23aaa36dc8bbf2af535f130
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,630
sce
Example24_8.sce
clear ; clc; // Example 24.8 printf('Example 24.8\n\n'); //page no. 741 // Solution Fig. E24.8 // Pick the system of whole process as shown in above figure of book // Given Q = 1.63 ;// Heat loss from the process - [ kW ] m_bm = 150 ;// Mass flow rate of biological media into the sterlizer -[kg/min] T_bm = 50 +273 ;// Temperature of biological media into the sterlizer - [K] T_sm = 75 + 273 ;// Temperature of sterlize media out of the sterlizer - [K] P_ss = 300 ;// Pressure of satureted steam entering the steam heater - [kPa] P_sc = 300 ;// Pressure of satureted condensate exiting the steam heater - [kPa] // Additional data of change in enthalpy is obtained from the steam table, according to book the data are H_w1 = 207.5 ;// Change in specific enthalpy of water at 50 degree C - [kJ/kg] H_w2 = 310.3 ;// Change in specific enthalpy of water at 75 degree C - [kJ/kg] H_ss = 2724.9 ;//Change in specific enthalpy of satureted steam entering the steam heater at 300 kPa - [kJ/kg] H_sc = 561.2 ;//Change in specific enthalpy of satureted condensate exiting the steam heater at 300 kPa - [kJ/kg] // Use following conditions to simplify the energy balance // 1. Proces is in steady state , so change in energy = 0. // 2. Assume del_KE and del_PE = 0. // 3. W = 0. // 4. Assume m1 = m2 = m_stm // The energy balance reduce to Q = H_out - H_in , using it m_sm = m_bm ;// By material balance -[kg/min] m_stm = (Q*60 - m_sm*H_w2 + m_bm * H_w1 )/(H_sc - H_ss ) ;// Mass flow rate of steam entering the steam heater - [kg/min] printf(' Mass flow rate of steam entering the steam heater is %.2f kg steam/min .\n',m_stm);
124478e14797219c4f48f6ca6ba33806fc814e30
449d555969bfd7befe906877abab098c6e63a0e8
/548/CH7/EX7.2/7_02.sce
a0ed36ed8813a44500933def7dc371e192165e7a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
309
sce
7_02.sce
pathname=get_absolute_file_path('7_02.sce') filename=pathname+filesep()+'7_02data.sci' exec(filename) Cmcg=Cmac+Clwb*(dh);disp(Cmcg,"Cmcg","Cmcg=Cmac+Clwb(dh)","moment coefficient about center of gravity Cmcg") printf("\Answer:\n") printf("\n\moment coefficient about center of gravity : %f \n\n",Cmcg)
2db2a64fabfe4e0c3c784e3c1a9a8bb6a3f14fa2
eb5936025640ccea178a740474cbe63c3c877762
/PriorityMux4Way2/PriorityMux4Way2.tst
39d8b936400699f855eb198f9cca82268e9b24da
[ "MIT" ]
permissive
SathvikJoel/project_hack
94bad0245f1b7ab0b128115fa117b601555dfce4
5d6bba6012472230bcca2730263e045a3b3174a1
refs/heads/master
2023-01-08T22:49:51.633858
2020-11-10T10:11:48
2020-11-10T10:11:48
289,897,875
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,438
tst
PriorityMux4Way2.tst
/* PriorityMux4Way2.tst: Tests the PriorityMux4Way2.hdl Program. The PriorityMux4Way2 Chip should return a bus representing the data in the line that has highest priority active request */ load PriorityMux4Way2.hdl, output-file PriorityMux4Way2.out, output-list r0 r1 r2 r3 x0%B1.2.1 x1%B1.2.1 x2%B1.2.1 x3%B1.2.1 out%B1.2.1; //Only r0 is active and all the possible 2 bit data in r0 set r0 1, set r1 0 , set r2 0 , set r3 0, set x0 0, set x1 0, set x2 0, set x3 0 , eval , output; set r0 1, set r1 0 , set r2 0 , set r3 0, set x0 1, set x1 0, set x2 0, set x3 0 , eval , output; set r0 1, set r1 0 , set r2 0 , set r3 0, set x0 2, set x1 0, set x2 0, set x3 0 , eval , output; set r0 1, set r1 0 , set r2 0 , set r3 0, set x0 3, set x1 0, set x2 0, set x3 0 , eval , output; // Atleat 2 request inputs to the priority encoder are active. 4 different combinations //of 2-bit data for combination of request inputs // let r2 , r3 be active set r0 0, set r1 0 , set r2 1 , set r3 1, set x0 3, set x1 1, set x2 2, set x3 0 , eval , output; // let r1,r2,r3 be active set r0 0, set r1 1 , set r2 1 , set r3 1, set x0 2, set x1 1, set x2 3, set x3 0, eval , output; // let r0 , r2 , r3 be active set r0 1, set r1 0 , set r2 1 , set r3 1, set x0 1, set x1 0, set x2 2, set x3 3 , eval , output; // let r1, r3 be active set r0 0, set r1 0 , set r2 0 , set r3 1, set x0 2, set x1 3, set x2 1, set x3 0 , eval , output;
6d54f26b3fd66d401a37307d4d7c244f67cd8d5f
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/bow/bow.14_6.tst
9e6085f2475d98d338dc18bee814f2c5838c718a
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
6,305
tst
bow.14_6.tst
14 17:0.09090909090909091 25:0.14285714285714285 32:1.0 40:0.16666666666666666 44:0.038461538461538464 63:0.2 65:0.25 66:1.0 78:0.3333333333333333 98:2.0 116:0.16666666666666666 194:1.0 222:0.3333333333333333 233:1.0 282:1.0 424:1.0 595:1.0 647:1.0 942:1.0 1040:1.0 1171:1.0 1461:1.0 1610:1.0 14 6:0.25 21:0.09090909090909091 44:0.019230769230769232 82:1.0 98:1.0 116:0.16666666666666666 185:1.0 194:0.5 231:1.0 447:0.25 928:1.0 963:1.0 1269:1.0 1612:1.0 14 4:1.0 6:0.25 17:0.18181818181818182 23:0.125 40:0.3333333333333333 66:1.0 78:0.3333333333333333 116:0.16666666666666666 194:0.5 253:1.0 279:1.0 317:1.0 336:1.0 467:1.0 554:1.0 595:1.0 651:1.0 963:1.0 1252:1.0 1253:1.0 1295:1.0 1345:1.0 1610:1.0 1624:1.0 14 130:0.5 157:0.2 375:1.0 14 4:1.0 6:1.25 13:2.0 17:0.18181818181818182 21:0.09090909090909091 23:0.25 25:0.42857142857142855 32:1.0 40:0.16666666666666666 44:0.057692307692307696 48:1.0 59:1.0 98:2.0 103:1.0 116:0.3333333333333333 118:1.0 120:1.0 157:0.2 193:0.2857142857142857 199:1.0 217:1.0 227:1.0 283:2.0 336:1.0 343:1.0 346:1.0 398:1.0 399:1.0 413:1.0 449:2.0 473:1.0 505:1.0 526:1.0 646:0.5 647:1.0 730:0.3333333333333333 1225:1.0 1389:1.0 1394:1.0 1462:1.0 1496:1.0 1549:1.0 1748:1.0 14 44:0.019230769230769232 59:1.0 83:0.5 98:1.0 102:1.0 104:1.0 368:0.5 424:1.0 1627:1.0 14 15:1.0 17:0.09090909090909091 21:0.18181818181818182 23:0.25 25:0.14285714285714285 32:3.0 44:0.019230769230769232 78:0.3333333333333333 98:1.0 116:0.16666666666666666 128:0.3333333333333333 130:0.5 194:1.0 241:2.0 247:1.0 248:1.0 272:1.0 282:3.0 328:1.0 336:1.0 368:0.5 369:1.0 414:0.5 449:2.0 467:2.0 595:1.0 1138:1.0 1211:1.0 1343:1.0 1356:1.0 1444:1.0 1646:1.0 1696:1.0 1795:1.0 14 18:1.0 21:0.09090909090909091 272:0.5 368:0.5 641:1.0 1270:1.0 14 50:1.0 14 4:1.0 40:0.3333333333333333 116:0.16666666666666666 130:0.5 194:0.5 426:0.16666666666666666 976:1.0 1379:1.0 14 4:1.0 17:0.09090909090909091 23:0.125 40:0.16666666666666666 44:0.038461538461538464 346:1.0 597:1.0 936:1.0 1295:1.0 1316:1.0 14 4:1.0 6:0.75 17:0.2727272727272727 21:0.18181818181818182 23:0.25 44:0.019230769230769232 48:1.0 384:1.0 414:0.5 493:1.0 1015:1.0 1040:1.0 1171:1.0 1415:1.0 1470:1.0 1658:1.0 14 6:0.25 8:1.0 23:0.125 44:0.019230769230769232 53:1.0 194:0.5 1107:1.0 1246:1.0 1306:1.0 1602:1.0 1719:1.0 14 4:1.0 6:0.25 32:1.0 328:1.0 368:0.5 1389:1.0 1741:1.0 14 6:0.75 8:1.0 17:0.09090909090909091 21:0.18181818181818182 23:0.375 25:0.14285714285714285 32:2.0 40:0.3333333333333333 44:0.019230769230769232 63:0.2 83:0.5 217:1.0 253:1.0 279:1.0 297:1.0 328:1.0 360:1.0 447:0.25 449:1.0 569:1.0 682:1.0 938:1.0 1040:1.0 1151:1.0 1155:1.0 1255:1.0 1410:2.0 1429:1.0 1461:1.0 14 9:0.5 17:0.2727272727272727 21:0.18181818181818182 23:0.125 25:0.14285714285714285 32:3.0 44:0.019230769230769232 195:1.0 242:1.0 368:0.5 467:2.0 733:1.0 933:1.0 1255:1.0 1356:1.0 1358:2.0 1624:1.0 1690:1.0 1796:1.0 14 4:1.0 9:0.5 21:0.36363636363636365 98:1.0 138:1.0 179:0.3333333333333333 225:0.5 282:1.0 369:2.0 447:0.25 449:1.0 649:0.5 1023:1.0 1229:1.0 1270:1.0 1282:1.0 1302:1.0 1392:1.0 14 6:0.5 17:0.09090909090909091 21:0.09090909090909091 58:0.5 68:1.0 369:3.0 447:0.25 516:1.0 548:0.3333333333333333 685:1.0 867:0.5 891:1.0 1015:1.0 1023:1.0 1080:1.0 1255:1.0 1577:1.0 14 4:1.0 17:0.09090909090909091 21:0.09090909090909091 179:0.3333333333333333 221:1.0 225:0.5 282:2.0 1151:1.0 1302:1.0 1709:1.0 14 6:1.0 17:0.2727272727272727 19:0.5 21:0.2727272727272727 23:0.25 25:0.42857142857142855 40:0.16666666666666666 44:0.11538461538461539 48:2.0 69:0.1 193:0.14285714285714285 194:0.5 222:0.3333333333333333 233:1.0 369:1.0 423:0.2 450:0.5 451:1.0 570:0.5 681:0.5 694:1.0 710:1.0 714:1.0 753:1.0 936:2.0 952:1.0 1023:1.0 1071:1.0 1124:1.0 1141:1.0 1171:1.0 1228:1.0 1229:1.0 1315:1.0 1531:1.0 1576:1.0 1610:1.0 14 6:0.5 21:0.09090909090909091 40:0.3333333333333333 48:1.0 232:1.0 253:1.0 628:1.0 928:1.0 1151:1.0 1242:1.0 1389:1.0 14 6:0.25 9:0.5 13:0.5 25:0.14285714285714285 40:0.16666666666666666 44:0.019230769230769232 210:0.16666666666666666 266:1.0 647:1.0 696:1.0 733:1.0 1170:1.0 14 66:1.0 116:0.16666666666666666 272:0.5 414:0.5 1679:1.0 14 25:0.14285714285714285 44:0.038461538461538464 48:1.0 66:1.0 83:0.5 98:1.0 107:0.25 116:0.16666666666666666 357:1.0 467:1.0 936:1.0 1118:1.0 1379:1.0 14 4:1.0 5:1.0 6:0.25 13:0.5 15:1.0 19:0.5 23:0.125 25:0.14285714285714285 44:0.07692307692307693 70:0.2 98:1.0 185:1.0 194:0.5 210:0.16666666666666666 360:1.0 393:1.0 424:1.0 449:1.0 867:0.5 895:1.0 997:1.0 1612:1.0 14 4:1.0 21:0.09090909090909091 44:0.038461538461538464 83:0.5 98:2.0 130:0.5 573:1.0 936:1.0 14 6:0.25 9:0.5 17:0.09090909090909091 40:0.16666666666666666 44:0.019230769230769232 59:1.0 78:0.3333333333333333 88:1.0 116:0.3333333333333333 207:1.0 343:1.0 570:0.5 1171:1.0 14 4:1.0 5:1.0 6:0.5 23:0.125 40:0.3333333333333333 44:0.038461538461538464 83:1.0 194:0.5 241:1.0 253:1.0 279:1.0 628:1.0 647:1.0 709:1.0 1230:1.0 1232:1.0 1308:1.0 1389:1.0 14 6:0.25 94:0.5 255:1.0 282:1.0 647:1.0 1785:1.0 14 25:0.14285714285714285 44:0.019230769230769232 92:1.0 128:0.3333333333333333 272:0.5 14 8:1.0 17:0.18181818181818182 21:0.09090909090909091 23:0.125 25:0.2857142857142857 32:1.0 37:0.5 40:0.3333333333333333 92:1.0 195:1.0 225:0.5 368:0.5 414:0.5 570:0.5 1184:1.0 1539:1.0 14 6:0.25 17:0.18181818181818182 21:0.09090909090909091 23:0.25 25:0.2857142857142857 40:0.16666666666666666 44:0.019230769230769232 92:1.0 282:1.0 368:0.5 451:1.0 501:1.0 14 6:0.25 17:0.09090909090909091 21:0.18181818181818182 92:1.0 14 6:0.25 44:0.019230769230769232 83:0.5 14 6:0.25 17:0.09090909090909091 19:0.5 23:0.125 25:0.14285714285714285 32:1.0 40:0.16666666666666666 44:0.038461538461538464 70:0.2 92:1.0 148:1.0 393:1.0 1015:1.0 1151:1.0 1246:1.0 1508:1.0 14 21:0.09090909090909091 23:0.25 25:0.14285714285714285 32:1.0 44:0.038461538461538464 103:1.0 245:1.0 730:0.3333333333333333 1665:1.0 14 17:0.09090909090909091 21:0.18181818181818182 23:0.125 25:0.14285714285714285 44:0.038461538461538464 70:0.2 92:2.0 112:1.0 184:0.25 210:0.16666666666666666 256:0.5 273:1.0 297:1.0 310:1.0 398:1.0 753:1.0 814:0.5 14 44:0.019230769230769232 98:1.0 386:1.0 1171:1.0 14 9:0.5 17:0.18181818181818182 23:0.125 25:0.2857142857142857 32:1.0 44:0.019230769230769232 98:2.0 104:1.0 215:1.0 217:1.0 368:0.5 369:1.0 1075:1.0 1151:1.0 1170:1.0 1595:1.0
5b67e67ac18d959d65eaf76598e97d7ea691aa54
449d555969bfd7befe906877abab098c6e63a0e8
/343/CH4/EX4.9/ex4_9.sce
031967dbb07effe9fbf409d2a4ababaef17f8409
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
215
sce
ex4_9.sce
clc wf=2500 //Assigning values to parameters w6=0.6*0.6*wf w5=0.5*0.5*wf disp("Watts",w6,"The copper loss at 60% full-load condition is"); disp("Watts",w5,"The copper loss at 50% full-load conditionis");
6a8e76917d84f906516c4db76e3a0db475ed5663
8c802fb8c6a8dc8ed61222ce257eb61f580a462e
/projects/01/DMux.tst
57974124679fb3c788b957f0f630abba22409af2
[]
no_license
radavis/nand2tetris
0703b55695378cd8ec279599a34114cbfba48ef7
021ba06dbbe203206b44360f162a0d64e2dc41f9
refs/heads/master
2021-01-01T20:05:37.036752
2015-05-16T19:13:31
2015-05-16T19:13:31
34,955,667
8
3
null
null
null
null
UTF-8
Scilab
false
false
294
tst
DMux.tst
// File name: projects/01/DMux.tst load DMux.hdl, output-file DMux.out, compare-to DMux.cmp, output-list in%B3.1.3 sel%B3.1.3 a%B3.1.3 b%B3.1.3; set in 0, set sel 0, eval, output; set sel 1, eval, output; set in 1, set sel 0, eval, output; set sel 1, eval, output;
8a5843e5f0bfb68fe6c556a0d9ff185140e24d71
a3821dccf6d2cf3720781d6ed6b66c49e03cdab4
/Source/WebContent/TypeScript/Browser/BrowserEventConfiguration.tst
89398d2b8091c7194554e8f7a115146610ec17a7
[]
no_license
backlof/Imglib
9cfb1047b766f9e05f69f3b32eea1c4e463187f0
f7d16e0be0e286dde7cb62a6576f73015cbba397
refs/heads/master
2021-05-07T06:58:05.503869
2018-02-07T12:48:29
2018-02-07T12:48:29
111,833,115
0
0
null
null
null
null
UTF-8
Scilab
false
false
884
tst
BrowserEventConfiguration.tst
${ using Typewriter.Extensions.Types; string Parameter(Method method) { if (method.Type == "void") { return ""; } else{ return $"param: {method.Type.name}"; } } string Stuff(Method method) { if (method.Type == "void") { return ""; } else{ return ", param"; } } Template(Settings settings) { settings.IncludeProject("Imglib"); settings.OutputFilenameFactory = (file) => { return "BrowserEventConfiguration.ts"; }; } }$Interfaces(x => x.Name == "IScriptInvokeFunction")[$Methods[var $name = ($Parameter) => { $(document).trigger("$Name"$Stuff); };][ ]] namespace Browser { export class BrowserEventConfiguration<T> { constructor(public name: string) { } } export var Event = {$Interfaces(x => x.Name == "IScriptInvokeFunction")[ $Methods[$Name: new BrowserEventConfiguration<$Type>("$Name")][, ]] }; }
e471d31580414e6d8ee31c7fe07942dc10e14a42
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/fftfilt/fftfilt7.sce
fde7434b77ace61dfc48b955753c9666be6d99a9
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
279
sce
fftfilt7.sce
//i/p arg x is of type char x=['c' 'c' 'c' 'd' 'f' 'e' 'g']; b=[0.1 2 3 4 0.12]; y=fftfilt(b,x); disp(y); ////output //!--error 53 //fftfilt: Wrong type for argument #2 (x); Real or complex entries expected //at line 68 of function fftfilt called by : //y=fftfilt(b,x);
e5a2ce7e17fc0286c29bd789e00e2e49d4d116cf
8277b4cef8c96ff5b520fc43b2200dc67ea6b2ed
/exp3.sce
7dddbc93b3e0404fd41c7e9c5a4625e34788f705
[]
no_license
divyashah98/OST
5f7f3acf268fb9ab7e4ae889229e87d9ad31e6be
214ee78db4e98e6387fca13cbe889054f3d9c298
refs/heads/master
2020-03-24T20:12:02.774742
2018-09-25T05:08:32
2018-09-25T05:08:32
142,964,900
1
1
null
null
null
null
UTF-8
Scilab
false
false
470
sce
exp3.sce
// circular convolution using matrix method c1=input('matrix a') b=input('matrix b') j=0; n1=length(c1); n2=length(b); N=max(n1,n2) if(n1<N) c1=[c1 zeros(1,(N-n1))]; else b=[b zeros(1,(N-n2))]; end for r=1:length(c1) c(r)=0; for i=1:length(c1) j=r-i+1; if(j<=0) j=j+length(c1); end c(r)=c(r)+c1(j)*b(i); end end disp(c) a=gca(); a.data_bounds=[0,0;length(c1),max(c)] r=1:length(c1); plot2d3(r,c)
a8ba1630e9e115e18644f774edb4a80d31e7aa24
449d555969bfd7befe906877abab098c6e63a0e8
/2582/CH1/EX1.17/Ex1_17.sce
b35243a99b5a986fcd913baeecc205232b8132c3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
326
sce
Ex1_17.sce
//Ex 1.17 clc;clear;close; format('v',5); Iout=6;//micro A IREF=1.2;//mA VBE2=0.7;//V VT=26;//mV VCC=20;//V Beta=120;//unitless R=(VCC-VBE2)/IREF;//kohm IC2=(IREF-Iout/Beta)/(1+1/Beta);//mA RS=VT/Iout*log(IC2*1000/Iout);//kohm disp(RS,R,"Value of resistance R & Rs for widlar current source design is(kohm) : ");
19f90f3b2fe1eae72e755ae13024d7fd91790362
449d555969bfd7befe906877abab098c6e63a0e8
/896/CH2/EX2.14/14.sce
188d2f016a1822e6b1299061da1832e85d73f257
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
355
sce
14.sce
clc //calc pressure diff between two tanks in a two liquid manometer rho_water=62.3;//lbm/ft^3 SG_oil=1.1; rho_oil=SG_oil*(rho_water); g=32.2;//ft/s^2 h1_1=1;//ft h1_2=2;//ft h2_1=2;//ft h2_2=1;//ft p_diff=[(rho_water)*g*(h1_1-h1_2)+(rho_oil)*g*(h2_1-h2_2)]/32.2/144;//lbf/in^2 disp("The pressure difference is") disp(p_diff) disp("lbf/in^2")
ed8535c073c60067343c9f92d8956b84e6fa5ea9
111e385f01dcdb641cbc64f8eb2d84c5f0eb1aee
/01/Or8Way.tst
f90b52873e1932e3df09f20e249d9d1584bc0541
[]
no_license
pipt/nand2tetris
7eaae88086f717291d78972af3997f2749bf5054
86dc57c94a1ddb5cf4bba9dc8c67c22b89d20d49
refs/heads/master
2020-03-28T02:35:08.533781
2018-10-02T20:55:11
2018-10-02T20:55:11
147,581,307
0
0
null
null
null
null
UTF-8
Scilab
false
false
261
tst
Or8Way.tst
load Or8Way.hdl, output-file Or8Way.out, compare-to Or8Way.cmp, output-list in%B1.8.1 out; set in %B00000000, eval, output; set in %B01000000, eval, output; set in %B00000010, eval, output; set in %B01011010, eval, output; set in %B11111111, eval, output;
5364492dbfe99d04418a62a9bff088db9312b527
449d555969bfd7befe906877abab098c6e63a0e8
/1646/CH5/EX5.36/Ch05Ex36.sce
aa2d93ee18d73c49eab09b5f0d69d418523a3b3a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
455
sce
Ch05Ex36.sce
// Scilab Code Ex5.36: Page:314 (2011) clc;clear; theta = 26.4;....// Optical rotation of sugar solution, degrees l = 20;....// Length of the tube, cm c = 0.20;....// Concentration of the solution, g/cc S = 10*theta/(l*c); // The specific rotation of the sugar solution, degree per dm per (g/cc) printf("\nThe specific rotation of the sugar solution = %2d degrees",S); // Result // The specific rotation of the sugar solution = 66 degrees
25810d0a41cb8647ed396877868a2fdaea6f6bbc
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH3/EX3.12/3_12.sce
678b31323ea192afbaf991b46c613f2318d6d751
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
304
sce
3_12.sce
//Chapter 3, Problem 12 clc t=18 //tempreture in celsius R1=200 //resistance in ohm Rt=240 //resistance in ohm tc=0.0039 //tempreture coefficient of resistance t1=((Rt-R1)/(R1*tc))+t printf("Tempreture = %.2f degree celsius",t1)
b6811d193ebfc1d496d412b6cb0b5e85f996cf9e
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH9/EX9.a.12/Example_a_9_12.sce
24a22735db4cdd6aff6d191cab975adcb1f6bff1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
5,610
sce
Example_a_9_12.sce
//Example_a_9_12 page no:411 clc; //star delta conversion method Zrmag=5; Zrang=0; Zymag=2; Zyang=90; Zbmag=4; Zbang=-90; Vrymag=100; Vryang=0; Vybmag=100; Vybang=-120; Vbrmag=100; Vbrang=-240; Zrymag=Zrmag*Zymag; Zryang=Zrang+Zyang; Zybmag=Zymag*Zbmag; Zybang=Zyang+Zbang; Zbrmag=Zbmag*Zrmag; Zbrang=Zbang+Zrang; Zryreal=Zrymag*cosd(Zryang); Zryimag=Zrymag*sind(Zryang); Zry=Zryreal+(%i*Zryimag); Zybreal=Zybmag*cosd(Zybang); Zybimag=Zybmag*sind(Zybang); Zyb=Zybreal+(%i*Zybimag); Zbrreal=Zbrmag*cosd(Zbrang); Zbrimag=Zbrmag*sind(Zbrang); Zbr=Zbrreal+(%i*Zbrimag); Z=Zry+Zyb+Zbr; Zmag=sqrt(real(Z)^2+imag(Z)^2); Zang=atand(imag(Z)/real(Z)); Zr_ymag=Zmag/Zbmag; Zr_yang=Zang-Zbang; Zy_bmag=Zmag/Zrmag; Zy_bang=Zang-Zrang; Zb_rmag=Zmag/Zymag; Zb_rang=Zang-Zyang; Irmag=Vrymag/Zr_ymag; Irang=Vryang-Zr_yang; Iymag=Vybmag/Zy_bmag; Iyang=Vybang-Zy_bang; Ibmag=Vbrmag/Zb_rmag; Ibang=Vbrang-Zb_rang; Irreal=Irmag*cosd(Irang); Irimag=Irmag*sind(Irang); Ir=Irreal+(%i*Irimag); Iyreal=Iymag*cosd(Iyang); Iyimag=Iymag*sind(Iyang); Iy=Iyreal+(%i*Iyimag); Ibreal=Ibmag*cosd(Ibang); Ibimag=Ibmag*sind(Ibang); Ib=Ibreal+(%i*Ibimag); I1=Ir-Ib; I2=Iy-Ir; I3=Ib-Iy; I1mag=sqrt(real(I1)^2+imag(I1)^2); I1ang=atand(imag(I1)/real(I1)); I2mag=sqrt(real(I2)^2+imag(I2)^2); I2ang=atand(imag(I2)/real(I2)); I2ang=I2ang+180;//converting the angle to positive I3mag=sqrt(real(I3)^2+imag(I3)^2); I3ang=atand(imag(I3)/real(I3)); I3ang=I3ang+180; disp("the line currents are"); disp(I1mag,"the magnitude of current I1 is (in A)"); disp(I1ang,"the angle of current I1 is (in A)"); disp(I2mag,"the magnitude of current I2 is (in A)"); disp(I2ang,"the angle of current I2 is (in A)"); disp(I3mag,"the magnitude of current I3 is (in A)"); disp(I3ang,"the angle of current I3 is (in A)"); Vzrmag=I1mag*Zrmag; Vzrang=I1ang+Zrang; Vzymag=I2mag*Zymag; Vzyang=I2ang+Zyang; Vzbmag=I3mag*Zbmag; Vzbang=I3ang+Zbang; disp("the voltage drop across each star connected load is");//the voltage value varies slightly with text book hence results are rounded off in text book disp(Vzrmag,"the magnitude of voltage drop across Zr resistor is (in V)"); disp(Vzrang,"the angle of voltage drop across Zr resistor is (in degree)"); disp(Vzymag,"the magnitude of voltage drop across Zy resistor is (in V)"); disp(Vzyang,"the angle of voltage drop across Zy resistor is (in degree)"); disp(Vzbmag,"the magnitude of voltage drop across Zb resistor is (in V)"); disp(Vzbang,"the angle of voltage drop across Zb resistor is (in degree)"); Vromag=100/sqrt(3); Vroang=-30; Vyomag=100/sqrt(3); Vyoang=-150; Vbomag=100/sqrt(3); Vboang=-270; Yrmag=1/Zrmag; Yrang=0-Zrang; Yymag=1/Zymag; Yyang=0-Zyang; Ybmag=1/Zbmag; Ybang=0-Zbang; Yrormag=Vromag*Yrmag; Yrorang=Vroang+Yrang; Yyoymag=Vyomag*Yymag; Yyoyang=Vyoang+Yyang; Ybobmag=Vbomag*Ybmag; Ybobang=Vboang+Ybang; Yrorreal=Yrormag*cosd(Yrorang); Yrorimag=Yrormag*sind(Yrorang); Yror=Yrorreal+(%i*Yrorimag); Yyoyreal=Yyoymag*cosd(Yyoyang); Yyoyimag=Yyoymag*sind(Yyoyang); Yyoy=Yyoyreal+(%i*Yyoyimag); Ybobreal=Ybobmag*cosd(Ybobang); Ybobimag=Ybobmag*sind(Ybobang); Ybob=Ybobreal+(%i*Ybobimag); Y=Yror+Yyoy+Ybob; Ymag=sqrt(real(Y)^2+imag(Y)^2); Yang=atand(imag(Y)/real(Y)); Yang=Yang+180;//converting the angle to positive Yrreal=Yrmag*cosd(Yrang); Yrimag=Yrmag*sind(Yrang); Yr=Yrreal+(%i*Yrimag); Yyreal=Yymag*cosd(Yyang); Yyimag=Yymag*sind(Yyang); Yy=Yyreal+(%i*Yyimag); Ybreal=Ybmag*cosd(Ybang); Ybimag=Ybmag*sind(Ybang); Yb=Ybreal+(%i*Ybimag); Yryb=Yr+Yy+Yb; Yrybmag=sqrt(real(Yryb)^2+imag(Yryb)^2); Yrybang=atand(imag(Yryb)/real(Yryb)); Vo_omag=Ymag/Yrybmag; Vo_oang=Yang-Yrybang; Vo_oreal=Vo_omag*cosd(Vo_oang); Vo_oimag=Vo_omag*sind(Vo_oang); Vo_o=Vo_oreal+(%i*Vo_oimag); Vroreal=Vromag*cosd(Vroang); Vroimag=Vromag*sind(Vroang); Vro=Vroreal+(%i*Vroimag); Vyoreal=Vyomag*cosd(Vyoang); Vyoimag=Vyomag*sind(Vyoang); Vyo=Vyoreal+(%i*Vyoimag); Vboreal=Vbomag*cosd(Vboang); Vboimag=Vbomag*sind(Vboang); Vbo=Vboreal+(%i*Vboimag); Vro_=Vro-Vo_o; Vyo_=Vyo-Vo_o; Vbo_=Vbo-Vo_o; Vro_mag=sqrt(real(Vro_)^2+imag(Vro_)^2); Vro_ang=atand(imag(Vro_)/real(Vro_)); Vyo_mag=sqrt(real(Vyo_)^2+imag(Vyo_)^2); Vyo_ang=atand(imag(Vyo_)/real(Vyo_)); Vbo_mag=sqrt(real(Vbo_)^2+imag(Vbo_)^2); Vbo_ang=atand(imag(Vbo_)/real(Vbo_)); disp("the displacement neutral voltages are"); disp(Vro_mag,"the magnitude of voltage across Vro is (in V)"); disp(Vro_ang,"the angle of voltage across Vro is (in degree)"); disp(Vyo_mag,"the magnitude of voltage across Vyo is (in V)"); disp(Vyo_ang,"the angle of voltage across Vyo is (in degree)"); disp(Vbo_mag,"the magnitude of voltage across Vbo is (in V)"); disp(Vbo_ang,"the angle of voltage across Vbo is (in degree)"); Ir_mag=Vro_mag/Zrmag;//value of Ir is wrong in text book calculation Ir_ang=Vro_ang-Zrang; Iy_mag=Vyo_mag/Zymag; Iy_ang=Vyo_ang-Zyang; Iy_ang=Iy_ang+360;//converting to positive angle Ib_mag=Vbo_mag/Zbmag; Ib_ang=Vbo_ang-Zbang; disp("the current in the phases are"); disp(Ir_mag,"the magnitude of current in the R phase is (in A)"); disp(Ir_ang,"the angle of current in the R phase is (in degree)"); disp(Iy_mag,"the magnitude of current in the Y phase is (in A)"); disp(Iy_ang,"the angle of current in the Y phase is (in degree)"); disp(Ib_mag,"the magnitude of current in the B phase is (in A)"); disp(Ib_ang,"the angle of current in the B phase is (in degree)"); //value of Ir is wrong in text book calculation //the voltages value varies slightly with text book hence results are rounded off in text book
ab9af22f596059bdb4daea1de1bcdfd94c0facf3
449d555969bfd7befe906877abab098c6e63a0e8
/1538/CH14/EX14.2/Ex14_2.sce
66121c48f5aa4846b4a5a675f8713f3aa07df1ba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
638
sce
Ex14_2.sce
//example-14.2 //page no-441 //given //young's modulus of aluminium, iron and boron are resp //here we are representing a,b and c for aluminum, iron and boron resp. Ea=71*10^9 //Pa Eb=210*10^9 //Pa Ec=440*10^9 //Pa //as we know that Ec=Ef*Vf+Em*Vm where Ef and Em are the young's modulus of fibre and matrix resp. //so we get //210=71*Va+440*Vb --------------(1) //assumin void volume is zero and we know that //Va+Vb=1 //so Vb=1-Va ---------------(2) //on solving 1 and 2 we get Va=31.8 Vb=68.2 //ratio of Va and Vb R=Va/Vb printf ("the volume ratio of aluminium and boron in aluminium boron composite %d",R)
b85cee3686fac849e7ce4c041240ff3b9ae9f492
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH8/EX8.21/EX8_21.sce
0875575f6946ee5688d016c7193036d0152d9a4e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
460
sce
EX8_21.sce
//EXAMPLE 8-21 PG NO-536-537 Ro=600; //RESISTANCE Fc=10000; //FREQUENCY F=25000; L=Ro/(4*%pi*Fc); C=1/(4*%pi*Fc*Ro); Z=Ro*[1-(Fc/F)^2]^0.5; Zo=Ro/[1-(Fc/F)^2]^0.5; disp('i) INDUCTAR (L) is = '+string (L) +' H ') disp('ii) CAPACITOR (C) is = '+string (C) +' F ') disp('i) IMPEDANCE (Z) is = '+string (Z) +' ohm ') disp('ii) IMPEDANCE (Zo) is = '+string (Zo) +' ohm ')
98277d022c90804904488f0e8e1eb152d6a9a7be
e1fcb98fc42106c41335695379d620ba376ad2ab
/MMQ+EDO/MMQ/mmq.sci
f9a9147176d6ee29810c3f473eafccf06e825957
[]
no_license
LuizFelipeLemon/CN
82c142ff28c2cb63d1f8cb433965d63089628235
605076edd4ea218dd5e49dbba2b109f61efa9cfa
refs/heads/master
2021-08-19T16:08:20.094123
2017-11-26T20:51:15
2017-11-26T20:51:15
103,070,142
0
0
null
null
null
null
UTF-8
Scilab
false
false
273
sci
mmq.sci
function a = mmq(x,y,k) // Ajusta um polinômio de ordem k, aos pontos dados n = length(x); for i = 1:n //Linhas for j = 1:k+1 //Colunas V(i,j) = x(i)^(j-1); end b(i) = y(i); end a = inv(V'*V)*(V'*b); endfunction
a897e85a96bc18b0c3c5e7f43233a15514147389
449d555969bfd7befe906877abab098c6e63a0e8
/62/CH7/EX7.15/ex_7_15.sce
690ba639cd0a5ed17eb7fde1b2c5a2795d6b112b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
90
sce
ex_7_15.sce
clc; close clear; s=%s; tf=syslin('c',((4*s+1)/(s^2+3*s+2))); ss=tf2ss(tf); disp(ss)
fddaf864f13a5f55adc494c49fd9e8770b940595
449d555969bfd7befe906877abab098c6e63a0e8
/2159/CH1/EX1.6/6.sce
d654f62ebeae1de85e042ef165ec4784a6124f20
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
116
sce
6.sce
//problem 1.6 h1=0.2 h2=0.5 s1=0.9 s2=13.6 h=-(h1*s1+h2*s2) w=9810 p=h*w disp(p, "vacuum pressure (N/m2)")
31ee0919d2c814775ab8fe7b715d507a0fdef2bf
449d555969bfd7befe906877abab098c6e63a0e8
/243/CH6/EX6.15/6_15.sce
097503f8e1eee537d41d1ca1c57a692252ca6ab3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
246
sce
6_15.sce
//Example No. 6_15 //Synthetic Division //Pg No. 176 clear ; close ; clc ; a = [-9 15 -7 1]; b(4) = 0 ; for i = 3:-1:1 b(i) = a(i+1) + b(i+1)*3 printf('b%i = %f\n',i,b(i)) end disp(poly(b,'x','c'),'Thus the polynomial is')
8cb738adfeaa32f23bef7da5799e52510ff5bece
449d555969bfd7befe906877abab098c6e63a0e8
/443/CH8/EX8.4/8_4.sce
45a28d7f3e204dddae44f6a3cec43e38e5d484a9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
586
sce
8_4.sce
pathname=get_absolute_file_path('8_4.sce') filename=pathname+filesep()+'8_4_data.sci' exec(filename) h=0:6000 h1=h/(1) [m n]=size(h1) for i=1:n //Temperature at h(in K) Tal(i)=Tsl-0.0065*(h1(i)); //Variation in air pressure pal(i)=1/(10^(h1(i)/19200)); //Density at sea level Psl=(psl*10^5)/(R*Tsl) //Density at height h Pal(i)=(pal(i)*10^5)/(R*Tal(i)); //Air fuel ratio at height h AFal=AFsl*sqrt(Pal/Psl) end; //Plotting Air fuel ratio and Height plot(h1,AFal) legend(['Air fuel ratio';'Height']); xtitle('Air fuel ratio vs Height','Height(in m)','Airfuel ratio')
f27f4629aa9312fcc3e705feca5e0a8884b0bc5e
449d555969bfd7befe906877abab098c6e63a0e8
/3792/CH7/EX7.4/Ex7_4.sce
73ad45fd999e8f89427be109d951df11917d1f48
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,062
sce
Ex7_4.sce
// SAMPLE PROBLEM 7/4 clc;funcprot(0); // Given data // From sample problem 7/3 omega_1=6;// rad/s omega_2=6;// rad/s r_x=50;// mm r_y=100;// mm r_z=100;// mm omega_n=2*sqrt(5);// rad/s // Calculation r_AB=[r_x,r_y,r_z];// mm // a_A=[r_x*omega_2^2]i+[r_x*omegadot]j; // a_B=[r_y*omega_1^2]k+[0]i; omegadot=(omega_n)^2*(r_AB);// rad/s^2 // omegadot*r_A/B=(100*omegadot_ny-100*omegadot_nz)i+(50*omegadot_nz-100*omegadot_nx)j+(100*omegadot_nx-50omegadot_ny)k function[X]=velocity(y) X(1)=28-(y(2)-y(3)); X(2)=(y(4)+40)-((-2*y(1))+y(3)); X(3)=-32-((2*y(1))-y(2)); X(4)=((2*y(1))+(4*y(2))+(4*y(3))); endfunction y=[1 10 10 10]; z=fsolve(y,velocity); omegadot_nx=z(1);// rad/s^2 omegadot_ny=z(2);// rad/s^2 omegadot_nz=z(3);// rad/s^2 omegadot_2=z(4);// rad/s^2 omegadot_n=[omegadot_nx,omegadot_ny,omegadot_nz];// rad/s^2 omegadot_n=norm(omegadot_n);// rad/s^2 printf("\nThe angular acceleration of crank AD,omegadot_2=%2.0f rad/s \nThe angular acceleration of link AB,omegadot_n=%2.2f rad/s",omegadot_2,omegadot_n);
c2849ce17a6cee8edab0a6982cfab32aca401904
449d555969bfd7befe906877abab098c6e63a0e8
/29/CH11/EX11.3/exa11_3.sce
96746dbea446d84c7d5f75dfbb7be122b09a7f53
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
197
sce
exa11_3.sce
//Caption:transfer_function // example 11_3 //page 470 syms G1 G2 G3 H1; s=%s; G1=4; G2=s G3=1/(s*(s+2)); H1=0.5; H2=1; a=(G1+G2); b=(a*G3); c=b/.H1; y=c/(1+c*H2) disp(y,"C(s)/R(s)=")
233df2551cdd18bcf062364e9bedf5222fd0fbbd
449d555969bfd7befe906877abab098c6e63a0e8
/2522/CH2/EX2.2/exm2_2.sce
bb33e959b5583c905fe5845d34e987f79149ad03
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,051
sce
exm2_2.sce
//page no 41 //example no 2.2 //MEMORY ADDRESS RANGE. clc; printf('A9-A0 are address lines for register select. \n'); printf('A15-A10 are address lines for chip select. \n \n'); printf('A15 A14 A13 A12 A11 A10 \n'); printf(' 0 0 0 0 0 0 \n \n'); //chip select bits have to be active low always to select that chip. printf('A9 A8 A7 A6 A5 A4 A3 A2 A1 A0 \n'); printf(' 0 0 0 0 0 0 0 0 0 0 \n'); //this selects the register printf('The above combination selects the memory address 0000H. \n \n'); printf('A15 A14 A13 A12 A11 A10 \n'); printf(' 0 0 0 0 0 0 \n \n'); //chip select bits have to be active low always to select that chip. printf('A9 A8 A7 A6 A5 A4 A3 A2 A1 A0 \n'); printf(' 1 1 1 1 1 1 1 1 1 1 \n'); //this selects the register printf('The above combination selects the memory address 03FFH. \n \n'); //thus this chip can select any memory location from 0000H to 03FFH. //the memory addressed of the chip can be changed by modifying the hardware.Like we did in the previous example.
eab88651b0f01466bfdba81e5c43e7af50b8ce15
8e7995c57cc78a0244b86a01f56f6f5d56089eb1
/Modificada/ScenarioCreacionCtrls.sce
39d4a347e9bad5b02648e71af6853f170f638ee3
[]
no_license
jpgiron/ModelParkingLotPUJCali
85b9a58629cf560591b6d1bbd0f7ab4eec08938d
7e2ad78bd224fffdb20028bc3478cc062a5284c3
refs/heads/master
2020-12-30T10:36:47.055293
2014-08-20T05:33:36
2014-08-20T05:33:36
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
557
sce
ScenarioCreacionCtrls.sce
run send2pid -1 3 sSetUpFreeSpot |{param1|=0|,param2|=0|,param3|=10|} send2pid -1 3 sSetUpTotalSpot |{param1|=0|,param2|=0|,param3|=20|} send2pid -1 3 sAddZone |{param1|=0|,param2|=30|,param3|=20|} send2pid -1 3 sCreateCtrlZone send2pid -1 3 sAddZone |{param1|=1|,param2|=10|,param3|=10|} send2pid -1 5 sIR1_Zone send2pid -1 5 sIR2_Zone send2pid -1 5 sLoopInductive_Zone send2pid -1 3 sReqInfoCtrlZone stop include C:/Documents and Settings/Virtual Machine/Mis documentos/Dropbox/TD_JPGR/VERSION MODIFICADA/ModificadaFebrero252014/Scenario1.sce
d8501d3da21d2edebbe3ccb6e672e1bde4e81c64
449d555969bfd7befe906877abab098c6e63a0e8
/1439/CH2/EX2.4/2_4.sce
11507153ecdcc741514358622966a93931b16cb9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
384
sce
2_4.sce
clc //initialisation of variables R= 0.08205 //l-atm deg^-1 mole^-1 T= 25 //K n= 1 //mole V= 0.5 //lit b= 0.04267 //lit mole^-1 a= 3.592 //lit^2 atm mol^-2 //CALCULATIONS P= R*(273.15+T)/V P1= (R*(273.15+T)/(V-b))-(a/V^2) //RESULTS printf ('pressure calculated using ideal gas law= %.1f atm',P) printf ('\n pressure calculated using vander wals equation= %.1f atm',P1)
1a77f6e3c218f85f6029c711be1fb920848c9b6c
f8bb2d5287f73944d0ae4a8ddb85a18b420ce288
/Scilab/example/リカッチ方程式.sce
6eb1f057b20ae9faeb04c7830ee635c82f357672
[]
no_license
nishizumi-lab/sample
1a2eb3baf0139e9db99b0c515ac618eb2ed65ad2
fcdf07eb6d5c9ad9c6f5ea539046c334afffe8d2
refs/heads/master
2023-08-22T15:52:04.998574
2023-08-20T04:09:08
2023-08-20T04:09:08
248,222,555
8
20
null
2023-02-02T09:03:50
2020-03-18T12:14:34
C
SHIFT_JIS
Scilab
false
false
143
sce
リカッチ方程式.sce
//リカッチ方程式 A=[0 1;0 -1]; b=[0;1]; r=1; Q=diag([4 1]); B= inv(r)*b*b'; P=ricc(A,B,Q,'cont'), spec(P) k=-inv(r)*b'*P spec(A+b*k)
c0bd6977a3a2622e3521cb5d8166c5f93631f143
cb4644f33db23e71551bd1eb5daff551d74ea5f3
/code/S4.sce
b91ead014b20e3c5db5e711e255d2aa3b08a6aa7
[ "MIT" ]
permissive
aghriss/PoissonMAPX
803078eba75374ed52e134f277df2946528ed1aa
61a828a01e92815ac1ec64a647e508cab0ab58f9
refs/heads/master
2020-04-24T17:28:25.996952
2019-02-22T23:35:03
2019-02-22T23:35:03
172,148,560
0
0
null
null
null
null
UTF-8
Scilab
false
false
687
sce
S4.sce
t=3 lambda = 3 x0 = 1 p=40 Nb=10000 for j=1:p z(j)=0 end function yprim = g (t,y) yprim = -lambda*(2+cos(y)) endfunction for i=1:Nb Nt=grand(1,1,"poi",lambda*t) U=grand(Nt,1,"unf",0,t) U=gsort(U,"g","i") yU(1)=ode(x0,0,U(1),g) yU(1)=yU(1) + 2 + cos(yU(1)) for j=2:Nt yU(j)=ode(yU(j-1),U(j-1),U(j),g) yU(j)=yU(j) - g(0,yU(j)) /lambda end x=linspace(0,t,p) for j=1:p N(j)=0 for i=1:Nt if x(j)>=U(i) then N(j)=N(j)+1 end end end for j=1:p if N(j)==0 then z(j)=z(j)+ode(x0,0,x(j),g) else z(j)=z(j)+ode(yU(N(j)),U(N(j)),x(j),g) end end end for j=1:p z(j)=z(j) / Nb end disp(z)
1464690a1514468c81081b44dcb3ed1e86c78437
449d555969bfd7befe906877abab098c6e63a0e8
/3012/CH4/EX4.10/Ex4_10.sce
255ded7d3d93928ae20fe312cd473929a1ea3689
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,819
sce
Ex4_10.sce
// Given:- P1 = 1.0 // pressure of industrial discharge in bar T1 = 478.0 // temperature of industrial discharge in kelvin m1dot = 69.78 // mass flow rate of industrial discharge in kg/s T2 = 400.0 // temperature of exit products from steam generator in kelvin P2 = 1.0 // pressure of exit products from steam generator in bar P3 = 0.275 // pressure of water stream entering the generator in Mpa T3 = 38.9 // temperature of water stream entering the generator in degree celcius m3dot = 2.079 // mass flow rate of water stream entering in kg/s P5 = 0.07 // exit pressure of the turbine in bars x5 = 0.93 // quality of turbine exit // Part (a) m2dot = m1dot // since gas and water streams do not mix m5dot = m3dot // --DO // from table A-22, A-2 and A-3:- h1 = 480.3 // in kj/kg h2 = 400.98 // in Kj/kg h3 = 162.9 // assumption: h3 = hf(T3), units in Kj/kg hf5 = 161.0 // in kj/kg hg5 = 2571.72 // in kj/kg // Part (b) P4 = P3 // from the assumption that there is no pressure drop for water flowing through the steam generator T4 = 180 // in degree celcius // Calculations:- h5 = hf5 + x5*(hg5-hf5) Wcvdot = m1dot*h1 + m3dot*h3 - m2dot*h2 - m5dot*h5 h4 = h3 + (m1dot/m3dot)*(h1 -h2) // from steady state energy rate balance // interpolating in table A-4, with these P4 and h4 // Results:- printf( ' The power developed by the turbine is %.2f kJ/s.',Wcvdot) printf( ' Turbine inlet temperature is %.2f degree celcius.',T4)