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
3a872a42e224db1cfac783020f6b849aac0199f3
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set9/s_Engineering_Mechanics_A._K._Tayal__3204.zip/Engineering_Mechanics_A._K._Tayal__3204/CH2/EX2.8/Ex2_8.sce
5b054daef4896414cb1e6b514466fe59a424d48b
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
300
sce
Ex2_8.sce
errcatch(-1,"stop");mode(2);//Initilization of variables lAB=0.4 //m lBC=0.3 //m //Calculations alpha=atand(lAB/lBC) //degree //Results printf('The angle wich the force should make with the horizontal to keep the edge AB of the body vertical %f degree \n',alpha) //here alpha=theta exit();
0bbbdc3bfacf4005cf9c5558f59b060a8e166a61
449d555969bfd7befe906877abab098c6e63a0e8
/2409/CH12/EX12.16/Ex12_16.sce
8056acc9230516532339028332f281d9154ea3d5
[]
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
598
sce
Ex12_16.sce
//Variable Declaration alpha=1.9 //Rain attenuation(dB) CNR=20 //Downlink carrier to noise ratio(dB) Tn=400 //Effective Noise temperature(Kelvin) Ta=280 //Reference temperature(Kelvin) //Calculation alpha1=10**(alpha/10) //Converting alpha to ratio Trn=Ta*(1-1/alpha1) //Equivalent noise temperature of rain(kelvin) Ts=Tn+Trn //New system noise temperature delp=10*log10(Ts/Tn) //Decibel increase in noise power CNRN=CNR-delp-alpha //Value below which CNR falls(dB) //Result printf("The value below which C/N falls for 0.1 percent of time is %.2f dB",CNRN)
48e0ff74a7a2573b9ff89e2a6c048b54f5bacc7a
449d555969bfd7befe906877abab098c6e63a0e8
/2087/CH11/EX11.5/example11_5.sce
d4d04877edc7f30d6bcde3121c1fb63082728062
[]
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,789
sce
example11_5.sce
//example 11.5 //design oggy spillway for concrete gravity dam clc;funcprot(0); //given rbl=250; //avarage river bed level rlc=350; //R.L of spillway crest s=0.75; //slope on downstream side Q=6500; //discharge L=5*9; //length of spillway Cd=2.2; //coefficient of discharge t=2; //thickness of each pier //step 1. computation of design head H=(Q/(Cd*L))^(2/3); P=rlc-rbl; //P/H=6.15,which is<1.33;it is a high overflow spillway //H+P/H=7.15>1.7; hence discharge coefficient is not affected by downstream apron interface Kp=0.01;Ka=0.1;N=4; He=17.5; //assumed Le=L-2*(N*Kp+Ka)*He; He1=(Q/(Cd*Le))^(2/3); He1=round(He1*100)/100; //He1 is almost equal to He mprintf("crest profile will be designed for Hd=%f m.",He1); //step 2. determination of d/s profile //equating the slope of d/s side and derivative of profile equation suggested by WES x=27.03; y=0.04372*x^1.85; mprintf("\n\ndownstream profile:"); x=[1:1:26] for i=1:26 y(i)=0.04372*x(i)^1.85; y(i)=round(y(i)*1000)/1000; end mprintf("\nx y"); for i=1:26 mprintf("\n%i %f",x(i),y(i)); end mprintf("\n27.03 19.48"); //step 3. determination of u/s profile // cosidering equation for vertical u/s face and Hd=17.58 mprintf("\n\nupstream profile:"); x=[-0.5 -0.1 -1.5 -2.0 -3.0 -4.0 -4.75]; for i=1:7 y(i)=0.0633*(x(i)+4.7466)^1.85+2.2151-1.2643*(x(i)+4.7466)^0.625; y(i)=round(y(i)*1000)/1000; end mprintf("\nx y"); for i=1:7 mprintf("\n%f %f",x(i),y(i)); end //step 4.design of d/s bucket R=P/4; mprintf("\n\nradius of bucket=%i m.",R); mprintf("\nbucket will subtend angle of 60 degree at the centre.");
1ef7fd3c4401ab67b9a8a5d33c1897523e9b2e4f
449d555969bfd7befe906877abab098c6e63a0e8
/3504/CH2/EX2.8/Ex2_8.sce
f54289a0fca5cd1a2eb29b99125bea374ca862e8
[]
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
418
sce
Ex2_8.sce
//To determine the node voltages for the given network. clc; Z=[(1/5)+(1/%i*2)+(1/4) -(1/4);(-1/4) (1/4)+(1/%i*2)+(1/2)] D=det(Z) Z_1=[1 -0.25;%i*2.5 0.75+%i*0.5] D_1=det(Z_1) V_1=D_1/D //Voltage in polar form disp(V_1,'Voltage at node 1') Z_2=[0.45-%i*0.5 -0.25;-0.25 0.75+%i*0.5] D_2=det(Z_2) V_2=D_2/D //Voltage in polar form disp(V_2,'Voltage at node 2')
24dc78104357a38afa830d087fbc76b4c3a83ef7
449d555969bfd7befe906877abab098c6e63a0e8
/629/CH6/EX6.11/example6_11.sce
21df5043f3518bd2f5be213506bb87f0680728e9
[]
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
339
sce
example6_11.sce
clear clc //Example 6.11 PROPELLANT MASS RATIO FOR ACHIEVING ORBITAL VELOCITY Vbo=7600; //orbital velocity[m/s] Isp=3200; //specific impulse[m/s] //Vbo=Isp*log(mi/mf) mif=exp(Vbo/Isp) //mif=mi/mf //mp=mi-mf mpi=1-1/mif //mpi=mp/mi printf("\n The ratio of propellant mass to initial mass to achieve orbital velocity = %.3f.\n",mpi)
66c06013b251059cf358b764b2ba850be039c253
449d555969bfd7befe906877abab098c6e63a0e8
/2621/CH1/EX1.12/Ex1_12.sce
fd42520156b9618a73e79dab8c0eb1bc79308aa5
[]
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
946
sce
Ex1_12.sce
// Example 1.12 clc; clear; close; // Given data format('v',6); VEE= 10;//in V VCC=10;// in V VD1= 0.715;// in V Vz= 6.2// in V VBE= VD1;// in V Izt= 41;// in mA R3= 2.7;// in kΩ RC= 4.7;// in kΩ VT= 26;// in mV beta_ac= 100; beta_dc= 100; VB3= -VEE+Vz+VD1;//voltage at the base of transistor Q3 in V VE3= VB3-VBE;// voltage at the emitter of transistor Q3 in V IE3= (VE3-(-VEE))/R3;//emitter current through transistor Q3 in mA ICQ= IE3/2;//quiescent current in mA VCEQ= VCC+VBE-ICQ*RC;// in V disp("Part (a) : The Q-point values : "); disp(ICQ,"The value of ICQ in mA is : "); disp(VCEQ,"The value of VCEQ in volts is : ") re_desh= VT/ICQ;//dynamic emitter resistance in Ω Ad= RC*10^3/re_desh;// voltage gain disp(Ad,"Part (b) : The voltage gain is : ") Rin= 2*beta_ac*re_desh;// differential input resistance in Ω Rin=Rin*10^-3;// in kΩ disp(Rin,"Part (c) : The differential input resistance in kΩ is : ")
086428d0ac6ac112a4ca6c29ab7a0acc6af5cbdc
449d555969bfd7befe906877abab098c6e63a0e8
/3772/CH8/EX8.12/Ex8_12.sce
0615f73a71bfd686a7a904034398955b023ca8cb
[]
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
689
sce
Ex8_12.sce
// Problem 8.12,Page no.214 clc;clear; close; L=1.3 //m //Length of carriage spring b=10 //cm //width of spring t=12 //mm //thickness of spring sigma=150 //MPa //Bending stresses E=200 //GPa //Modulus of Elasticity U=120 //N*m //Strain Energy //Calculation //V=n*b*t*L //Volume of carriage spring //U=sigma**2*(6*E)**-1*V //After substituting values in above equation and further simplifying we get n=120*6*200*10**9*2*((150*10**6)**2*10*10**-2*12*10**-3*1.3)**-1 sigma_1=(120*6*200*10**9*2*(9*0.1*0.012*1.3)**-1)**0.5*10**-6 //MPa //Actual Bending stress R=E*t*(2*sigma_1)**-1 //m //Result printf("The number of plates is %d",ceil(n)) printf("\n Radius of curvature is %.3f m",R)
c138a24fe4ab6e8d42623f6f1041ee2e1e4a1b91
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH24/EX24.13/Ex24_13.sce
d4677fbee6d8025ab2a68d9899d64857047ad2d7
[]
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
178
sce
Ex24_13.sce
clear //Given n=1.0 h=6.62*10**-34 c=3*10**8 f=1.6*10**-19 Z=2 //Calculation E1=(-13.6*Z**2)/n**2 l=-(h*c)/(E1*f) //Result printf("\n Minimum wavelength is %0.0f A",l*10**10)
84e4bf096b76a08f7244529760a9704e1a005fec
449d555969bfd7befe906877abab098c6e63a0e8
/1673/CH9/EX9.8/9_8.sce
f5ad169f6339a6e26a8baac4b233b7cb0f8de2e0
[]
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
9_8.sce
//heat equation using crank-nicolson method //example 9.8 //page 364 clc;clear;close; U=0.01878; //h=1/2;l=1/8,i=1; u01=0;u21=1/8; u11=(u21+u01)/6; printf(' u11=%f\n\n',u11); printf('error is %f\n\n',abs(u11-U)); //h=1/4,l=1/8,i=1,2,3 A=[-3 -1 0;1 -3 1;0 1 -3]; C=[0;0;-1/8]; X=A^-1*C; printf(' u12=%f\n\n',X(2,1)); printf('error is %f\n\n',abs(X(2,1)-U));
5cab54f7b715698a1483aa16097a26b68959ca75
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.17_18.tst
965f574371b6b938cf9b1980a56f6e35fecab508
[]
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
23,998
tst
bow.17_18.tst
17 23:0.5 34:1.0 44:0.5 107:0.5 179:1.0 181:0.3333333333333333 250:0.5 340:1.0 371:0.16666666666666666 1002:1.0 1047:0.5 1266:1.0 2397:1.0 2705:1.0 3530:1.0 3551:1.0 4872:1.0 5044:1.0 17 11:0.5 35:0.18181818181818182 38:1.0 39:1.0 82:0.2 115:0.2 131:1.0 134:0.2 271:1.0 275:0.5 514:0.14285714285714285 534:0.5 1218:1.0 1754:0.5 2191:1.0 2514:1.0 3285:1.0 3445:0.5 4142:1.0 4312:1.0 4616:1.0 5153:1.0 17 29:1.0 37:0.25 49:0.25 70:1.0 115:0.2 134:0.2 143:0.5 145:1.0 160:0.09090909090909091 210:0.5 307:0.5 397:1.0 520:0.5 660:0.3333333333333333 833:1.0 909:1.0 1779:1.0 1808:1.0 1826:1.0 2491:1.0 3958:1.0 4312:1.0 4663:1.0 5317:1.0 17 9:1.0 22:0.2 42:1.0 45:0.25 55:0.3333333333333333 71:1.0 115:0.2 160:0.09090909090909091 179:1.0 181:0.3333333333333333 194:0.3333333333333333 1120:1.0 1166:1.0 1939:1.0 2437:1.0 4045:1.0 4145:0.5 17 6:1.0 7:0.5 70:1.0 154:1.0 216:0.14285714285714285 218:1.0 219:1.0 618:1.0 634:1.0 637:1.0 1047:0.5 1085:1.0 1195:1.0 1205:1.0 1352:1.0 1400:1.0 1453:1.0 1578:1.0 1949:1.0 3236:2.0 3642:1.0 17 9:1.0 22:0.2 29:1.0 49:0.375 82:0.2 87:0.1111111111111111 95:2.0 101:0.3333333333333333 115:0.2 117:0.5 160:0.09090909090909091 183:2.0 306:0.5 400:1.0 457:1.0 478:0.5 534:0.5 637:1.0 729:2.0 824:1.0 1310:1.0 1497:1.0 1523:1.0 1656:1.0 1891:1.0 2032:1.0 3766:0.5 4344:1.0 4758:1.0 5284:1.0 17 22:0.2 49:0.125 157:1.0 179:2.0 213:1.0 216:0.2857142857142857 366:0.5 464:1.0 486:1.0 612:0.3333333333333333 663:1.0 996:1.0 1355:1.0 1705:1.0 1931:1.0 2039:1.0 2409:1.0 2788:1.0 2941:1.0 3647:1.0 4428:1.0 17 7:0.25 13:1.0 14:1.0 22:0.4 44:0.5 49:0.125 68:0.2 82:0.2 95:1.0 168:1.0 179:1.0 183:1.0 232:0.5 297:1.0 355:1.0 366:1.0 444:1.0 458:1.0 729:1.0 919:1.0 1126:1.0 1306:1.0 1571:1.0 2331:1.0 3482:1.0 3842:1.0 3927:1.0 4121:1.0 4974:1.0 5711:1.0 17 29:2.0 37:0.5 44:0.5 87:0.1111111111111111 117:0.5 154:1.0 160:0.09090909090909091 179:0.5 216:0.14285714285714285 250:0.5 514:0.14285714285714285 612:0.3333333333333333 853:1.0 999:1.0 1063:1.0 1105:1.0 1192:0.5 1645:1.0 1674:1.0 1816:1.0 2045:1.0 4037:1.0 6395:1.0 17 22:0.2 29:1.0 42:1.0 82:0.2 111:0.058823529411764705 124:1.0 136:1.0 162:0.5 179:0.5 216:0.14285714285714285 227:3.0 232:0.5 250:0.5 271:1.0 302:0.5 333:0.4 356:0.5 456:1.0 457:1.0 616:0.5 996:1.0 1824:0.5 1951:1.0 2400:1.0 2505:1.0 2778:1.0 2782:1.0 3406:1.0 4328:1.0 4364:1.0 4973:1.0 17 42:1.0 49:0.125 87:0.2222222222222222 145:2.0 179:0.5 210:0.5 333:0.2 534:0.5 838:1.0 1117:0.5 1705:1.0 2294:0.5 3246:1.0 3361:1.0 5298:0.5 7648:1.0 17 68:0.2 78:1.0 82:0.2 87:0.3333333333333333 105:0.25 107:0.5 111:0.058823529411764705 115:0.2 145:1.0 168:1.0 173:0.5 227:1.0 271:1.0 305:0.5 409:1.0 423:0.5 533:1.0 566:0.3333333333333333 619:1.0 853:1.0 1126:1.0 1160:1.0 2015:1.0 2980:0.5 3355:1.0 3444:1.0 3541:1.0 4217:1.0 8238:1.0 17 6:1.0 7:0.25 42:1.0 44:0.5 60:1.0 103:1.0 181:0.3333333333333333 218:1.0 219:1.0 577:1.0 625:1.0 685:0.5 691:1.0 767:0.5 1578:1.0 2006:1.0 2406:1.0 2731:1.0 3472:1.0 4468:1.0 4552:1.0 17 7:0.25 22:0.2 34:1.0 45:0.25 68:0.2 179:0.5 183:1.0 194:0.3333333333333333 250:0.5 257:0.25 333:0.2 340:1.0 371:0.16666666666666666 618:1.0 955:1.0 2397:1.0 3551:1.0 3552:1.0 17 22:0.6 42:1.0 45:0.75 49:0.125 55:0.3333333333333333 68:0.2 95:1.0 179:1.5 194:0.6666666666666666 291:1.0 366:0.5 486:1.0 619:1.0 621:0.5 626:1.0 1049:1.0 2260:1.0 2481:1.0 2520:0.5 2708:1.0 3152:1.0 3182:1.0 3431:1.0 17 37:0.25 78:2.0 79:0.3333333333333333 105:0.25 109:1.0 166:1.0 168:1.0 305:0.25 514:0.14285714285714285 1447:1.0 4076:1.0 4902:1.0 17 22:0.2 35:0.18181818181818182 49:0.125 152:1.0 154:1.0 157:1.0 160:0.09090909090909091 179:1.5 181:0.6666666666666666 216:0.14285714285714285 236:0.5 271:1.0 287:1.0 333:0.4 356:0.5 514:0.14285714285714285 612:0.3333333333333333 663:1.0 727:1.0 1218:1.0 1371:1.0 2341:1.0 2941:1.0 2942:1.0 2943:1.0 2944:1.0 3272:1.0 3285:1.0 4143:1.0 4616:1.0 5153:1.0 17 29:1.0 35:0.09090909090909091 37:0.25 79:0.3333333333333333 81:1.0 87:0.1111111111111111 115:0.6 123:0.5 134:0.2 145:1.0 146:1.0 371:0.16666666666666666 743:0.2 753:1.0 787:1.0 887:0.5 902:0.5 1079:1.0 1844:1.0 1874:1.0 1911:1.0 2032:1.0 2564:1.0 2961:1.0 3392:1.0 3414:1.0 3498:2.0 3767:1.0 5622:1.0 7454:1.0 17 22:0.2 25:0.5 35:0.09090909090909091 68:0.2 71:1.0 82:0.2 107:0.5 113:1.0 181:0.3333333333333333 356:0.5 497:0.5 533:1.0 562:1.0 1224:1.0 1550:1.0 1564:1.0 1836:1.0 2346:1.0 2856:1.0 3220:1.0 3432:1.0 3842:1.0 6718:1.0 17 22:0.4 39:1.0 45:0.25 49:0.25 78:1.0 81:1.0 82:0.4 87:0.2222222222222222 115:0.2 136:2.0 168:1.0 179:0.5 183:1.0 194:0.3333333333333333 203:1.0 255:1.0 302:0.5 322:1.0 362:1.0 442:0.5 449:1.0 534:0.5 548:1.0 746:1.0 1161:0.5 1242:1.0 1529:0.5 1637:1.0 1748:1.0 2292:1.0 3431:1.0 4959:1.0 5322:1.0 7460:1.0 7967:1.0 8599:1.0 17 22:0.2 29:1.0 42:1.0 87:0.1111111111111111 100:0.5 105:0.25 145:1.0 183:1.0 186:1.0 194:0.6666666666666666 232:0.5 300:0.2 302:0.5 316:1.0 400:1.0 409:1.0 417:1.0 577:1.0 734:1.0 885:0.5 1182:1.0 1451:1.0 1746:1.0 2632:1.0 2749:1.0 3935:1.0 4696:1.0 17 22:0.2 49:0.125 82:0.2 109:0.5 197:0.5 236:0.5 304:1.0 307:0.5 331:1.0 356:0.5 612:0.3333333333333333 905:1.0 2039:1.0 2617:1.0 3189:1.0 3190:1.0 3191:1.0 3192:1.0 3193:1.0 17 7:0.25 14:1.0 22:1.2 49:0.375 68:0.4 95:1.0 149:1.0 154:1.0 179:1.5 181:0.3333333333333333 197:1.0 216:0.14285714285714285 238:0.5 366:1.0 390:1.0 391:1.0 392:2.0 393:1.0 394:1.0 395:1.0 396:1.0 478:0.5 526:1.0 527:1.0 674:1.0 721:0.5 1622:1.0 2944:1.0 4208:1.0 4680:1.0 4940:1.0 17 49:0.125 55:0.3333333333333333 87:0.2222222222222222 105:0.25 145:1.0 166:1.0 171:1.0 179:0.5 203:1.0 227:2.0 232:0.5 264:1.0 302:0.5 305:0.25 307:0.5 331:1.0 365:0.3333333333333333 504:1.0 881:1.0 1161:0.5 1242:1.0 1942:1.0 2111:0.3333333333333333 2779:1.0 3443:1.0 3644:1.0 17 29:2.0 37:0.25 49:0.25 87:0.1111111111111111 105:0.25 136:1.0 145:1.0 216:0.14285714285714285 236:1.0 275:0.5 280:1.0 287:1.0 305:0.25 333:0.2 349:1.0 365:0.3333333333333333 423:0.5 495:1.0 649:1.0 787:1.0 903:1.0 1783:1.0 2632:1.0 2749:1.0 3722:1.0 17 22:0.2 42:1.0 45:0.25 49:0.375 68:0.2 179:0.5 194:0.3333333333333333 637:1.0 1981:1.0 2032:1.0 2071:1.0 2123:1.0 2437:1.0 2662:1.0 3533:1.0 4337:1.0 4943:1.0 5943:1.0 17 9:0.5 29:1.0 35:0.09090909090909091 82:0.4 87:0.1111111111111111 105:0.25 107:0.5 115:0.4 145:1.0 194:0.3333333333333333 205:0.3333333333333333 250:0.5 306:0.5 366:0.5 445:1.0 890:1.0 1028:1.0 1330:1.0 1916:1.0 2032:1.0 2134:1.0 3237:1.0 4452:1.0 4821:1.0 8043:1.0 17 22:0.2 25:0.5 34:1.0 35:0.09090909090909091 44:0.5 45:0.25 55:0.6666666666666666 95:1.0 115:0.2 136:1.0 183:1.0 194:0.3333333333333333 371:0.16666666666666666 422:1.0 454:1.0 517:1.0 544:0.5 685:0.5 903:1.0 1143:1.0 1189:1.0 1277:1.0 1526:1.0 2044:1.0 3052:1.0 3946:2.0 4285:1.0 4731:2.0 17 22:0.2 49:0.125 55:0.3333333333333333 68:0.2 100:0.5 154:1.0 157:1.0 160:0.09090909090909091 179:2.0 181:0.6666666666666666 216:0.42857142857142855 333:0.4 336:1.0 356:0.5 544:0.5 727:1.0 732:1.0 770:0.5 840:1.0 1049:1.0 1063:2.0 1224:1.0 1306:1.0 1708:1.0 2044:1.0 2900:1.0 3060:1.0 3072:1.0 4118:0.5 4143:1.0 4337:1.0 17 9:0.5 22:0.6 55:0.3333333333333333 78:1.0 155:1.0 162:1.0 164:1.0 179:0.5 181:0.3333333333333333 183:1.0 210:0.5 232:1.0 259:0.3333333333333333 260:1.0 261:1.0 262:1.0 337:1.0 380:0.25 397:1.0 478:0.5 486:1.0 526:1.0 562:1.0 612:0.3333333333333333 871:1.0 1043:1.0 1105:1.0 1166:1.0 1169:1.0 1358:1.0 1597:1.0 3842:1.0 4342:1.0 5374:1.0 17 22:0.2 29:2.0 34:1.0 35:0.18181818181818182 79:0.3333333333333333 87:0.2222222222222222 132:1.0 134:0.1 145:1.0 166:1.0 179:0.5 232:0.5 300:0.2 301:1.0 302:1.0 303:1.0 305:0.5 307:0.5 333:0.2 423:1.0 438:1.0 544:1.0 649:1.0 780:1.0 963:1.0 1038:1.0 1570:1.0 1572:1.0 2039:1.0 2243:1.0 2602:1.0 2764:1.0 3072:1.0 3333:1.0 3424:1.0 4624:1.0 7117:1.0 17 22:0.4 35:0.18181818181818182 38:1.0 39:1.0 45:0.25 49:0.125 69:2.0 78:1.0 100:0.5 109:0.5 113:1.0 115:0.4 145:1.0 166:1.0 205:0.3333333333333333 262:1.0 282:0.25 283:1.0 284:1.0 356:0.5 371:0.16666666666666666 444:1.0 462:0.5 544:0.5 624:1.0 780:1.0 885:0.5 1105:2.0 1197:1.0 1224:1.0 1231:1.0 1495:1.0 2000:1.0 2003:1.0 3038:1.0 7490:1.0 17 35:0.18181818181818182 114:0.3333333333333333 115:0.2 183:1.0 194:0.3333333333333333 227:1.0 250:0.5 1824:0.5 2754:1.0 2873:1.0 4601:1.0 6534:2.5 17 7:0.25 22:0.6 154:1.0 160:0.09090909090909091 181:0.3333333333333333 194:0.3333333333333333 197:1.0 216:0.14285714285714285 362:1.0 578:0.25 612:0.3333333333333333 721:0.5 799:1.0 1227:1.0 1392:1.0 2078:0.5 2495:1.0 2637:1.0 2886:1.0 4380:1.0 4718:1.0 17 22:0.6 23:0.5 24:1.0 49:0.125 194:0.3333333333333333 423:0.5 1078:0.5 1698:1.0 2260:1.0 2661:1.0 3464:1.0 17 22:0.2 29:1.0 70:1.0 79:0.3333333333333333 82:0.2 87:0.1111111111111111 157:1.0 205:0.3333333333333333 227:2.0 264:1.0 302:0.5 307:0.5 337:1.0 366:1.0 612:0.3333333333333333 773:0.5 871:1.0 1364:1.0 1378:1.0 1389:1.0 2010:1.0 2111:0.3333333333333333 3455:1.0 4045:1.0 4766:1.0 5068:1.0 17 49:0.125 70:1.0 71:1.0 109:0.5 136:1.0 160:0.09090909090909091 179:0.5 362:1.0 564:1.0 727:1.0 1192:1.5 1204:1.0 1721:1.0 2111:0.3333333333333333 2662:1.0 2663:1.0 3599:1.0 4045:1.0 4647:1.0 5495:1.0 17 39:1.0 49:0.25 115:0.2 155:2.0 160:0.2727272727272727 162:0.5 168:1.0 241:0.5 307:0.5 423:0.5 534:0.5 612:0.3333333333333333 824:1.0 1039:1.0 1111:1.0 1776:1.0 2185:1.0 3093:1.0 3423:1.0 6384:1.0 17 7:0.25 14:1.0 22:0.2 49:0.125 134:0.1 181:0.3333333333333333 216:0.14285714285714285 259:0.3333333333333333 260:1.0 261:1.0 262:1.0 267:1.0 333:0.2 356:0.5 453:1.0 612:0.3333333333333333 637:1.0 1192:0.5 1547:1.0 2886:1.0 2980:0.5 3545:1.0 3582:1.0 3583:1.0 4380:1.0 17 22:0.6 35:0.09090909090909091 38:1.0 42:1.0 45:0.25 68:0.4 82:0.4 107:0.5 117:0.5 134:0.1 136:1.0 145:1.0 194:0.3333333333333333 247:0.5 262:1.0 282:0.25 283:1.0 284:1.0 342:1.0 409:1.0 423:0.5 514:0.14285714285714285 520:0.5 626:1.0 632:1.0 721:0.5 769:1.0 886:1.0 1026:1.0 1257:1.0 1913:1.0 2568:0.5 2617:1.0 3010:1.0 3498:2.0 4486:1.0 17 13:1.0 78:1.0 79:0.3333333333333333 105:0.25 136:1.0 168:1.0 194:0.3333333333333333 232:0.5 300:0.2 301:1.0 302:0.5 303:1.0 305:1.0 423:1.0 660:0.3333333333333333 719:1.0 720:1.0 884:1.0 1928:1.0 2490:1.0 3723:1.0 4701:1.0 17 42:1.0 55:0.3333333333333333 65:0.25 68:0.2 79:0.3333333333333333 105:0.25 136:1.0 168:1.0 305:0.25 331:1.0 366:0.5 464:1.0 544:0.5 930:1.0 1021:1.0 1052:1.0 1447:1.0 1451:1.0 1754:0.5 2225:1.0 2226:1.0 2788:1.0 3285:1.0 17 22:0.2 45:0.25 49:0.25 52:1.0 55:0.3333333333333333 68:0.2 71:1.0 74:1.0 100:1.0 151:1.0 157:1.0 181:0.3333333333333333 183:1.0 287:1.0 333:0.2 356:0.5 366:0.5 585:0.5 919:1.0 1040:1.0 1125:1.0 1126:1.0 1127:1.0 1166:1.0 1253:1.0 1670:1.0 3278:1.0 3629:1.0 3723:1.0 4842:1.0 5551:1.0 17 29:2.0 37:0.25 49:0.25 55:0.3333333333333333 106:0.5 107:0.5 154:1.0 160:0.09090909090909091 306:0.5 333:0.2 514:0.14285714285714285 612:0.3333333333333333 871:1.0 919:2.0 1070:1.0 2032:1.0 2185:1.0 3062:1.0 3131:1.0 3309:1.0 4525:1.0 17 14:1.0 22:0.4 44:0.5 49:0.125 52:1.0 68:0.2 78:1.0 154:1.0 160:0.09090909090909091 183:1.0 197:0.5 216:0.14285714285714285 236:0.5 287:1.0 331:1.0 356:0.5 930:1.0 1075:1.0 1401:1.0 1480:1.0 3691:1.0 17 29:1.0 82:0.2 115:0.2 179:0.5 205:0.6666666666666666 227:1.0 271:1.0 287:1.0 302:0.5 305:0.5 371:0.16666666666666666 423:0.5 465:0.5 612:0.3333333333333333 773:0.5 859:1.0 1063:1.0 1412:1.0 2237:1.0 2375:1.0 2467:1.0 3500:1.0 3638:1.0 17 18:1.0 22:0.2 45:0.25 49:0.25 68:0.2 183:1.0 186:1.0 194:0.3333333333333333 287:2.0 454:1.0 566:0.6666666666666666 643:1.0 729:1.0 1126:1.0 1190:1.0 1818:1.0 1819:1.0 2072:1.0 2375:1.0 2708:2.0 3220:1.0 3431:1.0 17 22:0.8 29:1.0 35:0.09090909090909091 49:0.25 68:0.2 105:0.25 134:0.1 154:1.0 181:0.3333333333333333 183:1.0 186:1.0 238:1.0 287:1.0 306:0.5 333:0.2 486:2.0 612:0.3333333333333333 711:1.0 903:1.0 1126:2.0 1312:1.0 1818:1.0 1819:1.0 2294:0.5 2375:1.0 3213:1.0 4585:1.0 17 34:1.0 38:1.0 42:1.0 77:1.0 141:0.5 216:0.14285714285714285 227:1.0 247:0.5 250:1.5 1052:1.0 1160:1.0 1554:1.0 1908:1.0 1951:1.0 2633:1.0 2634:1.0 2635:1.0 4311:1.0 5047:1.0 7841:1.0 17 22:0.4 35:0.18181818181818182 38:1.0 49:0.125 55:0.3333333333333333 78:1.0 82:0.2 87:0.1111111111111111 111:0.058823529411764705 115:0.2 136:1.0 154:2.0 241:0.5 250:0.5 259:0.3333333333333333 260:1.0 261:1.0 262:1.0 267:1.0 271:1.0 321:1.0 355:1.0 357:1.0 534:0.5 544:0.5 566:0.3333333333333333 577:1.0 612:0.3333333333333333 619:1.0 920:1.0 1156:1.0 1874:1.0 2035:1.0 2123:1.0 3129:1.0 3130:1.0 3131:1.0 3132:1.0 3133:1.0 3134:1.0 3341:1.0 4557:1.0 17 22:0.2 49:0.125 69:1.0 183:1.0 227:1.0 262:1.0 282:0.25 283:1.0 284:1.0 302:0.5 305:0.25 371:0.16666666666666666 737:1.0 963:1.0 1016:0.5 1191:1.0 2602:1.0 2785:1.0 2954:1.0 3187:1.0 3807:1.0 4063:1.0 4547:0.5 4631:1.0 17 22:0.2 29:1.0 87:0.2222222222222222 145:1.0 300:0.2 301:1.0 302:1.0 303:1.0 333:0.2 512:1.0 534:0.5 619:1.0 770:0.5 1047:0.5 1112:1.0 1189:2.0 1569:1.0 1684:1.0 1868:1.0 2495:1.0 4983:1.0 17 22:0.2 29:1.0 35:0.09090909090909091 49:0.125 87:0.1111111111111111 105:0.25 154:1.0 162:0.5 166:2.0 197:0.5 264:1.0 284:1.0 337:1.0 534:1.5 770:0.5 871:1.0 1112:1.0 1306:1.0 1378:1.0 2041:1.0 2811:1.0 2948:1.0 3038:1.0 3053:1.0 4332:1.0 4688:1.0 17 29:1.0 31:1.0 49:0.125 68:0.2 87:0.1111111111111111 115:0.2 145:2.0 194:0.3333333333333333 201:1.0 202:1.0 232:1.0 302:0.5 305:0.25 406:1.0 444:1.0 486:1.0 512:1.0 534:0.5 693:1.0 1192:0.5 2006:1.0 2438:1.0 2919:1.0 3390:1.0 4625:1.0 6295:1.0 17 22:0.4 49:0.375 68:0.2 160:0.18181818181818182 181:0.3333333333333333 194:1.0 232:1.5 342:1.0 362:1.0 454:1.0 478:0.5 497:0.5 682:1.0 693:1.0 745:1.0 843:1.0 1187:1.0 1628:1.0 1739:1.0 1900:1.0 2449:1.0 2577:1.0 3453:1.0 3898:1.0 17 14:1.0 22:0.2 23:0.5 24:1.0 25:0.5 34:1.0 49:0.125 81:1.0 124:1.0 125:1.0 145:1.0 149:1.0 173:0.5 307:0.5 884:1.0 1117:0.5 1242:1.0 2417:1.0 2421:1.0 2449:1.0 2645:1.0 3446:1.0 4547:0.5 4850:1.0 7028:1.0 17 22:0.2 49:0.125 160:0.18181818181818182 486:1.0 561:1.0 1872:1.0 2731:1.0 3482:1.0 4875:1.0 17 14:1.0 22:0.2 29:1.0 34:1.0 35:0.09090909090909091 37:0.25 49:0.125 78:1.0 82:0.2 87:0.1111111111111111 115:0.2 307:0.5 521:1.0 743:0.2 1178:1.0 1376:1.0 1526:1.0 1538:1.0 1552:0.3333333333333333 1779:1.0 4157:1.0 4547:0.5 4837:1.0 5111:1.0 17 68:0.2 82:0.2 111:0.11764705882352941 154:1.0 162:0.5 179:0.5 333:0.2 442:0.5 517:1.0 1126:1.0 2769:1.0 3732:1.0 17 15:1.0 42:1.0 78:1.0 95:1.0 179:1.0 194:0.3333333333333333 261:1.0 269:0.5 449:1.0 727:1.0 770:0.5 1765:1.0 2811:1.0 2812:1.0 2813:1.0 2854:1.0 3986:1.0 4045:1.0 4281:1.0 17 55:0.3333333333333333 82:0.4 87:0.1111111111111111 111:0.11764705882352941 154:1.0 171:1.0 232:0.5 250:0.5 271:1.0 333:0.2 380:0.25 637:1.0 727:1.0 1047:0.5 1538:1.0 3440:1.0 3644:1.0 17 9:0.5 22:0.6 87:0.1111111111111111 134:0.1 154:1.0 179:0.5 181:0.3333333333333333 216:0.2857142857142857 227:1.0 232:0.5 236:0.5 261:1.0 271:1.0 365:0.3333333333333333 810:1.0 917:1.0 1065:1.0 1126:1.0 1127:1.0 1440:1.0 1520:1.0 1572:1.0 1705:1.0 2611:1.0 2662:1.0 3392:1.0 3489:1.0 4076:1.0 17 13:1.0 22:0.2 29:2.0 49:0.125 105:0.25 107:0.5 227:2.0 302:0.5 305:0.5 409:1.0 423:1.0 449:1.0 514:0.14285714285714285 515:1.0 612:0.3333333333333333 637:1.0 682:1.0 693:1.0 727:1.0 824:1.0 1039:1.0 1093:1.0 1126:1.0 1552:0.3333333333333333 2067:1.0 2317:1.0 2769:1.0 3420:1.0 3421:1.0 3422:1.0 4011:0.5 4153:1.0 4668:1.0 4837:1.0 17 7:0.25 22:0.2 42:1.0 55:0.3333333333333333 68:0.2 227:1.0 250:0.5 301:1.0 304:1.0 319:0.5 902:0.5 920:1.0 973:1.0 1111:1.0 1509:1.0 1899:1.0 17 3:0.3333333333333333 5:1.0 6:1.0 7:0.25 11:0.5 34:1.0 68:0.2 74:1.0 75:2.0 79:0.3333333333333333 107:0.5 183:1.0 194:0.3333333333333333 255:1.0 280:1.0 304:1.0 305:1.0 349:1.0 366:0.5 423:1.0 478:0.5 501:1.0 533:2.0 544:0.5 2346:1.0 4945:1.0 17 22:0.2 42:1.0 160:0.09090909090909091 179:0.5 197:0.5 236:0.5 238:0.5 331:1.0 393:1.0 581:1.0 720:1.0 1118:1.0 1420:1.0 1552:0.3333333333333333 2878:1.0 3818:1.0 3955:1.0 17 22:0.2 29:1.0 42:1.0 82:0.2 145:2.0 179:0.5 250:0.5 337:1.0 423:0.5 426:1.0 544:0.5 616:0.5 632:1.0 720:1.0 1117:0.5 1242:1.0 2421:1.0 2943:1.0 2992:1.0 3788:1.0 17 14:2.0 22:0.2 45:0.25 49:0.25 52:1.0 68:0.4 78:1.0 179:1.0 182:1.0 183:1.0 194:0.3333333333333333 216:0.42857142857142855 346:0.5 356:0.5 362:1.0 385:1.0 454:1.0 478:0.5 486:1.0 585:0.5 612:0.3333333333333333 623:1.0 880:0.5 988:1.0 1503:1.0 1644:1.0 1703:1.0 2205:1.0 2401:1.0 3788:1.0 4988:1.0 17 29:1.0 39:2.0 49:0.25 82:0.2 107:0.5 115:0.6 145:1.0 227:2.0 247:0.5 279:1.0 280:1.0 302:0.5 305:0.25 307:0.5 322:1.0 409:1.0 521:1.0 534:0.5 669:1.0 702:1.0 824:1.0 886:1.0 887:0.5 1913:1.0 1916:1.0 2032:1.0 2201:1.0 3014:1.0 3216:1.0 3313:1.0 3475:1.0 4448:1.0 4850:1.0 17 22:0.4 29:1.0 42:1.0 49:0.125 68:0.2 87:0.2222222222222222 145:3.0 171:1.0 179:0.5 183:2.0 356:0.5 577:1.0 595:1.0 727:1.0 1017:0.5 1192:0.5 1303:1.0 1425:1.0 1762:1.0 1901:1.0 2645:1.0 2923:1.0 3562:1.0 4389:1.0 4390:1.0 17 22:0.2 35:0.09090909090909091 49:0.25 87:0.1111111111111111 136:2.0 145:1.0 287:1.0 333:0.4 422:1.0 423:0.5 612:0.3333333333333333 1359:1.0 1389:1.0 2076:0.5 2096:1.0 2541:1.0 2769:1.0 2877:1.0 2878:1.0 4707:1.0 6230:1.0 17 22:0.2 44:0.5 95:1.0 154:3.0 162:0.5 179:1.0 181:0.3333333333333333 183:2.0 216:0.14285714285714285 238:0.5 287:2.0 352:1.0 497:0.5 578:0.5 612:0.3333333333333333 727:1.0 912:1.0 1048:1.0 1286:1.0 1648:1.0 3052:1.0 4428:1.0 17 29:2.0 49:0.25 82:0.2 87:0.1111111111111111 111:0.058823529411764705 115:0.2 247:0.5 250:0.5 271:2.0 320:1.0 409:1.0 1553:1.0 1680:1.0 2294:0.5 2322:1.0 2427:1.0 2588:1.0 3239:1.0 5317:1.0 6436:1.0 17 7:0.25 29:1.0 37:0.25 49:0.375 68:0.2 115:0.2 145:1.0 160:0.09090909090909091 194:0.3333333333333333 236:1.0 250:0.5 333:0.4 371:0.16666666666666666 449:1.0 454:1.0 727:1.0 947:1.0 1072:1.0 1118:1.0 1283:1.0 1966:1.0 2018:1.0 2035:1.0 3226:1.0 5496:1.0 17 7:0.25 22:0.6 44:0.5 49:0.5 52:1.0 53:2.0 56:1.0 69:1.0 151:1.0 154:2.0 179:1.5 183:1.0 216:0.14285714285714285 284:1.0 286:1.0 333:0.4 365:0.3333333333333333 390:1.0 544:0.5 567:1.0 612:0.3333333333333333 626:1.0 632:1.0 744:1.0 810:1.0 919:1.0 1038:1.0 1065:1.0 1175:1.0 1266:1.0 1956:1.0 2078:0.5 2939:1.0 3926:1.0 3938:1.0 4229:1.0 17 11:0.5 22:0.4 29:1.0 34:1.0 45:0.25 49:0.125 68:0.2 82:0.2 87:0.1111111111111111 132:1.0 145:1.0 166:1.0 194:0.3333333333333333 210:0.5 227:1.0 232:0.5 302:1.0 526:2.0 534:0.5 577:1.0 809:1.0 828:1.0 859:1.0 1808:1.0 2398:1.0 3052:1.0 3349:1.0 3570:1.0 3958:1.0 17 9:0.5 22:0.2 25:0.5 29:1.0 42:1.0 44:0.5 49:0.25 87:0.2222222222222222 105:0.25 115:0.2 168:1.0 181:0.3333333333333333 183:4.0 302:0.5 371:0.3333333333333333 409:1.0 454:1.0 566:0.3333333333333333 577:1.0 595:1.0 833:1.0 919:1.0 1674:1.0 2078:0.5 2521:1.0 2622:1.0 2930:1.0 3232:0.5 3714:2.0 4833:1.0 17 9:0.5 11:0.5 22:0.2 29:1.0 34:2.0 39:1.0 49:0.125 55:0.3333333333333333 82:0.2 95:1.0 111:0.058823529411764705 112:1.0 115:0.2 150:0.5 179:0.5 306:1.0 375:1.0 513:1.0 520:0.5 692:0.5 732:1.0 753:1.0 886:1.0 1192:0.5 1508:1.0 1628:1.0 2032:1.0 3098:1.0 4452:1.0 4766:1.0 17 22:0.4 103:2.0 160:0.18181818181818182 191:1.0 197:1.0 365:0.3333333333333333 366:1.0 930:1.0 998:2.0 1144:1.0 3788:1.0 17 22:0.4 35:0.09090909090909091 38:1.0 45:0.5 49:0.25 78:1.0 82:0.2 87:0.2222222222222222 105:0.25 106:0.5 115:0.2 116:1.0 134:0.1 145:1.0 154:1.0 160:0.09090909090909091 179:1.0 183:2.0 197:0.5 227:1.0 231:0.5 236:0.5 287:1.0 321:1.0 362:1.0 514:0.14285714285714285 612:0.3333333333333333 623:1.0 632:1.0 682:1.0 685:0.5 769:1.0 841:1.0 1105:1.0 1161:0.5 1312:1.0 1392:1.0 1462:1.0 1512:1.0 1513:1.0 1514:1.0 1515:1.0 1516:1.0 1517:1.0 1518:1.0 1519:1.0 1599:1.0 3002:1.0 3162:1.0 3403:1.0 4630:1.0 4969:1.0 17 29:1.0 79:0.3333333333333333 115:0.2 118:0.5 205:0.3333333333333333 302:0.5 305:0.25 400:1.0 520:0.5 727:1.0 777:2.0 3272:1.0 4688:1.0 17 22:0.2 29:2.0 34:1.0 35:0.09090909090909091 45:0.25 79:0.3333333333333333 183:1.0 321:1.0 362:1.0 442:0.5 919:1.0 1085:1.0 1189:1.0 1716:1.0 2424:1.0 2428:1.0 2469:1.0 4396:1.0 17 14:1.0 22:0.6 44:0.5 68:0.2 157:1.0 160:0.2727272727272727 181:0.6666666666666666 194:0.3333333333333333 197:0.5 264:1.0 355:1.0 365:0.3333333333333333 454:1.0 465:0.5 526:1.0 527:1.0 565:1.0 721:0.5 773:0.5 842:1.0 871:1.0 920:1.0 1175:1.0 1230:1.0 1597:1.0 2346:1.0 2391:1.0 2900:1.0 2963:1.0 3821:1.0 3822:1.0 4229:1.0 17 82:0.2 87:0.2222222222222222 102:1.0 105:0.25 115:0.2 117:0.5 145:2.0 194:0.3333333333333333 247:0.5 406:1.0 595:1.0 685:1.0 824:1.0 975:1.0 1105:1.0 1368:1.0 1718:1.0 1753:1.0 3510:1.0 4229:1.0 4260:1.0 7414:1.0 8177:1.0 17 29:1.0 35:0.09090909090909091 42:1.0 44:0.5 49:0.125 79:0.3333333333333333 115:0.2 124:1.0 134:0.1 183:1.0 456:1.0 534:0.5 1082:1.0 1771:1.0 2412:1.0 3494:1.0 3911:1.0 7756:1.0 17 6:1.0 7:0.25 14:1.0 22:0.6 42:1.0 44:0.5 45:0.5 49:0.125 65:0.25 68:0.4 82:0.4 145:1.0 179:1.0 183:1.0 184:1.0 218:1.0 250:0.5 271:1.0 444:1.0 625:1.0 632:1.0 899:1.0 1197:1.0 1229:1.0 1451:1.0 1777:1.0 2400:1.0 3172:1.0 3788:1.0 17 42:1.0 105:0.25 115:0.8 134:0.1 136:1.0 232:0.5 284:1.0 302:0.5 414:2.0 438:1.0 518:1.0 637:1.0 723:1.0 1330:1.0 1375:1.0 2063:1.0 2064:1.0 3310:1.0 3890:1.0 6640:1.0 17 7:0.25 22:0.2 38:2.0 39:1.0 68:0.4 179:0.5 183:1.0 241:0.5 355:1.0 364:0.5 449:1.0 478:0.5 486:1.0 630:1.0 685:0.5 692:0.5 1003:1.0 1178:1.0 1182:1.0 1261:1.0 2346:1.0 2720:1.0 3901:1.0 4613:1.0 4680:1.0 17 55:0.3333333333333333 87:0.1111111111111111 105:0.25 106:0.5 115:0.2 160:0.09090909090909091 173:0.5 179:0.5 216:0.14285714285714285 287:1.0 366:0.5 423:0.5 514:0.14285714285714285 533:1.0 773:0.5 825:1.0 988:1.0 1021:1.0 1160:1.0 1166:1.0 1868:1.0 3002:1.0 4205:1.0 17 68:0.2 87:0.1111111111111111 134:0.1 150:0.5 194:0.3333333333333333 227:1.0 271:1.0 610:1.0 743:0.2 933:1.0 1364:1.0 1754:0.5 1911:1.0 2602:1.0 2645:1.0 3548:1.0 17 3:0.3333333333333333 6:1.0 7:0.25 22:0.2 34:1.0 35:0.2727272727272727 68:0.2 87:0.1111111111111111 115:0.6 117:0.5 121:1.0 122:1.0 125:2.0 134:0.1 136:1.0 160:0.09090909090909091 306:0.5 315:1.0 346:0.5 378:1.0 438:1.0 587:1.0 692:0.5 1039:1.0 1117:0.5 1147:1.0 1282:0.5 1290:1.0 1430:1.0 1491:1.0 1680:1.0 1912:1.0 2063:1.0 2246:1.0 2871:1.0 2872:1.0 3543:1.0 3895:1.0 4059:1.0 4882:1.0 6043:1.0 17 35:0.09090909090909091 37:0.25 38:1.0 82:0.2 87:0.3333333333333333 111:0.058823529411764705 117:0.5 134:0.1 194:0.3333333333333333 271:1.0 349:1.0 544:0.5 1713:1.0 2132:1.0 2617:1.0 3392:2.0 3583:1.0 4073:1.0 4556:1.0 4743:1.0 7157:1.0 7841:1.0 17 42:1.0 49:0.125 55:0.3333333333333333 134:0.1 160:0.18181818181818182 271:1.0 336:1.0 497:0.5 623:1.0 770:0.5 1939:1.0 3732:1.0 4189:1.0 4360:1.0 4703:1.0 8562:1.0 17 6:1.0 14:1.0 44:0.5 45:0.5 49:0.125 55:0.3333333333333333 68:0.4 103:1.0 154:1.0 216:0.14285714285714285 218:1.0 219:1.0 259:0.3333333333333333 260:1.0 261:1.0 262:1.0 264:1.0 333:0.2 346:0.5 390:1.0 571:1.0 612:0.3333333333333333 770:0.5 1065:1.0 1958:0.5 1959:1.0 1971:1.0 3666:1.0 17 22:0.2 34:1.0 45:0.5 79:0.3333333333333333 81:1.0 82:0.4 95:1.0 100:0.5 111:0.058823529411764705 134:0.1 145:1.0 183:2.0 262:1.0 271:1.0 282:0.25 283:1.0 284:1.0 285:1.0 748:1.0 888:1.0 963:2.0 1017:0.5 1021:1.0 2243:1.0 2465:1.0 3866:1.0 5063:1.0 5147:0.5 17 6:1.0 7:0.25 15:1.0 22:0.2 29:2.0 49:0.25 68:0.2 70:1.0 71:1.0 78:1.0 79:0.6666666666666666 95:1.0 105:0.25 160:0.09090909090909091 218:1.0 219:1.0 232:1.0 300:0.2 301:1.0 302:0.5 303:1.0 304:1.0 305:0.25 406:1.0 465:0.5 534:0.5 1112:1.0 1192:0.5 1928:1.0 2260:1.0 2835:1.0 3849:1.0 3974:1.0 4045:1.0 17 29:1.0 55:0.3333333333333333 68:0.2 93:1.0 104:1.0 111:0.058823529411764705 134:0.1 157:1.0 179:0.5 216:0.14285714285714285 333:0.2 409:1.0 456:1.0 504:1.0 612:0.3333333333333333 741:1.0 1175:1.0 1451:1.0 1746:1.0 1784:1.0 1931:1.0 2150:1.0 3392:1.0 4393:1.0 4547:0.5 6219:1.0 17 35:0.09090909090909091 68:0.2 75:1.0 183:1.0 194:0.3333333333333333 232:0.5 324:1.0 438:1.0 486:1.0 902:0.5 1542:1.0 1628:1.0 2260:1.0 2563:1.0 4915:1.0 17 22:0.4 183:1.0 194:0.3333333333333333 232:0.5 340:1.0 462:0.5 504:1.0 581:1.0 619:1.0 691:1.0 898:1.0 919:1.0 1016:0.5 1047:0.5 1078:0.5 1569:1.0 2150:1.0 2656:1.0 3185:1.0 4868:1.0 17 5:1.0 22:0.2 42:1.0 53:1.0 68:0.2 100:0.5 160:0.18181818181818182 178:1.0 179:1.0 216:0.2857142857142857 356:0.5 365:0.3333333333333333 457:1.0 492:0.5 498:1.0 623:1.0 4510:1.0
a22564ddd3e77fcbb03a45bf15d151e5f011daa0
676ffceabdfe022b6381807def2ea401302430ac
/solvers/IncNavierStokesSolver/Tests/ChanFlow_3DH1D_MVM.tst
427995e1ca48354423996b0f31f239bf5fc92586
[ "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,030
tst
ChanFlow_3DH1D_MVM.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>Laminar Channel Flow 3D homogeneous 1D, P=3, 20 Fourier modes (MVM)</description> <executable>IncNavierStokesSolver</executable> <parameters>ChanFlow_3DH1D_MVM.xml</parameters> <files> <file description="Session File">ChanFlow_3DH1D_MVM.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="u" tolerance="1e-6">3.34833e-16</value> <value variable="v" tolerance="1e-6">1.21337e-16</value> <value variable="w" tolerance="1e-6">0</value> <value variable="p" tolerance="1e-6">2.64454e-14</value> </metric> <metric type="Linf" id="2"> <value variable="u" tolerance="1e-6">1.94289e-15</value> <value variable="v" tolerance="1e-6">4.75925e-16</value> <value variable="w" tolerance="1e-6">1.02571e-17</value> <value variable="p" tolerance="1e-6">1.4011e-13</value> </metric> </metrics> </test>
5adfcf699996156e47d5269f0ad916d8125a4afe
449d555969bfd7befe906877abab098c6e63a0e8
/3819/CH3/EX3.23/Ex3_23.sce
8778a975bf2454ceea1e4419d785d7e6a35149b7
[]
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
476
sce
Ex3_23.sce
// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal // Chapter 3-Hydrostatic Forces on surfaces // Problem 3.23 //Data given in the Problem r=2 w=1 dens=1000 g=9.81 //calculations //For F_x A=r*w h=1/2*r F_x=dens*g*A*h //For F_y F_y=dens*g*%pi/4*r^2*w //Net F F=(F_x^2+F_y^2)^(1/2) //Angle maded my the resultant force theta=(atan(F_y/F_x))/%pi*180 mprintf("The resultant Force is %f N at an angle of %f with horizontal\n",F,theta)
b2cd8508d0e00a805ef70db206f92ecd99b0532e
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/tests/examples/colcompr.man.tst
42163760b3ad343cb83192bc64e1f3448bf22467
[ "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
91
tst
colcompr.man.tst
clear;lines(0); s=poly(0,'s'); p=[s;s*(s+1)^2;2*s^2+s^3]; [Y,rk,ac]=colcompr(p*p'); p*p'*Y
c453edcb20201efe7f9b9248cd0e28570cb035b4
4a1effb7ec08302914dbd9c5e560c61936c1bb99
/Project 2/Experiments/GAssist-Interval-C/results/GAssist-Intervalar-C.australian-10-1tra/result3s0.tst
b42df092b30de398b340a4751c92952e012cac7f
[]
no_license
nickgreenquist/Intro_To_Intelligent_Systems
964cad20de7099b8e5808ddee199e3e3343cf7d5
7ad43577b3cbbc0b620740205a14c406d96a2517
refs/heads/master
2021-01-20T13:23:23.931062
2017-05-04T20:08:05
2017-05-04T20:08:05
90,484,366
0
0
null
null
null
null
UTF-8
Scilab
false
false
751
tst
result3s0.tst
@relation australian @attribute A1{0,1} @attribute A2 real[16.0,8025.0] @attribute A3 real[0.0,26335.0] @attribute A4{1,2,3} @attribute A5 integer[1,14] @attribute A6 integer[1,9] @attribute A7 real[0.0,14415.0] @attribute A8{0,1} @attribute A9{0,1} @attribute A10 integer[0,67] @attribute A11{0,1} @attribute A12{1,2,3} @attribute A13 integer[0,2000] @attribute A14 integer[1,100001] @attribute Class{0,1} @inputs A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14 1 1 1 1 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 1 0 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 1 1 0 0 1 0 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 1 0 0 1 0
cf8268d5e4e12dc652c03f18944e88609d624ccd
449d555969bfd7befe906877abab098c6e63a0e8
/2258/CH7/EX7.14/7_14.sce
c8030733597405bcde6808b63cdd3a3dc8aee998
[]
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
7_14.sce
clc(); clear; // To calculate the temperature EgeV=1; //energy in eV k=1.38*10^-23; Eg=EgeV*1.602*10^-19; //in J //EF can be taken as (Ev+0.5)eV //therefore (Ev+0.5)eV = (Ec+Ev)/2--------(1) //let fermi level shift by 10% then (Ev+0.6)eV = ((Ec+Ev)/2)+((3*k*T/4)*log(4))-----(2) //subtracting (1) from (2) //0.1 eV = (3*k*T/4)*log(4) E=0.1; //energy in eV E=E*1.602*10^-19; //energy in J T=(4*E)/(3*k*log(4)); printf("temperature is %f K",T);
db34fbc56fe6b99581ce08a3fd45b13fcfd08957
449d555969bfd7befe906877abab098c6e63a0e8
/1787/CH2/EX2.8/Exa2_8.sce
dcec43a3fd7f1dac5735f35569821e63d4bbd695
[]
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
320
sce
Exa2_8.sce
//Exa 2.8 clc; clear; close; //given data ni=2.5*10^13;//in cm^-3 e=1.6*10^-19;//in coulamb MUh=1800;//in cm^2/V-s MUe=3800;//in cm^2/V-s SIGMAi=ni*e*(MUe+MUh);//in (ohm-cm)^-1 RHOi=1/SIGMAi;//in ohm-cm disp(SIGMAi,"Intrinsic conductivity in (ohm-cm)^-1 : "); disp(RHOi,"Intrinsic resistivity in ohm-cm : ");
d62e1491a08333d436807cfc79358a7e226f5cfa
449d555969bfd7befe906877abab098c6e63a0e8
/1466/CH8/EX8.2/8_2.sce
ac8c01ce67dd0cb1047b8277887fd03feec7dc10
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
457
sce
8_2.sce
clc //initialisation of variables a=0.00001929 b=0.03368 c=0.000221 t=5//c n=1/12 d=1/4//in g=32//ft/sec^2 l=100//ft t1=70//c va=1//ft/sec vb=10//ft/sec ka=0.032 k2=-0.23 //CALCULATIONS v=a/(1+b*t+(c*t*t)) Re=d*n*va/v k=8/Re i=k*4*va*va/(d*n*g) hf=i*l v1=a/(1+b*t1+(c*t1*t1)) Re1=d*n*vb/v1 k1=ka*(Re1^k2) i1=k1*4*vb*vb/(d*n*g) hf1=i1*l //RESULTS printf ('\n loss of head= %.2f ft ',hf ) printf ('\n loss of head= %.f ft ',hf1 )
0ed6e6fa9e8e936b523dd6b776131ac51cf58571
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH1/EX1.32/Ch01Ex32.sce
0d678845bf5642b0ececb7d055c0259eefc1fa1d
[]
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
648
sce
Ch01Ex32.sce
// Scilab Code Ex1.32:: Page-1.45 (2009) clc; clear; h = 6.6e-034; // Planck's constant, Js m = 1.67e-027; // Electronic mass, kg e = 1.6e-019; // Energy equivalent of 1 eV, J/eV nx = 1, ny = 1, nz = 1; // Principle quantum numbers in 3D corresponding to the longest energy state lx = 1e-014, ly = 1e-014, lz = 1e-014; // Dimensions of the box to which the neutron is confined, m E = h^2/(8*m)*(nx^2/lx^2+ny^2/ly^2+nz^2/lz^2); // Energy of the neutron confined in the nucleus, J printf("\nThe energy of the neutron confined in a nucleus = %4.2e eV", E/e); // Result // The energy of the neutron confined in a nucleus = 6.11e+06 eV
586a8890c2e442ce8907ac034fe68cc49e47747a
449d555969bfd7befe906877abab098c6e63a0e8
/575/DEPENDENCIES/6_3_1.sci
55dee8fd43b7f1ace4109116a2bc59967cc8792a
[]
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
38
sci
6_3_1.sci
P=760 //mm of Hg Pstar=289 //mm of Hg
ed0c7642f5f57a0ac7ea28bb73844c62336968c7
98efda43218be3d9e665771c28742517fd4f334f
/Toolbox Test/polyscale/polyscale1.sce
5e6c020929544a838d9bc098cfacf0ca2414f12c
[]
no_license
ankurmallick/Scilab_spt
bded5b3ed7c5618770ef4bb997b5f61aa7732cd9
e35c986f70147ee773796c839153ed7adbda3941
refs/heads/master
2021-01-17T06:48:24.162281
2016-12-05T12:54:24
2016-12-05T12:54:24
43,445,584
0
2
null
2015-12-10T05:15:44
2015-09-30T16:47:57
Scilab
UTF-8
Scilab
false
false
112
sce
polyscale1.sce
//Testing for logical errors a=[1 2 3]; alpha=2; b=polyscale(a,alpha); disp(b); //Does not match matlab output
39ee7ecb188e50ded2de68913ece0a93e2408af9
f891f5aed2e66371488173c2b9c4e8f977a9f64a
/UL 1741 SA/Tests/VoltVar/UL1741_Test_2.tst
2838c8b5dada7492b4ea68fa503c5f2a93637038
[]
no_license
jakedm/svp_directories
d9b85c41b45a3ded7572f9f730e8d1efc8515099
19272f8784baabf83e197778768933aef015432c
refs/heads/master
2021-01-18T18:08:29.224016
2017-01-16T20:09:35
2017-01-16T20:09:35
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,839
tst
UL1741_Test_2.tst
<scriptConfig name="UL1741_Test_2" script="VoltVar"> <params> <param name="invt.posttest_delay" type="int">1</param> <param name="vv.settings.curve_num" type="int">1</param> <param name="vv.settings.test_num" type="int">2</param> <param name="vv.settings.v_deadband_min" type="int">2</param> <param name="invt.voltage_tests_per_line" type="int">3</param> <param name="invt.pretest_delay" type="int">3</param> <param name="vv.settings.settling_time" type="float">4.0</param> <param name="vv.settings.n_points" type="int">4</param> <param name="invt.verification_delay" type="int">5</param> <param name="comm.slave_id" type="int">5</param> <param name="datatrig.node" type="int">10</param> <param name="pvsim.terrasas.channel" type="int">10</param> <param name="vv.settings.v_deadband_max" type="int">10</param> <param name="vv.settings.MSA_VAr" type="int">20</param> <param name="gridsim.ametek.i_max" type="float">100.0</param> <param name="vv.settings.v_low" type="int">200</param> <param name="invt.var_range" type="float">250.0</param> <param name="gridsim.ametek.v_nom" type="float">277.2</param> <param name="gridsim.ametek.v_max" type="float">300.0</param> <param name="pvsim.terrasas.vmp" type="float">460.0</param> <param name="vv.settings.v_high" type="int">600</param> <param name="vv.settings.k_varmax" type="int">800</param> <param name="pvsim_profile.irr_start" type="float">1000.0</param> <param name="vv.settings.var_ramp_rate" type="int">1600</param> <param name="pvsim.terrasas.pmp" type="float">3000.0</param> <param name="comm.baudrate" type="int">9600</param> <param name="datatrig.das_comp" type="string">10 Node</param> <param name="pvsim.terrasas.ipaddr" type="string">192.168.0.167</param> <param name="gridsim.mode" type="string">Ametek</param> <param name="comm.ifc_name" type="string">COM3</param> <param name="datatrig.trigger_method" type="string">Create Local File for Sandia LabView DSM</param> <param name="vv.settings.manualcurve" type="string">Enter Test Number</param> <param name="comm.parity" type="string">N</param> <param name="invt.disable" type="string">No</param> <param name="invt.test_on_vv_points" type="string">No</param> <param name="pvsim.terrasas.profile_name" type="string">None</param> <param name="comm.ifc_type" type="string">RTU</param> <param name="datatrig.dsm_method" type="string">Sandia LabView DSM</param> <param name="gridsim.ametek.profile_name" type="string">VV Profile</param> <param name="pvsim.mode" type="string">TerraSAS</param> <param name="vv.settings.vv_mode" type="string">VV12 (var priority)</param> <param name="gridsim.ametek.serial_port" type="string">com1</param> </params> </scriptConfig>
ffcf6fcac5c3b26f7a89478ed1624429bb42ad49
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/lemma-split/GOLD-TEST/nya.tst
175e268a9b6e7c954e02fcca4fb66ff34411cf7b
[]
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
24,410
tst
nya.tst
fulumira anafulumira V;PL;3;PST fulumira kufulumira V;NFIN fulumira timafulumira V;PL;1;PRS fulumira tidzafulumira V;PL;1;FUT fulumira anafulumira V;SG;3;PST fulumira mudzafulumira V;SG;2;FUT fulumira adzafulumira V;SG;3;FUT fulumira ndinafulumira V;SG;1;PST fulumira munafulumira V;PL;2;PST fulumira mudzafulumira V;PL;2;FUT fulumira adzafulumira V;PL;3;FUT fulumira ndimafulumira V;SG;1;PRS fulumira munafulumira V;SG;2;PST fulumira amafulumira V;PL;3;PRS fulumira ndidzafulumira V;SG;1;FUT fulumira amafulumira V;SG;3;PRS fulumira tinafulumira V;PL;1;PST fulumira mumafulumira V;SG;2;PRS fulumira mumafulumira V;PL;2;PRS kola amakola V;SG;3;PRS kola munakola V;PL;2;PST kola mudzakola V;PL;2;FUT kola mumakola V;PL;2;PRS kola kukola V;NFIN kola tidzakola V;PL;1;FUT kola mumakola V;SG;2;PRS kola mudzakola V;SG;2;FUT kola ndinakola V;SG;1;PST kola anakola V;PL;3;PST kola anakola V;SG;3;PST kola amakola V;PL;3;PRS kola munakola V;SG;2;PST kola ndidzakola V;SG;1;FUT kola ndimakola V;SG;1;PRS kola adzakola V;SG;3;FUT kola adzakola V;PL;3;FUT kola timakola V;PL;1;PRS kola tinakola V;PL;1;PST dikira mudzadikira V;SG;2;FUT dikira ndidzadikira V;SG;1;FUT dikira ndinadikira V;SG;1;PST dikira amadikira V;PL;3;PRS dikira timadikira V;PL;1;PRS dikira adzadikira V;SG;3;FUT dikira kudikira V;NFIN dikira munadikira V;SG;2;PST dikira tidzadikira V;PL;1;FUT dikira tinadikira V;PL;1;PST dikira anadikira V;SG;3;PST dikira amadikira V;SG;3;PRS dikira mumadikira V;PL;2;PRS dikira mumadikira V;SG;2;PRS dikira anadikira V;PL;3;PST dikira mudzadikira V;PL;2;FUT dikira adzadikira V;PL;3;FUT dikira munadikira V;PL;2;PST dikira ndimadikira V;SG;1;PRS sinja anasinja V;SG;3;PST sinja ndidzasinja V;SG;1;FUT sinja amasinja V;PL;3;PRS sinja mumasinja V;PL;2;PRS sinja adzasinja V;SG;3;FUT sinja ndimasinja V;SG;1;PRS sinja tidzasinja V;PL;1;FUT sinja amasinja V;SG;3;PRS sinja mumasinja V;SG;2;PRS sinja tinasinja V;PL;1;PST sinja adzasinja V;PL;3;FUT sinja munasinja V;PL;2;PST sinja kusinja V;NFIN sinja ndinasinja V;SG;1;PST sinja mudzasinja V;SG;2;FUT sinja anasinja V;PL;3;PST sinja mudzasinja V;PL;2;FUT sinja munasinja V;SG;2;PST sinja timasinja V;PL;1;PRS bala ndinabala V;SG;1;PST bala ndimabala V;SG;1;PRS bala ndidzabala V;SG;1;FUT bala kubala V;NFIN bala mudzabala V;PL;2;FUT bala adzabala V;PL;3;FUT bala tidzabala V;PL;1;FUT bala munabala V;SG;2;PST bala adzabala V;SG;3;FUT bala amabala V;SG;3;PRS bala tinabala V;PL;1;PST bala anabala V;PL;3;PST bala amabala V;PL;3;PRS bala mumabala V;PL;2;PRS bala anabala V;SG;3;PST bala mudzabala V;SG;2;FUT bala timabala V;PL;1;PRS bala mumabala V;SG;2;PRS bala munabala V;PL;2;PST gwira amagwira V;PL;3;PRS gwira anagwira V;SG;3;PST gwira mudzagwira V;SG;2;FUT gwira tidzagwira V;PL;1;FUT gwira ndidzagwira V;SG;1;FUT gwira adzagwira V;PL;3;FUT gwira mumagwira V;PL;2;PRS gwira anagwira V;PL;3;PST gwira amagwira V;SG;3;PRS gwira ndimagwira V;SG;1;PRS gwira ndinagwira V;SG;1;PST gwira tinagwira V;PL;1;PST gwira munagwira V;SG;2;PST gwira adzagwira V;SG;3;FUT gwira mumagwira V;SG;2;PRS gwira munagwira V;PL;2;PST gwira mudzagwira V;PL;2;FUT gwira kugwira V;NFIN gwira timagwira V;PL;1;PRS yenda anayenda V;SG;3;PST yenda ndinayenda V;SG;1;PST yenda tinayenda V;PL;1;PST yenda mumayenda V;PL;2;PRS yenda anayenda V;PL;3;PST yenda amayenda V;SG;3;PRS yenda timayenda V;PL;1;PRS yenda adzayenda V;SG;3;FUT yenda adzayenda V;PL;3;FUT yenda mudzayenda V;SG;2;FUT yenda mudzayenda V;PL;2;FUT yenda tidzayenda V;PL;1;FUT yenda kuyenda V;NFIN yenda amayenda V;PL;3;PRS yenda munayenda V;PL;2;PST yenda mumayenda V;SG;2;PRS yenda ndimayenda V;SG;1;PRS yenda ndidzayenda V;SG;1;FUT yenda munayenda V;SG;2;PST bisala mudzabisala V;PL;2;FUT bisala adzabisala V;PL;3;FUT bisala anabisala V;SG;3;PST bisala mumabisala V;SG;2;PRS bisala tidzabisala V;PL;1;FUT bisala adzabisala V;SG;3;FUT bisala kubisala V;NFIN bisala tinabisala V;PL;1;PST bisala amabisala V;PL;3;PRS bisala anabisala V;PL;3;PST bisala munabisala V;PL;2;PST bisala ndidzabisala V;SG;1;FUT bisala munabisala V;SG;2;PST bisala ndinabisala V;SG;1;PST bisala amabisala V;SG;3;PRS bisala ndimabisala V;SG;1;PRS bisala mumabisala V;PL;2;PRS bisala timabisala V;PL;1;PRS bisala mudzabisala V;SG;2;FUT batiza kubatiza V;NFIN batiza anabatiza V;PL;3;PST batiza tidzabatiza V;PL;1;FUT batiza mudzabatiza V;SG;2;FUT batiza tinabatiza V;PL;1;PST batiza timabatiza V;PL;1;PRS batiza mudzabatiza V;PL;2;FUT batiza amabatiza V;PL;3;PRS batiza adzabatiza V;PL;3;FUT batiza adzabatiza V;SG;3;FUT batiza ndinabatiza V;SG;1;PST batiza anabatiza V;SG;3;PST batiza mumabatiza V;PL;2;PRS batiza mumabatiza V;SG;2;PRS batiza ndidzabatiza V;SG;1;FUT batiza ndimabatiza V;SG;1;PRS batiza munabatiza V;SG;2;PST batiza munabatiza V;PL;2;PST batiza amabatiza V;SG;3;PRS fupika mudzafupika V;SG;2;FUT fupika ndimafupika V;SG;1;PRS fupika anafupika V;PL;3;PST fupika amafupika V;SG;3;PRS fupika timafupika V;PL;1;PRS fupika amafupika V;PL;3;PRS fupika mumafupika V;SG;2;PRS fupika ndinafupika V;SG;1;PST fupika adzafupika V;SG;3;FUT fupika mudzafupika V;PL;2;FUT fupika tidzafupika V;PL;1;FUT fupika adzafupika V;PL;3;FUT fupika mumafupika V;PL;2;PRS fupika tinafupika V;PL;1;PST fupika munafupika V;SG;2;PST fupika munafupika V;PL;2;PST fupika anafupika V;SG;3;PST fupika kufupika V;NFIN fupika ndidzafupika V;SG;1;FUT chira ndimachira V;SG;1;PRS chira adzachira V;PL;3;FUT chira amachira V;SG;3;PRS chira munachira V;SG;2;PST chira mudzachira V;SG;2;FUT chira tinachira V;PL;1;PST chira ndinachira V;SG;1;PST chira anachira V;SG;3;PST chira adzachira V;SG;3;FUT chira munachira V;PL;2;PST chira mumachira V;SG;2;PRS chira mudzachira V;PL;2;FUT chira kuchira V;NFIN chira tidzachira V;PL;1;FUT chira amachira V;PL;3;PRS chira timachira V;PL;1;PRS chira ndidzachira V;SG;1;FUT chira mumachira V;PL;2;PRS chira anachira V;PL;3;PST talika munatalika V;SG;2;PST talika amatalika V;SG;3;PRS talika mudzatalika V;PL;2;FUT talika ndimatalika V;SG;1;PRS talika tinatalika V;PL;1;PST talika mudzatalika V;SG;2;FUT talika adzatalika V;SG;3;FUT talika anatalika V;PL;3;PST talika tidzatalika V;PL;1;FUT talika mumatalika V;PL;2;PRS talika kutalika V;NFIN talika amatalika V;PL;3;PRS talika anatalika V;SG;3;PST talika ndinatalika V;SG;1;PST talika mumatalika V;SG;2;PRS talika munatalika V;PL;2;PST talika timatalika V;PL;1;PRS talika adzatalika V;PL;3;FUT talika ndidzatalika V;SG;1;FUT wala timawala V;PL;1;PRS wala anawala V;SG;3;PST wala tidzawala V;PL;1;FUT wala mudzawala V;SG;2;FUT wala ndimawala V;SG;1;PRS wala mumawala V;PL;2;PRS wala kuwala V;NFIN wala adzawala V;SG;3;FUT wala tinawala V;PL;1;PST wala ndidzawala V;SG;1;FUT wala adzawala V;PL;3;FUT wala anawala V;PL;3;PST wala ndinawala V;SG;1;PST wala munawala V;SG;2;PST wala amawala V;SG;3;PRS wala amawala V;PL;3;PRS wala mumawala V;SG;2;PRS wala munawala V;PL;2;PST wala mudzawala V;PL;2;FUT sanduka mudzasanduka V;PL;2;FUT sanduka kusanduka V;NFIN sanduka tinasanduka V;PL;1;PST sanduka munasanduka V;SG;2;PST sanduka mumasanduka V;SG;2;PRS sanduka anasanduka V;PL;3;PST sanduka tidzasanduka V;PL;1;FUT sanduka timasanduka V;PL;1;PRS sanduka munasanduka V;PL;2;PST sanduka anasanduka V;SG;3;PST sanduka ndimasanduka V;SG;1;PRS sanduka ndinasanduka V;SG;1;PST sanduka amasanduka V;PL;3;PRS sanduka adzasanduka V;PL;3;FUT sanduka mudzasanduka V;SG;2;FUT sanduka amasanduka V;SG;3;PRS sanduka mumasanduka V;PL;2;PRS sanduka ndidzasanduka V;SG;1;FUT sanduka adzasanduka V;SG;3;FUT choka ndimachoka V;SG;1;PRS choka adzachoka V;SG;3;FUT choka munachoka V;SG;2;PST choka munachoka V;PL;2;PST choka tinachoka V;PL;1;PST choka mudzachoka V;SG;2;FUT choka ndidzachoka V;SG;1;FUT choka timachoka V;PL;1;PRS choka anachoka V;PL;3;PST choka ndinachoka V;SG;1;PST choka amachoka V;SG;3;PRS choka anachoka V;SG;3;PST choka tidzachoka V;PL;1;FUT choka mumachoka V;PL;2;PRS choka amachoka V;PL;3;PRS choka adzachoka V;PL;3;FUT choka mumachoka V;SG;2;PRS choka mudzachoka V;PL;2;FUT choka kuchoka V;NFIN omba kuomba V;NFIN omba ndinaomba V;SG;1;PST omba ndimaomba V;SG;1;PRS omba mumaomba V;PL;2;PRS omba amaomba V;SG;3;PRS omba tidzaomba V;PL;1;FUT omba amaomba V;PL;3;PRS omba mumaomba V;SG;2;PRS omba tinaomba V;PL;1;PST omba anaomba V;SG;3;PST omba adzaomba V;PL;3;FUT omba munaomba V;SG;2;PST omba ndidzaomba V;SG;1;FUT omba munaomba V;PL;2;PST omba mudzaomba V;SG;2;FUT omba anaomba V;PL;3;PST omba timaomba V;PL;1;PRS omba adzaomba V;SG;3;FUT omba mudzaomba V;PL;2;FUT tuma adzatuma V;SG;3;FUT tuma tidzatuma V;PL;1;FUT tuma mudzatuma V;SG;2;FUT tuma timatuma V;PL;1;PRS tuma mudzatuma V;PL;2;FUT tuma adzatuma V;PL;3;FUT tuma amatuma V;SG;3;PRS tuma mumatuma V;SG;2;PRS tuma kutuma V;NFIN tuma anatuma V;SG;3;PST tuma anatuma V;PL;3;PST tuma amatuma V;PL;3;PRS tuma ndinatuma V;SG;1;PST tuma ndidzatuma V;SG;1;FUT tuma munatuma V;SG;2;PST tuma munatuma V;PL;2;PST tuma mumatuma V;PL;2;PRS tuma ndimatuma V;SG;1;PRS tuma tinatuma V;PL;1;PST seka mudzaseka V;PL;2;FUT seka mumaseka V;SG;2;PRS seka tinaseka V;PL;1;PST seka amaseka V;PL;3;PRS seka ndinaseka V;SG;1;PST seka munaseka V;PL;2;PST seka ndidzaseka V;SG;1;FUT seka timaseka V;PL;1;PRS seka adzaseka V;SG;3;FUT seka mumaseka V;PL;2;PRS seka anaseka V;PL;3;PST seka mudzaseka V;SG;2;FUT seka adzaseka V;PL;3;FUT seka tidzaseka V;PL;1;FUT seka amaseka V;SG;3;PRS seka munaseka V;SG;2;PST seka ndimaseka V;SG;1;PRS seka anaseka V;SG;3;PST seka kuseka V;NFIN yamba ndidzayamba V;SG;1;FUT yamba adzayamba V;PL;3;FUT yamba adzayamba V;SG;3;FUT yamba kuyamba V;NFIN yamba anayamba V;SG;3;PST yamba ndinayamba V;SG;1;PST yamba tinayamba V;PL;1;PST yamba mumayamba V;PL;2;PRS yamba mudzayamba V;SG;2;FUT yamba amayamba V;PL;3;PRS yamba anayamba V;PL;3;PST yamba amayamba V;SG;3;PRS yamba munayamba V;PL;2;PST yamba tidzayamba V;PL;1;FUT yamba mumayamba V;SG;2;PRS yamba munayamba V;SG;2;PST yamba ndimayamba V;SG;1;PRS yamba timayamba V;PL;1;PRS yamba mudzayamba V;PL;2;FUT zindikira ndimazindikira V;SG;1;PRS zindikira adzazindikira V;SG;3;FUT zindikira mudzazindikira V;PL;2;FUT zindikira tidzazindikira V;PL;1;FUT zindikira amazindikira V;PL;3;PRS zindikira anazindikira V;SG;3;PST zindikira mumazindikira V;SG;2;PRS zindikira anazindikira V;PL;3;PST zindikira adzazindikira V;PL;3;FUT zindikira tinazindikira V;PL;1;PST zindikira kuzindikira V;NFIN zindikira timazindikira V;PL;1;PRS zindikira mudzazindikira V;SG;2;FUT zindikira mumazindikira V;PL;2;PRS zindikira munazindikira V;SG;2;PST zindikira ndinazindikira V;SG;1;PST zindikira amazindikira V;SG;3;PRS zindikira munazindikira V;PL;2;PST zindikira ndidzazindikira V;SG;1;FUT kalamba ndinakalamba V;SG;1;PST kalamba amakalamba V;SG;3;PRS kalamba ndimakalamba V;SG;1;PRS kalamba mumakalamba V;SG;2;PRS kalamba anakalamba V;SG;3;PST kalamba munakalamba V;PL;2;PST kalamba ndidzakalamba V;SG;1;FUT kalamba mudzakalamba V;PL;2;FUT kalamba mudzakalamba V;SG;2;FUT kalamba mumakalamba V;PL;2;PRS kalamba anakalamba V;PL;3;PST kalamba kukalamba V;NFIN kalamba tinakalamba V;PL;1;PST kalamba adzakalamba V;SG;3;FUT kalamba timakalamba V;PL;1;PRS kalamba munakalamba V;SG;2;PST kalamba adzakalamba V;PL;3;FUT kalamba amakalamba V;PL;3;PRS kalamba tidzakalamba V;PL;1;FUT funsani ndidzafunsani V;SG;1;FUT funsani tidzafunsani V;PL;1;FUT funsani mumafunsani V;PL;2;PRS funsani adzafunsani V;PL;3;FUT funsani mumafunsani V;SG;2;PRS funsani munafunsani V;SG;2;PST funsani ndimafunsani V;SG;1;PRS funsani adzafunsani V;SG;3;FUT funsani ndinafunsani V;SG;1;PST funsani munafunsani V;PL;2;PST funsani anafunsani V;PL;3;PST funsani amafunsani V;SG;3;PRS funsani tinafunsani V;PL;1;PST funsani mudzafunsani V;PL;2;FUT funsani amafunsani V;PL;3;PRS funsani mudzafunsani V;SG;2;FUT funsani kufunsani V;NFIN funsani timafunsani V;PL;1;PRS funsani anafunsani V;SG;3;PST bvoma amabvoma V;SG;3;PRS bvoma adzabvoma V;SG;3;FUT bvoma anabvoma V;SG;3;PST bvoma anabvoma V;PL;3;PST bvoma mumabvoma V;PL;2;PRS bvoma amabvoma V;PL;3;PRS bvoma ndinabvoma V;SG;1;PST bvoma ndidzabvoma V;SG;1;FUT bvoma tinabvoma V;PL;1;PST bvoma mudzabvoma V;SG;2;FUT bvoma mumabvoma V;SG;2;PRS bvoma ndimabvoma V;SG;1;PRS bvoma timabvoma V;PL;1;PRS bvoma kubvoma V;NFIN bvoma mudzabvoma V;PL;2;FUT bvoma tidzabvoma V;PL;1;FUT bvoma adzabvoma V;PL;3;FUT bvoma munabvoma V;SG;2;PST bvoma munabvoma V;PL;2;PST tsata tidzatsata V;PL;1;FUT tsata mudzatsata V;SG;2;FUT tsata ndinatsata V;SG;1;PST tsata anatsata V;SG;3;PST tsata adzatsata V;PL;3;FUT tsata ndidzatsata V;SG;1;FUT tsata timatsata V;PL;1;PRS tsata kutsata V;NFIN tsata anatsata V;PL;3;PST tsata amatsata V;SG;3;PRS tsata munatsata V;SG;2;PST tsata munatsata V;PL;2;PST tsata amatsata V;PL;3;PRS tsata adzatsata V;SG;3;FUT tsata mudzatsata V;PL;2;FUT tsata ndimatsata V;SG;1;PRS tsata mumatsata V;SG;2;PRS tsata tinatsata V;PL;1;PST tsata mumatsata V;PL;2;PRS dandaula amadandaula V;SG;3;PRS dandaula mudzadandaula V;SG;2;FUT dandaula amadandaula V;PL;3;PRS dandaula anadandaula V;PL;3;PST dandaula ndinadandaula V;SG;1;PST dandaula timadandaula V;PL;1;PRS dandaula munadandaula V;SG;2;PST dandaula anadandaula V;SG;3;PST dandaula ndidzadandaula V;SG;1;FUT dandaula tinadandaula V;PL;1;PST dandaula mudzadandaula V;PL;2;FUT dandaula ndimadandaula V;SG;1;PRS dandaula adzadandaula V;SG;3;FUT dandaula adzadandaula V;PL;3;FUT dandaula mumadandaula V;SG;2;PRS dandaula munadandaula V;PL;2;PST dandaula mumadandaula V;PL;2;PRS dandaula tidzadandaula V;PL;1;FUT dandaula kudandaula V;NFIN zungulira ndimazungulira V;SG;1;PRS zungulira mudzazungulira V;PL;2;FUT zungulira anazungulira V;PL;3;PST zungulira adzazungulira V;SG;3;FUT zungulira tidzazungulira V;PL;1;FUT zungulira adzazungulira V;PL;3;FUT zungulira anazungulira V;SG;3;PST zungulira tinazungulira V;PL;1;PST zungulira amazungulira V;SG;3;PRS zungulira munazungulira V;SG;2;PST zungulira kuzungulira V;NFIN zungulira ndidzazungulira V;SG;1;FUT zungulira ndinazungulira V;SG;1;PST zungulira mumazungulira V;SG;2;PRS zungulira munazungulira V;PL;2;PST zungulira timazungulira V;PL;1;PRS zungulira mudzazungulira V;SG;2;FUT zungulira amazungulira V;PL;3;PRS zungulira mumazungulira V;PL;2;PRS yang'ana amayang'ana V;SG;3;PRS yang'ana adzayang'ana V;SG;3;FUT yang'ana mudzayang'ana V;SG;2;FUT yang'ana tidzayang'ana V;PL;1;FUT yang'ana ndidzayang'ana V;SG;1;FUT yang'ana ndinayang'ana V;SG;1;PST yang'ana anayang'ana V;PL;3;PST yang'ana kuyang'ana V;NFIN yang'ana mumayang'ana V;SG;2;PRS yang'ana amayang'ana V;PL;3;PRS yang'ana ndimayang'ana V;SG;1;PRS yang'ana anayang'ana V;SG;3;PST yang'ana mudzayang'ana V;PL;2;FUT yang'ana tinayang'ana V;PL;1;PST yang'ana munayang'ana V;PL;2;PST yang'ana mumayang'ana V;PL;2;PRS yang'ana munayang'ana V;SG;2;PST yang'ana adzayang'ana V;PL;3;FUT yang'ana timayang'ana V;PL;1;PRS gwa munagwa V;SG;2;PST gwa adzagwa V;PL;3;FUT gwa ndinagwa V;SG;1;PST gwa anagwa V;SG;3;PST gwa ndimagwa V;SG;1;PRS gwa mudzagwa V;SG;2;FUT gwa tidzagwa V;PL;1;FUT gwa mudzagwa V;PL;2;FUT gwa mumagwa V;PL;2;PRS gwa anagwa V;PL;3;PST gwa timagwa V;PL;1;PRS gwa tinagwa V;PL;1;PST gwa kugwa V;NFIN gwa adzagwa V;SG;3;FUT gwa mumagwa V;SG;2;PRS gwa amagwa V;PL;3;PRS gwa munagwa V;PL;2;PST gwa amagwa V;SG;3;PRS gwa ndidzagwa V;SG;1;FUT pempha anapempha V;PL;3;PST pempha mumapempha V;PL;2;PRS pempha ndidzapempha V;SG;1;FUT pempha tidzapempha V;PL;1;FUT pempha mumapempha V;SG;2;PRS pempha adzapempha V;SG;3;FUT pempha amapempha V;SG;3;PRS pempha munapempha V;PL;2;PST pempha adzapempha V;PL;3;FUT pempha anapempha V;SG;3;PST pempha ndimapempha V;SG;1;PRS pempha mudzapempha V;SG;2;FUT pempha timapempha V;PL;1;PRS pempha ndinapempha V;SG;1;PST pempha mudzapempha V;PL;2;FUT pempha munapempha V;SG;2;PST pempha tinapempha V;PL;1;PST pempha kupempha V;NFIN pempha amapempha V;PL;3;PRS dula mumadula V;SG;2;PRS dula ndinadula V;SG;1;PST dula mudzadula V;SG;2;FUT dula mumadula V;PL;2;PRS dula timadula V;PL;1;PRS dula tinadula V;PL;1;PST dula amadula V;SG;3;PRS dula kudula V;NFIN dula munadula V;PL;2;PST dula adzadula V;PL;3;FUT dula munadula V;SG;2;PST dula ndidzadula V;SG;1;FUT dula tidzadula V;PL;1;FUT dula adzadula V;SG;3;FUT dula mudzadula V;PL;2;FUT dula amadula V;PL;3;PRS dula anadula V;SG;3;PST dula ndimadula V;SG;1;PRS dula anadula V;PL;3;PST patsa ndimapatsa V;SG;1;PRS patsa munapatsa V;PL;2;PST patsa timapatsa V;PL;1;PRS patsa tidzapatsa V;PL;1;FUT patsa anapatsa V;PL;3;PST patsa tinapatsa V;PL;1;PST patsa adzapatsa V;PL;3;FUT patsa ndinapatsa V;SG;1;PST patsa munapatsa V;SG;2;PST patsa mudzapatsa V;SG;2;FUT patsa mumapatsa V;PL;2;PRS patsa ndidzapatsa V;SG;1;FUT patsa amapatsa V;SG;3;PRS patsa anapatsa V;SG;3;PST patsa mudzapatsa V;PL;2;FUT patsa amapatsa V;PL;3;PRS patsa kupatsa V;NFIN patsa adzapatsa V;SG;3;FUT patsa mumapatsa V;SG;2;PRS kwiya amakwiya V;SG;3;PRS kwiya munakwiya V;PL;2;PST kwiya timakwiya V;PL;1;PRS kwiya kukwiya V;NFIN kwiya tinakwiya V;PL;1;PST kwiya anakwiya V;SG;3;PST kwiya munakwiya V;SG;2;PST kwiya amakwiya V;PL;3;PRS kwiya ndidzakwiya V;SG;1;FUT kwiya mumakwiya V;PL;2;PRS kwiya ndinakwiya V;SG;1;PST kwiya mudzakwiya V;SG;2;FUT kwiya adzakwiya V;PL;3;FUT kwiya mudzakwiya V;PL;2;FUT kwiya anakwiya V;PL;3;PST kwiya ndimakwiya V;SG;1;PRS kwiya adzakwiya V;SG;3;FUT kwiya mumakwiya V;SG;2;PRS kwiya tidzakwiya V;PL;1;FUT imba anaimba V;SG;3;PST imba ndinaimba V;SG;1;PST imba timaimba V;PL;1;PRS imba ndimaimba V;SG;1;PRS imba tidzaimba V;PL;1;FUT imba ndidzaimba V;SG;1;FUT imba adzaimba V;PL;3;FUT imba mumaimba V;SG;2;PRS imba anaimba V;PL;3;PST imba mudzaimba V;SG;2;FUT imba amaimba V;SG;3;PRS imba amaimba V;PL;3;PRS imba mumaimba V;PL;2;PRS imba munaimba V;SG;2;PST imba mudzaimba V;PL;2;FUT imba kuimba V;NFIN imba tinaimba V;PL;1;PST imba munaimba V;PL;2;PST imba adzaimba V;SG;3;FUT lamula tinalamula V;PL;1;PST lamula munalamula V;SG;2;PST lamula ndidzalamula V;SG;1;FUT lamula adzalamula V;PL;3;FUT lamula mumalamula V;PL;2;PRS lamula amalamula V;SG;3;PRS lamula mudzalamula V;SG;2;FUT lamula munalamula V;PL;2;PST lamula mudzalamula V;PL;2;FUT lamula timalamula V;PL;1;PRS lamula tidzalamula V;PL;1;FUT lamula adzalamula V;SG;3;FUT lamula ndinalamula V;SG;1;PST lamula ndimalamula V;SG;1;PRS lamula analamula V;SG;3;PST lamula kulamula V;NFIN lamula analamula V;PL;3;PST lamula mumalamula V;SG;2;PRS lamula amalamula V;PL;3;PRS peza mumapeza V;PL;2;PRS peza tidzapeza V;PL;1;FUT peza mudzapeza V;PL;2;FUT peza mudzapeza V;SG;2;FUT peza anapeza V;PL;3;PST peza mumapeza V;SG;2;PRS peza munapeza V;SG;2;PST peza kupeza V;NFIN peza ndidzapeza V;SG;1;FUT peza timapeza V;PL;1;PRS peza adzapeza V;SG;3;FUT peza amapeza V;PL;3;PRS peza ndinapeza V;SG;1;PST peza ndimapeza V;SG;1;PRS peza tinapeza V;PL;1;PST peza anapeza V;SG;3;PST peza amapeza V;SG;3;PRS peza adzapeza V;PL;3;FUT peza munapeza V;PL;2;PST mera mumamera V;PL;2;PRS mera ndimamera V;SG;1;PRS mera anamera V;PL;3;PST mera mudzamera V;PL;2;FUT mera ndinamera V;SG;1;PST mera mumamera V;SG;2;PRS mera timamera V;PL;1;PRS mera amamera V;PL;3;PRS mera anamera V;SG;3;PST mera adzamera V;SG;3;FUT mera adzamera V;PL;3;FUT mera amamera V;SG;3;PRS mera mudzamera V;SG;2;FUT mera tidzamera V;PL;1;FUT mera munamera V;SG;2;PST mera kumera V;NFIN mera munamera V;PL;2;PST mera ndidzamera V;SG;1;FUT mera tinamera V;PL;1;PST tsiriza anatsiriza V;PL;3;PST tsiriza ndimatsiriza V;SG;1;PRS tsiriza munatsiriza V;SG;2;PST tsiriza mumatsiriza V;PL;2;PRS tsiriza ndidzatsiriza V;SG;1;FUT tsiriza ndinatsiriza V;SG;1;PST tsiriza timatsiriza V;PL;1;PRS tsiriza tinatsiriza V;PL;1;PST tsiriza mudzatsiriza V;SG;2;FUT tsiriza amatsiriza V;PL;3;PRS tsiriza kutsiriza V;NFIN tsiriza tidzatsiriza V;PL;1;FUT tsiriza mudzatsiriza V;PL;2;FUT tsiriza mumatsiriza V;SG;2;PRS tsiriza amatsiriza V;SG;3;PRS tsiriza anatsiriza V;SG;3;PST tsiriza munatsiriza V;PL;2;PST tsiriza adzatsiriza V;SG;3;FUT tsiriza adzatsiriza V;PL;3;FUT pitani mudzapitani V;SG;2;FUT pitani ndinapitani V;SG;1;PST pitani anapitani V;SG;3;PST pitani adzapitani V;SG;3;FUT pitani mudzapitani V;PL;2;FUT pitani adzapitani V;PL;3;FUT pitani amapitani V;PL;3;PRS pitani munapitani V;SG;2;PST pitani amapitani V;SG;3;PRS pitani kupitani V;NFIN pitani tidzapitani V;PL;1;FUT pitani munapitani V;PL;2;PST pitani anapitani V;PL;3;PST pitani tinapitani V;PL;1;PST pitani timapitani V;PL;1;PRS pitani ndimapitani V;SG;1;PRS pitani mumapitani V;PL;2;PRS pitani ndidzapitani V;SG;1;FUT pitani mumapitani V;SG;2;PRS khazika munakhazika V;SG;2;PST khazika mudzakhazika V;PL;2;FUT khazika amakhazika V;SG;3;PRS khazika tidzakhazika V;PL;1;FUT khazika adzakhazika V;PL;3;FUT khazika mumakhazika V;SG;2;PRS khazika anakhazika V;PL;3;PST khazika ndinakhazika V;SG;1;PST khazika mumakhazika V;PL;2;PRS khazika tinakhazika V;PL;1;PST khazika adzakhazika V;SG;3;FUT khazika ndidzakhazika V;SG;1;FUT khazika munakhazika V;PL;2;PST khazika mudzakhazika V;SG;2;FUT khazika ndimakhazika V;SG;1;PRS khazika timakhazika V;PL;1;PRS khazika amakhazika V;PL;3;PRS khazika anakhazika V;SG;3;PST khazika kukhazika V;NFIN dalira ndidzadalira V;SG;1;FUT dalira timadalira V;PL;1;PRS dalira tinadalira V;PL;1;PST dalira mumadalira V;SG;2;PRS dalira ndimadalira V;SG;1;PRS dalira amadalira V;PL;3;PRS dalira mumadalira V;PL;2;PRS dalira munadalira V;PL;2;PST dalira ndinadalira V;SG;1;PST dalira tidzadalira V;PL;1;FUT dalira adzadalira V;SG;3;FUT dalira mudzadalira V;SG;2;FUT dalira anadalira V;PL;3;PST dalira mudzadalira V;PL;2;FUT dalira adzadalira V;PL;3;FUT dalira munadalira V;SG;2;PST dalira kudalira V;NFIN dalira anadalira V;SG;3;PST dalira amadalira V;SG;3;PRS lemba ndimalemba V;SG;1;PRS lemba tinalemba V;PL;1;PST lemba timalemba V;PL;1;PRS lemba mudzalemba V;PL;2;FUT lemba ndidzalemba V;SG;1;FUT lemba amalemba V;SG;3;PRS lemba analemba V;SG;3;PST lemba analemba V;PL;3;PST lemba mumalemba V;SG;2;PRS lemba munalemba V;SG;2;PST lemba munalemba V;PL;2;PST lemba tidzalemba V;PL;1;FUT lemba mumalemba V;PL;2;PRS lemba mudzalemba V;SG;2;FUT lemba kulemba V;NFIN lemba adzalemba V;PL;3;FUT lemba adzalemba V;SG;3;FUT lemba amalemba V;PL;3;PRS lemba ndinalemba V;SG;1;PST da ndimada V;SG;1;PRS da adzada V;PL;3;FUT da kuda V;NFIN da munada V;SG;2;PST da mudzada V;SG;2;FUT da tidzada V;PL;1;FUT da anada V;PL;3;PST da tinada V;PL;1;PST da mumada V;PL;2;PRS da ndidzada V;SG;1;FUT da amada V;PL;3;PRS da anada V;SG;3;PST da amada V;SG;3;PRS da ndinada V;SG;1;PST da mudzada V;PL;2;FUT da adzada V;SG;3;FUT da munada V;PL;2;PST da mumada V;SG;2;PRS da timada V;PL;1;PRS pita anapita V;PL;3;PST pita munapita V;SG;2;PST pita ndidzapita V;SG;1;FUT pita munapita V;PL;2;PST pita ndinapita V;SG;1;PST pita mumapita V;PL;2;PRS pita adzapita V;PL;3;FUT pita tidzapita V;PL;1;FUT pita ndimapita V;SG;1;PRS pita amapita V;PL;3;PRS pita timapita V;PL;1;PRS pita anapita V;SG;3;PST pita tinapita V;PL;1;PST pita mudzapita V;SG;2;FUT pita kupita V;NFIN pita mudzapita V;PL;2;FUT pita amapita V;SG;3;PRS pita adzapita V;SG;3;FUT pita mumapita V;SG;2;PRS sangalala amasangalala V;SG;3;PRS sangalala amasangalala V;PL;3;PRS sangalala anasangalala V;PL;3;PST sangalala mudzasangalala V;PL;2;FUT sangalala ndimasangalala V;SG;1;PRS sangalala mudzasangalala V;SG;2;FUT sangalala adzasangalala V;PL;3;FUT sangalala anasangalala V;SG;3;PST sangalala ndidzasangalala V;SG;1;FUT sangalala tidzasangalala V;PL;1;FUT sangalala adzasangalala V;SG;3;FUT sangalala mumasangalala V;SG;2;PRS sangalala mumasangalala V;PL;2;PRS sangalala kusangalala V;NFIN sangalala timasangalala V;PL;1;PRS sangalala munasangalala V;PL;2;PST sangalala tinasangalala V;PL;1;PST sangalala ndinasangalala V;SG;1;PST sangalala munasangalala V;SG;2;PST taya mumataya V;SG;2;PRS taya timataya V;PL;1;PRS taya tinataya V;PL;1;PST taya anataya V;PL;3;PST taya mumataya V;PL;2;PRS taya ndinataya V;SG;1;PST taya amataya V;PL;3;PRS taya mudzataya V;PL;2;FUT taya adzataya V;SG;3;FUT taya amataya V;SG;3;PRS taya adzataya V;PL;3;FUT taya munataya V;PL;2;PST taya munataya V;SG;2;PST taya anataya V;SG;3;PST taya ndidzataya V;SG;1;FUT taya ndimataya V;SG;1;PRS taya tidzataya V;PL;1;FUT taya kutaya V;NFIN taya mudzataya V;SG;2;FUT tsegula mumatsegula V;SG;2;PRS tsegula mumatsegula V;PL;2;PRS tsegula ndimatsegula V;SG;1;PRS tsegula adzatsegula V;PL;3;FUT tsegula ndinatsegula V;SG;1;PST tsegula munatsegula V;PL;2;PST tsegula tinatsegula V;PL;1;PST tsegula anatsegula V;PL;3;PST tsegula adzatsegula V;SG;3;FUT tsegula timatsegula V;PL;1;PRS tsegula munatsegula V;SG;2;PST tsegula mudzatsegula V;SG;2;FUT tsegula amatsegula V;PL;3;PRS tsegula anatsegula V;SG;3;PST tsegula ndidzatsegula V;SG;1;FUT tsegula kutsegula V;NFIN tsegula mudzatsegula V;PL;2;FUT tsegula tidzatsegula V;PL;1;FUT tsegula amatsegula V;SG;3;PRS
2dfa683904545b36a5b1e9963b6a3ba00c21685d
13d93c2922005af35056d015f1ae3ebebe05ee31
/scilab/physique/elec/triphase.sce
a3aa557998a40d39692fdecd36d4d5465e2a48bd
[]
no_license
scls19fr/openphysic
647cc2cdadbdafd050d178e02bc3873bd2b07445
67bdb548574f4feecb99b60995238f12f4ef26da
refs/heads/master
2021-04-30T23:16:26.197961
2020-11-16T20:21:17
2020-11-16T20:21:17
32,207,155
1
1
null
null
null
null
UTF-8
Scilab
false
false
234
sce
triphase.sce
clear %theta_deg=[0:5:360]'; %theta=%theta_deg*2*%pi/360; v1=sin(%theta); v2=sin(%theta-2*%pi/3); v3=sin(%theta-4*%pi/3); u12=v1-v2; u13=v1-v3; u23=v2-v3; u21=v2-v1; u31=v3-v1; u32=v3-v2; plot2d(%theta,[v1 v2 v3 u12 u13 u21 u31 u32])
7a30cfb20850b2fef104cd236e06a78cc80ab140
449d555969bfd7befe906877abab098c6e63a0e8
/3281/CH3/EX3.5/ex3_5.sce
0a21fa91091092f592838b6746e87ed23de5af8e
[]
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
276
sce
ex3_5.sce
//Page Number: 142 //Example 3.5 clc; //Given P=12.8D-3; //W l=3; //cm lamb=4.2; //cm vswr=2.2; jfi=%i*4.49; //ap ap=sqrt(2*P); //Phase shift bl=(2*%pi*l)/lamb; //bp bp=(ap*(vswr-1))/(vswr+1); a=ap*exp(jfi); b=bp*exp(jfi); disp(a,b,'Required Waves:');
7c62b758643310843e90af3554eaa68e595b4dc8
2ac3595ed7f1ea89f95169caefd85f9a1c52a6d9
/base/Applications/Tests/TesterTest/shellfail.tst
0ad729443125d7d5274960ed52d47d798dca82c2
[]
no_license
lastweek/source-singularity
bc61bdac3047ef02cc017841d7621831b5413fe8
d37047d36f26f7543224905ae35a369448be904e
refs/heads/master
2021-10-13T01:19:54.646849
2021-09-26T18:58:14
2021-09-26T18:58:14
210,944,019
86
8
null
null
null
null
UTF-8
Scilab
false
false
381
tst
shellfail.tst
<Profile Name="Sample"> <Module Name="TestDriver"> <Suite Name="ShellX" KnownFailure="These don't work right now or throw a deliberate exception"> <Test Name="pnp"/> <Test Name="disk"/> <Test Name="warmboot"/> <Test Name="play"/> <Test Name="throw"/> <Test Name="throwwithlinkstack"/> </Suite> </Module> </Profile>
a2121a4e05d5ef313ace31c3e9e36bd88f0b7e1d
449d555969bfd7befe906877abab098c6e63a0e8
/3710/CH2/EX2.3/Ex2_3.sce
55b513cfa040598386c008d1e7a10896ad8c2572
[]
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
556
sce
Ex2_3.sce
//Example 2.3, Page Number 60 //Effective Density Calculation clc; m=9.1*(10**-31) //Mass of electron in kilogram me=0.55*m //Effective mass T=300 //Temperature in Kelvin k=1.38*(10**-23) //Boltzmann Constant in meter square kilogram per second square Kelvin h=6.6*(10**-34) //Plancks Constant in meter square kilogram per second //From equation 2.33 N=2*(((2*%pi*me*k*T)/(h*h))**1.5) //N is the Effective density of states in the conduction band mprintf("The Effective Density of States in the Conduction Band is %.2e Per Meter Cube",N);
25cd2d2992aeddc9031fc24e950f9bbce45323d4
449d555969bfd7befe906877abab098c6e63a0e8
/68/CH2/EX2.1/ex1.sce
7398cc421f935e58b2b082306be416d3d2b5ca6a
[]
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
881
sce
ex1.sce
// Example 2.1 : Closed loop and open loop gain // Consider inverting configuration // 2.1a R_1=1000; // (ohm) R_2=100*10^3; // (ohm) A=10^3; // (V/V) disp(A,"A (V/V)") G=-R_2/R_1/(1+(1+R_2/R_1)/A); disp(-G,"G") e=(-G-(R_2/R_1))/(R_2/R_1)*100; disp(e,"e (%)") v_1=0.1; // (V) v_1=G*v_1/A; disp(v_1,"v_1 (V)") A=10^4; // (V/V) disp(A,"A (V/V)") G=-R_2/R_1/(1+(1+R_2/R_1)/A); disp(-G,"G") e=(-G-(R_2/R_1))/(R_2/R_1)*100; disp(e,"e (%)") v_1=0.1; // (V) v_1=G*v_1/A; disp(v_1,"v_1 (V)") A=10^5; // (V/V) disp(A,"A (V/V)") G=-R_2/R_1/(1+(1+R_2/R_1)/A); disp(-G,"G") e=(-G-(R_2/R_1))/(R_2/R_1)*100; disp(e,"e (%)") v_1=0.1; // (V) v_1=G*v_1/A; disp(v_1,"v_1 (V)") // 2.1b A=50000; // (V/V) disp(A,"A (V/V)") G=-R_2/R_1/(1+(1+R_2/R_1)/A); disp(-G,"G") disp("Thus a -50% change in the open loop gain results in only -0.1% in the closed loop gain")
d80448c48caa52d96e89b4b9e2fb475dbc991e3d
449d555969bfd7befe906877abab098c6e63a0e8
/2705/CH7/EX7.1/Ex7_1.sce
3a546321865b49e5ece9ce791a44344056f8025d
[]
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
556
sce
Ex7_1.sce
clear; clc; disp('Example 7.1'); // aim : To determine // the specific enthalpy of water // Given values Tf = 273+100;// Temperature,[K] // solution // from steam table cpl = 4.187;// [kJ/kg K] // using equation [8] sf = cpl*log(Tf/273.16);// [kJ/kg*K] mprintf('\n The specific entropy of water is = %f kJ/kg K\n',sf); // using steam table sf = 1.307;// [kJ/kg K] mprintf('\n From table The accurate value of sf in this case is = %f kJ/kg K\n',sf); // There is small error in book's final value of sf // End
7909ec2f475f04733ecfb8387ef09f43a63cc82e
449d555969bfd7befe906877abab098c6e63a0e8
/2966/CH1/EX1.6.52/1_6_52.sce
2fc244fd29cff88455a8cec3c31e8b762ebda07d
[]
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
556
sce
1_6_52.sce
//water// //page 1.52 example 6// clc volume_hardwater=800//in litres// volume_NaCl=40//Volume of NaCl in litres// conc_NaCl=110//% NaCl consumed by zeolite bed// Wt_per_Litre=conc_NaCl*10//gms NaCl consumed by zeolite bed per litre// total_wt=Wt_per_Litre*volume_NaCl//total gms NaCl consumed by zeolite bed// CaCO3_equivalent=total_wt*50/58.5//in terms of (gms/lit)// H=CaCO3_equivalent/volume_hardwater//Hardness of water(gms/lit)// Hardness=H*100//Hardness of water(mg/lit) or ppm// printf("\nHardness of water sample is %.2f ppm",Hardness);
b0234519c93b361d96e57ccb18c9888b3e1edf52
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/uencode/uencode11.sce
18654c8e8463508e7f40f7d920fecfaf6394bb79
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
148
sce
uencode11.sce
u=[1 2 .3 .4 5;-2 3 4 .5 6;.3 4 5 6 7]; y=uencode(u,3,2,'signed'); disp(y); // output // 2 3 0 0 3 // -4 3 3 1 3 // 0 3 3 3 3
6f59dbdb63a1328b12c476992946859ef8adbcd2
c71594b945f16fe9017f71039bfcfc1412c43e2a
/And8/And8.tst
e87fa098e3091eb3e67fb26125441e28165f49ff
[]
no_license
Quanta770/nand2tetris-
089432ca788a743897e972a48cd29e451cceba91
fee41d9230bb4a964526f7ff13cc94a8b73f4a7e
refs/heads/master
2020-08-06T19:15:30.552297
2019-10-25T08:14:49
2019-10-25T08:14:49
213,120,493
0
0
null
2019-10-25T08:14:50
2019-10-06T06:39:34
Assembly
UTF-8
Scilab
false
false
405
tst
And8.tst
load And8.hdl, output-file And8.out, compare-to And8.cmp, output-list a%B1.8.1 b%B1.8.1 out%B1.8.1; set a %B00000000, set b %B00000000, eval, output; set a %B00000000, set b %B11111111, eval, output; set a %B11111111, set b %B11111111, eval, output; set a %B10101010, set b %B01010101, eval, output; set a %B00111001, set b %B10001101, eval, output; set a %B11100010, set b %B11000101, eval, output;
bb4cd4427e5438b50ea0251d75b685df7a0e9988
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set8/s_Elements_Of_Mechanical_Engineering_N._M._Bhatt_And_J._R._Mehta_2339.zip/Elements_Of_Mechanical_Engineering_N._M._Bhatt_And_J._R._Mehta_2339/CH13/EX13.6.1/Ex13_6.sce
64404f1f79d1ac2154b885f1a4ae1d62d09127d9
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
183
sce
Ex13_6.sce
errcatch(-1,"stop");mode(2); Na=600; Za=25; Zb=50; Zc=20; Zd=40; Nad=(Zb/Za)*(Zd/Zc); Nd=Na/Nad; printf('Speed of Output Shaft= %2.1f RPM',Nd); printf('\n'); exit();
63092e7b59251a32426bf6622aa426b14f6e7925
449d555969bfd7befe906877abab098c6e63a0e8
/1970/CH1/EX1.7/Ch01Exa7.sce
efc98cd89cee4ce2a01f4d35279b517807934f48
[]
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
579
sce
Ch01Exa7.sce
// Scilab code Exa1.7 : : Page 53 (2011) clc; clear; M = 20*1.66054e-027; // v = 10^5; // Speed of the ion, metre per sec B = 0.08; // Magnetic field, tesla e = 1.60218e-019; // Charge of an electron, C n = 1; // Number of the ion R_20 = M*v/(B*n*e) // Radius of the neon-20, metre R_22 = 22/20*R_20; // Radius of the neon-22, metre printf("\nRadius of the neon-20 : %5.3f metre \nRadius of the neon-22 : %5.3f metre", R_20, R_22); // Result // Radius of the neon-20 : 0.259 metre // Radius of the neon-22 : 0.285 metre
edc25b474d752256c5ddd0f5eb8cd5b522c2f74e
e463a1b5938cb65a6a9470c4c93a3fb10b05812d
/Routh_t.sce
2979baf3802381275de58cd5aadd33b516fad17a
[]
no_license
HilkenM/Sistemas-de-Controle
a7158daf2c700dfd5f580514a2b2a68154bc4dfa
29958758dcff56b53ec27ea6bf8a4031d9594cc1
refs/heads/main
2023-05-20T08:50:13.741512
2021-06-13T18:57:32
2021-06-13T18:57:32
312,902,288
0
0
null
null
null
null
UTF-8
Scilab
false
false
243
sce
Routh_t.sce
//Hilken Matthaus - 14/11/2020- Sistemas de controle 2 //Definição da variável s =poly(0,'s') //Definição do sistema H = syslin([],1,s^3+6*s^2+11*s+6) //Chamada da função routh_t G= routh_t(H,0) //mostrar na tela disp(G)
755ca01a335ddaf20ae837c0e71cb282bfd36fa4
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH26/EX26.1/example26_1.sce
dac540e175eca0d94ab3f6b6d3604f635a4519e5
[]
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
86
sce
example26_1.sce
p=50; i=1.5; r=p/i^2; disp("the resistance (in Ω) of the AC circuit is"); disp(r);
5ead7b17f5c6833da128e77aa1ed655e338ef120
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH2/EX2.29/Ex2_29.sce
f956d2f4bbd113c85dc9f400baafe6fad567e679
[]
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
847
sce
Ex2_29.sce
clc; l=1.2; // length of iron path a=5*5*10^-4; // area of cross section uo=4*%pi*10^-7; // permeability for free space ur=1500; // relative permeability for iron i=2; // exciting current n=1000; // number of turns of coil g=0.5*10^-2; // air gap length r=(l/(uo*ur*a))+(g/(uo*a)); // net reluctance f=(n*i)/r; // flux in coil fe1=((f^2*l)/(uo*ur*a))/2; printf('Field energy stored in iron is %f J\n',fe1); fe2=((f^2*g)/(uo*a))/2; printf('Field energy stored in air gap is %f J\n',fe2); r1=fe2/fe1; printf('Ratio of field energy stored in air gap to field energy stored in iron is %f \n',r1); d1=fe1/(l*a); printf('Energy density in iron is %f J/m^3\n',d1); d2=fe2/(g*a); printf('Energy density in air gap is %f J/m^3\n',d2); r2=d2/d1; printf('Ratio of energy density in air gap to energy density in iron is %f \n',r2);
3f43e7d5db9584db00fd875e8ed91a9ea45bfb7e
449d555969bfd7befe906877abab098c6e63a0e8
/1073/CH2/EX2.23/2_23.sce
c8dd64665682ae41f04a242fa84745f662d4a593
[]
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
533
sce
2_23.sce
clc; //Example 2.23 T1=913 //[K] T=513 //[K] T2=313 //[K] //Q=(T1-T)/(x/(k*A)) //Q=(T-T2)/(1/(h*A)) //x=2k/h //Q=(T1-T2)/(x/(kA)+1/(h*A)) //Therefore,Q=hA/3*(T1-T2) //With increase in thickness(100%) //x1=4*k/h //Q2=(T1-T2)/(x1/k*A+1/(h*A)) //Q2=(h*A)/5)*(T1-T2) //Now h=1; //Assume A=1; //Assume for calculation Q1=(h*A/3)*(T1-T2) Q2=((h*A)/5)*(T1-T2) percent=(Q1-Q2)*100/Q1 //Percent reduction in heat loss printf("\nTherefore,Percentage reduction in heat loss is %d percent",percent);
afe2c587213b853654dc5149985bde18154d60dc
c557cd21994aaa23ea4fe68fa779dd8b3aac0381
/test/readlimit.tst
980541fe37d59c1099513e0c82d9263cdf4de4eb
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
dougsong/reposurgeon
394001c0da4c3503bc8bae14935808ffd6f45657
ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b
refs/heads/master
2023-03-09T15:22:45.041046
2023-02-25T08:33:06
2023-02-25T08:33:06
280,299,498
1
0
NOASSERTION
2023-02-25T08:33:08
2020-07-17T01:45:32
Go
UTF-8
Scilab
false
false
256
tst
readlimit.tst
## Test readlimit set relax set echo readlimit 3 read <simpletag.svn prefer git write - # This should yield an EOF message. read <binary.svn prefer git write - # This should not read <bs.fi prefer git write - # This should read <utf8.fi prefer git write -
1ff3f3f7f93c9b7d965a026ee545ead3bc858ede
4a1effb7ec08302914dbd9c5e560c61936c1bb99
/Project 2/Experiments/Ripper-C/results/Ripper-C.flare-10-1tra/result1s0.tst
bf2a8957693758926127180538c017e7c5083b20
[]
no_license
nickgreenquist/Intro_To_Intelligent_Systems
964cad20de7099b8e5808ddee199e3e3343cf7d5
7ad43577b3cbbc0b620740205a14c406d96a2517
refs/heads/master
2021-01-20T13:23:23.931062
2017-05-04T20:08:05
2017-05-04T20:08:05
90,484,366
0
0
null
null
null
null
UTF-8
Scilab
false
false
950
tst
result1s0.tst
@relation flare @attribute LargestSpotSize{A,R,S,X,K,H} @attribute SpotDistribution{X,O,I,C} @attribute Activity{1,2} @attribute Evolution{1,2,3} @attribute Prev24Hour{1,2,3} @attribute HistComplex{1,2} @attribute BecomeHist{1,2} @attribute Area{1,2} @attribute C-class{0,1,2,3,4,5,6,7,8} @attribute M-class{0,1,2,3,4,5} @attribute X-class{0,1,2} @attribute Class{H,D,C,B,E,F} @inputs LargestSpotSize,SpotDistribution,Activity,Evolution,Prev24Hour,HistComplex,BecomeHist,Area,C-class,M-class,X-class @outputs Class @data B B B B B B D D D E B B D E D E E B C E E E H H H H C B D E D C D F H H F E H H B B D C C C H H C D H H H H E D H H D D B B H H C C D D B B D F D E C E D D C C D E H H H H H H F E C C C C C B H H C E F D C B D E B B H H E E H H H H B B H H H H B B H H B B H H B B H H H H D C H H C E E C H H H H F E B B D F C D E F C D E F D C H H C E H H H H D E C C E F H H C C D C C F B B B B H H D D E E D C C C D C E C H H H H H H C C D E
8762bec8d2baa063da5f3712630f0b7cf388d556
449d555969bfd7befe906877abab098c6e63a0e8
/3717/CH4/EX4.3/Ex4_3.sce
aa7995b77ef7c8644263edb9279809f3977f8ab4
[]
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
Ex4_3.sce
// Ex4_3 Page:64 (2014) clc;clear; m = 9.1e-031; // Mass of an electron, kg h_cross = 1.05e-034; // Reduced Planck's constant, Js v = 4e+06; // Speed of the electron, m/s p = m*v; // Momentum of the electron, kg-m/s delta_p = p/100; // Uncertainty in momentum of the electron, kg-m/s delta_x = h_cross*1e+09/(2*delta_p); // Uncertainty in position of the electron, nm printf("\nThe uncertainty in position of the electron = %4.2f nm", delta_x); // Result // The uncertainty in position of the electron = 1.44 nm
3573947e9369320d00671233715298a6171818b3
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH6/EX6.5/Ex6_5.sce
89fde72930af2facab62e3daa7dad699624a4512
[]
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
741
sce
Ex6_5.sce
//calculating greatest rate of change of current //i=50*sin(100*%pi*t) mprintf("Greatest rate of change of current=%f A/sec\n",50*100*%pi) //calculating average value of current f=50//frequency of the wave T=1/f Imean=1/.01*integrate("50*sin(100*%pi*t)","t",0,T/2) mprintf("Average value of the given current=%f A\n",Imean) Irms=sqrt(integrate("(50*sin(theta))^2","theta",0,2*%pi)/(2*%pi)) mprintf("RMS value of current=%f A\n",Irms) //calculating time interval between a maximum value and next zero value t=(%pi/2)/(100*%pi) mprintf("Time interval between a maximum value and the next zero value is %f sec to %f sec",t,2*t) //value of greatest rate of change of current is given wrong in the textbook due to approximation
9f2798bd67cdcb5deb8acfd326cd24eec61c9520
25ecbf436e9499640445c5f8dd256d12dcfecf2a
/Vclamp/StochHH_K5 DAG Vclamp.sci
4d08a6e0b3a44c9f08f6f645daf05c3f2173bb60
[]
no_license
ModelDBRepository/141272
89fa654099db5fe443f1d34b43071108882d740e
67f44e52600c751f37f731f71a5b13a21fd28e8e
refs/heads/master
2020-05-29T18:22:46.893645
2019-05-31T02:44:35
2019-05-31T02:44:35
189,298,198
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,491
sci
StochHH_K5 DAG Vclamp.sci
// Potassium channel from original HH model // Voltage clamp simulations with non-stationary noise analysis // UNcoupled activation particles (2-state independent particles), // Goldwyn et al. (Phys Rev E 83:041908 (2011)) implementation of the // Diffusion Approximation. Coupled activation particles WITHOUT // steady state approximation of variables in the stochastic terms // See "StochHH_K2 F1 Vclamp noise.sci" for more comments stacksize('max'); nsim=200; Tstop=6; dt=0.001; //ms points = round(Tstop/dt) NK=300; //Iamp=10; Vhold=-90; Vtest=70; rand('normal'); tic(); p=1; Norec = zeros(points,nsim); // mrec = zeros(points,nsim); // nrec=mrec; v = Vhold*ones(1,nsim); an=0.01*(v+55)./(1-exp(-(v+55)/10)); bn=0.125*exp(-(v+65)/80); N=an./bn; Kstatesum=(1+N)^4; n=[ones(1,nsim);4*N;6*N.^2;4*N.^3;N.^4]./(ones(5,1)*Kstatesum); v = Vtest; an=0.01*(v+55)./(1-exp(-(v+55)/10)); bn=0.125*exp(-(v+65)/80); tint=1; for tt=dt:tint:Tstop for t = tt:dt:tt+tint-dt Norec(p,:) = n(5,:)*NK; p=p+1; trans_n=[-(bn+3*an).*n(2,:)+4*an.*n(1,:)+2*bn.*n(3,:); -(2*bn+2*an).*n(3,:)+3*an.*n(2,:)+3*bn.*n(4,:); -(3*bn+an).*n(4,:)+2*an.*n(3,:)+4*bn.*n(5,:); -4*bn.*n(5,:)+an.*n(4,:)]; trans_n=[-(bn+3*an).*n(2,:)+4*an.*n(1,:)+2*bn.*n(3,:); -(2*bn+2*an).*n(3,:)+3*an.*n(2,:)+3*bn.*n(4,:); -(3*bn+an).*n(4,:)+2*an.*n(3,:)+4*bn.*n(5,:); -4*bn.*n(5,:)+an.*n(4,:)]; na=abs(n); for ii = 1:nsim //because this algorithm needs a matrix operation (line 90) it has to be done iterating over independent simulations Dmtx = [4*an*na(1,ii)+(3*an+bn)*na(2,ii)+2*bn*na(3,ii),-(3*an*na(2,ii)+2*bn*na(3,ii)),0,0; -(3*an*na(2,ii)+2*bn*na(3,ii)),3*an*na(2,ii)+2*(an+bn)*na(3,ii)+3*bn*na(4,ii),-(2*an*na(3,ii)+3*bn*na(4,ii)),0; 0,-(2*an*na(3,ii)+3*bn*na(4,ii)),2*an*na(3,ii)+(an+3*bn)*na(4,ii)+4*bn*na(5,ii),-(an*na(4,ii)+4*bn*na(5,ii)); 0,0,-(an*na(4,ii)+4*bn*na(5,ii)),an*na(4,ii)+4*bn*na(5,ii)]/NK; Rvec_n(:,ii)=sqrtm(dt*Dmtx)*rand(4,1); end n(2:5,:)=n(2:5,:)+dt*trans_n+Rvec_n; n(1,:)=ones(1,nsim)-sum(n(2:5,:),1); end printf("time %g ms\n",t) end time=toc() scf(0); clf plot(dt:dt:Tstop,Norec) scf(1); clf plot(dt:dt:Tstop,[mean(Norec,2),variance(Norec,2)]) scf(2); clf plot(mean(Norec,2),variance(Norec,2)) printf("time = %g\n",time);
22d4071797512d511a047b68ac22398b240dce3c
b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf
/TD5/Scripts/ecart_expo.sce
f7a4275a4203becfdfe56b51ba77e7e621067eb0
[]
no_license
MFrizzy/Modelisation
51794b2edf421f9d2206cb73972d8d8d7b1e9759
0ca819afbcbe00f58f3bbaa8fc97164ae2c1d3cb
refs/heads/master
2021-08-29T12:02:20.042037
2017-12-13T22:39:21
2017-12-13T22:39:21
106,943,303
0
0
null
null
null
null
UTF-8
Scilab
false
false
634
sce
ecart_expo.sce
// a) calcul de k classes function q = quantile(l,p) q = -log(1-p)/l endfunction function t = expo(l,n) u = rand(n, 1); t = u t = -log(1-t)/l endfunction lambda=1; n = 10; C = zeros(1, n + 1) C(1) = 0; C(n+1) = 1000000000000; for i = 1:(n-1) C(i+1) = quantile(lambda,i/n); end format(6) Ei = 3000 / n // effectif espéré dans chaque classe N = 10000 d = zeros(1, N); for i = 1:N Oi = histc(C, expo(lambda,3000), normalization = %f); d(i) = sum((Oi - Ei) .^2 ./ Ei); end histplot(20,d) legend("10 000 réalisations de la mesure d écart") seuil=perctl(d,95) aa=a(1) b=d<aa histplot(10, d(b))
bb3aae2fbfe6d980c21f17bed5321494207714e9
449d555969bfd7befe906877abab098c6e63a0e8
/3129/CH5/EX5.10/Ex5_10.sce
281b0cbd992d0f5842b3c944c848502cc29f16cb
[]
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
672
sce
Ex5_10.sce
//Determining value of Le,Ce and L of Buck Conveter //Example 5.10(Page No- 214) clc clear //given data Vs = 110;//V Va = 60;//V Ia = 20;//A f = 20*10^3;//Hz del_Vc = 0.025*Va;//peak to peak ripples are 2.5% for load voltages Rv = Va/Ia; k = Va/Vs; Is = k*Ia; del_Il = 0.05*Ia;//peak to peak ripples are 5% for load current del_I = 0.1*Ia;//peak to peak ripples are 10% for filter Le current //part(a) Le = ((Va*(Vs-Va))/(del_I*f*Vs)); printf('(a)\t Le : %.2f uH',Le*10^6); Ce = (del_I/(del_Vc*8*f)); printf('\n \t Ce : %.2f uF',Ce*10^6); //del_Vc = L*(del_Il/k*T) L = (k*del_Vc)/(del_Il*f); printf('\n\t Approx value of L: %.2f uH',L*10^6);
a3dab01569a6d1cc3d42d2df0ab9eeabc0a9fe1e
449d555969bfd7befe906877abab098c6e63a0e8
/3683/CH3/EX3.5/Ex3_5.sce
fe72aaaf119ae2f6f671b9f68e3617500e5b4602
[]
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
773
sce
Ex3_5.sce
Bf=1200//width of flange, in mm Bw=200//breadth of web, in mm Df=100//thickness of flange, in mm d=400//effective depth, in mm sigma_cbc=7//in MPa sigma_st=190//in MPa m=13.33//modular ratio Ast=4*0.785*18^2//four 18 mm dia bars, in sq mm //assume x < Df; find x using Bf(x^2)/2=mAst(d-x), which becomes of the form px^2+qx+r=0 p=Bf/2 q=m*Ast r=-m*Ast*d //solving quadratic equation x=(-q+sqrt(q^2-4*p*r))/(2*p)//in mm //x < Df; hence our assumption is correct //to find critical depth of neutral axis Xc=d/(1+sigma_st/(m*sigma_cbc))//in mm //as x < Xc, beam is under-reinforced sigma_cbc=sigma_st/m*x/(d-x)//in MPa //taking moments about tensile steel Mr=Bf*x*sigma_cbc*(d-x/3)/2//in N-mm mprintf("Moment of resistance of the beam=%f kN-m", Mr/10^6)
9ffeb149d51304cd86584325264288a15faa55d4
592b1b7dfaefd62d755737ac7b6e81f44f7786ba
/7a Program to solve differential equation using Euler’s method.sce
d2da5b964d5364fa88279d30314cb75136518c77
[]
no_license
muitnet/Numerical-and-Statistical-Methods-sem2-fybscit-mumbai-university
841143b72d52229c68bcd0666ed10c844c02f507
2d1c638b881f3e418a982baa02632effd03ae5fe
refs/heads/master
2021-01-19T07:23:05.463429
2017-04-07T11:54:24
2017-04-07T11:54:24
87,540,712
6
5
null
null
null
null
UTF-8
Scilab
false
false
216
sce
7a Program to solve differential equation using Euler’s method.sce
function [Y0]=eular(X0, Y0, h, yest, f) n=(yest-X0)/h for i=1:n Y0=Y0+f(X0,Y0)*h; X0=X0+h; disp(Y0) end; endfunction deff('[y]=f(a,b)','y=b-a*b+a'); eular(0,1,0.2,1,f)
d4da85336c1ff500b3c8079549cfa7afd50b50ed
ebfed86dee276110294a4e93fa80377908bbd317
/macros/houghlines.sci
c52bb7214fd5cc2671e620ab7972dcfa9ec64779
[]
no_license
gursimarsingh/FOSSEE-Image-Processing-Toolbox
a9d46b698c98566fec867eb2ce3cfeb427058d5c
165f6d7d1f20262a1637a923c6aad6e663ad1538
refs/heads/master
2021-08-16T19:18:59.591175
2017-11-08T17:55:04
2017-11-08T17:55:04
96,531,802
0
0
null
2017-07-07T11:21:10
2017-07-07T11:21:10
null
UTF-8
Scilab
false
false
3,104
sci
houghlines.sci
// Copyright (C) 2015 - IIT Bombay - FOSSEE // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt // Author: Gursimar Singh,Shubheksha Jalan // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in function [lines]=houghlines(image,rho, theta, threshold, srn, stn) //Extract line segments based on Standard Hough transform // //Calling Sequence //out=houghlines(image,rho,theta, threshold, srn, stn) // //Parameters //image:Input image.Must be in grayscale. //lines: Output matrix of lines. A 2 coloumn matrix ([rho,theta]) rho is the distance from the coordinate origin (0,0) (top-left corner of the image). theta is the line rotation angle in radians (0 ~ vertical line, pi/2 ~ horizontal line). //rho:Distance resolution of the accumulator in pixels. default 1. //theta:Angle resolution of the accumulator in radians. default pi/180. //threshold:Accumulator threshold parameter. Only those lines are returned that get enough votes (>Threshold). //srn:For the multi-scale Hough transform, it is a divisor for the distance resolution Rho. The coarse accumulator distance resolution is Rho and the accurate accumulator resolution is Rho/SRN. If both SRN=0 and STN=0, the classical Hough transform is used. Otherwise, both these parameters should be positive. //stn:For the multi-scale Hough transform, it is a divisor for the distance resolution Theta. // //Description //The function implements the standard or standard multi-scale Hough transform algorithm for line detection. See homepages.inf.ed.ac.uk/rbf/HIPR2/hough.htm for a good explanation of Hough transform. // //Examples //im=imread("images/check.jpg"); //img=canny(im,50,100,3,1); //lines=houghlines(img,1,%pi/180,120,0,0); //sz=size(lines); //sz=sz(1); //for i=1:sz // rho = lines(i,1); // theta = lines(i,2); // a = cos(theta); // b = sin(theta); // x0 = a*rho; // y0 = b*rho; // x1 = round(x0 + 1000*(-b)); // y1 = round(y0 + 1000*(a)); // x2 = round(x0 - 1000*(-b)); // y2 = round(y0 - 1000*(a)); // line(im,x1,y1,x2,y2,0,0,255,2,8,0); // end //imshow(im); // //Authors //Gursimar Singh //Shubheksha Jalan // //See also //houghlinesp //line [lhs rhs] = argn(0); if rhs>6 then error(msprintf("Too many input arguments")); end if rhs<6 then error(msprintf("Not enough input arguments")); end if lhs >1 error(msprintf("Too many output arguments")); end if srn<0 error(msprintf("srn must be positive")); end if stn<0 error(msprintf("stn must be positive")); end if threshold<0 error(msprintf("threshold must be positive")); end image1=mattolist(image); sz=size(image1); if sz >=3 then error(msprintf("Input image must be grayscale")); end lines=raw_houghlines(image1,rho, theta, threshold, srn, stn); endfunction;
ab6ba8ab1843c9e028f1539c5cd897bb4c06957a
449d555969bfd7befe906877abab098c6e63a0e8
/2087/CH5/EX5.4/example5_4.sce
9b8d94b328873970035c6e50c5bcc8458021bc96
[]
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
385
sce
example5_4.sce
//example 5.4 //calculate discharge from tubewell clc; //given d=30; //diameter of well s=2; //drawdown L=10; //length of stainer k=0.05; //coefficient of permeability r=300; //radius of zero drawdown Q=2.72*k*s*(L+s/2)/(100*log10(2*100*r/d)); Q=round(Q*10000)/10000; mprintf(" discharge from tubewell=%f cumec.",Q);
6780e0cd17179f492e2573540021289e2d0127a1
449d555969bfd7befe906877abab098c6e63a0e8
/779/CH10/EX10.13/10_13.sce
236351998024346803b22d521050dd523bee8608
[]
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
342
sce
10_13.sce
P1 = 300e03; V1 = 0.07; m = 0.25; T1 = 80+273; R = (P1*V1)/(1000*m*T1); P2 = P1; V2 = 0.1; T2 = (P2*V2)/(1000*m*R); W = -25; cv = -W/(m*(T2-T1)); cp = R+cv; S21 = m*cp*log(V2/V1); // S21 = S2-S1 disp("kJ/kg K",cv,"cv of the gas is") disp("kJ/kg K",cp,"cp of the gas is") disp("kJ/kg K",S21,"Increase in the entropy of the gas is")
981d4dfc9ee4267cf3e8bc3ee25488c062a3dffa
449d555969bfd7befe906877abab098c6e63a0e8
/2744/CH1/EX1.8/Ex1_8.sce
29154d1943c6f65a3c334ca2a7c42012fccc1596
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
343
sce
Ex1_8.sce
clear all; clc; P = 1200;//axial pull in lb-wt d1 = 1;//diameter of one end in inches d2 = 0.5;//diameter of other end in inches l = 10;//length of the rod in inches E = 14*10^6;//modulus of elsticity in lb/in^2 del_l = 4*P*l/(%pi*E*d1*d2);//change in length in inches printf('The change in length of the rod is %.4f inches',del_l);
48129a9fba658dccfe0ef22a982e1e44101ca61c
1b1878a49e894335957c80a1896ec826fc276add
/func.sce
b365d0686de94d228e17886f59d00831edba6d85
[]
no_license
ThiagoMoraes-UERJ/ModelosLineares
20a76778cbe844e65fbb26f8b4d8cd3f8216be5b
0c3a4757c830c09074bebe4ad0388ecce6aad4aa
refs/heads/master
2020-05-21T14:29:26.970544
2019-05-24T20:12:39
2019-05-24T20:12:39
186,079,640
0
0
null
null
null
null
UTF-8
Scilab
false
false
7,457
sce
func.sce
//----------------SOMATÓRIOS----------------------------------------- function somatorioYX = SomatorioXY(n, X , Y ) i=1; somaYX = 0; while(i<=n) somaYX = somaYX + (X(i)*Y(i)); i = i+1; end somatorioYX = somaYX endfunction function somatorioY = SomatorioY(n , Y) i=1; somaY = 0; while(i<=n) somaY = somaY + Y(i); i = i+1; end somatorioY = somaY; endfunction function somatorioX = SomatorioX(n , X ) i=1; somaX = 0; while(i<=n) somaX = somaX + X(i); i = i+1; end somatorioX = somaX; endfunction //---------- SXX-------------------------------------------------------------( S Q T ) // VARIAÇÃO DE Y EM TORNO DA SUA MÉDIA function somatorioXX = Sxx(n , X ) i=1; somatoriox = SomatorioX(n,X); x1 = somatoriox/n; somaXX = 0; while(i<=n) somaXX = somaXX + (X(i)-x1)^2; i = i+1; end somaXX = somaXX/(n-1); somatorioXX = somaXX; endfunction //----------SXY-------------------------------------------------------------- function somaXY = Sxy(n,X,Y) somaXY = ((SomatorioXY(n,X,Y) - ((1/n) * SomatorioY(n,Y) * SomatorioX(n,X)))/(n-1)); endfunction //-------------------------------------------------------------------------( S Q E ) // VARIAÇÃO DE Y EM TORNO DA RETA function q = sqe(n,X,Y) i = 1; soma = 0; b0 = B0(n,X,Y); b1 = B1(n,X,Y); while (i<=n) y1 = b0+(b1*X(i)); soma = soma + ((Y(i)-y1)^2); i = i+1; end q = soma; endfunction //-------------------------------------------------------------------------( S Q R E G ) // VARIAÇÃO DA RETA EM TORNO DA MÉDIA DE Y function reg = sqreg(n,X,Y) i = 1; soma = 0; b0 = B0(n,X,Y); b1 = B1(n,X,Y); y2 = (SomatorioY(n,Y))/n; while (i<=n) y1 = b0+(b1*X(i)); soma = soma + ((y1 - y2)^2); i = i+1; end reg = soma; endfunction //-------------------------------------------------------------------------( S Q T ) // VARIAÇÃO DE Y EM TORNO DA SUA MÉDIA function d = sqt(n,X,Y) SQE = sqe(n,X,Y); SQREG = sqreg(n,X,Y); d = SQE + SQREG ; endfunction // ----------------------------TESTE PARA A ESCOLHA DE MODELO SIMPLES E O MRLS ----------- function test(n,X,Y,F) t = (sqreg(n,X,Y))/(sqe(n,X,Y)/(n-2)); if (t > F) then disp("B1 É DIFERENTE DE O ") end if (t < F) then disp("B1 PODE SER IGUAL A O ") end endfunction // ----------------------------TABELA ANOVA ----------- function ANOVA(n,X,Y) SQE = sqe(n,X,Y); SQREG = sqreg(n,X,Y); SQT = SQE + SQREG; th = (n-2); p = SQE/(n-2); h = 0; l = n-1; w = ((SQREG)/(SQE/(n-2))); // DADOS FV = ["REGRESSÃO","ERRO","TOTAL"]; GL = [1,th,l]; SQ = [SQREG,SQE,SQT]; QM = [SQREG,p,h]; Fo = [w,h,h]; disp("--------------------------------------------------------"); disp("Tabela ANOVA"); disp("--------------------------------------------------------"); disp("FV GL SQ QM FO"); disp(string(FV(1))+" "+string(GL(1))+" "+string(SQ(1))+" "+string(QM(1))+" "+string(Fo(1))); disp(string(FV(2))+" "+string(GL(2))+" "+string(SQ(2))+" "+string(QM(2))+" "+string(Fo(2))); disp(string(FV(3))+" "+string(GL(3))+" "+string(SQ(3))+" "+string(QM(3))+" "+string(Fo(3))); disp("--------------------------------------------------------"); endfunction // função B0 E B1 //------------------------------------------------------------------------- function b1 = B1(n,X,Y) b1 = Sxy(n,X,Y) / Sxx(n,X); endfunction function b0 = B0(n,X,Y) b0 = 1/n*((SomatorioY(n,Y)) - (B1(n,X,Y)* SomatorioX(n,X))); endfunction //------------------- MELHOR RETA----------------------------------------------- function p = func( n , X , Y) b0 = B0(n,X,Y); b1 = B1(n,X,Y); //disp("Y = "+string(b1)+ "x" +" + "+ string(b0) ); p = "Y = "+string(b1)+ "x" +" + "+ string(b0); endfunction //-------------------FUNÇÃO DE CORRELAÇÃO----------------------------------------------- function t= Rxy(n,X,Y) t = Sxy(n,X,Y)/(sqrt(Sxx(n,X))*sqrt(Sxx(n,Y))); //disp("Correlação: "+string(r)); endfunction //-------------------------RESÍDUOS---------------------------------------------------------+++++++++++++++++ RETORNA UM ARRAY DE RESIDUOS function res = e(n,X,Y) i=1; b0 = B0(n,X,Y); b1 = B1(n,X,Y); while (i <= n) y1 = (b1*X(i)) + b0; E(i) = Y(i) - y1; i = i+1; end res = E; endfunction //------------------------------RESÍDUOS MINIMO MEDIO MAX--------------------------------------------- function resi(n,X,Y) E = e(n,X,Y); i = 1; minimo = 0; medio = 0; maximo = 0; while (i<=n) if(minimo>X(i)) minimo = X(i); end if (maximo<X(i)) maximo = X(i); end medio = medio + X(i); i = i+1; end medio = medio/n; disp("residuos"); disp("-----------------------------"); disp("MINIMO:"+string(minimo)); disp("MEDIO:"+string(medio)); disp("MAXIMO:"+string(maximo)); disp("-----------------------------"); endfunction //------------------ESPERANÇA --------------------------------------------------------------- function espe = esp(n,X) i = 1; soma = 0; while (i<=n) soma = soma + X(i); i = i+1; end espe = soma/n; endfunction //------------------VARIÂNCIA----------------------------------------------------------------- function vari = var(n,X,Y) i = 1; soma = 0; b0 = B0(n,X,Y); b1 = B1(n,X,Y); med = esp(n,X); while (i<=n) y1 = b0+b1*X(i); soma = soma + (((Y(i)- y1)^2)/(n-2)); i = i+1; end vari = soma; endfunction //------------------------FUNÇÃO PRINCIPAL--------------------------------------------------- function f(n,X,Y) bo = B0(n,X,Y); b1 = B1(n,X,Y); correlacao = Rxy(n,X,Y); RESIDUOS = e(n,X,Y); esperancaX = esp(n,X); esperancaY = esp(n,Y); variancaX = var(n,X); variancaY = var(n,Y); melhorReta = func(n,X,Y); disp(" RESPOSTA: "); disp(" B0 : "+string(bo)); disp(" B1 : "+string(b1)); disp(" CORRELAÇÃO : "+string(correlacao)); disp(" ESPERANÇA X : "+string(esperancaX)); disp(" ESPERANÇA Y : "+string(esperancaY)); disp(" VARIÂNCIA : "+string(variancaX)); disp(" MELHOR RETA : "+string(melhorReta)); ANOVA(n,X,Y); resi(n,X,Y); endfunction //================ FAZENDO ============================================================================ //------------------------retirar os pontos influentes E criar um array de pontos--------------------------------------------------- function m = ret(n,X,Y,m1,m2) i = 1; j = 1; while (i<=n) if(Y(i)< m1 || Y(i)> m2) Vx(j) = X(i); Vy(j) = Y(i); j = j+1; end i = i+1; end //f(j,Vx,Vy); m = Vy; endfunction
b694e567d384b04309af00475bdda6cef279588c
449d555969bfd7befe906877abab098c6e63a0e8
/3809/CH9/EX9.2/EX9_2.sce
2a21519aaedb59c7ed271e3d11ae9b27ebb0238f
[]
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
520
sce
EX9_2.sce
//Chapter 9, Example 9.2 clc //Initialisation L=400*10**-3 //inductance in henry R=20 //resistance in ohm V=15 //voltage i=300*10**-3 //current in amp e=2.7183 //exponent //Calculation T=L/R //time constant in sec I=V/R //current in amp from Ohms Law t=(log10(I/(I-i))/log10(e))*T //time period //Results printf("t = %.1f ms",t*1000)
fd9026a3b95a63f89eb804bec1ec7a82b686c7a9
449d555969bfd7befe906877abab098c6e63a0e8
/3821/CH9/EX9.9/Example9_9.sce
d68b5a2c694f517f03530e80c3b3aad77955e0ae
[]
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,227
sce
Example9_9.sce
///Chapter 9 Law Of Thermodynamics ///Example 9.9 Page No:171 ///Find Net heat transfer in 1st cycle ///Input data clc; clear; Qab=-6500; //Heat transferred in 1st process KJ/min Qbc=0; //Heat transferred in 2nd process Qcd=-10200; //Heat transferred in 3rd process KJ/min Qda=32600; //Heat transferred in 4th process KJ/min Wab=-1050; //Heat transferred in 1st process KJ Wbc=-3450; //Heat transferred in 2nd process KJ Wcd=20400; //Heat transferred in 3rd process KJ Wda=0; //Heat transferred in 4th process ///Calculator dQ=Qab+Qbc+Qcd+Qda; //Net heat transfer in 1st cycle dW=Wab+Wbc+Wcd+Wda; //Net work done in 1st cycle dW1=dW/60; //Net work done in 1st cycle DeltaUab=Qab-Wab; //ab process DeltaUbc=Qbc-Wbc; //bc processes DeltaUcd=Qcd-Wcd; //cd processes DeltaUda=Qda-Wda; //dc processes ///Output printf('Net heat transfer in 1st cycle= %f KJ/min \n',dQ); printf('Net work done in 1st cycle= %f KJ/min \n',dW); printf('Net work done in 1st cycle=%f KW \n ',dW1); printf('ab process= %f KJ/min \n',DeltaUab); printf('bc processes= %f KJ/min \n ',DeltaUbc); printf('cd processes= %f KJ/min \n ',DeltaUcd); printf('dc processes= %f KJ/min \n',DeltaUda);
4a00597b5265ad604c62e18838de9a10022a7d3f
449d555969bfd7befe906877abab098c6e63a0e8
/2863/CH2/EX2.1/ex2_1.sce
2a4fc8a0ff355668ee9e825d339115da6c1b86d0
[]
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
335
sce
ex2_1.sce
//chapter 2 //formula is Etheta=60*pi*I(dl/lambda)*(sin(theta)/r) where thetha=90 printf("\n"); r=200; printf("distance between points is %dm",r); lam=10; printf("\nthe wavelength is %dm",lam); idl=3*10^-4; printf("\nthe current element is %eA/m",idl); Etheta=60*3.14*3*10^-3/2; printf("\nEtheta is value is %eV/m",Etheta);
f61f17f129d06243644b4b500f746b7b451d7593
796ed6f734bc4c417552a663b72203dd29f81c11
/q-repr1.sci
aac87c89198dae5692f2aeb1b0ea787d39159131
[]
no_license
NnataKha/Conflict-Model-for-Q-representation
269859e01fcb08ec2d9ae0e0be1b977a3f64f7f6
1accefcdfc45fe2f058835fb819a3665dac74dd1
refs/heads/master
2020-03-16T18:45:30.350490
2018-05-10T10:45:52
2018-05-10T10:45:52
132,885,767
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,097
sci
q-repr1.sci
clear; n = 3; q = [1, 1, 1];//, 1, 1]; p = [1, 2, 3];//, 1, 1]; r = [1, 10, 1];//, 1, 1]; s = sum(q); sr = sum(r); sp = sum(p); for i=1:n delta1(i)=q(i)/s; p1(i) = p(i)/sp; r1(i) = r(i)/sr; end i=1; for j=1:n for k=1:n delta2(i)=delta1(j)*q(k)/s; p2(i)=p1(j)*p(k)/sp; r2(i)=r1(j)*r(k)/sr; i=i+1; end end i=1; for j=1:n^2 for k=1:n delta3(i)=delta2(j)*q(k)/s; p3(i)=p2(j)*p(k)/sp; r3(i)=r2(j)*r(k)/sr; i=i+1; end end i=1; for j=1:n^3 for k=1:n delta4(i)=delta3(j)*q(k)/s; p4(i)=p3(j)*p(k)/sp; r4(i)=r3(j)*r(k)/sr; i=i+1; end end i=1; for j=1:n^4 for k=1:n delta5(i)=delta4(j)*q(k)/s; p5(i)=p4(j)*p(k)/sp; r5(i)=r4(j)*r(k)/sr; i=i+1; end end i=1; for j=1:n^5 for k=1:n delta6(i)=delta5(j)*q(k)/s; p6(i)=p5(j)*p(k)/sp; r6(i)=r5(j)*r(k)/sr; i=i+1; end end i=1; for j=1:n^6 for k=1:n delta7(i)=delta6(j)*q(k)/s; p7(i)=p6(j)*p(k)/sp; r7(i)=r6(j)*r(k)/sr; i=i+1; end end // create probability vectors k=1000; lnth=length(p7); for i=1:lnth new_p(i)=p7(i); new_r(i)=r7(i); end //conflict iterations for j = 1:k K_pl(j)=j; for i = 1:lnth temp_p(i) = new_p(i)*(1-new_r(i)); temp_r(i) = new_r(i)*(1-new_p(i)); end z1=sum(temp_p); z2=sum(temp_r); for i=1:lnth new_p(i)=temp_p(i)/z1; new_r(i)=temp_r(i)/z2; end end //building the graph build(1) = 0; build(2) = delta7(1); for i=2:lnth build(i+1) = build(i)+delta7(i); end T(1) = 0; p_plot(1) = new_p(1); r_plot(1) = new_r(1); for i=1:(lnth-1) T(i*2)=build(i+1); T(i*2+1)=build(i+1); p_plot(i*2) = new_p(i); p_plot(i*2+1) = new_p(i+1); r_plot(i*2) = new_r(i); r_plot(i*2+1) = new_r(i+1); end T(lnth*2) = build(lnth+1); p_plot(lnth*2) = new_p(lnth); r_plot(lnth*2) = new_r(lnth); subplot(311); plot(T, p_plot, 'b'); subplot(312); plot(T, r_plot, 'g'); subplot(313); plot(T, r_plot, 'g'); plot(T, p_plot, 'b');
70963cdce641c52fb9d7f8399ae9917eef94f6ea
a159f59d19e2b03b234e9c2977ba4a932180e648
/Software/GreenScilabV0.9/env/2accumulatedBiomassRepartition.sci
4da5001e63ed64800641386ad4fc402f503daa76
[]
no_license
OpenAgricultureFoundation/openag_sim
e052bbcc31b1d7f9b84add066327b479785f8723
425e678b55e24b5848d17181d25770175b8c2c3f
refs/heads/master
2021-07-01T06:25:08.753260
2017-09-20T21:44:18
2017-09-20T21:44:18
80,540,145
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,439
sci
2accumulatedBiomassRepartition.sci
blade petiole pith female fruit male fruit ring 0.16689 0.22034 0.30344 0.42313 0.59149 0.82491 0.05259 0.06944 0.09563 0.13335 0.18641 0.25997 0.56880 0.59110 0.60526 0.61777 0.63116 0.64732 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00850 0.01713 0.02701 0.03969 0.05732 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 1.57596 2.15011 2.90136 3.86558 5.07563 6.55486 0.49666 0.67761 0.91436 1.21823 1.59958 2.06576 0.69640 0.73459 0.78590 0.85335 0.93949 1.04577 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.12139 0.17846 0.26198 0.38098 0.54524 0.76429 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 10.23368 12.33438 14.56165 16.85107 19.13498 21.35216 3.22513 3.88717 4.58909 5.31060 6.03037 6.72911 1.31007 1.46100 1.62102 1.78550 1.94959 2.10889 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 1.35447 1.69149 2.04880 2.41609 2.78249 3.13819 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 25.40760 27.19378 28.80572 30.24523 31.51983 32.64040 8.00718 8.57009 9.07810 9.53175 9.93344 10.28659 2.40025 2.52858 2.64439 2.74781 2.83939 2.91989 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 3.78879 4.07534 4.33394 4.56488 4.76936 4.94913 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
f151939d51d2ce9a9dcb78002c30b7e1006d7a83
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH16/EX16.4/example16_4.sce
293f4f10665ef3f15fa739f76c79da43d601c07e
[]
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
648
sce
example16_4.sce
clc // Given that d = 8940 // density of copper in kg/m^3 w = 63.55 // atomic weight of copper t = 0 // temperature in K N = 6.02e26 // Avogadro no. in per kg m = 9.1e-31 // mass of electron in kg h = 6.62e-34 // Planck constant in J-sec e = 1.6e-19 // charge on an electron in C // Sample Problem 4 on page no. 16.15 printf("\n # PROBLEM 4 # \n") printf("Standard formula used \n") printf("1/2 * m*v^2 = E_0 \n ") printf("E = (h^2 / (8 * pi^2 * m)) * (3 * pi^2 * N/V)^(2/3) \n") V = w / d n = N / V E = (h^2 / (8 * %pi^2 * m)) * (3 * %pi^2 * n)^(2/3) * (1 / e) E_ = 3 * E / 5 printf("\n Fermi energy is %f eV.\n Average energy is %f eV.",E,E_)
05a93bf73720b256ddf3baa8e411c648ec695da3
449d555969bfd7befe906877abab098c6e63a0e8
/995/CH2/EX2.7/Ex2_7.sce
c91563a3a2a5a4cfcaca2e8b109714108cfd41ff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
116
sce
Ex2_7.sce
//Ex:2.7 clc; clear; close; r=25*(10^0); printf("Resistor value = %d ohm",r); printf("\nTolerance = 20 %%");
fb398402998772ec0992cd0d14c5cec26b8dca2a
71ad8ef6fba3006cf2e7d8d16a3e2451b2df7459
/aln_reconhecimento_faces.sce
b74b69943570984cd89caea05c2c1dc11f90a1fb
[]
no_license
carloscdias/aln_reconhecimento_faces
ec356608bba71e74bc7c275707fa03ec33522629
7e14c443b60fd513cc1e410c6632aaaa87c40679
refs/heads/main
2023-05-02T09:29:46.151745
2021-05-18T20:00:14
2021-05-18T20:00:14
364,701,815
1
1
null
2021-05-18T20:00:15
2021-05-05T20:46:40
Scilab
UTF-8
Scilab
false
false
1,174
sce
aln_reconhecimento_faces.sce
/* * Grupo: * Carlos Cardoso Dias * Maria Eduarda Ornelas Hisse * * Reconhecimento de faces */ // atomsInstall("IPCV") // loading external routines exec('3rd_party/sip_pca.sci', -1); exec('3rd_party/sip_pca_project.sci', -1); //exec('3rd_party/sip_pca_test.sce', -1); exec('classifiers/utils.sci', -1); exec('classifiers/simple_classifier.sci', -1); exec('classifiers/average_classifier.sci', -1); [ds l] = read_dataset('recdev/extras/facebookfaces-2/crop-inner'); //[ds l] = read_dataset('recdev/easy'); // [score, cm, cm_labels, time] = cross_validation(ds, l, 1, simple_classifier_model, simple_classifier_manhattan, %t); // [score, cm, cm_labels, time] = cross_validation(ds, l, 10, simple_classifier_model, simple_classifier_euclidean, %f); // [score, cm, cm_labels, time] = cross_validation(ds, l, 1, average_classifier_model, simple_classifier_manhattan, %t); // [score, cm, cm_labels, time] = cross_validation(ds, l, 10, average_classifier_model, simple_classifier_euclidean, %f); [score, cm, cm_labels, time] = cross_validation_pca(ds, l, 100, %f, 2); disp('score', score); disp('time', time); disp('labels', cm_labels); disp('confusion matrix', cm);
27e947008407354bd57a49489a9b39f390324853
449d555969bfd7befe906877abab098c6e63a0e8
/1970/CH5/EX5.2/Ch05Exa2.sce
ab17c351e873af3eb684093bd732024ee902db29
[]
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,044
sce
Ch05Exa2.sce
// Scilab code Exa5.2 : : Page 203 (2011) // We have to make calculation for alpha particle and for proton clc; clear; E_a = 8.766; // Energy of the alpha particle, mega electron volts A_Bi = 209; // Atomic mass of Bi-209, atomic mass unit A_a = 4; // Atomic mass of alpha particle, atomic mass unit A_p = 1; // Atomic mass of proton, atomic mass unit e = 1.6e-019; // Charge of an electron, coulomb Z = 83; // Atomic number of bismuth R_0 = 1.4e-015; // Distance of closest approach,metre K = 8.99e+09; // Coulomb constant B_H_a = 2*Z*e^2*K/(R_0*1.6e-013*(A_Bi^(1/3)+A_a^(1/3))); // Barrier height for an alpha particle, mega electron volts B_H_p = 1*Z*e^2*K/(R_0*1.6e-013*(A_Bi^(1/3)+A_p^(1/3))); // Barrier height for proton, mega electron volts printf("\nBarrier height for the alpha particle = %5.2f MeV \nBarrier height for the proton = %5.2f MeV", B_H_a,B_H_p); // Result // Barrier height for the alpha particle = 22.67 MeV // Barrier height for the proton = 12.30 MeV
742c94561173e98f408f52266c4dff6a76bddeb6
449d555969bfd7befe906877abab098c6e63a0e8
/2126/CH3/EX3.7/7.sce
4572106523f36c4bc7ce9bfe59c54ee8c86725cc
[]
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
801
sce
7.sce
clc clear //input data M1=0.25 //Initial Mach number M2=0.75 //Final mach number P1=1.5 //Inlet pressure in bar T1=300 //Inlet temperature in K k=1.4 //Adiabatic constant R=0.287 //Gas constant in kJ/kg-K //calculation a1=sqrt(k*R*10^3*T1) //Sound velocity in m/s, R in J/kg C1=a1*M1 //air velocity in m/s p1=4.3615 //Pressure ratio at entry from gas tables @M1,k Pt=P1/p1 //Static critical pressure in kPa c1=0.272 //Velocity ratio from gas tables (fanno flow tables,k=1.4,M1) Ct=C1/c1 //Critical velocity in m/s p2=1.385 //Pressure ratio at exit from gas tables @M2,k P2=Pt*p2 //Exit pressure in bar c2=0.779 //Velocity ratio at exit from gas tables @M2,k C2=Ct*c2 //Exit velocity in m/s //output printf('Final pressure and velocity are %3.4f bar and %3.2f m/s',P2,C2)
dfd5917fed9cb6b4c50e283365ba377d53064c9e
449d555969bfd7befe906877abab098c6e63a0e8
/2594/CH6/EX6.20/Ex6_20.sce
9f519e2309991ab186045d721210ec6fcb8d73d3
[]
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
902
sce
Ex6_20.sce
clc Io1=10*10^-7 disp("Io1 = "+string(Io1)+" A") //initializing value of reverse saturation current of silicon SBD. Io2=10*10^-7 disp("Io2 = "+string(Io2)+"A") //initializing value of reverse saturation current of a PN junction. Vt=0.0259 disp("Vt = "+string(Vt)+" eV") //initializing value of thermal voltage. I=1*10^-3 disp("I = "+string(I)+" A") //initializing value of forward current. V=0.25 disp("V = "+string(V)+" V") //initializing value of difference in the forward voltage of the two diode. VfSBD=Vt*((log(I/Io1+1))) disp("forward Voltage for silicon SBD,VfSBD=Vt*((log(I/Io1+1)))= "+string(VfSBD)+" V") // calculation. VfPN=(V+VfSBD) disp("forward volage applied across the PN Diode,VfPN=(V+VfSBD)="+string(VfPN)+" V")//calculation Io=(I/((exp(VfPN/Vt))-1)) disp("reverse saturation current of the PN junction Diode,Io=(I/((exp(VfPN/Vt))-1))="+string(Io)+" A")//calculation
5bacfb49ad68dbbc321097b333e84c286d99c87b
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH17/EX17.8/17_8.sce
a78527e08c30bb1ea4746424c47e84fade5c655e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
246
sce
17_8.sce
//Frictionless pulleys //refer fig. 17.8 (a) and (b) //consider combined FBD of the system N1=500 //N F1=0.2*500 //N N2=1000*cosd(30) //N F2=0.2*N2 //N //writing impulse momentum equation v=20.19 //m/sec printf("\nv=%.3f m/sec",v)
dc1452110425d1e2301e8e077312488b13e0ca13
94d8b66f6512f2f17f77000729fd8ac999484ed3
/workspace/Analysis/EKFSlam/2D-4Transponders-Circle-Pure-Range-Only.sce
99b5b42fdbe758541e6c489233a14af6b365690f
[]
no_license
utctao/reliable-slam
7885c098574afb5284675a6f022d368f7f303ba6
1f00c584d9dacfc17e31e0aa91b0d717998b0310
refs/heads/master
2021-01-20T19:49:49.038094
2013-07-22T21:50:55
2013-07-22T21:50:55
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,411
sce
2D-4Transponders-Circle-Pure-Range-Only.sce
cd /media/Documents/Etudes/ENSTA-Bretagne/Stages/ENSI3-UFRGS/reliable-slam/workspace/Simulations/Scenarios/2D-4Transponders clear close close close funcprot(0); raw_file=read_csv('2D-4Transponders-Circle.res',';'); // Degrees to radians deg2rad=%pi/180; // avoid the first comment line + parse strings to double data=evstr(raw_file(2:size(raw_file,1),:)); // Variance of the heading sensor Ch=(0.2*deg2rad)^2; // Covariance of the motion noise Mt=[0.04^2 0; 0 (0.01*deg2rad)^2]; // Variance of the range sensor Cr=0.03^2; // The EKF SLAM algorithm with known correspondences landmarks function [mut, sigmat]=EKF_SLAM(mut_prev, sigmat_prev, ut, y, dt) ////////////////// // PREDICTION /// //////////////// // Fx (to map the 3D state vector of the robot to the 2N+3 D generalized // state vector) // Here we have 4 landmarks so the vector is of dimension 11 Fx=[eye(3,3) zeros(3,8)]; mut=mut_prev+Fx'*[ut(1)*dt*cos(mut_prev(3)); ut(1)*dt*sin(mut_prev(3)); dt*ut(2)]; Gt=eye(11,11)+Fx'*[0 0 -ut(1)*dt*sin(mut_prev(3)); 0 0 ut(1)*dt*cos(mut_prev(3)); 0 0 0]*Fx; // Jacobian of the motion model // with respect to the motion parameters Vt=[dt*cos(mut_prev(3)) 0; dt*sin(mut_prev(3)) 0; 0 dt]; // Covariance of the motion noise // mapped in the state space Rt=Vt*Mt*Vt'; sigmat=Gt*sigmat_prev*Gt'+Fx'*Rt*Fx; ////////////// // UPDATE /// //////////// // Jacobian of the observation matrix C=[0 0 1 0 0 0 0 0 0 0 0; (mut(1)-mut(4))/y(2) (mut(2)-mut(5))/y(2) 0 (mut(4)-mut(1))/y(2) (mut(5)-mut(2))/y(2) 0 0 0 0 0 0; (mut(1)-mut(6))/y(3) (mut(2)-mut(7))/y(3) 0 0 0 (mut(6)-mut(1))/y(3) (mut(7)-mut(2))/y(3) 0 0 0 0; (mut(1)-mut(8))/y(4) (mut(2)-mut(9))/y(4) 0 0 0 0 0 (mut(8)-mut(1))/y(4) (mut(9)-mut(2))/y(4) 0 0; (mut(1)-mut(10))/y(5) (mut(2)-mut(11))/y(5) 0 0 0 0 0 0 0 (mut(10)-mut(1))/y(5) (mut(11)-mut(2))/y(5)]; W=[Ch zeros(1,4); zeros(4,1) Cr*eye(4,4)]; delta_y=y-C*mut; S=C*sigmat*C'+W; R=sigmat*C'*inv(S); mut=mut+R*delta_y; // Update the state vector sigmat=sigmat-R*C*sigmat; // Update the covariance endfunction // Function to draw a confidence ellipse (from Luc Jaulin's scripts) function Draw_Ellipse(what,G_w,eta,thick); //eta-confidence ellipse xset('thickness',thick); // The ellipse encloses the random vector s=0:0.05:2*%pi+0.05; // with a probability eta w=what*ones(s)+sqrtm(-2*log(1-eta)*G_w)*[cos(s);sin(s)]; xpoly(w(1,:),w(2,:)); endfunction //////////////////// // Main Program /// ////////////////// // Data Format // 1 2 3 4 5 6 7 8 // pose_pure.x; pose_pure.y; pose_pure.z; pose_noisy.x; pose_noisy.y; pose_noisy.z; pose_pure.yaw; pose_pure.pitch; // 9 10 11 12 13 14 15 // pose_pure.roll; pose_noisy.yaw; pose_noisy.pitch; pose_noisy.roll; imu_pure.d²x; imu_pure.d²y; imu_pure.d²z; // 16 17 18 19 20 21 22 // imu_noisy.d²x; imu_noisy.d²y; imu_noisy.d²z; imu_pure.dtheta; imu_pure.dphi; imu_pure.dpsi; imu_noisy.dtheta; // 23 24 // imu_noisy.dphi; imu_noisy.dpsi; // 25 26 27 28 29 30 // loch_doppler_pure.vx; loch_doppler_pure.vy; loch_doppler_pure.vz; loch_doppler_noisy.vx; loch_doppler_noisy.vy; loch_doppler_noisy.vz; // 31 32 33 34 // transponder1_pure; transponder2_pure; transponder3_pure; transponder4_pure; // 35 36 37 38 // transponder1_noisy; transponder1_noisy; transponder1_noisy; transponder1_noisy; // The generalized State Vector is: // 1 2 3 4 5 6 7 # index // [x, y, theta, xl1, yl1, xl2, yl2, xl3, yl3, xl4, yl4] // Estimate of the original state //x=[data(1,1); data(1,2); 0; 20; 0; -20; 0; 0; 20; 0; -20]; x=[data(1,1); data(1,2); data(1,7); 20; 0; -20; 0; 0; 20; 0; -20]; // Original covariance sigma=[zeros(3,11); zeros(8,3) 15*15*eye(8,8)]; dt=1; x_stack=[]; x_prev_stack=x; u_stack=[]; y_stack=[]; for i=1:1:size(data,1), x_stack=[x_stack [data(i,1); data(i,2); data(i,7); 20; 0; -20; 0; 0; 20; 0; -20]]; y=[data(i, 7); data(i, 31); data(i, 32); data(i, 33); data(i,34)]; ut=[data(i,25); 2*%pi/120]; //data(i,21)]; [x,sigma]=EKF_SLAM(x,sigma,ut,y,dt); x_prev_stack=[x_prev_stack x]; u_stack=[u_stack ut]; y_stack=[y_stack y]; end //////////// // Plots // ////////// figure plot(x_stack(1,:),x_stack(2,:),'b'); plot(x_prev_stack(1,:),x_prev_stack(2,:),'b--'); legend(["True trajectory";"Estimated trajectory"]); // figure // plot(x_stack(3,:),'b'); // plot(x_prev_stack(3,:),'b--'); // plot(data(:,10),'r--'); // legend(["True heading";"Estimated heading";"Noisy heading"]); figure plot(x_stack(4),x_stack(5),'db'); plot(x_stack(6),x_stack(7),'dr'); plot(x_stack(8),x_stack(9),'dg'); plot(x_stack(10),x_stack(11),'dy'); plot(x_prev_stack(4,size(x_prev_stack,2)),x_prev_stack(5,size(x_prev_stack,2)),'xb'); plot(x_prev_stack(6,size(x_prev_stack,2)),x_prev_stack(7,size(x_prev_stack,2)),'xr'); plot(x_prev_stack(8,size(x_prev_stack,2)),x_prev_stack(9,size(x_prev_stack,2)),'xg'); plot(x_prev_stack(10,size(x_prev_stack,2)),x_prev_stack(11,size(x_prev_stack,2)),'xy'); Draw_Ellipse([x_prev_stack(4,size(x_prev_stack,2)); x_prev_stack(5,size(x_prev_stack,2))], sigma(6:7,6:7), 0.999, 1); Draw_Ellipse([x_prev_stack(6,size(x_prev_stack,2)); x_prev_stack(7,size(x_prev_stack,2))], sigma(6:7,6:7), 0.999, 1); Draw_Ellipse([x_prev_stack(8,size(x_prev_stack,2)); x_prev_stack(9,size(x_prev_stack,2))], sigma(6:7,6:7), 0.999, 1); Draw_Ellipse([x_prev_stack(10,size(x_prev_stack,2)); x_prev_stack(11,size(x_prev_stack,2))], sigma(6:7,6:7), 0.999, 1); // figure // plot(y_stack(2,:),'b'); // plot(sqrt((x_stack(1,:)-x_stack(4,:))^2+(x_stack(2,:)-x_stack(5,:))^2),'b--'); // plot(y_stack(3,:),'r'); // plot(sqrt((x_stack(1,:)-x_stack(6,:))^2+(x_stack(2,:)-x_stack(7,:))^2),'r--'); // legend(["Measured distance to pinger 1";"Real distance to pinger 1";"Measured distance to pinger 2";"Real distance to pinger 2"])
f25507cc272c9df8b2c1042a602cdfa253989ee5
449d555969bfd7befe906877abab098c6e63a0e8
/1991/CH2/EX2.2/2.sce
437ec2e6f18dec357d525dd87572bff3ee453c0b
[]
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
2.sce
clc clear //input v=0 //car stops => final velocity=0 u=29 //initial velocity t=11 //time //calculation of acceleration a=(v-u)/t//eqn of uniformly accelerated body //calculating distance travelled during this period d=(v+u)*t*0.5//eqn of uniformly accelerated body //output printf("the accleration is %3.3f ms^-2 ",a) printf("\nthe distance travelled is %3.3f m",d)
8410fb16c4743e7f199cd14574eccb90b3e0dc81
f891f5aed2e66371488173c2b9c4e8f977a9f64a
/Sandia Inverter Test Protocol/Tests/INV3/INV3_2.tst
e6f2e50387417de7298f27a1bb8191ce28facb09
[]
no_license
jakedm/svp_directories
d9b85c41b45a3ded7572f9f730e8d1efc8515099
19272f8784baabf83e197778768933aef015432c
refs/heads/master
2021-01-18T18:08:29.224016
2017-01-16T20:09:35
2017-01-16T20:09:35
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,284
tst
INV3_2.tst
<scriptConfig name="INV3_2" script="INV3"> <params> <param name="inv3.ramp_time" type="int">0</param> <param name="invt.posttest_delay" type="int">0</param> <param name="invt.pretest_delay" type="int">0</param> <param name="invt.power_factor_range" type="float">0.08</param> <param name="inv3.power_factor" type="float">0.85</param> <param name="invt.verification_delay" type="int">5</param> <param name="comm.slave_id" type="int">5</param> <param name="inv3.time_window" type="int">60</param> <param name="invt.setpoint_failure_count" type="int">120</param> <param name="profile.irr_start" type="float">200.0</param> <param name="inv3.timeout_period" type="int">420</param> <param name="invt.setpoint_period" type="int">480</param> <param name="comm.baudrate" type="int">9600</param> <param name="comm.ifc_name" type="string">COM3</param> <param name="das.mode" type="string">Manual</param> <param name="pvsim.mode" type="string">Manual</param> <param name="comm.parity" type="string">N</param> <param name="invt.disable" type="string">No</param> <param name="comm.ifc_type" type="string">RTU</param> <param name="profile.profile_name" type="string">STPsIrradiance</param> </params> </scriptConfig>
b40bd03d44517f698453aaddef45fe20c78d255f
449d555969bfd7befe906877abab098c6e63a0e8
/1478/CH3/EX3.7.13/3_7_13.sce
0d0a35cf15624cd4d053102984de16bc0262dc9f
[]
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
418
sce
3_7_13.sce
//lubricants// //example 3.7.13// clc volume_oil=5//volume of oil titrated(ml)// density_oil=0.92//density of oil titrated// wt_oil=volume_oil*density_oil//weight f oil saponified(gms)// volume=2//volume of alcoholic KOH consumed to neutralize fatty acids(ml)// normality_KOH=0.01//normality of KOH // A=volume*normality_KOH*56/wt_oil//formula for acid value// printf("\nAcid value of oil is %.3f mgs KOH",A);
44c9ebb2dc52f7ce8398d9950e88e12508735f0c
449d555969bfd7befe906877abab098c6e63a0e8
/2522/CH6/EX6.2/exm6_2.sce
951ba780f3d96f70ea8b8c5e01d372861c03f3f1
[]
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
426
sce
exm6_2.sce
//page no 164 //example 6.2 //TO SWITCH ON SOME DEVICES //let the switches which are ON are at bit no D0,D1,D2,D3,D6; clc; x=hex2dec(['4F']); //hexadecimal to decimal conversion y=dec2bin(x); //decimal to binary conversion printf('At output port 01H: '); //same input appears at the putput disp(y); printf('Value 1s are showing the devices are ON. \n') printf('Value 0s are showing the devices are switched OFF.');
aa4723fc7523d34a9e4af2d93e9d4e2b1d87b17d
449d555969bfd7befe906877abab098c6e63a0e8
/2342/CH2/EX2.19/EX2_19.sce
b5e7fe6a30a32b8987296f71b98cee1363ae7f7b
[]
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
407
sce
EX2_19.sce
//Exa 2.19 format('v',9) clc; clear; close; //Given data l= 0.50*10^-2;// width of ribbon in m d= 0.10*10^-3;// thickness of ribbon in m A= l*d;// area of ribbon in m^2 B = 0.8;// in Tesla D = 10.5;//density in gm/cc I = 2;// in amp q = 1.6 * 10^-19;// in C n=6*10^28;// number of elec. per m^3 V_H = ( I * B * d)/(n * q * A);// in volts disp(V_H,"The hall Voltage produced in volts is");
d1c205ea27c7a935cc51c591a412b6a456e1bf9a
28a8d47c4d79b231f8bebc28925792a290f67e9f
/db/others/sql/test_object_create.tst
9faf53f5587fe079782021202e321753c5b5761b
[]
no_license
ZVlad1980/doo
a1fe7d18ccfd0acf6ced7dbb33927c86a925aae8
e81be8f524b78b9a6ec06b7f83a8c13354fc6412
refs/heads/master
2021-08-17T02:03:54.553822
2017-11-20T17:21:03
2017-11-20T17:21:03
111,440,129
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,488
tst
test_object_create.tst
PL/SQL Developer Test script 3.0 42 -- Created on 11.08.2014 by ZHURAVOV_VB declare -- Local variables here p xxdoo_db_prgPackage_typ := xxdoo_db_prgPackage_typ('xxdoo','xxdoo_test_pkg'); m xxdoo_db_prgMethod_typ := xxdoo_db_prgMethod_typ( p_type => 'p', p_name => 'test', p_paramters => xxdoo_db_prgVariables_typ( xxdoo_db_prgVariable_typ('p_par1', 'in out nocopy', 'varchar2', 'default ''def'''), xxdoo_db_prgVariable_typ('p_par2',null,'varchar2','default null') ) , p_return_type => null, p_is_public => 'Y', p_comment => 'Test procedure' ); g xxdoo_db_prgText_typ := xxdoo_db_prgText_typ(p_is_public => 'Y'); l xxdoo_db_prgText_typ := xxdoo_db_prgText_typ(p_is_public => 'N'); i xxdoo_db_prgText_typ := xxdoo_db_prgText_typ(); begin -- Test statements here m.put_line('begin'); m.inc; m.put_line('null;'); p.add_method(m); -- g.put_line('g_public constant varchar2(100) := ''PUBLIC'';'); l.put_line('g_private varchar2(100);'); i.put_line('g_private := ''PRIVATE'';'); -- p.add_preCode(g); p.add_preCode(l); p.set_initCode(i); p.create_ddl; -- Test statements here dbms_output.put_line(p.specification); dbms_output.put_line('/'); dbms_output.put_line(p.body); -- end; 0 0
d484ed953de5080875c74398e8890df3fdc9876d
717ddeb7e700373742c617a95e25a2376565112c
/72/CH6/EX6.2.3/6_2_3.sce
61e92915a30b2da8bdf42cd6983e80580d1c8faf
[]
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
454
sce
6_2_3.sce
//CAPTION: CutOff_frequency_of_a_MESFET //chapter_no.-6, page_no.-247 //Example_no.6-2-3 clc; //(a) Calculate_the_cut-off_frequency gm=.05; Cgs=.60*(10^-12); fco=(gm)/(2*%pi*Cgs); fco=fco/(10^9); disp(fco,'the_cut-off_frequency(in Ghz)is'); //(b)Calculate_the_maximum_operating_frequency Rd=450; Rs=2.5; Rg=3; Ri=2.5; fmax=(fco/2)*((Rd/(Rs+Rg+Ri))^(1/2)); disp(fmax,'the_maximum_operating_frequency(in Ghz)is');
8a1da60cc1359b990127cbe170a370434817dd31
449d555969bfd7befe906877abab098c6e63a0e8
/991/CH7/EX7.7/Example7_7.sce
75a3a30c43dec420bc13f340e1c4fe2a3361ccbd
[]
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,029
sce
Example7_7.sce
//Example 7.7. Refer fig.7.13. clc format(5) VDD=24 R2=8.57*10^6 R1=12*10^6 VP=-2 IDSS=4*10^-3 RD=910 RS=3*10^3 disp("From fig.7.13.,") VGG=round(VDD*(R2/(R1+R2))) disp(VGG," VGG(V) = VDD*(R2 / (R1+R2)) =") disp("Also, ID = IDSS*(1-(VGS/VP))^2") disp(" = IDSS*(1-((VGG-(ID*RS))/VP))^2, where VGS = VGG - ID*RS") disp("Expressing ID and IDSS in mA, we have") disp(" 9ID^2 - 73ID +144 = 0 ") x=poly(0,'x') p1=roots((9*x^2) - (73*x) +144) ans1=p1(1) p1=roots((9*x^2) - (73*x) +144) ans2=p1(2) disp(ans2,"or",ans1,"Therefore, ID(mA) = ") disp("As ID = 4.72mA > 4mA = IDSS, this value is inappropriate. So, IDQ=3.39 mA is selected.") disp("Therefore,") IDQ=3.39*10^-3 VGSQ=VGG-(IDQ*RS) disp(VGSQ," VGSQ(V) = VGG - (IDQ*RS) =") format(7) VDSQ=VDD-(IDQ*(RD+RS)) disp(VDSQ,"and VDSQ(V) = VDD - (IDQ*(RD+RS)) =") VDGQ = VDSQ - VGSQ disp(VDGQ,"Then, VDGQ(V) = VDSQ - VGSQ") disp("which is grater than |VP| = 2 V. Hence, the FET is in the pinch-off region.")
5366132ff4d307241e448cd4edad5d1d28896f2a
449d555969bfd7befe906877abab098c6e63a0e8
/1208/CH1/EX1.9/Exa9.sce
aa35d27a4088d28001cadc5050125884d85c8875
[]
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
260
sce
Exa9.sce
//Exa9 clc; clear; close; //given data : A=1000;//in Rs r=16;//in % per annum i=r/100; n=12;//in years //formula FVA=(A*(1+i)^n-1)/i; FVA=(A*((1+i)^n-1))/i; disp(FVA,"The future value(in Rs.) is : ") //Note: answer given in the book is not accurate
7496631323d633a15f0b5f0a2ba102ed4fa3a527
449d555969bfd7befe906877abab098c6e63a0e8
/1364/CH8/EX8.3.3/8_3_3.sce
dfbdbaa56eee1284665874521de8e997a04ecaaf
[]
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
239
sce
8_3_3.sce
clc //initialisation of variables v= 0.02 //lb/ft sec L= 5 //in D= 2.5 //in M= 26 //lbf in w= 1200 //rev/min g= 32.2 //ft/sec^2 //CALCULATIONS C= %pi*v*w*2*%pi*D^3*L/(2*M*g*60*144) //RESULTS printf (' coefficient= %.4f in ',C)
f3f0aee8a56ed3dfdec11290ab65564446b8c157
449d555969bfd7befe906877abab098c6e63a0e8
/3836/CH11/EX11.5/Ex11_5.sce
c3a0387dac56389949b89323f6b4cfefbe519a3d
[]
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
441
sce
Ex11_5.sce
clear //Initialisation fsd1=50*10**-3 //full scale deflection of ammeter in Ampere fsd2=1*10**-3 //full scale deflection of moving coil meter in Ampere Rm=25 //resistance of moving coil meter in Ohms //Calculation Rsm=fsd1*fsd2**-1 //sensitivity factor Rsh=Rm*49**-1 //shunt resistor //Result printf("\n Therefore, Resistor = %d mOhm\n",round(Rsh*10**3))
00aebda37a14e06c885fb2518f57fa9c7563bccf
449d555969bfd7befe906877abab098c6e63a0e8
/3513/CH7/EX7.10/Ex7_10.sce
cfd8c54446afa7f583987d26d91ee2da23e5ea13
[]
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,111
sce
Ex7_10.sce
//Calculate value of standard fraction defective would you recommend for the future //page no 153 clear clc; P1=0.04; n=1600; minsg=P1+(25/100)*n; maxsg=P1-(25/100)*n; //(a) Control limits for p-chart mprintf("\P1 = %.4f \n",P1); UCL=P1+3*sqrt((P1*(1-P1))/n); mprintf("\UCL = %.2f \n",UCL); LCL=P1-3*sqrt((P1*(1-P1))/n); mprintf("\LCL = %.2f \n",LCL); CL=P1; mprintf("\CL = %.2f \n",CL); //The individual control limits for the 3rd day //Control limits for p-chart mprintf("The individual control limits for the 3rd day"); n=900; mprintf("\Again for \nP1 = %.4f \n",P1); UCL=P1+3*sqrt((P1*(1-P1))/n); mprintf("\UCL = %.2f \n",UCL); LCL=P1-3*sqrt((P1*(1-P1))/n); mprintf("\LCL = %.4f \n",LCL); CL=P1; mprintf("\CL = %.2f \n",CL); //The individual control limits for the 6th day //Control limits for p-chart mprintf("The individual control limits for the 6th day"); n=2000; mprintf("\Again for \nP1 = %.4f \n",P1); UCL=P1+3*sqrt((P1*(1-P1))/n); mprintf("\UCL = %.2f \n",UCL); LCL=P1-3*sqrt((P1*(1-P1))/n); mprintf("\LCL = %.4f \n",LCL); CL=P1; mprintf("\CL = %.2f \n",CL);
08abd3e61e13330211cab760c0c566768bd2afeb
449d555969bfd7befe906877abab098c6e63a0e8
/226/CH3/EX3.16/example16_sce.sce
e4d474876e996a4b0b4c57daffff35b1c3914d2c
[]
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
153
sce
example16_sce.sce
//chapter 3 //example 3.16 //page 108 printf("\n") printf("given") Vz=9.1;Izt=20*10^-3;Es=30; R1=(Es-Vz)/Izt Pr1=(Izt^2)*R1 Es=27; Iz=(Es-Vz)/R1
0e8d6a11376ebfb2750a08f0780fc3b50a671ab2
449d555969bfd7befe906877abab098c6e63a0e8
/1439/CH4/EX4.8/4_8.sce
18e10790136067cf895232bba5bd2136b00dc2e6
[]
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
172
sce
4_8.sce
clc //initialisation of variables dHr= -0.56 //kcal dHr1= -18.85 //kcal //CALCULATIONS dH= dHr+dHr1 //RESULTS printf ('integral heat of hydration= %.2f kcal ',dH)
95e470de42878b49ca415fe55cba3796dcfe18d8
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH25/EX25.3/ex25_3.sce
5f1161a23980d2a15e8deb96d900dc02d95874ce
[]
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
297
sce
ex25_3.sce
clc; a=63.54; //atomic mass of Cu m=100; //mass of Cu moles=m/a; //calculating moles of U n=6.023*10^23; //avogadro's no. no=moles*n; //calculating no. of atoms disp(moles,"Maoles of U = "); //displaying result disp(no,"No. of atoms = "); //displaying result
ad92fad94e7d91be38cb4f75930bae9a17781825
449d555969bfd7befe906877abab098c6e63a0e8
/710/CH13/EX13.5/13_5.sci
96e1797be310a45c86bf6af6afa61e4d947d5a17
[]
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
352
sci
13_5.sci
clc(); clear; //To determine the numerical apperture ns=2.89; //sum of refractive indices of core & cladding nd=0.03; //difference of refractive indices of core & cladding NA=sqrt(ns*nd) //numerical apperture printf("The numerical apperture for the optical fibre is %f",NA);
0ef31ba13d49c2fc9ce712db90956bf343ecf50d
449d555969bfd7befe906877abab098c6e63a0e8
/3717/CH19/EX19.3/Ex19_3.sce
5df92ad39d6eebef1b25cbe243f2c725b60d36d4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
576
sce
Ex19_3.sce
// Ex19_3 Page:373 (2014) clc;clear; m_p = 1.007825; // Mass of a proton, u m_n = 1.008665; // Mass of a neutron, u m_U235 = 235.043924; // Atomic mass of U-235, u m_Ba141 = 140.91440; // Atomic mass of Ba-141, u m_Kr92 = 91.92630; // Atomic mass of Kr-92, u delta_m = (m_n + m_U235 - m_Ba141 - m_Kr92 - 3*m_n); // Mass difference, u E = delta_m*931.5; // Energy released in the fission reaction, MeV printf("\nThe energy released in the fission reaction = %5.1f MeV", E); // Result // The energy released in the fission reaction = 173.2 MeV
d01d73cd0c7363cb5c175ca02b7119445154165a
b3c9357cd1290921e67444ae057761959fdf24f1
/Geral/convid-19/model2.sci
76bb5224e3eabc8c364a4f93431112bb69009dca
[]
no_license
joaolrneto/Scilab
91742520422426dc8a772997ef4a5d6376008b6e
f383f87e4585955cf19d0dae1b5c29f93c3f70b4
refs/heads/master
2023-02-05T20:13:03.677069
2020-12-30T14:53:09
2020-12-30T14:53:09
264,671,730
1
0
null
null
null
null
UTF-8
Scilab
false
false
117
sci
model2.sci
function y=model2(x, p) y = (p(1)*x + p(2)).*x + p(3) //y = (p(1)*x + p(2)) + 1/(1+exp(-x))*p(3) endfunction
262a15192ae7b74e16fb8a7321f11d52a4547c49
67a252961f6616fc6db89eb11c1c83abf4d41468
/CS4110Design4/CS16B032RAM16K.tst
bebadf2a84952da62f9d984c49ab6b5dff5e1624
[]
no_license
ramyavelaga9/CS4110
5a45497cd7ef28d4472a57a257dad8e5f4a3d17b
4a3cd82916820e4f7a4930a0efce14def8268dfc
refs/heads/master
2020-07-17T23:41:12.196500
2019-11-20T04:24:32
2019-11-20T04:24:32
203,223,619
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,002
tst
CS16B032RAM16K.tst
load CS16B032RAM16K.hdl, output-file CS16B032RAM16K.out, compare-to CS16B032RAM16K.cmp, output-list time%S1.4.1 in%D1.6.1 load%B2.1.2 address%D2.5.2 out%D1.6.1; set in 11877, set load 0, set address 13353, tick, output; tock, output; set in 18498, set load 1, set address 6843, tick, output; tock, output; set in 11267, set load 1, set address 1763, tick, output; tock, output; set in 11219, set load 0, set address 11329, tick, output; tock, output; set in -13938, set load 1, set address 1130, tick, output; tock, output; set in -21153, set load 0, set address 1094, tick, output; tock, output; set in -13291, set load 0, set address 6177, tick, output; tock, output; set in -16563, set load 0, set address 16215, tick, output; tock, output; set in -17295, set load 0, set address 13625, tick, output; tock, output; set in -21723, set load 0, set address 10131, tick, output; tock, output; set in 5667, set load 0, set address 4531, tick, output; tock, output; set in -6877, set load 1, set address 7901, tick, output; tock, output; set in 9930, set load 0, set address 14697, tick, output; tock, output; set in -14318, set load 1, set address 13574, tick, output; tock, output; set in 5652, set load 0, set address 4451, tick, output; tock, output; set in -16286, set load 1, set address 14136, tick, output; tock, output; set in 7136, set load 0, set address 8957, tick, output; tock, output; set in -11649, set load 1, set address 3725, tick, output; tock, output; set in 7358, set load 1, set address 6191, tick, output; tock, output; set in 14313, set load 1, set address 9742, tick, output; tock, output; set in 12927, set load 1, set address 11044, tick, output; tock, output; set in -8739, set load 1, set address 9638, tick, output; tock, output; set in 19634, set load 0, set address 11406, tick, output; tock, output; set in -14521, set load 0, set address 3824, tick, output; tock, output; set in -13674, set load 1, set address 2008, tick, output; tock, output;
ad2e7d0cb661c30231823881c621c9f99901e944
4a1effb7ec08302914dbd9c5e560c61936c1bb99
/Project 2/Experiments/GFS-GCCL-C/results/GFS-GCCL-C.led7digit-10-1tra/result3s0.tst
e6942d38ddc4de6d90e21fec62df7df414754d75
[]
no_license
nickgreenquist/Intro_To_Intelligent_Systems
964cad20de7099b8e5808ddee199e3e3343cf7d5
7ad43577b3cbbc0b620740205a14c406d96a2517
refs/heads/master
2021-01-20T13:23:23.931062
2017-05-04T20:08:05
2017-05-04T20:08:05
90,484,366
0
0
null
null
null
null
UTF-8
Scilab
false
false
535
tst
result3s0.tst
@relation led7digit @attribute Led1 real[0.0,1.0] @attribute Led2 real[0.0,1.0] @attribute Led3 real[0.0,1.0] @attribute Led4 real[0.0,1.0] @attribute Led5 real[0.0,1.0] @attribute Led6 real[0.0,1.0] @attribute Led7 real[0.0,1.0] @attribute number{0,1,2,3,4,5,6,7,8,9} @inputs Led1,Led2,Led3,Led4,Led5,Led6,Led7 @outputs number @data 1 1 2 2 2 2 5 5 9 9 5 5 7 3 8 6 8 8 0 8 1 1 4 4 1 1 2 2 9 9 3 4 3 3 6 5 0 ? 1 1 2 2 2 2 3 3 7 2 8 8 9 ? 0 0 4 4 5 5 6 6 7 7 7 7 3 3 4 4 5 5 5 5 6 6 7 1 8 9 0 9 0 0 3 3 4 4 4 4 5 5 6 6 7 7 8 6 9 4 9 2
a480bb2fbe7cb5f6cbd34cc1b0d9ece67354c134
683d2599aa2be1a5f74b928d545b20e7ea656cd1
/microdaq/macros/mdaq_get_version.sci
65320f13c140d65ee77d1bc57738a1c9f28958e6
[ "BSD-3-Clause" ]
permissive
pj1974/Scilab
5c7fb67d5cae5ac0cdf78e3dd66b97ba50f9fc95
cd54f1bd8502d6914ad6ff5271ca0e6e3d323935
refs/heads/master
2020-12-25T17:12:56.934984
2015-10-06T17:16:11
2015-10-06T17:16:11
41,862,822
0
0
null
2015-09-03T14:00:56
2015-09-03T14:00:56
null
UTF-8
Scilab
false
false
74
sci
mdaq_get_version.sci
function mdaq_ver = mdaq_get_version() mdaq_ver = "1.0."; endfunction
e33c6b285b5c00c8e4fdc4a671c84f98ce691045
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH15/EX15.20/20.sce
8053862d7091b0686086a74eba9cdf0023747890
[]
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
496
sce
20.sce
clc m_s=800/60; //kg/s m_c=m_s; m_g=1350/60; //kg/s m_h=m_g; t_h1=650; //0C t_c1=180; //0C t_c2=350; //0C d=0.03; //m L=3; //m cph=1; //kJ/kg K cpc=2.71; //kJ/kg K h_g=250; h_s=600; t_h2=t_h1-(m_c*cpc*(t_c2-t_c1)/cph/m_h); U=h_g*h_s/(h_g+h_s); Q=m_h*cph*10^3*(t_h1-t_h2); theta=((t_h1-t_c2)- (t_h2-t_c1))/log((t_h1-t_c2)/(t_h2-t_c1)); //logarithmic mean temperature difference //A=N*%pi*d*L N=Q/U/theta/(%pi*d*L); disp("number of tubes required =") disp(N) disp("tubes")
5e6708ef7c4e035874911862b0c0887883da1a7c
676ffceabdfe022b6381807def2ea401302430ac
/solvers/CompressibleFlowSolver/Tests/Couette_WeakDG_LDG_SEM_VariableMu.tst
b2bd54cfa412136cd5fc8ab4716203bc57fe5a27
[ "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,084
tst
Couette_WeakDG_LDG_SEM_VariableMu.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>NS, Couette flow, mixed bcs, WeakDG advection and LDG diffusion, Variable Viscosity</description> <executable>CompressibleFlowSolver</executable> <parameters>Couette_WeakDG_LDG_SEM_VariableMu.xml</parameters> <files> <file description="Session File">Couette_WeakDG_LDG_SEM_VariableMu.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="rho" tolerance="1e-12">0.0805614</value> <value variable="rhou" tolerance="1e-12">51.8867</value> <value variable="rhov" tolerance="1e-8">0.222213</value> <value variable="E" tolerance="1e-12">4415.64</value> </metric> <metric type="Linf" id="2"> <value variable="rho" tolerance="1e-12">0.0716895</value> <value variable="rhou" tolerance="1e-12">55.3017</value> <value variable="rhov" tolerance="1e-8">0.424398</value> <value variable="E" tolerance="1e-12">4227.23</value> </metric> </metrics> </test>
13d825de2a667afd24fa26992b73008087268d76
f7e335e2af57c686554eb057f28ddd8d21aab1e4
/tests/fuzz/c-wsp/0064.tst
e99f32f8d88baf9c3931785bd2d4476b2e204c61
[ "MIT" ]
permissive
scravy/abnf
76515bd820b3b9d8e2dbc2cec2a2f845720a6022
cc4228f403b436cc4e34ff4d6a7def83922174be
refs/heads/master
2023-01-09T14:30:50.095268
2020-06-07T16:18:09
2020-06-07T16:18:09
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
6
tst
0064.tst
;hE
52e3832218421c3f9bf53a523f8a91ae4d893362
c206e3f57b0a6f75bd1feefefecd29398746c358
/scripts/prepro.sci
e18878c3833a1f321efc3f3f47c6875c2284a7d7
[]
no_license
danielfcollier/scilab-image-processing-scripts
e092a7c1a6a0ade906c020218a9571290245e40f
43d78cb06dc6c27ab8663f351e4c172d038280ce
refs/heads/main
2023-04-12T20:05:52.840157
2021-04-27T18:56:06
2021-04-27T18:56:06
362,219,761
0
0
null
null
null
null
UTF-8
Scilab
false
false
577
sci
prepro.sci
function A=prepro(A,n) //exec hist2.sci; //exec range256.sci; //exec otsu_im.sci; //exec deleta_bit.sci; //exec median_filter.sci; //exec sobel.sci; A = round(255*A+1); //Gv=[-1 -2 -1; 0 0 0; 1 2 1]; //Gh=[-1 0 1; -2 0 2; -1 0 1]; Lp=mkfilter('circular',5); //Il=median_filter(I,3); //B=hist_equalize(A); //B=range256(A+0.1*sqrt(imconv(A,Gv).^2+imconv(A,Gh).^2)); for i=1:n //A=range256(imconv(A,Lp)); A=range256(median_filter(A,5)); s=sobel(A); sl=90*(s>otsu_im(s)); A=range256(A+sl); end A=range256(median_filter(A,5)); endfunction
3b83088d9016a051ba5de89a904ffeef340bf82a
3dc9559592b6fea76205394112230d489b174e0b
/bib_trabalho.sce
d99f86318d669d84f08f5ccc161e25c1f1c22c9a
[ "MIT" ]
permissive
StheffanyHadlich/PDI-KNN
72793a7e8071e587a628f3c4c556f50b411bf822
e6b76f3eb02f52536549957637a167f906699cbb
refs/heads/master
2020-03-20T09:54:10.535153
2018-06-14T12:02:32
2018-06-14T12:02:32
137,352,179
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,034
sce
bib_trabalho.sce
function s = cinza(im) s = im(:,:,1)/3+im(:,:,2)/3+im(:,:,3)/3 endfunction function s = Limiarizacao(image,T) image.im = double(image.im); for i = 1:size(image.im,1) //disp([i]); for j = 1:size(image.im,2) if image.im(i,j) < T then image.aux(i,j) = 1; image.area = image.area + 1; else image.aux(i,j) = 0; end end end //matplot(image.aux); image = Diametro(image); //matplot(image.aux); s = image; endfunction function s = Diametro(image) [x y] = follow(image.aux); maior = 0; distancia = 0; for i=1:(size(x,1)-1) for j=i+1:size(y,1) distancia = sqrt(((x(i)-x(j))**2)+((y(i)-y(j))**2)); if distancia > maior maior = distancia; end end end image.diam = maior; // disp(image.diam); s = image; endfunction function s = knn(teste,melancias,lentilhas,k,i) vizinhos = cat(1,melancias,lentilhas); //disp(size(vizinhos)); distanciaVizinhos = zeros(1,size(vizinhos,1)); //disp(size(vizinhos,1)); for i = 1:size(vizinhos,1) distanciaVizinhos(i) = distanciaEuclidiana(teste.area,vizinhos(i).area,teste.diam,vizinhos(i).diam); end // disp(distanciaVizinhos); [v indice] = gsort(distanciaVizinhos,'g','i') ; /*for i = 1:size(vizinhos,1) disp(string(indice(i))+':'+string(v(i))); end*/ kmelancia = 0; klentilha = 0; for i = 1 : k // disp(indice(i)); //disp(vizinhos(indice(i)).tipo) if(strcmp(vizinhos(indice(i)).tipo,'melancia','i') == 0) kmelancia = kmelancia + 1; else klentilha = klentilha+1; end end // disp('kmelancia: '+string(kmelancia)+' klentilha: '+string(klentilha)); if (kmelancia > klentilha) tipo = 'melancia'; else tipo = 'lentilha'; end s = tipo; endfunction function s= distanciaEuclidiana(x1,x2,y1,y2) s = sqrt((x2-x1)^2+(y2-y1)^2); endfunction function s = verificacaoResultado(teste, i) if (strcmp(teste.tipo,'melancia','i') == 0) if( i > 10 ) s = '+'; else s = '-'; end else tipo = 'lentilha'; if( i < 11 ) s = '+'; else s = '-'; end end endfunction function s = Plotagem(t, m, l) plot(1100,55,"r."); //melancia treino plot(1100,55,"g."); // lentilha treino plot(1100,55,"*"); //melancia teste + plot(1100,55,"black*"); //melancia teste - plot(1100,55,"^"); // lentilha teste + plot(1100,55,"black^"); // lentilha teste - acertos = 0; acuracia = 0; for i = 1:20 plot(m(i).area,m(i).diam,"r."); plot(l(i).area,l(i).diam,"g."); if(strcmp(t(i).tipo,'melancia','i') == 0) if (strcmp(t(i).resultado,'+','i') == 0) acertos = acertos + 1; plot(t(i).area,t(i).diam,"*"); else plot(t(i).area,t(i).diam,"black*"); end else if (strcmp(t(i).resultado,'+','i') == 0) acertos = acertos + 1; plot(t(i).area,t(i).diam,"^"); else plot(t(i).area,t(i).diam,"black^"); end end end acuracia = acertos/size(t); xtitle("K-means aplicado na classificação de sementes de lentilha e melancia."); xlabel("Área"); ylabel("Diametro"); legend('Melancia treino','Lentilha treino','Melancia teste +','Melancia teste -','Lentinha teste +', 'Lentilha teste -',2); disp('acurácia: '+string(acuracia(1))); s = 0; endfunction
0c51c9d422d916c5c80b91c97341888f5b7ebbd6
449d555969bfd7befe906877abab098c6e63a0e8
/125/CH10/EX10.17/Fig10_17.sce
c4901e45846e3e151324705a49adfabf1e9387db
[]
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
635
sce
Fig10_17.sce
//Caption: Scilab Code for dilation and erosion process //Fig.10.17 //Page553 close; clear; clc; a = imread('E:\DIP_JAYARAMAN\Chapter10\morph1.bmp'); //SIVP toolbox //b =[1,1,1;1,1,1;1,1,1]; StructureElement = CreateStructureElement('square', 3) ; a1 = DilateImage(a,StructureElement); a2 = ErodeImage(a,StructureElement); //Displaying original Image //imshow(a) figure(1) ShowImage(a,'Original Image'); //Displaying Dilated Image //imshow(a1) figure(2) ShowImage(a1,'Dilated Image'); xtitle('Dilated Image') //Displaying Eroded Image //imshow(a2) figure(3) ShowImage(a2,'Eroded Image'); xtitle('Eroded Image')
bef2895fec6f69e54d97e60bc92e312cb89207f2
72342bddb396436379ab8d246883ac0f21562530
/SCILAB_3.sce
e30f751fdb3918dc137de507296a921ee63109c1
[]
no_license
Ajain-19/Signals-And-Systems
1322a94f58f60d22aeab637c7bc427982da3e35b
d45cd46067f29d3ec86b133a61772c1218143144
refs/heads/main
2023-01-21T08:05:20.659619
2020-11-25T17:56:42
2020-11-25T17:56:42
316,013,959
1
0
null
null
null
null
UTF-8
Scilab
false
false
344
sce
SCILAB_3.sce
Maximum_Limit=10; sum1=0; for n=0:Maximum_Limit-1 sum1=sum1+(n+6) end if (sum1 > Maximum_Limit) disp('WE HAVE AN UNSTABLE SYSTEM'); disp('The sum of the responnses has run off to'); disp(sum1); else disp('WE HAVE A STABLE SYSTEM'); disp('The sum of the responses has been limited to'); disp(sum1); end
74827cf44e3a431a34fa01f85fa393cc418b6714
449d555969bfd7befe906877abab098c6e63a0e8
/2126/CH6/EX6.11/11.sce
16a4c9c8e4e2891d5307dc8f39a18f4a0e397cdc
[]
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
925
sce
11.sce
clc clear //Input data h=9500 //Altitude in m u=800*(5/18) //Flight velocity in m/s eff_prop=0.55 //Propulsive efficiency of the cycle eff_o=0.17 //Overall efficiency F=6100 //Thrust in N d=0.17 //Density in kg/m^3 CV=46000 //Calorific value in kJ/kg //Calculation mf=(F*u)/(eff_o*CV*10^3) //Mass flow rate of fuel in kg/s Cj=((2*u)/(eff_prop))-u //Jet velocity in m/s, wrong calculation in textbook Ca=Cj-u //Absolute Jet velocity in m/s ma=(F-(mf*Cj))/(Ca) //Mass flow rate of air in kg/s m=ma+mf //Mass flow rate of gas in kg/s f=ma/mf //Air fuel ratio Q=m/d //Volume flow rate in m^3/s Dj=sqrt((4*Q)/(%pi*Cj))*10^3 //Diameter of jet in mm, Cj value wrong in textbook P=((F*u)/eff_prop)*10^-3 //Power output of engine in kW //Output printf('(A)Diamter of the jet is %3.1f mm\n (B)Power output is %3.1f kW\n (C)Air-fuel ratio is %3.3f\n (D)Absolute velocity of the jet is %3i m/s\n',Dj,P,f,Ca)
8e2e479940c6918c05759f72a1942307620031dd
449d555969bfd7befe906877abab098c6e63a0e8
/1994/CH6/EX6.6/Example6_6.sce
e44bb83f53d15c7d3c44e44ea132b8c015b8e850
[]
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
154
sce
Example6_6.sce
//Chapter-6,Example6_6,pg 6-69 Nv=2 Nh=5 fh=1*10^3 fv=(5/2)*fh//(fv/fh)=(Nh/Nv)=(5/2) printf("vertical signal frequency\n") printf("fv=%.f Hz",fv)
258ea7a58922bb71cbccbfbe9332819c57145b73
449d555969bfd7befe906877abab098c6e63a0e8
/1478/CH2/EX2.18.35/2_18_35.sce
8c5a7337291015b558e3111f7c8681874c477729
[]
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
988
sce
2_18_35.sce
//water and its treatment// //example 2.18.35// clc Purity_Lime=.95 Purity_soda=.80 W1=14.6;//amount of Mg(HCO3)2 in ppm// W2=6.8;//amount of CaSO4 in ppm// W3=8.1;//amount of Ca(HCO3)2 in ppm// W4=12;//amount of MgSO4 in ppm// W5=15;//amount of Na2SO4 in ppm// W6=2;//amount of SiO2 in ppm// M1=100/146;//multiplication factor of Ca2+// M2=100/157;//multiplication factor of Mg2+// M3=100/162.08;//multiplication factor of H2SO4// M4=100/120;//multiplication factor of CO2// P1=W1*M1;//in terms of CaCO3//L P2=W2*M2;//in terms of CaCO3//S P3=W3*M3;//in terms of CaCO3//L P4=W4*M4;//in terms of CaCO3//L+S printf ("We do not take Na2SO4 and SiO2 since they do not react with lime/soda"); V=50000;//volume of water in litres// L=0.74*(P1*2+P3+P4)*V/Purity_Lime;//lime required in mg// L=L/10^6; printf("\nQuantity of Lime required is %.4fkg",L); S=1.06*(P2+P4)*V/Purity_soda;//soda required in mg// S=S/10^6; printf("\nQuantity of Soda required is %.1fkg",S)
e17e223c799a6105d4a9c2b508a619c63b0e283a
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH13/EX13.3w/13_3w.sce
7d0a5948f859eff1294658b2bdc135c3d0e5d464
[]
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
415
sce
13_3w.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 13.3w //calculation of the height of the water coloumn //given data h1=2*10^-2//difference in the height(in m) s=13.6//specific gravity of mercury //calculation //P = P0 + (h*rho*g)........using this equation h=h1*s//height of the water coloumn printf('the height of the water coloumn is %d cm',h*10^2)
e0f66f9b56d5686aed8fbecb8656a2260348fdd7
c615df4b42fe20e90a196619f909aefb59526107
/multTest.tst
dfd2260d540a66f9dae2ec74bc6512ecece66d19
[]
no_license
cs310comporg/A7
057f5b542cbe138ea04c05a80d0e801a15fa16ea
9a8b60acb78e3edb5f1702add8dcdba4da52ce90
refs/heads/master
2020-05-18T21:58:54.189394
2019-05-08T20:49:30
2019-05-08T20:49:30
184,678,572
0
0
null
null
null
null
UTF-8
Scilab
false
false
501
tst
multTest.tst
// Mai Nou & Nathan Moder load Larc.hdl, set RAM16K[0] %X8117, // 1. li R1 23 R1 <-- 23 set RAM16K[1] %X8212, // 2. li R2 18 R2 <-- 18 set RAM16K[2] %X84F6, // 3. li R4 -10 R4 <-- -10 set RAM16K[3] %X2312, // 4. mult R3 R1 R2 R3 <-- 414 set RAM16K[4] %X2514, // 5. mult R5 R1 R4 R4 <-- -230 set RAM16K[5] %X0653, // 6. add R6 R5 R3 R6 <-- 184 set RAM16K[6] %XF000 // 7. halt ; repeat 100 { tick, tock; }
2e44f33f6edc7ad31b2b393bda6c2ba88c3a210d
449d555969bfd7befe906877abab098c6e63a0e8
/542/CH1/EX1.1/Example_1_1.sce
51fa689c1b3b5fc58dcebb2a587cfdbec30f18a2
[]
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
622
sce
Example_1_1.sce
clear; clc; printf("\n Example 1.1"); //Given size analysis of a powdered material d=[1,101];//diameter of the powdered particles x=[0,1];//mass fractions of the particles plot2d(d,x,style=2,rect=[0,0,120,1]) xtitle("size analysis of powder","particle size(um)","mass fraction(x)") d=100*x+1; // from the given plot //calculation of surface mean diameter function[ds]=surface_mean_diameter(x0,x1) ds=1/(integrate('1/(100*x+1)','x',x0,x1)) funcprot(0) endfunction ds=surface_mean_diameter(0,1);//deduced surface mean diameter according to def. printf("\n The surface mean diameter is %fum",ds);
908e8957e881aa316d288bec072164dfac799424
449d555969bfd7befe906877abab098c6e63a0e8
/2699/CH13/EX13.48/Ex13_48.sce
51dd37d395ec336a14e724f56cde46841554d58b
[]
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
Ex13_48.sce
//EX13_48 Pg-26 clc clear printf("subtraction of 111001 from 101011 using 2''s complement method") printf("\n\n we know that 101011<111001\n\n") printf(" Therefore 101011-111001 =") x=['101011']; y=['111001']; //binary to decimal conversion// x=bin2dec(x) y=bin2dec(y) y1=bitcmp(y,6)//one's complement of the larger number y2=y1+1;//2's complement of the larger number //subtraction of larger number from smaller number a=x+y2;//result is in two complement a1=bitcmp(a,6)//one's complement of the result a2=a1+1;//final answer s=dec2bin(a2) printf(" -00%s",s)//final answer is -ve
8a7725993b98e4a5c7b2df7d6d6bdd65eb51b0d8
449d555969bfd7befe906877abab098c6e63a0e8
/2528/CH6/EX6.2/Ex6_2.sce
f800c71a7bb90cfaa4b8ec260923092af40ad5a7
[]
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
132
sce
Ex6_2.sce
//Example6.2:"Designing the Circuit"" //Page 180 //figure 6.9 clear; clc; Av=10; Rg=(49.4*10^3)/(Av-1); disp("Ohm",Rg,"Rg")