blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8686cb4c0bb26662c3168d2510248f16954f8fe7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH8/EX8.m.2/ExaMisc8_2.sce | c94814bdb5fb52d5b3fddd52675c46693009301c | [] | 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 | 343 | sce | ExaMisc8_2.sce | //Exa Misc 8.2
clc;
clear;
close;
//given data
format('v',6);
fo=10;//in KHz
R1=25;//in kohm
R2=60;//in kohm
Rc=40;//in kohm
R=7.1;//in kohm
hie=1.8;//in kohm
C=1/(2*%pi*fo*10^3*R*10^3*sqrt(6+4*Rc/R));//in F
disp(C*10^9,"Value of Capacitor(in nF) :");
hfe=23+29*R/Rc+4*Rc/R;//unitless
disp("Value of hfe is ≥ "+string(hfe));
|
6c07d1550a875ab82f9093ed5ead51e29a8e910e | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/metanet/max_clique.sci | b8837e30cfd840945ad56789a2d46885568a8ab5 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | 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 | 880 | sci | max_clique.sci | function [nsize,nodes]=max_clique(g,ind)
// Copyright INRIA
[lhs,rhs]=argn(0)
if rhs>2|rhs<1 then
error(39)
elseif rhs==1 then
ind=0
end;
// check g
check_graph(g)
// check ind
if (ind<>0&ind<>1) then
error('The second argument must be 0 or 1')
end
m=prod(size(g('tail')))
n=g('node_number')
head=g('head'); tail=g('tail');
if (ind==1) then
tta=[tail head];hhe=[head tail];
xm=sparse([tta' hhe'],ones(tta)',[n,n]);
[ij,v,mn]=spget(xm);
[lp,la,ls]=adj_lists(1,n,ij(:,1)',ij(:,2)');
m2=2*m;np1=n+1;nwk=10*m;
[wcl]=m6clique1(n,m,m2,np1,nwk,lp,ls);
ii=find(wcl == 0);
if (ii<>[]) then wcl(ii)=[]; end;
nodes=wcl;nsize=size(wcl,2);
else
xm=sparse([tail' head'],ones(tail'),[n,n]);
xadj=full(xm+xm');
mn=m*n;
[clmax,clnod,bestn]=m6clique(n,m,mn,xadj);
nsize=clmax;
ii=find(bestn==0);
if (ii<>[]) then bestn(ii)=[]; end;
nodes=clnod(bestn);
end;
|
a69a43f72869a993c6efbd8992587adc24eca525 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH7/EX7.1/7_1.sce | fc209b00ac5f5005a697bc18bc0c1edbd9eaf7fb | [] | 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 | 231 | sce | 7_1.sce | clear;
clc;
c=3*(10^8);
f=3000*(10^8);
lo=c/f;
l=lo*(10^4);
m=1;n=0;a=7.62;
lc=2*a;
printf("-Critical wavelength = %f cm\n",lc);
lg=sqrt((l*l*lc*lc)/((lc*lc)-(l*l)));
printf("-Guide wavelength = %f cm",round(lg*10)/10);
|
da23c4725d5636efb067ab46e6021330cd5c92d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /479/CH14/EX14.6/Example_14_6.sce | f7ac46d6d6ee099d69d792a9ced87a6ada8f1ea5 | [] | 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,408 | sce | Example_14_6.sce | //Chemical Engineering Thermodynamics
//Chapter 14
//Thermodynamics of Chemical Reactions
//Example 14.6
clear;
clc;
//Given
//SO2 + (1/2)O2 - SO3
//Basis: 1 Kgmole of SO2
n_SO2 = 1;// SO2 fed in Kgmole
//From table 14.1 (page no 301)
//alpha values for the following components are given as
a_SO2 = 7.116;
a_O2 = 6.148;
a_SO3 = 6.077;
//beta values for the following components are given as
b_SO2 = 9.512*10^-3;
b_O2 = 3.102*10^-3;
b_SO3 = 25.537*10^-3;
//Standard enthalpy of the following components at 25 deg cel in Kcal/Kgmole are given as
H_SO2 =-70960;
H_O2 = 0;
H_SO3 = -94450;
//Standard free energy of the following components at 25 deg cel in Kcal/Kgmole K are given as
F_SO2 = -71680;
F_O2 = 0;
F_SO3 = -88590;
n_O2 = n_SO2;//O2 fed in Kgmole; since 50 mole percent mixture of SO2 & O2 is fed
n_SO3 = n_SO2;//SO3 formed in Kgmole
n_O2_e = n_O2-(n_O2/2);//Kgmoles of O2 in exit gas
n_O2_r = n_O2/2;//Kgmoles of O2 reacted
R = 1.98;//gas constant in Kcal/Kgmole K
//To show the variation of the standard heats of reaction with temperature and the equilibrium constant with temperature graphically in the given temperature range
//(i)Variation of the standard heats of reaction with temperature
del_H = (n_SO3*H_SO3)-(n_O2_r*H_O2)-(n_SO2*H_SO2);// in Kcal/Kgmole
del_F = (n_SO3*F_SO3)-(n_O2_r*F_O2)-(n_SO2*F_SO2);// in Kcal/Kgmole
//From equation 14.10 (page no 301)
del_a = (n_SO3*a_SO3)-(n_O2_r*a_O2)-(n_SO2*a_SO2);
del_b = (n_SO3*b_SO3)-(n_O2_r*b_O2)-(n_SO2*b_SO2);
//In equation 14.11 (page no 302), substituting del_H at
T = 298;//in deg cel
I = del_H - del_a*T - (del_b*(T^2)/2);// integrating constant
mprintf('(i)The standard heat of reaction at any tempperature can be calculated by the relation:');
mprintf('\n del_Ht = %fT + %fT^2 %f',del_a,del_b/2,I);
//(ii)Variation of the equilibrium constant with temperature
//K1 = lnKa (say)
K1 = -del_F/(R*T);
//From equation 14.42 (page no 316); M1 = M/R (say)
M1 = K1-(del_a/R)*log(T)-(del_b/(2*R))*T+(I/(T*R));
//Let us assume the temperature in the range 800K to 1500K as
Ta = [700 800 825 850 900 1000 1100 1300 1500];
for i = 1:9
Ka(i) = %e^((del_a/R)*log(Ta(i))+(del_b*Ta(i)/(2*R))-(I/(Ta(i)*R))+M1);
end
clf;
plot(Ta,Ka);
xtitle(" ","Temperature in K","equilibrium constant K");
mprintf('\n\n(ii)From the graph it can be seen that as temperature increases Ka decreases exponentially,so the reaction is exothermic.');
//end |
d26741d937715ebed5d63b6d48f94a32e9fde3e2 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set11/s_Fundamentals_Of_Electronic_Devices_J._B._Gupta_1787.zip/Fundamentals_Of_Electronic_Devices_J._B._Gupta_1787/CH4/EX4.12/Exa4_12.sce | 76179ad864b341cc19b1f7d64060c61d88e963e2 | [] | 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 | 327 | sce | Exa4_12.sce | errcatch(-1,"stop");mode(2);//Exa4.12
;
;
//given data
Vz=5;//in volts
to=25;//in degree centigrade
t=100;//in degree centigrade
Vdrop=4.8;//in Volts
delVz=Vdrop-Vz;//in Volts
delt=t-to;//in degree centigrade
TempCoeff=delVz*100/(Vz*delt);
disp(TempCoeff,"Temperature coefficient f zener diode in % : ");
exit();
|
cdd6def0050ba2bc13e9ebc4791bfb5d8a41d0ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /2519/CH16/EX16.11/Ex16_11.sce | 4cacd36fbedaf036a00ecf42257553670f8b01b3 | [] | 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 | 301 | sce | Ex16_11.sce | clc
clear
//Initialization of variables
n1=8
n2=9
n3=1
n4=12.5
U11=3852
U12=115
U21=3009
U22=101
U31=24773
U32=640
U41=2539
U42=83
H=-2203389
//calculations
dU1=n1*(U11-U12)+n2*(U21-U22)
dU2=n3*(U31-U32)+n4*(U41-U42)
Q=H+dU1-dU2
//results
printf("Heat of reaction = %d Btu",Q)
|
cb18437c8afd5bdbae7360f9d28faa15505fe0a9 | 6285663d2259fa331b87bfb8ab368f892ee94351 | /07/OverflowTest/EQ2/EQ2.tst | 2dca33fbb749af2500c69023616d255bc5a96d7d | [] | no_license | Ellonet/nand-ex1 | 1ed60786aef5386321519d23b1d2328930e0700d | 19eee2248c24c9912ca72b61ce0d1869dc885d71 | refs/heads/master | 2020-04-01T10:07:53.274194 | 2019-01-06T18:07:23 | 2019-01-06T18:07:23 | 153,103,996 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 323 | tst | EQ2.tst | // This file was created by Evyatar.
load EQ2.asm,
output-file EQ2.out,
compare-to EQ2.cmp,
output-list RAM[0]%D2.6.2 RAM[256]%D2.6.2;
set RAM[0] 256, // initializes the stack pointer
repeat 200 { // enough cycles to complete the execution
ticktock;
}
output; // the stack pointer and the stack base
|
b56003e3daf668b69f7ce5a7128720152753ed00 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2495/CH2/EX2.9.3/Ex2_9_3.sce | 84f2be469ada8ee872bd916d7ddf412cd34ad587 | [] | 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 | 516 | sce | Ex2_9_3.sce | clear
clc
w1=1;//amount of glucose C6H12O6 in gm
w2=1;//amount of sucrose C12H12022 in gm
n=(w1/180)+(w2/342);//amount of solute
R=8.314;//in J/Kmol
T=25;//in C
V=1000;//volume of water in gm
P=(n*R*(T+273))/(V*10^-6);//osmotic pressure of solution
printf('P=%.3f *10^4 N/m^2',P/10^4)
w=(w1+w2);//weight of solute
M=(w*R*(T+273))/(P*(V*10^-3));//molar mass of solute
printf('\nM=%.4f kg/mol',M)
Mn=((w1*10^-3)+(w2*10^-3))/(n);//average molar mass in Kg/mol
printf('\nMn=%.4f kg/mol',Mn)
//page 67
|
c8c4b1e15060a6cdfdb8dabeaf526cd2dcfd4713 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH3/EX3.10/Ex3_10.sce | c46e524f3ab07feffde48aabbbb876cd452c7716 | [] | 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,880 | sce | Ex3_10.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 3 : TRANSFORMERS
// EXAMPLE : 3.10
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
V1 = 440; // HV Side Voltage Rating of the Transformer in Volts
V2 = 220; // LV Side Voltage Rating of the Transformer in Volts
pf_o = 0.2; // No-load Power factor lagging
pf_l = 0.8; // Load Power factor lagging
I_o = 5; // No-load current in Amphere
I_2 = 120; // Load current in Amphere
// CALCULATIONS
a = V1/V2; // Turns ratio of the two winding Transformers
theta_o = acosd(pf_o); // No load power factor of the two winding Transformers in Degrees
Io = I_o * exp(-(%i*theta_o*%pi/180)); // No load current of the two winding Transformers (minus because lagging) in Amphere
theta = acosd(pf_l); // load power factor of the two winding Transformers in Degrees
I2 = I_2 * exp(-(%i*theta*%pi/180)); // secondary load current of the two winding Transformers (minus because lagging) in Amphere
I21 = I2/a; // Secondary referred to the primaryin Amphere
I1 = Io + I21; // Primary current in Amphere
I1_mag = abs(I1); // Primary current magnitude inj Amphere
theta_1 = atand( imag(I1),real(I1)); // Primary current angle in Degree
// DISPLAY RESULTS
disp("EXAMPLE : 3.10 : SOLUTION :-") ;
printf("\n (a) Primary current , I1 = %.2f < %.1f A \n ",I1_mag,theta_1);
|
8c6739244ef6e6fcbd4c0a638f58843668fdfc58 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1787/CH2/EX2.6/Exa2_6.sce | 035e8e57c4d6620382ff0ef0911a599d77351e69 | [] | 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 | 279 | sce | Exa2_6.sce | //Exa 2.6
clc;
clear;
close;
//given data
ni=1.4*10^18;//in atoms/m^3
Nd=1.4*10^24;//in atoms/m^3
n=Nd;//in atoms/m^3
p=ni^2/n;//in atoms/m^3
ratio=n/p;//unitless
disp(p,"Concentration of holes in per m^3 : ");
disp(ratio,"Ratio of electron to hole concentration : "); |
075ce584cad0a9a5992be11d221b7bd60dda3312 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH22/EX22.15/Ex22_15.sce | 29e02dfc12d33873a822469003670a5a49a8f0d0 | [] | 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,546 | sce | Ex22_15.sce | // Example 22_15
clc;funcprot(0);
//Given data
T_1=400;// °C
p_1=40;// bar
p_2=2;// bar
p_3=0.5;// bar
p_4=0.05;// bar
n_t1=75/100;// The isentropic efficiency of the first stage of the turbine
n_t2=80/100;// The isentropic efficiency of the second stage of the turbine
n_t3=85/100;// The isentropic efficiency of the third stage of the turbine
m_s=10;// The steam flow in kg/sec
// Calculation
// From h-s chart:
h_1=3210;// kJ/kg
h_2a=2562;// kJ/kg
h_2=h_1-((n_t1)*(h_1-h_2a));// kJ/kg
h_3a=2508;// kJ/kg
h_3=h_2-((n_t2)*(h_2-h_3a));// kJ/kg
h_4a=2232;// kJ/kg
h_4=h_3-((n_t3)*(h_3-h_4a));// kJ/kg
// From steam tables
h_f8=502;// kJ/kg(2 bar)
h_f10=h_f8;// kJ/kg
h_f6=339;// kJ/kg(0.5 bar)
h_f7=h_f6;// kJ/kg
h_f9=h_f6;// kJ/kg
h_f5=136;// kJ/kg(0.05 bar)
//Assume m_1=y(1);m_2=y(2)
function[X]=mass(y)
X(1)=(y(1)*(h_2-h_f10))-((1-y(1))*(h_f8-h_f7));
X(2)=(y(2)*(h_3-h_f9))-((1-y(1)-y(2))*(h_f6-h_f5));
endfunction
y=[0.01 0.01];
z=fsolve(y,mass);
m_1=z(1);// kJ/kg
m_2=z(2);// kJ/kg
W=(h_1-h_2)+((1-m_1)*(h_2-h_3))+((1-m_1-m_2)*(h_3-h_4));// kJ/kg
P=W*m_s;// Power developed by the turbine in kW
Q_s=h_1-h_f10;// Heat supplied per kg of steam in kJ/kg
n_th=(W/Q_s)*100;// Thermal efficiency of the cycle in %
printf('\n(a)Steam bled for regenerative heaters per kg of steam to turbine,m_1=%0.4f kJ/kg & m_2=%0.4f kJ/kg \n(b)Power developed by the turbine=%0.0f kW \n(c)Thermal efficiency of the cycle=%0.2f percentage',m_1,m_2,P,n_th);
// The answer provided in the textbook is wrong
|
58b092404f7000ac5397c223e3a72f06bc0daf68 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.108/EX2_108.sce | 78494ca341b012bb4db06b573a87cf3f739a00a1 | [] | 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 | 138 | sce | EX2_108.sce | //EXAMPLE 2-108 PG NO-146
I1=(100/1.414)^2;
I2=(10/1.414)^2;
R.M.S=(I1+I2)^0.5;
disp('R.M.S VALUE is = '+string(R.M.S)+' A');
|
616e18d6e130dcd9e72b9d4dec405890b43ccdfd | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/macros/elem/smooth.sci | e36299a4daacefb6183aae3dbd6b4d286b30d3dd | [
"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 | 240 | sci | smooth.sci | function [pt]=smooth(ptd,pas)
//
[lhs,rhs]=argn(0)
[m,n]=size(ptd)
d=splin(ptd(1,:),ptd(2,:))
if rhs=1 then l=abs(ptd(1,n)-ptd(1,1));pas=l/100;end
pt=[ptd(1,1)+pas:pas:ptd(1,n)]
pt=[ptd(:,1) [pt;interp(pt,ptd(1,:),ptd(2,:),d)] ptd(:,n)]
|
e59784917cee569ac83f67ea868ae656811177f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH5/EX5.14/Ex5_14.sce | f16fbd0485aed83f4cb92e841012aea5d3816f68 | [] | 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 | 794 | sce | Ex5_14.sce | //Chapter-5,Example 5_14,Page 5-31
clc()
//Given Values:
m=1.676*10^-27 //mass of neutron
h=6.625*10^-34 //Planck's constant
lam=1*10^-10 //wavelength of neutron
//Calculations:
C=3*10^8 //Velocity of light
Ep1=h*C/lam //Energy of photon in joules
E1=Ep1/(1.6*10^-19) //Energy of photon in electron-Volts
printf('Energy of photon is =%.2f eV \n \n',E1)
//we know, lam=h/sqrt(2*m*E) //de Broglie wavelength
En1=h^2/(2*m*lam^2) //Energy of neutron in joules
E2=En1/(1.6*10^-19) //Energy of neutron in electron-Volts
printf(' Energy of neutron is =%.3f eV \n \n',E2)
R=E1/E2 //Ratio of energies of proton to neutron
printf(' Ratio of energies of proton to neutron is =%.0f \n \n',R)
|
576132324337547f5b538a2e81af1f856966e157 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3665/CH14/EX14.5/Ex14_5.sce | 52fb55ba89c53ed0e2929949dfd6711b670950de | [] | 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 | 405 | sce | Ex14_5.sce | clc//
//
//
//Variable declaration
V=20*15*5; //volume(m^3)
T=3.5; //time(s)
A=950; //surface area(m^2)
//Calculation
sigma_as=0.165*V/T; //total absorption in the hall(OWU)
ac=sigma_as/A; //average absorption coefficient
//Result
printf("\n total absorption in the hall is %0.3f OWU",sigma_as)
printf("\n average absorption coefficient is %0.3f sabine/m^2",ac)
|
7f5de0dd6ca11460288b943630a365cb8c8a0d0a | 449d555969bfd7befe906877abab098c6e63a0e8 | /249/CH9/EX9.6/9_06.sce | 654c349e680414a6163c7fe18e9b593a842e50ff | [] | 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 | 9_06.sce | clear
clc
FAo=1000;//mol/min
//Drawing trial operating lines with a slope of 1/72 and for each evaluating integral dXA/-rA
//From graph
Area=1.72;
V=FAo*Area;
printf("\n The volume of adiabatic plug flow reactor is %f",V)
printf("litres") |
55585b84cf4a21ca258a354679f6f05757456ec7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH3/EX3.3/example3.sce | dd1fdab629dcb984a77b77bc7d71b6291adfae70 | [] | 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 | 391 | sce | example3.sce | // to find load voltage and load current using ideal diode
// Example 3-3, page 65
clear;clc; close;
// Given data
// diode is forward biased, equivalent to a closed switch.
// Calculations
V=10;// load voltage in volts
R=1000;// load resistance in ohms
I=V/R;// all the source voltage appears across the load resistor
disp("Amperes",I,"Load Current=")
disp("Volts",V,"Load Voltage=")
|
7fa4606985ae964b5b6f2e1859cf6fc98012260f | 449d555969bfd7befe906877abab098c6e63a0e8 | /863/CH8/EX8.4/Ex8_4.sce | 660b51b2b1b710976c84ea2258ca70e981fcb276 | [] | 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 | 409 | sce | Ex8_4.sce | //Caption:Design a square wave generator using 7555 CMOS
//Ex8.4
clc;
clear;
close;
V=5//Supply voltage(in volts)
f1=1//Frequency(in khz)
f2=3//Frequency(in khz)
C=0.01//Capacitance(in micro farad)
Ra=47//Choosed resistor(in kilo ohm)
t1=1/(2*f1)
t2=1/(2*f2)
R=t1/(0.693*C)
Rb=R-Ra
disp(C,Rb,Ra,'Components required to design the circuit are Ra,Rb(in kilo ohm) and Capacitance(in micro farad)=') |
9a12ed5d6d6cba425937b5a45e64bb9f51a1e6fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH20/EX20.6/Ex20_6.sce | 9d8b36c89e14aab45dc9ee00b7f7d184eeb2a7b4 | [] | 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 | 346 | sce | Ex20_6.sce | //chapter20
//example20.6
//page441
Vin_min=22 // V
Vout=15 // V
Il_max=0.1 // A
// for maximum series resistance, we consider the case when input voltage is minimum and load current is maximum because then zener current drops to minimum.Thus,
Rs_max=(Vin_min-Vout)/Il_max
printf("required series resistance = %.3f ohm \n",Rs_max)
|
a65ce47204a8f977d1a0b06094399e1203a9f12e | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/Morisita_RP-003.tst | 344f95600a11aa0836ea481c7f4a1bc627f5e9fd | [] | no_license | RP-pbm/Recurrence-plot | f86c5cd85460661b01a609f8f4281d2cda6b4e07 | b5da95f9b30c1a924a002102219bf0a2ad47df2c | refs/heads/master | 2022-07-24T12:11:34.163543 | 2022-07-09T19:32:43 | 2022-07-09T19:32:43 | 92,934,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 32 | tst | Morisita_RP-003.tst | ../inputs/pops-4x2-1212-2121.ssv |
b3cca9d8ae377bae668ffd60ec7141a777a60aed | 449d555969bfd7befe906877abab098c6e63a0e8 | /67/CH2/EX2.5/example25.sce | 05b0eadc4da1f976fb15c6235a8690a1357deb7b | [] | 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 | 468 | sce | example25.sce | //Example 2.5
clc;
Max_Limit=10;
h=ones(1,Max_Limit);
N2=0:length(h)-1;
a=0.5;//constant a>0
for t=1:Max_Limit
x(t)=exp(-a*(t-1));
end
N1=0:length(x)-1;
y=convol(x,h)-1;
N=0:length(x)+length(h)-2;
figure
a=gca();
plot2d(N2,h)
xtitle('Impulse Response','t','h(t)');
a.thickness=2;
figure
a=gca();
plot2d(N1,x)
xtitle('Input Response','t','x(t)');
a.thickness=2;
figure
a=gca ();
plot2d(N(1:Max_Limit),y(1:Max_Limit))
xtitle('Output Response','t','y(t)');
a.thickness=2; |
740e7bedefe4da642cf096b27163dda9d4f5c10f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1442/CH17/EX17.5/17_5.sce | 53e2996df59365ffd6b7421e66247e06a5ea0349 | [] | 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 | 416 | sce | 17_5.sce | clc
//initialisation of variables
M1= 18.02 //gms
m1= 0.965 //gms
m2= 0.035 //gms
M2= 58.5 //gms
R= 8.314 //J/mol K
M= 18.02 //kg
T= 20 //C
vf= 0.001002 //m^3
x21= 0.021856 //m^3
//CALCULATIONS
n1= m1/M1
n2= m2/M2
x1= n1/(n1+n2)
x2= n2/(n2+n1)
P= R*(273.15+T)*x2/(M*vf)
P1= R*(273.15+T)*x21/(M*vf)
//RESULTS
printf (' Osmotic pressure= %.1f kpa',P)
printf (' \n Osmotic pressure= %.1f kpa',P1)
|
aa5e2df3eeb0c3b9c0414412a88584aab6a85681 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH2/EX2.19/2_19.sce | 7b102705d2187720c2fdf76aeed2cac364d0ac8d | [] | 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 | 805 | sce | 2_19.sce | clc,clear
printf('Example 2.19\n\n')
V=110
P=4
R_a = 0.1,R=0.01 //A resistance of 0.01 ohms
R_se=R+R
//case(i)
I_1=50, I_a1=I_1
N_1=700
E_b1 = V -I_a1*(R_a + R_se)
//T (prop.) phi*I_a from torque equation (1)
//phi_1 (prop.) I_a1 (2)
//case(ii) when I_a2 gets divided to half
//phi_2 (prop.) I_a2/2 (3)
//combining (1)(2)(3) and T1=T2
I_a2 = sqrt(2*I_a1^2)
R_se_eqvt=(R*R)/(R+R) //Equavalent of parallel combination
E_b2 = V - I_a2*R_a - I_a2* R_se_eqvt
//Using speed equation N (prop.) E_b / phi and using (2) and (3)
N_2 = N_1 *( E_b2/E_b1) *(I_a1/(I_a2/2))
printf('Speed after reconnection = %.3f r.p.m\n\n',N_2)
|
a28b21249ecd1b79a638e8c1f7039a92330c5294 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH18/EX18.15/CH18Exa15.sce | f0b65c374136bf77e1d959c0f39cf32d28c3839b | [] | 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 | 362 | sce | CH18Exa15.sce | // Scilab code Exa18.15 : : Page-768 (2011)
clc; clear;
I_1 = 3/2; // Isospin for delta(1232)
I_2 = 1/2; // Isospin for delta 0
delta_ratio = sqrt((2/3)^2)/sqrt((1/3)^2); // Branching ratio
printf("\nThe branching ratio for a resonance with I = 1/2 is %d", delta_ratio);
// Result
// The branching ratio for a resonance with I = 1/2 is 2 |
23ec5188b6d60c30fd1bad7dfbf6a7557454dd25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH3/EX3.3.54/Ch3_3_54.sce | 0747348cc7c38f9e4254a7cdb0c567fa8cac2733 | [] | 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 | 510 | sce | Ch3_3_54.sce | clc
disp("Example 3.54")
printf("\n")
disp(" Draw a DC load line for the base bias circuit neglecting Vbe")
printf("Given\n")
//given
betadc=100
Rc=5*10^3
Rb=1.5*10^6
Vc=30
//to find Ib
Ib=Vc/Rb //from ciruit
//Ic value
Icq=betadc*Ib
//Vce value
Vceq=Vc-(Icq*Rc)
//to draw DC load line
Ic1=Vc/Rc
Vce1=Vc
Vce=[Vc Vceq 0]
Ic=[0 Icq Ic1]
printf("Q(%f volt,%f ampere)\n",Vceq,Icq)
plot2d(Vce, Ic)
xlabel("Vce in volt")
ylabel("Ic in ampere")
xtitle("DC load line for base bias circuit")
|
5f282525e0d173addbd7760408a8e25d0cdb7f20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1946/CH9/EX9.2/Ex_9_2.sce | 6d014a180e5db678668d33e3db543ca07ad26d74 | [] | 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_9_2.sce | // Example 9.2;//photocurrent
clc;
clear;
close;
R=0.85;//responsivity in ampere per watt
Po=1;//output power in milli watt
Ip= R*Po;//photocurrent in milli ampere
disp(Ip,"photocurrent in milli ampere is ")
|
8b4df76026e45ee59372036259660a8081885653 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2175/CH7/EX7.10/7_10.sce | 15b703b1e5ab50210e4ddb11ad7f33c61215946a | [] | 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 | 267 | sce | 7_10.sce | clc;
b=0.228;
a=1-b;
c=[1+(2*0.455)-b-2*a]/2
n2=a+b+c+1.709;
p1=8.28;
T2=555;
n1=1+0.455+1.709;
T1=2968;
p2=p1*(n2/n1)*(T1/T2);
p=1;
K=a/b*[n2*p/(c*p2)]^0.5;
disp(log(K),"log(K) is:");
disp("2968","from tables it is proved that temperatur is:")
|
1520d387428ab4aed1c8cf4238773599dccbbd81 | 717ddeb7e700373742c617a95e25a2376565112c | /3044/CH8/EX8.12/Ex8_12.sce | dca8de16974a90ff26b2bebcd48e70e314bb9caa | [] | 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 | 701 | sce | Ex8_12.sce | // Variable declaration
val = 0
data1 = [27,23,64,44,30,75,26,124,54,30,14]
data2 = [15,13,22,29,31,64,30,64,56,20,21]
y = [1,1,1,1,1,1,1,1,1,1.1,1]
d = []
alpha = 0.05 // level of significance
for i = 1:11
d(i) = data1(i)-data2(i)
end
n = length(d)
Mean = sum(d)/(length(d))
// Calculation
for i = 1:length(d)
val = val + (Mean-d(i))^2
end
val = val/(n-1)
deg = n-1
t = 2.228 // t-value for 10 degree of freedom
y1 = (Mean - t*(sqrt(val/n))) // Lower limit
y2 = (Mean + t*(sqrt(val/n))) // upper limit
// Result
printf ( "95%% confidence interval: ( %.2f , %.2f )",y1,y2)
disp(length(d),length(y))
plot(d,y,"ro")
title("Dot Diagram")
|
edc06e2e6540a1b4783cd7b15034155f2c92fcec | 3c9ed378363a111d20ce027e85cbc5ac9629bbb9 | /r_lineal.sce | d63e2cf97a49d63e51b1cbf8ea4821ddbaf9912f | [] | no_license | JeG99/scilab-code | 2b9eade6e57730a6274fb7ffc3f723bfd26d6153 | eae76b665688e04a5de2af8b56d0357ab0de340b | refs/heads/master | 2022-10-09T06:33:39.463575 | 2020-06-06T03:52:43 | 2020-06-06T03:52:43 | 269,859,512 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,499 | sce | r_lineal.sce | clear
///////////////////////////////////////////////////////
// r_lineal.sce
//
// Este programa obtiene los coefientes de una ecuacion
// lineal por medio de sus fórmulas de regresión, dado
// un conjunto de pares coordenados.
//
// José Elías Garza Vázquez
// 22 / 01 / 20 version 1.0
//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
// regresionLineal
//
// Funcion que calcula los coeficientes de una ecuacion
// de primer grado por medio de sus formulas de regresión
// aplicadas a un conjunto de pares coordenados contenidos
// por una matriz.
//
// Parametros:
// pares es la matriz que contiene a los pares
// coordenados
// Regresa:
// coeficientes es un vector que contiene los 2
// coeficientes a0 y a1 de la ecuación.
//
/////////////////////////////////////////////////////
function coeficientes = regresionLineal(pares)
// Obtengo el numero de datos
n = size(pares)(1)
// Obtengo la sumatoria de todas las x
xSum = sum(pares(:, 1))
// Obtengo la sumatoria de todas las y
ySum = sum(pares(:, 2))
// Elaboro ciclo para obtener la sumatoria de todos los productos x*y
xySum = 0
for i = 1 : n
xySum = xySum + pares(i, 1)*pares(i, 2)
end
// Obtengo la sumatoria de todas las x elevadas al cuadrado
x2Sum = sum(pares(:, 1)^2)
// Obtengo el promedio de x
meanX = mean(pares(:, 1))
// Obtengo el promedio de y
meanY = mean(pares(:, 2))
// Uso la ecuacion para calcular el primer coeficiente con los datos anteriores
a1 = (n*xySum - xSum*ySum)/(n*x2Sum - (xSum)^2)
// Uso la ecuacion para calcular el segundo coeficiente con los datos anteriores y el primer coeficiente
a0 = meanY - a1*meanX
// Genero el vector con los dos coeficientes de la ecuacion
coeficientes = [a0, a1]
endfunction
/////// Programa Principal
// pido los valores
n = input("Inserte el número de pares coordenados que desea utilizar: ")
// Creo una matriz con el número de espacios que el usuario pidio
data = zeros(n, 2)
// Elaboro ciclo para pedir los pares
for i = 1 : n
for j = 1 : 2
if(j == 1)
data(i, j) = input("inserta x: ")
else
data(i, j) = input("inserta y: ")
end
end
end
//despliego los coeficientes resultantes de la regresion
A = regresionLineal(data)
disp("a0 = " + string(A(1)) + ", a1 = " + string(A(2)))
|
a5ea099ea95c26c68fd88886e6f6d0e1b699d3fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH3/EX3.19/19.sce | 8186ab2b2baa8578af4e087d1155a7a037c8b658 | [] | 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 | 451 | sce | 19.sce | clc
clear
//INPUT DATA
n=2//no.of atoms in BCC structure
d=7.86*10^6//density of iron of FCC structure in kg/m^3
AW=55.85//atomic weight of Fe
N=6.023*10^23//Avogadro's Number per Kg mol
//CALCULATION
a=(((n*AW)/(d*N))^(1/3))/10^-10//The lattice constant in m
r=((a*sqrt(3))/4)//The atomic radius of Fe which has BCC structure in armstrong*10^-10
//OUTPUT
printf('The atomic radius of Fe which has BCC structure is %3.3f armstrong',r)
|
fa47cbdb769119e8a326ca651957ef73ec6da11e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH4/EX4.18/Ex4_18.sce | 8bd1e0450da50f8beb08b7f7bb2a846c0b456be8 | [] | 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 | 838 | sce | Ex4_18.sce | clc
//Variable Initialisation
Ea=230//Input Voltage of motor in volts
Ia=50//Armature Current in Ampere
N1=800//Rated Speed of Motor in rpm
Ra=0.4//Armature resistance in ohm
d1=0.3//Duty ratio for Motoring Operation
d2=0.6//Duty ratio for Motoring Operation
d3=0.7//Duty ratio for Braking Operation
d4=0.4//Duty ratio for Braking Operation
//Solution
E01=d1*Ea
Eb1=Ea-(Ia*Ra)
Eb2=E01-(Ia*Ra)
N2=(Eb2/Eb1)*N1
E02=d2*Ea
Eb3=E02-(Ia*Ra)
N3=(Eb3/Eb1)*N1
E03=d3*Ea
Eb4=E03+(Ia*Ra)
N4=(Eb4/Eb1)*N1
E04=d4*Ea
Eb5=E04+(Ia*Ra)
N5=(Eb5/Eb1)*N1
printf('\n\n Motor speed for Motoring Operation 1 =%0.1f rpm\n\n',N2)
printf('\n\n Motor speed for Motoring Operation 2=%0.1f rpm\n\n',N3)
printf('\n\n Motor speed for Braking Operation 1=%0.1f rpm\n\n',N4)
printf('\n\n Motor speed for Braking Operation 2=%0.1f rpm\n\n',N5)
|
ba7a109f3513d6f7f3a487c561b7ae74fc9268e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1514/CH12/EX12.3/12_3.sce | 9ae922c005a00fe788cf0d6ea935a72be4b4bfec | [] | 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,353 | sce | 12_3.sce | //chapter 12
//example 12.3
//page 371
clear all;
clc ;
//given
Vcc=20;//supply voltage
Rl=500;//load resistance
Av=75;//closed loop voltage gain
f1=30;// i/p signal frquency Hz
hfe=80;
hie=1.4;
Ve=5;Vce=3;
VR2=5.7;
Vbe=5;
VR3=Vcc-Vce-Ve;
R3=Rl/10;
Ic=VR3/R3*10^3;
printf("\ncollector current = %d microA,\ntoo small for operations of transistor,\nSo Ic=1 mA",Ic)
Ic=1;
R3=VR3/Ic;
printf('\nR3=%d kohm which is standard value',R3)
R45=(Ve/Ic);
R4=1000*((R3*Rl)/(R3+Rl))/Av;
printf("\nR4=%d ohm ,use standard value 150 ohm",R4);R4=150;
R5=R45-R4/1000;
printf("\nR5=%.2f kohm ,use standard value 5.6 kohm",R5);
R5=5.6;//kohm
//potential divider current and resistors
I2=Ic/10;
Ve=0.7;
R2=(Vbe+Ve)/I2;
printf("\nR2=%d kohm,use standard value 56 kohm",R2);R2=56;
R1=(Vcc-VR2)/I2;
printf("\nR1=%d kohm,use standard value 150 kohm",R1);R1=150;
Zb=hie+(1+hfe)*R4/1000;
//input impedance
Zi=1/((1/Zb)+(1/R1)+(1/R2));
printf("\ninput impedance=%.2f kohm",(Zi));
//capacitance
XC1=Zi/10;
XC1=1;
C1=10^3/(2*%pi *f1*XC1);
printf("\ncapacitor C1=%.1f microF,use standard value 5.6 microF",(C1))
XC2=R4;
C2=10^6/(2 * %pi *f1* XC2);
printf("\ncapacitor C2=%.1f microF,use standard value 39 microF",C2)
C3=10^3/(2*%pi *f1*Rl/10);
printf("\ncapacitor C3=%.3f microF,use standard value 0.1 microF",C3)
|
b503655f960940f4834b4a3db4efa347740e2206 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH4/EX4.10/Ex4_10.sce | 68b4b7c81dbe8bcb1694f40ea9b398a47f04eb94 | [] | 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 | 952 | sce | Ex4_10.sce |
// Theory and Problems of Thermodynamics
// Chapter 4
// Energy Analysis of Process
// Example 10
clear ;clc;
//Given data
V = 2 // volume in m^3
gam = 1.67 // gamma ideal gas coefficient
P0 = 0.1 // Initial Pressure in MPa
T0 = 300 // Initial Temperature in K
Pf = 3 // Final Pressure in MPa
T1 = 500 // Final Temperature in K
R = 8.314 // Gas constant
// Calculation
// the first law of thermodynamics for a transient flow and after rewriting
Tf = Pf/(((Pf-P0)/(gam*T1))+(P0/T0)) // Final temperature
Pf = Pf * 1e6 // units conversion from MPa to Pa
P0 = P0 * 1e6 // units conversion from MPa to Pa
q = (V/R)*(Pf/Tf - P0/T0)
// Output Results
mprintf('Temperature of helium in the tank = %6.2f K',Tf)
mprintf('\nQuantity of helium entered into tank = %6.2f mol',q)
|
728e7f6aa3bf3637b55fccb1c01007c8c03d543f | 45e046b9cab35a22858077ef405f8c8b8125a87f | /Assignment-1/Questn-4/variants.sce | 6c85bf1565a9d538d15c5fe994dfc08541109c4f | [] | no_license | shilpasunil/AP-laboratory | 4a67e510a05e5ce48f200ee73183627a12a19d55 | 87d55510d6f3c4a80ce1779e9b39430ee20e69b2 | refs/heads/main | 2023-02-09T16:13:34.048845 | 2021-01-07T04:43:35 | 2021-01-07T04:43:35 | 327,504,813 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sce | variants.sce | k=1;
cp=zeros(1,991);
c=zeros(1,991);
noe=zeros(1,991);
for n=10:1000
noe(k)=n;
a=round(rand(1,n)*100);
[cmp_h,ab] = quick(a,1,n,0);
[cmp_r,ar] = sorttest_quick(a,1,n,0);
cp(k) = cmp_r;
c(k) = cmp_h;
k=k+1;
end
plot(noe,cp,"m");
plot(noe,c);
xlabel("ARRAY SIZE");
ylabel("NUMBER OF COMPARISON");
title("FOR REVERSE DATA");
xgrid(2);
legend("NORMAL QUICK","HYBRID QUICK",2);
|
011a13743fb3ca6276627acf5966c8898048b8e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /281/CH5/EX5.5/example5_5.sce | 2cef022a6cbdda11417839458df693908170ffe7 | [] | 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 | 338 | sce | example5_5.sce | disp('chapter 5 ex5.5')
disp('given')
disp('709 op-amp is used to design an noninverting amplifier')
disp('voltage gain Av=50')
Av=50
disp('voltage gain Av=50=34dB')
disp('compensation components are listed for Av=20dB and for Av=40dB')
disp('for over compensation use components for Av=20dB')
disp('C1=500pF R1=1.5kohms C2=20pF') |
94ea956d9c08a04e5adf96faba7c330bb57bf714 | 0592c9e4cfbb77a0755aff6f0c798d9fe31f6ff4 | /scilab/CDO_Pricer/scilab/interface.sci | 29f7427928651edb7eb20de641957994f38b98cb | [] | no_license | FinancialEngineerLab/premia-13-cpp_FICC | e19caa6a9cadb4ad1361053efc0dfc9418071cf9 | e271da627dbfc8c2c1f7e9f700766544f64c72b2 | refs/heads/master | 2023-03-16T11:11:26.830681 | 2016-04-19T05:58:16 | 2016-04-19T05:58:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 496 | sci | interface.sci | try
type(cdo_factor);
delmenu('CDO');
catch
// exec builder.sce;
exec loader.sce;
end;
addmenu('CDO',['Product';'Model';'Computation';'Last computation';'Numdef';'Losses']);
CDO=['exec(''product.sci'',-1)';'exec(''model.sci'',-1)';'exec(''computation.sci'',-1)';'exec(''last_computation.sci'',-1)';'exec(''animate_numdef'',-1)';'exec(''animate_losses.sci'',-1)'];
unsetmenu('CDO',5);
unsetmenu('CDO',6);
exec('product.sci',-1);
exec('model.sci',-1);
exec('computation.sci',-1);
|
93c97a38c4257d756c82a165464b5baebdcc5a47 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3637/CH2/EX2.16/Ex2_16.sce | 12724dd8567686f7650ad94f58fc339d4642aafb | [] | 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 | 395 | sce | Ex2_16.sce | //problem 16 pagenumber 2.99
//given
f1=500;//hz
f2=2.2e3;//hz
a=5;
c=0.1e-6;//farad
rf1=10e3;//ohm
//determine r1 r2
R1=1/(2*3.14*f1*c);
R2=1/(2*3.14*f2*c);
Ri=2e3;//ohm assuming
Rf=(a-1)*Ri;format(6);
disp('R = '+string(R1/10^3)+' Kohm');
disp('R2 = '+string(R2/10^3)+' Kohm');//error in book
disp('R1 = '+string(Ri/10^3)+' Kohm');
disp('Rf = '+string(Rf/10^3)+' Kohm');
|
2bf4863d6d1a4e5f83ed7d66e3884a1c5288c39f | 986b9b329679cdb931a688f3b846e253cf877a93 | /Exercise_30.sce | a752a7209253c4d2dbe49c69273f834326e25a5c | [] | no_license | Gotcha17/CompFin_Sheet10 | 437c12ec6d2a42a423cac4f508525e4fd761ff21 | 2a8f1a3a58708d3233240828b7202c9e8466fc58 | refs/heads/master | 2021-01-02T23:01:07.219707 | 2017-08-21T20:14:26 | 2017-08-21T20:14:26 | 99,440,898 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,678 | sce | Exercise_30.sce | clc; clear; funcprot(0);
function V0 = UpOutPut_BS_MC_Richardson (S0, r, sigma, T, K, B, M, m)
delta_t = T/(2*m); // Fine mash
// generate a Matrix of mxM normaly distributed r.v. with mean = 0 and ...
// sd = sqrt(delta_t)
delta_W1 = grand(m, M, "nor", 0, sqrt(delta_t));
delta_W2 = grand(m, M, "nor", 0, sqrt(delta_t));
// Initialize matrices for no barrier hit information
nobarrier_hit_fine = ones(1,M);
nobarrier_hit_coarse = ones(1,M);
// Set initial stock values for first time t=0
Euler_fine = S0;
Euler_coarse = S0;
// Since in the BS model dSt = r*St*dt + sigma*St*delta_W
for i=1:m
// Calculation matrices of values for fine grid and for coarse grid
// Since grid of fine calculation is twice as fine, twice as many
// calculation steps are needed
Euler_fine = Euler_fine + r*Euler_fine*delta_t +...
sigma.*Euler_fine.*delta_W1(i,:);
nobarrier_hit_fine = nobarrier_hit_fine.*(Euler_fine<B);
Euler_fine = Euler_fine + r*Euler_fine*delta_t +...
sigma.*Euler_fine.*delta_W2(i,:);
nobarrier_hit_fine = nobarrier_hit_fine.*(Euler_fine<B);
// For the coarse grid, stepsize is twice as large: 2*delta_t
// and also both brownian motions are needed for this stepsize
Euler_coarse = Euler_coarse + r*Euler_coarse*2*delta_t +...
sigma.*Euler_coarse.*(delta_W1(i,:)+delta_W2(i,:));
nobarrier_hit_coarse = nobarrier_hit_coarse.*(Euler_coarse<B);
end
// Define put option function g
function y = g(x)
y = max((K - x), 0);
endfunction
//
V_fine = nobarrier_hit_fine.*(g(Euler_fine)*exp(-r*T));
V_coarse = nobarrier_hit_coarse.*(g(Euler_coarse)*exp(-r*T));
// Calculating final result for option price at time t=0 by averaging over...
// all simulated prices with the MC simulation
V0 = mean(2*V_fine-V_coarse);
endfunction
// Function from Exercise 12
function V_0 = UpOutPut_BinMod(S_0, r, sigma, T, K, B, M)
delta_t = T/M; //calculation of delta_t
Beta = (exp(-r*delta_t)+exp((r+sigma^2)*delta_t))/2; //calculation of beta for CRR
u=Beta+sqrt((Beta^2)-1); //so u>d is true
d=u^-1; //because ud=1
q=(exp(r*delta_t)-d)/(u-d); //calculation of succes probability (u)
S=zeros(M+1,M+1); //creation stock price matrix
S(1,1)=S_0; //Setting stock price at t=0 as initial price in the stock matrix
for i=2:M+1 //Initializing algo for computation of stock price
for j=1:i
S(j,i)=S(1,1)*u^(j-1)*d^(i-j); //with j upwards and i-j downwards movements
end
end
V=-ones(M+1,M+1); //creating option value matrix
V(:,M+1)=max((K-S(:,M+1)), 0); //calculation of option values for last column
for i=M:-1:1 //Initializing algo for computation of option price
//option value is zero if at current point stock price is higher than the barrier
V(1:i,i)=exp(-r*delta_t)*(q*V(2:i+1,i+1)+(1-q)*V(1:i,i+1)).*(S(1:i,i) < B);
end
V_0 = V(1,1); //setting of first element of the option value matrix as option price at time t=0
endfunction
// Set values for the input variables
S0 = 100; S_0 = S0; r = 0.05; sigma = 0.2; T = 1; K = 100; B = 110; M = 10000; m = 250;
// Run functions and display result
V0 = UpOutPut_BS_MC_Richardson (S0, r, sigma, T, K, B, M, m)
M = 1000;
V_0 = UpOutPut_BinMod(S_0, r, sigma, T, K, B, M)
disp("Price of UpOutPut BS_MC_Richardson: "+string(V0))
disp("Price of UpOutPut BinMod: "+string(V_0))
|
d6dc20913dac60d75188dc83d5eee81c53b84259 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH1/EX1.3/Ex1_3.sce | 1f4cc7aa5664f77954e8ffe4893fd078bec0dff1 | [] | 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 | 206 | sce | Ex1_3.sce | //Example 1-3, Page No - 15
clear
clc
wavelength_feet=75
wavelength_meter= 75/3.28
c=300000000
frequency=c/wavelength_meter
printf('The signal frequncy is %.3f Megahertz',frequency/1000000)
|
1af259622ad3d06327be8be5fcda23dd2a993108 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3802/CH8/EX8.4/Ex8_4.sce | 39572035f67ea91efc027fffe6ca2e619c4fc913 | [] | 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 | 710 | sce | Ex8_4.sce | //Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex8_4.sce
clc;
clear;
p=4;
s=21;
Cs_per_slot=4;
Cs=Cs_per_slot*s;
printf("\n Number of coil sides=%d \n",Cs)
C=Cs/2;
printf("\n Number of coils=%d \n",C)
Yc1=(C+1)/(p/2);
Yc2=(C-1)/(p/2);
C=41; //Simplex wave winding is not possible with 42 coils.Therefore active coils are 42
Yc=(C+1)/(p/2);
printf("\n Commutator pitch=%d \n",Yc)
Y=((2*C)+2)/(p/2);
printf("\n Winding pitch=%d \n",Y)
Yb=Y/2;
printf("\n Back pitch=%d \n",Yb)
Yf=Yb;
printf("\n Full pitch=%d \n",Yf)
//This value of Yb also satisfies the condition to avoid split winding
|
41a179d9fc1dcf8a3d1fd5f4c03280b8244a7b3b | 5d079b5e33f7565df988283b8566430d84135c9d | /MR2GDL/MR2GDL.sce | dfbdb4eb2159a5dc1b86add552b954d480b2f1fd | [] | no_license | Torradera/MEC1804 | ee158d5c1afa0bb8f9156ea650beb16bbbad8b87 | e5e0d93f27ddb1b38bf182af0af6649fdab3a860 | refs/heads/master | 2021-03-09T18:10:47.009137 | 2020-03-11T22:47:41 | 2020-03-11T22:47:41 | 246,365,858 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 725 | sce | MR2GDL.sce | clear
clc
t = [0:0.001:4] //tempo
l1 = 1 //tamanho do braco 1
l2 = .5
theta1 = %pi*t/8 //theta1 em funcao do tempo
theta2 = %pi*(t.^2)/16 // theta2 em funcao do tempo
dtheta1 = %pi/8
dtheta2 = -%pi*t/8
ddtheta1 = 0
ddtheta2 = -%pi/8
//Movimento
x = l1*cos(theta1) + l2*cos(theta1+theta2)
y = l1*sin(theta1) + l2*sin(theta1+theta2)
//Velocidade
vx = -l2*(dtheta1 + dtheta2).*sin(theta2-theta1) - l1.*sin(theta1).*(dtheta1)
vy = 12*(dthet1+dtheta2).*cos(theta2+theta1) + l1.*cos(theta1).*(dtheta1)
//Aceleracao
ax = -12*(ddtheta2 + ddtheta1).*sin(theta2-theta1) - 12*((dtheta2+dtheta1).^2).*cos(theta2-theta1) - l1*sin(theta1).*ddtheta1 - l1*cos(theta1).*(dtheta^2)
ay = -12((dtheta2 + dtheta1.^2).*sin(theta2+theta1) |
0f67087625f66a32dd698d3659d7395d4fa3b85f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH6/EX6.22/EX6_22.sce | 05ec1beda796020a54ab7aad30eb89472c4ef20a | [] | 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 | 393 | sce | EX6_22.sce | //Example6.22 // To determine the output voltage
clc;
clear;
close;
Vin = 2 ;
R2 = 20*10^3 ;
R1 = 2*10^3 ;
// the output voltage of follower Vo1 is
Vo1 = Vin ;
disp('the output voltage of follower Vo1 is = '+string(Vo1)+ ' V');
// the output voltage of an inverting amplifier
Vo = -(R2/R1)*Vo1 ;
disp('The output voltage of an inverting amplifier is = '+string(Vo)+ ' V ');
|
6753cf7cf8483c14aa7039ba67cc7d7af42591b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3136/CH8/EX8.6/Ex8_6.sce | 5c558d424df322d41f00fa6915eaed31cd8f5b2f | [] | 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,103 | sce | Ex8_6.sce | clear all; clc;
disp("From figure 8.14c we have Pl=620hp at N=18400rpm. Pick a point on the curve of N/(T01^0.5)=18400/(530^0.5)=800")
disp("In figure 8.14a,say p02/p01=5")
disp("So we have")
disp("m(T01^0.5)/p01 ETAc p02(psia) m(lbm/s) p03(psia) p03/p04")
disp(" 5.7 0.85 73.5 3.64 71.5 4.86")
disp("where p02=5*14.7")
p02=5*14.7
printf(" Thus p02= %0.2f",p02)
disp("m=5.7*14.7/(530^0.5)")
m=5.7*14.7/(530^0.5)
printf(" m= %0.2f",m)
disp("73.5-2")
p03=73.5-2
printf(" m= %0.2f psia",p03)
//Let i=p03/p04
i=71.5/14.7
printf("\n p03/p04= %0.2f",i)
disp("Then from figure 8.14b,with p03/p04 and m3=m2 we have")
disp("m(T01^0.5)/p01 T03(R) N/(T03^0.5) ETAt")
disp("2.56 2528 366 0.87")
disp("where T03=(2.56*71.5/3.64)^2")
T03=(2.56*71.5/3.64)^2
printf(" T03= %0.2f",T03)
disp("N/T03=18400/(2528^0.5)")
//let k=N/T03
k=18400/(sqrt(2528))
printf(" Thus T03= %0.2f",k)
disp("So from equations (8.1),(7.4) and(8.11) we have:")
disp("delta_T034=ETAt*T03*[1-(p04/p03)^((k-1)/k)]")
delta_T034=0.87*2528*[1-(4.86)^(-0.248)]
printf(" delta_T034 = %0.0f R",delta_T034)
disp("delta_T012=(T01/ETAc)*[(p02/p01)^((k-1)/k)-1]")
delta_T012=(530/0.85)*[(5^0.2857)-1]
printf(" delta_T012= %0.0fR",delta_T012)
P0=3.64*(0.28*713-0.24*(364/0.95))
printf(" \n and P0=3.64*(0.28*713-0.24*(364/0.95))= %0.0f Btu/s=554hp, which is less than Pl",P0)
disp("So we pick another point on the same curve , say p02/p01=5.2, and repeat the calculations ")
disp("m(T01^0.5)/p01 ETAc p02(psia) m(lbm/s) p03(psia) p03/p04 m(T01^0.5)/p01 T03(R) N/(T03^0.5) ETAt")
disp("5.6 0.88 76.4 3.57 74.4 5.06 2.55 2824 346 0.85")
delta_T034=0.85*2824*[1-(5.06^(-0.248))]
printf("\n The new delta_T034= %0.2fR",delta_T034)//the book has rounded off the value to 794R,the value calculated in this code is more accurate
delta_T012=(530/0.88)*[(5.2^0.2857)-1]
printf("\n delta_T012= %0.0fR",delta_T012)
P0=3.57*(0.28*794-0.24*362/0.95)
printf("\n Net output power P0= %0.0f Btu/s=660hp, which is much greater than Pl \n\n",P0)
disp("Pick another point say p02/p01=5.15")
disp("m(T01^0.5)/p01 ETAc p02(psia) m(lbm/s) p03(psia) p03/p04 m(T01^0.5)/p01 T03(R) N/(T03^0.5) ETAt")
disp("5.65 0.87 75.7 3.61 73.7 5.01 2.55 2710 353 0.86")
delta_T034=0.86*2710*[1-(5.01^(-0.248))]
printf("\n\n From new values delta_T034= %0.0f R",delta_T034)
delta_T012=(530/0.87)*[(5.15^(0.2857))-1]
printf("\n and delta_T012= %0.0f R",delta_T012)
P0=3.61*(0.28*768-0.24*(364/0.95))
printf("also P0= %0.1f Btu/s =628hp",P0)
disp("P0 is close to Pl")
disp("So the running point is around p02/p01=5.15, m(T01^0.5)/p01=5.65")
disp("and N/(T01^0.5)=800 on the compressor characteristics")
disp("It is not too close to the surge line and hence is safe.")
|
64832a151d489d7629ed28eef2e7840eec1f1bb2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /615/CH8/EX8.18/8_18.sce | a6edc8737113e3cbf7a6186fec20eefbd024a278 | [] | 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,390 | sce | 8_18.sce | //Fuels and Combustion//
//Example 8.18//
C=624;//weight of carbon in 1kg of coal sample in grams//
O=69;//weight of oxygen in 1kg of coal sample in grams//
S=8;//weight of Sulphur in 1kg of coal sample in grams//
N=12;//weight of nytrogen in 1kg of coal sample in grams//
H=41;//weight of hydrogen in 1kg of coal sample in grams//
CO2=129;//weight of CO2 in 1kg of coal sample in grams//
CO=2;//weight of CO in 1kg of coal sample in grams//
MO=C*32/12+H*16/2+S*32/32-O;//minimum weight of oxygen needed in grams//
MA=MO*0.1/23;//minimum weight of air needed in kilograms//
printf('minimum amount of air needed=MA=%fkg',MA);
WC=CO2*(12/44)+CO*(12/28);//weight of C in fuel gas/kg//
printf('\nWeight of C in fuel gas/kg=WC=%fg',WC);
WF=C/WC;//Weight of fuel gas/kg of coal in g//
printf('\nweight of fuel gas/kg of coal=WF=%fg',WF);
O2=2*16/28;//O2 needed to convert CO to CO2 in Kg//
RWO2=(61-O2)/1000;//remaining weight of O2/kg of fuel gas in Kg//
printf('\nRemaining weight of O2/kg of fuel gas=RWO2=%fkg',RWO2);
WO2=WF*RWO2;//weight of O2 obtained by burning 1kg coal in kg//
printf('\nWeight of O2 obtained by burning coal=WO2=%fkg',WO2);
AR=WO2*100/23;//air required in kilograms//
printf('\nAir required=AR=%fkg',AR);
WAS=MA+AR;//weight of air actually supplied/kg coal burnt in kg//
printf('\nWeight of air actually supplied/kg coal burnt=WAS=%fkg',WAS);
|
43d1ba28caa5328820b77cc984343593922853a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH15/EX15.11/15_11.sce | 5951a0304e8ad93c780166fc565472bbc9436a61 | [] | 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 | 366 | sce | 15_11.sce | //Example 15.11
//Midpoint Method
//Page no. 518
clc;clear;close;
deff('y=f(x,y)','y=y+x')
y=1;
h=0.2;
printf('i\txi\tyi\tslope1\tslope2\ty(i+1)\n-----------------------------------------------\n')
for i=1:3
x=(i-1)*h
s1=f(x,y);
s2=f(x+h/2,y+s1*h/2);
printf(' %i\t%g\t%g\t%g\t%g',i-1,x,y,s1,s2)
y=y+s2*h;
printf('\t%g\n',y)
end |
10dd6455c49cbea87addaa6c48fd773ab3225485 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3594/CH2/EX2.11/ex2_11.sce | eac63d9ba7cb593daf58d9f479ec74422b9e6020 | [] | 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,014 | sce | ex2_11.sce |
clc
printf("\n")
//let
//S=displacement of car from rest with uniform acceleration a, the engine torque T assumed to remain ocnstant
//v=final speed ofcar
//G=gear ratio
//r=effective radius
//n=efficiency of transmission
//M=mass of the car
//Ia and Ib=moments of inertia of road whels and engine
//formulas => F=29.5nG ; Me= 1648+$.54nG^2 ; a=32.2 F/Me
//given
G1=22.5
G2=12.5
G3=7.3
G4=5.4
n=.82//for 1st ,2nd and 3rd gear
n4=.9//for 4th gear
F1=29.5*n*G1
F2=29.5*n*G2
F3=29.5*n*G3
F4=29.5*n4*G4
//on reduction and putting values we get
Me1=1648+4.54*n*G1^2
Me2=1648+4.54*n*G2^2
Me3=1648+4.54*n*G3^2
Me4=1648+4.54*n4*G4^2
a1=32.2*F1/Me1
a2=32.2*F2/Me2
a3=32.2*F3/Me3
a4=32.2*F4/Me4
printf("Maximum acceleration of car on top gear is %.2f ft/s^2 \n",a4)
printf("Maximum acceleration of car on third gear is %.2f ft/s^2 \n",a3)
printf("Maximum acceleration of car on second gear is %.2f ft/s^2 \n",a2)
printf("Maximum acceleration of car on first gear is %.2f ft/s^2 \n",a1)
|
653775294e505fa024df592c0a543741eb69b713 | 948c6e0314c1822f872350cf63aaceb3d28fa497 | /tests/test-usage-003.tst | 86770d0798d72c84eb46fffacefe181e170f295d | [
"Apache-2.0"
] | permissive | archiecobbs/bom | 832eb815b40f4955e6551496bdd2598cb4f00442 | 0bab1a015bb5e53345e5422902e16f802bd4c07f | refs/heads/main | 2023-08-25T05:43:51.470221 | 2021-11-04T16:12:49 | 2021-11-04T16:12:49 | 417,213,171 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 72 | tst | test-usage-003.tst | FLAGS='--detect --list'
STDIN=''
STDOUT=''
STDERR='!USAGE!'
EXITVAL='1'
|
cfe695d713f5e247962f796b3f3e5faedae32d9b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH11/EX11.1/Example11_1.sce | 95e4aa69d9eaf599b9c49767779f79e9611a0bf2 | [] | 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,135 | sce | Example11_1.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 4: OVERHEAD LINE INSULATORS
// EXAMPLE : 4.1 :
// Page number 183
clear ; clc ; close ; // Clear the work space and console
// Given data
V_1 = 9.0 // Potential across top unit(kV)
V_2 = 11.0 // Potential across middle unit(kV)
n = 3.0 // Number of disc insulators
// Calculations
// Case(a)
K = (V_2-V_1)/V_1 // Ratio of capacitance b/w pin & earth to self capacitance
// Case(b)
V_3 = V_2+(V_1+V_2)*K // Potential across bottom unit(kV)
V = V_1+V_2+V_3 // Voltage between line and earth(kV)
V_l = 3**0.5*V // Line voltage(kV)
// Case(c)
eff = V/(n*V_3)*100 // String efficiency(%)
// Results
disp("PART II - EXAMPLE : 4.1 : SOLUTION :-")
printf("\nCase(a): Ratio of capacitance b/w pin & earth to self-capacitance of each unit, K = %.2f ", K)
printf("\nCase(b): Line voltage = %.2f kV", V_l)
printf("\nCase(c): String efficiency = %.f percent", eff)
|
8a5d44df75d8c495727da177b5f5fe075277e837 | b67defe3c1cae63dd1a79578f840d069568034e6 | /scilab/test_mnprobln.sci | c6db811f3b99bb4fe04f4173761bcba275eb7ac0 | [] | no_license | wmacevoy/luck | bf5d93ce00e8136634d715057a97706d3aa804b3 | 47e5c8eb1782a1b4f3f5b9e7583290d9a842532e | refs/heads/master | 2023-05-03T14:46:51.353817 | 2023-04-25T03:13:44 | 2023-04-25T03:13:44 | 33,452,250 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 702 | sci | test_mnprobln.sci | exec("mnprobln.sci",2);
function ok=test_mnprobln()
mu=[1;-1];
Sigma=[5 6;6 9];
n1=51;
y1=linspace(-10,10,n1);
n2=51;
y2=linspace(-10,10,n2);
y=zeros(2,n1*n2);
for i1=1:n1
b=(i1-1)*n2;
y(1,b+1:b+n2)=y1(i1);
y(2,b+1:b+n2)=y2;
end
dy=((y1(n1)-y1(1))/(n1-1))*((y2(n2)-y2(1))/(n2-1));
p=exp(mnprobln(y,mu,Sigma))*dy;
m0=sum(p);
m1=zeros(2,1);
m1(1)=sum(p .* y(1,:))/m0;
m1(2)=sum(p .* y(2,:))/m0;
m2=zeros(2,2);
for i=1:2
for j=1:2
m2(i,j)=sum(p .* (y(i,:)-mu(i)).*(y(j,:)-mu(j)))/m0;
end
end
assert_checkalmostequal(m0,1,0.025);
assert_checkalmostequal(m1,mu,0.025);
assert_checkalmostequal(m2,Sigma,0.025);
ok=%T;
endfunction |
0bd0cf5fddc5afd27aeb9d28b52dce4a56f59d95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH12/EX12.20/Ex12_20.sce | 3235836ace7d0f65dfc33d8c5f120741c3a479a4 | [] | 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 | 453 | sce | Ex12_20.sce | //Initilization of variables
theta=45 //degrees
l=0.5 //m
w=10 //rad/s
//Calculations
//PART a
//Here the theta derivative with respect to time is angular speed w
Vp1=l*(secd(theta)^2)*w //m/s
//Part b
//Radial Component
r=l*secd(theta)*tand(theta)*w //m/s
//Transverse Component
t=l*secd(theta)*w //m/s
//Total
Vp2=sqrt(r^2+t^2) //m/s
//Result
clc
printf('The velocity is:%fm/s\n',Vp1)
printf('The velocity in part b is %fm/s',Vp2)
|
702dba88864683db4b7919def513aa44aa07616b | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH1/EX1.23/ex_1_23.sce | 2eafa8ae595f44f4c8d22ea80678db38440f93e0 | [] | 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 | 769 | sce | ex_1_23.sce | //ex_23 product of discrete signal and unit step function
clear;
clc;
close;
t=-3:3;
x=[3 2 1 0 1 2 3];
//u[1-n]
for i=1:length(t);
if t(i)<=1 then
u1(i)=1;
else
u1(i)=0;
end
end
y=x.*u1';
figure
a=gca();
plot2d3(t,y)
plot(t,y,'r.')
xtitle('y[n]','n')
a.y_location='origin'
//u[n+2]-u[n]
for i=1:length(t);
if t(i)<1 & t(i)>=-2 then
u2(i)=1;
else
u2(i)=0;
end
end
z=x.*u2';
figure
a=gca();
plot2d3(t,z)
plot(t,z,'r.')
xtitle('z[n]','n')
a.y_location='origin'
//$[n-1]
for i=1:length(t);
if t(i)==1 then
del(i)=1;
else
del(i)=0;
end
end
p=x.*del';
figure
a=gca();
plot2d3(t,p)
plot(t,p,'r.')
xtitle('y[n]','n')
a.y_location='origin'
|
f451de2c954e3736f5905e3d9d7b8fda089a3b96 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH3/EX3.2/ex_3_2.sce | 09d884608e8a2469f2c52e2de33359b3aeefca9a | [] | 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,355 | sce | ex_3_2.sce | // Example 3.2: calculate the input impedence, output impedence, voltage gain and current gain
clc, clear;
Hie=3.2; // the h-parameters of the transistor in kilo-ohm
Hfe=100; // the h-parameters of the transistor
R1=40; // resistance in kilo-ohm
R2=4.7; // resistance in kilo-ohm;
Rc=4; // resistance in kilo-ohm;
Re=1.2; // resistance in kilo-ohm;
Rb=(R1*R2)/(R1+R2);
zi=(Rb*Hie)/(Rb+Hie);
zo=Rc;
Av=-(Hfe*Rc)/Hie;
Ai=-(Rb*Hfe)/(Rb+Hie);
Vcc=16; // voltage in volts
Vbe=0.6; // voltage in volts
Beta=100; // for transistor
Vb=(R2*Vcc)/(R1+R2);
Ib=(Vb-Vbe)/(Rb+(1+Beta)*Re);
Ic=Beta*Ib;
Ie=Ic;
re=26/Ie;
Zin=(Rb*(Beta*re*10^-3))/(Rb+(Beta*re*10^-3));
Zout=Rc;
Av1=-(Rc*10^3)/re;
Ai1=-(Beta*(Rb*10^3))/((Rb*10^3)+(Beta*re));
disp("part 1 -from h-parameter model")
disp(Rb,"base resistance (kilo-ohm) = ")
disp(zi,"input impedence (kilo-ohm) = ")
disp(zo,"ouput impedence (kilo-ohm) = ")
disp(Ai,"current gain (unitless) = ")
disp(Av,"voltage gain (unitless) = ")
disp("part 2 -from re model")
disp(Vb,"base voltage (V) = ")
disp(Ib,"base curret (mA) = ")
disp(Ic,"collector curret (mA) = ")
disp(Ie,"emitter curret (mA) = ")
disp(re,"resistance = ")
disp(Zin,"input impedence (kilo-ohm) = ")
disp(Zout,"ouput impedence (kilo-ohm) = ")
disp(Ai1,"current gain (unitless) = ")
disp(Av1,"voltage gain (unitless) = ")
|
fee0d834f75008d36db63d523f3893c2ba4b9189 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH2/EX2.9/Ex2_9.sce | 3e801b9fb3d810007252d7e52a7b7c94a7fc2705 | [] | 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 | 447 | sce | Ex2_9.sce | // chapter 2
// example 2.9
// Fig. 2.17
// Calculate the value of commutating capacitance
// page-54
clear;
clc;
// given
Edc=120; // in V (source voltage)
I=20; // in A (current)
t_off=60; // in us (turn-off time of both SCR)
// calculate
R1=Edc/I; // calculation of R1
R2=R1; // calculation of R2
C=1.44*t_off/R1; // calculation of commutating capacitance
printf("\n\nThe commutating capacitance for succcessful commutation is \tC= %.1f uF",C); |
a6dd5f935df6d484b2e8e684f9489a38c4a11fcd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH3/EX3.1/eg3_1.sce | 1664e24adca109c1146f67eebf06e4e54971ead3 | [] | 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 | 936 | sce | eg3_1.sce | clear;
clc;
ld=100; //load in KW
v=500;............// voltage in volts
res=1.75*(.000001);...........//restivity in milli ohm per cm sq
nos_cores=2;.......//number of feeder core
l=0.8;.............//length of tx line in km
area=1;...........//area in cm sq
cost_of_energy=0.12;..//cost in Rs per unit
dep=0.1..............//depreciation percentage is 10%
flc=(ld*1000)/500;..//full load current
ra=(res*l*1000*ld);..//resistance* area in ohm-m
pow_loss=2*(flc*flc*ra*.001);...//(power loss*area) for the two cores in the cable
ann_en_loss=pow_loss*365*24;..//annual energy loss in KWH
cost=ann_en_loss*cost_of_energy;..//(cost*area) of annual energy loss in Rs
ann_dep=6*l*1000*dep;........//(ann_dep*area) in Rs
c=(cost/ann_dep);
area=sqrt(c);.......//area in cm sq
d=(area*4/(%pi));
dia=sqrt(d);..........//diameter in cm
printf("\n the most economical size is: %.2f cm\n ",dia);
|
466ad41d75390819fb0f77f017e6c22d285967bf | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.6_7.tst | fb93e31f6264046c953c5cbff2aa9fc2b20191fa | [] | 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 | 38,681 | tst | bow.6_7.tst | 6 9:0.5 14:1.5 16:0.125 18:0.06666666666666667 27:1.0 29:1.0 43:0.2 44:0.3333333333333333 56:0.5 60:0.025 64:0.6666666666666666 70:0.16666666666666666 78:0.3333333333333333 127:1.0 129:1.0 160:0.3333333333333333 183:0.25 199:1.0 200:1.0 230:0.25 289:1.0 301:1.0 387:0.25 398:0.3333333333333333 442:0.3333333333333333 578:1.0 604:1.0 764:1.0 873:1.0 925:1.0 978:1.0 1118:1.0 1155:2.0 1156:0.5 1167:0.3333333333333333 1251:1.0 1294:1.0 1440:1.0 1469:0.5 1625:1.0 2140:1.0 2202:1.0 3130:1.0 3339:0.5 3551:1.0 4705:1.0
6 14:0.5 16:0.0625 18:0.06666666666666667 24:0.14285714285714285 26:1.0 29:1.0 33:0.18181818181818182 43:0.2 50:0.5 52:1.0 53:0.5 61:0.25 90:0.125 97:1.0 117:1.0 125:1.0 129:1.0 142:1.0 199:1.0 282:1.0 311:0.5 405:1.0 414:0.5 415:0.5 793:1.0 1223:1.0 1298:1.0 1375:1.0 1379:1.0 1429:1.0 1497:1.0 2482:1.0 2960:1.0 3221:1.0 3549:1.0 4147:1.0 4266:1.0 4686:1.0 4786:1.0 5088:1.0
6 8:0.25 10:1.0 11:0.42857142857142855 14:0.5 16:0.125 18:0.06666666666666667 29:2.0 30:1.0 42:1.0 43:0.6 60:0.025 97:1.0 144:0.25 170:0.07142857142857142 199:1.0 222:0.16666666666666666 264:1.0 265:0.5 268:0.14285714285714285 415:0.5 549:0.5 829:1.0 868:0.5 1024:1.0 1064:1.0 1237:0.25 1457:1.0 1526:1.0 1714:1.0 1715:1.0 1916:1.0 4051:1.0 4567:1.0
6 14:0.5 16:0.1875 24:0.14285714285714285 26:1.0 29:1.0 52:1.0 53:0.25 64:0.3333333333333333 71:0.14285714285714285 78:0.3333333333333333 90:0.0625 148:1.0 222:0.3333333333333333 223:1.0 311:0.5 398:0.3333333333333333 405:1.0 430:1.0 442:0.3333333333333333 782:1.0 877:1.0 974:1.0 983:0.5 1254:0.5 2275:1.0 2482:1.0 2529:1.0 2905:1.0 2960:1.0 4103:1.0 4347:1.0 4735:1.0
6 14:0.5 16:0.1875 33:0.09090909090909091 43:0.6 44:0.3333333333333333 52:1.0 53:0.25 56:0.25 170:0.07142857142857142 171:1.0 228:0.3333333333333333 235:0.3333333333333333 280:1.0 318:1.0 347:0.5 387:0.5 521:0.5 531:0.16666666666666666 873:1.0 925:1.0 978:1.0 1037:1.0 1052:0.5 1130:0.25 1155:1.0 1258:1.0 1518:1.0 1740:0.5 1741:1.0 2130:0.3333333333333333 2275:1.0 2556:1.0 4891:1.0 7856:1.0
6 11:0.2857142857142857 16:0.0625 18:0.06666666666666667 29:1.0 43:0.2 53:0.5 56:0.5 61:0.25 64:0.3333333333333333 78:0.3333333333333333 87:1.0 129:1.0 144:0.25 200:1.0 244:0.16666666666666666 272:0.3333333333333333 289:1.0 290:0.16666666666666666 291:1.0 320:1.0 347:0.5 380:1.0 453:0.5 708:1.0 738:1.0 866:0.14285714285714285 1009:1.0 1130:0.25 2269:1.0 2421:1.0 2761:1.0 3492:1.0 3676:1.0 4789:1.0 5127:1.0 5130:1.0 7614:1.0
6 11:0.2857142857142857 14:0.5 16:0.1875 33:0.09090909090909091 53:0.5 55:1.0 56:0.25 71:0.14285714285714285 78:0.3333333333333333 160:0.3333333333333333 171:1.0 235:0.3333333333333333 237:0.125 275:0.2 371:1.0 407:1.0 435:1.0 547:0.3333333333333333 857:1.0 866:0.14285714285714285 872:0.5 902:1.0 938:1.0 1040:1.0 1203:1.0 1237:0.25 1517:1.0 2421:1.0 2426:1.0 3601:1.0 5225:1.0
6 14:1.0 24:0.14285714285714285 33:0.18181818181818182 43:0.2 49:0.09090909090909091 52:1.0 53:0.25 56:0.25 63:1.0 90:0.1875 116:1.0 171:1.0 222:0.16666666666666666 223:1.0 343:1.0 444:1.0 539:1.0 549:0.5 902:1.0 972:1.0 1027:1.0 1156:0.5 1375:1.0 1840:1.0 1929:1.0 2440:1.0 3476:1.0 4077:1.0 5807:0.5
6 5:0.5 11:0.5714285714285714 14:1.0 16:0.1875 18:0.06666666666666667 21:1.0 27:1.0 42:1.0 43:0.4 53:0.25 78:0.6666666666666666 99:1.0 104:1.0 144:0.25 146:0.5 248:1.0 289:1.0 291:1.0 364:1.0 485:1.0 784:1.0 822:1.0 935:0.14285714285714285 983:0.5 1079:1.0 1464:1.0 1535:2.0 1641:1.0 1912:1.0 2275:1.0 2276:1.0 2441:1.0 3208:1.0 3325:1.0 4357:1.0 5681:1.0 6890:1.0
6 11:0.2857142857142857 14:0.5 43:0.2 56:0.25 71:0.14285714285714285 90:0.0625 97:2.0 116:1.0 184:1.0 318:1.0 388:1.0 409:1.0 636:1.0 803:1.0 896:0.09090909090909091 1103:1.0 1815:1.0 1868:0.5 1899:1.0 1936:1.0 2457:1.0 2474:1.0 2685:1.0 3903:1.0 4177:1.0 5127:1.0 5128:1.0
6 9:0.5 14:0.5 16:0.1875 17:1.0 39:0.16666666666666666 71:0.14285714285714285 90:0.0625 99:1.0 100:0.5 134:1.0 148:1.0 289:3.0 341:0.5 418:0.3333333333333333 471:1.0 790:0.5 927:1.0 1025:0.5 1057:0.5 1248:1.5 1316:1.0 1379:1.0 1562:1.0 1740:0.5 1742:1.0 2474:1.0 2832:1.0 2870:1.0 2912:1.0 7581:1.0
6 4:0.5 10:1.0 11:0.42857142857142855 16:0.1875 31:0.03333333333333333 39:0.16666666666666666 42:1.0 43:0.2 53:0.25 56:0.25 57:0.09090909090909091 83:0.5 90:0.0625 146:0.5 148:1.0 245:1.0 387:0.25 439:1.0 450:0.3333333333333333 484:1.0 485:1.0 558:1.0 644:1.0 924:1.0 983:0.5 1014:1.0 1070:1.0 1130:0.25 1244:1.0 1289:1.0 1886:1.0 1887:1.0 1888:1.0 1912:1.0 2235:2.0 2306:1.0 2693:1.0 2864:1.0 3348:1.0 3929:1.0 4421:1.0 4541:1.0
6 9:0.5 14:1.5 16:0.3125 18:0.06666666666666667 33:0.09090909090909091 43:0.2 53:0.25 70:0.3333333333333333 78:0.6666666666666666 97:2.0 146:0.5 278:1.0 289:1.0 431:1.0 439:1.0 723:4.0 776:1.0 974:1.0 1507:1.0 1588:1.0 2286:1.0 2832:1.0 2870:2.0 5117:1.0 5314:1.0
6 11:0.2857142857142857 14:0.5 16:0.1875 39:0.16666666666666666 52:1.0 53:0.25 61:0.25 83:0.5 102:0.5 170:0.07142857142857142 222:0.16666666666666666 234:1.0 248:1.0 265:0.5 297:1.0 371:1.0 409:1.0 499:1.0 539:1.0 558:1.0 664:1.0 798:1.0 1127:1.0 1155:1.0 1223:1.0 1241:1.0 1456:1.0 1941:1.0 2275:1.0 2276:1.0 2363:1.0 2364:1.0 2398:1.0 2415:1.0 4088:1.0 4231:1.0
6 11:0.14285714285714285 18:0.13333333333333333 29:3.0 49:0.09090909090909091 52:1.0 53:0.25 56:0.25 61:0.25 64:0.3333333333333333 71:0.2857142857142857 90:0.0625 102:0.5 106:1.0 124:0.5 140:1.0 173:1.0 179:1.0 183:0.25 184:1.0 200:2.0 222:0.16666666666666666 284:0.3333333333333333 320:1.0 397:1.0 398:0.3333333333333333 409:1.0 529:1.0 556:1.0 1047:1.0 1241:1.0 1628:1.0 1673:1.0 1679:1.0 1923:1.0 2569:1.0 2673:1.0 4561:1.0 4755:1.0
6 11:0.14285714285714285 16:0.0625 18:0.06666666666666667 19:1.0 29:2.0 30:1.0 57:0.09090909090909091 61:0.25 64:0.3333333333333333 71:0.14285714285714285 83:0.5 99:1.0 171:1.0 235:0.3333333333333333 237:0.125 241:1.0 275:0.2 278:1.0 289:1.0 291:1.0 380:1.0 407:1.0 434:1.0 554:0.5 803:1.0 951:1.0 1047:1.0 1297:1.0 1518:1.0 2275:1.0 2276:1.0 3881:1.0 4503:1.0 5840:1.0
6 5:0.5 10:1.0 11:0.2857142857142857 14:0.5 16:0.1875 50:0.5 52:1.0 53:0.25 61:0.25 83:0.5 113:1.0 128:1.0 170:0.07142857142857142 171:1.0 179:1.0 199:1.0 222:0.16666666666666666 242:1.0 244:0.16666666666666666 284:0.3333333333333333 291:2.0 311:0.5 347:0.5 348:1.0 363:1.0 380:1.0 387:0.25 398:0.3333333333333333 484:1.0 529:1.0 687:1.0 814:1.0 842:1.0 1089:1.0 1241:1.0 1254:0.5 1423:1.0 1588:1.0 1812:1.0 1923:1.0 2890:1.0 3420:1.0 4382:1.0 4549:1.0 5142:1.0 7766:1.0
6 11:0.42857142857142855 14:1.0 16:0.0625 18:0.06666666666666667 24:0.14285714285714285 29:1.0 43:0.2 53:0.25 56:0.25 57:0.09090909090909091 71:0.14285714285714285 78:0.3333333333333333 184:1.0 200:1.0 238:0.16666666666666666 289:1.0 387:0.25 396:0.14285714285714285 405:1.0 423:0.5 575:1.0 653:1.0 659:1.0 758:0.5 842:1.0 868:0.5 1132:1.0 1234:1.0 1496:1.0 1602:1.0 1733:1.0 1737:1.0 1745:0.3333333333333333 2133:1.0 2136:1.0 2685:1.0 2795:1.0 2851:1.0 3206:1.0 3818:1.0 5943:0.3333333333333333 6772:1.0
6 6:1.0 11:0.14285714285714285 14:0.5 16:0.125 42:1.0 43:0.4 53:0.25 64:0.3333333333333333 71:0.14285714285714285 78:0.3333333333333333 102:0.5 116:1.0 148:1.0 171:1.0 232:1.0 235:0.3333333333333333 237:0.125 238:0.16666666666666666 287:1.0 407:1.0 417:1.0 754:1.0 846:0.3333333333333333 1125:1.0 1316:1.0 1495:1.0 1714:1.0 1715:1.0 1886:1.0 1887:1.0 2060:1.0 2474:1.0 2501:1.0 2991:1.0 5099:1.0
6 8:0.25 11:0.14285714285714285 14:0.5 43:0.4 52:2.0 57:0.09090909090909091 61:0.25 64:0.3333333333333333 148:1.0 230:0.25 245:1.0 256:0.5 275:0.2 402:1.0 417:1.0 428:2.0 570:1.0 636:1.0 723:1.0 758:0.5 846:0.3333333333333333 1526:1.0 1714:1.0 1715:1.0 1886:1.0 1887:1.0 2275:1.0 2411:1.0 2474:1.0 2716:1.0 3492:1.0 3494:1.0 4667:1.0 5099:1.0
6 16:0.125 19:5.0 42:1.0 43:0.6 52:1.0 53:0.25 56:0.25 61:0.25 78:0.3333333333333333 83:0.5 170:0.07142857142857142 171:1.0 238:0.3333333333333333 241:1.0 347:0.5 348:1.0 396:0.14285714285714285 419:1.0 1320:1.0 2560:1.0 2611:1.0 2695:1.0 2774:1.0 4896:1.0 4954:1.0 5225:1.0 5993:1.0
6 14:0.5 18:0.06666666666666667 29:1.0 43:0.4 49:0.09090909090909091 53:0.5 56:0.75 61:0.25 70:0.16666666666666666 71:0.14285714285714285 78:0.3333333333333333 102:1.0 113:1.0 128:1.0 199:1.0 200:1.0 227:1.0 234:1.0 237:0.125 241:1.0 265:0.5 289:1.0 296:1.0 311:0.5 380:1.0 402:1.0 404:1.0 452:1.0 529:1.0 789:1.0 842:1.0 935:0.14285714285714285 954:0.5 1340:1.0 1379:1.0 1799:1.0 1812:1.0 2685:1.0 3259:1.0
6 9:0.5 11:0.14285714285714285 14:1.0 16:0.1875 21:1.0 24:0.14285714285714285 26:1.0 43:0.2 44:0.3333333333333333 53:0.25 56:0.25 61:0.25 90:0.0625 113:1.0 114:1.0 116:1.0 222:0.16666666666666666 244:0.16666666666666666 289:1.0 290:0.3333333333333333 301:1.0 364:1.0 387:0.25 398:0.3333333333333333 529:1.0 1196:1.0 1358:1.0 1385:1.0 1516:1.0 2570:0.5 2736:1.0 2902:1.0 3150:1.0 4249:1.0 7156:1.0 7453:1.0
6 7:1.0 11:0.2857142857142857 16:0.1875 18:0.13333333333333333 29:1.0 43:0.2 44:0.3333333333333333 49:0.09090909090909091 53:0.5 56:0.25 61:0.5 70:0.16666666666666666 77:0.3333333333333333 78:0.3333333333333333 90:0.0625 113:1.0 123:1.0 163:1.0 167:2.0 244:0.16666666666666666 248:1.0 265:0.5 272:0.3333333333333333 274:2.0 301:1.0 428:1.0 429:1.0 442:0.3333333333333333 529:1.0 849:1.0 983:0.5 1009:2.0 1096:1.0 1738:1.0 1861:1.0 1862:1.0 2061:0.5 3352:1.0 3494:1.0 3852:0.5
6 10:1.0 11:0.2857142857142857 16:0.25 25:1.0 43:0.4 53:0.25 70:0.16666666666666666 90:0.0625 97:2.0 99:1.0 104:1.0 146:0.5 199:1.0 208:0.5 222:0.16666666666666666 244:0.16666666666666666 257:2.0 278:1.0 289:1.0 521:0.5 529:1.0 617:1.0 649:1.0 937:1.0 1014:1.0 1017:1.0 1096:1.0 1241:1.0 1522:0.3333333333333333 1661:1.0 2035:1.0 2529:1.0 2869:1.0 3504:1.0 3567:1.0 4404:1.0
6 10:1.0 11:0.42857142857142855 16:0.125 24:0.2857142857142857 43:0.2 56:0.25 61:0.5 70:0.16666666666666666 78:0.3333333333333333 123:1.0 130:1.0 235:0.3333333333333333 253:1.0 387:0.25 529:1.0 532:1.0 578:1.0 1017:1.0 1234:1.0 1522:0.3333333333333333 1622:1.0 1923:1.0 2739:1.0 4700:1.0 4714:1.0 7945:1.0
6 16:0.0625 29:1.0 31:0.03333333333333333 43:0.2 53:0.25 222:0.16666666666666666 235:0.6666666666666666 284:0.3333333333333333 398:0.3333333333333333 584:1.0 708:1.0 738:1.0 758:0.5 802:1.0 834:1.0 1489:1.0 1932:1.0 2414:1.0 2699:1.0 3194:1.0 3692:1.0 3706:1.0
6 4:0.5 16:0.1875 42:1.0 43:0.2 53:0.25 56:0.25 61:0.5 64:0.6666666666666666 70:0.16666666666666666 71:0.14285714285714285 78:0.3333333333333333 83:0.5 90:0.0625 100:0.5 129:2.0 235:0.3333333333333333 244:0.16666666666666666 248:1.0 275:0.2 437:1.0 529:1.0 645:0.3333333333333333 802:1.0 1197:1.0 1248:0.5 1469:0.5 1529:1.0 1932:1.0 2034:0.5 2054:1.0 2166:1.0 2270:1.0 2676:1.0 3676:1.0 4705:1.0
6 11:0.2857142857142857 14:1.0 18:0.06666666666666667 43:0.2 49:0.09090909090909091 53:0.25 56:0.25 97:2.0 106:1.0 125:3.0 129:1.0 199:1.0 210:1.0 257:1.0 387:0.5 645:0.3333333333333333 802:2.0 966:1.0 983:0.5 1096:1.0 1199:1.0 1226:1.0 1316:1.0 1742:1.0 1932:1.0 2234:1.0 2235:1.0 2569:1.0 2699:1.0 2832:1.0 4034:1.0 4447:1.0 4561:1.0
6 11:0.2857142857142857 16:0.1875 43:0.6 53:0.5 61:0.25 90:0.1875 104:1.0 106:1.0 111:1.0 127:1.0 170:0.07142857142857142 173:1.0 222:0.16666666666666666 223:1.0 235:0.3333333333333333 265:0.5 311:0.5 320:1.0 362:1.0 386:0.5 387:0.25 398:0.3333333333333333 442:0.3333333333333333 570:1.0 672:1.0 802:1.0 1429:1.0 1441:1.0 1507:1.0 1863:1.0 1932:1.0 2421:1.0 2569:1.0 2699:1.0 4567:1.0 4721:1.0 5958:1.0
6 9:1.0 26:1.0 43:0.6 44:0.3333333333333333 52:1.0 53:0.25 71:0.14285714285714285 78:0.3333333333333333 99:1.0 132:0.5 144:0.25 167:1.0 184:1.0 238:0.16666666666666666 268:0.14285714285714285 343:1.0 387:0.25 415:0.5 485:1.0 529:1.0 549:0.5 616:1.0 712:0.3333333333333333 737:0.5 842:1.0 866:0.14285714285714285 909:0.5 914:1.0 1130:0.25 1292:1.0 1296:1.0 1457:1.0 1912:1.0 3019:1.0 3042:1.0 4954:1.0 5071:1.0
6 11:0.14285714285714285 14:0.5 16:0.125 29:2.0 43:1.0 44:0.3333333333333333 52:1.0 71:0.14285714285714285 78:0.3333333333333333 90:0.0625 116:1.0 143:1.0 199:1.0 235:0.3333333333333333 236:1.0 265:0.5 295:0.3333333333333333 296:1.0 445:1.0 545:1.0 550:1.0 597:1.0 975:1.0 1017:1.0 1137:1.0 1234:1.0 1237:0.25 1284:1.0 1469:0.5 1798:1.0 1997:1.0 2015:1.0 2030:1.0 2110:1.0 3416:1.0 3520:1.0 4620:1.0 4655:1.0 4722:1.0 4891:2.0 5681:1.0
6 14:1.0 16:0.125 19:1.0 32:1.0 43:0.6 52:1.0 53:0.5 61:0.25 70:0.16666666666666666 77:0.3333333333333333 83:0.5 90:0.25 115:1.0 125:1.0 128:1.0 184:1.0 215:1.0 222:0.16666666666666666 228:0.3333333333333333 240:1.0 244:0.16666666666666666 289:1.0 290:0.16666666666666666 297:1.0 364:1.0 415:0.5 846:0.3333333333333333 950:1.0 1489:1.0 1522:0.6666666666666666 2128:1.0 2529:1.0 2565:1.0 2599:0.5 2695:1.0 2728:1.0 3085:1.0 3272:1.0 3300:1.0 3567:1.0 3722:1.0
6 8:0.25 10:1.0 11:0.14285714285714285 14:1.0 16:0.125 43:0.2 53:0.5 56:0.25 61:0.25 77:0.3333333333333333 78:0.6666666666666666 90:0.125 100:0.5 109:0.5 116:1.0 125:1.0 264:1.0 275:0.2 414:0.5 418:0.3333333333333333 424:0.5 431:1.0 519:1.0 529:1.0 613:1.0 708:1.0 724:0.3333333333333333 879:1.0 975:1.0 985:1.0 1379:1.0 1396:1.0 1522:0.3333333333333333 1582:0.5 1673:1.0 2200:1.0 2726:1.0 2776:1.0 4382:1.0 5205:1.0 5979:0.5
6 10:1.0 14:0.5 16:0.1875 44:0.3333333333333333 61:0.25 64:0.3333333333333333 90:0.125 124:0.5 170:0.14285714285714285 171:2.0 235:0.3333333333333333 236:1.0 347:1.0 348:2.0 387:0.25 442:0.3333333333333333 450:0.3333333333333333 724:0.3333333333333333 1456:1.0 1726:1.0 1727:1.0 1838:1.0 2501:1.0 2504:1.0 2536:1.0 4516:1.0 4623:1.0
6 10:1.0 11:0.14285714285714285 14:0.5 18:0.2 21:1.0 24:0.14285714285714285 29:3.0 52:2.0 53:0.25 61:0.25 83:0.5 103:1.0 106:1.0 127:1.0 184:1.0 200:2.0 226:1.0 228:0.3333333333333333 290:0.16666666666666666 311:0.5 405:1.0 750:1.0 847:1.0 1089:1.0 1288:1.0 1379:1.0 1469:0.5 1641:1.0 2466:1.0 2586:1.0 3707:1.0 4382:1.0 4734:1.0
6 11:0.2857142857142857 14:0.5 16:0.25 18:0.06666666666666667 29:1.0 31:0.03333333333333333 43:0.2 56:0.25 83:0.5 90:0.0625 128:1.0 129:3.0 130:1.0 171:2.0 184:1.0 235:0.6666666666666666 236:1.0 237:0.25 238:0.16666666666666666 245:1.0 307:1.0 311:0.5 407:1.0 437:1.0 636:1.0 724:0.3333333333333333 746:1.0 822:2.0 823:1.0 838:1.0 1057:0.5 1091:1.0 1197:1.0 1287:1.0 1684:1.0 2588:1.0 3679:1.0 3893:1.0 4130:1.0 4441:1.0 4620:1.0 4655:1.0 5322:1.0
6 14:0.5 16:0.25 19:1.0 29:1.0 53:0.75 56:0.25 78:0.6666666666666666 116:2.0 127:1.0 170:0.07142857142857142 171:2.0 191:1.0 244:0.16666666666666666 282:2.0 289:1.0 290:0.16666666666666666 322:1.0 347:0.5 348:1.0 444:1.0 450:0.3333333333333333 485:1.0 576:1.0 1156:0.5 1582:0.5 1584:1.0 1634:1.0 2030:1.0 2601:2.0 2728:1.0 3372:1.0 3520:1.0 3615:0.5 4600:2.0 5143:1.0
6 11:0.14285714285714285 14:0.5 16:0.125 43:0.2 49:0.09090909090909091 53:0.75 61:0.25 100:0.5 103:1.0 124:0.5 129:2.0 160:0.6666666666666666 171:1.0 199:1.0 218:1.0 275:0.2 290:0.16666666666666666 387:0.25 437:1.0 453:0.5 455:1.0 499:1.0 614:1.0 831:0.5 1440:1.0 1507:1.0 1783:1.0 1964:1.0 2219:1.0 3006:1.0 3007:1.0 3008:1.0 3251:1.0 4600:1.0 5989:1.0 6646:1.0
6 8:0.25 11:0.14285714285714285 14:0.5 18:0.13333333333333333 29:1.0 53:0.75 56:0.25 64:0.3333333333333333 70:0.3333333333333333 78:0.3333333333333333 83:0.5 90:0.125 122:1.0 129:1.0 200:1.0 224:1.0 245:1.0 289:2.0 435:1.0 437:1.0 448:1.0 570:1.0 741:1.0 802:1.0 856:0.5 935:0.14285714285714285 1061:1.0 1158:1.0 1203:1.0 1226:1.0 1316:1.0 1546:1.0 1562:1.0 1932:1.0 2218:1.0 3623:1.0 3653:1.0 5194:1.0
6 8:0.25 9:0.5 16:0.1875 31:0.03333333333333333 43:0.4 44:0.3333333333333333 61:0.25 171:1.0 192:1.0 218:1.0 235:0.3333333333333333 237:0.125 272:0.3333333333333333 289:1.0 405:1.0 407:1.0 442:0.3333333333333333 655:1.0 723:1.0 954:0.5 1127:0.5 1152:1.0 1518:1.0 1642:1.0 1678:0.5 2661:1.0 3992:1.0 4006:1.0 4579:1.0 4580:1.0
6 11:0.42857142857142855 14:0.5 16:0.125 24:0.14285714285714285 29:1.0 43:0.4 44:0.3333333333333333 52:1.0 53:0.5 56:0.25 57:0.09090909090909091 61:0.25 90:0.0625 113:1.0 136:1.0 140:1.0 199:1.0 222:0.16666666666666666 265:0.5 311:1.0 396:0.14285714285714285 398:0.3333333333333333 435:1.0 490:1.0 499:1.0 553:1.0 717:1.0 724:0.3333333333333333 793:1.0 935:0.14285714285714285 1163:1.0 1248:0.5 1254:0.5 1616:1.0 1902:1.0 2200:1.0 2218:2.0 2361:1.0 2846:1.0 3059:1.0 3251:1.0 4339:1.0 4933:1.0 5483:1.0
6 11:0.14285714285714285 16:0.125 18:0.06666666666666667 27:1.0 29:1.0 33:0.09090909090909091 43:0.4 53:0.25 56:0.25 61:0.75 78:0.3333333333333333 90:0.0625 99:2.0 124:0.5 144:0.25 169:0.5 192:1.0 200:1.0 280:1.0 304:0.3333333333333333 405:1.0 439:1.0 485:1.0 557:0.5 633:1.0 1199:1.0 1237:0.25 1581:1.0 1678:0.5 1679:1.0 1707:1.0 2587:1.0 2716:1.0 3416:1.0 3444:0.3333333333333333 5112:1.0 6475:1.0 7898:1.0
6 16:0.0625 33:0.09090909090909091 43:0.8 52:1.0 53:0.25 61:0.25 116:1.0 124:0.5 177:1.0 276:1.0 284:0.3333333333333333 398:0.3333333333333333 631:1.0 1155:1.0 1156:0.5 1197:1.0 1249:1.0 1255:1.0 1456:1.0 1641:1.0 2265:1.0 2300:1.0 2474:1.0 2578:1.0 2832:1.0 3318:2.0 3444:0.3333333333333333 4700:1.0 4721:1.0 7565:1.0
6 11:0.2857142857142857 16:0.25 18:0.06666666666666667 29:1.0 33:0.09090909090909091 43:0.4 61:0.5 99:1.0 113:1.0 123:1.0 124:0.5 144:0.25 147:1.0 208:0.5 222:0.16666666666666666 262:0.3333333333333333 275:0.2 278:1.0 320:1.0 398:0.3333333333333333 712:0.3333333333333333 1070:1.0 1155:1.0 1248:0.5 1441:1.0 1526:2.0 2124:2.0 2235:1.0 2421:1.0 2883:1.0 3530:1.0 3669:1.0 4012:1.0 4145:1.0 4421:1.0 6321:1.0 7695:1.0
6 11:0.14285714285714285 14:0.5 18:0.06666666666666667 43:0.4 61:0.75 64:0.3333333333333333 113:1.0 114:1.0 116:1.0 123:1.0 147:1.0 154:1.0 155:0.5 160:0.3333333333333333 228:0.3333333333333333 278:1.0 320:1.0 387:0.25 398:0.6666666666666666 442:0.3333333333333333 457:1.0 723:1.0 737:0.5 766:1.0 1155:1.0 1441:1.0 1863:1.0 2124:1.0 2484:1.0 2752:1.0 2832:1.0 3020:1.0 3410:1.0 4145:1.0 4721:1.0 4731:1.0 5160:1.0
6 11:0.2857142857142857 16:0.0625 29:1.0 43:0.2 57:0.09090909090909091 58:1.0 64:0.3333333333333333 76:1.0 78:0.6666666666666666 90:0.0625 97:1.0 123:1.0 125:1.0 147:1.0 170:0.07142857142857142 171:2.0 274:1.0 333:0.5 347:0.5 348:1.0 414:0.5 415:0.5 589:1.0 590:1.0 660:0.5 831:0.5 868:0.5 872:0.5 1070:1.0 1155:1.0 1156:0.5 1325:1.0 1745:0.3333333333333333 1832:1.0 1861:2.0 1912:1.0 2124:1.0 2218:1.0 2410:1.0 3342:1.0 3631:1.0 5003:1.0 5186:1.0
6 4:1.0 11:0.14285714285714285 16:0.0625 18:0.06666666666666667 29:1.0 43:0.2 52:1.0 53:0.5 56:0.25 61:0.25 71:0.14285714285714285 78:0.6666666666666666 90:0.125 100:0.5 102:0.5 160:0.3333333333333333 184:1.0 200:1.0 222:0.16666666666666666 234:2.0 265:0.5 275:0.2 278:1.0 292:1.0 293:0.5 297:1.0 379:0.25 519:1.0 704:1.0 724:0.3333333333333333 809:0.3333333333333333 962:0.5 982:1.0 1338:0.5 1469:0.5 1486:1.0 2140:1.0 2676:1.0 3633:1.0 3752:1.0 3951:1.0 5160:1.0 6277:1.0
6 16:0.0625 39:0.16666666666666666 43:0.4 44:0.3333333333333333 56:0.25 71:0.14285714285714285 90:0.0625 160:0.3333333333333333 184:1.0 199:1.0 226:1.0 234:1.0 241:1.0 250:1.0 278:1.0 280:1.0 353:1.0 409:1.0 423:0.5 439:1.0 541:0.5 546:1.0 549:0.5 640:1.0 641:1.0 710:1.0 793:1.0 803:1.0 851:1.0 954:0.5 964:1.0 1076:1.0 1588:1.0 1660:1.0 1668:1.0 2028:1.0 2602:1.0 2945:1.0 3474:1.0 3520:1.0 4180:1.0 5058:1.0
6 11:0.14285714285714285 16:0.3125 29:1.0 43:0.2 53:0.25 61:0.25 71:0.14285714285714285 78:0.6666666666666666 116:1.0 129:2.0 132:0.5 171:1.0 235:0.3333333333333333 236:1.0 237:0.125 342:1.0 414:0.5 428:1.0 437:2.0 645:0.3333333333333333 982:1.0 1076:1.0 1114:1.0 1298:1.0 1316:1.0 1588:1.0 1995:1.0 2317:0.5 2690:1.0 3379:1.0 3811:1.0 4137:1.0 4663:1.0 5160:1.0 6181:1.0 6999:1.0 7297:1.0
6 11:0.14285714285714285 14:2.0 27:1.0 43:0.4 49:0.09090909090909091 52:1.0 56:0.25 77:0.3333333333333333 78:0.3333333333333333 90:0.125 102:0.5 116:1.0 146:0.5 160:0.3333333333333333 184:1.0 222:0.16666666666666666 223:1.0 230:0.25 268:0.14285714285714285 364:1.0 367:1.0 455:1.0 499:1.0 593:1.0 672:1.0 856:0.5 1237:0.25 1456:1.0 1951:1.0 2020:1.0 2128:1.0 2191:1.0 2218:1.0 2286:1.0 2448:1.0 3431:1.0 4405:1.0 6508:1.0
6 9:0.5 11:0.2857142857142857 14:0.5 16:0.0625 43:0.2 52:1.0 53:0.5 56:0.25 90:0.0625 104:1.0 169:0.5 234:1.0 237:0.125 268:0.14285714285714285 275:0.2 289:1.0 364:1.0 398:0.3333333333333333 484:1.0 498:1.0 522:1.0 681:1.0 737:0.5 935:0.14285714285714285 1127:0.5 1156:0.5 1393:1.0 1560:1.0 1861:1.0 2219:1.0 3390:1.0 3534:1.0 4433:1.0 4804:1.0 4812:1.0 4839:1.0
6 14:0.5 16:0.125 29:2.0 53:0.25 56:0.5 70:0.16666666666666666 78:0.3333333333333333 113:1.0 124:0.5 160:0.3333333333333333 184:1.0 222:0.16666666666666666 275:0.2 305:1.0 398:0.3333333333333333 449:0.5 450:0.3333333333333333 724:0.3333333333333333 1326:1.0 1338:0.5 1783:1.0 1835:1.0 1921:1.0 1955:1.0 2006:1.0 2008:1.0 2020:1.0 2218:1.0 2757:1.0 3079:1.0 3251:1.0 3392:1.0 3532:1.0 3722:1.0 3732:1.0 4291:1.0 4997:1.0
6 9:0.5 29:1.0 49:0.09090909090909091 53:0.25 56:0.5 60:0.025 90:0.0625 97:1.0 100:1.0 143:2.0 160:0.3333333333333333 170:0.07142857142857142 222:0.16666666666666666 223:1.0 237:0.125 248:1.0 256:0.5 265:0.5 268:0.14285714285714285 415:0.5 457:1.0 822:1.0 935:0.14285714285714285 1061:1.0 1062:1.0 1163:1.0 1176:1.0 1323:0.5 1393:1.0 1604:1.0 1758:1.0 1969:1.0 2017:1.0 2218:1.0 2482:1.0 3444:0.3333333333333333 3837:1.0
6 11:0.14285714285714285 24:0.14285714285714285 33:0.09090909090909091 39:0.16666666666666666 44:0.3333333333333333 56:0.25 64:0.3333333333333333 71:0.14285714285714285 90:0.0625 145:1.0 160:0.3333333333333333 163:1.0 192:1.0 222:0.16666666666666666 234:1.0 245:1.0 264:1.0 278:1.0 297:1.0 433:1.0 529:1.0 758:0.5 809:0.3333333333333333 979:1.0 1025:0.5 1076:1.0 1254:0.5 1285:1.0 1381:1.0 1627:1.0 3235:1.0 3692:1.0 4554:1.0 4721:1.0
6 11:0.2857142857142857 14:1.0 24:0.2857142857142857 27:1.0 31:0.03333333333333333 36:1.0 43:0.4 64:0.3333333333333333 70:0.16666666666666666 78:0.3333333333333333 104:1.0 184:1.0 222:0.16666666666666666 303:1.0 349:1.0 396:0.14285714285714285 398:0.3333333333333333 415:0.5 562:1.0 638:1.0 640:1.0 829:1.0 846:0.3333333333333333 1052:0.5 1083:1.0 1177:1.0 1287:1.0 2298:1.0 2695:1.0 2779:1.0 2896:1.0 4554:1.0 4574:2.0 4758:1.0
6 11:0.5714285714285714 14:0.5 42:1.0 43:0.4 49:0.09090909090909091 53:0.25 56:0.25 116:1.0 232:0.5 275:0.2 296:2.0 311:0.5 387:0.25 405:1.0 418:0.3333333333333333 613:1.0 673:1.0 862:1.0 983:0.5 1237:0.25 1562:1.0 2189:1.0 2221:1.0 2726:1.0 2832:1.0 2989:1.0 3210:1.0 3244:1.0 3390:1.0 3584:1.0 4758:1.0
6 8:0.25 9:0.5 14:1.5 16:0.1875 29:1.0 43:0.4 44:0.3333333333333333 53:0.5 57:0.09090909090909091 61:0.25 90:0.125 129:2.0 144:0.25 146:0.5 184:1.0 192:1.0 218:1.0 245:1.0 289:1.0 410:1.0 414:0.5 461:0.3333333333333333 477:1.0 484:1.0 485:1.0 636:1.0 681:1.0 834:1.0 967:1.0 1087:1.0 1165:1.0 1197:1.0 1518:1.0 1687:1.0 1740:0.5 2404:1.0 2835:1.0 2960:1.0 3722:1.0 3806:1.0 4653:1.0 4655:1.0 5154:1.0 5173:2.0 6124:1.0
6 10:1.0 11:0.14285714285714285 14:0.5 16:0.125 21:1.0 26:1.0 56:0.25 57:0.09090909090909091 64:0.3333333333333333 77:0.3333333333333333 78:0.3333333333333333 90:0.0625 97:1.0 125:1.0 170:0.07142857142857142 171:2.0 230:0.25 290:0.16666666666666666 343:1.0 367:1.0 419:1.0 442:0.3333333333333333 453:0.5 456:1.0 575:1.0 829:1.0 831:0.5 907:1.0 1057:0.5 1199:1.0 1204:1.0 1427:1.0 1469:0.5 1526:1.0 2364:1.0 2379:1.0 5497:1.0
6 14:0.5 16:0.0625 18:0.06666666666666667 29:1.0 53:0.5 56:0.25 64:0.3333333333333333 78:0.3333333333333333 90:0.0625 128:1.0 139:1.0 140:1.0 200:1.0 222:0.16666666666666666 234:2.0 237:0.125 244:0.16666666666666666 398:0.3333333333333333 757:1.0 831:0.5 1028:1.0 1278:1.0 1442:1.0 1473:1.0 1843:1.0 2065:1.0 2177:1.0 2386:1.0 3245:1.0 4231:1.0
6 4:0.5 11:0.2857142857142857 16:0.125 44:0.3333333333333333 49:0.09090909090909091 70:0.16666666666666666 71:0.14285714285714285 90:0.125 97:1.0 129:1.0 160:0.6666666666666666 170:0.07142857142857142 171:1.0 172:1.0 173:1.0 199:1.0 235:0.3333333333333333 237:0.125 280:1.0 407:1.0 419:1.0 428:1.0 695:1.0 721:0.5 811:1.0 983:0.5 1124:1.0 1128:1.0 1237:0.25 1240:1.0 1287:1.0 1562:1.0 1858:1.0 2172:1.0 2275:1.0 2659:1.0 3416:1.0 4231:1.0 5002:1.0
6 11:0.14285714285714285 16:0.0625 18:0.13333333333333333 29:1.0 43:0.4 53:0.75 56:0.5 57:0.09090909090909091 61:0.25 71:0.14285714285714285 78:0.3333333333333333 99:2.0 144:0.25 200:1.0 228:0.3333333333333333 275:0.2 278:1.0 280:1.0 311:0.5 561:1.0 672:1.0 949:0.09090909090909091 1057:0.5 1156:0.5 1298:1.0 1585:1.0 1611:1.0 2218:1.0 2657:1.0 3613:1.0 4335:1.0 4345:1.0 4786:1.0 5167:1.0 5242:1.0 6032:1.0 7045:1.0
6 11:0.14285714285714285 14:0.5 16:0.1875 26:1.0 29:1.0 39:0.16666666666666666 42:1.0 53:0.25 56:0.75 57:0.09090909090909091 61:0.25 70:0.16666666666666666 78:0.3333333333333333 90:0.0625 171:1.0 235:0.3333333333333333 236:1.0 237:0.125 256:0.5 278:1.0 290:0.16666666666666666 415:0.5 419:1.0 575:1.0 772:0.5 845:1.0 977:1.0 1108:1.0 1155:1.0 1188:1.0 1429:1.0 1633:1.0 1671:1.0 1700:1.0 1738:1.0 1912:1.0 2065:1.0 2179:1.0 2751:1.0 3105:1.0 4786:1.0
6 8:0.25 10:2.0 11:0.42857142857142855 14:0.5 16:0.125 53:1.0 56:0.25 78:0.3333333333333333 116:1.0 144:0.25 235:0.3333333333333333 289:1.0 290:0.16666666666666666 485:1.0 625:1.0 660:0.5 721:0.5 737:0.5 925:1.0 1156:0.5 1212:0.5 1248:0.5 1535:1.0 1585:1.0 1604:1.0 1641:1.0 1671:1.0 1745:0.3333333333333333 1852:1.0 2119:1.0 2270:1.0 2706:1.0 3035:1.0 3503:1.0 3860:1.0 4240:1.0 4276:1.0 4766:1.0 5167:1.0 7518:1.0 7749:1.0
6 11:0.14285714285714285 14:0.5 16:0.125 37:1.0 43:0.2 53:0.5 56:0.25 78:0.3333333333333333 166:1.0 208:0.5 256:0.5 342:1.0 414:0.5 428:1.0 489:1.0 570:1.0 708:1.0 936:1.0 954:0.5 983:0.5 1112:1.0 1114:1.0 1158:1.0 1165:1.0 1316:1.0 1928:1.0 2963:1.0 3115:1.0 3326:1.0 3670:1.0 3844:1.0 4935:1.0 5210:1.0 6289:1.0
6 11:0.14285714285714285 16:0.0625 33:0.09090909090909091 56:0.5 63:1.0 90:0.1875 91:1.0 141:0.5 143:1.0 222:0.16666666666666666 238:0.16666666666666666 241:1.0 276:1.0 398:0.3333333333333333 426:1.0 570:1.0 588:1.0 902:1.0 1316:1.0 1562:1.0 1749:1.0 2059:1.0 2286:1.0 2440:1.0 2477:1.0 2509:1.0 3014:1.0
6 5:0.5 6:1.0 11:0.14285714285714285 14:0.5 16:0.0625 29:1.0 37:1.0 42:1.0 43:0.2 50:0.5 53:0.75 56:0.25 160:0.3333333333333333 184:1.0 224:1.0 234:1.0 242:2.0 280:1.0 333:0.5 367:1.0 439:1.0 521:0.5 549:0.5 1338:0.5 1390:1.0 1511:1.0 1604:1.0 1640:0.5 1995:1.0 2130:0.3333333333333333 2524:1.0 2663:1.0 3488:1.0 3752:1.0 4421:1.0 4619:1.0 5400:1.0 6454:1.0
6 11:0.42857142857142855 14:0.5 16:0.1875 29:1.0 49:0.09090909090909091 53:0.25 56:0.75 90:0.0625 100:0.5 160:0.3333333333333333 222:0.16666666666666666 234:1.0 347:0.5 398:0.3333333333333333 570:1.0 644:1.0 809:0.3333333333333333 982:1.0 1059:0.5 1069:1.0 1321:1.0 1338:0.5 1469:0.5 1739:1.0 1785:1.0 1815:1.0 2650:1.0 2705:1.0 2706:1.0 2707:1.0 3114:1.0 3752:1.0 5142:1.0 5885:1.0
6 10:1.0 14:0.5 16:0.0625 29:3.0 43:0.4 52:1.0 53:0.75 58:1.0 61:0.25 71:0.14285714285714285 77:0.3333333333333333 78:0.6666666666666666 90:0.0625 124:0.5 141:0.5 222:0.16666666666666666 234:1.0 248:1.0 280:1.0 304:0.3333333333333333 346:1.0 398:0.3333333333333333 415:0.5 445:1.0 570:1.0 826:1.0 868:0.5 1057:0.5 1130:0.25 1375:1.0 1783:1.0 1818:1.0 1888:1.0 2146:0.16666666666666666 2846:1.0 3474:1.0 4115:1.0
6 14:0.5 16:0.0625 18:0.06666666666666667 24:0.14285714285714285 29:1.0 31:0.03333333333333333 33:0.09090909090909091 43:0.4 56:0.5 71:0.14285714285714285 90:0.0625 99:1.0 100:0.5 160:0.3333333333333333 170:0.14285714285714285 233:1.0 234:1.0 284:0.6666666666666666 1128:1.0 1278:1.0 1309:1.0 1310:1.0 1321:1.0 1582:0.5 1626:1.0 1752:1.0 1854:1.0 2482:1.0 2603:1.0 3271:1.0 3295:1.0 4893:1.0 6909:1.0
6 16:0.0625 24:0.14285714285714285 31:0.03333333333333333 33:0.09090909090909091 56:0.25 57:0.09090909090909091 71:0.14285714285714285 90:0.125 155:0.5 185:0.5 222:0.16666666666666666 234:1.0 237:0.125 297:1.0 421:1.0 838:1.0 1307:1.0 1321:1.0 1323:0.5 1385:1.0 1921:1.0 1985:1.0 2860:1.0 4997:1.0 5438:1.0
6 14:0.5 16:0.125 24:0.14285714285714285 25:2.0 27:1.0 43:0.2 53:0.75 56:0.25 61:0.25 90:0.125 160:0.3333333333333333 211:1.0 222:0.16666666666666666 223:1.0 234:1.0 239:1.0 364:1.0 415:0.5 421:1.0 574:1.0 1025:0.5 1061:1.0 1062:1.0 1065:1.0 1321:1.0 1469:0.5 1799:1.0 1818:1.0 1858:1.0 1964:1.0 2065:1.0 2074:1.0 2077:1.0 2133:1.0 2148:1.0 2293:1.0 2482:1.0 2599:0.5 2999:1.0 4262:1.0 4329:1.0 4426:1.0 4677:1.0
6 6:1.0 7:1.0 16:0.0625 24:0.14285714285714285 43:0.8 44:0.3333333333333333 49:0.09090909090909091 53:0.25 56:0.25 57:0.18181818181818182 61:0.25 76:1.0 90:0.125 222:0.16666666666666666 223:1.0 280:1.0 286:0.3333333333333333 442:0.6666666666666666 536:1.0 549:1.0 550:1.0 640:1.0 641:1.0 681:1.0 737:0.5 793:1.0 1469:1.0 1547:1.0 1579:1.0 1580:1.0 2028:1.0 2034:0.5 2065:1.0 3246:1.0 3962:1.0 4258:1.0 4386:1.0 4431:1.0
6 11:0.42857142857142855 14:0.5 16:0.125 31:0.03333333333333333 33:0.09090909090909091 39:0.16666666666666666 41:1.0 43:0.2 56:0.75 78:0.6666666666666666 102:0.5 131:1.0 160:0.3333333333333333 222:0.16666666666666666 223:1.0 245:2.0 278:1.0 465:1.0 546:1.0 676:1.0 707:1.0 899:1.0 1008:1.0 1199:1.0 1486:1.0 1518:2.0 2065:1.0 2346:1.0 2376:1.0 3020:1.0 3409:1.0 3503:1.0 3680:1.0 4255:1.0 4607:1.0 4758:1.0 4786:1.0 5461:1.0 5885:1.0
6 9:0.5 11:0.14285714285714285 31:0.03333333333333333 39:0.16666666666666666 42:1.0 43:0.6 53:0.5 61:0.25 78:0.3333333333333333 83:0.5 99:1.0 102:0.5 125:1.0 136:1.0 163:1.0 183:0.25 222:0.16666666666666666 223:1.0 245:1.0 289:1.0 302:1.0 1249:1.0 1379:1.0 2111:1.0 2716:1.0 2776:2.0 3038:1.0 3869:1.0 4249:1.0 4255:1.0 5143:1.0 6047:1.0
6 4:0.5 10:1.0 11:0.14285714285714285 14:0.5 39:0.16666666666666666 43:0.2 53:0.25 60:0.025 61:0.25 78:0.3333333333333333 90:0.0625 113:1.0 144:0.25 209:0.25 244:0.16666666666666666 248:1.0 272:0.3333333333333333 289:1.0 341:0.5 377:1.0 442:0.3333333333333333 548:1.0 1024:1.0 1096:1.0 1199:1.0 1322:1.0 1818:1.0 1838:1.0 2158:0.3333333333333333 2309:1.0 2484:1.0 2583:0.5 3136:1.0 3206:1.0 3567:1.0 3722:1.0
6 10:1.0 11:0.14285714285714285 14:0.5 16:0.1875 18:0.06666666666666667 29:2.0 52:1.0 53:0.25 70:0.16666666666666666 71:0.14285714285714285 78:0.6666666666666666 83:0.5 90:0.125 102:1.0 143:1.0 170:0.07142857142857142 171:1.0 183:0.25 184:1.0 193:1.0 222:0.16666666666666666 275:0.2 347:0.5 348:1.0 398:0.3333333333333333 677:1.0 723:1.0 826:1.0 831:0.5 850:1.0 856:0.5 886:1.0 983:0.5 1212:0.5 1278:1.0 1671:1.0 2277:1.0 3251:1.0
6 16:0.125 43:0.6 52:1.0 61:0.25 83:0.5 97:1.0 105:1.0 246:1.0 268:0.14285714285714285 275:0.2 278:1.0 311:0.5 345:1.0 659:1.0 753:1.0 842:1.0 1069:1.0 1527:1.0 1742:1.0 1856:1.0 2040:1.0
6 14:1.0 16:0.0625 29:1.0 53:0.5 60:0.025 61:0.75 70:0.16666666666666666 78:1.0 83:0.5 102:0.5 124:0.5 239:1.0 244:0.16666666666666666 265:0.5 278:1.0 289:1.0 295:0.6666666666666666 330:1.0 380:1.0 415:1.0 437:1.0 442:0.3333333333333333 565:1.0 782:1.0 869:1.0 872:0.5 876:1.0 927:1.0 949:0.09090909090909091 1024:1.0 1144:1.0 1163:1.0 1338:0.5 1647:1.0 2133:1.0 2476:1.0 2756:1.0 3474:1.0 3567:1.0 3777:1.0 4291:1.0 4567:1.0 5057:1.0
6 14:1.0 16:0.125 29:2.0 31:0.03333333333333333 39:0.16666666666666666 43:0.2 56:0.75 57:0.09090909090909091 78:0.3333333333333333 90:0.0625 123:1.0 143:2.0 234:1.0 265:0.5 274:1.0 275:0.2 278:1.0 284:0.3333333333333333 289:1.0 321:1.0 398:0.3333333333333333 415:0.5 438:1.0 445:1.0 609:1.0 757:1.0 831:0.5 869:1.0 901:1.0 977:1.0 985:1.0 1025:0.5 1059:0.5 1065:1.0 1160:1.0 1237:0.25 1307:1.0 1323:0.5 1626:1.0 1714:1.0 1715:1.0 1861:1.0 1921:1.0 1932:1.0 1966:1.0 2020:1.0 2379:1.0 2603:1.0 3416:1.0 3534:1.0 4757:1.0 5094:1.0
6 14:0.5 16:0.1875 19:1.0 29:2.0 43:0.2 53:0.25 56:0.25 57:0.09090909090909091 63:1.0 64:0.3333333333333333 70:0.3333333333333333 90:0.0625 124:0.5 142:1.0 143:1.0 160:0.6666666666666666 256:0.5 257:1.0 266:1.0 275:0.4 284:0.3333333333333333 286:0.3333333333333333 296:1.0 341:0.5 453:0.5 485:1.0 672:1.0 743:1.0 793:1.0 826:1.0 938:1.0 984:1.0 1065:1.0 1184:1.0 1249:1.0 1251:1.0 1511:1.0 1912:1.0 1955:1.0 2440:1.0 2974:1.0 3722:1.0 4412:1.0 5003:1.0 5463:1.0 7459:1.0 7809:0.5 7832:1.0
6 14:1.0 16:0.1875 21:1.0 43:0.4 52:2.0 53:0.75 56:0.5 71:0.14285714285714285 77:0.3333333333333333 78:0.6666666666666666 102:0.5 116:1.0 258:1.0 262:0.3333333333333333 286:0.3333333333333333 311:0.5 341:0.5 379:0.25 430:1.0 439:1.0 480:1.0 741:1.0 1028:1.0 1346:1.0 1589:1.0 1662:1.0 1912:1.0 2065:1.0 2188:1.0 2189:1.0 2271:1.0 2320:1.0 3474:1.0 4576:1.0 4964:1.0 7453:1.0
6 8:0.25 9:0.5 10:1.0 16:0.1875 26:1.0 53:0.5 61:0.25 64:0.3333333333333333 70:0.16666666666666666 90:0.0625 115:1.0 129:1.0 170:0.07142857142857142 171:1.0 222:0.16666666666666666 244:0.16666666666666666 289:1.0 387:0.25 398:0.3333333333333333 640:1.0 641:1.0 713:1.0 957:1.0 1375:1.0 1626:1.0 2092:1.0 2880:1.0 3912:1.0 3956:1.0 4785:1.0 5163:1.0
6 11:0.14285714285714285 16:0.1875 18:0.06666666666666667 29:1.0 43:0.2 56:0.5 64:0.6666666666666666 77:0.3333333333333333 78:1.3333333333333333 109:0.5 200:1.0 222:0.16666666666666666 232:0.5 234:1.0 245:1.0 278:1.0 320:1.0 387:0.25 397:1.0 398:0.6666666666666666 405:1.0 408:1.0 585:1.0 698:1.0 724:0.3333333333333333 1156:0.5 1254:0.5 1364:1.0 1440:1.0 1581:1.0 1898:1.0 2028:1.0 2065:1.0 2194:1.0 2501:1.0 3700:1.0 4094:1.0 4671:1.0
6 10:1.0 11:0.14285714285714285 14:0.5 16:0.1875 26:1.0 29:1.0 53:0.25 64:0.3333333333333333 116:1.0 160:0.3333333333333333 171:1.0 222:0.16666666666666666 235:0.3333333333333333 236:1.0 237:0.125 289:1.0 295:0.3333333333333333 330:1.0 397:1.0 398:0.3333333333333333 431:1.0 437:1.0 531:0.16666666666666666 584:1.0 793:1.0 1197:2.0 1254:0.5 1338:0.5 1375:1.0 2795:1.0 2982:1.0 3046:1.0 3059:1.0 3752:1.0 3956:1.0 4785:1.0 4933:1.0 6999:1.0 7425:1.0
6 10:1.0 11:0.2857142857142857 14:1.0 16:0.3125 18:0.06666666666666667 52:1.0 70:0.16666666666666666 83:0.5 141:0.5 170:0.07142857142857142 171:1.0 333:0.5 347:0.5 348:1.0 380:1.0 658:1.0 677:1.0 693:1.0 896:0.09090909090909091 989:0.5 1155:1.0 1156:0.5 1207:1.0 1641:1.0 1687:1.0 1881:1.0 2277:1.0 3251:1.0 4595:1.0 5928:1.0
6 4:1.0 11:0.2857142857142857 16:0.125 18:0.13333333333333333 29:2.0 33:0.09090909090909091 43:0.2 56:0.5 78:0.3333333333333333 83:0.5 90:0.1875 109:0.5 163:1.0 200:2.0 222:0.16666666666666666 226:1.0 234:1.0 239:1.0 240:1.0 275:0.2 297:1.0 442:0.3333333333333333 532:1.0 758:0.5 983:0.5 1165:1.0 2529:1.0 3014:1.0 3038:1.0 3194:1.0 3285:1.0 4388:1.0
6 4:0.5 14:1.5 16:0.375 53:0.25 61:0.75 71:0.14285714285714285 90:0.125 147:1.0 169:0.5 171:2.0 222:0.16666666666666666 234:1.0 235:0.3333333333333333 237:0.125 241:1.0 387:0.25 398:0.3333333333333333 407:1.0 414:0.5 752:1.0 782:1.0 831:0.5 869:1.0 917:1.0 1079:1.0 1086:1.0 1237:0.25 1630:0.5 1772:1.0 3010:1.0 3113:1.0 4254:1.0 4330:1.0
6 11:0.14285714285714285 14:0.5 16:0.1875 29:3.0 33:0.09090909090909091 56:0.5 63:1.0 70:0.16666666666666666 78:0.3333333333333333 90:0.25 143:1.0 222:0.3333333333333333 234:1.0 237:0.125 280:1.0 295:0.3333333333333333 297:1.0 304:0.3333333333333333 321:1.0 330:1.0 380:1.0 386:0.5 398:0.6666666666666666 405:1.0 455:1.0 570:1.0 826:2.0 831:0.5 1128:1.0 1457:1.0 2440:1.0 3281:1.0 3752:1.0 4246:1.0 5094:1.0
6 4:0.5 16:0.25 29:1.0 44:0.3333333333333333 53:0.5 56:0.25 61:0.25 90:0.0625 102:0.5 113:1.0 218:1.0 222:0.16666666666666666 234:1.0 235:0.3333333333333333 237:0.125 241:1.0 256:0.5 275:0.2 405:1.0 407:1.0 429:1.0 549:0.5 762:1.0 826:1.0 872:0.5 917:1.0 954:0.5 1137:1.0 1234:1.0 1968:1.0 2484:2.0 2522:1.0 2684:1.0 2982:1.0 3512:1.0 3602:1.0 3700:1.0 4061:1.0
6 14:0.5 16:0.125 29:2.0 56:0.5 90:0.25 143:1.0 179:1.0 222:0.3333333333333333 234:2.0 297:1.0 320:1.0 321:1.0 398:0.6666666666666666 405:1.0 445:1.0 545:1.0 570:1.0 757:1.0 826:1.0 853:1.0 901:1.0 917:1.0 1254:1.0 1861:1.0 1964:1.0 2695:1.0 2829:1.0 3867:1.0 5094:1.0
6 3:1.0 14:1.0 16:0.0625 31:0.03333333333333333 90:0.125 123:1.0 274:1.0 320:1.0 398:0.3333333333333333 415:0.5 609:1.0 838:1.0 869:1.0 1202:1.0 1237:0.25 1861:1.0 1966:1.0 2379:1.0 2434:1.0 2684:1.0 3398:1.0 4905:1.0
6 8:0.5 10:1.0 14:0.5 29:1.0 31:0.03333333333333333 33:0.09090909090909091 53:0.75 70:0.16666666666666666 79:1.0 146:0.5 160:0.3333333333333333 248:1.0 289:2.0 415:0.5 450:0.3333333333333333 485:2.0 531:0.16666666666666666 556:1.0 935:0.14285714285714285 1079:1.0 1269:1.0 1435:1.0 1437:1.0 1518:1.0 1851:1.0 2311:1.0 2361:1.0 2527:1.0 2736:1.0 3046:1.0 3338:1.0 4112:1.0 7518:1.0 7779:1.0
6 4:0.5 11:0.14285714285714285 14:0.5 24:0.14285714285714285 33:0.09090909090909091 53:0.5 56:0.25 83:0.5 90:0.0625 124:0.5 160:0.3333333333333333 165:1.0 241:1.0 262:0.3333333333333333 278:1.0 289:1.0 377:1.0 388:1.0 453:0.5 490:1.0 494:1.0 521:0.5 707:1.0 737:0.5 848:1.0 906:1.0 935:0.14285714285714285 954:0.5 1087:1.0 1203:1.0 1378:1.0 1394:1.0 1399:1.0 1851:1.0 1936:1.0 2404:1.0 3722:1.0 4014:1.0 5009:1.0 7832:1.0
6 10:1.0 14:1.0 21:1.0 43:0.6 53:0.25 56:0.75 83:0.5 90:0.0625 179:1.0 184:1.0 222:0.16666666666666666 234:1.0 275:0.2 278:1.0 311:0.5 398:0.3333333333333333 414:0.5 421:1.0 453:0.5 793:1.0 907:1.0 982:1.0 1024:1.0 1026:1.0 1087:1.0 1323:0.5 1394:1.0 1399:1.0 1469:0.5 1535:1.0 1955:1.0 1964:1.0 2020:1.0 3046:1.0 3121:1.0 3122:1.0 3318:1.0 3599:1.0 4935:1.0 5094:1.0 5346:1.0
6 11:0.2857142857142857 33:0.09090909090909091 43:0.4 53:0.75 56:0.25 61:0.25 78:0.3333333333333333 83:0.5 90:0.0625 100:0.5 218:1.0 222:0.16666666666666666 224:1.0 226:1.0 228:0.3333333333333333 234:1.0 237:0.125 248:2.0 289:1.0 398:0.3333333333333333 588:1.0 645:0.3333333333333333 672:1.0 827:1.0 917:1.0 954:0.5 1061:1.0 1062:1.0 1087:1.0 1127:0.5 1278:1.0 1287:1.0 1290:1.0 1307:1.0 1323:0.5 1340:1.0 1473:1.0 1584:1.0 1682:1.0 1879:1.0 1964:1.0 2003:1.0 2381:1.0 2459:1.0 2482:1.0 3922:0.5 4056:1.0 4411:1.0 4412:2.0 5028:1.0
6 16:0.125 21:1.0 33:0.09090909090909091 53:0.25 56:0.75 61:0.25 90:0.0625 100:0.5 102:1.0 143:1.0 222:0.16666666666666666 275:0.2 284:0.3333333333333333 290:0.16666666666666666 291:1.0 311:0.5 445:1.0 457:1.0 499:2.0 539:1.0 757:1.0 866:0.14285714285714285 901:1.0 935:0.14285714285714285 1059:0.5 1064:1.0 1065:1.0 1128:1.0 1212:0.5 1248:0.5 1321:1.0 2041:1.0 3390:1.0 3590:1.0 3695:1.0 4255:1.0 4640:1.0 4641:1.0 4694:1.0
6 11:0.5714285714285714 14:1.0 16:0.1875 49:0.18181818181818182 50:0.5 53:0.25 60:0.025 70:0.16666666666666666 71:0.14285714285714285 90:0.125 147:1.0 235:0.3333333333333333 241:1.0 289:2.0 311:0.5 367:1.0 418:0.3333333333333333 954:0.5 1385:1.0 1852:1.0 1868:1.0 2137:1.0 2235:1.0 2685:1.0 3446:1.0
6 14:0.5 16:0.125 41:1.0 43:0.2 50:0.5 52:1.0 53:0.25 60:0.025 64:0.3333333333333333 99:1.0 113:1.0 114:1.0 116:1.0 199:1.0 245:1.0 248:1.0 275:0.2 278:2.0 286:0.3333333333333333 410:1.0 448:1.0 480:1.0 658:1.0 860:1.0 866:0.14285714285714285 975:1.0 1024:1.0 1249:1.0 1451:1.0 1479:1.0 1517:1.0 1725:1.0 1745:0.3333333333333333 1827:1.0 2001:1.0 2109:0.5 2134:1.0 2202:1.0 2441:1.0 3003:1.0
6 52:1.0 53:0.25 56:0.25 70:0.16666666666666666 90:0.0625 103:1.0 195:1.0 244:0.16666666666666666 248:1.0 250:1.0 265:0.5 290:0.16666666666666666 314:1.0 435:1.0 521:0.5 547:0.3333333333333333 873:1.0 1237:0.25 1248:0.5 1340:1.0 1451:1.0 1586:1.0 1740:0.5 1946:1.0 2612:1.0 3281:1.0 3978:1.0 5447:1.0
|
5b0a84044ae8eea5e9161b8c8fd4ce654540b5a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1460/CH6/EX6.7/6_7.sce | ccdbaeca6b06d398728edb05ab1ea9ab552d2f2d | [] | 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 | 413 | sce | 6_7.sce | clc
//Initialization of variables
T1=400+460 //R
P1=100 //lb/in^2
P2=20 //lb/in^2
T2=140+460 //R
Cp=50
//calculations
Pratio=P1/P2
Tratio=T1/T2
C=log(Tratio) /log(Pratio)
n=1/(1-C)
v1=Cp*T1/(144*P1)
v2=Cp*T2/(144*P2)
w=144*P1*v1^n
function[p]=fun(v)
p=w/v^n
endfunction
Work=intg(v1,v2,fun)
//results
printf("Work done = %.d ft-lb/lbm",Work)
//The answers in the textbook varies a bit due to rounding off errors
|
5158e025ced5d245238b0e70e4bc2f4792d692e4 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/util/%sp_sum.sci | f10e24a0f73c0b78db7b032c2d139d0cf926b7f5 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | 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 | 170 | sci | %sp_sum.sci | function a=%sp_sum(a,flag)
// Copyright INRIA
[m,n]=size(a);
if flag==2|flag=='c' then
a=sparse(a*ones(n,1))
end
if flag==1|flag=='r' then
a=sparse(ones(1,m)*a);
end
|
c73a10057d5e56baa0471c7ecd4e4a4ee4b11164 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH20/EX20.3/Ex20_3.sce | 440940ac75dffb993bb2d7f1e65ffb9254ccd3ed | [] | 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 | 546 | sce | Ex20_3.sce | //Example 20_3
clc();
clear;
//To find the current through the inductor
f=60 //Units in Hz
l=15*10^-3 //Units in H
xl=2*%pi*f*l //Units in Ohms
v=40 //Units in V
i=v/xl //Units in A
printf("The current in the inductor when frequency=60 Hz is I=%.2f A",i)
f=6*10^5 //Units in Hz
l=15*10^-3 //Units in H
xl=2*%pi*f*l //Units in Ohms
v=40 //Units in V
i=v/xl //Units in A
printf("\nThe current in the inductor when frequency=6*10^2 Hz is I=%.6f A",i)
|
e8adcdd4d21c4c00e18be94b933ad43ebaff8b4d | 0225f07f11230da9818e159324b578abd0a88cec | /Webasto X250_3/Webasto X250_3.tst | d1f9f2b5697cbd670c52e758b7149992c964893c | [] | no_license | zzzmarikzzz/eagle | a57ac554d1bea0f07d6d9c3a9494dd59a73beb3a | 13374a4fcb5c181b1047f207df8618054ec5ee2a | refs/heads/master | 2021-01-18T15:09:34.371046 | 2020-06-21T20:29:00 | 2020-06-21T20:29:00 | 54,958,216 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 18,129 | tst | Webasto X250_3.tst | G75*
%MOIN*%
%OFA0B0*%
%FSLAX25Y25*%
%IPPOS*%
%LPD*%
%AMOC8*
5,1,8,0,0,1.08239X$1,22.5*
%
%ADD10C,0.01600*%
%ADD11C,0.00000*%
%ADD12C,0.08800*%
%ADD13R,0.09068X0.06706*%
%ADD14R,0.06706X0.09068*%
%ADD15C,0.15200*%
%ADD16R,0.03950X0.04343*%
%ADD17R,0.09461X0.03162*%
%ADD18R,0.04737X0.05131*%
D10*
X0002859Y0002438D02*
X0109109Y0002438D01*
X0109109Y0076188D01*
X0002859Y0076188D01*
X0002859Y0002438D01*
D11*
X0006359Y0009938D02*
X0006361Y0010064D01*
X0006367Y0010190D01*
X0006377Y0010316D01*
X0006391Y0010442D01*
X0006409Y0010567D01*
X0006431Y0010691D01*
X0006456Y0010815D01*
X0006486Y0010938D01*
X0006519Y0011059D01*
X0006557Y0011180D01*
X0006598Y0011299D01*
X0006643Y0011418D01*
X0006691Y0011534D01*
X0006743Y0011649D01*
X0006799Y0011762D01*
X0006859Y0011874D01*
X0006922Y0011983D01*
X0006988Y0012091D01*
X0007057Y0012196D01*
X0007130Y0012299D01*
X0007207Y0012400D01*
X0007286Y0012498D01*
X0007368Y0012594D01*
X0007454Y0012687D01*
X0007542Y0012778D01*
X0007633Y0012865D01*
X0007727Y0012950D01*
X0007823Y0013031D01*
X0007922Y0013110D01*
X0008023Y0013185D01*
X0008127Y0013257D01*
X0008233Y0013326D01*
X0008341Y0013392D01*
X0008451Y0013454D01*
X0008563Y0013512D01*
X0008676Y0013567D01*
X0008792Y0013618D01*
X0008909Y0013666D01*
X0009027Y0013710D01*
X0009147Y0013750D01*
X0009268Y0013786D01*
X0009390Y0013819D01*
X0009513Y0013848D01*
X0009637Y0013872D01*
X0009761Y0013893D01*
X0009886Y0013910D01*
X0010012Y0013923D01*
X0010138Y0013932D01*
X0010264Y0013937D01*
X0010391Y0013938D01*
X0010517Y0013935D01*
X0010643Y0013928D01*
X0010769Y0013917D01*
X0010894Y0013902D01*
X0011019Y0013883D01*
X0011143Y0013860D01*
X0011267Y0013834D01*
X0011389Y0013803D01*
X0011511Y0013769D01*
X0011631Y0013730D01*
X0011750Y0013688D01*
X0011868Y0013643D01*
X0011984Y0013593D01*
X0012099Y0013540D01*
X0012211Y0013483D01*
X0012322Y0013423D01*
X0012431Y0013359D01*
X0012538Y0013292D01*
X0012643Y0013222D01*
X0012746Y0013148D01*
X0012846Y0013071D01*
X0012944Y0012991D01*
X0013039Y0012908D01*
X0013131Y0012822D01*
X0013221Y0012733D01*
X0013308Y0012641D01*
X0013391Y0012547D01*
X0013472Y0012450D01*
X0013550Y0012350D01*
X0013625Y0012248D01*
X0013696Y0012144D01*
X0013764Y0012037D01*
X0013828Y0011929D01*
X0013889Y0011818D01*
X0013947Y0011706D01*
X0014001Y0011592D01*
X0014051Y0011476D01*
X0014098Y0011359D01*
X0014141Y0011240D01*
X0014180Y0011120D01*
X0014216Y0010999D01*
X0014247Y0010876D01*
X0014275Y0010753D01*
X0014299Y0010629D01*
X0014319Y0010504D01*
X0014335Y0010379D01*
X0014347Y0010253D01*
X0014355Y0010127D01*
X0014359Y0010001D01*
X0014359Y0009875D01*
X0014355Y0009749D01*
X0014347Y0009623D01*
X0014335Y0009497D01*
X0014319Y0009372D01*
X0014299Y0009247D01*
X0014275Y0009123D01*
X0014247Y0009000D01*
X0014216Y0008877D01*
X0014180Y0008756D01*
X0014141Y0008636D01*
X0014098Y0008517D01*
X0014051Y0008400D01*
X0014001Y0008284D01*
X0013947Y0008170D01*
X0013889Y0008058D01*
X0013828Y0007947D01*
X0013764Y0007839D01*
X0013696Y0007732D01*
X0013625Y0007628D01*
X0013550Y0007526D01*
X0013472Y0007426D01*
X0013391Y0007329D01*
X0013308Y0007235D01*
X0013221Y0007143D01*
X0013131Y0007054D01*
X0013039Y0006968D01*
X0012944Y0006885D01*
X0012846Y0006805D01*
X0012746Y0006728D01*
X0012643Y0006654D01*
X0012538Y0006584D01*
X0012431Y0006517D01*
X0012322Y0006453D01*
X0012211Y0006393D01*
X0012099Y0006336D01*
X0011984Y0006283D01*
X0011868Y0006233D01*
X0011750Y0006188D01*
X0011631Y0006146D01*
X0011511Y0006107D01*
X0011389Y0006073D01*
X0011267Y0006042D01*
X0011143Y0006016D01*
X0011019Y0005993D01*
X0010894Y0005974D01*
X0010769Y0005959D01*
X0010643Y0005948D01*
X0010517Y0005941D01*
X0010391Y0005938D01*
X0010264Y0005939D01*
X0010138Y0005944D01*
X0010012Y0005953D01*
X0009886Y0005966D01*
X0009761Y0005983D01*
X0009637Y0006004D01*
X0009513Y0006028D01*
X0009390Y0006057D01*
X0009268Y0006090D01*
X0009147Y0006126D01*
X0009027Y0006166D01*
X0008909Y0006210D01*
X0008792Y0006258D01*
X0008676Y0006309D01*
X0008563Y0006364D01*
X0008451Y0006422D01*
X0008341Y0006484D01*
X0008233Y0006550D01*
X0008127Y0006619D01*
X0008023Y0006691D01*
X0007922Y0006766D01*
X0007823Y0006845D01*
X0007727Y0006926D01*
X0007633Y0007011D01*
X0007542Y0007098D01*
X0007454Y0007189D01*
X0007368Y0007282D01*
X0007286Y0007378D01*
X0007207Y0007476D01*
X0007130Y0007577D01*
X0007057Y0007680D01*
X0006988Y0007785D01*
X0006922Y0007893D01*
X0006859Y0008002D01*
X0006799Y0008114D01*
X0006743Y0008227D01*
X0006691Y0008342D01*
X0006643Y0008458D01*
X0006598Y0008577D01*
X0006557Y0008696D01*
X0006519Y0008817D01*
X0006486Y0008938D01*
X0006456Y0009061D01*
X0006431Y0009185D01*
X0006409Y0009309D01*
X0006391Y0009434D01*
X0006377Y0009560D01*
X0006367Y0009686D01*
X0006361Y0009812D01*
X0006359Y0009938D01*
X0006359Y0068688D02*
X0006361Y0068814D01*
X0006367Y0068940D01*
X0006377Y0069066D01*
X0006391Y0069192D01*
X0006409Y0069317D01*
X0006431Y0069441D01*
X0006456Y0069565D01*
X0006486Y0069688D01*
X0006519Y0069809D01*
X0006557Y0069930D01*
X0006598Y0070049D01*
X0006643Y0070168D01*
X0006691Y0070284D01*
X0006743Y0070399D01*
X0006799Y0070512D01*
X0006859Y0070624D01*
X0006922Y0070733D01*
X0006988Y0070841D01*
X0007057Y0070946D01*
X0007130Y0071049D01*
X0007207Y0071150D01*
X0007286Y0071248D01*
X0007368Y0071344D01*
X0007454Y0071437D01*
X0007542Y0071528D01*
X0007633Y0071615D01*
X0007727Y0071700D01*
X0007823Y0071781D01*
X0007922Y0071860D01*
X0008023Y0071935D01*
X0008127Y0072007D01*
X0008233Y0072076D01*
X0008341Y0072142D01*
X0008451Y0072204D01*
X0008563Y0072262D01*
X0008676Y0072317D01*
X0008792Y0072368D01*
X0008909Y0072416D01*
X0009027Y0072460D01*
X0009147Y0072500D01*
X0009268Y0072536D01*
X0009390Y0072569D01*
X0009513Y0072598D01*
X0009637Y0072622D01*
X0009761Y0072643D01*
X0009886Y0072660D01*
X0010012Y0072673D01*
X0010138Y0072682D01*
X0010264Y0072687D01*
X0010391Y0072688D01*
X0010517Y0072685D01*
X0010643Y0072678D01*
X0010769Y0072667D01*
X0010894Y0072652D01*
X0011019Y0072633D01*
X0011143Y0072610D01*
X0011267Y0072584D01*
X0011389Y0072553D01*
X0011511Y0072519D01*
X0011631Y0072480D01*
X0011750Y0072438D01*
X0011868Y0072393D01*
X0011984Y0072343D01*
X0012099Y0072290D01*
X0012211Y0072233D01*
X0012322Y0072173D01*
X0012431Y0072109D01*
X0012538Y0072042D01*
X0012643Y0071972D01*
X0012746Y0071898D01*
X0012846Y0071821D01*
X0012944Y0071741D01*
X0013039Y0071658D01*
X0013131Y0071572D01*
X0013221Y0071483D01*
X0013308Y0071391D01*
X0013391Y0071297D01*
X0013472Y0071200D01*
X0013550Y0071100D01*
X0013625Y0070998D01*
X0013696Y0070894D01*
X0013764Y0070787D01*
X0013828Y0070679D01*
X0013889Y0070568D01*
X0013947Y0070456D01*
X0014001Y0070342D01*
X0014051Y0070226D01*
X0014098Y0070109D01*
X0014141Y0069990D01*
X0014180Y0069870D01*
X0014216Y0069749D01*
X0014247Y0069626D01*
X0014275Y0069503D01*
X0014299Y0069379D01*
X0014319Y0069254D01*
X0014335Y0069129D01*
X0014347Y0069003D01*
X0014355Y0068877D01*
X0014359Y0068751D01*
X0014359Y0068625D01*
X0014355Y0068499D01*
X0014347Y0068373D01*
X0014335Y0068247D01*
X0014319Y0068122D01*
X0014299Y0067997D01*
X0014275Y0067873D01*
X0014247Y0067750D01*
X0014216Y0067627D01*
X0014180Y0067506D01*
X0014141Y0067386D01*
X0014098Y0067267D01*
X0014051Y0067150D01*
X0014001Y0067034D01*
X0013947Y0066920D01*
X0013889Y0066808D01*
X0013828Y0066697D01*
X0013764Y0066589D01*
X0013696Y0066482D01*
X0013625Y0066378D01*
X0013550Y0066276D01*
X0013472Y0066176D01*
X0013391Y0066079D01*
X0013308Y0065985D01*
X0013221Y0065893D01*
X0013131Y0065804D01*
X0013039Y0065718D01*
X0012944Y0065635D01*
X0012846Y0065555D01*
X0012746Y0065478D01*
X0012643Y0065404D01*
X0012538Y0065334D01*
X0012431Y0065267D01*
X0012322Y0065203D01*
X0012211Y0065143D01*
X0012099Y0065086D01*
X0011984Y0065033D01*
X0011868Y0064983D01*
X0011750Y0064938D01*
X0011631Y0064896D01*
X0011511Y0064857D01*
X0011389Y0064823D01*
X0011267Y0064792D01*
X0011143Y0064766D01*
X0011019Y0064743D01*
X0010894Y0064724D01*
X0010769Y0064709D01*
X0010643Y0064698D01*
X0010517Y0064691D01*
X0010391Y0064688D01*
X0010264Y0064689D01*
X0010138Y0064694D01*
X0010012Y0064703D01*
X0009886Y0064716D01*
X0009761Y0064733D01*
X0009637Y0064754D01*
X0009513Y0064778D01*
X0009390Y0064807D01*
X0009268Y0064840D01*
X0009147Y0064876D01*
X0009027Y0064916D01*
X0008909Y0064960D01*
X0008792Y0065008D01*
X0008676Y0065059D01*
X0008563Y0065114D01*
X0008451Y0065172D01*
X0008341Y0065234D01*
X0008233Y0065300D01*
X0008127Y0065369D01*
X0008023Y0065441D01*
X0007922Y0065516D01*
X0007823Y0065595D01*
X0007727Y0065676D01*
X0007633Y0065761D01*
X0007542Y0065848D01*
X0007454Y0065939D01*
X0007368Y0066032D01*
X0007286Y0066128D01*
X0007207Y0066226D01*
X0007130Y0066327D01*
X0007057Y0066430D01*
X0006988Y0066535D01*
X0006922Y0066643D01*
X0006859Y0066752D01*
X0006799Y0066864D01*
X0006743Y0066977D01*
X0006691Y0067092D01*
X0006643Y0067208D01*
X0006598Y0067327D01*
X0006557Y0067446D01*
X0006519Y0067567D01*
X0006486Y0067688D01*
X0006456Y0067811D01*
X0006431Y0067935D01*
X0006409Y0068059D01*
X0006391Y0068184D01*
X0006377Y0068310D01*
X0006367Y0068436D01*
X0006361Y0068562D01*
X0006359Y0068688D01*
X0097609Y0068688D02*
X0097611Y0068814D01*
X0097617Y0068940D01*
X0097627Y0069066D01*
X0097641Y0069192D01*
X0097659Y0069317D01*
X0097681Y0069441D01*
X0097706Y0069565D01*
X0097736Y0069688D01*
X0097769Y0069809D01*
X0097807Y0069930D01*
X0097848Y0070049D01*
X0097893Y0070168D01*
X0097941Y0070284D01*
X0097993Y0070399D01*
X0098049Y0070512D01*
X0098109Y0070624D01*
X0098172Y0070733D01*
X0098238Y0070841D01*
X0098307Y0070946D01*
X0098380Y0071049D01*
X0098457Y0071150D01*
X0098536Y0071248D01*
X0098618Y0071344D01*
X0098704Y0071437D01*
X0098792Y0071528D01*
X0098883Y0071615D01*
X0098977Y0071700D01*
X0099073Y0071781D01*
X0099172Y0071860D01*
X0099273Y0071935D01*
X0099377Y0072007D01*
X0099483Y0072076D01*
X0099591Y0072142D01*
X0099701Y0072204D01*
X0099813Y0072262D01*
X0099926Y0072317D01*
X0100042Y0072368D01*
X0100159Y0072416D01*
X0100277Y0072460D01*
X0100397Y0072500D01*
X0100518Y0072536D01*
X0100640Y0072569D01*
X0100763Y0072598D01*
X0100887Y0072622D01*
X0101011Y0072643D01*
X0101136Y0072660D01*
X0101262Y0072673D01*
X0101388Y0072682D01*
X0101514Y0072687D01*
X0101641Y0072688D01*
X0101767Y0072685D01*
X0101893Y0072678D01*
X0102019Y0072667D01*
X0102144Y0072652D01*
X0102269Y0072633D01*
X0102393Y0072610D01*
X0102517Y0072584D01*
X0102639Y0072553D01*
X0102761Y0072519D01*
X0102881Y0072480D01*
X0103000Y0072438D01*
X0103118Y0072393D01*
X0103234Y0072343D01*
X0103349Y0072290D01*
X0103461Y0072233D01*
X0103572Y0072173D01*
X0103681Y0072109D01*
X0103788Y0072042D01*
X0103893Y0071972D01*
X0103996Y0071898D01*
X0104096Y0071821D01*
X0104194Y0071741D01*
X0104289Y0071658D01*
X0104381Y0071572D01*
X0104471Y0071483D01*
X0104558Y0071391D01*
X0104641Y0071297D01*
X0104722Y0071200D01*
X0104800Y0071100D01*
X0104875Y0070998D01*
X0104946Y0070894D01*
X0105014Y0070787D01*
X0105078Y0070679D01*
X0105139Y0070568D01*
X0105197Y0070456D01*
X0105251Y0070342D01*
X0105301Y0070226D01*
X0105348Y0070109D01*
X0105391Y0069990D01*
X0105430Y0069870D01*
X0105466Y0069749D01*
X0105497Y0069626D01*
X0105525Y0069503D01*
X0105549Y0069379D01*
X0105569Y0069254D01*
X0105585Y0069129D01*
X0105597Y0069003D01*
X0105605Y0068877D01*
X0105609Y0068751D01*
X0105609Y0068625D01*
X0105605Y0068499D01*
X0105597Y0068373D01*
X0105585Y0068247D01*
X0105569Y0068122D01*
X0105549Y0067997D01*
X0105525Y0067873D01*
X0105497Y0067750D01*
X0105466Y0067627D01*
X0105430Y0067506D01*
X0105391Y0067386D01*
X0105348Y0067267D01*
X0105301Y0067150D01*
X0105251Y0067034D01*
X0105197Y0066920D01*
X0105139Y0066808D01*
X0105078Y0066697D01*
X0105014Y0066589D01*
X0104946Y0066482D01*
X0104875Y0066378D01*
X0104800Y0066276D01*
X0104722Y0066176D01*
X0104641Y0066079D01*
X0104558Y0065985D01*
X0104471Y0065893D01*
X0104381Y0065804D01*
X0104289Y0065718D01*
X0104194Y0065635D01*
X0104096Y0065555D01*
X0103996Y0065478D01*
X0103893Y0065404D01*
X0103788Y0065334D01*
X0103681Y0065267D01*
X0103572Y0065203D01*
X0103461Y0065143D01*
X0103349Y0065086D01*
X0103234Y0065033D01*
X0103118Y0064983D01*
X0103000Y0064938D01*
X0102881Y0064896D01*
X0102761Y0064857D01*
X0102639Y0064823D01*
X0102517Y0064792D01*
X0102393Y0064766D01*
X0102269Y0064743D01*
X0102144Y0064724D01*
X0102019Y0064709D01*
X0101893Y0064698D01*
X0101767Y0064691D01*
X0101641Y0064688D01*
X0101514Y0064689D01*
X0101388Y0064694D01*
X0101262Y0064703D01*
X0101136Y0064716D01*
X0101011Y0064733D01*
X0100887Y0064754D01*
X0100763Y0064778D01*
X0100640Y0064807D01*
X0100518Y0064840D01*
X0100397Y0064876D01*
X0100277Y0064916D01*
X0100159Y0064960D01*
X0100042Y0065008D01*
X0099926Y0065059D01*
X0099813Y0065114D01*
X0099701Y0065172D01*
X0099591Y0065234D01*
X0099483Y0065300D01*
X0099377Y0065369D01*
X0099273Y0065441D01*
X0099172Y0065516D01*
X0099073Y0065595D01*
X0098977Y0065676D01*
X0098883Y0065761D01*
X0098792Y0065848D01*
X0098704Y0065939D01*
X0098618Y0066032D01*
X0098536Y0066128D01*
X0098457Y0066226D01*
X0098380Y0066327D01*
X0098307Y0066430D01*
X0098238Y0066535D01*
X0098172Y0066643D01*
X0098109Y0066752D01*
X0098049Y0066864D01*
X0097993Y0066977D01*
X0097941Y0067092D01*
X0097893Y0067208D01*
X0097848Y0067327D01*
X0097807Y0067446D01*
X0097769Y0067567D01*
X0097736Y0067688D01*
X0097706Y0067811D01*
X0097681Y0067935D01*
X0097659Y0068059D01*
X0097641Y0068184D01*
X0097627Y0068310D01*
X0097617Y0068436D01*
X0097611Y0068562D01*
X0097609Y0068688D01*
X0097609Y0009938D02*
X0097611Y0010064D01*
X0097617Y0010190D01*
X0097627Y0010316D01*
X0097641Y0010442D01*
X0097659Y0010567D01*
X0097681Y0010691D01*
X0097706Y0010815D01*
X0097736Y0010938D01*
X0097769Y0011059D01*
X0097807Y0011180D01*
X0097848Y0011299D01*
X0097893Y0011418D01*
X0097941Y0011534D01*
X0097993Y0011649D01*
X0098049Y0011762D01*
X0098109Y0011874D01*
X0098172Y0011983D01*
X0098238Y0012091D01*
X0098307Y0012196D01*
X0098380Y0012299D01*
X0098457Y0012400D01*
X0098536Y0012498D01*
X0098618Y0012594D01*
X0098704Y0012687D01*
X0098792Y0012778D01*
X0098883Y0012865D01*
X0098977Y0012950D01*
X0099073Y0013031D01*
X0099172Y0013110D01*
X0099273Y0013185D01*
X0099377Y0013257D01*
X0099483Y0013326D01*
X0099591Y0013392D01*
X0099701Y0013454D01*
X0099813Y0013512D01*
X0099926Y0013567D01*
X0100042Y0013618D01*
X0100159Y0013666D01*
X0100277Y0013710D01*
X0100397Y0013750D01*
X0100518Y0013786D01*
X0100640Y0013819D01*
X0100763Y0013848D01*
X0100887Y0013872D01*
X0101011Y0013893D01*
X0101136Y0013910D01*
X0101262Y0013923D01*
X0101388Y0013932D01*
X0101514Y0013937D01*
X0101641Y0013938D01*
X0101767Y0013935D01*
X0101893Y0013928D01*
X0102019Y0013917D01*
X0102144Y0013902D01*
X0102269Y0013883D01*
X0102393Y0013860D01*
X0102517Y0013834D01*
X0102639Y0013803D01*
X0102761Y0013769D01*
X0102881Y0013730D01*
X0103000Y0013688D01*
X0103118Y0013643D01*
X0103234Y0013593D01*
X0103349Y0013540D01*
X0103461Y0013483D01*
X0103572Y0013423D01*
X0103681Y0013359D01*
X0103788Y0013292D01*
X0103893Y0013222D01*
X0103996Y0013148D01*
X0104096Y0013071D01*
X0104194Y0012991D01*
X0104289Y0012908D01*
X0104381Y0012822D01*
X0104471Y0012733D01*
X0104558Y0012641D01*
X0104641Y0012547D01*
X0104722Y0012450D01*
X0104800Y0012350D01*
X0104875Y0012248D01*
X0104946Y0012144D01*
X0105014Y0012037D01*
X0105078Y0011929D01*
X0105139Y0011818D01*
X0105197Y0011706D01*
X0105251Y0011592D01*
X0105301Y0011476D01*
X0105348Y0011359D01*
X0105391Y0011240D01*
X0105430Y0011120D01*
X0105466Y0010999D01*
X0105497Y0010876D01*
X0105525Y0010753D01*
X0105549Y0010629D01*
X0105569Y0010504D01*
X0105585Y0010379D01*
X0105597Y0010253D01*
X0105605Y0010127D01*
X0105609Y0010001D01*
X0105609Y0009875D01*
X0105605Y0009749D01*
X0105597Y0009623D01*
X0105585Y0009497D01*
X0105569Y0009372D01*
X0105549Y0009247D01*
X0105525Y0009123D01*
X0105497Y0009000D01*
X0105466Y0008877D01*
X0105430Y0008756D01*
X0105391Y0008636D01*
X0105348Y0008517D01*
X0105301Y0008400D01*
X0105251Y0008284D01*
X0105197Y0008170D01*
X0105139Y0008058D01*
X0105078Y0007947D01*
X0105014Y0007839D01*
X0104946Y0007732D01*
X0104875Y0007628D01*
X0104800Y0007526D01*
X0104722Y0007426D01*
X0104641Y0007329D01*
X0104558Y0007235D01*
X0104471Y0007143D01*
X0104381Y0007054D01*
X0104289Y0006968D01*
X0104194Y0006885D01*
X0104096Y0006805D01*
X0103996Y0006728D01*
X0103893Y0006654D01*
X0103788Y0006584D01*
X0103681Y0006517D01*
X0103572Y0006453D01*
X0103461Y0006393D01*
X0103349Y0006336D01*
X0103234Y0006283D01*
X0103118Y0006233D01*
X0103000Y0006188D01*
X0102881Y0006146D01*
X0102761Y0006107D01*
X0102639Y0006073D01*
X0102517Y0006042D01*
X0102393Y0006016D01*
X0102269Y0005993D01*
X0102144Y0005974D01*
X0102019Y0005959D01*
X0101893Y0005948D01*
X0101767Y0005941D01*
X0101641Y0005938D01*
X0101514Y0005939D01*
X0101388Y0005944D01*
X0101262Y0005953D01*
X0101136Y0005966D01*
X0101011Y0005983D01*
X0100887Y0006004D01*
X0100763Y0006028D01*
X0100640Y0006057D01*
X0100518Y0006090D01*
X0100397Y0006126D01*
X0100277Y0006166D01*
X0100159Y0006210D01*
X0100042Y0006258D01*
X0099926Y0006309D01*
X0099813Y0006364D01*
X0099701Y0006422D01*
X0099591Y0006484D01*
X0099483Y0006550D01*
X0099377Y0006619D01*
X0099273Y0006691D01*
X0099172Y0006766D01*
X0099073Y0006845D01*
X0098977Y0006926D01*
X0098883Y0007011D01*
X0098792Y0007098D01*
X0098704Y0007189D01*
X0098618Y0007282D01*
X0098536Y0007378D01*
X0098457Y0007476D01*
X0098380Y0007577D01*
X0098307Y0007680D01*
X0098238Y0007785D01*
X0098172Y0007893D01*
X0098109Y0008002D01*
X0098049Y0008114D01*
X0097993Y0008227D01*
X0097941Y0008342D01*
X0097893Y0008458D01*
X0097848Y0008577D01*
X0097807Y0008696D01*
X0097769Y0008817D01*
X0097736Y0008938D01*
X0097706Y0009061D01*
X0097681Y0009185D01*
X0097659Y0009309D01*
X0097641Y0009434D01*
X0097627Y0009560D01*
X0097617Y0009686D01*
X0097611Y0009812D01*
X0097609Y0009938D01*
D12*
X0101609Y0009938D03*
X0101609Y0068688D03*
X0010359Y0068688D03*
X0010359Y0009938D03*
D13*
X0065721Y0020301D03*
X0065721Y0034474D03*
D14*
X0039058Y0039488D03*
X0024885Y0039488D03*
D15*
X0013546Y0041188D03*
X0013571Y0024300D03*
X0039109Y0053687D03*
X0056609Y0054912D03*
X0072859Y0047437D03*
X0084109Y0059962D03*
X0096609Y0047437D03*
X0021609Y0057437D03*
D16*
X0078869Y0030525D03*
X0086349Y0030525D03*
X0082609Y0038399D03*
X0081584Y0018599D03*
X0085324Y0010725D03*
X0077844Y0010725D03*
D17*
X0049908Y0013000D03*
X0049908Y0018000D03*
X0049908Y0023000D03*
X0049908Y0028000D03*
X0029435Y0028000D03*
X0029435Y0023000D03*
X0029435Y0018000D03*
X0029435Y0013000D03*
D18*
X0048687Y0034188D03*
X0055380Y0034188D03*
X0053237Y0043025D03*
X0059930Y0043025D03*
X0076712Y0024250D03*
X0083405Y0024250D03*
X0093262Y0026725D03*
X0099955Y0026725D03*
X0103018Y0034938D03*
X0096325Y0034938D03*
X0071043Y0011525D03*
X0064350Y0011525D03*
M02*
|
7412d9c017b1ddb206797b5ae4ec7734dd7146d4 | c3280ada260999123d75347caeaad1c7fc9f8266 | /kali.sce | 2f589623a4ba693e51d36e987bbe9f3b3bb51bc8 | [] | no_license | dikisp/Kuliah-MetNum | 3bd01f0573f2a18eb320a716da841ca3ec69930b | 7775f5e0251457702fb3e24c88483df0ff37fee7 | refs/heads/master | 2020-03-23T06:41:49.307866 | 2018-07-17T03:13:25 | 2018-07-17T03:13:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 193 | sce | kali.sce | function total = hitung(atas)
jum = 0;
i=1;
while i < atas
if i modulo 5 = 0 then
jum = jum + i;
end
i=i+1;
end
total = jum;
endfunction
|
cd9910c3be89fba2e76def203cd9526f33b88908 | 52f5a79ebadf29e2886413996e4ae855b9ed3a00 | /vuejs/nginx.tst | b8074899ca97978dd1ca7dee0a6c0562a452bf7f | [] | no_license | fernandotugu/estudos | 97bb20c66966f8d6c6657a3f6fcab17bfe86c1eb | e73d25e7e76aa77de59130fdd95a394ab7baeb7f | refs/heads/master | 2023-01-06T22:59:07.256808 | 2020-01-15T19:54:03 | 2020-01-15T19:54:03 | 199,859,219 | 0 | 0 | null | 2023-01-05T03:11:47 | 2019-07-31T13:13:53 | Vue | UTF-8 | Scilab | false | false | 33 | tst | nginx.tst | rewrite ^(.+)$ /index.html last;
|
779483f460971ed1549ab9ed2ee84a8bbbe5587f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1853/CH1/EX1.7/Ex1_7.sce | 15c2808b8cee84d81b407152fbba585926fce317 | [] | 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 | 146 | sce | Ex1_7.sce |
//calculate the current I1.I2
I=12
R1=6
R2=8
I1=I*R2/(R1+R2)
I2=I*R1/(R1+R2)
disp('I1='+string(I1)+'amps' , 'I2 ='+string(I2)+'amps')
|
4d147bf258ccd53ee18730d0203751a188efc476 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH15/EX15.2/15_2.sce | 982b0809c2666c9281e9e973798487971c98b431 | [] | 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 | 187 | sce | 15_2.sce | clc
//initialisation of variables
Ksp= 2*10^-12
M= 8.84*10^-5 //molar
n= 2
//CALCULATIONS
r= (Ksp/(n^2*M^3))^(1/3)
//RESULTS
printf ('mean ionic activity coefficient = %.1f ',r)
|
cd7a559a859b3f82f892d8d6944f450886af773d | 449d555969bfd7befe906877abab098c6e63a0e8 | /48/CH4/EX4.10/eg_4_10.sce | dd61d9c745d43146f07cff45594b16a748de42c5 | [] | 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 | 44 | sce | eg_4_10.sce | clc;
k=[1 1 0 1;
0 1 1 1];
karmap3(k); |
c915313f02e3d483f4e1b0a100f39ec608a70dd7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH12/EX12.4/12_4.sce | dcb5d38f3b5b2f5a16f72b7f4f1dc827d06cd68e | [] | 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,333 | sce | 12_4.sce | //To find angle and maximum velocity
clc
//Given:
phi=20 //degrees
t=20, G=2
m=5 //mm
v=1.2 //m/s
addendum=1*m //mm
//Solution:
//Angle turned through by pinion when one pair of teeth is in mesh:
//Calculating the pitch circle radius of pinion
r=m*t/2 //mm
//Calculating the pitch circle radius of wheel
R=m*G*t/2 //mm
//Calculating the radius of addendum circle of pinion
rA=r+addendum //mm
//Calculating the radius of addendum circle of wheel
RA=R+addendum //mm
//Calculating the length of path of approach
KP=sqrt(RA^2-R^2*(cosd(phi))^2)-R*sind(phi) //mm
//Calculating the length of path of recess
PL=sqrt(rA^2-r^2*(cosd(phi))^2)-r*sind(phi) //mm
//Calculating the length of path of contact
KL=KP+PL //mm
//Calculating the length of arc of contact
Lac=KL/cosd(phi) //mm
//Calculating the angle turned by the pinion
angle=Lac*360/(2*%pi*r) //Angle turned by the pinion, degrees
//Maximum velocity of sliding:
//Calculating the angular speed of pinion
omega1=v*1000/r //rad/s
//Calculating the angular speed of wheel
omega2=v*1000/R //rad/s
//Calculating the maximum velocity of sliding
vS=(omega1+omega2)*KP //mm/s
//Results:
printf("\n\n Angle turned through by pinion when one pair of teeth is in mesh = %.2f degrees.\n\n",angle)
printf(" Maximum velocity of sliding, vS = %.1f mm/s.\n\n",vS) |
c7d5e1b11d16111f5ccc9eae332593e58df606a0 | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/unite.tst | a6bd7f597d4302d7a2c5ee45149ae5348e8d390c | [
"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 | 87 | tst | unite.tst | ## Test of the unite feature
read <bzr.fi
read <testrepo.fi
unite bzr testrepo
write -
|
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)
|
ab252830cbc5d370569871cec8db2ad49f851afd | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfas_ee_vrt_col/~BivLCM-SR-bfas_ee_vrt_col-PLin-VLin.tst | 0f937ae3b66aa6ae4ebb1a46412ef38334976caf | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,974 | tst | ~BivLCM-SR-bfas_ee_vrt_col-PLin-VLin.tst |
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.392222D+00
2 -0.181207D-02 0.320877D-02
3 0.778638D-01 -0.123696D-02 0.346914D+00
4 -0.217820D-02 0.540345D-03 -0.326635D-02 0.269617D-02
5 0.287357D-02 0.153158D-03 0.386547D-03 0.271808D-03 0.280372D-02
6 0.128765D-02 0.837698D-04 0.191652D-02 -0.285775D-04 0.178009D-03
7 0.363841D-02 0.125532D-03 0.385156D-02 0.499000D-04 0.960668D-03
8 0.125776D-02 0.105493D-03 0.879214D-03 0.911894D-05 0.295441D-03
9 -0.198090D+00 0.359036D-01 -0.260684D+00 0.156248D-01 0.929418D-01
10 0.124136D+00 0.124765D-01 0.243819D+00 0.192241D-01 0.138199D+00
11 -0.336344D+00 0.209016D-01 -0.212080D+00 0.267959D-02 -0.819912D-02
12 -0.390098D+00 0.232064D-02 -0.135127D+01 0.486141D-01 -0.161560D-02
13 0.221704D+00 0.713195D-02 0.151251D+00 0.853271D-02 0.572121D-01
14 0.386655D-01 0.123158D-01 -0.307228D+00 0.115187D-01 0.379904D-01
15 -0.100610D+01 -0.753929D-01 -0.439232D+00 -0.175553D-01 -0.147556D+00
16 -0.408993D-01 -0.997008D-02 -0.226009D-01 -0.270024D-02 -0.341144D-02
17 -0.662610D-02 -0.729953D-03 -0.177068D-02 -0.217760D-03 -0.571579D-03
18 -0.934302D+00 -0.292553D-01 0.908277D-01 -0.524748D-01 0.910759D-02
19 -0.166638D+00 0.436321D-02 0.227984D+00 -0.406460D-02 0.650274D-02
20 -0.473567D+00 -0.365187D-01 -0.351682D+01 -0.485252D-01 -0.167575D-01
21 0.133839D+00 -0.739353D-02 -0.180650D+00 -0.206366D-02 -0.678085D-02
22 0.159621D-02 -0.302356D-03 -0.403007D-02 0.627117D-03 -0.475239D-03
23 0.322072D-01 -0.213202D-02 -0.257863D-01 -0.122237D-01 -0.279451D-02
24 -0.392981D-03 0.689969D-03 0.630446D-02 -0.133319D-03 -0.788199D-04
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.109667D-02
7 0.146359D-02 0.397705D-02
8 0.276692D-03 0.436147D-03 0.284663D-02
9 0.188016D-01 0.746891D-01 0.253571D-01 0.588583D+02
10 0.228684D-01 0.732937D-01 0.230293D-01 0.209222D+01 0.195424D+02
11 0.201738D-01 0.844365D-02 -0.128581D-01 0.740504D+01 -0.142705D+01
12 -0.414191D-03 -0.391511D-03 -0.581719D-01 0.356450D+01 -0.125351D+01
13 0.888706D-01 0.182589D+00 0.353754D-01 0.275293D+01 0.544117D+01
14 0.592130D-01 0.111035D+00 0.269634D+00 0.729509D+01 0.478625D+01
15 -0.663522D-01 -0.128638D+00 -0.896748D-01 -0.160089D+02 -0.116847D+02
16 -0.951995D-03 -0.222579D-02 -0.352780D-02 0.820918D+00 -0.400724D+00
17 0.639016D-04 -0.173257D-03 0.252127D-03 -0.881177D-01 -0.509979D-01
18 -0.945106D-01 -0.192073D+00 -0.450816D-01 -0.989001D+01 -0.374632D+00
19 -0.118236D-02 0.157322D-01 -0.128780D-02 -0.243145D+01 0.595639D+00
20 -0.999096D-01 -0.206362D+00 -0.178186D+00 0.317339D+01 0.494525D-01
21 -0.595117D-03 -0.188201D-01 0.642220D-03 0.222404D+01 -0.827548D+00
22 -0.151768D-04 0.997691D-05 0.186035D-03 0.393527D-01 -0.335286D-01
23 0.702514D-03 0.222424D-03 0.138398D-02 -0.311141D+00 -0.108359D+00
24 0.170063D-03 0.431924D-03 -0.192785D-03 -0.307207D-01 -0.193037D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.289542D+02
12 0.894261D+01 0.892475D+02
13 -0.784660D+00 0.114011D+01 0.181735D+02
14 0.991617D+00 -0.380945D+01 0.776706D+01 0.583777D+02
15 -0.390862D+01 -0.101895D+00 -0.817002D+01 -0.109291D+02 0.347934D+03
16 0.213536D+00 0.630556D+00 -0.148859D+00 -0.420948D-01 0.292971D+01
17 0.484524D-01 -0.531543D-02 -0.146292D-01 0.454718D-01 -0.144965D+01
18 -0.159045D+01 -0.389107D+01 -0.119121D+02 -0.113948D+02 0.996371D+02
19 -0.102651D+00 -0.204770D+01 0.676177D-01 -0.418956D+00 0.783826D+01
20 -0.975864D+00 -0.344465D+01 -0.107825D+02 -0.256995D+02 0.763812D+02
21 0.585499D+00 0.162271D+01 -0.345379D+00 0.559554D+00 -0.738923D+01
22 -0.460569D-01 0.810672D-02 0.309571D-02 0.491965D-01 -0.441284D+00
23 0.526456D-01 -0.384553D+00 0.420477D-01 0.279734D+00 0.188321D+00
24 -0.153614D-01 -0.896729D-01 0.147729D-01 -0.585337D-01 -0.214903D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.557279D+00
17 -0.239118D-01 0.162288D-01
18 0.497796D+00 -0.508437D+00 0.261248D+03
19 0.106180D-01 -0.485961D-01 0.849230D+01 0.517602D+01
20 0.807282D+00 -0.385086D+00 0.103296D+03 0.423897D+00 0.407990D+03
21 0.186529D+00 0.378221D-01 -0.448466D+01 -0.469781D+01 -0.292818D+00
22 -0.556613D-02 0.454205D-02 -0.114402D+01 -0.566988D-01 -0.411484D+00
23 0.255326D-01 0.497836D-02 -0.957477D+00 -0.186697D+00 0.318220D+01
24 0.198788D-02 0.178198D-02 -0.310382D+00 0.180802D-01 -0.179880D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.548469D+01
22 0.233928D-01 0.107491D-01
23 0.360451D+00 -0.880703D-02 0.522233D+00
24 -0.489617D-01 0.212866D-02 -0.313304D-01 0.181023D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.051 1.000
3 0.211 -0.037 1.000
4 -0.067 0.184 -0.107 1.000
5 0.087 0.051 0.012 0.099 1.000
6 0.062 0.045 0.098 -0.017 0.102
7 0.092 0.035 0.104 0.015 0.288
8 0.038 0.035 0.028 0.003 0.105
9 -0.041 0.083 -0.058 0.039 0.229
10 0.045 0.050 0.094 0.084 0.590
11 -0.100 0.069 -0.067 0.010 -0.029
12 -0.066 0.004 -0.243 0.099 -0.003
13 0.083 0.030 0.060 0.039 0.253
14 0.008 0.028 -0.068 0.029 0.094
15 -0.086 -0.071 -0.040 -0.018 -0.149
16 -0.087 -0.236 -0.051 -0.070 -0.086
17 -0.083 -0.101 -0.024 -0.033 -0.085
18 -0.092 -0.032 0.010 -0.063 0.011
19 -0.117 0.034 0.170 -0.034 0.054
20 -0.037 -0.032 -0.296 -0.046 -0.016
21 0.091 -0.056 -0.131 -0.017 -0.055
22 0.025 -0.051 -0.066 0.116 -0.087
23 0.071 -0.052 -0.061 -0.326 -0.073
24 -0.005 0.091 0.080 -0.019 -0.011
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.701 1.000
8 0.157 0.130 1.000
9 0.074 0.154 0.062 1.000
10 0.156 0.263 0.098 0.062 1.000
11 0.113 0.025 -0.045 0.179 -0.060
12 -0.001 -0.001 -0.115 0.049 -0.030
13 0.630 0.679 0.156 0.084 0.289
14 0.234 0.230 0.661 0.124 0.142
15 -0.107 -0.109 -0.090 -0.112 -0.142
16 -0.039 -0.047 -0.089 0.143 -0.121
17 0.015 -0.022 0.037 -0.090 -0.091
18 -0.177 -0.188 -0.052 -0.080 -0.005
19 -0.016 0.110 -0.011 -0.139 0.059
20 -0.149 -0.162 -0.165 0.020 0.001
21 -0.008 -0.127 0.005 0.124 -0.080
22 -0.004 0.002 0.034 0.049 -0.073
23 0.029 0.005 0.036 -0.056 -0.034
24 0.038 0.051 -0.027 -0.030 -0.032
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 0.176 1.000
13 -0.034 0.028 1.000
14 0.024 -0.053 0.238 1.000
15 -0.039 -0.001 -0.103 -0.077 1.000
16 0.053 0.089 -0.047 -0.007 0.210
17 0.071 -0.004 -0.027 0.047 -0.610
18 -0.018 -0.025 -0.173 -0.092 0.330
19 -0.008 -0.095 0.007 -0.024 0.185
20 -0.009 -0.018 -0.125 -0.167 0.203
21 0.046 0.073 -0.035 0.031 -0.169
22 -0.083 0.008 0.007 0.062 -0.228
23 0.014 -0.056 0.014 0.051 0.014
24 -0.021 -0.071 0.026 -0.057 -0.086
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.251 1.000
18 0.041 -0.247 1.000
19 0.006 -0.168 0.231 1.000
20 0.054 -0.150 0.316 0.009 1.000
21 0.107 0.127 -0.118 -0.882 -0.006
22 -0.072 0.344 -0.683 -0.240 -0.196
23 0.047 0.054 -0.082 -0.114 0.218
24 0.020 0.104 -0.143 0.059 -0.662
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 0.096 1.000
23 0.213 -0.118 1.000
24 -0.155 0.153 -0.322 1.000
|
548149944eccc0edf3da06b2d84bd17988896204 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1442/CH3/EX3.7/3_7.sce | a2fed319d75df42539100422fc9cc023cb2e9f1f | [] | 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 | 169 | sce | 3_7.sce | clc
//initialisation of variables
p= 800 //atm
P= 10000 //psi
x= 14.696 //psi/atm
//CALCULATIONS
P1= p*x
//RESULTS
if (P1>P) then
disp("Salesman is honest")
|
6f1f269ab6930d42f5c7dc85c1b3619cef65e5a7 | 948c6e0314c1822f872350cf63aaceb3d28fa497 | /tests/test-usage-004.tst | 9ffec089678e3fa05e374f8002b5346834e35c26 | [
"Apache-2.0"
] | permissive | archiecobbs/bom | 832eb815b40f4955e6551496bdd2598cb4f00442 | 0bab1a015bb5e53345e5422902e16f802bd4c07f | refs/heads/main | 2023-08-25T05:43:51.470221 | 2021-11-04T16:12:49 | 2021-11-04T16:12:49 | 417,213,171 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 76 | tst | test-usage-004.tst | FLAGS='--list --print NONE'
STDIN=''
STDOUT=''
STDERR='!USAGE!'
EXITVAL='1'
|
0f2a187d2a9f09bac353793c75290f75f0f503cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3793/CH4/EX4.10/exp_.sce | 19007ba9427848dbb20f0337d3c46f934bce155d | [] | 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 | 498 | sce | exp_.sce | clear;
clc;
v=400;
Xl=.30;
Xc=3.75*10^(-6);
l=300;
L=Xl/(2*%pi*50);
C=Xc/(2*%pi*50);
Zc=sqrt(L/C);
mprintf(" surge impedence is %.3f ohm\n",Zc);
phase=2*%pi*50*sqrt(L*C);
pconstant=%i*phase;
mprintf("propagation constant is %.4f\n",imag(pconstant));
A=cos(phase*l);
D=A;
B=%i*Zc*sin(phase*l);
C=(%i*sin(phase*l))/Zc;
lamda=(3*10^(8))/50;
SIL=v^(2)/Zc;
mprintf("A,B,C and D parameters are respectively\n")
disp(A,B,C,D);
mprintf("Lamda and SIL is %.5fm and %.5fMW",lamda,SIL);
|
b69e3570de64690b65a22350e8754c8727688dee | 06a62d768e69fd9dda11b30011c252807e301813 | /pgm3.sci | 7605a198dffad2d73b53372149d3296f33f44f10 | [] | 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 | 243 | sci | pgm3.sci |
x = 0:5:35;
y = [0 20 43 59 89 124 154 200];
h = 5;
x = 25/h + 1
velocityAt25seconds = (y(x + 1) - y(x - 1)) /(2* h) ;
accelerationAt25seconds = (y(x + 1) - (2 * y(x)) + y(x - 1))/(h^2)
x = 1;
velocityAt0seconds = (y(x + 1) - y(x)) /(h) ;
|
0bf60dec2516a2d95f940483df98da595d21a4bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /812/CH12/EX12.02/12_02.sce | 9410fab061a6397f3d0b82479a016a87e44fc014 | [] | 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 | 691 | sce | 12_02.sce | //Mass flow//
pathname=get_absolute_file_path('12.02.sce')
filename=pathname+filesep()+'12.02-data.sci'
exec(filename)
//Checking for chocking:
c=pb/p0;
if(c<=0.528)
//choked
else
//Not choked
//Therefore pressure at exit = back pressure
pe=pb;
//Mach number at exit:
Me=(((p0/pe)^((k-1)/k)-1)*(2/(k-1)))^0.5
//Temperature at exit(in K):
Te=T0/(1+(k-1)/2*Me^2)
//Velocity at exit(in m/sec):
Ve=Me*sqrt(k*R*Te)
//Density at exit(in kg/m^3):
de=pe*10^3/R/Te
//Mass flow rate of air(kg/sec):
m=de*Ve*Ae
end;
printf("\n\nRESULTS\n\n")
printf("\n\nMach number at exit: %.3f\n\n",Me)
printf("\n\nMass flow rate of air: %.3f kg/sec\n\n",m)
|
e99445f1ec1a63a39ef592e52964d71feecac539 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfi_c_hrz_ind/~BivLCM-SR-bfi_c_hrz_ind-PLin-VLin.tst | 4e242d8614aa5e9d045e54a52c92770acdf58cd6 | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,974 | tst | ~BivLCM-SR-bfi_c_hrz_ind-PLin-VLin.tst |
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.303401D+00
2 -0.247993D-02 0.232315D-02
3 0.340604D-01 -0.685035D-03 0.213163D+00
4 -0.130137D-03 0.821904D-04 -0.174102D-02 0.182530D-02
5 -0.550776D-03 0.133076D-03 0.118883D-02 0.431554D-04 0.345639D-02
6 0.407618D-03 -0.788687D-04 0.399060D-03 -0.991487D-04 -0.323277D-03
7 0.565044D-03 0.460162D-04 0.110999D-03 0.115608D-03 0.691443D-03
8 -0.405103D-03 0.123556D-03 -0.373069D-03 -0.153680D-04 0.808340D-04
9 -0.312135D+00 0.871458D-02 -0.782795D-01 -0.138469D-01 0.365374D-01
10 -0.159170D+00 -0.743475D-02 0.945541D-01 -0.720885D-02 0.111161D+00
11 -0.150916D-01 -0.449102D-02 0.366519D-01 0.816983D-02 0.407277D-01
12 0.309817D+00 0.152856D-01 -0.410695D+00 0.455652D-01 -0.192799D-01
13 -0.254838D-01 -0.129019D-03 0.874900D-01 -0.758872D-02 0.272646D-02
14 -0.187140D+00 0.237234D-01 -0.459302D+00 0.362370D-02 0.154618D-01
15 -0.230190D+01 -0.253264D-01 -0.472893D+00 0.155612D-01 -0.118580D+00
16 -0.626858D-01 -0.264366D-02 0.170622D-02 -0.426516D-03 -0.878664D-03
17 0.984018D-02 -0.538205D-03 0.255795D-02 0.740191D-04 -0.367325D-03
18 -0.861715D-01 0.154356D-01 -0.181478D-01 -0.126820D-01 -0.228255D-01
19 0.263177D-02 0.462749D-02 0.255441D-01 -0.963622D-03 0.448316D-02
20 0.153318D+00 -0.203372D-01 -0.497674D+00 -0.225761D-01 -0.118430D-01
21 0.243690D-01 -0.695945D-02 -0.140297D-01 0.390953D-02 -0.626761D-02
22 -0.149193D-02 -0.471717D-04 0.108122D-02 0.319289D-03 -0.698137D-04
23 0.162088D-01 0.132355D-03 0.145657D-02 -0.476181D-02 -0.363003D-03
24 -0.519034D-03 0.302249D-03 -0.154409D-02 0.124626D-03 0.703638D-04
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.919271D-03
7 0.509448D-03 0.248753D-02
8 0.500240D-04 0.223001D-03 0.237134D-02
9 0.101411D-01 -0.174562D-01 0.514973D-02 0.451935D+02
10 0.123242D-02 0.238520D-01 0.121560D-01 0.449744D+01 0.184801D+02
11 0.197239D-01 0.520424D-01 0.165216D-02 0.270916D+01 -0.188317D+01
12 -0.643725D-01 -0.687643D-02 0.562203D-01 -0.221679D+01 0.126919D+01
13 0.525642D-01 0.807760D-01 0.172337D-01 0.179647D+01 0.132721D+01
14 -0.250154D-02 0.266932D-01 0.176204D+00 0.129235D+01 0.346716D+01
15 -0.165669D-01 -0.615116D-01 -0.404714D-01 -0.915028D+01 -0.120854D+02
16 -0.273164D-03 -0.127542D-02 0.299219D-03 0.830265D+00 -0.140196D+00
17 0.138506D-05 0.939403D-04 -0.721396D-04 -0.163549D+00 -0.527152D-02
18 -0.433919D-01 -0.512046D-01 -0.221434D-01 -0.163713D+01 -0.559053D+00
19 -0.823600D-02 0.824046D-02 -0.106662D-01 -0.163366D+01 -0.617223D+00
20 0.263851D-02 -0.101426D-01 -0.118692D+00 -0.192849D+01 -0.155353D+01
21 0.925505D-02 -0.720501D-02 0.942590D-02 0.188186D+01 0.452801D+00
22 -0.885653D-04 -0.442422D-03 -0.934072D-04 -0.429194D-02 -0.223692D-01
23 -0.603244D-03 -0.886918D-03 0.862255D-03 -0.226944D+00 0.142308D-01
24 0.562268D-05 -0.165600D-03 -0.375589D-03 0.349344D-01 -0.502152D-02
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.278842D+02
12 -0.200025D+01 0.125916D+03
13 -0.933144D+00 -0.768438D-01 0.110912D+02
14 -0.783777D+00 0.953788D+01 0.819402D+00 0.442142D+02
15 0.679090D+00 0.981243D+01 -0.125605D+01 -0.238871D+01 0.243570D+03
16 -0.158930D+00 0.187194D+00 -0.161004D-01 0.412438D-01 0.172552D+01
17 0.112572D-01 0.291726D-01 -0.810618D-02 -0.321791D-01 -0.103591D+01
18 -0.248469D+01 0.688975D+01 -0.477486D+01 -0.322117D+01 0.200639D+02
19 0.671277D+00 0.621586D+00 -0.940015D+00 -0.147441D+01 -0.141183D+00
20 0.119984D+01 -0.245831D+02 -0.332896D+01 -0.167547D+02 0.333359D+01
21 -0.239428D+00 -0.682059D+00 0.898222D+00 0.128798D+01 -0.100333D+01
22 -0.428155D-01 0.336431D-01 -0.721415D-03 -0.810789D-02 -0.246233D-01
23 -0.466483D-01 0.444405D+00 -0.434297D-01 0.130919D+00 -0.450552D+00
24 -0.926477D-02 -0.246692D-01 0.280066D-02 -0.546840D-01 0.555859D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.475753D+00
17 -0.231875D-01 0.139935D-01
18 -0.472227D+00 -0.641895D-01 0.955696D+02
19 -0.388902D-01 0.178028D-01 0.195850D+01 0.314615D+01
20 -0.354941D+00 0.587348D-01 -0.297252D+01 0.805177D+00 0.133999D+03
21 0.174030D+00 -0.186240D-01 -0.100638D+01 -0.295978D+01 -0.933749D+00
22 0.481236D-03 0.157608D-02 -0.394783D+00 -0.116115D-01 0.130625D-01
23 -0.617817D-02 0.493967D-02 -0.171630D+00 0.577171D-01 0.158434D+01
24 0.400447D-02 -0.859340D-03 0.257354D-01 -0.868711D-02 -0.615275D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.348881D+01
22 -0.902024D-02 0.487393D-02
23 -0.515198D-02 -0.242284D-02 0.238883D+00
24 0.311077D-02 0.483380D-03 -0.199390D-01 0.740460D-02
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.093 1.000
3 0.134 -0.031 1.000
4 -0.006 0.040 -0.088 1.000
5 -0.017 0.047 0.044 0.017 1.000
6 0.024 -0.054 0.029 -0.077 -0.181
7 0.021 0.019 0.005 0.054 0.236
8 -0.015 0.053 -0.017 -0.007 0.028
9 -0.084 0.027 -0.025 -0.048 0.092
10 -0.067 -0.036 0.048 -0.039 0.440
11 -0.005 -0.018 0.015 0.036 0.131
12 0.050 0.028 -0.079 0.095 -0.029
13 -0.014 -0.001 0.057 -0.053 0.014
14 -0.051 0.074 -0.150 0.013 0.040
15 -0.268 -0.034 -0.066 0.023 -0.129
16 -0.165 -0.080 0.005 -0.014 -0.022
17 0.151 -0.094 0.047 0.015 -0.053
18 -0.016 0.033 -0.004 -0.030 -0.040
19 0.003 0.054 0.031 -0.013 0.043
20 0.024 -0.036 -0.093 -0.046 -0.017
21 0.024 -0.077 -0.016 0.049 -0.057
22 -0.039 -0.014 0.034 0.107 -0.017
23 0.060 0.006 0.006 -0.228 -0.013
24 -0.011 0.073 -0.039 0.034 0.014
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.337 1.000
8 0.034 0.092 1.000
9 0.050 -0.052 0.016 1.000
10 0.009 0.111 0.058 0.156 1.000
11 0.123 0.198 0.006 0.076 -0.083
12 -0.189 -0.012 0.103 -0.029 0.026
13 0.521 0.486 0.106 0.080 0.093
14 -0.012 0.080 0.544 0.029 0.121
15 -0.035 -0.079 -0.053 -0.087 -0.180
16 -0.013 -0.037 0.009 0.179 -0.047
17 0.000 0.016 -0.013 -0.206 -0.010
18 -0.146 -0.105 -0.047 -0.025 -0.013
19 -0.153 0.093 -0.123 -0.137 -0.081
20 0.008 -0.018 -0.211 -0.025 -0.031
21 0.163 -0.077 0.104 0.150 0.056
22 -0.042 -0.127 -0.027 -0.009 -0.075
23 -0.041 -0.036 0.036 -0.069 0.007
24 0.002 -0.039 -0.090 0.060 -0.014
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 -0.034 1.000
13 -0.053 -0.002 1.000
14 -0.022 0.128 0.037 1.000
15 0.008 0.056 -0.024 -0.023 1.000
16 -0.044 0.024 -0.007 0.009 0.160
17 0.018 0.022 -0.021 -0.041 -0.561
18 -0.048 0.063 -0.147 -0.050 0.132
19 0.072 0.031 -0.159 -0.125 -0.005
20 0.020 -0.189 -0.086 -0.218 0.018
21 -0.024 -0.033 0.144 0.104 -0.034
22 -0.116 0.043 -0.003 -0.017 -0.023
23 -0.018 0.081 -0.027 0.040 -0.059
24 -0.020 -0.026 0.010 -0.096 0.041
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.284 1.000
18 -0.070 -0.056 1.000
19 -0.032 0.085 0.113 1.000
20 -0.044 0.043 -0.026 0.039 1.000
21 0.135 -0.084 -0.055 -0.893 -0.043
22 0.010 0.191 -0.578 -0.094 0.016
23 -0.018 0.085 -0.036 0.067 0.280
24 0.067 -0.084 0.031 -0.057 -0.618
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.069 1.000
23 -0.006 -0.071 1.000
24 0.019 0.080 -0.474 1.000
|
f04d4011d8b352d62bdad975056ba60d11822d92 | b23687e2eb02bcb6d0f581b7975f42c496faeda1 | /QuadraticDistortion.sce | f522a758d1fac298902cfb8bc35d973ac9cd488a | [
"MIT"
] | permissive | harvishj/Scilab | bd3fbd3e679eb07aa088ff2bab40d491c6499770 | 9daada512f42ea6f52199a34d6b18e64b107af94 | refs/heads/master | 2021-07-14T15:06:03.621923 | 2020-10-05T06:35:43 | 2020-10-05T06:35:43 | 213,328,984 | 1 | 3 | MIT | 2020-10-05T06:35:44 | 2019-10-07T08:16:52 | Scilab | UTF-8 | Scilab | false | false | 445 | sce | QuadraticDistortion.sce | clear;
clf;
dt = 1/10000;
//Generating a sine wave and then passing it through a quadratic function
t = -0.01:dt:0.01;
x = sin(200.*(%pi).*t);
a = 3;
b = 5;
y = a.*x + b.*x.*x;
subplot(2,1,1);
plot(t,x);
xgrid(1);
xlabel("T", "fontsize", 3);
ylabel("X", "fontsize", 3);
title("Sine wave: x", "fontsize", 3);
subplot(2,1,2);
plot(t,y);
xgrid(1);
xlabel("T", "fontsize", 3);
ylabel("X", "fontsize", 3);
title("y = ax + bx^2", "fontsize", 3);
|
177dbc61e9383260660a81fcda9f4b6ce335934c | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /AkarPersamaan/scilab/soal_06.sce | d99a4750d258847ab27d4567ea1280f56c49c0ab | [] | no_license | f-fathurrahman/ffr-MetodeNumerik | ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327 | e3a9da224c0fd5b32e671708e890018a3c4104c4 | refs/heads/master | 2023-07-19T22:29:38.810143 | 2023-07-07T10:02:34 | 2023-07-07T10:02:34 | 107,272,110 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 979 | sce | soal_06.sce | function f = soal_06(z)
epsilon0 = 0.885e-12
F = 0.3
Q = 9.4e-6
q = 2.4e-5
R = 0.1
c = 1 - z/sqrt(z^2 + R^2)
f = Q*q*c/(2*epsilon0) - F
endfunction
function F = eval_F(z)
epsilon0 = 0.885e-12
Q = 9.4e-6
q = 2.4e-5
R = 0.1
c = 1 - z/sqrt(z^2 + R^2)
F = Q*q*c/(2*epsilon0)
endfunction
function do_plot()
z1 = 0.1
z2 = 2.0
Npoints = 100
z = linspace(z1, z2, Npoints)
f = zeros(1,Npoints)
for i = 1:Npoints
f(i) = soal_06(z(i))
printf("%18.10f %18.10f\n", z(i), f(i))
end
clf()
plot(z, f)
xgrid()
xs2pdf( gcf(), "soal_06.pdf" )
endfunction
// do_plot()
exec("bisection.sce", -1)
root = bisection( soal_06, 1.4, 1.6 )
printf("At root = %18.10f\n", eval_F(root))
exec("regula_falsi.sce", -1)
root = regula_falsi( soal_06, 1.4, 1.6 )
printf("At root = %18.10f\n", eval_F(root))
exec("ridder.sce", -1)
root = ridder( soal_06, 1.4, 1.6 )
printf("At root = %18.10f\n", eval_F(root))
if getscilabmode() ~= "STD"
quit()
end
|
df34d23364f8d9e643428989ba65ecad3cb2e355 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH3/EX3.4/ex_3_4.sce | c66ba9c3bbafc6efff38490d6f39460422f5d81f | [] | 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 | 176 | sce | ex_3_4.sce | //Ex 3.4
clc;
clear;
close;
format('v',5);
SR=0.5;//V/micro second
Vm=10;//V
f=100;//kHz
fm=(SR/10^-6)/(2*%pi*Vm);//Hz
disp(fm/1000,"Maximum frequency, fm is(kHz)");
|
035e8c4b97f999b75606acfe9f1078ab9e55cea9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH11/EX11.8/Ex11_8.sce | 83a5fa265e78e83fdc8b2c20ef56225536cf9f8a | [] | 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 | 143 | sce | Ex11_8.sce | clc;
close();
clear();
//page no 379
//prob no. 11.8
B=400*64; //Mb/s
mprintf('Memory bus bandwidth = %i Mb/s or %i MB/s',B,B/8);
|
e7a4bd23df9edf565cd77e3179d52f47c0f5eb13 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/prepad.sci | fdf3146e564f20594bf09fba6d72318ed6104d71 | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 762 | sci | prepad.sci | // Copyright (C) 2018 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author:Sonu Sharma, RGIT Mumbai
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
// This is a supporting function
function y = prepad(x, n, varargin)
if argn(2) > 3 | argn(2) < 2 then
error("prepad : wrong number of input argument ")
elseif argn(2) == 2
c = 0 ;
else
c = varargin(1);
end
y = x;
for i = 1:(n-length(x))
y = [c y];
end
endfunction
|
e597b86aca9238732f1a326dbe03de3b13ef5d1d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH24/EX24.8/24_8.sce | f8298daabc8a740e5bbdcf13495ca4703fbde9a1 | [] | 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,261 | sce | 24_8.sce | clear//
//Variables
VCC = -18.0 //Source voltage (in volts)
RC = 4.3 //Collector resistance (in kilo-ohm)
RE = 1.0 //Emitter resistance (in kilo-ohm)
beta = 200.0 //Common emitter current gain
VBE = -0.7 //Emitter-to-Base Voltage (in volts)
R1 = 39.0 //Resistance (in kilo-ohm)
R2 = 8.2 //Resistance (in kilo-ohm)
RL = 3.0 //Load resistance (in kilo-ohm)
//Calculation
Vth = VCC * R2 / (R1 + R2) //Thevenin's voltage (in volts)
Rth = R1 * R2 / (R1 + R2) //Thevenin's equivalent voltage (in volts)
IC = (Vth - VBE)/(RE + Rth/beta) //Collector current (in milli-Ampere)
IE = -IC //Emitter current (in milli-Amper)
r1e = 30.0/IE * 10**-3 //a.ac resistance (in kilo-ohm)
Ris = Rth * beta*r1e/(Rth + beta*r1e) //input resistance of the stage (in ohm)
rL = RC * RL / (RC + RL) //a.c. load resistance (in kilo-ohm)
Av = rL / r1e //Voltage gain
//Result
printf("\n Voltage gain is %0.1f .",Av)
|
8b78a94c913b4d1ffcfa8bca3631968a78594852 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2354/CH12/EX12.9/12_9.sce | b5e241fb06947adbb31e6e27b3414d3dcdf8b984 | [] | 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 | 12_9.sce | //example 12.9
clc; funcprot(0);
// Initialization of Variable
k1=0.88;//p2/poy;
k2=0.628;//poy/pox
pox=100;//pressure
R=1545;
T2=494;
k=1.4;
M2=0.24;
A=2.4;
V2=M2*sqroot(k*R/28.97*T2*32.2);
mdot=95.9*A*V2/T2/R*28.97;
disp(mdot,"mass flow rate in lb/s");
p2=k1*k2*pox;
disp(p2,"pressure in lbf/in^2")
clear()
|
31dd39f06534b649ea80ac721af4dd4e8c4392cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH1/EX1.22/exa_1_22.sce | 92af74a44d46cc37c31d0bea562777a1d45093f7 | [] | 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 | 236 | sce | exa_1_22.sce | // Exa 1.22
clc;
clear;
close;
// Given data
miu_p= 0.05;// in m^2/v-sec
rho=5*10^28/10^8;// in /m^3
q= 1.6*10^-19;// in C
sigma= q*rho*miu_p;// in (Ωm)^-1
disp(sigma,"The conductivity of silicon material in (Ωm)^-1 is : ")
|
d2c0870a358055c980c037b4589a2ec8e93aa5bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /881/CH10/EX10.3/exa10_3.sce | c301f60149a64162b89fe89caedbbb84ec9b7b30 | [] | 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 | 337 | sce | exa10_3.sce | clc;
//Example 10.3
//Page No 400
disp("Given: For figure, Analog sample voltage of +1.07 V. ;");
//solution
a=1.07/1
disp(round(a));
disp("The quantization error is the difference between the original sample voltage and the quantized level, or");
q=1.07-1;
disp(q,"Qe = ");
disp("From Table 10-2, the PCM code for 1 is 101");
|
2237accfc247f7db336f2e574dd31d2511b6f6bf | bc0a6b4d5e326bd35c72bec024b555ed91a1c543 | /circle1.sce | 030f9e043ebebead838fdeeeb59a969cddd80275 | [] | no_license | askmrsinh/SEM1_AM | 0c9e7b4a51caa1321d1203cf9060e454b685e0ee | 31da57ba40d0741b370dd3c789a1dfec5c99bdea | refs/heads/master | 2021-09-28T03:09:18.743057 | 2016-08-18T15:01:52 | 2016-08-18T15:01:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 104 | sce | circle1.sce | a=1
theta=0:%pi/64:2*%pi;
r=a*(1-cos(theta))
polarplot(theta,r)
r=a*sin(theta)
polarplot(theta,r)
|
5535d5f800e17140ca2fcb7c539147438c28c9ee | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/scilab-examples/root/findrt.sce | 9e5540e963580891c527bf377e5166f476f2cf03 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 517 | sce | findrt.sce | // here is an example use of the while statement
// which is used for finding the root of a polynomial
// which is known to lie within a certain interval.
// a is the lower value of the range
// b is the upper value of the range
a= 0; fa = -%inf;
b =3 ; fb = %inf ;
while abs(b-a) > %eps*b
x = ( a + b ) / 2;
fx = x^3 - 2*x - 5 ;
if sign(fx) == sign(fa)
a=x;
fa = fx ;
else
b = x ;
fb = fx;
end
end
disp ( ' The root is :' );
disp (x) ;
|
04d5c799ec74cf3e29718bae5dedea9997f9068b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2582/CH6/EX6.4/Ex6_4.sce | b7aa3c0f847d4af626b3c8e831e0c204beee81e5 | [] | 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 | 547 | sce | Ex6_4.sce | //Ex 6.4
clc;clear;close;
format('v',5);
Range=0:10;//range
//(i)2-bit DAC
n=2;//no. of bits
step=max(Range)/2^n;//V
reading='10';//input in binary
Vo=step*bin2dec(reading);//V
disp(Vo,"(i) Output Voltage(V)");
//(ii)4-bit DAC
n=4;//no. of bits
step=max(Range)/2^n;//V
reading='0110';//input in binary
Vo=step*bin2dec(reading);//V
disp(Vo,"(ii) Output Voltage(V)");
//(i)8-bit DAC
n=8;//no. of bits
step=max(Range)/2^n;//V
reading='10111100';//input in binary
Vo=step*bin2dec(reading);//V
disp(Vo,"(iii) Output Voltage(V)");
|
a6e23388ee52d875089b7aa60b63ff7d66392520 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH20/EX20.39/EX20_39.sce | 52e3d2082ff170c6c90edacca2903f1dc0133447 | [] | 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,620 | sce | EX20_39.sce | clc;funcprot(0);//EXAMPLE 20.39
// Initialisation of Variables
N=10000;.................//Compressor rpm
v=660;............//Volume of air delivered in m^3/min
p1=1;.................//Inlet pressure in bar
t1=293;.............//Inlet temperature in K
rp=4;.............//Pressure ratio
etaisen=0.82;........//Isentropic efficiency
Cf2=62;...............//Flow velocity in m/s
rr=2;.............//Ratio of outer radius of impeller to inner radius of impeller
ka=0.9;..............//Blade area co efficient
fis=0.9;...........//Slip factor
cp=1.005;..............//Specific heat at constant pressure in kJ/kgK
ga=1.4;............//Ratio of specific heats
R=287;..............//Gas constant for air in kJ/kgK
//Calculations
t21=t1*(rp^((ga-1)/ga));Cf1=Cf2;
t2=t1+((t21-t1)/etaisen);..........//Final temperature of air
m=(p1*10^5*v/60)/(R*t1);...............//Mass flow rate in m^3/s
P=m*cp*(t2-t1);.........//Theoretical power in kW
disp(t2,"Final temperature of air in Kevin:")
disp(P,"Theoretical power in kW:")
Cbl2=sqrt(1000*cp*(t2-t1)/fis);
d2=60*Cbl2/(%pi*N);..........//Impeller diameter at outlet in m
d1=d2/rr;...............//Impeller diameter at inlet in m
disp(d2*100,"Impeller diameter at outlet in cm")
disp(d1*100,"Impeller diameter at inlet in cm")
b1=(v/60)/(2*%pi*(d1/2)*Cf1*ka);.........//Breadth of impeller at inlet in m
disp(b1*100,"Breadth of impeller at inlet in cm:")
Cbl1=Cbl2/rr;
beta1=(atan(Cf1/Cbl1))*180/%pi;
al2=(atan(Cf2/(fis*Cbl2)))*180/%pi;
disp(beta1,"Impeller blade angle at inlet in degrees:")
disp(al2,"Diffuser blade angle at inlet in degrees")
|
83f56397345b9b6970261696e71d825d16e87d0d | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set9/s_Engineering_Physics_K._V._Kumar_3537.zip/Engineering_Physics_K._V._Kumar_3537/CH1/EX1.52/Ex1_52.sce | d2da333ada409ce96cd5c550f28fcc377d9c9542 | [] | 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 | 281 | sce | Ex1_52.sce | errcatch(-1,"stop");mode(2);//Example 1_52
;
;
//To find diameter of 25th ring
dm=0.62 //units in cm
ds=0.3 //units in cm
d25=2*(dm^2-ds^2)+ds^2 //units in cm^2
d25=sqrt(d25) //units in cm
printf("Diameter of 25th ring is %.3f cm",d25)
exit();
|
3c7bb2ef4a6ca365813f9d6ccdff169ed046748e | 717ddeb7e700373742c617a95e25a2376565112c | /3044/CH5/EX5.18/Ex5_18.sce | f30142324a0f25d4e70dafc6d39d5364190c2213 | [] | 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 | 370 | sce | Ex5_18.sce | //Variable Declaration
x = [0.1 0.4 0.1 ; 0.2 0.2 0]
//Calculation
p1 = x(2,1)/sum(x(2,1:3)) // for x1=0 & x2=1
p2 = x(2,2)/sum(x(2,1:3)) // for x1=1 & x2=1
p3 = x(2,3)/sum(x(2,1:3)) // for x1=2 & x2=1
// Result
printf ( "P(0|1): %.2f , P(1|1): %.2f , P(2|1) : %.2f",p1,p2,p3)
printf ( "As P(0|1) is not equal to P(0) (0.5!=0.3) i.e. X1 & X2 are dependent" )
|
866a7b6199d2f628d972cbb3c3b0df60e8ad51a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH10/EX10.11/Ex10_11.sce | 808162e854c34e848b90892c78a6b08b99e74b30 | [] | 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 | 337 | sce | Ex10_11.sce | clear
//
//
//
//Variable declaration
epsilon0=8.854*10^-12; //relative permeability(F/m)
alphae=10^-40; //dielectric polarizability(Fm^2)
N=3*10^28; //number of atoms
//Calculations
epsilonr=1+(N*alphae/epsilon0); //dielectric constant
//Result
printf("\n dielectric constant is %e ",epsilonr)
|
3a4c0fe081c97bfae1dd45395013d0d31e3124d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /34/CH12/EX12.6/Ch12Exa6.sci | 8fe539acca9615f6ca81640aa6cb1b8372abfab8 | [] | 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 | 310 | sci | Ch12Exa6.sci |
Thalf1= 2.5*(10^5); //half-life of U-234, y
AtomicRatio= 1.8*(10^4); //atomic ratio of u-238 and U-234 in the sample
Thalf2= AtomicRatio*Thalf1; //using Eqn12.9
disp(Thalf2,"The half-life of Uranium-238, in years, is: ")
//Result
// The half-life of Uranium-238, in years, is:
// 4.500D+09 |
43eb1b13e3ff40fcdb1a715686ef5a83b5e974ed | 449d555969bfd7befe906877abab098c6e63a0e8 | /3131/CH5/EX5.16/5_16.sce | 8d58607cea490b33a4c1bf441fab142c17bd9a30 | [] | 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 | sce | 5_16.sce | clear all; clc;
disp("Ex 5_16")
disp("Free body diagram is as shown in fig 5-30b")
//Initilization of variables
F=[0,0,-200] //matrix notation
//Calculations
//Applying summation of forces along all axes and equating them to zero
//Applying moment about point X,Y,Z and equating it to zero
//We get six equations and we solve for each component
//Solving by matrix method to obtain solution
A=[1,0,0,0,1;0,1,0,1,0;0,0,1,0,0;0,0,0,2,0;0,0,0,1,-2]
B=[0;0;200;200;0]
C=inv(A)
D=C*B
Ax=D(1)
Ay=D(2)
Az=D(3)
Td=D(4)
Te=D(5)
//Result
printf('\n The values are \n')
printf('\n Ax=%0.0f \n Ay=%0.0f \n Az=%0.0f \n Td=%0.0f \n Te=%0.0f \n All values are in N',Ax,Ay,Az,Td,Te)
|
0ac2228d58c54adda4a5b5fc8256ff882ac82bd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1514/CH10/EX10.7/10_7.sce | e7f68336a31dd4e63e5a8f93220263b013788b50 | [] | 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 | 485 | sce | 10_7.sce | //chapter 10
//example 10.7
//page 303
clear all;
clc ;
//given
R1=1 ;
R2=3.9;//in Mohm
Rl=56;
Rs=2.2;
Rd=6.8;//in kohm
gm=4.5;//mA/V
rd=100;//kohm
vi=50;//mV
rs=200;//ohm
Rp=1/gm;//in kohm
Zi=1000*(Rs*Rp)/(Rs+Rp);
Zo=Rd*rd/(Rd+rd);
Av=gm*(Rd*Rl)/(Rd+Rl);
vo=Av*vi*Zi/(rs+Zi);
printf('\nInput Impedance(Zi)=%d ohm',ceil(Zi))
printf('\nOutput Impedance(Zo)=%.1f kohm',(Zo))
printf('\nVoltage Gain:\nAv=%.1f ',Av)
printf('\nOutput Voltage(vo)=%d mV',ceil(vo))
|
07942cdaf55e6b2e0af4881e17f92d3bb4e1b335 | 95a097a2fe8699932e1301c6d095bc4127c62da8 | /00/And.tst | fdbbbc980ccd0b936e6919b9c2d16df30b6181b0 | [] | no_license | itzhak-razi/From-Nand-to-Tetris | f508703b6cdb7a4841b2fae6849382c80a731c3f | 4b11c4fe802dbea1c863b03ca71fd5891e39e45b | refs/heads/master | 2021-06-01T11:09:02.084364 | 2012-11-23T01:12:45 | 2012-11-23T01:12:45 | 7,025,062 | 36 | 38 | null | null | null | null | UTF-8 | Scilab | false | false | 460 | tst | And.tst | // This file is part of the materials accompanying the book
// "The Elements of Computing Systems" by Nisan and Schocken,
// MIT Press. Book site: www.nand2tetris.org
// File name: projects/00/And.tst
load And.hdl,
output-file And.out,
compare-to And.cmp,
output-list a%B3.1.3 b%B3.1.3 out%B3.1.3;
set a 0,
set b 0,
eval,
output;
set a 0,
set b 1,
eval,
output;
set a 1,
set b 0,
eval,
output;
set a 1,
set b 1,
eval,
output; |
e6a2da88c2bdbd642bd523794e61418776d8361b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH2/EX2.23/Ex2_23.sce | e3bb15dd96c1cfdc4f0c810caf71f56d06df6d5a | [] | 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 | 390 | sce | Ex2_23.sce | //Force P required to hold the system
//Refer to fig. 2.28 (a),(b)&(c)
//Applying Lami's Theorem at A we get
C=4000*sind(180-60)/sind(60+90-15) //N
//Applying equilibrium conditions B
P=(-2000*cosd(45)+C*cosd(60))/cosd(15) //N
printf("P=%.1f N is required to hold the system in given position.",P)
|
680f071f8c9fadebb7905f1cde6f223d6879bd3b | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH4/EX4.15/4_15.sce | 95d4e7bd4134f5df4d895f4ffa6bc88555ab492e | [] | 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 | 512 | sce | 4_15.sce | //pathname=get_absolute_file_path('4.15.sce')
//filename=pathname+filesep()+'4.15-data.sci'
//exec(filename)
//Maximum temperature(in K):
T1=500+273
//Minimum temperature(in K):
T2=200+273
//Temperature of the body(in K):
T3=450+273
//Efficiency:
n=1-T2/T1
//Ratio of W to Q1:
r1=n
//COP of pump:
COP=T3/(T3-T2)
//Ratio of Q3 to W:
r2=COP*2/3
//Ratio of Q3 to Q1:
r3=r1*r2
printf("\nRESULT\n")
printf("\nRatio of heat rejected to body at 450ºC to the heat supplied by the reservoir = %f",r3) |
c6de70cc975d29c57019c592decb83a98b9e70a0 | 8c802fb8c6a8dc8ed61222ce257eb61f580a462e | /projects/07/MemoryAccess/BasicTest/BasicTestVME.tst | 34dafeb536ce3a56b4ade37f8714463a16694b3e | [] | 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 | 436 | tst | BasicTestVME.tst | // File name: projects/07/MemoryAccess/BasicTest/BasicTestVME.tst
load BasicTest.vm,
output-file BasicTest.out,
compare-to BasicTest.cmp,
output-list RAM[256]%D1.6.1 RAM[300]%D1.6.1 RAM[401]%D1.6.1
RAM[402]%D1.6.1 RAM[3006]%D1.6.1 RAM[3012]%D1.6.1
RAM[3015]%D1.6.1 RAM[11]%D1.6.1;
set sp 256,
set local 300,
set argument 400,
set this 3000,
set that 3010,
repeat 25 {
vmstep;
}
output;
|
943e74d15f6b44d39e387467517915ffdd8bcb2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3835/CH1/EX1.22/Ex1_22.sce | 262a7da83cdc0d143001fbafe49009967dc48071 | [] | 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 | 222 | sce | Ex1_22.sce | clear
//
//applying kcl to circuit at node b i3+i4=6-4=2
vb=8
vba=2 //voltage drop across nodes b and a
va=6 //potential of node a w.r.t note c
i2=3
//applying kcl to node a
isa=1
vs=va+2*isa
printf("\n vse= %0.1f V",vs)
|
239a0f49450647733e635d1a38a42b48780a266c | 449d555969bfd7befe906877abab098c6e63a0e8 | /132/CH12/EX12.1/Example12_1.sce | bd0440c78ffe0c3182bcedfc31100bb8452ab849 | [] | 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 | 358 | sce | Example12_1.sce | //Example 12.1
//Program to Calculate the Gain of a Negative Feedback Amplifier with
//Given Specifications
clear;
clc ;
close ;
//Given Circuit Data
A=100; //Internal Gain
B=1/10; //Feedback Factor
//Calculation
Af=A/(1+A*B);
//Displaying The Results in Command Window
printf("\n\t The Value of the Gain of Feedback Amplifier is, Af = %f .",Af); |
97af8a7c99ba14eab74508156f4e86015e24ed29 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH3/EX3.5/example3_5.sce | e94453b4376c81271ca29fc3eb55f40b66fae08c | [] | 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 | 605 | sce | example3_5.sce |
//example 3.5
//calculate Field Capacity
clc;
//Given
d=2; //root zone depth
Wc=0.05; //existing water content
gammad=15; //dry density of soil
gammaw=9.81; //unit weigth of water
Vw=500 //water applied to the soil
Wl=0.1; //water loss
A=1000; //area of plot
Vu=Vw*0.9; //volume of water used in soil
Wu=Vu*gammaw; //weigth of water used in soil
Ws=A*d*gammad; //total dry weigth of soil
Wa=Wu*100/Ws; //percent water added
Fc=Wc*100+Wa;
Fc=round(Fc*100)/100;
mprintf("The Field Capacity of soil is=%f percent.",Fc);
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.