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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8250db1448c9d0613b41b69e17dafa4e376456d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH1/EX1.7/Ch01Ex7.sce | 5f94ed8374e4516905a82f2d75d3f7059d626c9b | [] | 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 | 868 | sce | Ch01Ex7.sce | // Scilab Code Ex1.7: Page-1.6 (2009)
clc; clear;
m = 9.1e-031; // Mass of the electron, kg
e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
h = 6.626e-034; // Planck's constant, Js
E = 20e+03*e; // Energy of the electron, J
// As 1/2*m*v^2 = E, solving for v
v = sqrt(2*E/m); // Velocity of the electron, m/s
lambda = h/(m*v); // de Broglie wavelength of the electron, m
n = 1; // First order diffraction
d = 9.8e-011; // Atomic spacing for thin gold foil, m
// Using Bragg's equation, 2*d*sin(theta) = n*lambda and solving for theta
theta = asind(n*lambda/(2*d)); // Angle of deviation for first order diffraction maxima, degree
printf("\nThe angle of deviation for first order diffraction maxima = %4.2f degrees", theta);
// Result
// The angle of deviation for first order diffraction maxima = 2.54 degrees
|
2f8749ec3511498ff516df881a40d070311ee640 | 1ebbdce5d3f3daa6d9e8b439410e447941bc49f5 | /résolution numérique/fonctions.sci | 9756b64c9427691d46e35b8cd6a31daebdd32389 | [] | no_license | sebastienbaur/legionella_proliferation_modeling | 2aff0e2499584e99c07116a700e43218976b9b12 | ae9b5d4dde1912a98584c6319eae41980355ef03 | refs/heads/master | 2020-03-07T15:25:49.881820 | 2018-03-31T17:27:52 | 2018-03-31T17:27:52 | 127,554,634 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,401 | sci | fonctions.sci | // Terme de croissance de Monod qui intervient dans l'équation bilan des légionnelles
function y = monod1 (N,l,a) // N pour nutriment, l légionnelle, et a amibes
// terme de croissance qui apparaît dans l'équation des légionnelles
y = ((k_1* ones(size(N,1),1) ./ (k_2*ones(size(N,1),1) + N)) + (k_3*ones(size(N,1),1) ./ (k_4*ones(size(N,1),1) + rho_A * a))) .* l;
endfunction
function y = monod2 (N,l,a)
// terme de croissance qui apparaît dans l'équation de croissance des amibes
y = (k_5 * ones(size(N,1),1) ./ (k_6 * ones(size(N,1),1) + N)) .* a - (k_3 * ones(size(N,1),1) ./ (k_4 * ones(size(N,1),1) + rho_A * a)) .* l ;
endfunction
function y = monod3(N,l,a)
// terme de croissance qui apparaît dans le calcul de l'intégrale (vitesse)
y = (k_1*ones(size(N,1),1) ./ (k_2*ones(size(N,1),1) + N)) .* l + (k_5*ones(size(N,1),1) ./ (k_6*ones(size(N,1),1) + N)) .*a ;
endfunction
function y = monod4(N,l,a)
// terme de croissance qui apparaît dans l'équation de diffusion des nutriments
y = ( (k_1 * ones(size(N,1),1) ./ (k_2*ones(size(N,1),1) + N)) .* (l .* (rho_L*ones(size(N,1),1))) ) + ( (k_5*ones(size(N,1),1) ./ (k_6*ones(size(N,1),1) + N)) .* (a .* (rho_A*ones(size(N,1),1))) );
endfunction
function y = trouveDernierNonNul(xx)
i = 1;
while(i <> size(xx,1) & xx($-i+1) == 0 )
i = i+1;
end
y = i;
endfunction
|
6bca15be2cea9dd5d14d53f5c7e98b646de0a0f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3753/CH2/EX2.7/Ex2_7.sce | af2e38a7c18b3070637967716cedce826a1e007b | [] | 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 | 439 | sce | Ex2_7.sce | //Example number 2.7, Page number 2.34
clc;clear;close
// Variable declaration
m=1 // unitless
lamda_l=6000*10**-10 // in m
theta=0.046*(%pi/180) // radian
n=2*10**6// unitless
// Calculation
lamda_s=(m*lamda_l)/(sin(theta)) // in m
v=n*lamda_s // in m/s
// Result
printf("Ultrasonic wavelength,lamda s =%0.2e m",(lamda_s))
printf("\nVelocity of ultrasonic waves in liquid = %0.f ms^-1",v)
// Answer varies due to rounding of numbers
|
5c3bff2b2d13901e474acb4c80b042ddbc3e60cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /542/CH6/EX6.1/Example_6_1.sci | d4d16bbd5e6a2a06bf0d237858819fb11f956d7b | [] | 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 | 797 | sci | Example_6_1.sci | clear;
clc;
printf("\n Example 6.1");
//Calculating minimum fluidisation velocity
//Calculating Galileo number
function[Ga]=Galileo_number()
d = 3*10^(-3); //particle size is in meters
p = 1100; //density of liquid is in kg/m^3
ps = 4200; //density of spherical particles is in kg/m^3
g = 9.81; //acceleration due to gravity is in m/sec^2
u = 3*10^(-3); //viscosity is in Ns/m^2
Ga = d^3*p*(ps-p)*g/u^2;
funcprot(0);
endfunction
Ga = Galileo_number();
printf("\nGalileo number = %f*10^5",Ga*10^(-5));
//Calculating Re mf
Remf = 25.7*(sqrt(1+5.53*10^(-5)*(1.003*10^5))-1);
printf("\nValue of Remf is %d",Remf);
umf = Remf*(3*10^(-3))/(3*10^(-3)*1100);
printf("\nminimum fluidisation velocity is %.1f mm/sec",umf*1000);
|
bea9442e024a3040750e813cd07984571c99600c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH4/EX4.21/ex4_21.sce | 525f77446edd9786e93cb43fec10e9d063015735 | [] | 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 | 477 | sce | ex4_21.sce | // Exa 4.21
clc;
clear;
close;
// Given data
q = 1.6 * 10^-19;// in C
Mu_p = 500;// in cm^2/V-sec
Rho_p = 3.5;// in ohm-cm
Mu_n = 1500;// in cm^2/V-sec
Rho_n = 10;// in ohm-cm
N_A = 1/(Rho_p * Mu_p * q);// in /cm^3
N_D = 1/(Rho_n * Mu_n * q);// in /cm^3
V_J = 0.56;// in V
n_i = 1.5 * 10^10;// in /cm^3
V_T = V_J/log((N_A * N_D)/(n_i)^2);// in V
// V_T = T/11600
T = V_T * 11600;// in K
T = T - 273;// in °C
disp(T,"The Temperature of junction in °C is");
|
c3803449c78acf9fd48bbce2d3e7210ac631466f | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH31/EX31.5/Example31_5.sce | 4fdaa62e6c3f6eabfc16cd3d6cd32ca1964a4d1f | [] | 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 | 526 | sce | Example31_5.sce | //Given that
R = 9.0 //in Ohm
L = 2*10^-3 //in Henery
E = 18 //in Volts
//Sample Problem 31-5a
printf("**Sample Problem 31-5a**\n")
//As soon as switch is closed the inductor will act like current barrier
Io = E/R
printf("The current as soon as qwitch is closed is equal to %1.2fA\n", Io)
//Sample Problem 31-5b
printf("\n**Sample Problem 31-5b**\n")
//After long time inductor will act like short circuit
Req = R/3
If = E/(R/3)
printf("The current through the battery after long time will be %1.2fA", If) |
433d81c39c19e9705daa6a5afd0848c7cf2f4e19 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2282/CH4/EX4.8/ex4_8.sce | 75f1b28a35a11498cb59f8cb10a3f9f426983789 | [] | 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 | 306 | sce | ex4_8.sce | // Example 4.8, page no-153
clear
clc
la=0.5 //length efficiency in azimuth direction
le=0.7 //length efficiency in elevation direction
A=10 // Actual projected area of an antenna
Ae=la*le
Aee=Ae*A
printf("Aperture efficiency = %.2f \n Effective Aperture = %.1f m^2",Ae,Aee)
|
f581e3345a0719cb97a767f1e4b6925ed9d2fa6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH10/EX10.3/ex_3.sce | ddbcb7a0e740cee62967bb38ed542247cdb0f9b5 | [] | 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 | 250 | sce | ex_3.sce | //Example 3 // Velocity and wavelength
clc;
clear;
close;
//given data :
Y=7*10^10;// in N/m^2
p=2.8*10^3;// in kg/m^3
v=sqrt(Y/p);
disp(v,"(1). The velocity,v(m/s) = ")
f=500;// in vibration/sec
lamda=v/f;
disp(lamda,"(2). The wavelength,(m/s) = ")
|
51492d743d88d88c2ba3d41092e4ba9c7e2f72c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH2/EX2.5/Example2_5.sce | 5b5004888c6a517447abe16d5564bf4266890a1c | [] | 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 | Example2_5.sce | clear ;
clc;
// Example 2.5
printf('Example 2.5\n\n');
//Page no. 54
// Solution
m_wt=192 ;//[kg]
d_sol=1.024*1000 ;//[kg/cubic metre]
// 1000L=1 cubic metre
c_sol=d_sol/1000 ;//[kg/L]
c_drug=c_sol*.412 ;//[kg/L]
printf('Concentration of drug in solution is %.3f kg/L .\n',c_drug);
Q=10.5 ;//[L/min]
Qmol=10.5*c_drug/m_wt ;//[kg mol/min]
printf(' Flow rate of drug is %.3f kg mol/min. \n',Qmol); |
fceb952f4e52a18ec3b6f445a67acd053e3286fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2024/CH10/EX10.9/10_9.sce | 3d9f71a5b19d036447d4bae8b632fdc2f78a4530 | [] | 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 | 180 | sce | 10_9.sce | clc
//Initialization of variables
ps=0.64 //psia
p=14.7 //psia
M=29
M2=46
//calculations
xa=ps/p
mb=xa*9/M *M2/(1-xa)
//results
printf("percentage = %d percent",mb*100)
|
8a73f5d2338392ed8e183a46d1567367a00902f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH31/EX31.5/Ex31_5.sce | 3084a88a3a00f7f307701a611c31d96395403b34 | [] | 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 | 565 | sce | Ex31_5.sce | //Example 31.5
N_C12=(6.02*10^23)/12*1000;//Number of carbon nuclei (C-12) in a kg
N_C14=N_C12*(1.3*10^-12);//Number of carbon nuclei (C-14) in a kg
t_half=5730;//Half-life of C-14 (y), See Appendix B
R=0.693*N_C14/t_half;//Activity (y^-1 or decays per year)
R=R*1/(3.16*10^7);//Activity (Bq or decays per second)
printf('\nActivity R = %0.1f Bq',R)
R=R/(3.7*10^10);//Activity (Ci)
printf('\nActivity R = %0.2f nCi',R*10^9)
//Answers vary due to round off error
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
a6c84dc773a309bc7e98177992970179d5f262fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2096/CH1/EX1.68/ex_1_68.sce | 970c0705df88189f2cdc7ec49a132cf6999893cf | [] | 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 | 363 | sce | ex_1_68.sce | //Example 1.68// voltmeter reading
clc;
clear;
close;
//given data :
f1=25; // in Hz
f2=100; // in Hz
R=300; // in ohm
L=0.12; // in H
XL1=2*%pi*f1*L;
V_ac=15; // in volts
Z1=sqrt(R^2+XL1^2);
Vr1=V_ac*(R/Z1);
XL2=2*%pi*f2*L;
Z2=sqrt(R^2+XL2^2);
Vr2=V_ac*(R/Z2)
disp(Vr1,"the voltmeter reading at f1,Vr1(V) = ")
disp(Vr2,"the volt meter reading at f2, Vr1(V) = ")
|
42fc81079b288a380e94bd80cbc5b3a7c5715311 | 5db583d40c20aa406790f7a8c381455186d74544 | /data/local refinement-- new algorithm/1.sce | 62c0ca4653faf543c40a4091eb81a1c11e506843 | [] | no_license | kaiwangntu/kw-phd-thesis | a6e80dab87d04a3f67526a8e597cb8e81a6a3911 | 456da1c5e8a44ef702675cadd90ec9a4f1a33e7f | refs/heads/master | 2021-06-03T18:52:57.236319 | 2013-04-23T01:17:42 | 2013-04-23T01:17:42 | 40,125,552 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 627 | sce | 1.sce | #light position
0.000000 0.000000 1.000000 0.000000
#arball transformation
0.804307 0.147733 0.575663 0.000000 -0.593149 0.138834 0.793109 0.000000 0.037245 -0.979297 0.199280 0.000000 0.000000 0.000000 0.000000 1.000000
#translation parameter
0.170000 0.840000 -2.850000
#viewport
0 0 1152 678
#modelview
0.804307 0.031967 0.593456 0.000000 -0.593149 -0.019404 0.804935 0.000000 0.037245 -0.999361 0.003354 0.000000 0.170000 1.382619 -7.728937 1.000000
#projection
1.420865 0.000000 0.000000 0.000000 0.000000 2.414214 0.000000 0.000000 0.000000 0.000000 -1.000004 -1.000000 0.000000 0.000000 -0.020000 0.000000 |
d5018ce71507dd5994060529f109a3a6061334f9 | a6af5644f4bd8bae3050c4aa8784fc7f67012528 | /mirror.sce | 163aff76042e9edd4c6ca504980c68a788a8eeac | [] | no_license | kalliopiioumpa/mirror | b1a46d4adafbef54f1aa41e8fcf341d2959c3093 | aaa809085991f4f291cbe63c600c0618cadeea8f | refs/heads/master | 2021-01-20T02:46:53.006916 | 2017-04-26T07:35:46 | 2017-04-26T07:35:46 | 89,452,020 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,182 | sce | mirror.sce | ####### INITIATION ####### sce
scenario = "mirror";
pcl_file = "mirrorMAIN.pcl";
active_buttons = 7; # na do o arithmos ton kato
button_codes = 1,2,3,4,5,6,7; # na do WAS BUTTON BOX SPECIFIC
default_background_color = 0, 0, 0;
default_font = "arial";
default_font_size = 20;
default_text_color = 235, 235, 235;
default_text_align = align_left;
begin; # den ksero giati
######## PICTURES ########
picture { } p_Default; #black screen
picture {
text { caption = "+"; font_size = 20; font = "Courier"; }; x = 0; y = 0;
} p_Fixation; # fixation
picture {
text { caption = "Welcome to our experiment!"; } t_Welcome1; x = 0; y = 100;
text { caption = "You will first have 10 Practice Trials"; } t_Welcome3; x = 0; y = 0;
text { caption = "Please press [ENTER] when you are ready to start"; } t_Welcome2; x = 0; y = -100;
} p_Welcome;
picture {
text { caption = "That was the end of the Practice"; } t_Practice1; x = 0; y = 100;
text { caption = "You can now ask any questions you may have!"; } t_Practice3; x = 0; y = 0;
text { caption = "Please press [ENTER] when you are ready to start"; } t_Practice2; x = 0; y = -100;
} p_Practice;
picture {
text { caption = " "; } t_Info1; x = 0; y = 0;
text { caption = " "; } t_Info2; x = 0; y = -40;
text { caption = " "; } t_info3; x = 0; y = -150;
} p_Info;
picture {
text { caption = "Please wait"; } t_Info4; x = 0; y = 0;
} p_wait;
### trial ###
## na dokimaso afto
picture { bitmap { filename = " "; preload = false; width = 1000; scale_factor = scale_to_width; } p_1; x = 0; y = -100; } pic1; # afto prepei na vgei
picture { bitmap { filename = " "; preload = false; width = 1000; scale_factor = scale_to_width; } p_2; x = 0; y = -100; } pic2;
picture { bitmap { filename = " "; preload = false; width = 1000; scale_factor = scale_to_width; } p_3; x = 0; y = -100; } pic3;
#picture { bitmap { filename = "SAMpleasure.png"; } p_S_V; x = 0; y = -300; } p_sam_V;
#picture { bitmap { filename = "SAMarousal.png"; } p_S_A; x = 0; y = -500; } p_sam_A;
trial {
picture pic1; # pos to vriskei
time = 0;
picture pic2; # pos to vriskei
time = 100;
picture pic3; # pos to vriskei
time = 200;
}main_trial;
### apo emotion
#trial {
#picture{
# bitmap p_sti_all; x = 0; y = 150; # allazei thesi?
# } stimuli; deltat = 1000; duration = 6000; # duration of PICTURE PRESENTATION !!
#} main_trial;
#picture{
# bitmap p_sti_all; x = 0; y = 150; # allazei thesi?
# } p_stimuli;
# san digma
#picture {
# bitmap
#{ filename = "1_1.jpg"; # afto prepei na vgei
#width = 800; # 300 pixel width
#scale_factor = scale_to_width; # with same aspect ratio
# } p_sti_all; x = 0; y = 7000; } p_sti_final;
# picture { bitmap { filename = "SAMpleasure.png"; } p_S_V; x = 0; y = -300; } p_sam_V;
#trial { # nomizo pos oxi
#picture{
# bitmap p_sti_all; x = 0; y = 150; # allazei thesi?
# } stimuli; deltat = 1000; duration = 6000; # duration of PICTURE PRESENTATION !!
#} main_trial;
|
060867023fd784f9f35643a8e08023afceac35eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH1/EX1.15/Exa1_15.sce | 7c9706c7a512540aa3e75d19f7d5a7d9931bccdc | [] | 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 | 171 | sce | Exa1_15.sce | //Exa 1.15
clc;
clear;
close;
//Given data
W1=2.5;//in eV
W2=1.9;//in eV
ContactPotential=W1-W2;//in Volt
disp(ContactPotential,"Contact potential in Volts : ");
|
d8fd78491f63aec82cac9be7d31837b2ddf29d9d | 9b0ba679596dc1d35dbf2ac7811c53c9f24dc276 | /miosix-receiving-data/miosix/_tools/feedforward_profiling/plot.sci | 92a66b49fb4b9874877adab3990318aea6ebe759 | [] | no_license | zsfann/walking-running-classification | 2753f4d3d1ccc792702fa4e346a4f9eec6311f13 | 1e4ca0aa3737db35b3a093b54f2bf77e3b1cffc6 | refs/heads/master | 2020-06-20T20:23:32.335385 | 2019-07-16T20:02:02 | 2019-07-16T20:02:02 | 197,235,857 | 2 | 0 | null | 2019-07-16T20:02:03 | 2019-07-16T17:09:02 | C | UTF-8 | Scilab | false | false | 315 | sci | plot.sci |
clear;
off=fscanfMat("off.txt");
on=fscanfMat("on.txt");
reinit=fscanfMat("reinit.txt");
off=off/100;
on=on/100;
reinit=reinit/100;
clf; scf(0);
plot([off,on,reinit]);
title("eTr with round time 8 ms (green=feedforward, red=feedforward+reinit)");
xlabel("rounds");
ylabel("eTr in milliseconds");
|
f8929f5437001b23cb5acada0a69d07fbf280a2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3825/CH7/EX7.5/Ex7_5.sce | de265dff3508fdcec7f92700fa65cabe75e06442 | [] | 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 | 577 | sce | Ex7_5.sce | clc
TL=250
TH=291
COPR=TL/(TH-TL)
mprintf("COPR=%f\n",COPR)//ans vary due to roundoff error
QL=4*10^4
W=QL/COPR
mprintf("W=%fkJ/d\n",W)//ans vary due to roundoff error
CW=200 //compressor work in watts
mprintf("Fraction of time compressor runs=%f\n",W/((CW*3600*24)/1000))//ans vary due to roundoff error
TH=310
COPR=TL/(TH-TL)
mprintf("COPR=%f\n",COPR)//ans vary due to roundoff error
W=QL/COPR
mprintf("W=%fkJ/d\n",W)//ans vary due to roundoff error
mprintf("fraction of time the compressor runs=%f\n",W/((CW*3600*24)/1000))//ans vary due to roundoff error
|
4e066ba10fde7df8aec3ac84b27ec244f9995807 | 449d555969bfd7befe906877abab098c6e63a0e8 | /659/CH5/EX5.4/exm5_4.sce | 0b76d9d9c84c94535bbf59898634499c7cef28f5 | [] | 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 | 540 | sce | exm5_4.sce | // Example 5.4
// The program selects and prints the largest of the three numbers
//using nested if...else statement
disp("Enter three values");
A=input("A=");
B=input("B=");
C=input("C=");
disp("Largest value is:");
if(A>B) , //Test for largest between A&B
if(A>C) , //Test for largest between A&C
disp(A);
else
disp(C);
end
else
if(C>B) , //Test for largest between C&B
disp(C);
else
disp(B);
end
end
|
ed8fbf4d2274679f4fe9f9933c1ff68c7f9aa1a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2330/CH2/EX2.6/ex2_6.sce | 7fd3b4832dc5574b1aaec45ca07793048f6e1f85 | [] | 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 | 505 | sce | ex2_6.sce | // Example 2.6
format('v',6)
clc;
clear;
close;
// given data
Vin= 15;// in V
V_K= 0.7;// in V
Vout=0;// in V
R_L= 10;// in kΩ
R_L= R_L*10^3;// in Ω
// The peak output voltage
V_P= Vin-V_K;// in V
// The maximum forward current
I_P= V_P/R_L;// in A
// The peak inverse voltage
PIV= Vin-Vout;// in V
I_P= I_P*10^3;// in mA
disp(V_P,"The peak output voltage in volts is : ");
disp(I_P,"The maximum forward current in mA is : ");
disp(PIV,"The peak inverse voltage in volts is : ")
|
77361a5358f11dd806b6f5373a4776412d635fa6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2837/CH16/EX16.1/Ex16_1.sce | 2d428e284d87ce3a41a00d3b307336b14a177c27 | [] | 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 | 637 | sce | Ex16_1.sce | clc
clear
//Initalization of variables
cr=9
p1=14 //psia
t1=80+460 //R
n=1.4
heat=800 //Btu
c=0.1715
R=53.35
J=778
//calculations
p2=p1*(cr)^n
t2=t1*cr^(n-1)
t3=heat/c +t2
p3=p2*t3/t2
eff=(1-1/cr^(n-1))*100
t4=t3/cr^(n-1)
Qr=c*(t4-t1)
cyclework=heat-Qr
eff2= cyclework/heat *100
V1=R*t1/(144*p1)
pd=(1-1/cr)*V1
mep=cyclework*J/(pd*144)
//results
printf("Max. temperature = %d R",t3)
printf("\n Max. pressure = %d psia",p3)
printf("\n In method 1,Thermal efficiency = %.1f percent",eff)
printf("\n In method 2,Thermal efficiency = %.1f percent",eff2)
printf("\n Mean effective pressure mep = %.1f psia",mep)
|
1d908f80dca7ddca942ebd59ddc86f998b1f0764 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH5/EX5.6/5_06.sce | 8acd1a7f997976c2bb851494e737141b6f7d8559 | [] | 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 | 356 | sce | 5_06.sce | //Chapter 5, Problem 6, Figure 5.13
clc;
//Potential difference across R1 is the same as the supply voltage V
R1=5;
R3=20;
I=11;
I1=8;
//Hence supply voltage is
V=R1*I1;
I3=V/R3;
//Reading on ammeter,
printf("Reading on ammeter = %f A\n\n\n",I3);
I2=I-I1-I3;
R2=V/I2;
//Current flowing through R2
printf("Resistance R2 = %f ohm\n\n\n",R2);
|
dfcce6a19e86fd9b6c4c2e569baf445a1c35e75f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2267/CH7/EX7.8/ex7_8.sce | e7c1e5a3c0608f47edfac090dfcd0be262342b51 | [] | 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 | 593 | sce | ex7_8.sce | //Part A Chapter 7 Example 8
clc;
clear;
close;
P1=1;//MPa
V1=0.05;//m^3
x1=80/100;//dryness fraction
P2=1;//MPa
V2=0.2;//m^3
W=P1*1000*(V2-V1);//kJ
vf=0.001127;//m^3/kg//at 1 MPa
vg=0.19444;//m^3/kg//at 1 MPa
uf=761.68;//kJ/kg//at 1 MPa
ufg=1822;//kJ/kg//at 1 MPa
vfg=vg-vf;//m^3/kg
v1=vf+x1*vfg;//m^3/kg
ms=V1/v1;//kg(mass of steam)
v2=V2/ms;//m^3/kg
T1=1000;T2=1100;//degree C(as v2>vg(1MPa))
T=T1+(T2-T1)*(v2-0.5871)/(0.6355-0.5871);//degree C
u2=4209.6;//kJ/kg(at 1MPa & T degree C)
u1=uf+x1*ufg;//kJ/kg
Q=W+ms*(u2-u1);//kJ
disp("Heat added is "+string(Q)+" kJ");
|
d4274992f3f1f595d54b287e1c692c146080eaea | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/levin.man.tst | c4927c965bc866c16be71d65017491a6b86f170b | [
"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 | 3,114 | tst | levin.man.tst | clear;lines(0);
//We use the 'levin' macro for solving the normal equations
//on two examples: a one-dimensional and a two-dimensional process.
//We need the covariance sequence of the stochastic process.
//This example may usefully be compared with the results from
//the 'phc' macro (see the corresponding help and example in it)
//
//
//1) A one-dimensional process
// -------------------------
//
//We generate the process defined by two sinusoids (1Hz and 2 Hz)
//in additive Gaussian noise (this is the observed process);
//the simulated process is sampled at 10 Hz (step 0.1 in t, underafter).
//
t1=0:.1:100;rand('normal');
y1=sin(2*%pi*t1)+sin(2*%pi*2*t1);y1=y1+rand(y1);plot(t1,y1);
//
//covariance of y1
//
nlag=128;
c1=corr(y1,nlag);
c1=c1';//c1 needs to be given columnwise (see the section PARAMETERS of this help)
//
//compute the filter for a maximum order of n=10
//la is a list-type variable each element of which
//containing the filters of order ranging from 1 to n; (try varying n)
//in the d-dimensional case this is a matrix polynomial (square, d X d)
//sig gives, the same way, the mean-square error
//
n=15;
[la1,sig1]=levin(n,c1);
//
//verify that the roots of 'la' contain the
//frequency spectrum of the observed process y
//(remember that y is sampled -in our example
//at 10Hz (T=0.1s) so that we need to retrieve
//the original frequencies (1Hz and 2 Hz) through
//the log and correct scaling by the frequency sampling)
//we verify this for each filter order
//
for i=1:n, s1=roots(la1(i));s1=log(s1)/2/%pi/.1;
//
//now we get the estimated poles (sorted, positive ones only !)
//
s1=sort(imag(s1));s1=s1(1:i/2);end;
//
//the last two frequencies are the ones really present in the observed
//process ---> the others are "artifacts" coming from the used model size.
//This is related to the rather difficult problem of order estimation.
//
//2) A 2-dimensional process
// -----------------------
//(4 frequencies 1, 2, 3, and 4 Hz, sampled at 0.1 Hz :
// |y_1| y_1=sin(2*Pi*t)+sin(2*Pi*2*t)+Gaussian noise
// y=| | with :
// |y_2| y_2=sin(2*Pi*3*t)+sin(2*Pi*4*t)+Gaussian noise
//
//
d=2;dt=0.1;
nlag=64;
t2=0:2*%pi*dt:100;
y2=[sin(t2)+sin(2*t2)+rand(t2);sin(3*t2)+sin(4*t2)+rand(t2)];
c2=[];
for j=1:2, for k=1:2, c2=[c2;corr(y2(k,:),y2(j,:),nlag)];end;end;
c2=matrix(c2,2,128);cov=[];
for j=1:64,cov=[cov;c2(:,(j-1)*d+1:j*d)];end;//covar. columnwise
c2=cov;
//
//in the multidimensional case, we have to compute the
//roots of the determinant of the matrix polynomial
//(easy in the 2-dimensional case but tricky if d>=3 !).
//We just do that here for the maximum desired
//filter order (n); mp is the matrix polynomial of degree n
//
[la2,sig2]=levin(n,c2);
mp=la2(n);determinant=mp(1,1)*mp(2,2)-mp(1,2)*mp(2,1);
s2=roots(determinant);s2=log(s2)/2/%pi/0.1;//same trick as above for 1D process
s2=sort(imag(s2));s2=s2(1:d*n/2);//just the positive ones !
//
//There the order estimation problem is seen to be much more difficult !
//many artifacts ! The 4 frequencies are in the estimated spectrum
//but beneath many non relevant others.
//
|
cccc006f25549e956860993688d2554619bd5aca | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH1/EX1.5/1_5.sce | d05258d38f527760f478e81f6575aa4c9936524f | [] | 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 | 152 | sce | 1_5.sce | //1.5
clc;
V=100;
R=10;
i=50*10^-3;
t=-0.5*log(1-((i*R/V)))*10^3
printf("t= %.1f ms", t)
disp('So the minimum width of the gate pulse is 2.5 ms') |
3b5e07d6d3b69df3b40ac7b79aa259587f4c7c2c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2489/CH18/EX18.5/18_5.sce | ba953033d5c93aa1697b732fb0b9ef9c7a0e4918 | [] | 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 | 211 | sce | 18_5.sce | clc
//Intitalisation of variables
clear
T= 556 //K
E= 44300 //cal
R= 2 //cal /mole K
//CALCULATIONS
k= 10^8*T*%e^(-E/(R*T))
//RESULTS
printf ('Specific rate of reaction = %.1e litre mole^-1 sec^-1',k)
|
a070b2e0be6857c7409a75fe39777f7cdcbea8d3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /978/CH5/EX5.6/Example5_6.sce | 2c8acc81ed9ec41eb15bde35dc83b1932c7e35ff | [] | 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 | 356 | sce | Example5_6.sce | //chapter-5,Example5_6,pg 493
Tz=0.6*10^-3//discharge time
Vref=1//ref. voltage
t=4*10^-3//integrator time const.
Vk=((Vref*Tz)/t)//rise in output integrator
printf("rise in integrator output\n")
printf("Vk=%.2f V\n",Vk)
Vi=0.2//input voltage
Tu=Vref*(Tz/Vi)//charging time
printf("charging time\n")
printf("Tu=%.4f sec",Tu) |
8e6ed43393e28ad9b499c992c3d104e271959a06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3532/CH1/EX1.6.2/Ex1_7.sce | fe16f356eb0b99e2ef574c4523f96f18dc2bd615 | [] | 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 | 632 | sce | Ex1_7.sce | clc
clear
mprintf('Mechanical vibrations by G.K.Grover\n Example 1.6.2\n')
//given data
//Z=r*e^(i*theta) is represented as Z=r*cos(theta) + i*r*sin(theta)= x +i*y
//where r*cos(theta)=x and r*sin(theta)=y
//case 1
//V=5*e^(j*0.10)
r1=5
theta1=0.1
x1=r1*cos(theta1)
y1=r1*sin(theta1)
v1=complex(x1,y1)
//case 2
//V=17*e^(-j*3.74)
r2=17
theta2=-3.74
x2=r2*cos(theta2)
y2=r2*sin(theta2)
v2=complex(x2,y2)
//output
mprintf('case(i):V=5*e^(j*0.10) is represented as')
disp(v1)
mprintf('\ncase(ii):V=17*e^(-j*3.74) is represented as')
disp(v2)
mprintf('\nNOTE:complex number is represented as x+y*i in SCILAB')
|
690111db1b7ba86fd40cd1523a19c4ab5c75a57d | 9715cbe7e8e57bb70f628b3bd021842f99fbad75 | /taller/soluciones/interpolacionLagrange.sci | 8a924291fc738b818e0648abc07218c3902fcf4f | [] | no_license | UNIVALLE-EISC/numerical-methods | a3e3f432a6dc54a5ba845789ace2bf39db7ac6fe | 3ea9401e281523e15be0525bfe36e48560caf646 | refs/heads/master | 2021-01-10T15:22:36.080955 | 2018-10-02T21:37:42 | 2018-10-02T21:37:42 | 51,824,833 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 988 | sci | interpolacionLagrange.sci | // Problema 6
//T = [-40 0 20 50];
//d = [1.52 1.29 1.2 1.09];
//density = interpolacionLagrange(T,d,15)
function yint = interpolacionLagrange(x,y,xx)
//Lagrange: Lagrange interpolating polynomial
//yint = Lagrange(x,y,xx): Uses an (n - 1)-order
//Lagrange interpolating polynomial based on n data points
//to determine a value of the dependent variable (yint) at
//a given value of the independent variable, xx.
//input:
//x = independent variable
//y = dependent variable
//xx = value of independent variable at which the
//interpolation is calculated
//output:
//yint = interpolated value of dependent variable
n = length(x);
if length(y)~=n then
yint = %nan;
//error('x and y must be same length');
else
s = 0;
for i = 1:n
product = y(i);
for j = 1:n
if i ~= j
product = product*(xx-x(j))/(x(i)-x(j));
end
end
s = s+product;
end
yint = s;
end
endfunction |
3fa02b04c5d2d08084a1b50a49b77d2e7768846d | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH11/EX11.18/Example11_18.sce | 90c1447ea61cd8044cc58e239ce86f9a7e45ff62 | [] | 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 | 425 | sce | Example11_18.sce | //Example 11.18
clear;
clc;
VI=5;
Vo=12;
Io=1;
fs=100*10^3;
IL=(Vo/VI)*Io;
deliL=0.2*IL;
L=(VI*(1-(VI/Vo)))/(fs*deliL);
Ip=IL+(deliL/2);
Irms=[(IL^2)+((deliL/(sqrt(12)))^2)]^(1/2);
Iomin=deliL/2;
printf("L=%.f uH",L*10^6);
printf("\nAt full load the coil must withstand Ip=%.2f A",Ip);
printf(" and Irms=%.1f A",Irms);
printf("\nMinimum Load Current (Iomin)=%.1f A",Iomin-0.1); |
e59381f1e622348f06efeeb6a4f54db91c0604f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3819/CH2/EX2.12/Ex2_12.sce | c3e09bab6638f072511dfdc86aa3d4f4203d1922 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 667 | sce | Ex2_12.sce | // A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 2 - Pressure and its measurements
// Problem 2.12
//Given Data Set in the Problem
h2=20/100
SG2=13.6
SG1=1
dens1=1000
dens2=13.6*dens1
g=9.81
//Calculations
//equating pressure above the datum line;
function [f]=F(h1)
f=(dens2*g*h2)-(dens1*g*h1)
endfunction
h1=10;
H1=fsolve(h1,F)
//When vessel is completely filled with wter;
//Equating pressure in the two limbs
function [g]=G(y)
g=(dens2*g*(0.2+2*y/100))-(dens1*g*(3+H1+y/100))
endfunction
y=10;
Y=fsolve(y,G)
mprintf("The difference in the mercury level in the two limbs is %f cm\n",(20+2*Y))
|
333725aad17e196a902ae5c88228f8e66428e936 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/m2sci/sci_load.sci | 953b7afee7765897b1b21dbcadbf048d682fe601 | [
"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 | 252 | sci | sci_load.sci | function [stk,txt,top]=sci_load()
// Copyright INRIA
txt=[]
if rhs<=0 then
stk=list('load(''scilab.save'')','0','0','0','0')
return
end
args=[]
for k=1:rhs
args=[args,stk(top-rhs+k)(1)]
end
stk=list('mtlb_load'+rhsargs(args),'0','0','0','0')
|
29e4f7575b3ae321d01ec4b6fc550f04ef5c8796 | 717ddeb7e700373742c617a95e25a2376565112c | /72/CH6/EX6.4.2/6_4_2.sce | 021a948f369bd38fd77478b7955a60a20dcd5be7 | [] | 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 | 914 | sce | 6_4_2.sce | //CAPTION: Characteristics_Of_a_MOSFET
//chapter_no.-6, page_no.-262
//Example_no.6-4-2
clc;
//(a)Calculate_the_insulation_capacitance
eir=3.9;
ei=8.854*(10^-12)*eir;
d=.05*(10^-6);
Ci=ei/d;
disp(Ci,'the_insulation_capacitance(in F/m^2)');
//(b)Calculate_the_saturation_drain_current
Z=12*(10^-12);
Vg=5;
Vth=.10;
vs=1.70*(10^7);
Idsat=Z*Ci*(Vg-Vth)*vs;
Idsat=Idsat*10^7;
disp(Idsat,'the_saturation_drain_current(in mA)');
//(c)Calculate_the_transconductance_in_the_saturation region
Z=12*(10^-12);
vs=1.70*(10^7);
gmsat=Z*Ci*vs;
gmsat=gmsat*10^7;
disp(gmsat,'the_transconductance_in_the_saturation region(in_millimhos)');
//(d)Calculate_the_maximum_operating_frequency_in_the_saturation_region
vs=1.70*(10^7);
L=4*(10^-6);
fm=vs/(2*%pi*L);
fm=fm/(10^2);
fm=fm/(10^9);
disp(fm,'the_maximum_operating_frequency_in_the_saturation_region(in GHz)');
|
bf0f58ff116b1adee76a998ec4d0ea94ae31d797 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1865/CH3/EX3.2/prob_2.sce | 34deb6a318bf562a35d790071cbb2b85f1f69a11 | [] | 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 | 344 | sce | prob_2.sce |
//Problem 2
//Calculate the maximum speed of electron striking the anti-cathode
clear
clc
V=18// Potential difference in kV
e=1.6*10^(-19)//charge on an electron in C
m=9.1*10^(-31)//mass of an electron in kg
v=(2*e*V/m)^(0.5)//maximum speed of electron in m/s
printf('maximum speed of electron striking the anti-cathode = %.1f m/s',v) |
0fd4fd8c77dbe245cab8b76afde46b432a4989f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /761/CH5/EX5.8/5_8.sce | adb55676deff6f82410fec2950da6ea382d59e1f | [] | 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 | 5_8.sce | clc;
//page no 199
//prob no. 5.8
//LSB transmitter refering fig.5.14 with new carrier freq 9.0015 MHz & local oscillator freq 12.5015MHz
fco=9.0015;//carrier oscillator freq
flo=12.5015;//local oscillator freq
//Determination of new o/p freq
fo=fco+flo;
disp('MHz',fo,'The o/p carrier freq'); |
98fc0f7bb5f73f539d55791ff917b770c1df3d54 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2582/CH6/EX6.8/Ex6_8.sce | 66642eb834a9f1b59aed0964b834a9d5d5a5a341 | [] | 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 | 386 | sce | Ex6_8.sce | //Ex 6.8
clc;clear;close;
format('v',5);
n=8;//no. of bits
Range=0:10;//V
Vin=5.2;//V
oneLSB=max(Range)/2^n;//V
disp(oneLSB*1000,"(a) Minimum voltage for 1 LSB in mV");
Vifs=max(Range)-oneLSB;//V
disp(Vifs,"(b) For all ones input voltage should be (V)");
D=Vin/oneLSB;//Digital output in decimal
D=dec2bin(round(D));//Digital output in binary
disp(D,"(c) Digital Output");
|
265eb5f72849d5f3caa78a79b6e6cd83096e0753 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH7/EX7.3/Ex7_3.sce | 0ac30db9f523a73d5df9e6d38da3ac03f4be4d72 | [] | 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 | 360 | sce | Ex7_3.sce | //Example number 7.3, Page number 147
clc;clear;
close;
//Variable declaration
epsilonr=1.0000684; //dielectric constant
N=2.7*10**25; //number of atoms
epsilon0=8.85*10**-12;
//Calculation
alpha_e=epsilon0*(epsilonr-1)/N; //polarisability(Fm**2)
//Result
printf("polarisability is %.3e Fm^2",alpha_e)
//answer varies due to rounding off errors
|
47bca62abc13cc847668e84de525a74eef8f4213 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/SURPRISE-LANGUAGES/Niger-Congo/sna.tst | d88487864a02318a06f96bf41ffab2e3a8eda1fb | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 9,270 | tst | sna.tst | kunda V;PL;2;FUT
kunda V;PROG;PL;1;PRS
kunda V;SG;2;HOD
kunda V;SG;1;PST
kunda V;PL;1;PRS
kunda V;PL;1;FUT
kunda V;SG;3;PRS
kunda V;SG;2;FUT
kunda V;PROG;SG;1;PRS
kunda V;PROG;SG;2;PRS
kunda V;SG;3;PST
kunda V;SG;1;PRS
kunda V;PL;2;PRS
kunda V;SG;2;PRS
kunda V;SG;2;PST
kunda V;PROG;PL;3;PRS
kunda V;SG;3;HOD
kunda V;PL;3;HOD
kunda V;SG;1;FUT
kunda V;PL;2;PST
kunda V;SG;3;FUT
kunda V;PROG;SG;3;PRS
kunda V;PL;1;HOD
kunda V;PL;3;PRS
kunda V;PL;1;PST
kunda V;PL;3;FUT
kunda V;SG;1;HOD
kunda V;PL;2;HOD
kunda V;PL;3;PST
kunda V;PROG;PL;2;PRS
bvuma V;PL;2;FUT
bvuma V;SG;1;FUT
bvuma V;SG;3;PRS
bvuma V;PL;1;PRS
bvuma V;PL;3;PST
bvuma V;SG;1;PST
bvuma V;PL;1;PST
bvuma V;SG;2;FUT
bvuma V;SG;2;PRS
bvuma V;SG;3;PST
bvuma V;PL;2;HOD
bvuma V;SG;1;PRS
bvuma V;PL;2;PST
bvuma V;PL;3;HOD
bvuma V;PROG;SG;2;PRS
bvuma V;PROG;SG;3;PRS
bvuma V;PL;1;FUT
bvuma V;SG;3;FUT
bvuma V;PROG;PL;3;PRS
bvuma V;SG;3;HOD
bvuma V;PL;2;PRS
bvuma V;SG;1;HOD
bvuma V;SG;2;PST
bvuma V;PL;3;FUT
bvuma V;PROG;PL;1;PRS
bvuma V;PROG;SG;1;PRS
bvuma V;PL;1;HOD
bvuma V;SG;2;HOD
bvuma V;PL;3;PRS
bvuma V;PROG;PL;2;PRS
dzidzisa V;PL;3;HOD
dzidzisa V;PROG;SG;1;PRS
dzidzisa V;PL;3;FUT
dzidzisa V;PL;3;PRS
dzidzisa V;SG;3;HOD
dzidzisa V;SG;3;PRS
dzidzisa V;SG;1;PRS
dzidzisa V;SG;1;FUT
dzidzisa V;PL;2;PRS
dzidzisa V;PL;3;PST
dzidzisa V;SG;1;PST
dzidzisa V;SG;2;PST
dzidzisa V;PL;2;HOD
dzidzisa V;PL;1;PRS
dzidzisa V;PL;1;HOD
dzidzisa V;PROG;PL;3;PRS
dzidzisa V;SG;2;PRS
dzidzisa V;PL;2;PST
dzidzisa V;PL;1;FUT
dzidzisa V;PROG;PL;2;PRS
dzidzisa V;PROG;SG;2;PRS
dzidzisa V;PL;2;FUT
dzidzisa V;SG;3;FUT
dzidzisa V;PROG;SG;3;PRS
dzidzisa V;SG;1;HOD
dzidzisa V;PL;1;PST
dzidzisa V;PROG;PL;1;PRS
dzidzisa V;SG;2;HOD
dzidzisa V;SG;3;PST
dzidzisa V;SG;2;FUT
koka V;PROG;SG;1;PRS
koka V;SG;3;PRS
koka V;PL;1;HOD
koka V;SG;2;PRS
koka V;SG;3;HOD
koka V;PL;2;FUT
koka V;PROG;PL;1;PRS
koka V;SG;2;HOD
koka V;PL;3;PST
koka V;SG;2;PST
koka V;SG;1;FUT
koka V;PL;2;PST
koka V;PL;2;HOD
koka V;PL;3;PRS
koka V;PL;3;HOD
koka V;PL;1;FUT
koka V;PL;1;PST
koka V;PROG;SG;2;PRS
koka V;PL;2;PRS
koka V;SG;3;PST
koka V;PROG;SG;3;PRS
koka V;SG;1;PST
koka V;PL;3;FUT
koka V;SG;3;FUT
koka V;SG;1;HOD
koka V;SG;1;PRS
koka V;PROG;PL;3;PRS
koka V;PL;1;PRS
koka V;PROG;PL;2;PRS
koka V;SG;2;FUT
ipa V;PL;2;FUT
ipa V;PL;2;PRS
ipa V;PL;1;HOD
ipa V;PL;1;PST
ipa V;PL;1;PRS
ipa V;SG;3;HOD
ipa V;PROG;PL;1;PRS
ipa V;PL;3;PST
ipa V;PROG;SG;2;PRS
ipa V;PL;1;FUT
ipa V;SG;3;FUT
ipa V;PROG;SG;3;PRS
ipa V;PL;2;HOD
ipa V;PROG;PL;3;PRS
ipa V;SG;1;PST
ipa V;PROG;SG;1;PRS
ipa V;SG;1;FUT
ipa V;SG;2;PRS
ipa V;PL;2;PST
ipa V;SG;3;PRS
ipa V;SG;2;FUT
ipa V;SG;2;PST
ipa V;PROG;PL;2;PRS
ipa V;PL;3;FUT
ipa V;SG;1;HOD
ipa V;PL;3;HOD
ipa V;SG;2;HOD
ipa V;PL;3;PRS
ipa V;SG;3;PST
ipa V;SG;1;PRS
ita V;PROG;SG;3;PRS
ita V;SG;1;PRS
ita V;PL;2;PST
ita V;PL;1;FUT
ita V;PROG;SG;1;PRS
ita V;PL;3;PRS
ita V;PL;1;PST
ita V;PL;3;HOD
ita V;SG;1;PST
ita V;PROG;PL;1;PRS
ita V;SG;1;FUT
ita V;PROG;PL;3;PRS
ita V;PL;1;PRS
ita V;PL;2;PRS
ita V;PROG;SG;2;PRS
ita V;SG;1;HOD
ita V;SG;3;HOD
ita V;SG;2;PRS
ita V;SG;3;FUT
ita V;SG;2;PST
ita V;SG;2;FUT
ita V;SG;3;PST
ita V;PL;3;FUT
ita V;PL;2;HOD
ita V;PL;2;FUT
ita V;SG;3;PRS
ita V;SG;2;HOD
ita V;PL;1;HOD
ita V;PL;3;PST
ita V;PROG;PL;2;PRS
gamuchira V;SG;2;HOD
gamuchira V;SG;1;HOD
gamuchira V;SG;1;PRS
gamuchira V;SG;2;PRS
gamuchira V;PL;3;FUT
gamuchira V;PL;3;HOD
gamuchira V;PL;1;FUT
gamuchira V;PROG;PL;2;PRS
gamuchira V;PL;1;HOD
gamuchira V;SG;3;HOD
gamuchira V;PL;1;PRS
gamuchira V;PROG;SG;3;PRS
gamuchira V;PL;2;PRS
gamuchira V;PL;2;PST
gamuchira V;SG;3;FUT
gamuchira V;SG;3;PRS
gamuchira V;PL;3;PRS
gamuchira V;SG;1;FUT
gamuchira V;PROG;SG;2;PRS
gamuchira V;PROG;SG;1;PRS
gamuchira V;PROG;PL;1;PRS
gamuchira V;PL;3;PST
gamuchira V;PL;2;FUT
gamuchira V;SG;3;PST
gamuchira V;SG;2;FUT
gamuchira V;PL;2;HOD
gamuchira V;PROG;PL;3;PRS
gamuchira V;SG;2;PST
gamuchira V;SG;1;PST
gamuchira V;PL;1;PST
irwa V;PROG;PL;3;PRS
irwa V;PL;3;PRS
irwa V;PL;1;FUT
irwa V;PL;1;PRS
irwa V;PL;1;HOD
irwa V;SG;2;HOD
irwa V;SG;1;HOD
irwa V;PL;3;FUT
irwa V;PL;2;HOD
irwa V;PL;2;PST
irwa V;PL;3;PST
irwa V;PROG;PL;2;PRS
irwa V;PROG;PL;1;PRS
irwa V;SG;3;FUT
irwa V;SG;2;PRS
irwa V;SG;3;PST
irwa V;PROG;SG;1;PRS
irwa V;SG;1;PST
irwa V;SG;2;FUT
irwa V;PL;1;PST
irwa V;SG;1;FUT
irwa V;SG;2;PST
irwa V;PL;3;HOD
irwa V;PL;2;PRS
irwa V;SG;3;PRS
irwa V;PROG;SG;2;PRS
irwa V;SG;1;PRS
irwa V;PL;2;FUT
irwa V;SG;3;HOD
irwa V;PROG;SG;3;PRS
tyaira V;SG;3;PST
tyaira V;SG;3;PRS
tyaira V;PROG;SG;2;PRS
tyaira V;PL;3;FUT
tyaira V;PROG;PL;2;PRS
tyaira V;PROG;SG;1;PRS
tyaira V;PROG;PL;3;PRS
tyaira V;PL;2;PRS
tyaira V;PL;2;PST
tyaira V;SG;3;FUT
tyaira V;PL;2;HOD
tyaira V;SG;3;HOD
tyaira V;PROG;SG;3;PRS
tyaira V;PL;3;PRS
tyaira V;SG;2;HOD
tyaira V;SG;1;PST
tyaira V;PL;1;FUT
tyaira V;SG;2;FUT
tyaira V;SG;1;FUT
tyaira V;PL;1;PRS
tyaira V;PROG;PL;1;PRS
tyaira V;PL;1;PST
tyaira V;PL;3;HOD
tyaira V;SG;2;PST
tyaira V;PL;3;PST
tyaira V;SG;1;PRS
tyaira V;PL;2;FUT
tyaira V;PL;1;HOD
tyaira V;SG;1;HOD
tyaira V;SG;2;PRS
rasa V;SG;3;PRS
rasa V;PROG;PL;1;PRS
rasa V;SG;1;HOD
rasa V;PL;3;PST
rasa V;SG;1;PRS
rasa V;PL;3;HOD
rasa V;SG;3;FUT
rasa V;PL;1;FUT
rasa V;SG;3;PST
rasa V;PL;2;PRS
rasa V;SG;1;PST
rasa V;SG;2;PRS
rasa V;SG;3;HOD
rasa V;PROG;PL;3;PRS
rasa V;PL;2;HOD
rasa V;PL;1;PRS
rasa V;PROG;PL;2;PRS
rasa V;SG;2;HOD
rasa V;SG;2;PST
rasa V;PL;1;PST
rasa V;PL;3;PRS
rasa V;SG;2;FUT
rasa V;PL;2;PST
rasa V;PROG;SG;2;PRS
rasa V;PROG;SG;3;PRS
rasa V;PL;1;HOD
rasa V;PL;3;FUT
rasa V;PROG;SG;1;PRS
rasa V;SG;1;FUT
rasa V;PL;2;FUT
dzokorora V;SG;2;PRS
dzokorora V;PROG;PL;3;PRS
dzokorora V;PROG;SG;2;PRS
dzokorora V;PL;2;FUT
dzokorora V;SG;1;PST
dzokorora V;PL;1;FUT
dzokorora V;PL;2;HOD
dzokorora V;SG;3;FUT
dzokorora V;SG;1;FUT
dzokorora V;SG;3;HOD
dzokorora V;PROG;SG;3;PRS
dzokorora V;PROG;PL;2;PRS
dzokorora V;SG;3;PRS
dzokorora V;SG;2;HOD
dzokorora V;PL;1;PST
dzokorora V;PL;1;HOD
dzokorora V;SG;2;PST
dzokorora V;SG;1;HOD
dzokorora V;SG;3;PST
dzokorora V;PL;3;HOD
dzokorora V;SG;2;FUT
dzokorora V;PL;3;FUT
dzokorora V;PL;3;PRS
dzokorora V;PL;2;PST
dzokorora V;PL;1;PRS
dzokorora V;PL;3;PST
dzokorora V;PL;2;PRS
dzokorora V;PROG;SG;1;PRS
dzokorora V;SG;1;PRS
dzokorora V;PROG;PL;1;PRS
sekerera V;PROG;PL;2;PRS
sekerera V;SG;3;PST
sekerera V;PL;1;FUT
sekerera V;PL;1;HOD
sekerera V;SG;2;HOD
sekerera V;SG;3;FUT
sekerera V;PROG;PL;1;PRS
sekerera V;PROG;PL;3;PRS
sekerera V;PL;2;FUT
sekerera V;SG;3;HOD
sekerera V;SG;2;PST
sekerera V;PL;3;HOD
sekerera V;PL;1;PST
sekerera V;SG;1;HOD
sekerera V;PL;2;HOD
sekerera V;PL;3;PST
sekerera V;SG;1;PST
sekerera V;PL;2;PST
sekerera V;PL;3;PRS
sekerera V;PROG;SG;2;PRS
sekerera V;SG;1;PRS
sekerera V;PL;2;PRS
sekerera V;SG;1;FUT
sekerera V;SG;2;PRS
sekerera V;SG;2;FUT
sekerera V;PL;3;FUT
sekerera V;PROG;SG;3;PRS
sekerera V;PL;1;PRS
sekerera V;PROG;SG;1;PRS
sekerera V;SG;3;PRS
famba V;PL;3;HOD
famba V;PL;1;FUT
famba V;SG;3;PST
famba V;PL;2;PST
famba V;SG;3;HOD
famba V;SG;2;PRS
famba V;SG;1;HOD
famba V;PROG;PL;1;PRS
famba V;PL;3;PRS
famba V;SG;2;PST
famba V;SG;1;FUT
famba V;PL;2;PRS
famba V;PROG;PL;3;PRS
famba V;PROG;SG;3;PRS
famba V;PL;1;PRS
famba V;PROG;SG;2;PRS
famba V;SG;3;FUT
famba V;PL;1;HOD
famba V;SG;2;FUT
famba V;PL;2;HOD
famba V;PL;3;PST
famba V;PROG;SG;1;PRS
famba V;SG;2;HOD
famba V;PL;1;PST
famba V;PL;3;FUT
famba V;PL;2;FUT
famba V;SG;1;PST
famba V;PROG;PL;2;PRS
famba V;SG;1;PRS
famba V;SG;3;PRS
ida V;SG;2;HOD
ida V;PL;2;PST
ida V;PL;3;FUT
ida V;PL;2;PRS
ida V;PL;3;PST
ida V;PL;1;PRS
ida V;SG;1;FUT
ida V;PROG;PL;3;PRS
ida V;SG;2;PST
ida V;PL;1;FUT
ida V;PROG;PL;1;PRS
ida V;PL;1;PST
ida V;SG;1;HOD
ida V;SG;3;PRS
ida V;PROG;SG;3;PRS
ida V;PROG;SG;2;PRS
ida V;SG;1;PRS
ida V;SG;3;PST
ida V;PL;3;HOD
ida V;PROG;SG;1;PRS
ida V;SG;3;FUT
ida V;PL;2;HOD
ida V;SG;2;PRS
ida V;SG;3;HOD
ida V;PROG;PL;2;PRS
ida V;SG;1;PST
ida V;PL;3;PRS
ida V;SG;2;FUT
ida V;PL;2;FUT
ida V;PL;1;HOD
bika V;PROG;PL;2;PRS
bika V;SG;1;HOD
bika V;PROG;PL;1;PRS
bika V;PROG;SG;1;PRS
bika V;PL;3;HOD
bika V;PL;3;FUT
bika V;SG;2;PST
bika V;SG;3;HOD
bika V;PL;2;PRS
bika V;SG;3;PST
bika V;PL;3;PRS
bika V;PL;1;PST
bika V;SG;1;PRS
bika V;SG;1;FUT
bika V;SG;3;PRS
bika V;SG;1;PST
bika V;PL;1;HOD
bika V;PL;3;PST
bika V;PL;1;PRS
bika V;SG;2;HOD
bika V;PL;2;HOD
bika V;SG;2;FUT
bika V;SG;2;PRS
bika V;PL;2;FUT
bika V;PROG;SG;2;PRS
bika V;SG;3;FUT
bika V;PL;2;PST
bika V;PL;1;FUT
bika V;PROG;SG;3;PRS
bika V;PROG;PL;3;PRS
bata V;SG;1;HOD
bata V;PL;3;PRS
bata V;SG;1;FUT
bata V;PROG;SG;3;PRS
bata V;PL;3;PST
bata V;SG;3;PST
bata V;PROG;PL;1;PRS
bata V;PL;2;HOD
bata V;PROG;PL;3;PRS
bata V;SG;2;PST
bata V;PROG;PL;2;PRS
bata V;PROG;SG;1;PRS
bata V;PL;1;PST
bata V;SG;2;HOD
bata V;SG;3;FUT
bata V;SG;2;PRS
bata V;PL;3;HOD
bata V;SG;3;HOD
bata V;PROG;SG;2;PRS
bata V;SG;1;PRS
bata V;PL;2;PST
bata V;PL;1;PRS
bata V;PL;3;FUT
bata V;PL;1;FUT
bata V;SG;2;FUT
bata V;PL;2;FUT
bata V;PL;2;PRS
bata V;PL;1;HOD
bata V;SG;3;PRS
bata V;SG;1;PST
kuva V;SG;3;PRS
kuva V;PROG;PL;3;PRS
kuva V;SG;2;PRS
kuva V;PROG;PL;1;PRS
kuva V;PL;3;HOD
kuva V;SG;2;FUT
kuva V;PL;3;PST
kuva V;SG;1;HOD
kuva V;PL;1;HOD
kuva V;PROG;SG;3;PRS
kuva V;PL;2;PST
kuva V;PROG;SG;2;PRS
kuva V;PL;3;FUT
kuva V;PL;1;FUT
kuva V;SG;3;HOD
kuva V;PL;1;PST
kuva V;SG;2;HOD
kuva V;PROG;SG;1;PRS
kuva V;SG;1;FUT
kuva V;SG;3;PST
kuva V;PL;2;FUT
kuva V;PL;3;PRS
kuva V;SG;2;PST
kuva V;SG;3;FUT
kuva V;PL;2;HOD
kuva V;SG;1;PRS
kuva V;PL;2;PRS
kuva V;PROG;PL;2;PRS
kuva V;PL;1;PRS
kuva V;SG;1;PST
|
6494a1e08bd745698d1fc4a0855209b45e7c8acf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH5/EX5.15/example5_15.sce | 82868314ae1a92dd4963bc444353628956723707 | [] | 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 | 917 | sce | example5_15.sce | //example 5.15
//calculate formation constant of acquifer using Chow's method
clc;funcprot(0);
//given
Q=2500; //discharge(l/min)
r=60; //distance of observation well from acquifer
tmin=[1 1.5 2 2.5 3 4 5 6 8 10 12 14 18 24 30 40 50 60 80 100 120 150 180 210 240]; //time in minutes
s=[0.2 0.26 0.3 0.33 0.36 0.41 0.45 0.48 0.53 0.56 0.59 0.62 0.66 0.71 0.75 0.80 0.83 0.86 0.91 0.95 0.98 1.03 1.05 1.08 1.10]; //drawdown
for i=1:25
tday(i)=tmin(i)/(60*24);
end
//graph is plotted between s and t
//point P is choosen on it whose ordinate is:
s1=0.45;
t=0.00347;
ds=0.38; //for one log cycle of time
Fu=s1/ds;
//from fig 5.43
//or using relation
Wu=2.303*Fu;
u=0.035; //from table 5.2
Q=3600; //discharge in cumec/day
T=Q*Wu/(4*%pi*s1);
S=4*u*t*T/r^2;
mprintf("formation constant of acquifer:");
mprintf("\nT=%i cubic metre/day/m.\nS=%f.",T,S);
|
0c4c5df861fba811d4fb5ae63fb6060c26ef7185 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH23/EX23.6/Ex23_6.sce | 650ab498a05b1124d14fa07bc0e344dfe1710c50 | [] | 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 | 353 | sce | Ex23_6.sce | clc
a = 8000 // annual requirement of parts
c = 60 // unit cost of part in Rs
r = 150 // ordering cost per lot in Rs
i = 30 // annual carrying charges of average inventory
i = 30/100
k = i*c // carrying cost per unit per year
n = sqrt(2*r*a/k) // most economical order quantity
printf("\n Most economical ordering quantity = %d units" , n)
|
43bc59434c585415ee5473342cb6d892d570da8f | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/xdess/hotcolormap.sci | 7889c99880c3a6d0944fb4a8220cf96136f59388 | [
"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 | 357 | sci | hotcolormap.sci | function cmap = hotcolormap(n)
//graycmap yellow to red color map.
// Copyright INRIA
if size(n,'*')<>1|or(n<3) then
error('hotcolormap : n must be an integer greater than 3')
end
n1=fix(3/8*n);
n2=n1
n3=n-(n1+n2)
//
cmap=[(1:n1)'/n1 zeros(n1,1) zeros(n1,1);
ones(n2,1) (1:n2)'/n2 zeros(n2,1);
ones(n3,1) ones(n3,1) (1:n3)'/(n3)]
|
fd3d5c38adeef3b172b16a19a2da29e188c5ecea | ebd6f68d47e192da7f81c528312358cfe8052c8d | /swig/Examples/test-suite/scilab/li_std_deque_runme.sci | 0903db4ae650f60ee2c1a6057380253e2189c0f8 | [
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only",
"Apache-2.0"
] | permissive | inishchith/DeepSpeech | 965ad34d69eb4d150ddf996d30d02a1b29c97d25 | dcb7c716bc794d7690d96ed40179ed1996968a41 | refs/heads/master | 2021-01-16T16:16:05.282278 | 2020-05-19T08:00:33 | 2020-05-19T08:00:33 | 243,180,319 | 1 | 0 | Apache-2.0 | 2020-02-26T05:54:51 | 2020-02-26T05:54:50 | null | UTF-8 | Scilab | false | false | 1,466 | sci | li_std_deque_runme.sci | exec("swigtest.start", -1);
// Test constructors for std::deque<int>
intDeque = new_IntDeque();
intDeque2 = new_IntDeque(3);
intDeque3 = new_IntDeque(4, 42);
//intDeque4 = new_IntDeque(intDeque3);
// Test constructors for std::deque<double>
doubleDeque = new_DoubleDeque();
doubleDeque2 = new_DoubleDeque(3);
doubleDeque3 = new_DoubleDeque(4, 42.0);
//doubleDeque4 = new_DoubleDeque(doubleDeque3);
// Test constructors for std::deque<Real>
realDeque = new_RealDeque();
realDeque2 = new_RealDeque(3);
realDeque3 = new_RealDeque(4, 42.0);
//realDeque4 = new_RealDeque(realDeque3);
// average() should return the average of all values in a std::deque<int>
IntDeque_push_back(intDeque, 2);
IntDeque_push_back(intDeque, 4);
IntDeque_push_back(intDeque, 6);
avg = average(intDeque);
checkequal(avg, 4.0, "average(intDeque)");
// half should return a deque with elements half of the input elements
RealDeque_clear(realDeque);
RealDeque_push_front(realDeque, 2.0);
RealDeque_push_front(realDeque, 4.0);
halfDeque = half(realDeque);
checkequal(halfDeque, [2., 1.], "half(realDeque)");
// same for halve_in_place
//DoubleDeque_clear(doubleDeque);
//DoubleDeque_push_front(doubleDeque, 2.0);
//DoubleDeque_push_front(doubleDeque, 4.0);
//halfDeque2 = halve_in_place(doubleDeque);
//checkequal(halfDeque2, [2., 1.], "halve_in_place(doubleDeque)");
delete_IntDeque(intDeque);
delete_DoubleDeque(doubleDeque);
delete_RealDeque(realDeque);
exec("swigtest.quit", -1);
|
d12a699280d4644905a6c952ecd0769f3ee32c5c | 449d555969bfd7befe906877abab098c6e63a0e8 | /53/CH9/EX9.1/example_1.sce | 66163481bc4a940a22e3560adfcf17709c8804df | [] | 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 | 968 | sce | example_1.sce | //caption:Design of phase shifter
//example9.1
disp("Given frequency fo=10 KHz,Vrms=5 V,phi=10 degrees\n");
disp("Taking A=C3*R4\n");
phi=10;//in degrees
fo=1000;//in Hz
disp("phi=180-2(atan(2*%pi*f*A))");
A=tan((180-10)*%pi/(180*2))/(2*fo*%pi);
printf("Therefore A=C3*R4=%f sec.\n",A);
R4=10000;//let (in ohms)
printf("C3 and R4 values are selected such that their product equals or greater than %f, The above values are preferable for low cost and bias compensation",A);
C3=A/R4;
printf("\nC3=%f uF",C3*10^6);
disp("To lower the cost of design,the preferred value is C31=0.22uF");
C31=0.22;//let Such that C31>C3
disp("since,C31*R4>A,C31 can be preferred")
printf("Similarly, R1 and R2 values should be of Good matching to obtain accurate unity gain modulus ");
printf("RESULTS:\n");
printf("(i)Resistors, R1=R2=10Kohms\n");
printf("(iii)R4=%d Kohms\n",R4/1000);//divided by 1000 to display in Kohms
printf("(iii)Capacitor, C3=%1.2f uF\n",C31);
|
bd3d63833c4df58e186965ecacace68f1d799a04 | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/Scripts/StereoPictures/_StereoPicTools.SCI | bcb31c0d231e9aba336e45dcc191650a385d8012 | [
"LicenseRef-scancode-khronos",
"MIT"
] | permissive | pvaut/Z-Flux | 870e254bf340047ed2a52d888bc6f5e09357a8a0 | 096d53d45237fb22f58304b82b1a90659ae7f6af | refs/heads/master | 2023-06-28T08:24:56.526409 | 2023-03-01T12:44:08 | 2023-03-01T12:44:08 | 7,296,248 | 1 | 1 | null | 2023-06-13T13:04:58 | 2012-12-23T15:40:26 | C | UTF-8 | Scilab | false | false | 739 | sci | _StereoPicTools.SCI | function GetPicInfo(currentfolder,picname)
{
rs=Map;
rs.tpe='side';
rs.col=color(1,1,1);
filecontent='';
if FileIsPresent(currentfolder+"\"+picname+".txt") then
filecontent=readtextfile(currentfolder+"\"+picname+".txt");
if filecontent.length==0 then
if FileIsPresent(currentfolder+"\_settings.txt") then
filecontent=readtextfile(currentfolder+"\_settings.txt");
if filecontent.length>0 then {
while filecontent.length>0 do {
line=filecontent.split("~n");
id=line.split('=');
if id=='TYPE' then rs.tpe=line;
if id=='COLOR' then rs.col=color(ToScalar(line.split(',')),ToScalar(line.split(',')),ToScalar(line.split(',')));
}
}
return(rs);
}
|
93df284b1d246aa1238b357d3c881dcaa0e72e21 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1409/CH8/EX8.23.2/8_23_ii.sce | 737981c824845960f2c8e3b23e0526da2c71676e | [] | 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 | 381 | sce | 8_23_ii.sce | clc;
//page no 8-62
//Example 8.23_ii
//To calculate fi such that alpha at 30MHz is 44.9 dB or 176.48
alpha=176.48;
Q=125;
rho=sqrt((alpha^2-1)/Q^2)
disp(rho,'rho=');
//rho=(fsi'/fs')-(fs'/fsi')
//1.412=(fsi'/fs')-(fs'/fsi')=(1.93/1)-(1/1.93)
//fs'/fsi'=1/1.93
//fs'/(fs'+2*fi)=1/1.93
fi=[(30*1.93)-30]/2;//Answer was slightly wrong
disp(+'MHz',fi,'IF required=');
|
7a3b48783ef5f328ac040fe7b8787efd57c60c51 | 87749481136b7b72a47930f587f27667e0c0f97d | /LS and Signal Convolution/filter.sce | 7cf370f4beb6c1178fb0a7cacf3fa32d70aa9445 | [
"MIT"
] | permissive | brooky56/Digital_Signal_Processing | cf15e5ac443a16edcb3efc8d7703cf4746dedcba | f28651e40b0a99b79e9ba27deabc4db8bfc7f08e | refs/heads/master | 2022-06-30T17:59:28.072522 | 2020-05-11T18:58:39 | 2020-05-11T18:58:39 | 242,598,653 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 484 | sce | filter.sce | function [flt] = get_filter(a, b)
flt = struct('a', a, 'b', b, 'buff_in', zeros(1, size(b, '*')), 'buff_out', zeros(1, size(a, '*')));
endfunction
function [flt_out, signal] = push_signal(x, flt_in)
flt_in.buff_in(2:$) = flt_in.buff_in(1:$-1)
flt_in.buff_in(1) = x;
out_sum = flt_in.buff_in*flt_in.b';
out_sum = out_sum + flt_in.buff_out*flt_in.a';
flt_in.buff_out(2:$) = flt_in.buff_out(1:$-1)
flt_in.buff_out(1) = out_sum;
flt_out = flt_in;
signal = out_sum;
endfunction |
9465fff53e15b008f309725f43cc10adb7385401 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH2/EX2.4/2_4.sce | 1199f62d4587c3ddb88a69683d3a00156e48eebc | [] | 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 | 317 | sce | 2_4.sce | Mp=1.00728;//mass of proton in amu//
Mn=1.00866;//mass of neutronin amu//
MH=2.01355;//isotopic mass of H atom in amu//
dM=((1*Mp)+(1*Mn)-MH);//dM value of H atom in amu//
printf('dM value of H atom=dM=%famu',dM);
BE=dM*931;//binding energy of H atom in MeV//
printf('\nBinding energy of H atom=BE=%fMeV',BE);
|
eec53a587610a40e53c8a701bb61e1b5c1cee27f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2885/CH12/EX12.4/ex12_4.sce | 1dd52d1e19ea13de343087af4181e9be0cf32828 | [] | 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 | 191 | sce | ex12_4.sce | //Calculate frequency of oscillations
clear;
clc;
//soltion
//given
R=22*10^3;//ohm
C=100*10^-12;//F
fo=1/(2*%pi*R*C);
printf("The frequency of oscillations= %.2f KHz\n",fo/1000);
|
1c958fb4dc2dac19f12b81559700241c450f04d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH4/EX4.6/example4_6.sce | 8f99ee1ac70dab08df38d2b7ce6c8fe5af8ae144 | [] | 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,038 | sce | example4_6.sce |
//example 4.6
//ceck whether data at station X is consistence
//year in which regime is indicated
//compute the adjusted rainfall atX
clc;funcprot(0);
//given
X=[69 55 62 67 87 70 65 75 90 100 90 95 85 90 75 95]; //annual rainfall at X
Y=[77 62 67 68 86 90 65 75 70 70 70 75 65 70 55 75]; //average rainfall at 10 base stations
cx(1)=69; //accumulated annual values at station X
for i=2:16
cx(i)=cx(i-1)+X(i);
end
cy(1)=77;
for i=2:16
cy(i)=cy(i-1)+Y(i); //accumulated annual values at ten stations
end
//since curve is not having unform slope
mprintf("Record at X is not consistent.");
mprintf("\nFrom the curve regime is observed in the year 1978.")
Q=[1970 1971 1972 1973 1974 1975 1976 1977];
O=[95 75 90 85 95 90 100 90];
for i=1:8
A(i)=0.7051*O(i);
end
mprintf("\n\nYear Observed rainfall Adjusted rainfall");
for i=1:8
mprintf("\n%i %i %i",Q(i),O(i),A(i));
end
//graph is plotted between cx and cy
|
6b78dd81b23cf5ff18a934dce9770fba168588f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1151/CH11/EX11.1/example1.sce | 7a23cec31926fb5aa0e789185de4d0c3b55e5014 | [] | 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,132 | sce | example1.sce | printf(" Given C(s)/R(s)=14/(s^2+1.4*s+14)")
printf("characterstic equation of the given system is s^2+1.4*s+14=0");
printf("compare it with the standard second order characterstic equation s^2+2*d*w*s+w^2=0");
w=sqrt(14);
d=1.4/(2*w);
d1=.7;
t=2*(d1-d)/w;
pt1=%pi/(w*sqrt(1-d^2));
mo1=exp((-%pi*d)/sqrt(1-d^2))*100;
rt=(%pi-atan(sqrt((1-d)/d)))/(w*sqrt(1-d^2));
disp(t,"Td=")
disp(pt1,"peak time(in sec)for sytem without derivative control is")
disp(rt,"rise time(in sec)for sytem without derivative control is")
disp(mo1,"maximum overshoot(in %)for sytem without derivative control is")
printf("overal transfer function with derivative control is C(s)/R(s)=14*(1+0.274*s)/(s^2+5.236*s+14)")
printf("c(t)=1-e^(-2.618*t)*cos(2.673*t)+0.455*e^(-2.618t)*sin(2.673t)")
tp=(%pi-atan(2.58))/2.673;
tr=(1/2.673)*atan(1/0.455);
mo2=1-%e^(-2.618*tp)*cos(2.673*tp)+0.455*%e^(-2.618*tp)*sin(2.673*tp);
mp=(mo2-1)*100;
disp(tp,"peak time(in sec)for sytem with derivative control is")
disp(tr,"rise time(in sec)for sytem with derivative control is")
disp(mp,"maximum overshoot(in %)for sytem with derivative control is")
|
9b8af1a8a44434d91ff184680f76c2eebe56c811 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3.1/examples/misc-examples/dassl1.sce | e2b4e754d517e9b3b0d2643230701157fd166132 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | 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 | 1,328 | sce | dassl1.sce | //DASSL
// PROBLEM 1: LINEAR DIFFERENTIAL/ALGEBRAIC SYSTEM
//
//X1DOT + 10.0*X1 = 0
//X1 + X2 = 1
//X1(0) = 1.0, X2(0) = 0.0
//
t=1:10;t0=0;y0=[1;0];y0d=[-10;0];
info=list([],0,[],[],[],0,0);
// Calling Scilab functions
deff('[r,ires]=dres1(t,y,ydot)','r=[ydot(1)+10*y(1);y(2)+y(1)-1];ires=0')
deff('pd=djac1(t,y,ydot,cj)','pd=[cj+10,0;1,1]')
// scilab function, without jacobian
yy0=dassl([y0,y0d],t0,t,dres1,info);
// scilab functions, with jacobian
yy1=dassl([y0,y0d],t0,t,dres1,djac1,info);
// fortran routine dres1 in dir. routines/default, without jocabian
yy2=dassl([y0,y0d],t0,t,'dres1',info); //=yy0
norm(yy2-yy0,1)
// fortran routines dres1 and djac1 in dir. routines/default, with jacobian
yy3=dassl([y0,y0d],t0,t,'dres1','djac1',info); //=yy1
norm(yy3-yy1,1)
yy3bis=dassl([y0,y0d],t0,t,'dres1',djac1,info);
// call fortran dres1 and scilab's djac1
yy3ter=dassl([y0,y0d],t0,t,dres1,'djac1',info);
//
// with specific atol and rtol parameters
atol=1.d-6;rtol=0;
yy4=dassl([y0,y0d],t0,t,atol,rtol,dres1,info);
yy5=dassl([y0,y0d],t0,t,atol,rtol,'dres1',info); //=yy4
norm(yy5-yy4,1)
yy6=dassl([y0,y0d],t0,t,atol,rtol,dres1,djac1,info);
yy7=dassl([y0,y0d],t0,t,atol,rtol,'dres1','djac1',info); //==yy6
norm(yy7-yy6,1)
// yy7=dassl([y0,y0d],t0,t,atol,rtol,'dres1','djac1',info); //==yy6
norm(yy7-yy6,1)
|
83f655fbc316f9911181012d6753af2a9ef868f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH2/EX2.26/Ex2_26.sce | fb767b688c248e867d00728d79369827aea7f6e8 | [] | 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 | 425 | sce | Ex2_26.sce | clear
//
//
//
//Variable declaration
rho=2.48; //density(gm/cc)
M=58; //molecular weight
N=6.023*10^23; //avagadro number
n=4; //number of atoms
//Calculations
a=(n*M/(rho*N))^(1/3); //lattice constant(cm)
r=a*sqrt(2)*10^8/4; //radius of atom(angstrom)
d=2*r; //distance between ions(angstrom)
//Result
printf("\n distance between ions is %0.1f angstrom",d)
|
23326f0ec66334c4cfe4b56d9e669241b7f3ac9e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1748/CH2/EX2.26/Exa2_26.sce | ad09b8f788f60829b1f608fc542a5be7a207e819 | [] | 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 | 488 | sce | Exa2_26.sce | //Exa 2.26
clc;
clear;
close;
//Given data :
format('v',6);
Pin_rotor=20;//Power input of rotor in KW
phase=3;//no. of phase
P=6;//no. of poles
f=50;//in Hz
N=960;//in rpm(Actual speed of motor)
Ns=120*f/P;//synchronous speed in rpm
S=(Ns-N)/Ns;//unitless
RotorCuLoss=S*Pin_rotor*10^3;//in watts
RotorCuLoss=RotorCuLoss/phase;//in watts/phase
R2=1/3;//in ohm(Rotor resistance per phase)
I2=sqrt(RotorCuLoss/R2);//in Ampere
disp(I2,"Motor current per phase(in Ampere) :"); |
c8de6106d2ac2bc180c53d85af64554ef1d4a8ee | 86ae7e24466d959da945d5b6d8ab93354a9e8a1d | /cylinder.sce | 45890f47dc4dbba3d79ab68be7a11b9fce446d9f | [] | no_license | AnujaNagare/Scilab-Programs | be27fdeb0db8cfa4b00ac5121676b18412b8a222 | 4152eac1a3e87ec7408fb3dfea55cac984cca2d9 | refs/heads/master | 2021-08-30T16:53:33.876536 | 2017-12-18T19:11:47 | 2017-12-18T19:11:47 | 114,677,855 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,876 | sce | cylinder.sce | function [x,y,z] = cylinder(r,n)
xdel(winsid());
pi=22/7;
Radius = r;
Height = 1;
SideCount = n+1;
// Vertices
n_side = SideCount;
for i_ver=1:n_side
VertexData(i_ver,:) = [Radius*cos(2*%pi/n_side*i_ver),Radius*sin(2*%pi/n_side*i_ver),0];
VertexData(n_side+i_ver,:) = [Radius*cos(2*%pi/n_side*i_ver),Radius*sin(2*%pi/n_side*i_ver),Height];
end
// Side Patches
for i_pat=1:n_side-1
Index_Patch1(i_pat,:) = [i_pat,i_pat+1,i_pat+1+n_side,i_pat+n_side];
end
Index_Patch1(n_side,:) = [n_side,1,1+n_side,2*n_side];
for i_pat=1:n_side
// Side patches data
PatchData1_X(:,i_pat) = VertexData(Index_Patch1(i_pat,:),1);
PatchData1_Y(:,i_pat) = VertexData(Index_Patch1(i_pat,:),2);
PatchData1_Z(:,i_pat) = VertexData(Index_Patch1(i_pat,:),3);
end
x=PatchData1_X;
y=PatchData1_Y;
z=PatchData1_Z;
// Draw side patches
figure(1);
plot3d(PatchData1_X,PatchData1_Y,PatchData1_Z);
h1_fac3d = gce();
h1_fac3d.color_mode = 4;
h1_fac3d.foreground = 1;
h1_fac3d.hiddencolor = 4;
// Bottom Patches
Index_Patch2(1,:) = [1:n_side];
Index_Patch2(2,:) = [n_side+1:2*n_side];
for i_pat=1:2
// Bottom patch data
PatchData2_X(:,i_pat) = VertexData(Index_Patch2(i_pat,:),1);
PatchData2_Y(:,i_pat) = VertexData(Index_Patch2(i_pat,:),2);
PatchData2_Z(:,i_pat) = VertexData(Index_Patch2(i_pat,:),3);
end
// Draw bottom patches
figure(1);
plot3d(PatchData2_X,PatchData2_Y,PatchData2_Z);
h2_fac3d(i_pat) = gce();
h2_fac3d(i_pat).color_mode = 4;
h2_fac3d(i_pat).foreground = 1;
h2_fac3d(i_pat).hiddencolor = 4;
// Axes settings
xlabel("x",'fontsize',2);
ylabel("y",'fontsize',2);
zlabel("z",'fontsize',2);
h_axes = gca();
h_axes.font_size = 2;
h_axes.isoview = "on";
h_axes.box = "off";
h_axes.rotation_angles = [63.5,-127];
h_axes.data_bounds = [-0.2,-0.2,0;0.2,0.2,0.4];
xgrid;
|
0b3b989f8d8c806f4a7560e4392f3e9feca00cdf | 449d555969bfd7befe906877abab098c6e63a0e8 | /249/CH2/EX2.3/2_03.sce | cfeea23a00e1293284e809269291841180d945bb | [] | 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 | 242 | sce | 2_03.sce | clear
clc
// Given
//t1=30 min ;T1=336 k;
//t2=15 sec ;T2=347 k;
// Converting t2 in min
t1=30;T1=336;t2=0.25;T2=347
R=8.314;
//log(t1/t2)=E(1/T1-1/T2)/R
E=(log(t1/t2)*R)/(1/T1-1/T2);
printf("\nRESULT\n")
printf("E(J/mol) is %f",E) |
f34fba05646d47730f1390e72a3258d269dda64a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH12/EX12.1/i_1.sce | a20cc62201bac668733fb1a9c14d3d69341a9ea6 | [] | 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 | 220 | sce | i_1.sce | // To Compute the number of electrons.
clc;
clear;
I=(25)*(10^-3);
t=(30)*(10^-3);
C=I*t;
// 1C = 6.242*(10^18)
n= 6.242*(10^18);
e_s=C*n;
disp(e_s,'The Number Of Electrons passing through the person is' )
|
de5f4a30efb1f6133318c0ec9d0aae39cfed6295 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH9/EX9.3/example9_3.sce | 71067e6d13250e879375aa549e5f16d4a571e64e | [] | 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 | 253 | sce | example9_3.sce | //Chapter 9
//Example 9_3
//PAge 215
clear;clc;
d=200;
r=1.24/2;
loop_l=(1e-7)*(0.5+2*log(d/r));
loop_ls=loop_l*1000;
printf("Loop inductance/phase/m = %d*10^-7 H \n\n", loop_l*1e7 );
printf("Loop indictance per km = %.1f mH \n\n", loop_ls*1e3 );
|
3b95348cd5128dafcb1cbab2c9f40e570d726ae4 | 676ffceabdfe022b6381807def2ea401302430ac | /library/Demos/StdRegions/Tests/StdProject3D_Prism_Mod_P6_Q7.tst | 19932b2e8f5bbec808710b5cbd0bd50d4768da58 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 510 | tst | StdProject3D_Prism_Mod_P6_Q7.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>StdProject3D Prism Modified basis P=6 Q=7</description>
<executable>StdProject</executable>
<parameters>-s prism -b Modified_A Modified_A Modified_B -o 6 6 6 -p 7 7 7</parameters>
<metrics>
<metric type="L2" id="1">
<value tolerance="1e-11">2.08237e-12</value>
</metric>
<metric type="Linf" id="2">
<value tolerance="1e-11">4.65228e-12</value>
</metric>
</metrics>
</test>
|
ef50e87b7f2dcb53f51c00ff6485f7c6844da179 | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /sandbox/scilab/05_matplot.sce | b6c73c6ccf963bf927d1756c15fb03154327399c | [] | 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 | 128 | sce | 05_matplot.sce | x = [1 2 3 4; 5 4 3 6]
clf()
Matplot(x)
xs2pdf( gcf(), "images/05_matplot_v1.pdf" )
if getscilabmode() ~= "STD"
quit()
end
|
257bc8060c1a9a6bfbb928731d2fe62dba6067ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /2615/CH13/EX56.1/56.sce | 61380574a239eb430bcb7fc22a28d27a4b11181d | [] | 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 | 150 | sce | 56.sce | clc
//initialisation of variables
w=28740000//kg-m
s=6000//m
//CALCULATIONS
P=w/s//kg
//RESULTS
printf('the average tractive force=% f kg',P)
|
a95653a01d747c04f25a6c724f921e3aca35a64d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH12/EX12.3/EX12_3.sce | 08e72b336aabe161f87fa68c174f799236721eb4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 784 | sce | EX12_3.sce | //Example12.3 // to determine the binary output of the 8-bit dual slope A/D converter
clc;
clear;
close;
Vin = 8.5 ;
VR = 10 ;
f = 2 ; //MHz
N = 8 ;
C = 0.1*10^-6 ;
R = 2*10^3 ;
// the output of integrator is defined as
// Viao(T1) = -(Vin/R*C)*T1 ;
// charging time of capacitor
T1 = 2^N/f ;
disp('charging time of capacitor is = '+string(T1)+ ' u sec');
// the integrator output
T1 = T1*10^-6 ;
Viao =-(Vin/(R*C))*T1;
disp('the integrator output is = '+string(Viao)+ ' V');
// the binary output of a dual slope A/D converter
Bn = (2^N*Vin)/VR;
disp('the decimal output of a dual slope A/D converter is = '+string(Bn)+ ' = 218' );
Bn=218;
Bn = dec2bin(Bn) ;
disp(' The binary output of a dual slope A/D converter is = '+string(Bn)+ ' ' );
|
03b222c934a48116d9d49f7a49c07dfb9d3b3a1e | 449d555969bfd7befe906877abab098c6e63a0e8 | /536/CH10/EX10.3/Example_10_3.sce | 96665184aab8dadd4a1c3b8a6b864451be952009 | [] | 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 | 511 | sce | Example_10_3.sce | clear;
clc;
printf("Example 10.3\n");
P=101.3e3; //pressure of the operating column
T=295; //Temperature of the operating column
P_A=7e3; //partial pressure of ammonia
x=1e-3; //=(y1-y2)Thickness of stationary gas film
D=2.36e-5; //Diffusivity of ammonia
C_A=(1/22.4)*(273/T)*(P_A/P);//=(C_A1-C_A2)Concentration of ammonia gas
//X=C_T/C_BM
X=P*log(P/(P-P_A))/(P-(P-P_A));
//From equation 10.33
N_A_=(D/x)*X*(C_A);
printf("\n The transfer rate per unit area = %.2f *10^-5 kmol/m^2*s",N_A_*1e5) |
c85860c65c75b698f2934c8f8afcea2b5c38068e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2744/CH9/EX9.8/Ex9_8.sce | 872e02aa27772c67be3706e1b89c5613b0ea2da9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 657 | sce | Ex9_8.sce | clear;
clc;
D = 7;// inches
t = 3/4;// inches
l = 16;// feet
P = 12;// tons
e = 3/4;// inches
E = 6000;// tons/in^2
d = D-2*t;// inches
A = 0.25*%pi*(D^2 - d^2);// in^2
I = (%pi/64)*(D^4 - d^4);// in^4
p_0 = P/A;// tons/in^2
Z = 2*I/D;// in^3
M = P*e*sec(0.25*l*12*sqrt(P/(E*I)));// ton-inches
p_b = M/Z;// tons/in^2
p_max = p_0+p_b;// tons/in^2
p_min = p_0-p_b;// tons/in^2
//if tension is just on the point being induced in the section, p_b = p_0
e = p_0*t*Z/M;// inches
printf('Stress intensities, p_max = %.3f tons/in^2.,compressive\n p_min = %.3f tons/in^2., compressive',p_max,p_min);
printf('\n Maximum possible eccentricity, e = %.2f inches',e);
|
61ef430ea8f60239da1001ef213c821a57dd8665 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH17/EX17.5/Ex17_5.sce | 39249b4bcfb9a34ad1fa5c8a1c252268a93f2756 | [] | 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 | 373 | sce | Ex17_5.sce | clear;
clc;
//Example 17.5
b=50;
V2=-5.2;
Vbe=0.7;
Rc2=0.240;
Vor=-0.75;
Re=1.180;
iE=(Vor-Vbe-V2)/Re;
printf('\nemitter current=%.2f mA\n',iE)
iB=iE/(1+b);
iB=iB*1000;//micro A
printf('\ninput base current=%.2f microA\n',iB)
R3=1.500;
i3=(Vor-V2)/R3;
printf('\ni3=%.2f mA\n',i3)
iB=iB*0.001;//mA
N=(-(Vor+Vbe)*(1+b)/(Rc2)-i3)/iB;
printf('\nN=%.f\n',N)
|
74b47b81e77c050e5364d38264b022af6735cb74 | 35071fb08cee13f4a9e79c396f7c8c028f69db0e | /Tests/Syntaxe/KO/FOR_DECL_KO.tst | 2402016755528f67eed00c188ec847c2996bf717 | [] | no_license | V1nc3ntL/Compilation | 2cd9d4fa728055cebd44659cba517e49298142bc | e2008449ddb509021f6ddcfd0a92226807bec9ab | refs/heads/master | 2023-06-01T09:42:01.069684 | 2021-06-02T19:15:13 | 2021-06-02T19:15:13 | 357,205,127 | 0 | 0 | null | 2021-05-31T12:13:32 | 2021-04-12T13:30:46 | C | UTF-8 | Scilab | false | false | 78 | tst | FOR_DECL_KO.tst | void main()
{
for(int i = 0; i < 10; i = i + 1)
{
print("ERROR_FOR");
}
} |
922810e21df47e62285060a55590c8b4d9efdf0f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH7/EX7.7/exa_7_7.sce | 08d9bf23ad91b5c8c0c3066382be617b7daf6c74 | [] | 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 | 404 | sce | exa_7_7.sce | // Exa 7.7
clc;
clear;
close;
// Given data
f=50;//in Hz
R2=330*10^3;//in ohm
R3=15*10^3;// in ohm
R4=22*10^3;//in ohm
C2=0.12*10^-6;//in F
omega=2*%pi*f;
R1= R2*R3/R4;// in ohm
disp(R1*10^-3,"Resistive component of unknown resistance in kohm")
C1= C2*R4/R3;// in F
disp(C1*10^6,"Capacitive component of unknown capacitor in micro F")
D=1/(omega*C1*R1);
disp(D,"Dissipation factor is ")
|
f0f3cd19a1d54a6e2ee29931cb6202f8778df08a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH39/EX39.30/Example39_30.sce | 8c4fcffaaf7578aaf97c6f2ae0ca581b28391a4a | [] | 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 | 922 | sce | Example39_30.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART IV : UTILIZATION AND TRACTION
// CHAPTER 1: INDUSTRIAL APPLICATIONS OF ELECTRIC MOTORS
// EXAMPLE : 1.30 :
// Page number 710
clear ; clc ; close ; // Clear the work space and console
// Given data
J = 1270.0 // Moment of inertia of fly-wheel(kg-m^2)
N = 500.0 // Speed(rpm)
hp = 50.0 // Motor rating(hp)
// Calculations
g = 9.81
T = hp*746*60/(2*%pi*N*g) // Full load torque of motor(kg-m)
T_m = 2*T // Accelerating torque(kg-m)
alpha = T_m*g/J // Angular acceleration(rad/sec^2)
t = 2*%pi*N/(60*alpha) // Time taken to accelerate a fly-wheel(sec)
// Results
disp("PART IV - EXAMPLE : 1.30 : SOLUTION :-")
printf("\nTime taken to accelerate a fly-wheel, t = %.1f sec", t)
|
44b22d89012d972081eb7df2c26625a12c7dfaf5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1394/CH21/EX21.3.2/Ex21_3_2.sce | e5c630c5c663c0eea3d6c375a473eda14fb0a2ac | [] | 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 | 469 | sce | Ex21_3_2.sce |
clc
//intialization of variables
d = 100*10^-4 // cm
v = 10^-3// cm/sec
nu = 0.2 // cm^2/sec
DS = 0.3 // cm^2/sec
DG = 3*10^-7 // cm^2/sec
H = 4.3*10^-4 // at 60 degree centigrade
//Calculations
kG = (2+(0.6*((d*v/nu)^0.5)*((nu/DS)^(1/3))))*DS/d// cm/sec
k = kG*H
t = 30*DG/k^2
//Results
printf("The mass transfer coefficient is %.5f cm/sec",k)
printf("\nTHe time needed to dry the particle is %.6f sec",t)
//Answer wrong in textbook starting from kG
|
c2f454214a721b31d490e6062a51957c9b08da80 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3637/CH2/EX2.2/Ex2_2.sce | 119c257dfa85df490c70332b9679552f6a73fee7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 215 | sce | Ex2_2.sce | //problem 2 pagenumber 2.86
//given
format(6);
v1=5;//volt
v2=2;//volt
rf1=10e3;//ohm
r1=10e3;//ohm
//determine output voltage
v0=-((-v1*rf1/r1)-(-v2*rf1/r1));
disp('Output voltage = '+string(v0)+' V');
|
2c8b9f5c273afab06d685ccd50e6aac21b577ef6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1823/CH5/EX5.28/SolEx5_28.sce | 251d95378c4d50c3a7af4021041d7a3a67ca34be | [] | 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 | 486 | sce | SolEx5_28.sce | //a) Find the range of IDQ that can be expected if R1 ¼ 1M and R2 ¼ 3M. (b) Find the range of IDQ that can be expected if R1 ¼ 1M
//and R2 = 7M. (c) Discuss the significance of the results of parts a and b.
//Example 5.28 page no 159
clear
clc
Vdd=24
Idqmax=4
Idqmin=2.8
Rs=2 //MΩ
Rd=1 //MΩ
Vdsqmax=Vdd-Idqmax*(Rs+Rd)
Vdsqmin=Vdd-Idqmin*(Rs+Rd)
printf("\n The value of Vdsqmax=%0.3f V" ,Vdsqmax)
printf("\n The value of Vdsqmin=%0.3f V" ,Vdsqmin)
|
1808c1a9d6e6d1401c90c49595e4e4a868a07508 | b513eb49824ff62ddd2289a920c92cfcb362d5f2 | /magister/course_2/gerasimov/adaptive/Lab5/scilab/plot_graph.sce | 0cbc78544496b776c271aa4ffeeb3d327800345d | [] | no_license | kirillin/ifmo | 6264ac42ec2031777145b39d4930f2f645e1d316 | 633919ba09d43814298c3a2145d5d6f72b5b068e | refs/heads/master | 2021-01-12T09:32:27.270130 | 2018-11-18T12:17:46 | 2018-11-18T12:17:46 | 76,181,268 | 3 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,303 | sce | plot_graph.sce | ////<first_task>
////
//importXcosDiagram("/home/evgeniy/Рабочий стол/Учеба/Магистратура/Адаптивное и робастное управление/Lab5/scilab/for_output.zcos");
//xcos_simulate(scs_m, 4);
//plot2d(Y.time, [Y.values Y_lin.values]);
//legend("Выход модели ВСВ", "Выход регрессионной модели" ,4)
//a = gca();
//a.x_label.text = "$t\text{, с}$"
//a.x_label.font_size = 4;
//line2 = a.children(2).children(1);
//line2.thickness = 3;
//line2.foreground = 1;
//a.children(1).font_size = 2;
////
////<\first_task>
//<second_task>
//
importXcosDiagram("/home/evgeniy/Рабочий стол/Учеба/Магистратура/Адаптивное и робастное управление/Lab5/scilab/for_state.zcos");
xcos_simulate(scs_m, 4);
for i = 1:2
subplot(2,1,i)
plot2d(X.time, [X.values(:,i) X_lin.values(:,i)]);
legend("Модель ВСВ", "Наблюдатель" ,4)
a = gca();
a.x_label.text = "$t\text{, с}$"
a.x_label.font_size = 4;
str = "$x_{\small" + string(i)+ "}$"
a.y_label.text = str;
a.y_label.font_size = 4;
line2 = a.children(2).children(1);
line2.thickness = 3;
line2.foreground = 1;
a.children(1).font_size = 2;
end
//
//<\second_task>
|
cdad84eff92ad70b47f7e41cb0a6b35fe61822bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3014/CH2/EX2.18/Ex2_18.sce | a8a499c0dcac883ed953e32b6661bc3cbf654dd8 | [] | 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 | 364 | sce | Ex2_18.sce | clc
//given that
del_t = 2e-12 // lifetime of exited state in sec
h = 6.63e-34 // Plank constant
printf("Example 2.18")
h_bar = h / (2*%pi) // constant
del_E = h_bar/(1.6e-19*2*del_t) // calculation of uncertainty in momentum
printf("\n Minimum error in measurement of energy of this state is %e eV.\n\n\n",del_E)
// Answer in book is 1.65e-4 eV
|
80f61ca438880508f228ad72ec57aab55f0b1a7a | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/gr_harm/condor/gr_harm_load.sce | e834ac247a9f3083480fe6b04ce7d7ac84cd46bc | [] | 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 | 244 | sce | gr_harm_load.sce | jobname='tbg2';
niters=4;
resarray=cell(1,niters);
nx=6;
ny=6;
nz=6;
%Load aeach data set in turn create cell array
%Do animation
for currentiter=1:niters
outname=sprintf('results/%s_%d.mat',jobname, currentiter);
load(outname);
end
|
8aaf5a3feb298dac3ab554f7201974a3201e109d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH1/EX1.57/ex1_57.sce | 1ef0619812ce241f0ae06dddfa1bf7227bbc59ce | [] | 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 | 872 | sce | ex1_57.sce | //Chapter-1, Example 1.57, Page 67
//=============================================================================
clc;
clear;
//INPUT DATA
I1=25;//current source in A
I2=6;//current source in A
I3=5;//current source in A
RAB=5;//Resistance in ohms
RAC=10;//Resistance in ohms
RBC=2;//Resistance in ohms
//let currents across AC and BC and AB are Ix,Iy and Iz respectively
//applying kirchoff's current law at node A
//-I1+Ix+I3+Iz=0------eqn(1)
//applying kirchoff's current law at node B
//-Iz-I3+Iy+I2=0------eqn(2)
//CALCULATIONS
[a]=[((1/RAC)+(1/RAB)),(-1/RAB);(-1/RAB),((1/RAB)+(1/RBC))];
[b]=[20;-1];
[c]=inv(a)*(b)
VA=c(1);//voltage at node A
VB=c(2);//voltage at node B
//OUTPUT
mprintf("Thus voltages at node A and B are %2.1f V and %2.1f V",-VA,VB);
//=================================END OF PROGRAM==============================
|
5b79cf6716d11ea8a84937b7f293de5f14cc2b93 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3816/CH3/EX3.1/3_1.sce | beaaba3f596bd78907bbdb47b774cc48893a313d | [] | 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 | 565 | sce | 3_1.sce | clc;
clear;
hp=0.15;//from diagram
F=9000;
V=80;//Working voltage
Lmt=1.25;//Mean length of the turn
Vp=4;//voltage per pole
disp('For a copper winding at 75 deg cel:')
a=0.021*(10^(-6))*Lmt*(F/Vp);
disp(a,'The conductor area is:')
Vp=4;//voltage per pole
S=Lmt*hp;
C=0.019;//Assumed value
disp('For a temp rise of 65 deg cel:')
theta_m=65;//temperature rise
p=(theta_m*S)/C;
disp(p,'The power dissipated is:')
I=p/Vp;
disp(I,'The field current is:')
N=F/I;
disp(N,'The number of turns per pole is:')
J=I/N;
disp(J,'The current density is:')
|
7351ce63363571400e54c5e2dc0a098e0300bedb | 449d555969bfd7befe906877abab098c6e63a0e8 | /122/CH7/EX7.13/exa7_13.sce | f2edf078d04f535eb1b27788cada29d8f928efe6 | [] | 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 | 685 | sce | exa7_13.sce | // Example 7-13
// Nyquist Plot of MIMO system
clear; clc;
xdel(winsid()); //close all windows
A = [-1 -1 ; 6.5 0];
B = [1 1; 1 0];
C = [1 0; 0 1];
D = [0 0; 0 0];
G = syslin('c',A,B,C,D);
P = clean(ss2tf(G));
subplot(2,2,1);
nyquist(P(1,1),-100,100);
xgrid(color('gray'));
xtitle('Nyquist plot: From U1','Real Axis','To Y1');
subplot(2,2,2);
nyquist(P(2,1),-100,100);
xgrid(color('gray'));
xtitle('Nyquist plot: From U1','Real Axis','To Y2');
subplot(2,2,3);
nyquist(P(1,2),-100,100);
xgrid(color('gray'));
xtitle('Nyquist plot: From U2','Real Axis','To Y1');
subplot(2,2,4);
nyquist(P(2,2),-100,100);
xgrid(color('gray'));
xtitle('Nyquist plot From U2','Real Axis','To Y2');
|
37d2d6673b410c83a66c8ee50fb2ab7e2750e91a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3422/CH5/EX5.1/Ex5_1.sce | ae1d1c34dbb93ed45ba812d03944526704b250f2 | [] | 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 | 275 | sce | Ex5_1.sce | //example 5.1, Page 98
clc;
IL=(100*1000)/(400*.9*.8*sqrt(3))//Full load current
FS=(1000-950)/1000//Full load slip
//disp("hhhhhhhhhhh")
//Writing loop
x=[1 0.577350269 .7 0.333333333]
for i=1:1:4
T=1.8*(x(i))^2
printf("\n The value of Tst/Tf when x=%f is %f ",x(i),T)
end
|
b910fb14c4ffc99019daf2c2041073c04e6128fb | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /CostHriFunction/Justin/SCNEARIOS_Justin_Trajectory/baseFixed.sce | 68ba1b90954e149d7e7e27b620762b4223c9b640 | [] | no_license | jmainpri/move3d-assets | a5b621daaedaaf8784fed0da1e80d029c83f3983 | 939db49d17a14e052bb58324b70e6112803d3105 | refs/heads/master | 2021-01-16T17:48:56.669119 | 2016-02-16T14:04:09 | 2016-02-16T14:04:09 | 20,237,987 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,416 | sce | baseFixed.sce | #************************************************************
# Scenario of Ikea
#
# date : Fri Aug 6 12:16:20 2010
#************************************************************
p3d_sel_desc_name P3D_ENV Ikea
p3d_sel_desc_name P3D_ROBOT HUMAN_ACHILE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.800000 -1.520000 0.750000 0.000000 0.000000 76.320000 4.292683 0.000000 -1.327433 -1.283183 0.219512 12.951220 65.780000 8.370000 -14.860000 91.170000 20.930000 -39.760000 -5.120000 -27.600000 14.650000 -43.080000 -34.208450 0.880000 -107.640000 8.620000 -11.570000 -90.000000 -5.490000 103.630000 0.000000 0.000000 3.260000 5.980000 -90.000000 8.840000 96.870000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT ROBOT_JUSTIN
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.800000 -1.880000 74.120000 25.240000 -33.380035 36.969028 -13.274338 -1.327433 3.871682 -66.863319 -95.575218 -15.044244 115.634224 1.671586 -16.914946 39.690266 31.719982 -90.792702 -19.723872 32.761383 40.727967 -13.935005 -27.958518 2.080000 -1.140000 1.110000 -4.195717 -10.580000 40.360000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.800000 -1.880000 74.120000 78.010000 -33.380035 36.969028 -13.274338 -1.327433 3.871682 -66.863319 -95.575218 -15.044244 115.634224 1.671586 -16.914946 39.690266 19.545673 -84.999603 -19.723872 52.556530 34.691275 -9.582022 -1.049950 1.880000 -1.880000 1.110000 -4.195717 -10.580000 61.450000
p3d_set_robot_traj /Users/jmainpri/workspace/BioMove3DDemos/CostHriFunction/ICRA_Justin_Trajectory/baseFixedWithVisib.traj
p3d_constraint p3d_kuka_arm_ik 6 18 19 21 22 23 24 1 29 0 3 20 -1 1
p3d_set_cntrt_Tatt 0 -0.982797 0.018403 -0.183754 -0.036039 -0.003530 0.992963 0.118341 -0.346482 0.184640 0.116955 -0.975819 -0.017708
p3d_constraint p3d_min_max_dofs 0 2 4 3 2 0.000000 135.000000 0
p3d_constraint p3d_lin_rel_dofs 1 5 2 3 4 3 -1.000000 -1.000000 0.000000 0
p3d_constraint p3d_fixed_jnt 1 1 0 3 2.800000 -1.880000 74.120000 0
p3d_constraint p3d_fixed_jnt 1 3 0 1 -33.380035 0
p3d_constraint p3d_fixed_jnt 1 4 0 1 36.969028 0
p3d_constraint p3d_fixed_jnt 1 5 0 1 -13.274338 0
p3d_constraint p3d_fixed_jnt 1 7 0 1 -1.327433 0
p3d_constraint p3d_fixed_jnt 1 8 0 1 3.871682 0
p3d_constraint p3d_fixed_jnt 1 10 0 1 -66.863319 0
p3d_constraint p3d_fixed_jnt 1 11 0 1 -95.575218 0
p3d_constraint p3d_fixed_jnt 1 12 0 1 -15.044244 0
p3d_constraint p3d_fixed_jnt 1 13 0 1 115.634224 0
p3d_constraint p3d_fixed_jnt 1 14 0 1 1.671586 0
p3d_constraint p3d_fixed_jnt 1 15 0 1 -16.914946 0
p3d_constraint p3d_fixed_jnt 1 16 0 1 39.690266 0
p3d_constraint p3d_fix_jnts_relpos 1 29 1 24 0 0
p3d_set_cntrt_Tatt 16 -0.982797 -0.003530 0.184640 -0.033372 0.018403 0.992963 0.116955 0.346778 -0.183754 0.118341 -0.975819 0.017101
p3d_set_object_base_and_arm_constraints 29 1 0 1 0
p3d_sel_desc_name P3D_ROBOT Lampe
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -1.966568 1.622419 0.983776 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Assiette
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.884956 -1.573254 0.787611 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Pommes
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.442478 -1.622419 0.762537 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Verre
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Tabouret
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -0.360000 0.220000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029268 0.263415 3.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp2
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029268 0.556098 3.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp3
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029268 0.848780 3.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_camera_pos 1.692213 -1.665001 0.468306 5.227740 1.316250 0.728750 0.000000 0.000000 1.000000 0.000000
|
dd102f73dbbebe454896fde69ed498a596d9fefa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH6/EX6.1/Ex6_1.sce | 407616a6bcaaa709a1c4b229490d53caefd8ff64 | [] | 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 | 608 | sce | Ex6_1.sce | //==============================================================================
// chapter 6 example 1
clc;
clear;
//input data
R75 = 57.2; //resistance at 75 C in ohm
R25 = 55; //resistance at 25 C in ohm
t1 = 25; //temperature in C
t2 = 75 // temperature in C
//formula
//Rt = R0*(1+(alpha*t))
//calculation
alpha = (R25-R75)/((25*R75)-(75*R25)); //temperature cofficient
//result
mprintf('temperature coefficient =%3.5f.K^-1',alpha);
//=====================================================================================
|
460f139e51f04dfca369f96407284f20db5bfd20 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.16_11.tst | dbaa46a627a09ac98ab4ac2b47c523dc138623e6 | [] | 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 | 35,959 | tst | bow.16_11.tst | 16 7:1.0 8:1.0 12:0.07142857142857142 15:1.0 16:0.3333333333333333 18:0.5 31:0.2 48:0.3333333333333333 52:0.046511627906976744 58:0.5 59:0.3333333333333333 60:1.0 66:0.2 82:0.14285714285714285 110:0.06666666666666667 112:0.5 126:2.0 127:0.3333333333333333 135:1.0 185:0.25 237:0.1 242:1.0 256:1.0 267:0.2 390:0.5 448:1.0 755:0.25 814:1.0 960:0.5 1032:0.25 1924:1.0 2226:1.0 3176:1.0 3583:1.0 3879:1.0 4240:1.0 4454:1.0 5287:1.0 5652:1.0 5965:1.0 6198:1.0 6455:1.0 6602:1.0 6652:1.0 8504:1.0
16 3:0.5 12:0.14285714285714285 14:1.0 16:0.3333333333333333 18:0.5 22:1.0 41:1.0 78:1.0 82:0.14285714285714285 86:1.0 99:0.3333333333333333 126:1.0 150:0.3333333333333333 260:0.1 296:0.3333333333333333 343:1.0 528:1.0 984:1.0 1025:0.3333333333333333 1121:0.05263157894736842 1397:1.0 1558:1.0 1559:1.0 1668:1.0 1790:1.0 3435:0.2 4529:1.0 5287:2.0 5295:1.0 5378:1.0 5470:1.0 7083:1.0
16 12:0.07142857142857142 18:0.5 22:2.0 42:1.0 59:0.16666666666666666 82:0.14285714285714285 111:0.09090909090909091 126:1.0 450:0.5 511:0.5 4529:1.0 5238:1.0 5287:1.0 5411:1.0 5470:1.0
16 12:0.07142857142857142 22:1.0 31:0.2 46:0.2857142857142857 52:0.023255813953488372 53:0.3333333333333333 59:0.16666666666666666 99:0.16666666666666666 102:0.5 136:0.5 224:1.0 240:0.25 256:1.0 260:0.1 328:0.25 357:1.0 418:1.0 432:1.0 616:0.1111111111111111 663:1.0 943:1.0 982:1.0 1032:0.25 1121:0.05263157894736842 1597:1.0 1910:1.0 5287:1.0 6616:1.0 7906:1.0
16 7:0.5 12:0.14285714285714285 15:1.0 18:0.5 22:1.0 55:0.5 58:0.5 59:0.16666666666666666 60:1.0 99:0.3333333333333333 128:0.3333333333333333 178:1.0 223:0.5 226:1.0 309:1.0 310:1.0 343:1.0 437:1.0 670:0.5 960:0.5 2306:1.0 2590:1.0 3083:1.0 3904:1.0 5100:1.0 5272:0.125 5287:2.0 5608:0.5 6290:1.0
16 7:0.5 9:0.5 12:0.2857142857142857 15:1.0 22:1.0 30:1.0 31:0.2 41:1.0 50:0.5 52:0.09302325581395349 53:0.3333333333333333 55:1.0 59:0.5 66:0.2 103:0.5 106:0.25 110:0.06666666666666667 127:0.6666666666666666 128:0.3333333333333333 136:0.5 183:0.5 243:1.0 279:0.25 292:1.0 323:0.5 330:0.5 362:0.5 437:1.0 448:1.0 450:0.5 536:0.5 611:1.0 616:0.1111111111111111 755:0.25 825:2.0 964:0.09090909090909091 1056:1.0 1121:0.05263157894736842 1161:0.5 2068:1.0 2140:0.3333333333333333 2377:1.0 2541:1.0 2653:1.0 2741:1.0 2992:1.0 3227:1.0 3505:1.0 4717:1.0 4965:1.0 5300:0.5 5470:1.0 5539:1.0 5745:1.0 6452:1.0 6602:1.0 7322:1.0 8559:1.0
16 7:1.0 9:0.5 11:0.25 12:0.14285714285714285 15:1.0 16:0.3333333333333333 22:1.0 52:0.046511627906976744 59:0.5 99:0.16666666666666666 106:0.25 111:0.09090909090909091 128:0.3333333333333333 144:0.5 150:0.3333333333333333 182:0.5 212:1.0 237:0.1 323:0.5 450:0.5 795:0.25 1121:0.15789473684210525 1461:1.0 1464:1.0 1526:1.0 1896:1.0 1997:1.0 2667:1.0 3561:1.0 3820:1.0 4488:1.0 4776:1.0 5334:1.0 5539:1.0 8072:1.0
16 7:1.5 15:1.0 52:0.046511627906976744 66:0.2 99:0.16666666666666666 102:0.25 103:0.5 110:0.06666666666666667 111:0.09090909090909091 150:0.3333333333333333 152:1.0 222:0.3333333333333333 236:0.1111111111111111 275:0.2222222222222222 450:0.5 516:0.3333333333333333 783:0.5 812:0.3333333333333333 1085:0.5 1121:0.05263157894736842 1410:1.0 1499:1.0 3483:1.0 4150:1.0 4652:1.0 5148:1.0 5400:1.0 5759:1.0 6193:1.0 7028:1.0 7383:1.0
16 9:0.5 12:0.14285714285714285 16:0.6666666666666666 22:3.0 30:1.0 31:0.2 42:1.0 59:0.16666666666666666 126:1.0 127:0.3333333333333333 222:0.3333333333333333 237:0.1 260:0.2 284:1.0 450:0.5 507:1.0 645:1.0 657:1.0 755:0.125 960:0.5 964:0.09090909090909091 1680:1.0 1748:0.5 2140:0.3333333333333333 2281:1.0 2889:1.0 3056:1.0 3561:1.0 5272:0.125 5334:1.0 6715:1.0 7155:1.0
16 11:0.25 16:0.6666666666666666 55:1.0 59:0.16666666666666666 70:0.1111111111111111 82:0.14285714285714285 106:0.25 127:0.3333333333333333 135:0.5 150:0.3333333333333333 233:1.0 236:0.1111111111111111 284:1.0 390:0.5 587:0.5 616:0.1111111111111111 622:1.0 675:0.5 811:1.0 1032:0.25 1343:1.0 1691:1.0 1698:1.0 2605:1.0 2981:1.0 5334:2.0 5499:1.0 6121:1.0
16 66:0.6 89:1.0 102:0.25 104:1.0 106:0.25 127:0.3333333333333333 134:0.25 215:0.1111111111111111 655:1.0 782:1.0 943:1.0 964:0.09090909090909091 1316:1.0 1469:1.0 1767:1.0 3087:1.0 4167:0.5 4942:1.0 5300:0.5 5400:1.0 5572:1.0 6554:1.0 6669:2.0 6686:1.0 7149:1.0 8422:1.0
16 3:0.5 7:0.5 11:0.25 12:0.07142857142857142 18:1.0 22:1.0 31:0.4 40:0.25 41:1.0 82:0.14285714285714285 99:0.16666666666666666 127:0.3333333333333333 162:1.0 215:0.1111111111111111 224:1.0 303:0.5 323:0.5 362:0.5 388:1.0 437:1.0 892:1.0 967:1.0 1315:1.0 1439:1.0 1517:1.0 1577:1.0 2140:0.3333333333333333 2605:1.0 2844:1.0 3440:0.3333333333333333 4627:1.0 4749:1.0 5281:1.0 5300:0.5 5515:1.0 5546:1.0 5682:1.0 5786:0.5 6825:1.0 7859:1.0 8485:1.0 8514:1.0 8515:1.0
16 7:1.0 9:0.75 12:0.07142857142857142 15:1.0 24:0.3333333333333333 31:0.2 50:0.5 59:0.16666666666666666 66:0.2 106:0.25 124:1.0 127:0.3333333333333333 153:1.0 219:1.0 236:0.1111111111111111 450:0.5 670:0.5 763:1.0 964:0.09090909090909091 1206:0.5 1405:0.2 1429:1.0 2590:1.0 2973:1.0 3469:0.5 4382:1.0 5785:1.0 7644:1.0
16 12:0.07142857142857142 15:2.0 18:0.5 22:1.0 24:0.3333333333333333 31:0.2 41:1.0 52:0.023255813953488372 99:0.16666666666666666 106:0.25 110:0.06666666666666667 127:0.3333333333333333 507:1.0 960:0.5 964:0.09090909090909091 1439:1.0 2605:1.0 2844:1.0 3074:1.0 3469:0.5 4627:1.0 4749:1.0 5272:0.125 5287:1.0 5643:1.0 5785:1.0 7644:1.0 7859:1.0 8159:1.0 8485:1.0 8514:1.0 8515:1.0
16 9:0.25 12:0.07142857142857142 41:1.0 53:0.3333333333333333 59:0.16666666666666666 82:0.14285714285714285 97:1.0 110:0.06666666666666667 206:0.3333333333333333 215:0.1111111111111111 275:0.1111111111111111 276:1.0 330:0.5 757:1.0 960:0.5 1087:1.0 1315:1.0 2049:1.0 2289:0.5 3391:0.5 5287:1.0 6270:1.0 7750:1.0
16 41:1.0 45:0.5 59:0.16666666666666666 99:0.3333333333333333 223:0.5 260:0.1 275:0.1111111111111111 294:1.0 309:1.0 362:0.5 380:1.0 1554:0.25 1757:0.5 2467:1.0 3029:1.0 5287:2.0 6964:1.0 7016:1.0 8362:1.0
16 41:1.0 43:1.0 52:0.023255813953488372 66:0.2 106:0.25 127:0.3333333333333333 135:0.5 237:0.1 320:1.0 330:0.5 342:0.2 960:0.5 967:1.0 1129:0.5 2140:0.3333333333333333 3119:1.0 3658:1.0 3946:1.0 5399:1.0 5472:1.0 6265:1.0
16 7:1.0 12:0.21428571428571427 18:0.5 24:0.3333333333333333 43:1.0 52:0.023255813953488372 53:0.3333333333333333 60:1.0 66:0.2 97:2.0 99:0.3333333333333333 180:2.0 237:0.1 284:1.0 362:0.5 388:1.0 463:1.0 688:0.5 700:1.0 943:1.0 960:1.0 964:0.09090909090909091 1698:1.0 3505:1.0 3906:1.0 4604:1.0 5287:1.0 5400:1.0 8437:1.0
16 7:1.0 12:0.14285714285714285 16:0.3333333333333333 31:0.2 41:2.0 45:0.5 53:0.3333333333333333 99:0.16666666666666666 102:0.25 103:0.5 105:0.16666666666666666 110:0.06666666666666667 111:0.09090909090909091 128:0.3333333333333333 215:0.1111111111111111 350:1.0 688:0.5 781:1.0 984:1.0 1086:1.0 1129:0.5 1343:1.0 1990:1.0 2306:1.0 2497:1.0 2950:1.0 3373:0.5 3530:1.0 4233:1.0 4377:1.0 5287:1.0 5682:1.0 6317:1.0 7094:1.0 8203:1.0 8466:1.0
16 7:1.0 12:0.2857142857142857 14:1.0 16:0.3333333333333333 18:0.5 31:0.2 33:1.0 47:0.3333333333333333 52:0.023255813953488372 55:0.5 59:0.16666666666666666 66:0.4 99:0.16666666666666666 105:0.16666666666666666 127:0.6666666666666666 134:0.25 136:0.5 153:1.0 240:0.5 269:1.0 323:0.5 542:1.0 584:0.5 648:1.0 780:1.0 1025:0.3333333333333333 1121:0.05263157894736842 1187:1.0 2206:1.0 2379:1.0 2740:0.5 3081:1.0 3396:1.0 3653:1.0 3707:1.0 3873:1.0 4377:1.0 4837:1.0 5539:1.0 6140:1.0 8182:1.0 8183:1.0
16 7:0.5 12:0.14285714285714285 14:1.0 18:1.0 36:0.18181818181818182 41:1.0 45:0.5 59:0.5 82:0.2857142857142857 86:2.0 99:0.16666666666666666 102:0.25 126:1.0 127:0.3333333333333333 165:0.3333333333333333 260:0.1 296:0.6666666666666666 343:2.0 463:1.0 584:0.5 755:0.125 957:1.0 1089:1.0 1340:1.0 1397:1.0 1558:1.0 3435:0.4 4441:1.0 5287:1.0 5378:2.0 5380:1.0 5608:0.5 7045:1.0
16 7:0.5 9:0.25 12:0.07142857142857142 18:0.5 22:2.0 31:0.2 41:1.0 52:0.046511627906976744 53:0.3333333333333333 66:0.4 75:1.0 82:0.2857142857142857 99:0.16666666666666666 102:0.25 103:0.5 105:0.16666666666666666 111:0.09090909090909091 126:1.0 128:0.3333333333333333 191:1.0 236:0.1111111111111111 237:0.1 240:0.25 243:1.0 284:1.0 303:0.5 437:1.0 688:0.5 783:0.5 854:0.5 973:1.0 982:1.0 1122:1.0 1161:0.5 1259:1.0 1315:1.0 1397:1.0 1558:1.0 1559:1.0 1698:1.0 1780:1.0 2675:0.3333333333333333 2989:1.0 3244:1.0 4454:1.0 5281:1.0 5471:1.0 5608:0.5 5730:1.0 7047:1.0 8020:1.0
16 3:0.5 7:0.5 16:0.3333333333333333 31:0.2 52:0.046511627906976744 53:0.3333333333333333 59:0.3333333333333333 66:0.2 85:1.0 103:0.5 134:0.75 135:0.5 153:2.0 162:1.0 215:0.1111111111111111 448:1.0 582:1.0 616:0.2222222222222222 782:1.0 1025:0.3333333333333333 1074:1.0 1121:0.05263157894736842 1846:1.0 2140:0.3333333333333333 2610:0.5 3141:1.0 3395:1.0 3483:1.0 4280:1.0 4310:1.0 4395:1.0 4803:1.0 5629:1.0 5944:1.0 6103:1.0 6350:2.0 7294:1.0 7570:1.0 8298:1.0
16 7:0.5 15:1.0 16:0.3333333333333333 18:0.5 22:2.0 66:0.4 97:1.0 99:0.16666666666666666 102:0.25 111:0.09090909090909091 127:0.3333333333333333 153:2.0 260:0.1 408:1.0 423:0.5 437:1.0 449:1.0 1118:1.0 1251:0.5 1510:1.0 1746:0.5 1890:1.0 1908:0.2 1925:1.0 2193:0.5 2690:1.0 2830:1.0 3195:1.0 5066:1.0 5332:0.5 5341:1.0 5499:1.0 5523:1.0 5608:0.5 6199:1.0 6247:1.0 6906:1.0 6989:1.0 7570:1.0 7899:1.0 8042:1.0
16 9:0.25 12:0.14285714285714285 18:1.0 22:1.0 50:0.5 52:0.023255813953488372 57:1.0 59:0.16666666666666666 99:0.16666666666666666 102:0.25 103:0.5 111:0.09090909090909091 126:2.0 127:0.3333333333333333 136:1.0 189:1.0 191:1.0 224:1.0 236:0.1111111111111111 284:1.0 348:0.25 618:1.0 688:0.5 960:0.5 1121:0.05263157894736842 1203:1.0 1223:1.0 1464:1.0 1531:0.5 1653:0.3333333333333333 1698:1.0 1701:0.3333333333333333 3140:1.0 4784:1.0 5210:1.0 5272:0.125 5287:1.0 5399:1.0 5471:1.0 5472:1.0 5757:1.0 5837:1.0 6536:1.0 8078:1.0
16 11:0.25 12:0.14285714285714285 65:1.0 237:0.1 267:0.2 465:1.0 1032:0.25 2379:1.0 2734:0.5 3504:1.0 8174:1.0
16 7:1.0 9:0.25 12:0.07142857142857142 15:2.0 18:0.5 33:1.0 40:0.25 52:0.023255813953488372 59:0.16666666666666666 99:0.16666666666666666 106:0.25 160:1.0 162:1.0 260:0.1 342:0.2 362:1.5 380:1.0 811:1.0 964:0.09090909090909091 1032:0.25 1053:1.0 1469:1.0 1548:1.0 2239:1.0 2708:0.5 2821:1.0 2856:0.5 4193:1.0 4294:1.0 5287:2.0 6073:1.0 6221:1.0 6326:0.5 6389:1.0 6512:1.0 6750:1.0 7103:1.0 8192:1.0
16 12:0.07142857142857142 14:1.0 16:0.3333333333333333 18:0.5 22:1.0 31:0.2 41:1.0 59:0.16666666666666666 66:0.4 82:0.2857142857142857 99:0.16666666666666666 104:1.0 150:0.3333333333333333 186:1.0 198:1.0 215:0.1111111111111111 243:2.0 279:0.25 296:0.3333333333333333 616:0.1111111111111111 811:1.0 960:0.5 964:0.09090909090909091 984:1.0 1067:1.0 1121:0.05263157894736842 1315:1.0 1397:1.0 1496:0.5 1558:1.0 1559:1.0 1682:1.0 1683:1.0 1761:1.0 2640:0.5 2695:1.0 3435:0.2 3656:1.0 5300:0.5 5349:1.0 5378:1.0 5608:0.5 7596:1.0 8358:1.0
16 7:0.5 12:0.07142857142857142 15:1.0 40:0.25 41:3.0 66:0.2 82:0.2857142857142857 99:0.5 102:0.25 103:1.5 126:1.0 135:0.5 139:1.0 162:1.0 215:0.1111111111111111 260:0.1 286:1.0 303:0.5 437:1.0 536:0.5 572:1.0 616:0.2222222222222222 688:0.5 960:0.5 1053:1.0 1091:1.0 1250:1.0 1439:2.0 1615:1.0 2178:0.5 2319:1.0 2465:1.0 2640:0.5 2830:1.0 2928:1.0 2973:1.0 3048:1.0 3373:0.5 3694:1.0 3808:1.0 3851:1.0 5287:1.0 5300:0.5 5400:1.0 5794:1.0 5868:1.0 5894:1.0 6222:1.0 6602:1.0 7512:2.0
16 9:0.25 12:0.07142857142857142 22:1.0 31:0.4 59:0.16666666666666666 66:0.4 106:0.25 135:0.5 156:1.0 162:1.0 279:0.25 447:1.0 904:1.0 943:1.0 964:0.18181818181818182 1121:0.05263157894736842 1206:0.5 1215:2.0 1440:1.0 1896:1.0 1932:1.0 1972:1.0 2889:1.0 2973:1.0 3334:1.0 4020:1.0 5111:1.0 5287:1.0 5878:1.0 6715:1.0 7002:1.0 7021:1.0 7024:1.0
16 7:1.0 9:0.25 11:0.25 12:0.07142857142857142 14:1.0 22:2.0 26:0.3333333333333333 27:1.0 52:0.023255813953488372 59:0.3333333333333333 66:0.2 97:1.0 106:0.5 123:0.5 135:0.5 162:1.0 236:0.1111111111111111 256:1.0 275:0.2222222222222222 292:1.0 362:0.5 616:0.1111111111111111 631:1.0 960:0.5 1121:0.10526315789473684 1559:1.0 1990:1.0 2622:1.0 2781:1.0 2973:1.0 2981:1.0 3083:1.0 3749:0.5 3916:2.0 5068:1.0 7359:1.0
16 7:0.5 12:0.21428571428571427 15:2.0 31:0.2 41:2.0 42:1.0 52:0.023255813953488372 58:1.0 66:0.2 82:0.2857142857142857 97:1.0 99:0.5 103:0.5 106:0.25 110:0.06666666666666667 111:0.18181818181818182 128:0.3333333333333333 186:1.0 226:2.0 236:0.2222222222222222 237:0.1 260:0.1 284:2.0 309:2.0 320:1.0 460:1.0 616:0.1111111111111111 622:1.0 661:0.25 671:0.3333333333333333 957:1.0 960:1.0 1121:0.05263157894736842 1125:1.0 1206:0.5 1369:1.0 1568:1.0 1748:0.5 1782:1.0 2723:0.16666666666666666 2764:1.0 2973:1.0 5102:1.0 5287:1.0 6928:1.0 7030:1.0
16 7:1.0 9:0.25 11:0.25 12:0.07142857142857142 18:0.5 22:1.0 52:0.023255813953488372 66:0.2 99:0.16666666666666666 260:0.1 297:1.0 303:0.5 536:0.5 826:1.0 960:1.0 1410:1.0 1439:1.0 1603:1.0 2093:1.0 2193:0.5 2848:1.0 2987:1.0 3361:1.0 5287:2.0 5387:1.0 6198:1.0
16 7:0.5 9:0.25 12:0.21428571428571427 14:1.0 15:2.0 18:0.5 34:0.5 50:0.5 59:0.16666666666666666 66:0.4 102:0.25 106:0.5 122:1.0 126:1.0 133:1.0 136:0.5 222:0.3333333333333333 232:1.0 242:1.0 437:1.0 544:1.0 616:0.1111111111111111 729:1.0 1118:1.0 1509:1.0 1928:1.0 2009:1.0 2638:1.0 2830:1.0 2902:1.0 3227:1.0 3350:1.0 3752:1.0 4191:1.0 4310:1.0 4831:1.0 5757:1.0 6536:1.0 8033:1.0
16 12:0.07142857142857142 18:1.0 66:0.2 102:0.25 108:0.5 111:0.18181818181818182 126:2.0 135:0.5 136:1.0 275:0.1111111111111111 284:1.0 286:1.0 418:1.0 437:1.0 853:0.3333333333333333 960:0.5 1113:0.5 1118:1.0 1464:1.0 1748:0.5 2140:0.3333333333333333 4193:1.0 4310:1.0 5272:0.25 5287:1.0 5364:1.0 5757:1.0 5758:1.0 6126:1.0 6327:1.0
16 6:1.0 7:0.5 18:1.0 66:0.2 102:0.25 106:0.25 110:0.13333333333333333 111:0.09090909090909091 126:1.0 134:0.25 234:1.0 236:0.1111111111111111 390:0.5 448:1.0 512:1.0 576:1.0 661:0.25 757:1.0 828:1.0 1085:0.5 1167:1.0 1315:1.0 1439:1.0 1566:1.0 2533:1.0 3440:0.6666666666666666 3661:1.0 5281:1.0 5300:0.5 5349:1.0 5752:1.0 5786:0.5 6689:1.0 6883:1.0 8251:1.0
16 7:0.5 12:0.21428571428571427 18:1.0 36:0.09090909090909091 41:1.0 66:0.2 73:1.0 82:0.2857142857142857 86:1.0 99:0.3333333333333333 102:0.5 108:0.5 111:0.18181818181818182 126:3.0 127:0.6666666666666666 136:0.5 275:0.1111111111111111 286:1.0 296:0.3333333333333333 343:2.0 418:1.0 460:1.0 693:1.0 745:1.0 853:0.3333333333333333 957:1.0 1113:0.5 1397:1.0 1439:1.0 1558:1.0 2140:0.3333333333333333 2723:0.16666666666666666 3435:0.2 3650:0.5 4310:1.0 4441:1.0 5364:1.0 5378:1.0 5618:1.0
16 12:0.07142857142857142 15:1.0 22:3.0 59:0.16666666666666666 66:1.2 82:0.14285714285714285 99:0.16666666666666666 103:1.0 105:0.16666666666666666 106:0.25 111:0.09090909090909091 126:1.0 135:0.5 136:0.5 224:1.0 237:0.1 388:1.0 394:1.0 435:1.0 445:1.0 465:1.0 507:1.0 746:1.0 960:0.5 1032:0.25 1053:1.0 1260:1.0 1315:2.0 1554:0.25 1908:0.2 2467:1.0 2492:1.0 2830:1.0 3896:1.0 3941:1.0 4099:1.0 4616:1.0 5254:1.0 5295:1.0 5300:0.5 5463:0.5 5519:0.5 5867:1.0 5958:1.0 6000:1.0 7350:1.0
16 12:0.07142857142857142 15:1.0 18:1.0 27:1.0 31:0.2 52:0.046511627906976744 53:0.3333333333333333 58:0.5 66:0.4 99:0.3333333333333333 110:0.06666666666666667 111:0.18181818181818182 112:0.5 126:4.0 128:0.3333333333333333 135:0.5 153:1.0 191:1.0 240:0.25 260:0.2 286:1.0 423:0.5 582:1.0 602:1.0 616:0.1111111111111111 813:1.0 853:0.3333333333333333 960:0.5 1287:1.0 1301:1.0 1369:1.0 1464:1.0 1692:1.0 3534:1.0 3688:1.0 4173:1.0 4280:1.0 4310:1.0 4871:1.0 5272:0.125 5287:1.0 5422:1.0 6159:1.0 7007:1.0 7008:1.0
16 9:0.5 12:0.2857142857142857 15:1.0 18:0.5 31:0.4 41:1.0 48:0.6666666666666666 52:0.023255813953488372 58:0.5 59:0.3333333333333333 82:0.14285714285714285 99:0.3333333333333333 103:0.5 126:1.0 150:0.3333333333333333 153:1.0 185:0.25 240:0.25 296:0.3333333333333333 390:0.5 811:1.0 813:1.0 880:0.5 1025:0.3333333333333333 1091:1.0 1397:1.0 1439:1.0 1558:1.0 1559:1.0 1574:1.0 1971:0.5 2878:1.0 2902:1.0 3329:0.5 3435:0.2 3679:1.0 4827:1.0 5167:1.0 5378:1.0 5437:1.0 5502:1.0 7167:1.0
16 12:0.07142857142857142 16:0.6666666666666666 18:0.5 31:0.2 41:2.0 50:0.5 52:0.046511627906976744 66:0.4 82:0.14285714285714285 86:1.0 99:0.5 102:0.25 113:0.5 126:1.0 134:0.25 150:0.3333333333333333 215:0.2222222222222222 226:1.0 243:1.0 284:1.0 296:0.3333333333333333 330:0.5 336:1.0 342:0.2 345:0.25 380:1.0 388:1.0 516:0.3333333333333333 964:0.09090909090909091 984:1.0 1230:1.0 1397:1.0 1558:1.0 1559:1.0 1698:1.0 1746:1.0 2245:1.0 2462:1.0 2841:1.0 2981:1.0 3083:1.0 3114:1.0 3435:0.2 3494:1.0 4166:1.0 4280:1.0 4441:1.0 5279:1.0 5326:1.0 5378:1.0 5379:1.0 5380:1.0 5474:1.0 6195:0.5 7506:1.0
16 7:0.5 9:0.5 11:0.25 12:0.14285714285714285 14:1.0 15:1.0 18:0.5 31:0.2 66:0.2 82:0.14285714285714285 97:1.0 99:0.5 106:0.25 144:0.5 150:0.3333333333333333 260:0.1 437:2.0 445:1.0 460:1.0 482:1.0 516:0.3333333333333333 631:1.0 729:1.0 967:1.0 1032:0.25 1053:1.0 1424:1.0 1442:1.0 1748:0.5 1924:1.0 3463:1.0 5287:2.0 5470:1.0 5571:1.0 5837:1.0 6537:1.0 8068:1.0
16 7:1.0 12:0.21428571428571427 22:2.0 24:0.3333333333333333 41:1.0 52:0.023255813953488372 55:0.5 59:0.16666666666666666 66:0.2 88:0.3333333333333333 99:0.16666666666666666 103:1.0 110:0.06666666666666667 126:1.0 136:0.5 206:0.3333333333333333 221:1.0 233:1.0 236:0.1111111111111111 237:0.1 260:0.1 284:1.0 357:1.0 512:1.0 1315:1.0 1514:1.0 1757:0.5 1861:0.5 3294:1.0 3339:1.0 3350:1.0 3733:1.0 4778:1.0 5272:0.125 5300:0.5 5349:1.0 5427:1.0 5710:1.0 6041:1.0 6202:1.0 6516:1.0 6781:1.0 7759:1.0
16 12:0.2857142857142857 18:0.5 22:1.0 26:0.3333333333333333 31:0.2 52:0.046511627906976744 59:0.16666666666666666 110:0.06666666666666667 113:0.5 136:0.5 153:1.0 279:0.25 309:1.0 343:1.0 380:1.0 572:2.0 934:1.0 960:0.5 1025:0.3333333333333333 2825:1.0 3423:1.0 3539:1.0 5837:1.0 6080:1.0 6119:1.0 7482:1.0 7851:1.0
16 5:0.5 7:0.5 12:0.21428571428571427 15:1.0 16:0.3333333333333333 18:0.5 31:0.2 34:0.5 40:0.25 59:0.16666666666666666 66:0.2 99:0.3333333333333333 113:0.5 165:0.3333333333333333 189:1.0 221:1.0 260:0.1 279:0.5 303:0.5 308:1.0 309:1.0 437:1.0 448:1.0 450:0.5 618:1.0 857:1.0 871:0.5 967:1.0 1053:1.0 1148:0.5 1161:0.5 1748:0.5 1837:1.0 2989:1.0 3349:1.0 3440:0.3333333333333333 3736:1.0 4666:1.0 4933:1.0 4989:1.0 5167:1.0 5287:1.0 5619:1.0 6062:1.0 6119:1.0 6600:1.0 6890:1.0 8330:1.0
16 12:0.07142857142857142 52:0.023255813953488372 99:0.16666666666666666 113:0.5 132:1.0 215:0.1111111111111111 260:0.1 275:0.1111111111111111 326:1.0 390:0.5 448:1.0 511:0.5 757:1.0 811:1.0 964:0.09090909090909091 1025:0.3333333333333333 1074:1.0 1315:1.0 3255:1.0 3539:1.0 4619:1.0 5687:1.0 5837:1.0 7459:1.0
16 9:0.25 31:0.2 34:0.5 50:0.5 55:0.5 60:1.0 99:0.3333333333333333 106:0.25 136:0.5 160:1.0 222:0.3333333333333333 243:1.0 284:1.0 330:0.5 348:0.25 437:1.0 1121:0.05263157894736842 1399:1.0 1454:1.0 1461:1.0 1506:1.0 1508:1.0 1603:1.0 1748:0.5 3682:1.0 4213:1.0 4718:1.0 5411:1.0 6530:1.0 7500:1.0
16 12:0.07142857142857142 15:1.0 22:1.0 24:0.3333333333333333 52:0.023255813953488372 66:0.2 99:0.16666666666666666 103:0.5 105:0.16666666666666666 106:0.25 110:0.13333333333333333 126:1.0 136:0.5 222:0.3333333333333333 236:0.1111111111111111 853:0.3333333333333333 1223:1.0 1464:1.0 1517:1.0 1724:1.0 1984:1.0 3851:1.0 5272:0.125 5400:1.0 5757:1.0 6279:1.0
16 9:0.25 12:0.2857142857142857 14:3.0 15:1.0 16:0.3333333333333333 18:0.5 22:1.0 24:0.6666666666666666 33:1.0 36:0.09090909090909091 41:1.0 65:1.0 82:0.14285714285714285 86:1.0 97:1.0 99:0.3333333333333333 105:0.16666666666666666 126:2.0 150:0.3333333333333333 251:1.0 275:0.1111111111111111 279:0.25 296:0.3333333333333333 343:1.0 362:0.5 485:1.0 527:0.5 729:1.0 904:1.0 960:0.5 984:1.0 1025:0.3333333333333333 1149:1.0 1342:1.0 1397:1.0 1558:1.0 1559:1.0 1724:1.0 1984:1.0 2521:1.0 2688:0.5 3407:1.0 3435:0.2 5378:1.0 5608:0.5 7471:1.0
16 18:0.5 22:1.0 111:0.09090909090909091 126:2.0 128:0.3333333333333333 160:1.0 260:0.3 437:1.0 616:0.1111111111111111 646:1.0 795:0.25 853:0.3333333333333333 960:0.5 2140:0.3333333333333333 4310:1.0 5275:1.0 5276:1.0 5287:1.0 5341:1.0 5422:1.0 5619:1.0 5649:1.0 6890:1.0
16 9:0.25 12:0.21428571428571427 16:0.3333333333333333 31:0.2 55:1.0 59:0.3333333333333333 66:0.2 85:1.0 89:1.0 97:1.0 99:0.3333333333333333 136:0.5 186:1.0 189:1.0 191:1.0 341:0.5 348:0.25 380:1.0 604:1.0 737:1.0 746:1.0 755:0.125 823:1.0 957:1.0 1121:0.05263157894736842 1373:1.0 1411:1.0 1537:1.0 1541:1.0 3294:1.0 3762:1.0 5300:1.0 5349:1.0 5546:1.0 6303:1.0 6390:1.0 7660:1.0 7701:1.0
16 7:0.5 9:0.25 16:0.6666666666666666 18:0.5 22:1.0 24:0.3333333333333333 59:0.3333333333333333 66:0.6 99:0.16666666666666666 106:0.25 136:1.0 185:0.25 215:0.1111111111111111 286:1.0 348:0.25 632:1.0 793:1.0 984:1.0 1121:0.05263157894736842 1464:1.0 2465:1.0 2856:1.0 5066:1.0 5214:1.0 5272:0.125 5300:0.5 5344:0.2 5757:1.0 6073:1.0 6715:1.0 7526:1.0 8509:1.0
16 7:0.5 9:0.25 12:0.07142857142857142 15:1.0 16:0.3333333333333333 52:0.06976744186046512 59:0.3333333333333333 66:0.8 102:0.25 105:0.16666666666666666 126:1.0 128:0.3333333333333333 153:1.0 212:1.0 229:1.0 240:0.25 284:1.0 432:1.0 488:1.0 527:0.5 552:1.0 631:1.0 657:1.0 758:1.0 1121:0.05263157894736842 1276:0.3333333333333333 1410:1.0 1554:0.25 1724:1.0 2004:1.0 2379:1.0 2650:1.0 2667:1.0 2668:1.0 3873:1.0 5539:1.0 6104:1.0 6741:1.0 7644:1.0
16 9:0.25 12:0.07142857142857142 15:1.0 31:0.2 33:1.0 55:0.5 59:0.16666666666666666 66:0.4 106:0.5 110:0.06666666666666667 112:0.5 343:1.0 361:0.5 437:2.0 1118:1.0 1925:1.0 3123:1.0 3382:1.0 6701:1.0
16 7:0.5 12:0.07142857142857142 15:1.0 31:0.4 52:0.09302325581395349 55:0.5 81:0.5 110:0.26666666666666666 126:1.0 183:0.5 215:0.1111111111111111 236:0.1111111111111111 284:1.0 448:1.0 648:1.0 795:0.25 1074:1.0 1161:0.5 1369:1.0 1460:1.0 1558:2.0 1713:1.0 1748:0.5 1757:0.5 2159:0.5 2496:1.0 3291:1.0 5287:1.0 5348:1.0 6016:1.0 6977:1.0
16 7:1.0 9:0.25 12:0.07142857142857142 18:0.5 31:0.2 41:1.0 52:0.023255813953488372 55:0.5 59:0.3333333333333333 82:0.14285714285714285 86:1.0 99:0.3333333333333333 103:0.5 105:0.16666666666666666 127:0.3333333333333333 150:0.3333333333333333 165:0.3333333333333333 215:0.1111111111111111 236:0.3333333333333333 243:1.0 296:0.3333333333333333 984:1.0 1023:1.0 1397:1.0 1558:1.0 1559:1.0 1669:1.0 2377:1.0 2764:1.0 3352:1.0 3435:0.2 4230:1.0 4382:1.0 5378:1.0 5451:1.0 5608:0.5 8091:1.0 8092:1.0
16 11:0.25 12:0.07142857142857142 15:1.0 18:0.5 110:0.06666666666666667 136:0.5 328:0.25 1464:1.0 1846:1.0 2715:1.0 3064:1.0 4826:1.0 5272:0.125 5287:1.0 5618:1.0 5710:1.0 5858:1.0 5859:1.0 5862:1.0 8192:1.0
16 99:0.16666666666666666 746:1.0 1748:0.5 5272:0.125 5556:1.0
16 12:0.07142857142857142 15:1.0 18:0.5 31:0.4 47:0.3333333333333333 55:0.5 99:0.16666666666666666 111:0.09090909090909091 126:2.0 127:0.3333333333333333 260:0.1 342:0.2 550:0.3333333333333333 853:0.3333333333333333 1032:0.25 1541:1.0 2844:1.0 4173:1.0 4310:1.0 5341:1.0 5422:1.0 6368:1.0
16 7:0.5 9:0.25 12:0.14285714285714285 15:1.0 18:1.0 26:0.3333333333333333 31:0.4 36:0.09090909090909091 41:1.0 47:0.3333333333333333 59:0.16666666666666666 66:0.4 70:0.1111111111111111 82:0.14285714285714285 99:0.16666666666666666 104:1.0 111:0.09090909090909091 126:2.0 144:0.5 343:1.0 390:1.0 508:1.0 527:0.5 755:0.125 1032:0.25 1397:1.0 1464:1.0 1541:1.0 1558:1.0 1559:1.0 1846:1.0 2844:1.0 2989:1.0 3253:1.0 3435:0.2 3974:1.0 5378:1.0 5389:1.0 6415:1.0
16 9:0.25 47:0.3333333333333333 66:0.2 97:2.0 99:0.16666666666666666 105:0.16666666666666666 110:0.06666666666666667 342:0.2 1178:1.0 2033:1.0 2286:0.5 3104:1.0 3349:1.0 5287:1.0 5571:1.0
16 31:0.2 52:0.046511627906976744 59:0.16666666666666666 81:0.5 102:0.25 106:0.5 110:0.13333333333333333 125:1.0 160:1.0 236:0.1111111111111111 542:1.0 1121:0.05263157894736842 1178:1.0 1262:1.0 2445:1.0 2727:1.0 3034:1.0 3483:1.0 4338:1.0
16 3:0.5 9:0.25 12:0.21428571428571427 15:1.0 16:0.3333333333333333 22:3.0 59:0.16666666666666666 66:0.4 99:0.16666666666666666 103:0.5 106:0.25 111:0.09090909090909091 127:0.3333333333333333 136:0.5 191:1.0 236:0.1111111111111111 260:0.1 286:1.0 292:1.0 328:0.25 437:1.0 450:0.5 481:1.0 564:1.0 646:1.0 755:0.125 1024:1.0 1309:1.0 1464:1.0 1486:1.0 1778:1.0 2734:0.5 3144:1.0 4193:1.0 5100:1.0 5300:1.0 5757:1.0 7566:1.0 7567:1.0 7644:1.0 8559:1.0
16 7:0.5 12:0.14285714285714285 18:0.5 34:0.5 66:0.2 99:0.16666666666666666 106:0.25 150:0.3333333333333333 286:1.0 320:1.0 390:0.5 450:0.5 646:1.0 737:1.0 884:0.5 890:1.0 979:1.0 1151:0.5 1276:0.3333333333333333 1629:0.5 1948:1.0 2313:0.5 2397:0.3333333333333333 2414:1.0 3171:1.0 3679:1.0 3940:1.0 5300:1.0 5369:1.0 5958:1.0 6079:1.0
16 7:0.5 12:0.14285714285714285 15:2.0 18:0.5 22:1.0 24:0.3333333333333333 55:0.5 66:0.4 99:0.16666666666666666 103:0.5 104:1.0 105:0.16666666666666666 111:0.09090909090909091 186:1.0 236:0.1111111111111111 284:1.0 328:0.25 362:0.5 712:1.0 970:1.0 1315:1.0 1668:1.0 1748:0.5 2130:1.0 2723:0.16666666666666666 2821:1.0 4079:1.0 4404:1.0 5418:0.25 5470:1.0 5543:1.0 5636:1.0 6195:0.5 7471:1.0
16 3:0.5 12:0.14285714285714285 16:0.3333333333333333 31:0.4 33:1.0 47:0.3333333333333333 52:0.06976744186046512 59:0.3333333333333333 82:0.14285714285714285 99:0.16666666666666666 106:0.25 126:1.0 133:0.5 162:1.0 185:0.25 191:1.0 229:1.0 260:0.1 460:1.0 485:1.0 688:0.5 1554:0.25 1557:1.0 1746:0.5 1908:0.2 2950:1.0 2973:1.0 3034:1.0 5393:1.0 5394:1.0 5858:1.0 5859:1.0 7720:1.0 7899:1.0
16 7:0.5 12:0.07142857142857142 66:0.2 99:0.16666666666666666 110:0.06666666666666667 126:1.0 165:0.3333333333333333 279:0.25 371:1.0 813:1.0 2172:1.0 2980:2.0 3720:1.0 4294:1.0 4604:1.0 5534:1.0 5548:1.0 7022:1.0 7023:1.0 7024:1.0 7979:1.0
16 7:0.5 9:0.25 12:0.07142857142857142 31:0.2 60:1.0 222:0.3333333333333333 485:1.0 511:0.5 648:1.0 964:0.09090909090909091 1971:0.5 2116:1.0 4449:1.0 6452:1.0
16 9:0.25 12:0.14285714285714285 14:1.0 18:0.5 36:0.09090909090909091 41:1.0 59:0.3333333333333333 66:0.2 82:0.14285714285714285 97:2.0 99:0.3333333333333333 126:1.0 150:0.3333333333333333 296:0.3333333333333333 343:1.0 516:0.3333333333333333 960:0.5 1397:1.0 1557:1.0 1558:1.0 1559:1.0 2002:0.25 2119:1.0 2518:0.5 3435:0.2 5287:1.0 5378:1.0 5571:1.0 5608:0.5 6250:1.0
16 12:0.14285714285714285 15:2.0 18:1.0 22:1.0 27:1.0 99:0.16666666666666666 135:0.5 339:1.0 960:0.5 2193:0.5 4750:1.0 5470:1.0 6195:0.5 6198:1.0 6386:1.0 7074:1.0
16 12:0.07142857142857142 59:0.16666666666666666 103:0.5 236:0.2222222222222222 284:1.0 964:0.09090909090909091 1429:1.0 1527:1.0 1748:0.5 1984:1.0 2005:1.0 2159:0.5 2467:1.0 3999:1.0 5768:1.0 6247:1.0
16 7:0.5 12:0.07142857142857142 18:0.5 25:1.0 41:1.0 52:0.023255813953488372 53:0.3333333333333333 66:0.2 97:1.0 106:0.5 110:0.06666666666666667 136:0.5 357:1.0 507:1.0 527:0.5 572:1.0 653:1.0 688:0.5 706:1.0 825:1.0 1339:0.5 1340:1.0 2518:0.5 3580:1.0 4354:1.0 4666:1.0 5287:1.0 5451:1.0 5551:1.0 6195:1.0 6512:1.0 6999:1.0
16 11:0.25 12:0.14285714285714285 15:1.0 22:1.0 31:0.2 52:0.06976744186046512 66:0.2 102:0.25 126:1.0 128:0.3333333333333333 135:0.5 260:0.1 267:0.2 336:1.0 355:1.0 390:0.5 450:0.5 960:0.5 1411:1.0 2093:1.0 2140:0.3333333333333333 3998:1.0 5287:1.0 5752:1.0 6392:1.0 7661:1.0
16 15:1.0 16:0.3333333333333333 82:0.14285714285714285 99:0.3333333333333333 106:0.25 160:1.0 206:0.3333333333333333 275:0.1111111111111111 460:1.0 536:0.5 547:1.0 1424:1.0 1574:1.0 1613:0.5 2379:1.0 2950:1.0 3097:1.0 3440:0.3333333333333333 4778:1.0 4989:1.0 5193:1.0 5287:1.0 5635:0.5 5959:1.0 6247:1.0 6250:1.0
16 9:0.5 24:0.3333333333333333 53:0.3333333333333333 59:0.16666666666666666 66:0.6 88:0.3333333333333333 97:1.0 99:0.16666666666666666 105:0.16666666666666666 128:0.3333333333333333 133:0.5 136:0.5 237:0.2 275:0.1111111111111111 516:0.3333333333333333 618:1.0 713:1.0 1871:1.0 3184:1.0 3422:1.0 4166:1.0 5278:1.0 5287:1.0 5760:1.0 6250:1.0 7564:1.0
16 9:0.25 11:0.25 12:0.07142857142857142 15:1.0 52:0.023255813953488372 59:0.3333333333333333 99:0.16666666666666666 236:0.1111111111111111 260:0.1 508:1.0 616:0.1111111111111111 967:1.0 1032:0.25 1748:0.5 1780:1.0 1984:1.0 2244:1.0 2467:1.0 3329:0.5 3361:1.0 4989:1.0 5287:1.0 5289:1.0 5768:1.0 6250:1.0 6525:1.0 7256:1.0
16 57:1.0 59:0.16666666666666666 99:0.16666666666666666 110:0.06666666666666667 127:0.3333333333333333 191:1.0 260:0.1 717:1.0 1121:0.05263157894736842 3785:1.0 5759:1.0 6247:1.0 6250:1.0 8132:1.0
16 7:0.5 12:0.2857142857142857 18:1.0 31:0.4 41:1.0 52:0.023255813953488372 66:0.4 84:1.0 99:0.16666666666666666 102:0.25 106:0.25 111:0.09090909090909091 136:0.5 243:1.0 372:1.0 934:1.0 1044:1.0 1118:1.0 1410:1.0 1567:1.0 1631:0.5 1924:1.0 2178:0.5 2219:1.0 2270:1.0 2336:1.0 3873:1.0 3998:1.0 3999:1.0 4150:1.0 5272:0.125 5281:1.0 5287:1.0 5300:1.0 5519:0.5 5786:1.0 6537:1.0 6689:1.0 7077:0.5 8250:1.0 8296:1.0
16 3:1.0 7:0.5 12:0.07142857142857142 15:2.0 41:1.0 66:0.4 105:0.16666666666666666 106:0.5 123:0.5 222:0.3333333333333333 237:0.1 582:1.0 938:1.0 964:0.09090909090909091 1440:1.0 2219:1.0 2313:0.5 3369:1.0 3999:1.0 5300:0.5 5329:2.0 5519:0.5
16 9:0.25 12:0.14285714285714285 15:1.0 22:1.0 66:0.2 99:0.3333333333333333 106:0.25 191:1.0 527:0.5 1118:1.0 1260:1.0 1568:1.0 1613:0.5 2533:1.0 3097:1.0 5396:1.0 5519:0.5 5786:0.5 5959:1.0 7902:1.0
16 9:0.25 12:0.07142857142857142 15:1.0 99:0.16666666666666666 105:0.16666666666666666 582:1.0 737:1.0 938:1.0 1748:0.5 3833:1.0 5287:1.0 5346:1.0 5959:1.0 6303:1.0
16 7:0.5 12:0.14285714285714285 18:0.5 19:1.0 40:0.25 48:0.3333333333333333 52:0.046511627906976744 55:1.0 59:0.16666666666666666 66:0.2 99:0.16666666666666666 103:0.5 110:0.06666666666666667 126:1.0 136:0.5 160:1.0 185:0.5 256:1.0 293:1.0 542:1.0 604:1.0 688:0.5 758:1.0 811:1.0 964:0.09090909090909091 1276:0.3333333333333333 1340:1.0 1464:1.0 1910:1.0 2140:0.3333333333333333 2296:1.0 2432:1.0 2945:1.0 2967:1.0 3300:1.0 3579:1.0 4193:1.0 5260:1.0 5272:0.125 5295:2.0 5495:1.0 5497:1.0 5727:1.0 6022:1.0 6121:1.0 7643:1.0
16 12:0.07142857142857142 16:0.3333333333333333 18:1.0 52:0.06976744186046512 55:0.5 66:0.2 82:0.14285714285714285 88:0.3333333333333333 99:0.16666666666666666 102:0.25 103:0.5 106:0.25 236:0.1111111111111111 275:0.2222222222222222 450:0.5 542:1.0 622:1.0 960:0.5 1025:0.3333333333333333 1243:1.0 1276:0.3333333333333333 1517:1.0 1925:1.0 2219:1.0 2270:1.0 2318:1.0 2379:1.0 2452:0.3333333333333333 2823:1.0 2980:1.0 3048:1.0 3248:1.0 3733:1.0 4194:1.0 7728:1.0 8234:1.0 8286:1.0
16 12:0.21428571428571427 14:1.0 15:1.0 31:0.2 34:0.5 53:0.3333333333333333 59:0.3333333333333333 66:0.2 99:0.16666666666666666 110:0.13333333333333333 126:1.0 127:0.3333333333333333 136:0.5 139:1.0 155:0.5 268:1.0 390:0.5 437:1.0 463:1.0 523:1.0 795:0.25 853:0.3333333333333333 868:1.0 943:1.0 1558:1.0 2856:0.5 3172:1.0 3659:1.0 4310:1.0 5300:0.5 5341:1.0 5422:1.0 6279:1.0 6686:2.0
16 7:0.5 12:0.07142857142857142 14:1.0 33:1.0 48:0.3333333333333333 59:0.16666666666666666 66:0.8 99:0.16666666666666666 102:0.5 103:0.5 106:0.25 110:0.06666666666666667 112:0.5 134:0.25 136:0.5 162:1.0 268:1.0 310:1.0 437:1.0 687:0.5 721:1.0 756:1.0 853:0.3333333333333333 1472:1.0 1665:1.0 2336:1.0 3282:1.0 5287:1.0 5762:1.0 5763:1.0 5764:1.0 5765:1.0 6796:1.0 7134:1.0 7523:1.0
16 7:1.0 18:0.5 22:1.0 41:2.0 59:0.16666666666666666 82:0.14285714285714285 84:1.0 86:1.0 99:0.16666666666666666 102:0.25 110:0.06666666666666667 126:1.0 150:0.3333333333333333 153:1.0 260:0.1 296:0.3333333333333333 355:1.0 394:1.0 435:1.0 473:0.5 811:1.0 880:0.5 960:0.5 984:1.0 1113:0.5 1397:1.0 1472:1.0 1558:1.0 1559:1.0 2140:0.3333333333333333 3435:0.2 5287:1.0 5378:1.0 5608:0.5 6339:1.0
16 3:0.5 12:0.14285714285714285 14:1.0 15:2.0 18:0.5 22:1.0 24:0.3333333333333333 33:2.0 36:0.09090909090909091 41:1.0 55:0.5 59:0.16666666666666666 66:0.4 82:0.2857142857142857 99:0.3333333333333333 110:0.06666666666666667 136:0.5 150:0.3333333333333333 178:1.0 243:1.0 284:1.0 296:0.3333333333333333 343:1.0 348:0.25 363:1.0 795:0.25 878:1.0 957:1.0 960:0.5 1074:1.0 1223:1.0 1397:1.0 1464:1.0 1558:1.0 1559:1.0 2262:1.0 2518:0.5 3435:0.2 4193:1.0 5050:1.0 5272:0.125 5287:1.0 5378:1.0 5379:1.0 5380:1.0 6514:1.0
16 9:0.25 12:0.07142857142857142 15:1.0 18:0.5 24:0.3333333333333333 66:0.4 82:0.14285714285714285 106:0.5 162:1.0 260:0.1 342:0.2 437:1.0 527:1.0 671:0.3333333333333333 957:1.0 1748:0.5 2140:0.3333333333333333 2372:1.0 5046:1.0 5281:1.0 8555:1.0
16 15:1.0 18:0.5 22:1.0 50:0.5 57:1.0 59:0.16666666666666666 82:0.14285714285714285 97:1.0 99:0.3333333333333333 111:0.18181818181818182 191:1.0 260:0.2 284:1.0 303:0.5 406:0.5 527:0.5 1600:2.0 1748:0.5 3017:1.0 4643:0.5 5050:1.0 5287:1.0 5764:1.0 5817:1.0 5959:1.0 7423:1.0 8270:1.0
16 7:0.5 12:0.07142857142857142 14:1.0 15:2.0 31:0.2 52:0.023255813953488372 53:0.3333333333333333 59:0.16666666666666666 66:0.2 70:0.1111111111111111 99:0.16666666666666666 102:0.25 127:0.3333333333333333 215:0.1111111111111111 240:0.25 334:1.0 437:2.0 511:0.5 616:0.1111111111111111 632:1.0 811:1.0 1460:1.0 1842:1.0 1908:0.2 3329:0.5 3469:0.5 3707:1.0 3749:0.5 5332:0.5 7968:1.0 8422:1.0
16 7:0.5 12:0.07142857142857142 53:0.3333333333333333 59:0.3333333333333333 60:1.0 66:0.2 97:1.0 99:0.3333333333333333 134:0.25 226:1.0 286:1.0 309:1.0 343:1.0 657:1.0 688:0.5 960:0.5 1037:1.0 1121:0.05263157894736842 1486:1.0 1928:1.0 1963:1.0 2178:0.5 2303:1.0 4395:1.0 5060:1.0 5332:0.5 5341:1.0 6386:1.0 7396:1.0 7504:1.0
16 9:0.25 12:0.07142857142857142 31:0.2 33:1.0 52:0.046511627906976744 53:0.3333333333333333 59:0.16666666666666666 81:0.5 102:0.25 150:0.3333333333333333 191:1.0 215:0.2222222222222222 275:0.1111111111111111 323:0.5 409:1.0 432:1.0 523:1.0 618:1.0 661:0.25 812:0.3333333333333333 853:0.3333333333333333 884:0.5 1121:0.05263157894736842 1223:1.0 1712:1.0 1904:1.0 2170:1.0 2306:1.0 5300:0.5 5427:1.0 6202:1.0 6222:1.0 6265:1.0 7266:1.0 8231:1.0
16 7:0.5 18:0.5 22:1.0 34:0.5 48:0.3333333333333333 59:0.16666666666666666 82:0.14285714285714285 97:1.0 99:0.3333333333333333 105:0.16666666666666666 111:0.09090909090909091 136:0.5 214:1.0 260:0.1 622:1.0 960:0.5 1464:1.0 1554:0.25 3274:1.0
16 7:0.5 12:0.5 15:2.0 31:0.2 33:2.0 55:0.5 76:1.0 105:0.16666666666666666 106:0.25 110:0.06666666666666667 124:1.0 191:1.0 279:0.25 286:1.0 324:1.0 466:1.0 516:0.3333333333333333 616:0.2222222222222222 631:1.0 745:1.0 746:1.0 1113:1.0 1167:1.0 1831:1.0 2219:1.0 3404:1.0 3713:1.0 4109:1.0 5281:1.0 5283:1.0 5340:1.0 6002:1.0 7916:1.0 7981:1.0
16 7:0.5 12:0.14285714285714285 31:0.2 41:1.0 52:0.023255813953488372 58:0.5 99:0.16666666666666666 110:0.06666666666666667 189:1.0 482:1.0 521:0.5 616:0.1111111111111111 857:1.0 943:1.0 1032:0.5 1924:1.0 2140:0.3333333333333333 2379:1.0 2859:1.0 4901:1.0 5283:1.0 6184:1.0
16 7:0.5 33:1.0 52:0.023255813953488372 53:0.3333333333333333 66:0.2 126:1.0 215:0.1111111111111111 284:1.0 528:1.0 788:0.25 1086:1.0 2640:0.5 5863:1.0 6195:0.5 6250:1.0 6576:1.0 6741:1.0 6911:1.0 7490:1.0
16 7:1.0 9:0.25 11:0.25 12:0.14285714285714285 15:2.0 18:0.5 52:0.023255813953488372 66:0.4 102:0.25 111:0.09090909090909091 135:0.5 150:0.3333333333333333 215:0.2222222222222222 320:1.0 342:0.4 402:1.0 421:1.0 511:0.5 527:0.5 536:0.5 868:1.0 884:0.5 890:1.0 967:1.0 1026:1.0 1114:1.0 1456:1.0 2422:1.0 2541:1.0 5283:1.0 5300:0.5 5453:1.0 5519:0.5 5732:1.0 5786:0.5 5790:2.0 6030:1.0 7860:1.0
16 7:0.5 12:0.14285714285714285 15:1.0 18:0.5 31:0.2 59:0.16666666666666666 66:0.2 106:0.25 260:0.1 279:0.25 355:1.0 362:0.5 823:1.0 964:0.09090909090909091 1113:0.5 3142:1.0 4901:1.0 5283:1.0 5482:1.0 5510:1.0 6100:1.0 6146:1.0 6285:1.0
16 7:0.5 9:0.25 12:0.21428571428571427 15:1.0 16:0.3333333333333333 31:0.2 41:1.0 52:0.023255813953488372 66:0.2 85:1.0 99:0.3333333333333333 136:0.5 260:0.1 960:0.5 967:1.0 1464:1.0 1558:1.0 2650:1.0 2808:1.0 3184:1.0 3435:0.2 4193:1.0 5272:0.125 5287:1.0 5358:1.0 5413:1.0 5497:1.0 5781:1.0 6285:1.0 7881:1.0 7923:1.0 8192:1.0
16 7:1.0 9:0.5 18:1.0 41:2.0 48:0.3333333333333333 59:0.3333333333333333 66:0.4 97:1.0 99:0.16666666666666666 110:0.06666666666666667 126:1.0 127:0.3333333333333333 134:0.25 223:0.5 237:0.1 275:0.1111111111111111 279:0.25 330:0.5 362:0.5 437:1.0 516:0.3333333333333333 585:0.5 664:0.3333333333333333 700:1.0 825:1.0 839:1.0 853:0.3333333333333333 960:0.5 1032:0.25 1074:1.0 1087:1.0 1121:0.05263157894736842 1206:0.5 2002:0.25 2804:1.0 2989:1.0 4790:1.0 5322:1.0 5323:1.0 7965:1.0
|
82d421b8bc4638e2b16e9477fc056a9daa98e191 | 2c2dc93267283e4aebcffffd5bd76e19ddcf5cc7 | /output/C45/Prob-resultC45.tst | 2983807503b1476bd7c7145a75e9c48bc0722385 | [] | no_license | joseangeldiazg/probabilistic_keel | c9cf4ddc2cf750cbbeca88e6f84218084892ae1f | 6c5ddf8c98cc7431d523b291e521d1e8607dc662 | refs/heads/master | 2020-05-21T12:26:41.754863 | 2017-01-08T10:29:44 | 2017-01-08T10:29:44 | 55,733,275 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 816 | tst | Prob-resultC45.tst | True-Class Iris-setosa Iris-versicolor Iris-virginica
Iris-setosa 1.0 0.0 0.0
Iris-setosa 1.0 0.0 0.0
Iris-setosa 1.0 0.0 0.0
Iris-setosa 1.0 0.0 0.0
Iris-setosa 0.0 0.9772727272727273 0.022727272727272728
Iris-versicolor 0.0 0.9772727272727273 0.022727272727272728
Iris-versicolor 0.0 0.9772727272727273 0.022727272727272728
Iris-versicolor 0.0 0.9772727272727273 0.022727272727272728
Iris-versicolor 0.0 0.9772727272727273 0.022727272727272728
Iris-versicolor 0.0 0.9772727272727273 0.022727272727272728
Iris-virginica 0.0 0.023809523809523808 0.9761904761904762
Iris-virginica 0.0 0.023809523809523808 0.9761904761904762
Iris-virginica 0.0 0.9772727272727273 0.022727272727272728
Iris-virginica 0.0 0.023809523809523808 0.9761904761904762
Iris-virginica 0.0 0.023809523809523808 0.9761904761904762 |
1608eafeb2893784fde1960f6e44f34e32ab9b8b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH5/EX5.8/Ex5_8.sce | 7f13d6769c6efb49ab20eff2c1b2e642571b8a73 | [] | 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,421 | sce | Ex5_8.sce | //scilab 5.4.1
clear;
clc;
printf("\t\t\tProblem Number 5.8\n\n\n");
// Chapter 5 : Properties Of Liquids And Gases
// Problem 5.8 (page no. 193)
// Solution
//Using Table 2 ans a quality of 85%(x=0.85),we have
//at 1.0 MPa
x=0.85;
sf=2.1387; //saturated liquid entropy //Unit:kJ/kg*K
sfg=4.4487; //Evap. Entropy //Unit:kJ/kg*K
hf=762.81; //saturated liquid enthalpy //Unit:kJ/kg
hfg=2015.3; //Evap. Enthalpy //Unit:kJ/kg
uf=761.68; //saturated liquid internal energy //Unit:kJ/kg
ufg=1822.0; //Unit:kJ/kg //Evap. internal energy
vf=1.1273; //Saturated liquid specific volume //Unit:m^3/kg
vfg=(194.44-1.1273); //evap. specific volume //Unit:m^3/kg
sx=sf+(x*sfg); //entropy //kJ/kg*K
printf("Entropy of a wet steam mixture at 1.0 MPa is %f kJ/kg*K\n",sx);
hx=hf+(x*hfg); //enthalpy //kJ/kg*K
printf("Enthalpy of a wet steam mixture at 1.0 MPa is %f kJ/kg\n",hx);
ux=uf+(x*ufg); //internal energy //kJ/kg*K
printf("Internal energy of a wet steam mixture at 1.0 MPa is %f kJ/kg\n",ux);
vx=(vf+(x*vfg))*(0.001); //specific volume //m^3/kg
printf("Specific Volume of a wet steam mixture at 1.0 MPa is %f m^3/kg\n",vx);
//As a check,
px=10^6; //psia //pressure
ux=hx-((px*vx)/10^3); //1 ft^2=144 in^2 //internal energy
printf("As a check,\n")
printf("Internal energy of a wet steam mixture at 120 psia is %f kJ/kg\n",ux);
printf("Which agrees with the values obtained above");
|
993de3505c784299cbc80018a6d75779fa4430a3 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/L08.prev.tst | e1d1292a18511625c518e5778fb02fb8ed53f6b1 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,313 | tst | L08.prev.tst | # possible rows[0] for target 19
5 1 0 0
1 4 0 0
2 2 1 0
3 0 2 0
0 1 3 0
3 1 0 1
0 2 1 1
1 0 2 1
1 1 0 2
# rows in subarray[0]: 9
# possible rows[1] for target 18
6 0 0 0
2 3 0 0
3 1 1 0
0 2 2 0
1 0 3 0
4 0 0 1
0 3 0 1
1 1 1 1
2 0 0 2
0 0 0 3
# rows in subarray[1]: 10
# possible rows[2] for target 21
7 0 0 0
3 3 0 0
4 1 1 0
0 4 1 0
1 2 2 0
2 0 3 0
5 0 0 1
1 3 0 1
2 1 1 1
0 0 3 1
3 0 0 2
0 1 1 2
1 0 0 3
# rows in subarray[2]: 13
# possible rows[3] for target 28
8 1 0 0
4 4 0 0
0 7 0 0
5 2 1 0
1 5 1 0
6 0 2 0
2 3 2 0
3 1 3 0
0 2 4 0
1 0 5 0
6 1 0 1
2 4 0 1
3 2 1 1
4 0 2 1
0 3 2 1
1 1 3 1
4 1 0 2
0 4 0 2
1 2 1 2
2 0 2 2
2 1 0 3
0 0 2 3
0 1 0 4
# rows in subarray[3]: 23
# possible combinations: 26910
# Vector-div: unimodular matrix preserved 8
2 2 1 0
1 1 1 1
1 2 2 0
2 3 2 0
|
5708ae03fa7c18c934560ffb706292bb274b9e8c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3836/CH8/EX8.5/Ex8_5.sce | e02d4eec78c50785f88b074c2d68b60622b6a183 | [] | 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 | 768 | sce | Ex8_5.sce | clear
//Initialisation
OG=2*10**5 //Open Loop Gain
CG=20 //Closed Loop Gain
OR1=75 //Output Resistance
IR1=2*10**6 //Input Resistance
R1=20*10**3 //Resistnce in Ohm
R2=10**3 //Resistnce in Ohm
//Calculation
AB=OG*CG**-1 //factor (1+AB)
OR2=OR1*AB**-1 //Output Resistance
//the input is connected to a virtual earth point by the resistance R2,
//so the input resistance is equal to R 2 ,
IR2=R2 //Input Resistance
//Result
printf("\n Output Resistance = %.1f mOhm\n",OR2*1000)
printf("\n Input Resistance = %d KOhm",IR2*10**-3)
|
c96b8d7e7ef659aba88b9ec8fbb1c4feee7dd6b3 | 4c59f4da523df5b09b8bcd1a4b390c093a26b9b0 | /Analyse numérique appliqué/SCILAB/test.sci | 4fc836d162d1469e343aaa5e2626201db605e5ad | [
"BSD-3-Clause"
] | permissive | ticuss/Mon-parcours | efcb633d5461b9af7a4426e252b5bcde8b676deb | 85e162691feb4008372584b1922dbd0c4c11f18f | refs/heads/master | 2023-03-27T11:05:14.832185 | 2021-03-26T15:59:16 | 2021-03-26T15:59:16 | 274,419,849 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 618 | sci | test.sci |
//Initialiser
C0 = 25
R0 = 5
V0 = [C0;R0]
//la matrice de coefficients
A = [0.5 0.4;-0.104 1.1]
//nombre de mois
n = 20
M = zeros(2,2)
M(1,1) = C0
M(2,1) = R0
V=V0
for i = 2:n
V(1:2,i) = A*V(1:2,i-1)
scf(0)
clf(0)
a=get("current_axes");
a.x_location="origin";
a.y_location="origin";
xtitle("rats et chouettes en cours du temps","mois","effectif")
plot(V(1,:),'bp:')
plot(V(2,:),'gs-')
legend(['chouettes','rats (en milliers)'])
//2e façon
//
scf(1)
//
clf(1)
//
b=get("current_axes")
//
b.x_location="origin";
//
b.y_location="origin";
//
plot2d(1:n,V(1,:),color("red"))
//
plot2d(1:n,V(2,:),color("blue"))
end
|
c0e1ed05dbd0a9d8f949953eadd7bb5a198a6406 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH9/EX9.17/Ex9_17.sce | 788bee8be5e7ab368d8d66994be6ed899cadbe3c | [] | 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 | 307 | sce | Ex9_17.sce | clc;
Rc=8000; //Ohm
Zin1=1330; //Ohm
rc1=(Rc*Zin1)/(Rc+Zin1);//Ohm
re=25; //Ohm
Zin2=1730; //Ohm
rc2=(Rc*Zin2)/(Rc+Zin2);//Ohm
re=25;//Ohm
Av1=rc1/re;
Av2=rc2/re;
disp(' ',Av1,"Av1=");//The answers vary due to round off error
disp(' ',Av2,"Av2=");//The answers vary due to round off error
|
67decfd52611b71052ccf5b8fa519775c027cb21 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/CF5.prev.tst | 36106a5e55b6d3b2b0720e5b193ee68d04df9626 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,069 | tst | CF5.prev.tst | 0; 1/1, 1/1, 1/2, 1/1, 1/2, 1/1, 1/4, 1/3, 1/13, 1/5, 1/1, 1/1, 1/8, 1/1, 1/2, 1/4, 1/1, 1/1, 1/40, 1/1, 1/11, 1/3, 1/7, 1/1, 1/7, 1/1, 1/1, 1/5, 1/1, 1/49, 1/4, 1/1, 1/65, 1/1, 1/4, 1/7, 1/11, 1/1, 1/399, 1/2, 1/1, 1/3, 1/2, 1/1, 1/2, 1/1, 1/5, 1/3, 1/2, 1/1, 1/10, 1/1, 1/1, 1/1, 1/1, 1/2, 1/1, 1/1, 1/3, 1/1, 1/4, 1/1, 1/1, 1/2, 1/5, 1/1, 1/3, 1/6, 1/2, 1/1, 1/2, 1/1, 1/1, 1/1, 1/2, 1/1, 1/3, 1/16, 1/8, 1/1, 1/1, 1/2, 1/16, 1/6, 1/1, 1/2, 1/2, 1/1, 1/7, 1/2, 1/1, 1/1, 1/1, 1/3, 1/1, 1/2, 1/1, 1/2, 1/13, 1/5, 1/1, 1/1, 1/1, 1/6, 1/1, 1/2, 1/3, 1/3, 1/1, 1/1, 1/1, 1/4, 1/11, 1/1, 1/18, 1/121, 1/1, 1/2, 1/1, 1/1, 1/3, 1/1, 1/8, 1/1, 1/15, 1/1, 1/22, 1/1, 1/2, 1/20, 1/9, 1/3, 1/4, 1/4, 1/2, 1/1, 1/2, 1/1, 1/2, 1/1, 1/2, 1/15, 1/1, 1/1, 1/12, 1/3, 1/1, 1/11, 1/8, 1/2, 1/1, 1/12, 1/1, 1/14, 1/4, 1/1, 1/1, 1/2, 1/5, 1/3, 1/1, 1/4, 1/2, 1/2, 1/24, 1/3, 1/1, 1/6, 1/1, 1/5, 1/1, 1/1, 1/1, 1/1, 1/2, 1/1, 1/4, 1/2, 1/2, 1/1, 1/14, 1/9, 1/1, 1/2, 1/1, 1/4, 1/1, 1/2, 1/2, 1/6, 1/8, 1/2, 1/3, 1/1, 1/16, 1/1, 1/6, 1/1, 1/2, 1/1, 1/7, 1/1, 1/2, 1/1, 1/4, 1/2, 1/2, 0/1
|
3af1579039035219b48eda5fbc6fc4128702e71c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2561/CH7/EX7.1/Ex7_1.sce | ee7217691f3cfd96bfbabdf6e451f8df06e177de | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 315 | sce | Ex7_1.sce | //Ex7_1
clc
A=60000
disp("A= "+string(A)) //Amplifier gain
Af=10000
disp("Af= "+string(Af)) //Feedback gain
N_dB=20*log10(Af/A)
disp("N_dB=20*log10(Af/A)= "+string(N_dB)+"dB") //Negative feedback gain
B=[1/(Af)]-(1/A)// formulae using [Af=A/(1+A*B)]
disp("B=[1/(Af)]-(1/A)= "+string(B)) //Feedback factor
|
65262866a4a48ec207f1bdb865e6147340aff4ed | f0f8c3007dd6918302e739f0ba21f52356b377aa | /test/blinky2_b.tst | 4c0263076f57ef17327d609b5ae6aad702f6c27e | [] | no_license | FREDY1969/tampa-bay-python-avr.old-py2k-wx | a19064731395ac0dc3f00aa26b1fced446b02f08 | b3bf6d363df8c38293b72353999ec16a6d2731f8 | refs/heads/master | 2016-09-08T15:53:33.743877 | 2010-03-12T22:13:21 | 2010-03-12T22:13:21 | 40,279,870 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 197 | tst | blinky2_b.tst | # blinky2_b.tst
Test the blinky2 example:
>>> import examples
>>> test2 = examples.test_compile('blinky2', False)
Traceback (most recent call last):
...
NameError: name 'run' is not defined
|
13fe1b94cd6888bf100afa0dc588d07253fa7b35 | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/disassembler/cpi.instr.tst | f3b59160e84c64d775e643ea756626616d469502 | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,192 | tst | cpi.instr.tst | ; @Harness: disassembler
; @Result: PASS
section .text size=0x00000054 vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0
section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x00000088 ;2**0
start .text:
label 0x00000000 ".text":
0x0: 0x0f 0x37 cpi r16, 0x7F ; 127
0x2: 0x1f 0x37 cpi r17, 0x7F ; 127
0x4: 0x2f 0x37 cpi r18, 0x7F ; 127
0x6: 0x3f 0x37 cpi r19, 0x7F ; 127
0x8: 0x4f 0x37 cpi r20, 0x7F ; 127
0xa: 0x5f 0x37 cpi r21, 0x7F ; 127
0xc: 0x6f 0x37 cpi r22, 0x7F ; 127
0xe: 0x7f 0x37 cpi r23, 0x7F ; 127
0x10: 0x8f 0x37 cpi r24, 0x7F ; 127
0x12: 0x9f 0x37 cpi r25, 0x7F ; 127
0x14: 0xaf 0x37 cpi r26, 0x7F ; 127
0x16: 0xbf 0x37 cpi r27, 0x7F ; 127
0x18: 0xcf 0x37 cpi r28, 0x7F ; 127
0x1a: 0xdf 0x37 cpi r29, 0x7F ; 127
0x1c: 0xef 0x37 cpi r30, 0x7F ; 127
0x1e: 0xff 0x37 cpi r31, 0x7F ; 127
0x20: 0x0f 0x3f cpi r16, 0xFF ; 255
0x22: 0x00 0x30 cpi r16, 0x00 ; 0
0x24: 0x0f 0x37 cpi r16, 0x7F ; 127
0x26: 0x0f 0x33 cpi r16, 0x3F ; 0x63
0x28: 0x0f 0x31 cpi r16, 0x1F ; 0x31
0x2a: 0x0f 0x30 cpi r16, 0x0F ; 0x15
0x2c: 0x07 0x30 cpi r16, 0x07 ; 7
0x2e: 0x03 0x30 cpi r16, 0x03 ; 3
0x30: 0x01 0x30 cpi r16, 0x01 ; 1
0x32: 0x00 0x3f cpi r16, 0xF0 ; 240
0x34: 0x08 0x37 cpi r16, 0x78 ; 120
0x36: 0x0c 0x33 cpi r16, 0x3C ; 0x60
0x38: 0x0e 0x31 cpi r16, 0x1E ; 0x30
0x3a: 0x0c 0x3c cpi r16, 0xCC ; 204
0x3c: 0x06 0x36 cpi r16, 0x66 ; 102
0x3e: 0x03 0x33 cpi r16, 0x33 ; 0x51
0x40: 0x09 0x31 cpi r16, 0x19 ; 0x25
0x42: 0x0c 0x30 cpi r16, 0x0C ; 0x12
0x44: 0x06 0x30 cpi r16, 0x06 ; 6
0x46: 0x0a 0x3a cpi r16, 0xAA ; 170
0x48: 0x05 0x35 cpi r16, 0x55 ; 0x85
0x4a: 0x0a 0x32 cpi r16, 0x2A ; 0x42
0x4c: 0x05 0x31 cpi r16, 0x15 ; 0x21
0x4e: 0x0a 0x30 cpi r16, 0x0A ; 0x10
0x50: 0x05 0x30 cpi r16, 0x05 ; 5
0x52: 0x02 0x30 cpi r16, 0x02 ; 2
start .data:
|
5afba36d2900ab65166ef2e53c6ee804c340a588 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/IncNavierStokesSolver/Tests/PrismHex_channel_m4.tst | a21024a3ff371ecc17b76ad36f02d3fcb0f3334f | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,024 | tst | PrismHex_channel_m4.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>3D channel flow, Hexahedral and Prismatic elements, P=4</description>
<executable>IncNavierStokesSolver</executable>
<parameters>PrismHex_channel_m4.xml</parameters>
<files>
<file description="Session File">PrismHex_channel_m4.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="1e-12">1.79242e-15</value>
<value variable="v" tolerance="1e-12">1.76764e-15</value>
<value variable="w" tolerance="1e-12">7.97721e-15</value>
<value variable="p" tolerance="1e-12">1.11992e-13</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="1e-12">9.44016e-15</value>
<value variable="v" tolerance="1e-12">9.24349e-15</value>
<value variable="w" tolerance="1e-12">4.39926e-14</value>
<value variable="p" tolerance="1e-12">6.00853e-13</value>
</metric>
</metrics>
</test>
|
c132ef8ed9b958a545a283e2fc678c9a45b69f55 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH12/EX12.18/12_18.sce | fe55a49256386bf6d8684ed936eb8e5173c0846f | [] | 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 | 162 | sce | 12_18.sce | clear; clc; close;
Tj = 200;
Ta = 40;
Qjc = 0.5;
Qcs = 0.6;
Qsa = 1.5;
Pd = (Tj-Ta)/(Qjc+Qcs+Qsa);
disp(Pd,'Maximum power dissipated(Watts) = ');
|
c6067123d0dfdc073f3e5e2ffea3bcc6be4679ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH9/EX9.2/ex2.sce | a8f05131c7c67317f89d94fddf5c8decae9a9249 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | WINDOWS-1252 | Scilab | false | false | 1,910 | sce | ex2.sce | //ques2
//The Ideal Otto Cycle
clear
clc
//the temperature and pressure of air at the end of the isentropic compression process (state 2), using data from Table A–17
T1=290;//initial temp in K
u1=206.9;//initial internal energy in kJ/kg
vr1=676.1;//initial reduced volume
//Process 1-2 (isentropic compression of an ideal gas)
//vr2/vr1=v2/v1=1/r
r=8;//ratio
vr2=vr1/r;//reduced volume at state 2
//using table corresponding to vr2
T2=652.4;//final temp in K
u2=475.11;//final internal energy in kJ/kg
P1=100;//initial pressure in kPa
P2=P1*T2/T1*r;//final pressure in kPa
//Process 2-3 (constant-volume heat addition)
Qin=800;//heat input in kJ/kg
u2=1275.11;// intenal energy at state 2 in kJ/kg
u3=Qin+u2;//internal energy at state 3 in kJ/kg
//using tables corresponding to u3
T3=1575.1;//temperature at state 3 in K
vr3=6.108;//reduced volume at state 3
printf('(a) T3,Temperature at state 3 = %.1f K \n',T3);
vr3=6.108;//reduced volume at state 3
P3=P2*(T3/T2)*1;//1 for v2/v3
printf(' Pressure P3 = %.3f MPa \n',P3/1000);
//(b)
vr3=r*vr3;
//now from table
T4=795.6;//temp at state 4 in K
u4=588.74;//internal energy at state 4 in kJ/kg
//Process 4-1 (constant-volume heat rejection)
Qout=u4-u1;//heat output in kJ/kg
w=Qin-Qout;//work done in kJ/kg
printf(' (b) Net work done = %.2f kJ/kg \n',w);
//(c)
nth=w/Qin;//efficiency of heat engine
k=1.4;//constant
no=1-r^(1-k);//thermal efficiency
printf(' (c) The thermal efficiency of the cycle is determined from its definition = %.3f \n',nth);
printf(' Under the cold-air-standard assumptions thermal efficiency would be = %.3f \n',no);
//(d)
//The mean effective pressure is determined from its definition
R=0.287//gas constant for water
v1=R*T1/P1//specific volume at state 1
MEP=w/(v1*(1-1/r));//mean effective pressure in kPa
printf(' (d) Mean effective pressure = %.0f kPa \n',MEP);
|
528b77f40368bcf0e790adbdf7b65d449b4cbce7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH10/EX10.17/example10_17.sce | 041a06d294bed4fbb8edcb9666d20d85604baa83 | [] | 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 | 312 | sce | example10_17.sce | v1=8;
v2=20;
r1=1;
r2=2;
r3=3;
r4=4;
r5=5;
i1=2;
vx=(i1-v2/r5+v1*r4*(1/r4+1/r5)/(r1+r2))/((1/r3+1/r4+1/(r1+r2))*(1/r4+1/r5)*r4-1/r4);
vy=r4*((vx*(1/r3+1/r4+1/(r1+r2)))-v1/(r1+r2));
i4=(vx-vy)/r4;
disp("the current (in mA) flowing through R4 is"); disp(i4);
disp("and the direction is left to right"); |
2a71313e3b00017946b0290ef8751ff708477baa | 6fceb8a7cf65333dfe75020d8e295f16381216d8 | /Thesis/codes/binary_tree_reliability.sce | 5bb5a66d5e50e01266716359f9560377dfb48cf5 | [] | no_license | eamanu/ThesisDesarrolloInformaticoDeAplicacionEspacial | 69fd4e253c7c85166cc9abbabc7d316dfe90c896 | 313af0b4b793a9912a3dfc7d02232eed5fcce2b5 | refs/heads/master | 2020-04-05T00:09:14.555117 | 2018-10-27T11:31:54 | 2018-10-27T11:32:41 | 156,385,548 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,358 | sce | binary_tree_reliability.sce | function [R_sys] = reliabilityCalc(lambda, c, n)
//open a file
fid = mopen("data.txt", "w");
if (fid==-1) then
error("cannot open the file")
end
t = [0:0.0001:1];
//calc of reliability
R = %e^(lambda*-t);
//calc of reliability without redundancy
R_nr = R .^ ((2^n)-1);
//write file
sR = size(R_nr);
mfprintf(fid, "%ld\n",-255) ;
for i = 1:sR(2)
mfprintf(fid, "%f ", R_nr(i));
end
//calc Reliability of system with redundance for different c
// figure();
// set(gca(),"auto_clear","off");
//xlabel("time");
// ylabel("Reliability");
//plot(t, R_nr, "black");
R_sys = null;
r_int = 1;
for j = 0:(n-1)
k = j;
r_int = r_int .* ((2^k * c + 1) - 2^k * c * R);
end
R_sys = R_nr .* r_int;
//size of R_sys
sR = size(R_sys);
mfprintf(fid, "%d\n", -255);
for k = 1 : sR(2)
mfprintf(fid, "%f", R_sys(k));
end
plot (t, R_sys, "r-");
xlabel("Tiempo adimensional")
ylabel("Confiabilidad")
f=get("current_figure")
f.background = 8;
legend(['R(sys) con c = 1']);
mclose(fid)
return R_sys;
//////////////////////////////////////////////////////////////////////
l = size(c);
for i = 1:l(2)
R_sys =null;
r_int=1;
for j = 0:(n-1)
k = j;
r_int = r_int .* (( 2^k * c(i) + 1) - 2^k * c(i) * R);
end
R_sys = R_nr .* r_int;
//size of R_sys
sR = size(R_sys);
mfprintf(fid, "%d\n", -255);
//c = 0.98
if i==1 then
for k=1:sR(2)
mfprintf(fid, "%f ", R_sys(k));
end
plot(t, R_sys,"r--");
end
//c = 0.99
if i==2 then
for k=1:sR(2)
mfprintf(fid, "%f ", R_sys(k));
end
plot(t, R_sys,"b-.");
end
//c = 1
if i==3 then
for k=1:sR(2)
mfprintf(fid, "%f ", R_sys(k));
end
plot(t, R_sys,"cyan-+");
end
end
legend(['R Not redundant';'C=0.98'; 'c=0.99'; 'c=1']);
mclose(fid)
endfunction
|
3b0d23341b5d6805cb1939bb36db897e175c8ac2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /830/CH4/EX4.4.2/DTFT_3.sce | e398cf257e66d4f7eff38ab01c49cd96121017dd | [] | 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 | 660 | sce | DTFT_3.sce | //Graphical//
//Example 4.4.2
//Frequency Response of Three point Moving Average System
//y(n)= (1/3)[x(n+1)+x(n)+x(n-1)]
//h(n) = [1/3,1/3,1/3]
clear;
clc;
close;
//Calculation of Impulse Response
n =-1:1;
h = [1/3,1/3,1/3];
//Discrete-time Fourier transform
K = 500;
k = 0:1:K;
w = %pi*k/K;
H = h * exp(-sqrt(-1)*n'*w);
//phasemag used to calculate phase and magnitude in dB
[Phase_H,m] = phasemag(H);
H = abs(H);
subplot(2,1,1)
plot2d(w/%pi,H)
xlabel('Frequency in Radians')
ylabel('abs(H)')
title('Magnitude Response')
subplot(2,1,2)
plot2d(w/%pi,Phase_H)
xlabel('Frequency in Radians')
ylabel('<(H)')
title('Phase Response')
|
e7735ec45b23faf62f28b4c173707e1c81e88032 | d15191e30165dc2dbd439f102d2d8b2150a31955 | /sci.sce | ec62782e6c898eac76367323db737ddb3ccda032 | [] | no_license | Atom735/stud | ea78086aa7e0d84ab9423669ad186c6d1e0e8120 | af2d8904014f7a1f114082996a571b504800b40c | refs/heads/master | 2020-07-29T07:30:36.532202 | 2019-10-25T06:57:12 | 2019-10-25T06:57:12 | 209,715,687 | 0 | 0 | null | 2019-09-27T14:33:25 | 2019-09-20T05:56:17 | C | UTF-8 | Scilab | false | false | 1,884 | sce | sci.sce | clear
mclose ( 'all' );
szPathToData = 'C:\ARGilyazeev\github\stud\data\';
previous_driver = driver ( 'PDF' );
function rDataPlot ( szFileName, g )
[fdData, err] = mopen ( szPathToData + szFileName );
kI_Magic = mget( 1, 'ul', fdData );
kN_FrameCount = mget( 1, 'u', fdData );
kN_GridX = mget( 1, 'u', fdData );
kN_ItersIdentMi = mget( 1, 'u', fdData );
kN_ItersSkips = mget( 1, 'u', fdData );
kR_ErrorMax = mget( 1, 'd', fdData );
kR_Alpha = mget( 1, 'd', fdData );
kR_K_Mu = mget( 1, 'd', fdData );
kR_dT = mget( 1, 'd', fdData );
kR_S_t = mget( 1, 'd', fdData );
kR_S_x = mget( 1, 'd', fdData );
kR_dX = 1.0 / ( kN_GridX - 1.0 );
listX = 0:kR_dX:1;
function [ s, p, v ] = rDataLoadFrame ( i )
mseek ( 72 + i*(kN_GridX*2+1)*8, fdData );
s = mget( kN_GridX, 'd', fdData );
if i < kN_FrameCount then
p = mget( kN_GridX, 'd', fdData );
v = mget( 1, 'd', fdData );
end;
endfunction
xinit ( szPathToData + szFileName + '.S.pdf' );
xtitle ( '', 'X', 'S' );
for i = 1:floor(0.2/kR_dT):kN_FrameCount
plot ( listX, rDataLoadFrame(i) );
end;
xend();
xinit ( szPathToData + szFileName + '.U.pdf' );
xtitle ( '', 't', 'u' );
listTimes = 0:floor(0.01/kR_dT):kN_FrameCount;
list_dP = listTimes;
for i = 1:length(listTimes)
[ s, p, v ] = rDataLoadFrame(listTimes(i));
list_dP(i) = v;
end;
plot ( listTimes*kR_dT, list_dP );
xend();
endfunction
rDataPlot ( 'St.bin', 0 );
rDataPlot ( 'Sx.bin', 0 );
rDataPlot ( 'S2.bin', 0 );
rDataPlot ( 'original.bin', 0 );
driver(previous_driver);
mclose ( 'all' );
|
6465a12706c4de33ca416d10bcfe0afcbebc9a15 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1133/CH3/EX3.11/Example3_11.sce | 55be6498b3b9544aa3d3e0db43a32218fe1c4368 | [] | 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,894 | sce | Example3_11.sce | //Example 3.11
clc
disp("Step 1: Identify topology")
disp(" The feedback voltage is applied across the resistance R_e1 and it is in series with input signal. Hence feedback is voltage series feedback.")
disp("")
disp("step 2 and Step 3: Find input and output circuit.")
disp(" To find input circuit, set Vo = 0 (connecting C2 to ground), which gives parllel combination of Re with Rf at E1. To find output ciruit, set Ii = 0 (opening the input node E1 at emitter of Q1), which gives series combination od Rf and R_e1 across the output. The resultant circuit is shown in fig.3.57")
disp("")
disp("Step 4: Find open loop voltage gain (Av)")
rl2=(4.7*3.42)/(4.7+3.42) // in k-ohm
format(5)
disp(rl2," R_L2(in k-ohm) = R_c2 || (Rs+R) =")
disp(" A_i2 = -hfe = -50")
disp("R_i2 = hie = 1000 ohm = 1 k-ohm")
av2=-50*1.98
format(3)
disp(av2," A_v2 = A_i2*R_L2 / R_i2 =")
disp(" A_i1 = -hfe = -50")
format(7)
rl1=((10*100*22*1)/((100*22)+(10*22)+(10*100)+(10*100*22)))*10^3 // in ohm
disp(rl1," R_L1(in ohm) = R_c1 || R3 || R4 || R_i2 =")
disp(" R_i1 = h_ie + (1+h_fe)*R_e1eff")
re1=1+(51*((3.3*0.12)/(3.42))) // in k-ohm
format(4)
disp(re1,"where R_e1eff(in k-ohm) = Rs || R =")
av1=(-50*865.46)/6900
format(5)
disp(av1," A_v1 = A_i1*R_L1 / R_i1 =")
disp("The overall voltage gain,")
av=-6.27*-99
format(7)
disp(av," Av = A_v1 * A_v2 =")
disp("")
disp("Step 5: Calculate beta")
beta=120/(120+3300)
format(6)
disp(beta," beta = Vf / Vo = Rs / Rs+R =")
disp("")
disp("Step 6: Calculate D, A_vf, R_if, R_of and R''_of")
d=1+(0.035*620.73)
format(7)
disp(d," D = 1 + Av*beta =")
avf=620.73/22.725
format(5)
disp(avf," A_vf = Av / D =")
rif=6.9*22.725 // in k-ohm
format(6)
disp(rif," R_if(in k-ohm) = R_i1 * D =")
disp(" R_of = Ro / D = infinity")
rof=(1.98*10^3)/22.725 // in ohm
disp(rof," R''_of(in ohm) = R''o / D = R_L2 / D =")
|
eef1a08d8cde41175576eaaa986bdc906dabf826 | 449d555969bfd7befe906877abab098c6e63a0e8 | /884/CH15/EX15.6/Example15_6.sce | db174d81c4a245ba37640f154a8a741f4744fd62 | [] | 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 | 647 | sce | Example15_6.sce | // Computation of pH of solutions for solutions of given concentrations
clear;
clc;
printf("\t Example 15.6\n");
//for HCL solution
ConcHCl=1*10^-3;//Concentration of HCl solution, M
H=ConcHCl;//Concentration of [H+] ion after ionisation of HCl
pH=-log10(H);
printf("\t the pH of the HCl solution is : %4.2f \n",pH);
//for Ba(OH)2 solution
ConcBaOH2=0.02;//Concentration of Ba(OH)2 solution, M
OH=ConcBaOH2*2;//Concentration of [OH-] ion after ionisation of Ba(OH)2 as two ions are generated per one molecule of Ba(OH)2
pOH=-log10(OH);
pH2=14-pOH;
printf("\t the pH of the Ba(OH)2 solution is : %4.2f \n",pH2);
//End
|
a1af4dead0174a4b6044b064f50f201df3b9eb62 | 717ddeb7e700373742c617a95e25a2376565112c | /278/CH22/EX22.10/ex_22_10.sce | 5bbb6e43dbbee85651167675987289222180ab02 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 1,702 | sce | ex_22_10.sce | //find...
clc
//solution
//given
P=180*1000//W
N=240//rpm
ft=5.2*10^6//N/m^2
//N1-N2=0.03
rho=7220//kg/m^3
tf=40//N/mm^2
Tmean=(P*60)/(2*%pi*N)//N-m
printf("mean torque acig is,%f N-m\n",Tmean)
//ref fig 22.18
q=4*%pi
Wdpc=Tmean*q
Wp=1.33*Wdpc//work done in power stroke....eq1
//Wp1=(0.5*%pi)*Tmax...eq2
Tmax=Wp/(%pi/2)//N-m
printf("max torque is,%f N-m\n",Tmax)
//BG=BF-FG
BG=Tmax-Tmean//N-m
BF=Tmax
dE=Wp*(BG/BF)^2//N-m
printf("dE is,%f N-m\n",dE)
//let D be mean dia
//let v be peripheral velo
v=sqrt(ft/rho)//m/s
D=(v*60)/(N*%pi)//m
R=D/2
printf("the dia of wheel is,%f m\n",D)
//N1-N2=0.03*N
Cs=0.03
w=2*%pi*N/60//rad/s
//dE=E*2*Cs
m=dE/(R^2*w^2*Cs)
printf("mass of wheel is,%f kg\n",m)
//let t be thickness and b be width of rim
//b=2t
//A=b*t=2*t^2
t=sqrt(m/96730)//mm
printf("the thicknes and width is,%f m\n,%f m\n",t,2*t)
//let d be dia of hub ,d1 be dia of shaft,l be length of hub
//let Tmax1 be max torque on shaft
Tmax1=2*Tmean*1000//N-mm
//d1=(Tmax1*16/(%pi*tf))^(1/3)
printf("dia od shaft is,%f mm\n",(Tmax1*16/(%pi*tf))^(1/3))
printf("the dia of shaft is say 125mm\n")
d1=125//mm
d=2*d1//mm
l=2*t//mm
printf("the dia of hub and length of hub is,%f mm\n,%f m\n",d,l)
//let a1 be major and b1 be minor axis
//a1=2*b1
n=6
fb=15//N/mm^2
M=Tmax1*(D*1000-d)/(D*n*1000)//N-mm
printf("bending moment is,%f N-mm\n",M)
//Z=(%pi/32)*b1*a1^2=0.05*a1^3
//fb=M/Z
a1=(M/(fb*0.05))^(1/3)//mm
b1=0.5*a1
printf("major and minor axis is,%f mm\n,%f mm\n",a1,b1)
printf("corrsponding to shaft of dia 125 mm,width is 36 mm and thicknss ofkey is 20 mm\n")
//let L be length of key
L=Tmax1/(36*tf*d1/2)//mm
printf("length of key is,%f mm\n",L) |
b17e19fe4bada6ed698b1d000a72cd91b89cf751 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH4/EX4.45/Ex4_45.sce | 46ee3ce95ae81da52cc8019b341b30088b1c38e4 | [] | 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 | 669 | sce | Ex4_45.sce | clc;
clc;
v=200; // rated voltage of dc shunt motor
ra=0.1; // armature resistance
n=1000; // running speed of motor
ia=50; // armature current at n=1000 rpm
re=0.1; // reduction in field flux
ia2=(1/(1-re))*ia; // armature current when transients are over
Ea1=v-ia2*ra; // counter EMF when transients are over
// with sudden increase from 0.9*f to f (f=flux), counter EMF rises to
Ea2=Ea1*(1/(1-re));
i=(v-Ea2)/ra;
printf('Armature current is %f A',i);
disp('Since armature current is negative, machine acts as a generator. Speed reduces till counter EMF becomes less than supply voltage,so that motor action takes place and torque balance is obtained')
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.