blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
ef7c7815cf94300c352f989246d997bb80f0cc83
449d555969bfd7befe906877abab098c6e63a0e8
/1247/CH4/EX4.1/example4_1.sce
e843734ed5b028c8bb2aa8a07f502fea03b5fd6d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
707
sce
example4_1.sce
clear; clc; // Stoichiometry // Chapter 4 // Material Balances involving Chemical Reaction // Example 4.1 // Page 116 printf("Example 4.1, Page 116 \n \n"); // solution // basis one day operation // Cl2 is the limiting component n1 = 4536/71 //[kmol] Cl2 charged // 1mol MCA requires 1 mol Cl2, so n2 = 5000/94.5 // [kmol] Cl2 used for MCA production // 1 mol DCA requires 2 mol of Cl2 n3 = 263*2/129 //[kmol] Cl2 used for DCA production n4 = n2+n3 // total Cl2 used a = n4*100/n1 // conversion %age b = n2*100/n4 // yield % of MCA s = n2/n3 printf("Percentage conversion = "+string(a)+" \n \nPercentage yield of MCA = "+string(b)+" \n \nselectivity of MCA = "+string(s)+".")
968f8e686779f161113093c6a41973d407cc8d36
e41b69b268c20a65548c08829feabfdd3a404a12
/3DCosmos/Data/Scripts/Physics/MoleculeModel.SCI
439ceddad62265d5a2446d10827ae3ae08323ce1
[ "LicenseRef-scancode-khronos", "MIT" ]
permissive
pvaut/Z-Flux
870e254bf340047ed2a52d888bc6f5e09357a8a0
096d53d45237fb22f58304b82b1a90659ae7f6af
refs/heads/master
2023-06-28T08:24:56.526409
2023-03-01T12:44:08
2023-03-01T12:44:08
7,296,248
1
1
null
2023-06-13T13:04:58
2012-12-23T15:40:26
C
UTF-8
Scilab
false
false
4,885
sci
MoleculeModel.SCI
codeblock readtextfile(ScriptDir+"\_TOOLS.sci"); sf=T_scene_create; sss=T_getscene; sss.ambientlightcolor=color(0.15,0.15,0.15); refframe=sss.addsubframe("refframe"); vp=root.Viewports.main; vp.camerapos=point(3,10,20); vp.cameradir=vecnorm(point(0,0,0)-vp.camerapos); vp.focaldistance=distance(point(0,0,0),vp.camerapos); vp.FarClipPlane=60; vp.NearClipPlane=0.5; #######################################################################################" # Prompt for molecule file name #######################################################################################" menu=T_createmenu("Select molecule",true); menu.sizex=0.35; menu.Color=color(1,1,1,1); filelist=GetFileList(datadir+"\scripts\Physics\_molecules\*.pdb"); foreach file in filelist do { file.invert;file.split(".");file.invert; menu.Add("",file); } T_menu_appendclose; menufinished=false; while not(menufinished) do { if menu.WasModified then { menufinished=true; currentfolder=menu.SelectID; } render; } if menu.SelectID=="[Close]" then stop; filename=menu.SelectID; T_delmenu; #######################################################################################" # Read file #######################################################################################" rendermessage("Loading"); atoms=list;connections=list; filename=datadir+"\Scripts\Physics\_molecules\"+filename+".pdb"; content=readtextfile(filename); while content!="" do { line=content.split("~n"); tag=line.substring(0,5).split(" "); if (tag=="ATOM") or (tag=="HETATM") then { atom=map; atom.name=line.substring(13,13);atom.name.split(" "); output("-"+atom.name+"-"); atom.posit=point(ToScalar(line.substring(30,37)), ToScalar(line.substring(38,45)), ToScalar(line.substring(46,53)) ); atoms.add(atom); } if tag=="CONECT" then { connectset=list; for i=1 to 12 do { nr=toscalar(line.substring(i*5+1,i*5+5)); if nr>0 then connectset.add(nr); } connections.add(connectset); } } #Determine center of gravity of molecule center=point(0,0,0); foreach atom in atoms do center=center+atom.posit; #Re-center atoms foreach atom in atoms do atom.posit=atom.posit-@vector(center); #######################################################################################" # Create atom catalog #######################################################################################" atomcatalog=list; atomcatalog.add(map("name":"", "sz":1, "cl":color(1.0,0.0,0.0) )); atomcatalog.add(map("name":"C", "sz":1, "cl":color(0.25,0.5,0) )); atomcatalog.add(map("name":"O", "sz":1, "cl":color(1,0.35,0.35) )); atomcatalog.add(map("name":"N", "sz":1, "cl":color(0.35,0.35,1) )); atomcatalog.add(map("name":"P", "sz":1.3, "cl":color(0.75,0.25,0.75) )); atomcatalog.add(map("name":"H", "sz":0.5, "cl":color(0.65,0.65,0.65) )); atomindex=map; for i=0 to atomcatalog.size-1 do atomindex.AddItem(atomcatalog(i).name:i); atomradiusfactor=1; if connections.size>0 then atomradiusfactor=0.25; function GetAtomRadius(atomname) { idxnr=0;if atomindex.IsPresent(atomname) then idxnr=atomindex.get(atomname); return(atomradiusfactor*atomcatalog(idxnr).sz); } function GetAtomColor(atomname) { idxnr=0;if atomindex.IsPresent(atomname) then idxnr=atomindex.get(atomname); return(atomcatalog(idxnr).cl); } #######################################################################################" # Make atom objects #######################################################################################" foreach atom in atoms do { refframe.add("Sphere","Position":atom.posit,"resolution":12,"CanBuffer":true, "Radius":GetAtomRadius(atom.name), "Color":GetAtomColor(atom.name), "SpecularColor":color(0.3,0.3,0.3),"SpecularValue":25); } #######################################################################################" # Make connections #######################################################################################" foreach connectset in connections do { idx1=connectset(0); ps1=atoms(idx1-1).posit; rd1=GetAtomRadius(atoms(idx1-1).name); for i=1 to connectset.size-1 do { idx2=connectset(i); ps2=atoms(idx2-1).posit; rd2=GetAtomRadius(atoms(idx2-1).name); rd=0.3*min(rd1,rd2); refframe.add("Cylinder","Position":ps1,"Axis":(ps2-ps1), "Radius":rd, "color":color(0.3,0.3,0.3), "SpecularColor":color(0.3,0.3,0.3),"SpecularValue":20, "resolution":8,"CanBuffer":true); } } hiderendermessage; while true do { dr1=-1*vp.cameradir; dr2=vecnorm(dr1*vector(0,1,0)); dr3=vecnorm(dr1*dr2); sss.light0pos=point(0,0,0)+500*(dr1-dr2-0.5*dr3); render; }
3b4e3a77aa183f584eba99802689a9f0036ff6ba
449d555969bfd7befe906877abab098c6e63a0e8
/1949/CH3/EX3.8/Ex3_8.sce
fbeb25ed57a8dbd4075168f812c05fbc7eeb6afd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
584
sce
Ex3_8.sce
//Chapter-3,Example 3_8,Page 3-21 clc() //Given Data: w=98 //Spot size in meter d=50*10^-6 //Core diameter in meter a=d/2 //core radius u1=1.47 //R.I. of Core u2=1.45 //R.I.of Cladding lam=0.85*10^-6 //Wavlength in meter NA=sqrt(u1^2-u2^2) //Formula to find NA //Calculations: V=2*%pi*a*NA/lam //cut off parameter N=(V^2)/2 //Number of modes printf('Cut off parameter of Fibre is =%.4f \n \n',V) printf(' Number of modes of Fibre is =%.0f \n',N)
1ac0ed352adf0e78fd4d14c63c5079c276a6b270
717ddeb7e700373742c617a95e25a2376565112c
/278/CH22/EX22.6/ex_22_6.sce
89dc7f0849553476dfd0a1b08a88b91e0d1a841e
[]
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
814
sce
ex_22_6.sce
//find... clc //solution //given N=300//rpm w=31.42//rad/s ft=5.6*10^6//N/m^2 rho=7200 //let D be dia //v=(%pi*D*N)/60=15.71*D//m/s //ft=rho*v^2=1.8*10^6*D^2 D=sqrt(ft/(1.8*10^6))//m R=D/2//m printf("the dia of flywheel is,%f m\n",D) //ref fig 22.13 //total energy at E =total energy at A //Eb=E-32 //Ec=E+376 //Ed=E+109 //Ee=E+442 //Ef=E+132 //Eg=E+358 //Eh=E-16 //Ei=E+244 //Ej=E //Ea=E //max energy is at E and min is a B //dE=Eb-Ee=474 //dE=474//mm^2 //conveting to N-m dE=474*27.3//N-m //Cs=(w1-w2)/w Cs=0.03 //dE=m*R^2*w^2*Cs m=dE/(R^2*w^2*Cs)//kg printf("the mass of flywheel is,%f kg\n",m) //let t be thickness and b be width of rim //b=4t //A=b*t=4*t^2 //m=A*2*%pi*R*rho=159624*t^2 t=sqrt(m/159624)//m printf("the thickness and iwth of rim is,%f m\n,%f m\n",t,4*t)
0149b56a70a739706a4a11a8e449dd32d1597657
449d555969bfd7befe906877abab098c6e63a0e8
/2297/CH6/EX6.6/Ex6_6.sce
c4f33043daeb8ef6fbb84fd3bc3739867f9da6b6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,045
sce
Ex6_6.sce
//Example 6.6: e.m.f ,copper losses ,output of the prime mover ,commercial, mechanical and electrical efficiencies clc; clear; close; format('v',6) //given data : Il=190;//load current in Amperes V=250;// voltage in volts Ra=0.02;//armature resistance in ohm Rsh=25;//shunt resistance in ohm Ish=V/Rsh;//shunt current in amperes Ia=Ish+Il;//armature current in amperes E=V+(Ia*Ra);//generated voltage disp("part (a)") disp(E,"emf genereted,(V) = ") Cl=(Ia^2*Ra);// armeture copper losses Sl=Ish*V;// shunt copper losses T=(Cl+Sl)*10^-3;//copper losses in k-Watt disp("part (b)") disp(T,"Total copper losses,(kW) = ") Eo=V*Il;//output voltage in volts I_l=950;//iron loss in watt O=Eo+I_l+(T*10^3);//output in watt disp(O,"Output of the prime mover,(W) = ") Ep=O-I_l;// electrical power in W Me=(Ep/O)*100;//Mechanical efficiency disp("part (c)") disp(Me,"Mechanical efficiency,(%) = ") Ee=(Eo/Ep)*100;//Electrical efficiency disp(Ee,"Electrical efficiency,(%) = ") Ce=(Eo/O)*100;//Commercial efficiency disp(Ce,"Commercial efficiency,(%) = ")
22eb3ec7340fd16e3900900afb26619b3bc4a978
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH4/EX4.47/47.sce
6e419a5800cf5452cfaada0a3d1f85c4231bac3e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
184
sce
47.sce
clc p1=2; //bar C1=300; //m/s Q=0; h1=915*10^3; //J/kg h2=800*10^3; //J/kg C2=sqrt(2*[h1-h2 + C1^2/2]); disp("Relative velocity of gas leaving the pipe=") disp(C2) disp("m/s")
b46ebf99e5f3f0149357f3989d88f68829b26719
449d555969bfd7befe906877abab098c6e63a0e8
/1514/CH4/EX4.6/4_6.sce
8f9158676927fcb9a2877b36fb3bb8b30fe2592e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
472
sce
4_6.sce
//chapter 4 //example 4.6 //page 109 clear; clc ; //given hfe1=50;//minimum value hfe2=150;//maximum value Vcc=15;//supply voltage Rc=1.98;//collector resistance in kohm Rb=86;//base resistance in kohm Vbe=0.7; Ic1=(Vcc-Vbe)/(Rc*(1+1/hfe1)+Rb/hfe1); Vce1=(Ic1/hfe1)*Rb+Vbe; Ic2=(Vcc-Vbe)/(Rc*(1+1/hfe2)+Rb/hfe2); Vce2=((Ic2/hfe2)*Rb)+Vbe; printf("\nfor hfe=50,Vce=%.1f V,Ic=%.2f mA",Vce1,Ic1); printf("\nfor hfe=150,Vce=%.1f V,Ic=%.2f mA",Vce2,Ic2);
4d531af8b5261cc7acb126f324c9d013158aeae1
449d555969bfd7befe906877abab098c6e63a0e8
/2195/CH2/EX2.8.2/ex_2_8_2.sce
7a888412a5b039bae344850a4d71c3638130b58e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
613
sce
ex_2_8_2.sce
//Example 2.8.2://ARITHEMATIC MEAN clc; clear; format('v',6) v=[10,11,12,13,14];// f=[03,12,18,12,03];// q=[v(1)*f(1),v(2)*f(2),v(3)*f(3),v(4)*f(4),v(5)*f(5)]; am=[q(1)+q(2)+q(3)+q(4)+q(5)];// n=[f(1)+f(2)+f(3)+f(4)+f(5)];// AM= am/n;//arithematic mean for i= 1:5 qb(i)= v(i)-AM; m(i)=f(i)*qb(i);// end sm=[-m(1)-m(2)+m(3)+m(4)+m(5)];// md=sm/n;// sm1=[f(1)*qb(1)^2,f(2)*qb(2)^2,f(3)*qb(3)^2,f(4)*qb(4)^2,f(5)*qb(5)^2];// sm2=[sm1(1)+sm1(2)+sm1(3)+sm1(4)+sm1(5)];// sd=sqrt(sm2/n);//standard deviation disp(AM,"arithematic mean is in volts") disp(md,"mean deviation is") disp(sd,"standard deviation is")
fdec879d7957ac170c63846aee55747ceefdb883
4483ff664b4d01c53114a7fc535625c197c8f989
/green routing/tryback2.sce
06cfdb8996164492a32b3aa995e8071bae772b15
[]
no_license
winash1618/myproject
be9b77d4a405edce7e625a999803016b50ab99d0
2132e76e6a996bee19f356a2b68af827fa6c621b
refs/heads/master
2022-12-06T06:09:06.487979
2020-08-20T02:00:54
2020-08-20T02:00:54
288,880,158
0
0
null
null
null
null
UTF-8
Scilab
false
false
8,542
sce
tryback2.sce
clc clear x=8 z=25 pop=10 iter=1000 a=zeros(pop,z) cap=[288 95 115 133 107 22 34 28 186 190 33 56 100 90 82 143 68 166 44 73 72 60 68 8 20 ] tim=[0 12 6.2 5.6 27 17 20 29 44 18 16 23 24 34 11 9 11 11 13 17 14 30 25 28 27; 12 0 5.2 9.9 39 29 32 40 52 29 27 34 36 46 23 20 23 15 18 24 21 37 32 36 34; 6.2 5.2 0 5.7 35 25 28 36 48 19 22 30 32 41 18 16 19 11 14 21 18 34 28 32 31; 5.6 9.9 5.7 0 29 19 22 30 42 19 17 26 26 36 13 10 13 5.5 8.8 15 12 28 23 26 25; 27 39 35 29 0 6.5 4.5 7.5 41 15 12 10 9.7 6.8 17 18 18 27 29 22 29 34 31 32 21; 17 29 25 19 6.5 0 2.9 13 35 9.6 3.7 7.6 6.9 12 7 8.3 8.5 17 79 18 19 25 21 23 14; 20 32 28 22 4.5 2.9 0 11 34 13 6.6 6.2 5.5 10 10 11 11 20 21 18 22 23 20 22 12; 29 40 36 30 7.5 13 11 0 44 23 19 16 16 10 21 22 23 31 32 28 33 38 35 36 22; 44 52 48 42 41 35 34 44 0 54 6.6 6.2 5.5 10 10 11 11 20 21 18 21 23 20 22 12; 18 29 19 19 15 9.6 13 23 54 0 5.6 17 17 22 9.6 9.5 13 22 23 22 24 40 34 38 23; 16 27 22 17 12 3.7 6.6 19 6.6 5.6 0 11 11 19 5.6 6.8 7 16 17 16 18 34 28 32 18; 23 34 30 26 10 7.6 6.2 16 6.2 17 11 0 0.7 5.8 15 16 12 23 22 12 15 18 15 16 6.8; 24 36 32 26 9.7 6.9 5.5 16 5.5 17 11 0.7 0 5.1 14 15 12 23 22 13 15 18 14 16 6.9; 34 46 41 36 6.8 12 10 10 10 22 19 5.8 5.1 0 24 25 17 28 27 18 20 23 21 21 9.8; 11 23 18 13 17 7 10 21 10 9.6 5.6 15 14 24 0 5.2 2.1 11 12 12 13 29 24 27 18; 9 20 16 10 18 8.3 11 22 11 9.5 6.8 16 15 25 5.2 0 5.7 13 14 18 15 31 25 29 21; 11 23 19 13 18 8.5 11 23 11 13 7 12 12 17 2.1 5.7 0 11 13 9.4 11 23 18 21 15; 11 15 11 5.5 27 17 20 31 20 22 16 23 23 28 11 13 11 0 7.4 11 8 24 19 22 21; 13 18 14 8.8 29 79 21 32 21 23 17 22 22 27 12 14 13 7.4 0 9.8 6.8 23 18 21 20; 17 24 21 15 22 18 18 28 18 22 16 12 13 18 12 18 9.4 11 9.8 0 3.4 15 9.7 13 11; 14 21 18 12 29 19 22 33 21 24 18 15 15 20 13 15 11 8 6.8 3.4 0 17 11 15 14; 30 37 34 28 34 25 23 38 23 40 34 18 18 23 29 31 23 24 23 15 17 0 8 2.3 14; 25 32 28 23 31 21 20 35 20 34 28 15 14 21 24 25 18 19 18 9.7 11 8 0 6.1 11; 28 36 32 26 32 23 22 36 22 38 32 16 16 21 27 29 21 22 21 13 15 2.3 6.1 0 12; 27 34 31 25 21 14 12 22 12 23 18 6.8 6.9 9.8 18 21 15 21 20 11 14 14 11 12 0; ] dib=[5 12 6.8 7.4 23 15 18 30 48 12 14 23 22 29 15 9.3 15 13 16 22 19 35 30 33 30; 5 12 6.8 7.4 23 15 18 30 48 12 14 23 22 29 15 9.3 15 13 16 22 19 35 30 33 30; 13 20 14 16 15 8.1 11 23 50 5.1 5.5 16 15 22 5.6 5.3 11 18 19 23 20 36 31 34 22; 13 20 14 16 15 8.1 11 23 50 5.1 5.5 16 15 22 5.6 5.3 11 18 19 23 20 36 31 34 22; 23 34 29 24 8.6 4.9 4.1 15 4.1 14 8.5 3.1 2.4 7.4 12 13 13 22 23 15 18 20 17 19 9.3; 16 27 23 14 23 13 14 24 14 17 11 7.4 8.1 13 6.3 9.8 4.2 14 13 5.5 6.9 19 14 18 11; 25 33 29 23 30 20 19 31 19 35 29 13 13 18 21 26 18 19 18 10 12 4.7 3.3 2.9 9.1; 25 33 29 23 30 20 19 31 19 35 29 13 13 18 21 26 18 19 18 10 12 4.7 3.3 2.9 9.1; ] cad=rand(pop,z) for i=1:pop for j=1:z for k=1:z if cad(i,k)==min(cad(i,:)) a(i,j)=k cad(i,k)=10000 break end end end end disp (a) function [po] =pocreate(aa,sizer1) po=zeros(x,z) siz=zeros(1,x) for i=1:x if i==1 siz(1,i)=sizer1(1,i) else siz(1,i)=siz(1,i-1)+sizer1(1,i) end end for k=1:x if k==1 i=1 for j=1:siz(1,k) po(k,i)=aa(1,j) i=i+1 end else i=1 for j=siz(1,k-1)+1:siz(1,k) po(k,i)=aa(1,j) i=i+1 end end end endfunction function [aa,dis] = mutation(po,aa,sizer1,dix) dix=dis for i=1:x nick=po(i,:) nick1=sizer1(1,i) t=i if nick1>1 [nick,dis1] =tsp(nick,nick1,dis,t) dis=dis+dis1 po(i,:)=nick end end endfunction function [nick,dis1] =tsp(nick,nick1,dis1,t) dis2=0 dis1=0 nick2=nick for i=1:round(2^(nick1)) temp=1+round(rand(1,1)*(nick1-1)) temp1=1+round(rand(1,1)*(nick1-1)) if temp==1 diy=dib(t,nick(1,temp))+tim(nick(1,temp),nick(1,temp+1)) elseif temp==nick1 diy=dib(t,nick(1,temp))+tim(nick(1,temp),nick(1,temp-1)) else diy=tim(nick(1,temp),nick(1,temp-1))+tim(nick(1,temp),nick(1,temp+1)) end if temp1==1 diy1=dib(t,nick(1,temp1))+tim(nick(1,temp1),nick(1,temp1+1)) elseif temp1==nick1 diy1=dib(t,nick(1,temp1))+tim(nick(1,temp1),nick(1,temp1-1)) else diy1=tim(nick(1,temp1),nick(1,temp1-1))+tim(nick(1,temp1),nick(1,temp1+1)) end temp2=nick(1,temp) nick(1,temp)=nick(1,temp1) nick(1,temp1)=temp2 if temp==1 diy2=dib(t,nick(1,temp))+tim(nick(1,temp),nick(1,temp+1)) elseif temp==nick1 diy2=dib(t,nick(1,temp))+tim(nick(1,temp),nick(1,temp-1)) else diy2=tim(nick(1,temp),nick(1,temp-1))+tim(nick(1,temp),nick(1,temp+1)) end if temp1==1 diy3=dib(t,nick(1,temp1))+tim(nick(1,temp1),nick(1,temp1+1)) elseif temp1==nick1 diy3=dib(t,nick(1,temp1))+tim(nick(1,temp1),nick(1,temp1-1)) else diy3=tim(nick(1,temp1),nick(1,temp1-1))+tim(nick(1,temp1),nick(1,temp1+1)) end dis2=dis2-diy1-diy+diy2+diy3 if dis2>0 nick=nick2 elseif dis2<=0 dis1=dis2 nick2=nick end end endfunction function [aa] =crossover(aa,sizer1) ana=1+round(rand(1,1)*x) temp=zeros(1,ana) temp1=zeros(1,ana) for i=1:ana temp(1,i)=1+round(rand(1,1)*(z-1)) end for i=1:ana temp1(1,i)=1+round(rand(1,1)*(z-1)) end for i=1:ana giff=aa(1,temp(1,i)) aa(1,temp(1,i))=aa(1,temp1(1,i)) aa(1,temp1(1,i))=giff end ana1=1+round(rand(1,1)*(x-1)) ana2=1+round(rand(1,1)*(x-1)) ana3=round(rand(1,1)*sizer1(1,ana1)) ana4=round(rand(1,1)*sizer1(1,ana2)) sizer1(1,ana1)=sizer1(1,ana1)-ana3+ana4 sizer1(1,ana2)=sizer1(1,ana2)+ana3-ana4 for i=1:x if sizer1(1,i)==1 prob=rand(1,1) if prob<0.8 for j=1:x if sizer1(1,j)>1 sizer1(1,i)=sizer1(1,i)-1 sizer1(1,j)=sizer1(1,j)+1 break end end end end end disp(sizer1) endfunction function [dist] = distance(po,sizer1) dist=zeros(1,x) for i=1:x if sizer(1,i)>0 for j=1:sizer1(1,i) if j==1 dist(1,i)=dist(1,i)+dib(i,po(i,j)) elseif j==sizer1(1,i) dist(1,i)=dist(1,i)+dib(i,po(i,j)) else dist(1,i)=dist(1,i)+tim(po(i,j-1),po(i,j)) end end end end endfunction bkom=1+round((z-1)*rand(pop,(x-1))) sizer=zeros(pop,x) for i=1:pop kom=bkom(i,:) kos=kom for j=1:x-1 for g=1:x-1 if kom(g)==min(kom) kos(j)=kom(g) kom(g)=100 break end end end bkom(i,:)=kos end for i=1:pop for j=1:x if j==1 sizer(i,j)=bkom(i,j) elseif j==x sizer(i,j)=z-bkom(i,j-1) else sizer(i,j)=bkom(i,j)-bkom(i,j-1) end end end disp(bkom,sizer) topper=1000 dix=1000 dis=dix for y=1:iter for i=1:pop aa=a(i,:) sizer1=sizer(i,:) [po] =pocreate(aa,sizer1) [aa,dis] = mutation(po,aa,sizer1,dix) [dist] = distance(po,sizer1) if topper>sum(dist) topper=sum(dist) bsize=sizer1 bpo=po end if dis<dix dix=dis end disp(dis) if dis==dix dis=1000 dix=dis [aa] =crossover(aa,sizer1) end a(i,:)=aa end end namer=['CHEDIKULAM' 'URUPUMKUTTY' 'EDAPUZHA' 'EDOOR' 'KOLAYAD' 'VELLARVALLY' 'ARYAPARAMBA' 'PERUVA' 'KAPPAD' 'ATTENCHERY' 'PERAVOOR' 'MALOOR' 'THRIKADARIPOIL' 'THODEEKKALAM' 'EDATHOTTY' 'PALAPPUZHA' 'THALIPPOYIL' 'VATTIARA' 'PERUMPARAMBU' 'PADIKACHAL' 'PUNNAD' 'KODOLIPRAM' 'MARUTHAYI' 'VELLIYAMPARAMBA KSS LTD' 'KANHILERI' ] bmc=["KEEZHPALLY" "KEEZHPALLY" "ODEMTHODE" "ODEMTHODE" "THOLUMBRA" "THILLANKERI" "PAZHASSI RAJA NAGAR" "PAZHASSI RAJA NAGAR" ]
b2cde02592cb94a049a65a7f807e9df9d8d89465
22bd6c89dcdc417a9dca420462ab79dcba3d9bd2
/Chapter1/PriorityEncoder83.tst
ca7f2b7329a4495c74977b33e2e50b652edafc90
[]
no_license
johnbmerry/Nor2Tetris
b4f1b1387a50560adde600f22cdd357722b7eab0
61e06d77c4a5942d9f7931d8218d8a3b1a6932c6
refs/heads/main
2023-01-12T09:56:57.004111
2020-11-15T17:39:26
2020-11-15T17:39:26
309,255,129
0
0
null
null
null
null
UTF-8
Scilab
false
false
669
tst
PriorityEncoder83.tst
// File name: projects/01/PriorityEncoder83.tst load PriorityEncoder83.hdl, output-file PriorityEncoder83.out, compare-to PriorityEncoder83.cmp, output-list a%B1.8.1 out%B1.3.1 idle%B1.3.1; // example tst command given set a %B00000000, eval, output; set a %B00000001, eval, output; set a %B00000010, eval, output; set a %B00000100, eval, output; set a %B00001000, eval, output; set a %B00010000, eval, output; set a %B00100000, eval, output; set a %B01000000, eval, output; set a %B10000000, eval, output; set a %B11111111, eval, output; set a %B00101000, eval, output; set a %B00011011, eval, output;
756fb5f72d5636ea46dabf631ce80f96eb0529ec
bacd6919260d728f4316702bbe1edf811810bede
/legacy/37.one.good/console/Untitled34_tails.sce
fe284dc53018a5dbd46bdc7a9231850945236d63
[]
no_license
vopl/sp
332d8c2ff536fc5d8772ff2f3fbeca9b50c47641
a4313f4d7af47cc3132d7546947d4d668c7e487e
refs/heads/master
2020-04-16T02:09:36.036424
2016-10-05T18:08:30
2016-10-05T18:08:30
65,293,458
0
0
null
null
null
null
UTF-8
Scilab
false
false
239
sce
Untitled34_tails.sce
stacksize('max'); clf; w = 5925; tail = read("P:\finance\spectrumSeparator\nhel.Composite\20.1.goertzel.7\console\tail",-1,w); h = size(tail,1); plot(tail(1,:),'b'); hh=3; if hh<=h then plot(tail(hh,:),'r'); end;
a2deca181525a74757540d82a0f50e2f684ef662
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/macros/percent/%lss_o_lss.sci
667b30fb596af756ab2c85daf7a988825628930d
[ "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
141
sci
%lss_o_lss.sci
function [r]=%lss_o_lss(s1,s2) //%lss_o_lss(s1,s2) test s1==s2 // Copyright INRIA for k=2:7,r=and(s1(k)==s2(k));if ~r then return,end,end
fb497dfcd1b61916b1d09c5b26122ba3c630a921
0c7eb559837b3784247bf636a7747e73df5220af
/智能系统原理开发/20.人工智能/神经网络源代码/_NeuralNetworkSrcCode/CHAPT9/HOPFIELD/H7X8D4.TST
04da624bf516f96817fb51071385420fca922058
[]
no_license
linchenlinchen/Class_3_term_1
2f6a044cd4d70527613e20141adbf852cd10862e
fef4550c7fb7c625106222df8f7d17645986d1ee
refs/heads/master
2021-03-07T02:28:45.522794
2020-03-11T10:41:25
2020-03-11T10:41:25
246,239,607
1
0
null
null
null
null
UTF-8
Scilab
false
false
114
tst
H7X8D4.TST
1 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 1 1 1 0 1 1 0 0 1 1 1 1 1 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 1 1 0 
7fd2814860493902a725b117a7fc8af0f774c440
449d555969bfd7befe906877abab098c6e63a0e8
/659/CH4/EX4.9/exm4_9.sce
e0de109f2e03549085fa3142ca5071d40b94b71e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
333
sce
exm4_9.sce
// Example 4.9 // The program illustrates the output of integer numbers under various formats m=int16(12345); //integer variable m n=int32(987654); //integer variable n printf('%d\n',m); printf('%10d\n',m); printf('%010d\n',m); printf('%-10d\n',m); printf('%10d\n',n); printf('%10d\n',-n);
2b71613ab093cd6a70236f4457cb36f5e55ab4a0
449d555969bfd7befe906877abab098c6e63a0e8
/869/CH3/EX3.4/3_4.sce
14021f18f78cdee7c1a2d41709662460337bcf70
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
402
sce
3_4.sce
clc //initialisation of variables L= 9 //in B= 16 //in B1= 6 //in d= 2 //in //CALCULATIONS x= ((L*(B-B1)*(L/2)+(1/2)*L*B1*(L/3)-(%pi/4)*d^2*(L/2)))/(L*(B-B1)+(1/2)*L*B1-(%pi/4)*d^2) y= ((L*(B-B1)*((B-B1)/2)+(1/2)*L*B1*(B1/3+(B-B1))-(%pi/4)*d^2*((B-B1)/2)))/(L*(B-B1)+(1/2)*L*B1-(%pi/4)*d^2) //RESULTS printf ('x = %.2f in to the right of y-axis',x) printf (' \n y=%.2f in above x axis',y)
5b6cc797d233bafe45482a24b90e61fe0c4d0e71
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH3/EX3.26/Ch03Ex26.sce
5ac174ad15596bb992d5772d8bf95c263f0c9eaa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
930
sce
Ch03Ex26.sce
// Scilab Code Ex3.26:: Page-3.47 (2009) clc; clear; lambda = 5000e-008; // Wavelength of light used, cm N = 5000; // No. of lines per cm of grating, lines/cm a_plus_b = 1/N; // Grating element, cm n = 1; // Order of diffraction for first order spectra // As (a+b)*sin(theta_n) = n*lambda, solving for theta for first and third orders theta1 = asind(n*lambda/a_plus_b); // Direction of principal maxima with lambda1, degrees n = 3; // Order of diffraction for third order spectra theta3 = asind(n*lambda/a_plus_b); // Direction of principal maxima with lambda2, degrees delta_theta = theta3 - theta1; // Angular separation in the first and third order spectra, printf("\nThe difference in the deviation in the first and third order spectra = %4.1f degrees", delta_theta); // Result // The difference in the deviation in the first and third order spectra = 34.1 degrees
21856252a8abea62628ac63b17e256bcb229101d
8016059350f017142cd5cdf2df5cabf94cf3c477
/Digital Communication/linecoding.sce
3af5c66a16fa657013dc777d45ce588c7bfd0c3f
[]
no_license
aftalam/5th-sem-labworks
07062dc9824af810a7d7970c7907ab999fda7c52
d3c858587369757ccbed96bc9b29e8a1fa709824
refs/heads/master
2022-11-11T23:58:51.147782
2020-07-05T18:13:59
2020-07-05T18:13:59
275,115,844
0
0
null
null
null
null
UTF-8
Scilab
false
false
964
sce
linecoding.sce
//Perform Line Coding of a Given Signal //---Unipolar NRZ---Unipolar RZ---AMI---Polar RZ---Manchester clc clear all x = round(rand(1,10)); nx = length(x); sign = 1; i=1; while i<nx+1 t = i:0.001:i+1-0.001; if x(i)==1 then unipolar_nrz = squarewave(t*2*%pi,100); unipolar_rz = (1+squarewave(t*2*%pi,50))/2; ami = sign*squarewave(t*2*%pi,100)/2; polar_rz = (1+squarewave(t*2*%pi,50))/2; manchester = squarewave(t*2*%pi,50); sign = sign*-1; else unipolar_nrz = 0; unipolar_rz = 0; ami = 0; polar_rz = -(1+squarewave(t*2*%pi,50))/2; manchester = -(squarewave(t*2*%pi,50)); end subplot(5,1,1) plot(t,unipolar_nrz) ylabel('Unipolar NRZ') subplot(5,1,2) plot(t,unipolar_rz) ylabel('Unipolar RZ') subplot(5,1,3) plot(t,ami) ylabel('AMI') subplot(5,1,4) plot(t,polar_rz) ylabel('Polar RZ') subplot(5,1,5) plot(t,manchester) ylabel('Manchester') i=i+1; end
1d7f0954ce229f686774df93056a3201f709c8e3
5a05d7e1b331922620afe242e4393f426335f2e3
/macros/flattopwin.sci
905a1be14e2391581fbec62624e615d5c8df1f9b
[]
no_license
sauravdekhtawala/FOSSEE-Signal-Processing-Toolbox
2728cf855f58886c7c4a9317cc00784ba8cd8a5b
91f8045f58b6b96dbaaf2d4400586660b92d461c
refs/heads/master
2022-04-19T17:33:22.731810
2020-04-22T12:17:41
2020-04-22T12:17:41
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,478
sci
flattopwin.sci
function w = flattopwin (m, opt) //This function returns the filter coefficients of a Flat Top window. //Calling Sequence //w = flattopwin (m) //w = flattopwin (m, opt) //Parameters //m: positive integer value //opt: string value, takes in "periodic" or "symmetric" //w: output variable, vector of real numbers //Description //This is an Octave function. //This function returns the filter coefficients of a Flat Top window of length m supplied as input, to the output vector w. //The second parameter can take the values "periodic" or "symmetric", depending on which the corresponding form of window is returned. The default is symmetric. //This window has low pass-band ripple but a high bandwidth. //Examples //flattopwin(8,"periodic") //ans = // 0.0009051 // - 0.0264124 // - 0.0555580 // 0.4435496 // 1. // 0.4435496 // - 0.0555580 // - 0.0264124 funcprot(0); rhs= argn(2); if (rhs < 1 | rhs > 2) error("Wrong Number of input arguments"); elseif (~ (isscalar (m) & (m == fix (m)) & (m > 0))) error ("flattopwin: M must be a positive integer"); end N = m - 1; if (rhs == 2) select (opt) case "periodic" N = m; case "symmetric" N = m - 1; else error ("flattopwin: window type must be either periodic or symmetric"); end end if (m == 1) w = 1; else x = 2*%pi*[0:m-1]'/N; w = (1-1.93*cos(x)+1.29*cos(2*x)-0.388*cos(3*x)+0.0322*cos(4*x))/4.6402; end endfunction
aa3fdf7390acbccbe15e79915273ab3414613c33
449d555969bfd7befe906877abab098c6e63a0e8
/116/CH12/EX12.2/exa12_2.sce
e5e5dd433573286dada90e3f6f4669f6b24e4c7f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
408
sce
exa12_2.sce
//Example 12.2 //Page 526 disp('The average number of arrivals in a 30 sec interval is,') lamt=4*(30/60) disp('The probability of eight or more arrivals is,') P0=1 P1=[(2^1)/(1)] P2=[(2^2)/(1*2)] P3=[(2^3)/(1*2*3)] P4=[(2^4)/(1*2*3*4)] P5=[(2^5)/(1*2*3*4*5)] P6=[(2^6)/(1*2*3*4*5*6)] P7=[(2^7)/(1*2*3*4*5*6*7)] i=1-{(%e^-2)*[P0+P1+P2+P3+P4+P5+P6+P7]} disp("Result") disp("P(2) = 0.0011")
c0418953abf37d5f3e290bdda1b144027cafa470
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/bow/bow.2_1.tst
4f84bc931a4f462485ade0eb71efc2ee199c33c1
[]
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
3,495
tst
bow.2_1.tst
2 55:0.5 69:0.25 138:1.0 160:0.5 185:1.0 199:0.1 203:1.0 207:0.5 257:1.0 383:1.0 449:1.0 695:0.3333333333333333 2 200:1.0 695:0.3333333333333333 1201:1.0 2 10:0.5 14:0.12 17:0.01639344262295082 25:1.0 54:0.5 56:0.3333333333333333 69:0.25 121:0.25 193:0.6666666666666666 199:0.3 200:3.0 257:1.0 302:1.0 317:1.0 369:1.0 449:1.0 693:1.0 1150:1.0 1176:1.0 2 49:0.14285714285714285 69:0.5 159:0.08333333333333333 199:0.2 218:1.0 393:1.0 413:1.0 1100:1.0 1355:1.0 2 14:0.04 25:1.0 43:0.3333333333333333 69:0.25 84:0.125 328:1.0 355:1.0 531:1.0 948:1.0 1419:1.0 2 19:0.0625 25:4.0 30:0.125 49:0.14285714285714285 54:0.5 149:1.0 199:0.3 207:0.5 236:0.5 257:1.0 317:4.0 367:0.5 388:1.0 408:1.0 901:1.0 982:1.0 984:1.25 1166:1.0 2 14:0.04 123:1.0 199:0.1 279:1.0 368:1.0 394:0.3333333333333333 449:1.0 1388:1.0 1389:1.0 1390:1.0 1391:1.0 2 25:2.0 42:0.3333333333333333 56:0.3333333333333333 69:0.25 149:1.0 171:0.5 203:1.0 253:0.125 257:1.0 273:1.0 279:1.0 317:1.0 433:1.0 456:0.5 1104:1.0 1392:1.0 2 14:0.04 25:1.0 30:0.0625 121:0.25 199:0.1 203:1.0 208:1.0 279:1.0 413:1.0 1178:0.3333333333333333 1390:1.0 1393:0.3333333333333333 1394:1.0 1395:1.0 1396:1.0 1397:1.0 1398:1.0 2 25:1.0 193:0.3333333333333333 367:0.5 2 25:1.0 193:0.3333333333333333 208:1.0 2 56:0.3333333333333333 127:1.0 356:1.0 369:1.0 380:0.5 1235:1.0 2 244:1.0 388:1.0 429:1.0 1397:1.0 2 199:0.1 237:1.0 2 54:0.5 69:0.25 77:1.0 135:1.0 183:0.3333333333333333 201:1.0 226:1.0 356:0.5 1356:1.0 2 6:1.0 14:0.08 30:0.0625 200:2.0 490:1.0 1309:1.0 2 49:0.14285714285714285 50:1.0 69:0.25 170:1.0 199:0.2 200:1.0 202:0.25 369:1.0 386:1.0 695:0.3333333333333333 942:1.0 2 25:1.0 26:1.0 30:0.0625 66:0.5 133:1.0 203:1.0 394:0.3333333333333333 395:1.0 396:1.0 1356:1.0 2 17:0.01639344262295082 55:0.5 346:1.0 413:1.0 433:1.0 1006:0.3333333333333333 2 43:0.3333333333333333 356:0.5 1090:1.0 1091:1.0 1092:1.0 1093:1.0 1094:1.0 1095:1.0 2 1096:1.0 2 17:0.01639344262295082 55:0.5 413:1.0 948:1.0 2 6:1.0 17:0.01639344262295082 107:1.0 199:0.1 207:0.5 257:1.0 273:1.0 953:1.0 2 17:0.06557377049180328 25:1.0 55:0.5 172:0.5 181:0.5 255:1.0 273:1.0 286:1.0 369:1.0 408:2.0 413:1.0 1097:1.0 1098:1.0 1099:1.0 1100:1.0 2 17:0.01639344262295082 25:1.0 55:0.5 257:1.0 413:1.0 967:1.0 984:0.25 1101:1.0 2 17:0.01639344262295082 66:0.5 236:0.5 367:0.5 368:1.0 490:0.5 1102:1.0 1103:1.0 2 6:2.0 14:0.04 17:0.01639344262295082 25:4.0 30:0.125 55:0.5 107:1.0 262:2.0 476:1.0 1104:1.0 1105:1.0 1106:1.0 1107:1.0 1108:1.0 1109:1.0 2 25:2.0 55:0.5 199:0.1 235:0.25 356:1.0 1104:1.0 2 19:0.0625 25:1.0 194:0.5 386:1.0 948:1.0 975:1.0 1323:1.0 2 4:0.08333333333333333 14:0.04 17:0.01639344262295082 203:1.0 235:0.25 236:0.5 1035:1.0 2 6:1.0 30:0.0625 170:1.0 235:0.25 949:1.0 1407:1.0 2 42:0.6666666666666666 69:0.5 159:0.08333333333333333 193:0.3333333333333333 200:1.0 208:1.0 255:1.0 278:1.0 352:2.0 374:1.0 794:2.0 876:1.0 942:2.0 2 14:0.04 25:2.0 159:0.08333333333333333 183:0.3333333333333333 185:1.0 193:0.3333333333333333 203:1.0 208:1.0 317:1.0 346:1.0 1426:1.0 2 4:0.08333333333333333 20:1.0 64:1.0 199:0.1 303:1.0 381:1.0 975:1.0 1307:1.0 2 6:1.0 14:0.04 30:0.0625 66:0.5 140:0.25 170:2.0 199:0.2 200:1.0 207:0.5 208:1.0 386:2.0 393:1.0 404:1.0 826:1.0 885:1.0 1178:0.3333333333333333 1258:1.0 2 3:0.5 66:1.0 290:1.0 408:1.0 490:1.0 1279:1.0 2 17:0.03278688524590164 25:3.0 66:0.5 159:0.08333333333333333 346:1.0 367:0.5 368:1.0 1088:1.0 1102:1.0 2 17:0.01639344262295082 25:1.0 49:0.14285714285714285 149:1.0 199:0.1 367:0.5 413:1.0 983:1.0 984:0.25
797536c5347364b3eb2ad8431826cf3134220016
449d555969bfd7befe906877abab098c6e63a0e8
/1538/CH19/EX19.5/Ex19_5.sce
9555ca0eb679319b26f4698c39fc7b4ac3960e74
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
649
sce
Ex19_5.sce
//example-19.5 //page no-566 //given //current density Id=1000 //A/m^2 //resistivity rho=0.05 //ohm m //conductivity sigma=1/rho //per ohm m //electron mobility mue=0.4 //m^2/V m //length of crystal l=100*10^-6 //m //charge on electron e=1.602*10^-19 //C //in n-type semiconductor ne>>>nh //so n=sigma/e/mue //per m^3 //also we know that //Ie=n*e*vd //so vd=Id/n/e //m/s //the distance l travelled in time t at drift velocity vd, by an electron is given by //l=t*vd //so t=l/vd*10^6 //micro sec printf ("the velocity and time taken by the electron to travel 100 m in the crystal is %d m/s and %d micro sec",vd,t)
cf903ff56c3fcfe9e808e748d4345c74183afae0
67a252961f6616fc6db89eb11c1c83abf4d41468
/CS4110Design4/CS16B032RAM512.tst
50be66c10d55689fd756c991467b5d8843dccb36
[]
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
1,956
tst
CS16B032RAM512.tst
load CS16B032RAM512.hdl, output-file CS16B032RAM512.out, compare-to CS16B032RAM512.cmp, output-list time%S1.4.1 in%D1.6.1 load%B2.1.2 address%D2.3.2 out%D1.6.1; set in 16698, set load 0, set address 32, tick, output; tock, output; set in 3014, set load 1, set address 141, tick, output; tock, output; set in -13725, set load 1, set address 492, tick, output; tock, output; set in 2900, set load 0, set address 73, tick, output; tock, output; set in -1420, set load 0, set address 446, tick, output; tock, output; set in 7003, set load 0, set address 377, tick, output; tock, output; set in -16087, set load 0, set address 23, tick, output; tock, output; set in 6185, set load 0, set address 356, tick, output; tock, output; set in 5059, set load 1, set address 230, tick, output; tock, output; set in -4030, set load 1, set address 483, tick, output; tock, output; set in -11689, set load 0, set address 329, tick, output; tock, output; set in 8562, set load 1, set address 436, tick, output; tock, output; set in -9421, set load 0, set address 508, tick, output; tock, output; set in -8836, set load 0, set address 14, tick, output; tock, output; set in 13613, set load 0, set address 161, tick, output; tock, output; set in -10776, set load 1, set address 110, tick, output; tock, output; set in 20802, set load 0, set address 207, tick, output; tock, output; set in 16645, set load 0, set address 504, tick, output; tock, output; set in -21782, set load 1, set address 354, tick, output; tock, output; set in -13768, set load 0, set address 426, tick, output; tock, output; set in 19698, set load 0, set address 31, tick, output; tock, output; set in -16079, set load 0, set address 45, tick, output; tock, output; set in 16058, set load 0, set address 288, tick, output; tock, output; set in 6641, set load 0, set address 306, tick, output; tock, output; set in -19090, set load 1, set address 181, tick, output; tock, output;
86ff8910a529cae5daf680ad8a8d2159a53472c0
449d555969bfd7befe906877abab098c6e63a0e8
/1820/CH4/EX4.12/Example4_12.sce
e97d482891b562c374426f398b9d0b135c673ee1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,580
sce
Example4_12.sce
// ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN // TURAN GONEN // CRC PRESS // SECOND EDITION // CHAPTER : 4 : OVERHEAD POWER TRANSMISSION // EXAMPLE : 4.12 : clear ; clc ; close ; // Clear the work space and console // GIVEN DATA Z = 2.07 + 0.661 * %i ; // Line impedance in Ω V_L = 2.4 * 10^3 ; // Line voltage in V p = 200 * 10^3; // Load in VA pf = 0.866 ; // Lagging power factor // CALCULATIONS // for case (a) A = 1 ; B = Z ; C = 0 ; D = A ; theta = acosd(pf) ; S_R = p * ( cosd(theta) + %i * sind(theta) ) ; // Receiving end power in VA I_L1 = S_R/V_L ; I_L = conj(I_L1) ; I_S = I_L ; // sending end current in A I_R = I_S ; // Receiving end current in A // for case (b) Z_L = V_L/I_L ; // Impedance in Ω V_R = Z_L * I_R ; V_S = A * V_R + B * I_R ; // sending end voltage in V P = [A B ;C D] * [V_R ; I_R] ; // for case (c) V_S = P(1,1) ; I_S = P(2,1) ; Z_in = V_S/I_S ; // Input impedance in Ω // for case (d) S_S = V_S * conj(I_S) ; S_L = S_S - S_R ; // Power loss of line in VA // DISPLAY RESULTS disp("EXAMPLE : 4.12 : SOLUTION :-") ; printf("\n (a) Sending-end current , I_S = %.2f<%.2f A \n",abs(I_S),atand( imag(I_S),real(I_S) )) ; printf("\n (b) Sending-end voltage , V_S = %.2f<%.2f V \n",abs(V_S),atand( imag(V_S),real(V_S) )) ; printf("\n (c) Input impedance , Z_in = %.2f<%.2f Ω \n",abs(Z_in),atand( imag(Z_in),real(Z_in) )) ; printf("\n (d) Real power loss in line , S_L = %.2f W \n",real(S_L)) ; printf("\n Reactive power loss in line , S_L = %.2f var \n",imag(S_L)) ;
665ec23865f9a1637e7d34443f8b816ebfaed212
449d555969bfd7befe906877abab098c6e63a0e8
/2132/CH5/EX5.12/Example5_12.sce
9f568efa7830cd87df60d6c9359f146b6aa5b3a4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
445
sce
Example5_12.sce
//Example 5.12 clc; clear; close; format('v',6); //Given data : D1=180/1000;//meter D2=90/1000;//meter g=9.81;//gravity constant S=0.8;//sp. gravity of oil Sm=13.6;//sp. gravity of mercury x=300/1000;//meter K=0.97;//coeff. of meter A1=%pi*D1^2/4;//m^2 A2=%pi*D2^2/4;//m^2 C=A1*A2*sqrt(2*g)/sqrt(A1^2-A2^2) h=x*(Sm/S-1);//meter of oil Q=K*C*sqrt(h);//m^3/sec Q=Q*1000;//litre/sec disp(Q,"Discharge of oil in litres/sec : ");
a3ef25fb26ff93fb91cf0b75cd3ce8a1b43fa910
449d555969bfd7befe906877abab098c6e63a0e8
/1172/CH3/EX3.13/Example3_13.sce
cb830a6c70983cf2cdbf64db47f11c01e897974b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
532
sce
Example3_13.sce
clc //Given that v = 300 // speed of electron in m/s accuracy = 1e-4 // accuracy in speed h = 6.6e-34 // Plank's constant m_e = 9.1e-31 // mass of electron in Kg //Sample Problem 13 page No. 140 printf("\n\n\n # Problem 13 # \n") printf("\n Standard formula Used \n delta_p * delta_x >= h /(2*pi)") del_p = accuracy * m_e * v //calculation of Uncertainty in momentum del_x = h / (4 * %pi * del_p) //calculation of Uncertainty in position printf ("\n Uncertainty in position of electron is %f mm. ", del_x*1000 )
da5128bb633569aeae39b5ded6351f02b6dfdd41
449d555969bfd7befe906877abab098c6e63a0e8
/2135/CH1/EX1.32/Exa_1_32.sce
e0ca7ba21e56f10d77db65eb4f4ef983d20e689d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
218
sce
Exa_1_32.sce
//Exa 1.32 clc; clear; close; format('v',7); //Given Data : p0=101.3;//KPa V1=1.2;//m^3 V2=0;//m^3 //No p.dV work by rigid boundary W=p0*integrate('1','V',V1,V2); disp(W,"Workdone by the air in KJ : ");
381c4f13814ee8ebb224b9696e565772adbc94f7
449d555969bfd7befe906877abab098c6e63a0e8
/761/CH20/EX20.8/20_8.sce
9083bf0d38bc193090dd467ace3c30f8715d11ab
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
315
sce
20_8.sce
clc; // page no 762 // prob no 20.8 D=40000;// distance of satellite from the earth station v=3*10^8;// velo of light d=80000;// distance between two earth stations // time delay is given as t=d/v; // total time delay will be twice that of calculated above T=2*t; disp('sec',T,'The total time delay is ');
39222e66d7c3b52dfec2af0b07b89dbe51fba6b8
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/SU2.prev.tst
fa4f187f2704a8db90ec86f274da7a8210ceb002
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
49
tst
SU2.prev.tst
("x-y").substitute({x=>1+2*y,y=>1+2*z}) = 2y-2z
7f7a382172229260fdac821303fe09f4fba71958
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH13/EX13.2/Ex13_2.sce
ced7e04e16f33b2c6b8a7f374a8a12b6f13ce228
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
217
sce
Ex13_2.sce
//Example 13.2 T_C=25;//Temperature(C) T_R=0.8*T_C;//Temperature (R (Reaumur)) printf('Room temperature = %0.1f R',T_R) //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
79d179bf14f10776be24f5385dba889ce7761aa9
449d555969bfd7befe906877abab098c6e63a0e8
/2321/CH6/EX6.14.1/EX6_14_1.sce
2cd8d71c4c7c19f68015462df038ea8edf4a76b4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
650
sce
EX6_14_1.sce
//Example No. 6.14.1 clc; clear; close; format('v',6); SLL=19.1;//dB(Side Lobe Level) //d=lambda/2;(spacing) dBYlambda=1/2;//(Spacing/wavelength) n=4;//(no. of elements) r=round(10^(SLL/20));//(ratio of main lobe to side lobe) m=n-1;//(degree ) //T3(x0)=r=4*x0^3-3*x0; x0=roots([4 0 -3 -r]);//(Coefficient) x0=x0(1);//taking real value(Coefficient) //E4(z)=T3(x)=4*x^3-3*x=4*a1*z^3-3*a1*z+a0*z //4*a1*z^3=4*x^3 where z^3=(x/x0)^3 a1=4*x0^3/4;//(Coefficient) //a0*z-3*z*a1=-3*x a0=(3/x0*a1-3)*x0;//(Coefficient) disp(a0,a1,"Coefficients of array polynomial a1 & a0 are : "); disp(a0/a1,a1/a1,"Relative current amplitudes are :");
360d2238dcaf07c9a30e160a6732f446960c466d
449d555969bfd7befe906877abab098c6e63a0e8
/3574/CH9/EX9.1/EX9_1.sce
453a97c1fb0810d0bd911cecb601b89ad966baf3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,676
sce
EX9_1.sce
// Example 9.1 // Determine (a) Turbine torque supplied to the alternator (b) Excitation // voltage (c) Active and reactive components of apparent power (d) Power // factor (e) Neglecting saturation effects, excitation voltage if the field // current is reduced to 85% of its voltage in (a) (f) Turbine speed. // Page No. 342 clc; clear; close; // Given data hp=112000; // Power input n=746*3600; // Speed VT=460; // 3-Phase supply voltage Pout=112000; // Power Xs=1.26; // Synchronous reactnace delta=25; // Power angle eta=0.85; // Percent reduction factor P=2; // Number of poles f=60; // Frequnecy // (a) Turbine torque supplied to the alternator T=(hp*5252)/n; // (b) Excitation voltage Vt=VT/sqrt(3); // Voltage/phase Ef=(Pout*Xs)/(3*Vt*sind(delta)); // (c) Active and reactive components of apparent power // Vt=Ef-Ia*j*Xs // Solving for Vt-Ef Vt_Mag=Vt; Vt_Ang=0; Ef_Mag=Ef; Ef_Ang=delta; // N01=Ef_Mag+%i*Ef_Ang; // Ef in polar form N02=Vt_Mag+%i*Vt_Ang; // Vt in polar for N01_R=Ef_Mag*cos(-Ef_Ang*%pi/180); // Real part of complex number Ef N01_I=Ef_Mag*sin(Ef_Ang*%pi/180); //Imaginary part of complex number Ef N02_R=Vt_Mag*cos(-Vt_Ang*%pi/180); // Real part of complex number Vt N02_I=Vt_Mag*sin(Vt_Ang*%pi/180); //Imaginary part of complex number Vt FinalNo_R=N01_R-N02_R; FinalNo_I=N01_I-N02_I; FinNum=FinalNo_R+%i*FinalNo_I; // Now FinNum/Xs in polar form FinNum_Mag=sqrt(real(FinNum)^2+imag(FinNum)^2); // Magnitude part FinNum_Ang = atan(imag(FinNum),real(FinNum))*180/%pi; // Angle part
 Ia_Mag=FinNum_Mag/Xs; Ia_Ang=FinNum_Ang-90; // Computation of S=3*Vt*Ia* S_Mag=3*Vt_Mag*Ia_Mag; S_Ang=Vt_Ang+-Ia_Ang; // Polar to complex form S_R=S_Mag*cos(-S_Ang*%pi/180); // Real part of complex number S S_I=S_Mag*sin(S_Ang*%pi/180); // Imaginary part of complex number S // (d) Power factor Fp=cosd(Ia_Ang); // (e) Excitation voltage Efnew=eta*Ef_Mag; // (f) Turbine speed ns=120*f/P; // Display result on command window printf("\n Turbine torque supplied to the alternator = %0.1f lb-ft ",T); printf("\n Excitation voltage = %0.1f V/phase ",Ef); printf("\n Active components of apparent power= %0.0f kW ",S_R/1000); printf("\n Reactive components of apparent power= %0.1f kvar lagging ",S_I/1000); printf("\n Power factor = %0.2f lagging ",Fp); printf("\n Excitation voltage new = %0.1f V/phase ",Efnew); printf("\n Turbine speed = %0.0f r/min ",ns);
f352e18cb054882525fcba5953194e2e8694fa94
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set9/s_Engineering_Physics_M._R._Srinivasan_3411.zip/Engineering_Physics_M._R._Srinivasan_3411/CH6/EX6.4.u1/Ex6_4_u1.sce
b70ba645e3d8f67167797750b850b0ab67026885
[]
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
502
sce
Ex6_4_u1.sce
errcatch(-1,"stop");mode(2);//Example 6_4_u1 ; ; //To calculate the ratio of populations of two energy levels h=6.63*10^-34 //units in m^2 kg s^-1 c=3*10^8 //units in meter/sec lamda=694.3 //units in nm lamda=lamda*10^-9 //units in meters kb=1.38*10^-23 //units in m^2 kg s^-2 K^-1 T=300 //units in K n1_n2=exp((h*c)/(lamda*kb*T)) printf("The ratio of Populations of two energy levels is N1/N2=") disp(n1_n2); exit();
375406b533dd9b87242cd7b0ce6064f239056ee8
1489f5f3f467ff75c3223c5c1defb60ccb55df3d
/tests/test_ods_fsed_4_c.tst
9913948b6b006ea26efd76307edd3ff5531fcd24
[ "MIT" ]
permissive
ciyam/ciyam
8e078673340b43f04e7b0d6ac81740b6cf3d78d0
935df95387fb140487d2e0053fabf612b0d3f9e2
refs/heads/master
2023-08-31T11:03:25.835641
2023-08-31T04:31:22
2023-08-31T04:31:22
3,124,021
18
16
null
2017-01-28T16:22:57
2012-01-07T10:55:14
C++
UTF-8
Scilab
false
false
123
tst
test_ods_fsed_4_c.tst
cd / label yyy file_add yyy mnemonics.txt branch objects xxx (289 B) yyy (13.1 kB) file_get yyy test_ods_fsed_4_c.tmp exit
2549e2c2bade67fe5701b73859f8596bc8cac837
8fcfcd367a32514b5e303f6e380b412bae2771e4
/PPP3Lab.sce
e53c6ea6b72453099e6ca0e78ddf75009a400b4a
[]
no_license
NadyaLE/ApplicationPackages
2356a8a71d7a605d890337b3034107ae45c268f6
e3ad240f9142a62061a23f30df2430b8768f0d51
refs/heads/master
2023-04-08T18:23:55.540644
2021-04-20T06:08:00
2021-04-20T06:08:00
359,702,318
0
0
null
null
null
null
UTF-8
Scilab
false
false
357
sce
PPP3Lab.sce
x=[3,3.5,4,4.5]; y=[1.0986123,1.2527630,1.3862944,1.5040774]; function InterpolationPolynomial(x,y,value) A=[1,x(1),x(1)^2,x(1)^3;1,x(2),x(2)^2,x(2)^3;1,x(3),x(3)^2,x(3)^3;1,x(4),x(4)^2,x(4)^3]; coef=inv(A)*y'; q=poly([coef(1) coef(2) coef(3) coef(4)], "x","coeff"); disp(q); disp("L(x) = " + string(horner(q,value))); endfunction
eae0ff35bfe31ecdafbc20025d74dec6bc97ad02
449d555969bfd7befe906877abab098c6e63a0e8
/2438/CH5/EX5.39/Ex5_39.sce
c010a7884177e9897b6be9f113d6f53c5657dfbb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
577
sce
Ex5_39.sce
//=========================================================================== //chapter 5 example 39 clc; clear; //input data k =1.38*10^-23; Tc =4.2; //tempetrature in K h =6.6*10^-34; //planck's constant in (m^2)*kg/s c =3*10^8; // velocity of light in m //calculation Eg=(3*k*Tc); //energy gap in eV lamda=h*c/Eg; //wavelngth in m //result mprintf('region of electromagnetic spectrum=%3.2e.m\n',lamda); //==============================================================================
f1cdade2858ae14a6b994fb35263cc39a4b959a1
1573c4954e822b3538692bce853eb35e55f1bb3b
/DSP Functions/allpasslp2bpc/test_8.sce
f7f8ce901a499b9e64fa775a61c41d1ef057236d
[]
no_license
shreniknambiar/FOSSEE-DSP-Toolbox
1f498499c1bb18b626b77ff037905e51eee9b601
aec8e1cea8d49e75686743bb5b7d814d3ca38801
refs/heads/master
2020-12-10T03:28:37.484363
2017-06-27T17:47:15
2017-06-27T17:47:15
95,582,974
1
0
null
null
null
null
UTF-8
Scilab
false
false
302
sce
test_8.sce
// Test # 8 : Input Argument #1 or #2 length test exec('./allpasslp2bpc.sci',-1); [n,d]=allpasslp2bpc(0.3,[0.56,0.8,0.99]); //!--error 10000 //Wt must be real,numeric and must contain only 2 elements //at line 43 of function allpasslp2bpc called by : //[n,d]=allpasslp2bpc(0.3,[0.56,0.8,0.99]);
a3bd38d77dc83e4c9918935ce3be0fe6d375c72c
449d555969bfd7befe906877abab098c6e63a0e8
/1223/CH5/EX5.20/Ex5_20.sce
84553f209430fb9285eada01cc33eaed0c5d89a1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
577
sce
Ex5_20.sce
clear; clc; //Example 5.20 Vtn=0.24; Kn=1.1; //x=R1+R2=50000 x=50; Vgs=0.5; Vds=2.5; Vdd=4; Rd=6.7; I_D=Kn*(Vgs-Vtn)^2; printf('\ndrain current=%.3f mA\n',I_D) Vd=Vdd-I_D*Rd; printf('\nvoltage at drain=%0.2f V\n',Vd) Vs=Vd-Vds; printf('\nvoltage at source =%0.2fV\n',Vs) Rs=Vs/I_D; printf('\nsource resistance =%.2fKOhm\n',Rs) Vg=Vgs+Vs; printf('\nvoltage at the gate=%.2f V\n',Vg) //Vg=R2*Vdd/(R2+R1) R2=Vg*x/Vdd; printf('\nR2=%0.3f KOhm\n',R2) R1=x-R2; printf('\nR1=%0.3f KOhm\n',R1) Vgs-Vtn //since Vds>Vgs-Vtn transistor is biased in saturation
331430cce5af7a08485907218dd90446e053fe45
449d555969bfd7befe906877abab098c6e63a0e8
/10/CH2/EX3/cha2_3.sce
eaf9608889d89477714bbacd712ed64ce74ec067
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
cha2_3.sce
Fullload=75;Ia=4.55;Vl=2200; Fulload=Fullload/100 Ih=Fullload*Ia function[x,y]=polar2rect(r,theta) x=r*cos(theta*%pi/180); y=r*sin(theta*%pi/180); endfunction [x1,y1]=polar2rect(Vl,0) [x2,y2]=polar2rect(35.46,-53.13) [x3,y3]=polar2rect(106.73,36.87) X1=x1+%i*y1 X2=x2+%i*y2 X3=x3+%i*y3 X=X1+X2+X3 function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [V,Angle]=rect2polar(2306.5,35.67) VolReg=(V-Vl)/Vl*100 function[x,y]=polar2rect(r,theta) x=r*cos(theta*%pi/180); y=r*sin(theta*%pi/180); endfunction [x1,y1]=polar2rect(Vl,0) [x2,y2]=polar2rect(35.46,53.13) [x3,y3]=polar2rect(106.73,143.13) X1=x1+%i*y1 X2=x2+%i*y2 X3=x3+%i*y3 X=X1+X2+X3 function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [V1,Angle1]=rect2polar(2135.89,92.4) VolReg=(V1-Vl)/Vl*100
38fc3654e373d6ba468266d0da84cf1e3fb50096
4a37bfef0f5bd1f6a904e802680e22b2662d2a17
/nektar/nektar++-5.0.0/solvers/IncNavierStokesSolver/Tests/Tet_Kovasnay_SubStep.tst
943858fe90abb9ab10572eabfc4c02dd146f9f26
[ "MIT" ]
permissive
mapengfei-nwpu/DG-program
5a47d531f5f8118547b194aa250b546a03f700c3
e7d9b98f0241d7f4af941d801de3f0b12bb0ed3a
refs/heads/master
2022-10-04T22:21:42.409887
2020-05-04T12:49:45
2020-05-04T12:49:45
261,162,778
5
0
null
null
null
null
UTF-8
Scilab
false
false
1,013
tst
Tet_Kovasnay_SubStep.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>3D Tet Kovasnay solution using sub-stepping</description> <executable>IncNavierStokesSolver</executable> <parameters>Tet_Kovasnay_SubStep.xml</parameters> <files> <file description="Session File">Tet_Kovasnay_SubStep.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="u" tolerance="1e-6">0.00109506</value> <value variable="v" tolerance="1e-6">0.000253692</value> <value variable="w" tolerance="1e-6">0.000189599</value> <value variable="p" tolerance="1e-6">0.000923404</value> </metric> <metric type="Linf" id="2"> <value variable="u" tolerance="1e-6">0.00929358</value> <value variable="v" tolerance="1e-6">0.0014178</value> <value variable="w" tolerance="1e-6">0.00079787</value> <value variable="p" tolerance="2e-6">0.00546989</value> </metric> </metrics> </test>
0b22148ab03f3ca48f8e763f579895fe35386abb
b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf
/TD4/Scripts/exponentielle.sce
a5101d94050f8bfcf6854f30b0bef0033e163aeb
[]
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
560
sce
exponentielle.sce
clf; clear; clc; load('C:\Users\tangu\OneDrive\Documents\GitHub\Modelisation\TD4\NetworkData.sod') // Extraction des temps inter-arrivées t_ia = data(2:$, 2) - data(1:1237, 2); deciles=perctl(t_ia,10:10:90); for i=2:10 ClassesDeciles(i)=deciles(i-1) end ClassesDeciles(1)=min(t_ia) ClassesDeciles(11)=max(t_ia) histplot(ClassesDeciles,t_ia,style=2,fill='true') //dessin loi exponentielle a=0:0.01:22 lambda=1/mean(t_ia) b=lambda*exp(-lambda*a) plot2d2(a,b) // Définition des paramètres d'affichages a=gca(); a.x_location = "origin"; a.grid=[5,5];
c1d2801934c739a10e54bf2c1d40f6523c8c7bd4
d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3
/r37/packages/xideal/xideal.tst
8e071cf7cea437ffea7ab86ca989ea49067ab0fb
[ "BSD-3-Clause" ]
permissive
reduce-algebra/reduce-historical
8220e211b116e0e01ff1a38f51917cac9db6069f
e014152729c4d62bb1ce4f5c311a027042a5495a
refs/heads/master
2023-04-10T22:54:00.796596
2021-04-16T08:52:19
2021-04-16T08:52:19
343,245,204
7
1
NOASSERTION
2021-04-16T08:53:31
2021-03-01T00:15:22
TeX
UTF-8
Scilab
false
false
3,027
tst
xideal.tst
% Test file for XIDEAL package (Groebner bases for exterior algebra) % Declare EXCALC variables pform {x,y,z,t}=0,f(i)=1,{u,u(i),u(i,j)}=0; % Reductions with xmodideal (all should be zero) d x^d y xmodideal {d x - d y}; d x^d y^d z xmodideal {d x^d y - d z^d t}; d x^d z^d t xmodideal {d x^d y - d z^d t}; f(2)^d x^d y xmodideal {d t^f(1) - f(2)^f(3), f(3)^f(1) - d x^d y}; d t^f(1)^d z xmodideal {d t^f(1) - f(2)^f(3), f(1)^d z - d x^d y, d t^d y - d x^f(2)}; f(3)^f(4)^f(5)^f(6) xmodideal {f(1)^f(2) + f(3)^f(4) + f(5)^f(6)}; f(1)^f(4)^f(5)^f(6) xmodideal {f(1)^f(2) + f(2)^f(3) + f(3)^f(4) + f(4)^f(5) + f(5)^f(6)}; d x^d y^d z xmodideal {x**2+y**2+z**2-1,x*d x+y*d y+z*d z}; % Changing the division between exterior variables and parameters xideal {a*d x+y*d y}; xvars {a}; xideal {a*d x+y*d y}; xideal({a*d x+y*d y},{a,y}); xvars {}; % all 0-forms are coefficients excoeffs(d u - (a*p - q)*d y); exvars(d u - (a*p - q)*d y); xvars {p,q}; % p,q are no longer coefficients excoeffs(d u - (a*p - q)*d y); exvars(d u - (a*p - q)*d y); xvars nil; % Exterior system for heat equation on 1st jet bundle S := {d u - u(-t)*d t - u(-x)*d x, d u(-t)^d t + d u(-x)^d x, d u(-x)^d t - u(-t)*d x^d t}; % Check that it's closed. dS := d S xmodideal S; % Exterior system for a Monge-Ampere equation korder d u(-y,-y),d u(-x,-y),d u(-x,-x),d u(-y),d u(-x),d u; M := {u(-x,-x)*u(-y,-y) - u(-x,-y)**2, d u - u(-x)*d x - u(-y)*d y, d u(-x) - u(-x,-x)*d x - u(-x,-y)*d y, d u(-y) - u(-x,-y)*d x - u(-y,-y)*d y}$ % Get the full Groebner basis gbdeg := xideal M; % Changing the term ordering can be dramatic xorder gradlex; gbgrad := xideal M; % But the bases are equivalent gbdeg xmod gbgrad; xorder deglex; gbgrad xmod gbdeg; % Some Groebner bases gb := xideal {f(1)^f(2) + f(3)^f(4)}; gb := xideal {f(1)^f(2), f(1)^f(3)+f(2)^f(4)+f(5)^f(6)}; % Non-graded ideals % Left and right ideals are not the same d t^(d z+d x^d y) xmodideal {d z+d x^d y}; (d z+d x^d y)^d t xmodideal {d z+d x^d y}; % Higher order forms can now reduce lower order ones d x xmodideal {d y^d z + d x,d x^d y + d z}; % Anything whose even part is a parameter generates the trivial ideal!! gb := xideal({x + d y},{}); gb := xideal {1 + f(1) + f(1)^f(2) + f(2)^f(3)^f(4) + f(3)^f(4)^f(5)^f(6)}; xvars nil; % Tracing Groebner basis calculations on trxideal; gb := xideal {x-y+y*d x-x*d y}; off trxideal; % Same thing in lexicographic order, without full reduction xorder lex; off xfullreduce; gblex := xideal {x-y+y*d x-x*d y}; % Manual autoreduction gblex := xauto gblex; % Tracing reduction on trxmod; first gb xmod gblex; % Restore defaults on xfullreduce; off trxideal,trxmod; xvars nil; xorder deglex; end;
be1c261a2d35ddc4e1b3d5db9ab21aed2b51ff60
449d555969bfd7befe906877abab098c6e63a0e8
/2660/CH5/EX5.4/Ex5_4.sce
a83839d26b80f3cb9df8ca1092f2980455434c9e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
963
sce
Ex5_4.sce
clc //Machine A f1 = 2000 // annual benefit from better production quality in Rs i = 10 // interest rate i = 10/100 f2 = 12000 // salvage value in Rs f3 = 8000 // operating and maintenance cost in Rs I1 = 100000 // initial cost in Rs n = 5 // years p1 = (f1*((1+i)^n-1))/(i*(i+1)^n) p2 = f2/(1+i)^n c1 = p1 + p2 // cash in flows in Rs p3 = (f3*((1+i)^n-1))/(i*(i+1)^n) c2 = I1 + p3 // cash out flows in Rs Pa = c1 - c2 // net P.W.in Rs //Machine B I2 = 60000 // initial cost in Rs f4 = 16000 // operating and maintenance cost in Rs f5 = 14000 // reconditioning at the end of third year in Rs p4 = (16000*((1+i)^5-1))/(i*(1+i)^5) p5 = f5/(1+i)^5 Pb = -I2 - p4 - p5 // net P.W.in Rs printf("\n Net P.W.of Machine A= Rs %0.2f\n Net P.W.of Machine B = Rs%0.2f" , Pa ,Pb) disp("It is clear that Net P.W of Machine A is less nagative as compared to that of Machine B , therefore Machine A is economcal.") // Answers vary due to round off error
c035ff99463b524097b6ea11676d98872fd7a44e
1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08
/Scilab/PCIeGen3/FFEStudy/FFEStudy.sce
c463b56affeb2b69f013cb26b97117fbcd30c795
[]
no_license
lrayzman/SI-Scripts
5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d
9ab161c6deff2a27c9da906e37aa68964fabb036
refs/heads/master
2020-09-25T16:23:23.389526
2020-02-09T02:13:46
2020-02-09T02:13:46
66,975,754
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,682
sce
FFEStudy.sce
// FFE transfer function (arbitrary FFE length) // // //stacksize(80*1024*1024); clear; //Clear user variables //////////////////////////////////////////////////SPECIFY//////////////////////////////////////// c=[2.082 -0.833 -0.161 0.042 -0.086 -0.043 0.043 0.036 0.011 -0.048]; // FFE coeffecients vector [c1 c2 ... cn] of arbitrary length // c0 is assumed to be 1 baudrate=8e9; // Baud-frequency tau=1/(baudrate); // Tap delay (s) N=1024; // Number of frequency points MaxFreq=16e9; // Maximum plot frequency k=[0:1:N-1]; //Index of frequency points f=MaxFreq*k/N; //Vector of frequency points (Hz) f(1)=f(2)/10^9; //////////////////////////////////////////////////////////////////////////////////////////////// numoftaps=length(c); //H_FFE=(1+sum(c))*ones(f); H_FFE=zeros(f); // Compute FFE for i=1:numoftaps; H_FFE=H_FFE+c(i)*exp(-%i*2*%pi*f*(i-1)*tau); end // Plot results subplot(2,1,1); plot2d(f/1e9, 20*log(abs(H_FFE)), style=2); xgrid(4); xtitle("FFE Transfer Function" ,"Freq (GHz)", "Gain (dB)"); subplot(2,1,2); plot2d(f(2:$)/1e9, 1e12*(-diff(atan(H_FFE))./diff(2*%pi*f)), style=2); xgrid(4); xtitle("", "Freq (GHz)", "Group Delay (ps)");
25cec8012b0b5fd7a07882a7e2aa219d8d8c7480
7dbe475cd217e686e9689cb0536a9a73f625a85b
/Rez/univariate-lcmsr-post_mi/vrt_ind_d/~LCM-SR-vrt_ind_d-nat.tst
c3773b9a623f8d26cd119d322d9e9bc890fe8b04
[]
no_license
jflournoy/lnt_pxvx
fac8d6b00b886fa3dc800dcaa288aa186027b9ea
3f1ddc64e4bf0aecddfa21d45f889620dbdd442d
refs/heads/master
2021-10-20T12:52:55.625243
2019-02-27T17:06:09
2019-02-27T17:06:09
64,423,528
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,999
tst
~LCM-SR-vrt_ind_d-nat.tst
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.402853D+00 2 -0.714617D-02 0.336569D-02 3 0.968307D-03 0.147777D-03 0.284863D-02 4 0.119393D+00 -0.635878D-01 0.804723D-01 0.194425D+03 5 0.344715D+00 0.223057D-01 0.246826D+00 0.130409D+02 0.849911D+02 6 -0.804889D+00 -0.656033D-01 -0.233660D+00 -0.231891D+02 -0.545277D+02 7 0.117317D-01 -0.227666D-03 -0.168542D-02 0.105165D+01 -0.108329D+00 8 0.415610D-02 0.108872D-02 -0.120364D-03 -0.248040D+00 0.375584D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 ________ ________ ________ 6 0.393238D+03 7 0.292140D+01 0.609326D+00 8 -0.152172D+01 -0.579247D-01 0.155176D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.194 1.000 3 0.029 0.048 1.000 4 0.013 -0.079 0.108 1.000 5 0.059 0.042 0.502 0.101 1.000 6 -0.064 -0.057 -0.221 -0.084 -0.298 7 0.024 -0.005 -0.040 0.097 -0.015 8 0.053 0.151 -0.018 -0.143 0.033 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 ________ ________ ________ 6 1.000 7 0.189 1.000 8 -0.616 -0.596 1.000
5badd54f76f5b0c9996ec415fbca550c54b27f25
449d555969bfd7befe906877abab098c6e63a0e8
/2090/CH4/EX4.8/Chapter4_Example8.sce
0dea1651fafe992e86bc796f38335b337f2f90bb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,098
sce
Chapter4_Example8.sce
clc clear //Input data T=800;//The given temperature in K e=1;//The equivalence ratio //Calculations hi=154.723;//Sensible Enthalpy for isooctane at 800 K in MJ/kmol ho=15.841;//Sensible Enthalpy for oxygen at 800 K in MJ/kmol hn=15.046;//Sensible Enthalpy for nitrogen at 800 K in MJ/kmol nc=0.00058;//Number of kmoles of C8H18 for equivalence ratio for 1 kg of air no=0.00725;//Number of kmoles of oxygen for equivalence ratio for 1 kg of air nn=0.0273;//Number of kmoles of nitrogen for equivalence ratio for 1 kg of air Hs=(nc*hi)+(no*ho)+(nn*hn);//Total sensible enthalpy of reactants in MJ per kg of air Hs1=Hs*1000;//Total sensible enthalpy of reactants in kJ per kg of air R=8.314;//Gas constant in kJ/kgK n=nc+no+nn;//Total number of kmoles for 1 kg of air Us=Hs-(n*R*10^-3*(T-298));//sensible internal energy of reactants in MJ per kg of air Us1=Us*1000;//sensible internal energy of reactants in kJ per kg of air //Output printf('Total sensible enthalpy of reactants = %3.1f kJ/kg air \n Sensible internal energy of reactants = %3.1f kJ/kg air ',Hs1,Us1)
e7ca513d1d5fe60299a8a20eb4ae058127b8695a
fd6e45f66c41ad779a3d47c3bf8ebfa140d3d657
/P6 - Eigenvalues and eigenvectors/Circulos_Gerschorin.sci
93a0247042a4b308a979979737ab2a05f0d2cabd
[]
no_license
jere1882/Numerical-Analysis-Assignments
7f474e2020d010f9f9c3dceff5e48c03b0d38652
1074f92ca93d0a402259f92a0f61f105f25e5230
refs/heads/master
2021-09-06T20:00:36.411386
2018-02-10T18:04:38
2018-02-10T18:04:38
121,039,769
0
0
null
null
null
null
UTF-8
Scilab
false
false
148
sci
Circulos_Gerschorin.sci
//Grafica los cículos de Gerschorin asociados a A, con sus autovalores. Devuelve una cota de los mismos. function y=Gerschorin(A) endfunction
4eac23acf3423d4992d747af660896c0f9a89bc7
43799901e22e995d4db64000ef28c0a787aeb11b
/ISAWIN/LINOV/KFINIT/appli.tst
8d2969b12f0bd23581135522ffdff7caa7ffea1c
[ "WTFPL" ]
permissive
aquaforum/tench_catch
7082d8e8f3a224aa50be9150a96362f2f323a2be
3f377476d82d7343edd985a6d3a41b57dc301f98
refs/heads/master
2023-07-17T13:33:10.901467
2021-08-22T19:29:09
2021-08-22T19:29:09
398,885,059
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,115
tst
appli.tst
@ISA_SYMBOLS,66717608 #NAME,kfinit,3.41 #DATE,06.11.2020 #SIZE,G=3,S=0,T=0,L=0,P=4,V=52 #COMMENT,wsma1tst @PROGRAMS,3 #!5001,PARM_STO #!5002,MUX2 #!5003,PREG @STEPS,0 @TRANSITIONS,0 @BOOLEANS,73 #!1001,X_01,+I,!0000,FALSE,TRUE #!1003,X_03,+I,!0000,FALSE,TRUE #!1005,X_05,+I,!0000,FALSE,TRUE #!1007,X_07,+I,!0000,FALSE,TRUE #!1008,X_08,+I,!0000,FALSE,TRUE #!1009,X_09,+I,!0000,FALSE,TRUE #!100A,X_10,+I,!0000,FALSE,TRUE #!100B,X_11,+I,!0000,FALSE,TRUE #!100C,X_12,+I,!0000,FALSE,TRUE #!100D,X_13,+I,!0000,FALSE,TRUE #!100E,X_14,+I,!0000,FALSE,TRUE #!100F,X_15,+I,!0000,FALSE,TRUE #!1010,X_16,+I,!0000,FALSE,TRUE #!1013,Y_ALM_1,+O,!0000,FALSE,TRUE #!1018,Y_ALM_2,+O,!0000,FALSE,TRUE #!1019,Y_08,+O,!0000,FALSE,TRUE #!101A,Y_09,+O,!0000,FALSE,TRUE #!101B,Y_10,+O,!0000,FALSE,TRUE #!101C,Y_11,+O,!0000,FALSE,TRUE #!101D,Y_12,+O,!0000,FALSE,TRUE #!101E,Y_13,+O,!0000,FALSE,TRUE #!101F,Y_14,+O,!0000,FALSE,TRUE #!1020,Y_15,+O,!0000,FALSE,TRUE #!1024,X_02,+X,!0000,FALSE,TRUE #!1025,TRM,+X,!0000,FALSE,TRUE #!1026,X_04,+X,!0000,FALSE,TRUE #!1027,RUN,+X,!0000,FALSE,TRUE #!1028,X_06,+X,!0000,FALSE,TRUE #!1029,REV_01,+X,!0000,FALSE,TRUE #!102A,REV_02,+X,!0000,FALSE,TRUE #!102B,Y_RUN_1,+X,!0000,FALSE,TRUE #!102C,Y_RUN_2,+X,!0000,FALSE,TRUE #!102D,Y_RUN_3,+X,!0000,FALSE,TRUE #!102E,MAN,+X,!0000,FALSE,TRUE #!102F,SAVE,+X,!0000,FALSE,TRUE #!1030,OFFCL_1,+X,!0000,FALSE,TRUE #!1031,OFFCL_2,+X,!0000,FALSE,TRUE #!1032,OFFCL_3,+X,!0000,FALSE,TRUE #!1033,MODE_01,+X,!0000,FALSE,TRUE #!1034,AM_01,+X,!0000,FALSE,TRUE #!1035,AM_02,+X,!0000,FALSE,TRUE #!1036,AM_12,+X,!0000,FALSE,TRUE #!1037,AM_13,+X,!0000,FALSE,TRUE #!1038,Y_ALM_3,+X,!0000,FALSE,TRUE #!1039,AM_TV,+X,!0000,FALSE,TRUE #!103A,START_P_3,+X,!0000,FALSE,TRUE #!103B,START_P_2,+X,!0000,FALSE,TRUE #!103C,START_P_1,+X,!0000,FALSE,TRUE #!103D,PTS_Q_3,+X,!0000,FALSE,TRUE #!103E,PTS_Q_2,+X,!0000,FALSE,TRUE #!103F,PTS_Q_1,+X,!0000,FALSE,TRUE #!1040,START_Q_3,+X,!0000,FALSE,TRUE #!1041,START_Q_2,+X,!0000,FALSE,TRUE #!1042,START_Q_1,+X,!0000,FALSE,TRUE #!1043,NET_3,+X,!0000,FALSE,TRUE #!1044,NET_2,+X,!0000,FALSE,TRUE #!1045,NET_1,+X,!0000,FALSE,TRUE #!1046,Q_Y_OFF,+X,!0000,FALSE,TRUE #!1047,Q_AM_01,+X,!0000,FALSE,TRUE #!1048,Q_TNP,+X,!0000,FALSE,TRUE #!1049,YP,+X,!0000,FALSE,TRUE #!104A,AMR_02,+X,!0000,FALSE,TRUE #!104B,AMR_01,+X,!0000,FALSE,TRUE #!104C,YP_3,+X,!0000,FALSE,TRUE #!104D,YP_2,+X,!0000,FALSE,TRUE #!104E,YP_1,+X,!0000,FALSE,TRUE #!104F,PTS_P,+X,!0000,FALSE,TRUE #!1050,TY_15,+X,!0000,FALSE,TRUE #!1051,TY_14,+X,!0000,FALSE,TRUE #!1052,RES,+X,!5001,FALSE,TRUE #!1053,READ,+X,!5001,FALSE,TRUE #!1054,SEL_,+X,!5002,FALSE,TRUE #!1055,AUTO_,+X,!5003,FALSE,TRUE @ANALOGS,104 #!2012,XMIN_01,+X,!0000,F, #!2013,XMIN_02,+X,!0000,F, #!2014,FS_07,+X,!0000,F, #!2015,PSUSP_ZD,+X,!0000,F, #!2016,KP_01,+X,!0000,F, #!2017,XMAX_01,+X,!0000,F, #!2018,XMAX_02,+X,!0000,F, #!2019,FS_08,+X,!0000,F, #!201A,KP_02,+X,!0000,F, #!201B,FS_09,+X,!0000,F, #!201C,DSP_12,+X,!0000,F, #!201D,LV_MAX,+X,!0000,F, #!201E,DSP_13,+X,!0000,F, #!201F,LV_MIN,+X,!0000,F, #!2020,V_12,+X,!0000,F, #!2021,NPV,+X,!0000,F, #!2022,V_13,+X,!0000,F, #!2023,LSUSP,+X,!0000,F, #!2024,TI_01,+X,!0000,F, #!2025,TI_02,+X,!0000,F, #!2026,PAIR,+X,!0000,F, #!2027,PSUSP,+X,!0000,F, #!2028,GVODA,+X,!0000,F, #!2029,TV_MAX,+X,!0000,F, #!202A,SP_12,+X,!0000,F, #!202B,TV_MIN,+X,!0000,F, #!202C,SP_13,+X,!0000,F, #!202D,MSP_12,+X,!0000,F, #!202E,PVODA_ZD,+X,!0000,F, #!202F,NF,+X,!0000,I, #!2030,LCS,+X,!0000,F, #!2031,XS_NP_ZD,+X,!0000,F, #!2032,LVODA,+X,!0000,F, #!2033,XS_ZD_MIN,+X,!0000,F, #!2034,XV_ZD_MIN,+X,!0000,F, #!2035,PVODA,+X,!0000,F, #!2036,GSUSP_ZD,+X,!0000,F, #!2037,KF_01,+X,!0000,I, #!2038,KF_10,+X,!0000,I, #!2039,KF_02,+X,!0000,I, #!203A,KF_11,+X,!0000,I, #!203B,KF_03,+X,!0000,I, #!203C,LP,+X,!0000,F, #!203D,KF_12,+X,!0000,I, #!203E,XV_01,+X,!0000,F, #!203F,KF_04,+X,!0000,I, #!2040,KF_13,+X,!0000,I, #!2041,XV_02,+X,!0000,F, #!2042,KF_05,+X,!0000,I, #!2043,KF_06,+X,!0000,I, #!2044,KF_07,+X,!0000,I, #!2045,KF_08,+X,!0000,I, #!2046,KF_09,+X,!0000,I, #!2047,TVODA,+X,!0000,F, #!2048,XSP_13,+X,!0000,F, #!2049,LSUSP_MAX,+X,!0000,F, #!204A,LS_START,+X,!0000,F, #!204B,GSUSP,+X,!0000,F, #!204C,FS_01,+X,!0000,F, #!204D,FS_10,+X,!0000,F, #!204E,FS_02,+X,!0000,F, #!204F,TD_01,+X,!0000,F, #!2050,FS_11,+X,!0000,F, #!2051,LS_MIN,+X,!0000,F, #!2052,FS_03,+X,!0000,F, #!2053,FS_12,+X,!0000,F, #!2054,TD_02,+X,!0000,F, #!2055,FS_04,+X,!0000,F, #!2056,FS_13,+X,!0000,F, #!2057,FS_05,+X,!0000,F, #!2058,NPS,+X,!0000,F, #!2059,FS_06,+X,!0000,F, #!205A,NS_ZD_3,+X,!0000,F, #!205B,NS_ZD_2,+X,!0000,F, #!205C,NS_ZD_1,+X,!0000,F, #!205D,XR_02,+X,!0000,F, #!205E,XR_01,+X,!0000,F, #!205F,P_3,+X,!0000,F, #!2060,P_2,+X,!0000,F, #!2061,P_1,+X,!0000,F, #!2062,PZD_3,+X,!0000,F, #!2063,PZD_2,+X,!0000,F, #!2064,PZD_1,+X,!0000,F, #!2065,STATE_3,+X,!0000,I, #!2066,STATE_2,+X,!0000,I, #!2067,STATE_1,+X,!0000,I, #!2068,NV_ZD_3,+X,!0000,F, #!2069,NV_ZD_2,+X,!0000,F, #!206A,NV_ZD_1,+X,!0000,F, #!206B,V_DIV,+X,!0000,F, #!206C,SAV_ST,+X,!5001,I, #!206D,NF_2,+X,!0000,I, #!206E,MUX2,+X,!5002,F, #!206F,IN2,+X,!5002,F, #!2070,IN1,+X,!5002,F, #!2071,P0_,+X,!5003,F, #!2072,KP_,+X,!5003,F, #!2073,X0_,+X,!5003,F, #!2074,SP_,+X,!5003,F, #!2075,PV_,+X,!5003,F, #!2076,XT_,+X,!5003,F, #!2077,XOUT_,+X,!5003,F, #!2078,XMAX_,+X,!5003,F, #!2079,XMIN_,+X,!5003,F, @TIMERS,8 #!3001,TW_1,+X,!0000 #!3002,TW_2,+X,!0000 #!3003,TW_3,+X,!0000 #!3004,TNP,+X,!0000 #!3005,TNP_3,+X,!0000 #!3006,TNP_2,+X,!0000 #!3007,TNP_1,+X,!0000 #!3008,SAV_TM,+X,!5001 @MESSAGES,0 @USP,4 #!B001,EEP_N_W #!B002,EEP_PR #!B003,EEP_EN #!B004,REAL_INT @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @END_SYMBOLS
dae2261d40051bcee81f32246a65938e4b590d6d
449d555969bfd7befe906877abab098c6e63a0e8
/1514/CH4/EX4.4/4_4.sce
5bf0513d19d1f78d2f3692fc18b025d6f350e0ef
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
400
sce
4_4.sce
//chapter 4 //example 4.4 //page 107 clear; clc ; //given hfe1=50; Vcc=15;//supply voltage Vbe=0.7; Rb=286; Ib=1000*(Vcc-Vbe)/Rb; Rc=2;//collector resistance in kohm Ic=hfe1*Ib/1000; Vce=Vcc-(Ic*Rc); printf("\nFor hfe=50,Vce=%d V,Ic=%.1f mA,Ib=%d microA",Vce,Ic,Ib); hfe2=150; Ic=hfe2*Ib/1000; Vce=Vcc-(Ic*Rc); printf("\nFor hfe=150,Vce=%d V,Ic=%.1f mA,Ib=%d microA",Vce,Ic,Ib);
2b3738e707fee9bdd678f7c232226e2d36583a0b
449d555969bfd7befe906877abab098c6e63a0e8
/1049/CH6/EX6.5/ch6_5.sce
2353bffd7b745381acbd70c362cbc357be407f2b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
515
sce
ch6_5.sce
clear; clc; V_s=230; f=50; R=10; a=60; V_m=(sqrt(2)*V_s); V_o=V_m/(2*%pi)*(1+cosd(a)); I_o=V_o/R; V_or=(V_m/(2*sqrt(%pi)))*sqrt((%pi-a*%pi/180)+.5*sind(2*a)); I_or=V_or/R; P_dc=V_o*I_o; P_ac=V_or*I_or; RE=P_dc/P_ac; printf("rectification efficiency=%.4f",RE); FF=V_or/V_o; printf("\nform factor=%.3f",FF); VRF=sqrt(FF^2-1); printf("\nvoltage ripple factor=%.4f",VRF); TUF=P_dc/(V_s*I_or); printf("\nt/f utilisation factor=%.4f",TUF); PIV=V_m; printf("\nPIV of thyristor=%.2f V",PIV);
83006b18c41bae060b5814ba5ce0cc513f93c52a
449d555969bfd7befe906877abab098c6e63a0e8
/2705/CH5/EX5.17/Ex5_17.sce
187f6250ad4824496bb84adb5ba7d56a2dcfd5c9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,165
sce
Ex5_17.sce
clear; clc; disp('Example 5.17'); // aim : To determine // the partial pressure of the air and steam, and the mass of the air // Given values P1 = 660;// vaccum gauge pressure on condenser [mmHg] P = 765;// atmospheric pressure, [mmHg] x = .8;// dryness fraction T = 273+41.5;// temperature,[K] ms_dot = 1500;// condense rate of steam,[kg/h] R = .29;// [kJ/kg] // solution Pa = (P-P1)*.1334;// absolute pressure,[kN/m^2] // from steam table, at 41.5 C partial pressure of steam is Ps = 8;// [kN/m^2] // by dalton's law, partial pressure of air is Pg = Pa-Ps;// [kN/m^2] mprintf('\n The partial pressure of the air in the condenser is = %f kN/m^2\n',Pg); mprintf('\n The partial pressure of the steam in the condenser is = %f kN/m^2\n',Ps); // also vg = 18.1;// [m^3/kg] // so V = x*vg;// [m^3/kg] // The air associated with 1 kg of the steam will occupiy this same volume // for air, Pg*V=m*R*T,so m = Pg*V/(R*T);// [kg/kg steam] // hence ma = m*ms_dot;// [kg/h] mprintf('\n The mass of air which will associated with this steam is = %f kg\n',ma); // There is misprint in book // End
035fe519fadcf78bc4f5ebfddc4df79109ce3217
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH8/EX8.10/ex8_10.sce
061e82272e38d29f1634c7d704fd7a315e432d25
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
399
sce
ex8_10.sce
clc; g=9.8; //gravitational constant in m/sec square d=1.03*10^3; //density of sea water in kg/m cube depth=50; //depth in m side=20; //length of side in cm p=d*depth*g; //calculating pressure on window A=side*side*10^-4; //calculating area in metre square F=p*A; //calculating FOrce in Newton disp(F,"Force acting on window in Newton = "); //displaying result.
5c2ce5617eb43dade514f1cb0db5fdbeac9d7c84
449d555969bfd7befe906877abab098c6e63a0e8
/3630/CH17/EX17.5/Ex17_5.sce
7e4ecec6ff152a4f199e3966e4ad0c6e2f8e99e5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
125
sce
Ex17_5.sce
clc; r1=10000; r2=10000; c1=0.000000015; c2=0.000000033; fc=floor(1/(2*3.14*(r1*r2*c1*c2)^0.5)); disp('Hz',fc,"fc=");
1159eb46263692d4f1f79ba8e3f13c212253b502
449d555969bfd7befe906877abab098c6e63a0e8
/1370/CH7/EX7.9/exp7_9.sce
6d4b3c596c0c83e93bcfd9e25c57cb8f1ff423da
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
419
sce
exp7_9.sce
//Example 7.9 clc disp("The current equation of a diode is") disp("I = I_0 * (e^(V/eta*VT) - 1)") disp("At 300 K, VT = 26 mV = 26*10^-3 V") disp(" V = 0.71 V for I = 2.5 mA and eta = 2 for silicon") i0=(2.5*10^-3)/((%e^(0.71/(2*26*10^-3)))-1) format(9) disp(i0,"Therefore, I_0(in A) =") disp("Now V = 0.8 V") i=((2.93*10^-9)*((%e^(0.8/(2*26*10^-3)))-1))*10^3 format(6) disp(i,"Therefore, I(in mA) =")
5039e09a3605e54a8dfea95531cac24e3a0d8dce
449d555969bfd7befe906877abab098c6e63a0e8
/1332/CH15/EX15.21/15_21.sce
224cb22e9065a19990d567bfcb0f2e2130389551
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
275
sce
15_21.sce
//Example 15.21 //Implicit Runge Kutta Method //Page no. 539 clc;clear;close; deff('y=f(x,y)','y=x-y') y=1;x=1;h=0.1;printf('\n') U=[0,1/5]; v=[0,0;1/2,1/2]; a2=1; K(1)=h*f(x,y); K(2)=(x+h/2-y-K(1)/2)/(1/h-1/2) y1=y+(K(1)+a2*K(2)) printf('\ny(1.1) = %.9f\n\n',y1)
ade367cc6ce3fe812160f79c1b1128d9c50874e7
449d555969bfd7befe906877abab098c6e63a0e8
/3535/CH6/EX6.1/Ex6_1.sce
51aa281b2b91f0503603a31fd15266e9eb2dc7e3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
330
sce
Ex6_1.sce
//Chapter 6, Example 6.1, Page 142 clc clear // Minimum Kinetic energy Q = [1.311 -0.6259 -0.1582] //Q in MeV of all the reactions Ex = [1.994 2.11 0.1695] KE = Q+Ex printf("Kinetic Energy for 13C(d,t)12C = %f \n",KE(1)) printf(" Kinetic Energy for 14C(p,n)14N = %f \n",KE(2)) printf(" Kinetic Energy for 14C(n,a)11B = %f",KE(3))
19e6c7346ddaef02a55dacdb72b80beed05986ee
449d555969bfd7befe906877abab098c6e63a0e8
/2606/CH5/EX5.18/ex5_18.sce
1671189ed59c87242716c48961fc22e847b2a143
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
366
sce
ex5_18.sce
//Page Number: 5.31 //Example 5.18 clc; //Given, SbyN=40; //db SbyN0=10^(SbyN/10); //As sbyn=3L^2/2 L=sqrt((2*(SbyN0))/3); LL=round(L); n=(log2(LL)); nn=(round(n))+1; //Upper limit disp(nn,'Binary digits'); LL=2^nn; disp(LL,'Number of levels'); //As SQN= 1.76+6.02(n) SQN= 1.76+6.02*(nn); disp('dB',SQN,'Signal to quantizin ratio');
3521f1c7722766106041c7f0714f4de99da3fc22
449d555969bfd7befe906877abab098c6e63a0e8
/1820/CH9/EX9.14/Example9_14.sce
6fe7597fc5938e1ee07f1eada8267809f36532f8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,493
sce
Example9_14.sce
// ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN // TURAN GONEN // CRC PRESS // SECOND EDITION // CHAPTER : 9 : SYMMETRICAL COMPONENTS AND FAULT ANALYSIS // EXAMPLE : 9.14 : clear ; clc ; close ; // Clear the work space and console // GIVEN DATA VG_1 = 1*exp(%i*0*%pi/180) ; VG_2 = 1*exp(%i*0*%pi/180) ; // CALCULATIONS // For case (a) I_1 = 1*exp(%i*0*%pi/180) ; I_2 = 1*exp(%i*0*%pi/180) ; V_1 = 0.4522*exp(%i*90*%pi/180) ; V_2 = 0.4782*exp(%i*90*%pi/180) ; Y_11 = I_1/V_1 ; // When V_2 = 0 Y_21 = (-0.1087)*Y_11 ; // When V_2 = 0 Y_22 = I_2/V_2 ; // When V_1 = 0 Y_12 = Y_21 ; Y = [Y_11 Y_12 ; Y_21 Y_22] ; // Admittance matrix associated with positive-sequence n/w // For case (b) I_S1_12 = 2.0193*exp(%i*90*%pi/180) ; // Short-ckt F & F' to neutral & by superposition theorem I_S1_10 = 0.2884*exp(%i*90*%pi/180) ; // Short-ckt F & F' to neutral & by superposition theorem I_S2_12 = 0.4326*exp(%i*90*%pi/180) ; I_S2_10 = 1.4904*exp(%i*90*%pi/180) ; I_S1 = I_S1_12 + I_S1_10 ; I_S2 = I_S2_12 + I_S2_10 ; // DISPLAY RESULTS disp("EXAMPLE : 9.14 :SOLUTION :-") ; printf("\n (a) Admittance matrix associated with positive-sequence network , Y = \n") ; disp(Y) ; printf("\n (b) Source currents Two-port Thevenin equivalent positive sequence network are , \n") ; printf("\n I_S1 = %.4f<%.f pu ",abs(I_S1),atand( imag(I_S1),real(I_S1) )) ; printf("\n I_S2 = %.4f<%.f pu \n",abs(I_S2),atand( imag(I_S2),real(I_S2) )) ;
7dd9866e7215a7847ab6c90bf015438285777de0
449d555969bfd7befe906877abab098c6e63a0e8
/2144/CH3/EX3.17/ex3_17.sce
217ad8acdf96ceeafd3e3d6dc839956a71c87b5b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
393
sce
ex3_17.sce
// Exa 3.17 clc; clear; close; // Given data C_V = 2.174;// in kJ/kg-K R = 0.5196;// in kJ/kg-K C_P = C_V+R;// in kJ/kg-K V2 = 1;// in m^3 V1 = 8;// in m^3 P1 = 0.7;// in bar P2 = 7;// in bar del_U = C_P * (log(V2/V1)) + C_V * (log(P2/P1));// in kJ/kg-K m = 0.9;// in kg del_U = m * del_U;// in kJ/K disp(del_U,"Change in entropy in kJ/K is"); disp("It is a loss of entropy")
5620cdf3af9a23e65c9299f90d4ee144bd6e9e94
fdc5047b7bf8122bad1e621df236b0481226c36e
/virtualHartSci/macros/bdVpcDelete_Samuel.sci
1001fc59f1191a49d4e35cb063cd23072925c35e
[]
no_license
jpbevila/virtualHartSci
aea3c6ba23d054670eb193f441ea7de982b531cc
a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5
refs/heads/main
2023-07-26T23:05:28.044194
2021-09-09T11:50:59
2021-09-09T11:50:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,633
sci
bdVpcDelete_Samuel.sci
function bdVpcDelete(elementoType, elementoId, varargin) global hrtConfig doc = hrtConfig.Process; select elementoType case 'Process' if type(elementoId) == 10 then //Se string: elementoId=processName xp = xmlXPath(doc,'child::*/child::'+elementoId); xmlRemove(xp); else for i=1:doc.root.children.size xmlRemove(doc.root.children(i)... .children(elementoId+2)); end end case 'Disp' if type(elementoId) == 10 then //Se string: elementoId=processName e varargin(1)=dispName xp = xmlXPath(doc, '//'+elementoId+'/'+varargin(1)); xmlRemove(xp); else if argn(2) > 2 then selectedProcess = varargin(1), else selectedProcess = hrtConfig.selectedProcess, end; for i=1:hrtConfig.Process.root.children.size xmlRemove(doc.root.children(i)... .children(selectedProcess+2)... .children(elementoId)); end end case 'var' if type(elementoId) == 10 then //Se string: elementoId=varName xp = xmlXPath(doc, '/root/'+elementoId); else elementoName = doc.root.children(elementoId).name; xp = xmlXPath(doc, '/root/'+elementoName); end xmlRemove(xp); else disp('bdVpcInsert - Opção não Encontrada!!'); end endfunction
013ca599566623aa12d4b09253f7b7d0562423eb
449d555969bfd7befe906877abab098c6e63a0e8
/1322/CH17/EX17.6/144ex1.sce
597d770fb76f4689ed687978b472beea79ba3a6c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
310
sce
144ex1.sce
//5*x^2+9*x-2=0 clear; clc; close; x=poly(0,'x'); y=5*x^2+9*x-2; a=5;b=9;c=-2;//from equation we get these values //using the formula - solution of quadratic equation ax^2+bx+c=0 x=(-b+sqrt(b^2-4*a*c))/(2*a); mprintf("\t x=%f \n \n or ",x) x=(-b-sqrt(b^2-4*a*c))/(2*a); mprintf(" x=%f",x)
a39362ea3b84f608c3a75a4b1d3f6bed7196573f
449d555969bfd7befe906877abab098c6e63a0e8
/2138/CH4/EX4.12.a/EX_4_12_a.sce
dbc5a38b9e9a360c1395fe4d0fae230cb9f62c3e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
770
sce
EX_4_12_a.sce
//Example 4.12.a: BHP of the motor clc; clear; close;n=80;//efficiency l=7.5;//load in tonnes h=135;//height in meters c=0.5;//cge weight in tonnes b=3;//balance weight in tonnes td=90;//time in seconds onet=1000;// in kg onehp=746;//watt wl=l+c-b;//weight lifted during upward journey in tonnes wld=b-c;//weight lifted during downward journey in tonnes wdu=(wl*10^3*h*60)/td;//work done by the lift per minute during upward journey wdd=(wld*10^3*h*60)/td;//work done by the lift per minute during downward journey mou=wdu/4500;// in hp miu=(mou*100*746)/(n*1000);// input of motor in kW mod=wdd/4500;// in hp mid=(mod*100*746)/(n*1000);// input of motor in kW disp(mou,"BHP of the motor in upward journey in hp") disp(mod,"BHP of the motor in downward journey in hp")
fc993f5aee15c2f082e8c2f69c2e528a7ec650f8
449d555969bfd7befe906877abab098c6e63a0e8
/3764/CH4/EX4.03/Ex4_03.sce
adbd866c4c4aeac6b630e64de709168259c35320
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,435
sce
Ex4_03.sce
clc // //Variable declaration Es=29*((10**6)) // Modulus of rigidity(psi) Eb=15*((10**6))*(1.0) // Modulus of rigidity(psi) M=40 // Bending moment(kip.in) h=3 // Height(3) b=2.25 // Breadth(in) c=1.5 // Distance(in) //Calculation n=Es/Eb // Ratio W=0.75*n // width(in) I=(1/12.0)*(b)*((h)**3) // Moment of inertia of the transformed section(in**4) Sm=(M*c)/(I) // Maximum stress in the transformed section(ksi) Sbrass=Sm // Maximum stress in brass portion(ksi) Ssteel=1.933*(Sbrass) // Maximum stress in steel portion(ksi) // Result printf("\n Maximum stress in brass portion = %0.3f ksi' ,Sbrass) printf("\n Maximum stress in steel portion = %0.3f ksi' ,Ssteel)
a6b87baa23a64c7fbe302616f6d6a18808e13619
449d555969bfd7befe906877abab098c6e63a0e8
/1217/CH4/EX4.8/Exa4_8.sce
6405e3f6582027a3a2344467bbf12282d1c377b4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
192
sce
Exa4_8.sce
//Exa 4.9 clc; clear; close; // given data R1=10;//in Kohm R4=8;//in Kohm R5=3;//in Kohm RF=45;//in Kohm AD=(1+2*R4/R5)*(RF/R1); disp(AD,"Gain for the instrumention amplifier is : ")
dafa14c80d4e6472959ef1342bf393ec38f78a04
449d555969bfd7befe906877abab098c6e63a0e8
/1673/CH3/EX3.13/3_13.sce
c853a53397d65ab89c1979ee6412865cf2514bba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
360
sce
3_13.sce
//example 3.13 //lagrange's interpolation formula //page 104 clc;clear;close; x=[300 304 305 307]; y=[2.4771 2.4829 2.4843 2.4871]; x0=301; log_301=0; poly(0,'x'); for i=1:4 p=y(i); for j=1:4 if i~=j then p=p*((x0-x(j) )/( x(i)-x(j))) end end log_301=log_301+p; end disp(log_301,'log_301=');
614dc227239290630b22aad848d32746a7fc07b2
717ddeb7e700373742c617a95e25a2376565112c
/587/CH4/EX4.6/example4_6.sce
8b01c98e99ceae544f00490c6fe710894cdc9bda
[]
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
871
sce
example4_6.sce
clear; clc; //Example4.6[Minimum Burial Depth of Water Pipes to avoid Freezing] //Given:- //Soil properties:- k=0.4;//Thermal conductivity[W/m.degree Celcius] a=0.15*(10^(-6));//Thermal diffusivity[m^2/s] T_in=15;//Initial uniform temperature of ground[degree Celcius] T_x=0;//Temperature after 3 months[degree Celcius] Ts=-10;//Temperature of surface[degree Celcius] //Solution:- //The temperature of the soil surrounding the pipes wil be 0 degree Celcius after three months in the case of minimum burial depth, therefore we have x=(h/k)*(sqrt(a*t)); //Since h tends to infinty x=%inf; y=(T_x-T_in)/(Ts-T_in); //For values of x and y we have neta=0.36; t=90*24*60*60;//[seconds] x=2*neta*sqrt(a*t);//[m] disp("m",x,"Water pipes must be burried to a depth of at least ") disp("so as to avoid freezing under the specified harsh winter conditions")
1131d81da712f6a752be0c7a70edcd346e1ce45b
c455d9355be561575bc0db496db1c3b066adabdd
/function.sci
1b9309e2ab702e449c52135195b1cb3080a0e86f
[]
no_license
sonu488/hello-india
dd88c73d7adc93c26b57b3561e892a4dc62930d3
9601906d20b75bf0bfc1386dbf0033a1a755d5d5
refs/heads/master
2020-08-05T22:30:15.076451
2019-10-04T05:14:05
2019-10-04T05:14:05
212,735,377
0
0
null
null
null
null
UTF-8
Scilab
false
false
92
sci
function.sci
function fibbo(n) n1=0; n2=1; fori=1;n n3=n1+n2; n2=n3; disp(n3) end end function fibbo(10)
3e1b2aee88004978d276ab91dd96494ae41773f9
449d555969bfd7befe906877abab098c6e63a0e8
/671/CH5/EX5.3/5_3.sce
f6ae6d5f7e937e9c687a3bb0af073776619c1b1f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
139
sce
5_3.sce
R=5 C=0.08E-6 L=5E-3 w0=1/sqrt(L*C) f0=w0/2/%pi Q0=w0*L/R bandwidth=w0/Q0 wb=bandwidth w=[w0-1/2*wb,w0+1/2*wb] disp(w(2),w(1))
ef9e8d7e9c2d56d249aa1e0d8b53ff96017436f3
449d555969bfd7befe906877abab098c6e63a0e8
/2882/CH6/EX6.13/Ex6_13.sce
82394ffd8f530bf0444bb8f681235c1c46ffcbce
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
548
sce
Ex6_13.sce
//Tested on Windows 7 Ultimate 32-bit //Chapter 6 Single Staje BJT Amplifiers Pg no. 207 clear; clc; //Given Data //Figure 6.31 VCC=18;//collector supply voltage in volts RB=3.9D6;//base resistance in ohms RE=470;//emitter resistance in ohms VBE=1.6;//forward voltage drop of emitter diode of darlington pair in volts Bac=10000;//DC current gain beta for darlington pair ri=6D3;//emitter diode forward resistance //Solution Zin=1/(1/RB+1/(ri+Bac*RE));//input impedance of the circuit printf("Zin = %.3f Mega-ohms",Zin/10^6);
0ecd6085b80045055b8c83d1ded693d4fe69f668
08ee8059476493a308f8e13adcbace48d7bcfc92
/Scilab_packetTracer_codes/dc/hamming.sce
41c8076b955c734ce61c335b68e4a63d0ab1b4e2
[]
no_license
Rushi-Bhatt/Self-Study
7ed44b7821154b7906c7d532255ea648ec9d6299
90cc75440328ba21769ffac878f46feadeb2f06f
refs/heads/master
2021-01-11T15:29:31.739065
2017-02-08T22:17:57
2017-02-08T22:17:57
80,360,471
0
0
null
null
null
null
UTF-8
Scilab
false
false
980
sce
hamming.sce
//Hamming Encoding //Code Word Length = 7, Message Word length = 4, Parity bits =3 clear(); close; clc; //Getting Message Word m3 = input('Enter the 1 bit(MSb) of message word: '); m2 = input('Enter the 2 bit of message word: '); m1 = input('Enter the 3 bit of message word: '); m0 = input('Enter the 4 bit(LSb) of message word: '); //Generating Parity bits b2 = bitxor(m1,bitxor(m3,m2)); b1 = bitxor(m0,bitxor(m3,m2)); b0 = bitxor(m0,bitxor(m1,m3)); m = [m3 m2 m1 m0]; b = [b2 b1 b0]; C = [m3 m2 m1 b2 m0 b1 b0]; disp('DISPLAY SECTION') disp(m,'Message Word') disp(b,'Parity Bits') disp(C,'CodeWord') disp(" "); disp(" "); disp('Enter the Recieved code') for i=7:-1:1 d(i,:)=input('Enter:'); end d0=bitxor(d(5),bitxor(d(7),bitxor(d(3),d(1)))) d1=bitxor(d(7),bitxor(d(6),bitxor(d(3),d(2)))) d2=bitxor(d(7),bitxor(d(6),bitxor(d(5),d(4)))) if(d0==0 & d1==0 & d2==0) disp('NO ERROR'); else disp('ERROR DETECTED'); end disp(d0,d1,d2)
7b32794a098ff55fbcbc6691c51d4649eb8fc3e6
449d555969bfd7befe906877abab098c6e63a0e8
/2096/CH6/EX6.7/EX_6_7.sce
61fafa157b9afeff040cbd52bb4858f9b5405161
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,046
sce
EX_6_7.sce
//Example 6.7// ratio clc; clear; Is=5;//in amperes Ns=200;//no. of secondary turns f=50;//frequency in hertz Np=1;//no. of primary turns Iw=5;//in amperes Im=8;//amperss Kt=Ns/Np;//turn ratio csd1=0.8;// sd1= sqrt(1-csd1^2);// Kact1= Kt+((Im*sd1)+(Iw*csd1))/Is;//actual ratio when 0.8 p.f. lagging Re1= ((Kt-Kact1)/Kact1)*100;//ratio error in percentage when 0.8 p.f. lagging Pa1=((180/%pi)*(Im*csd1-Iw*sd1))/(Kt*Is);//phase angle in degree when 0.8 pf lagging csd2=0.8;// sd2=-0.6;// Kact2= Kt+((Im*sd2)+(Iw*csd2))/Is;//actual ratio when 0.8 p.f. leading Re2= ((Kt-Kact2)/Kact2)*100;//ratio error in percentage when 0.8 p.f. leading Pa2=((180/%pi)*(Im*csd2-Iw*sd2))/(Kt*Is);//phase angle in degree when 0.8 pf leading disp(Kact1,"actual ratio when 0.8 p.f. lagging") disp(Re1,"percentage ratio error when 0.8 p.f. lagging") disp(Pa1,"phase angle when 0.8 p.f. lagging in degree ") disp(Kact2,"actual ratio when 0.8 p.f. leading") disp(Re2,"percentage ratio error when 0.8 p.f. leading") disp(Pa2,"phase angle when 0.8 p.f. leading in degree")
0fb4d9150ff2e746fabcbc18a1007b1489b81e51
449d555969bfd7befe906877abab098c6e63a0e8
/2075/CH6/EX6.9/pe6_9.sce
bca009c6785930b3bdbbeb467ce82db4f4710e67
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
818
sce
pe6_9.sce
//example 6.9 clc; funcprot(0); // Initialization of Variable Rl=12;//load resistance V1=.8;//voltage V2=2.4;//voltage D=.8;//duty cycle Tj=150;//degreeC Ta=40;//degreeC Vd=28; Vo=.7; I=40;//mA; //calculation k=(Vd-Vo)/I; disp(round(k*1000),"R1+R2 in ohm:") printf('pick R1=330ohm & R2=360ohm as they divide Vd setting 8V<Vg<18V') R1=330; R2=360; Vn1=28; disp(Vn1,"node voltage for V1 in V:") Vn2=.7; disp(Vn2,"node voltage for V2 in V:") Vg=R2*Vd/(R1+R2)+Vn2; disp(Vg,"gate voltage in V:") Vgs=Vg-Vd; disp(Vgs,"gate & source diff in V:") Vl=Vd*Rl/(Rl+.57); disp(Vl,"load voltage in V:") Il=Vl/Rl; disp(Il,"load current in A:") Pl=D*Vl*Il; disp(Pl,"load power in W:") Vq=Il*.57; Pq=D*Vq*Il; disp(Pq,"Pq in W:") Q=(Tj-Ta)/Pq-3.7; disp(Q,"thermal resistance in degreeC/W:") clear()
d2c3b111748838ef452c2139963370375fcb14cc
449d555969bfd7befe906877abab098c6e63a0e8
/213/CH2/EX2.5/2_5.sce
560a71a0c772fea632a1d03cd6b6cc68bb457aff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
618
sce
2_5.sce
//To Find the Maximum Cutting Speed clc //Given: s=500,s1=125,s2=250,s3=125 //mm t=1 //second //Solution: //Matrices for the velocity vs. time graph V=[0,750,750,0] //The velocity matrix T=[0,1/3,2/3,1] //The time matrix plot2d(T,V) //Calculating the time of uniform acceleration t1=rdivf('s1','v/2') //Calculating the time of constant speed t2=rdivf('s2','v') //Calculating the time of uniform retardation t3=rdivf('s3','v/2') //Equating the time taken to complete the stroke to 1 second v=(125/(1/2)+250/1+125/(1/2))/1 //mm/s //Results: printf("\n\n The maximum cutting speed, v = %d mm/s.\n\n",v)
b2ec32e910a1fd36bf456bc225bb924fdd373e00
449d555969bfd7befe906877abab098c6e63a0e8
/2708/CH1/EX1.28/ex_1_28.sce
e78d6550ee65505eafb9fb0a4bd77f368b811604
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
321
sce
ex_1_28.sce
//Example 1.28 // thickness of flim clc; clear; //given data : w=589D-9;//wavelength of light used in m u=1.45;// refractive index of medium between lens and plate n=6.5;// fringes shifted t=n*w/(2*(u-1));// thickness of flim in m t=t*1D9;//to convert in nano meter disp(t,"thickness of flim in nm(nanometer)")
9f6173037da8ec8dcf230baf2e149be50496fe00
449d555969bfd7befe906877abab098c6e63a0e8
/503/CH12/EX12.3/ch12_3.sci
11934ceddbba816d8e9b5cc53b3b64cb38231d76
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
150
sci
ch12_3.sci
//calculate value of commutating capacitor clc; Iamax=100; V=100; f_max=400; c=Iamax/(2*V*f_max); disp(c,'value of commutating capacitor(F)');
a8e98d3cf5ff21ccc294c5b413b06437e8e7b98b
449d555969bfd7befe906877abab098c6e63a0e8
/3648/CH17/EX17.13/Ex17_13.sce
28898f7137cd4b00457eba1142295b380cb98953
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
375
sce
Ex17_13.sce
//Example 17_13 clc(); clear; //To find the values of e, R and I i1=2 //Units in A i2=0.5 //Units in A i=i1+i2 //Units in A v1=6 //Units in V v2=16 //Units in V r=-(v1-v2)/0.5 //Units in Ohms v3=25 //Units in V e=v2+v3 //Units in V printf("The current I=%.1f A\n Resistance is R=%d Ohms\n The value E is=%d V",i,r,e)
c622f7af3d2374e11646bd26448ee34d3a7c7b00
196b2eed5c6924840430d5d54aa66e47033e21c7
/Starterkit/Scripts/Templates/EnumerationTemplate.tst
ae104b396df88f24e829cae7573d444adf4bc829
[ "MIT" ]
permissive
boedlen/ultimate-dotnet-core-starterkit
e6e214782a5c4d872861ff36d39fe8a86e44789e
b808eae4c5ca38c28abb97722fe4d963b8f9d04a
refs/heads/master
2021-07-18T14:03:01.013745
2017-10-24T20:04:56
2017-10-24T20:04:56
108,170,257
0
0
null
null
null
null
UTF-8
Scilab
false
false
671
tst
EnumerationTemplate.tst
${ // Enable extension methods by adding using Typewriter.Extensions.* using Typewriter.Extensions.Types; } ${//The do not modify block below is intended for the outputed typescript files... } //*************************DO NOT MODIFY************************* // //THESE FILES ARE AUTOGENERATED WITH TYPEWRITER AND ANY MODIFICATIONS MADE HERE WILL BE LOST //PLEASE VISIT http://frhagn.github.io/Typewriter/ TO LEARN MORE ABOUT THIS VISUAL STUDIO EXTENSION // //*************************DO NOT MODIFY************************* module TypeWriter.Templates { $Enums(*)[ export enum $Name {$Values[ $Name = $Value,] } ] }
1ea612bf449604802a314be87ce748908f9b553f
449d555969bfd7befe906877abab098c6e63a0e8
/135/CH3/EX3.15/EX15.sce
3700cbb13a9a7c661099512149273e908daaf907
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
509
sce
EX15.sce
// Example 3.15: (a) Series resistance // (b) Power dissipation rating of zener diode clc, clear // In Fig. 3.38 Vz=6; // in volts ILmin=0; ILmax=0.5; // in amperes Vmin=8; // in volts Vmax=10; // in volts Izmin=0; disp("Part (a)"); Rs=(Vmin-Vz)/(ILmax+Izmin); // Series resistance in ohms disp(Rs,"Series resistance (Ω) ="); disp("Part (b)"); Izmax=((Vmax-Vz)/Rs)-ILmin; // in amperes Pzmax=Vz*Izmax; // in watts disp(Pzmax,"Power dissipation rating of zener diode (W) =");
e1fbc2473ea942427e57b0a44bfafc3791267ad5
b29e9715ab76b6f89609c32edd36f81a0dcf6a39
/ketpic2escifiles6/Reflectdata.sci
837a5727e2084d2a3e261e8a94c67422d80a3fa9
[]
no_license
ketpic/ketcindy-scilab-support
e1646488aa840f86c198818ea518c24a66b71f81
3df21192d25809ce980cd036a5ef9f97b53aa918
refs/heads/master
2021-05-11T11:40:49.725978
2018-01-16T14:02:21
2018-01-16T14:02:21
117,643,554
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,022
sci
Reflectdata.sci
// 08.05.25 Koshikawa // 08.09.20 // 15.04.12 function OutL=Reflectdata(varargin) Nargs=length(varargin) ML=varargin(1); ML=Flattenlist(ML); if Nargs==1 PtA=[0,0];PtB=PtA; else Pts=varargin(2); if length(Pts)==2 PtA=Pts; PtB=PtA; else PtA=Pts(1,1:2); PtB=Pts(1,3:4); end end OutL=[]; for N=1:length(ML) GL=Op(N,ML); Out=[]; for I=1:size(GL,1) Tmp=GL(I,:); X1=Tmp(1); Y1=Tmp(2); if Tmp==[%inf,%inf] X2=X1; Y2=Y1; else if PtA==PtB X2=2*PtA(1)-X1; Y2=2*PtA(2)-Y1; else U=PtB(1)-PtA(1); V=PtB(2)-PtA(2); A=PtA(1); B=PtA(2); X2=(U^2-V^2)/(U^2+V^2)*X1+2*U*V/(U^2+V^2)*Y1-2*V*(U*B-V*A)/(U^2+V^2); Y2=2*U*V/(U^2+V^2)*X1-(U^2-V^2)/(U^2+V^2)*Y1+2*U*(U*B-V*A)/(U^2+V^2); end end Out=[Out;X2,Y2]; end; OutL=Mixadd(OutL,Out); end; if length(OutL)==1 OutL=Op(1,OutL); end; endfunction;
958bd5050c4701a8bbe10b42c3568285b5539f76
717ddeb7e700373742c617a95e25a2376565112c
/1472/CH16/EX16.2/16_2.sce
b9336080e8800f393071804ba1b82b85fd4754a4
[]
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
299
sce
16_2.sce
clc //initialization of varaibles e=0.75 Ta=870 //R Tc=1075//R cp=0.24 Td=550 //R //calculations Tadash=e*(Tc-Ta) +Ta Tcdash=Tc+Ta-Tadash Q1=cp*(Tb-Tadash) Q2=cp*(Tcdash-Td) Wnet=Q1-Q2 eta=Wnet/Q1 //results printf("Net work done = %d B/lb",Wnet) printf("\n efficiency = %.2f ",eta)
6ab29c624b75c0ba885610175136bd7e9c03bde9
449d555969bfd7befe906877abab098c6e63a0e8
/2882/CH3/EX3.19/Ex3_19.sce
f5d51a8425a2ebe6e0c9fc9ff9886d3fca894d31
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
651
sce
Ex3_19.sce
//Tested on Windows 7 Ultimate 32-bit //Chapter 3 Semiconductor Diodes and Miscellaneous Devices Pg no. 102 clear; clc; //Given Data Vz=18;//zener breakdown voltage in volts Izmax=60;//maximum safe current through diode in milli-amperes R=150;//series resistance in ohms Rl=1D3;//load resistance in ohms //Solution Vinmin=((Rl+R)/Rl)*Vz;//minimum value of input voltage Iload=Vz/Rl*1000;//load current in milli-amperes Imax=Izmax+Iload;//maximum current through battery in milli-amperes Vinmax=Vz+Imax/1000*R;//maximum value of input voltage printf("So the input voltage ranges from %.1f volts to %.1f volts",Vinmin,Vinmax);
09ee4aeddbbf729d0592c315bd4fedfb1d753cfd
449d555969bfd7befe906877abab098c6e63a0e8
/1247/CH5/EX5.52/example5_52.sce
7521fe4bc382f2d76ec62a23c25c5f8bb5960427
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
462
sce
example5_52.sce
clear; clc; // Stoichiometry // Chapter 5 // Energy Balances // Example 5.52 // Page 306 printf("Example 5.52, Page 306 \n \n"); // solution // basis 1000 kg of mixed acid C11 = 2.45 H1 = -296.7+C11*(308.15-273.15) C12 = 2.2 H2 = -87.8+C12*(308.15-273.15) C13 = 1.45 H3 = -35.5+C13*(308.15-273.15) C14 = 1.8 H4 = -148.9+C14*(308.15-273.15) Hmix = 1000*H4-[76.3*H1+345.9*H2+577.7*H3] printf(" Heat of mixing = "+string(Hmix)+" kJ.")
69f9ab62e5c7e716619997a92a9530bb5a1f6c9b
449d555969bfd7befe906877abab098c6e63a0e8
/1016/CH7/EX7.1/ex7_1.sce
1fbf8dc39ada46c007cd311fdc2cd511f3b95868
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
135
sce
ex7_1.sce
clc;clear; //Example 7.1 //given data W=11000;//wavelength in angrstrom //calcuations Eg=W/12400; disp(Eg,'Energy Gap in eV')
a0ca92b5b07952757c43139234728e273452467c
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH29/EX29.10/Ex29_10.sce
06bc690f683fe502f61a9ced0624fd1dadcf5159
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
211
sce
Ex29_10.sce
clc; //e.g 29.10 R1=6.8*10**3; R2=4.7*10**3; C1=1000*10**-12; t2=0.7*R2*C1; disp('microS',t2*10**6,"t2="); t1=0.7*(R1+R2)*C1; disp('microS',t1*10**6,"t1="); dc=(t1/(t1+t2))*100; disp('%',dc*1,"dc=");
c1d39585f4f58cbf06075475c536434969760418
449d555969bfd7befe906877abab098c6e63a0e8
/1595/CH13/EX13.5/ex13_5.sce
71f9f728944f13154d109170b5c743debcceaf59
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
398
sce
ex13_5.sce
//Wave Propagation : example 13-5 : (pg 652 & 653) d=41.130383*10^6;//distance c=2.997925*10^8;//velocity of light f=14.25*10^9;//uplink frequency h=c/f;//wavelength x=(4*%pi*d)/h; Lp=20*log10(x);//free-space path loss printf("\nThe wavelength is calculated by, \nh=c/f = %.6f",h); printf("\nThe free-space path loss(Lp) expressed in dB"); printf("\nLp(dB)= 20log(4.pi.d/h) = %.3f dB",Lp);
b3b15a3beb7ec0496689f59a48deee0b7c59e767
449d555969bfd7befe906877abab098c6e63a0e8
/3472/CH25/EX25.9/Example25_9.sce
1ec686ae2cce9f5abffbf5db9dc54e88ec46bec9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,988
sce
Example25_9.sce
// A Texbook on POWER SYSTEM ENGINEERING // A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar // DHANPAT RAI & Co. // SECOND EDITION // PART II : TRANSMISSION AND DISTRIBUTION // CHAPTER 18: POWER DISTRIBUTION SYSTEMS // EXAMPLE : 18.9 : // Page number 444 clear ; clc ; close ; // Clear the work space and console // Given data V_a = 11.0*10**3 // Line voltage at A(V) Z_AB = complex(1.0,0.8) // Impedance between A & B(ohm) Z_AC = complex(3.0,2.0) // Impedance between A & C(ohm) Z_BD = complex(3.0,4.0) // Impedance between B & D(ohm) Z_CD = complex(1.0,0.7) // Impedance between C & D(ohm) I_B = 60.0 // Current at B(A) I_C = 30.0 // Current at C(A) I_D = 50.0 // Current at D(A) pf_B = 0.8 // Power factor at B pf_C = 0.9 // Power factor at C pf_D = 0.707 // Power factor at D // Calculations sin_phi_B = (1-pf_B**2)**0.5 I_B1 = I_B*(pf_B-%i*sin_phi_B) // Load current(A) sin_phi_C = (1-pf_C**2)**0.5 I_C1 = I_C*(pf_C-%i*sin_phi_C) // Load current(A) sin_phi_D = (1-pf_D**2)**0.5 I_D1 = I_D*(pf_D-%i*sin_phi_D) // Load current(A) V_A = V_a/3**0.5 // Phase voltage at A(V) I_AC = I_C1 // Current in section AC when C & D is removed(A) I_BD = I_D1 // Current in section BD when C & D is removed(A) I_AB = I_B1+I_D1 // Current in section AB when C & D is removed(A) V_AC_drop = I_AC*Z_AC // Voltage drop at section AC(V) V_AB_drop = I_AB*Z_AB // Voltage drop at section AB(V) V_BD_drop = I_BD*Z_BD // Voltage drop at section BD(V) V_drop_D = V_BD_drop+V_AB_drop // Total drop upto D(V) pd_CD = V_drop_D-V_AC_drop // Potential difference between C & D(V) Z_C_D = Z_AB+Z_BD+Z_AC // Impedance of network looking from terminal C & D(ohm) I_CD = pd_CD/(Z_C_D+Z_CD) // Current flowing in section CD(A) I_AC = I_CD+I_C1 // Current flowing in section AC(A) I_BD = I_D1-I_CD // Current flowing in section BD(A) I_AB = I_BD+I_B1 // Current flowing in section AB(A) V_drop_AC = I_AC*Z_AC // Drop caused by current flowing in section AC(V/phase) V_drop_AC_line = V_drop_AC*3**0.5 // Drop caused by current flowing in section AC(V) V_C = V_a-V_drop_AC_line // Voltage at C(V) // Results disp("PART II - EXAMPLE : 18.9 : SOLUTION :-") printf("\nCurrent in section CD, I_CD = (%.2f%.2fj) A", real(I_CD),imag(I_CD)) printf("\nCurrent in section AC, I_AC = (%.2f%.2fj) A", real(I_AC),imag(I_AC)) printf("\nCurrent in section BD, I_BD = (%.2f%.2fj) A", real(I_BD),imag(I_BD)) printf("\nCurrent in section AB, I_AB = (%.2f%.2fj) A", real(I_AB),imag(I_AB)) printf("\nVoltage at load point C = %.2f∠%.2f° kV", abs(V_C)/1000,phasemag(V_C))
b7d1a6f5a40ec9b7111e86ba1b05b8ca28e56a2e
449d555969bfd7befe906877abab098c6e63a0e8
/2175/CH4/EX4.15/4_15.sce
ac0cbb2ec8aa78ef219d14209d1882e706a18acd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
227
sce
4_15.sce
clc; cp=6.3; h2=70; h1=15; T0=283;//K T1=343;//K T2=288;//K T3=1400+273;//K s2_s1=cp*log(T1/T2); b2_b1=cp*(h2-h1)-T0*(s2_s1); loss=cp*(h2-h1)*(1-T0/T3) eff=b2_b1/loss disp("effectiveness is:") disp("%",eff*100)
372d6776c79f3a4dd062f7d1b80c6dc7ad702c72
449d555969bfd7befe906877abab098c6e63a0e8
/2873/CH3/EX3.13/Ex3_13.sce
8d9d8df85541e010f1d221e1f1df58000fb3292b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
627
sce
Ex3_13.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Engineering Thermodynamics by Onkar Singh Chapter 3 Example 13") Qadd=5000;//heat supplied in boiler in J/s disp("work done by turbine(Wt)in J/s is 25% of heat added i.e") disp("Wt=.25*Qadd") Wt=.25*Qadd disp("heat rejected by condensor(Qrejected)in J/s is 75% of head added i.e") disp("Qrejected=.75*Qadd") Qrejected=.75*Qadd disp("and feed water pump work(Wp)in J/s is 0.2% of heat added i.e") disp("Wp=(-)0.002*Qadd") Wp=0.002*Qadd disp("capacity of generator(W)=(Wt-Wp)/1000 in Kw") W=(Wt-Wp)/1000
84aa0a3094cf0b5542a4a732f419ac1bde3844a4
449d555969bfd7befe906877abab098c6e63a0e8
/833/CH2/EX2.6/Ex2_6.txt
dde90ce876497c3cd616a7c537e8248d2a260914
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
712
txt
Ex2_6.txt
//Caption:Find voltage for h.v voltage side on full load at 0.8 power factor lagging when secondary terminal voltage is 240 volts //Exa:2.6 clc; clear; close; P_s=100000//Supplied power(in VA) V_1=6600//Primary side voltage(in volt) V_2=240//Secondary side voltage(in volt) f=50//frequency(in hertz) I_sh=5//short circuit test current(in A) P_sh=109//short circuit test power(in watt) V_sh=50//short circuit test voltage(in volt) pf=0.8//Power factor Z=V_sh/I_sh R=P_sh/(I_sh^2) X=sqrt(Z^2-R^2) I_l=P_s/V_1 Re=(I_l*R*pf)+(I_l*X*sind(acosd(pf))) V_r=Re+V_1 disp(V_r,'Voltage for high voltage side on full load at 0.8 power factor lagging when secondary terminal voltage is 240 volts(in volt)=')
99ef2daeacd7c4d89997b886f5718dc43db0887c
c49cfb0568cc47def2bab58998cf7a2745deeb75
/helper.sci
8ed73b528ee06be0b2ae32c5160778df042e1f28
[]
no_license
mirgayazov/Computational-mathematics
7be950e9c54231943912aa8cc0eba9484b8613ee
97eb92557308d51709101ba1922ed2bb39a0e08f
refs/heads/master
2023-05-31T18:16:04.774709
2021-07-08T09:18:58
2021-07-08T09:18:58
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,421
sci
helper.sci
//Функция вывода списка. function print_list(incoming_list) for i=1:size(incoming_list) disp(incoming_list(i)) end disp(stars) endfunction //Функция оформления лабы function my_title(number,theme) mprintf('Лабораторная работа №%i. Тема: %s.\n\n',number,theme) endfunction //Измененная фунцкия disp. function my_disp(varargin) out_str='' for i=1:length(varargin) if string(varargin(i))=='\n' then disp(out_str) out_str='' else out_str=out_str+string(varargin(i)) end end //strsubst(out_str,'!','') disp(out_str) endfunction //Измененная фунцкия disp. function my_task_title(number,theme) mprintf(' Задание %i. %s.\n',number,theme) endfunction //Остаток от деления. function var = mod(dividend,divider) var=dividend-int(dividend/divider)*divider endfunction //надписи для уравнений вида ax^2+bx+c=0 function code = check_equation(a,b,c) code=0 if a==0 then code=1 end if a==0 & b==0 then code=-1 end endfunction //Звездочки. stars='*********************************************'
313b9fa4bd2322bf7cd666427fccaa25ff032ae7
f7504f79f76645f7f3f70e05ac9b2e319779cdb5
/tests/PSP.tst
fa1cfab14c124452f81742791ed840e1059ea46e
[]
no_license
Zeftax/Test-Me
4ec4acd7c82756dec666af1a59898f30a950ae1d
e5467ba459f12829663bb3493a43f97305627406
refs/heads/master
2020-07-12T11:14:34.339908
2019-10-21T14:47:23
2019-10-21T14:47:23
204,803,337
0
0
null
null
null
null
UTF-8
Scilab
false
false
178
tst
PSP.tst
0.0 H/Vodík He/Helium Li/Lithium Be/Beryllium B/Bor C/Uhlík N/Dusík O/Kyslík F/Fluor Ne/Neon Na/Sodík Mg/Hořčík Al/Hliník Si/Křemík P/Fosfor S/Síra Cl/Chlor Ar/Argon
526c9879e60ac158033ea805083a512e5471a154
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/CreatingPlots/testLabel.sce
c60ef9de941e4c362e6776e0624cac66d6453963
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
96
sce
testLabel.sce
exec('scilab-base-graphique-testtitle.sce',-1) //to delete A.title // Label handle properties
99daa61ad2dd56118ad50d3f74d01d3731296d4e
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH11/EX11.31/example11_31.sce
05f6cf85e637bcf9cf96a23c34d7495bd7939e3f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
460
sce
example11_31.sce
clc // Given that T = 24 // no. of hours in a day v = 1e8 // speed of spaceship in meter/sec // Sample Problem 31 on page no. 11.30 printf("\n # PROBLEM 31 # \n") printf(" Standard formula used \n") printf(" t = t_0/((1-v^2/c^2)^1/2) \n") t = T * (sqrt(1 - (v / 3e8)^2)) T_ = T - t m=(T_-1)*60 s=(m-22)*60 printf("\n Time lost per day is %d hours %d minute %d sec.",T_,m,s) //Answer in the book:1 hr 22 min 12 sec //Answer in the program:1.372583 e+00 hours
fd4ce8ac2f99ce9e82e51db107b245ddf09c2118
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.1.1/Unix/scilab-2.1.1/macros/elem/g_clean.sci
447c9b8be7d6b000843aa2fb9c4e24f8f341cb72
[ "MIT", "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
769
sci
g_clean.sci
function a=g_clean(a,epsa,epsr) //Syntax: [a]=clean(a,epsa,epsr) // Given a, matrix of rationals or a polynomial matrix, this macro // eliminates all the coefficients of a with absolute value < epsa // and realtive value < epsr (relative means realive wrt norm 1 of // the coefficients) // Default values : epsa=1.d-10; epsr=1.d-10; //! [lhs,rhs]=argn(0) if rhs == 1 then epsa=1.d-10; epsr=1.d-10; elseif rhs==2 then epsr=1.d-10; end select type(a) case 1 then a=clean(a,epsa,epsr) case 2 then a=clean(a,epsa,epsr) case 3 then a=clean(a,epsa,epsr) case 15 then if a(1)<>'r' then error(43),end tdom=a(4) a2=clean(a(2),epsa,epsr), a3=clean(a(3),epsa,epsr), a=simp(a2./a3);a(4)=tdom else error('clean: not implemented for this variable type') end
3c36a583f3d7c97fde76d06947976c3ede59126c
449d555969bfd7befe906877abab098c6e63a0e8
/43/CH9/EX9.3/ex9_3.sce
c254d704f7eca736b253f499e2de175a934b3ebe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
640
sce
ex9_3.sce
//Ex 9.3 //FIR Filter close; clc; //Fourier series method //for N=5 N=5; U=3; for n=-2+U:1:2+U if n==3 hd(n)=0.25; else hd(n)=sin(%pi*(n-U)/4)/(%pi*(n-U)); end end [hzm ,fr ]= frmag (hd ,256) ; hzm_dB = 20* log10 (hzm)./ max ( hzm ); plot (2*fr , hzm_dB ) //for N=15 N=15; U=8; for n=-7+U:1:7+U if n==8 hd(n)=0.25; else hd(n)=sin(%pi*(n-U)/4)/(%pi*(n-U)); end end [hzm ,fr ]= frmag (hd ,256) ; hzm_dB = 20* log10 (hzm)./ max ( hzm ); plot (2*fr , hzm_dB ) xlabel('Normalised Frequency w/pi') ylabel('Magnitude') title('Plot of Amplitude response of FIR Filter')
3a4872c8bcde6c26b862b28ec68e76c602928f54
449d555969bfd7befe906877abab098c6e63a0e8
/3888/CH11/EX11.2/Ex11_2.sce
5077e5797fc9c822aeaa63f933c60aa37df291f7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,852
sce
Ex11_2.sce
//Electric Power Generation, Transmission and Distribution by S.N.Singh //Publisher:PHI Learning Private Limited //Year: 2012 ; Edition - 2 //Example 11.2 //Scilab Version : 6.0.0 ; OS : Windows clc; clear; r=0.5; //Resistance of the line in Ohm/km l=5; //Length of the line in km L=1.76; //Inductance of the line in mH/km f=50; //Supply frequency in Hz sen_vtg=33; //Sending end voltage in kV rec_vtg=32; //Receiving end voltage in kV Vs=sen_vtg/(3)^(1/2); //Sending end phase voltage in kV Vr=rec_vtg/(3)^(1/2); //Receiving end phase voltage in kV R=r*l; //Total resistance of line in Ohm X=2*(%pi)*f*L*l*10^(-3); //Total Inductance of line in Ohm pf1=0.8; //Power factor A=X^(2)+R^(2); //Coeffcient of Ir^(2) simlified in quadratic eqn B=2*Vr*(R*pf1+X*sin(acos(pf1))); //Coeffcient of Ir simlified in quadratic eqn C=Vr^(2)-Vs^(2); //Constant simlified in quadratic eqn Ir=(-B+sqrt(B^(2)-4*A*C))/(2*A); //Receiving end current in A reg=((Vs-Vr)/Vr)*100; //Efficiency of the line P=3*Vr*Ir*pf1; //Output power in MW Loss=3*Ir^(2)*R; //Line loss in MW eff=(P/(P+Loss))*100; //Efficiency of the line printf("\nLine current of the transmission line is %.3f kA",Ir); printf("\nRegulation of the transmission line is %.3f percentage ",reg); printf("\nEfficiency of the transmission line is %.2f percentage",eff);
9b3ed4fb1018dea18c328b88b390445a7d77dc7b
449d555969bfd7befe906877abab098c6e63a0e8
/213/CH3/EX3.7/3_7.sce
f804003181ef18974bf9d2a3a5d5288de7520062
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
774
sce
3_7.sce
//To Find the Speed and Energy Lost clc //Given: r=500/1000,k=450/1000 //m m1=500,m2=1250 //kg u=0.75 //m/s //Solution: //Calculating the mass moment of inertia of drum I2=m2*k^2 //kg-m^2 //Calculating the speed of truck //Impulse, F=m1*v or, F-m1*v=0 .....(i) //Moment of impulse, F*r=I2*(omega2-omega2) or, F*r=I2*(u-v)/r or, F*r+I2*v/r=I2*u/r .....(ii) //Solving (i) and (ii) A=[1 -m1; r I2/r] B=[0; I2*u/r] V=A \ B v=V(2) //Calculating the energy lost to the system E=1/2*I2*(u^2-v^2)/r^2-1/2*m1*v^2 //Energy lost to the system, N-m //Results: printf("\n\n The speed of the truck when the motion becomes steady, v = %.3f m/s.\n",v) printf(" The energy lost to the system is %d N-m.\n\n",E)
2fe6a3126dff77033409a81668d6afc35bc1a26a
449d555969bfd7befe906877abab098c6e63a0e8
/3731/CH4/EX4.5/Ex4_5.sce
98e1856d5cdf1397eaa1ce9e58d73e2fa0ebaeb6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
387
sce
Ex4_5.sce
//Chapter 4: Selection of Motor Power Rating //Example 5 clc; //Variable Initialization P=100 //Half hour rating of the motor Cr=80 //Heating time constant in minutes n=0.7 //Maximum efficiency at full load //Solution Pcu=n**2 //Coppper loss a=Pcu K=sqrt((1+a)/(1-%e**(-30/Cr))-a) Pco=P/K mprintf("Therefore the continuous rating is:%.2f kW",Pco)
505694e6ba1f74070c52fe31170b7b2814d07038
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/form-split/GOLD-TEST/lld.tst
aa541ae8a0ed7816b7c00c8b93ca2ea995603a6c
[]
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
53,591
tst
lld.tst
istituir istituesc V;IND;PL;3;PRS;LGSPEC2 cunvalider cunvalidaré V;IND;SG;1;FUT produjer produj V;IND;PL;3;PRS adoter adoteia V;NFIN;SG;2;LGSPEC2 acrediter acreditasse V;IPFV;SBJV;SG;1;PST secuestrer secuestron V;IND;PL;1;PRS giudicher giudiche V;SBJV;PL;3;PRS destumer destumeie V;IND;SG;1;PRS;LGSPEC2 comprer compreia V;IND;PL;3;PRS;LGSPEC2 cunzeder cunzedessais V;IPFV;SBJV;PL;2;PST renunzier renunzieie V;IND;SG;1;PRS;LGSPEC2 renunzier renunziassa V;IPFV;SBJV;SG;3;PST coordiner coordinova V;IPFV;IND;PL;3;PST spartir spartide V;NFIN;PL;2 volei voleis V;SBJV;PL;2;PRS detlarer detlarassa V;IPFV;SBJV;PL;3;PST romper rompon V;SBJV;PL;1;PRS delibrer delibron V;IND;PL;1;PRS gaujer gaujea V;IND;SG;3;PRS;LGSPEC3 garantir garantiva V;IPFV;IND;PL;3;PST garantir garante V;SBJV;SG;1;PRS;LGSPEC1 mirer mirassa V;IPFV;SBJV;SG;3;PST cruzier cruziovan V;IPFV;IND;PL;1;PST reguler regulova V;IPFV;IND;SG;3;PST messei messon V;IND;PL;1;PRS nascer nascessa V;IPFV;SBJV;SG;3;PST redujer redujon V;SBJV;PL;1;PRS acrediter acredites V;SBJV;SG;2;PRS;LGSPEC1 adater adates V;SBJV;SG;2;PRS;LGSPEC1 coordener coordeneia V;NFIN;SG;2;LGSPEC2 marider maridareis V;IND;PL;2;FUT arjonjer arjonjessa V;IPFV;SBJV;SG;3;PST capir cap V;NFIN;SG;2;LGSPEC1 comprer comprassan V;IPFV;SBJV;PL;1;PST coster costes V;SBJV;SG;2;PRS;LGSPEC1 volei volessa V;IPFV;SBJV;SG;3;PST furmer furmoves V;IPFV;IND;SG;2;PST deslier desliova V;IPFV;IND;PL;3;PST cumporter cumportede V;NFIN;PL;2 cunferir cunferesc V;NFIN;SG;2;LGSPEC2 romper rompe V;SBJV;SG;1;PRS ndicher ndicharé V;IND;SG;1;FUT alesirer alesiraré V;IND;SG;1;FUT rejoner rejoneia V;IND;SG;3;PRS;LGSPEC2 numiner numine V;IND;SG;1;PRS;LGSPEC1 dé darà V;IND;SG;3;FUT perde perdaron V;IND;PL;1;FUT storjer storjoves V;IPFV;IND;SG;2;PST tramuder tramudede V;NFIN;PL;2 stipuler stipula V;IND;PL;3;PRS;LGSPEC1 parteziper partezipa V;IND;SG;3;PRS;LGSPEC1 morir morisse V;IPFV;SBJV;SG;1;PST avei à V;IND;PL;3;PRS perder perdesse V;IPFV;SBJV;SG;1;PST ncurajer ncurajer V;NFIN;LGSPEC1 someter sometes V;SBJV;SG;2;PRS;LGSPEC1 ressolver ressolvovais V;IPFV;IND;PL;2;PST trasferir trasferes V;IND;SG;2;PRS;LGSPEC1 vedei veides V;SBJV;SG;2;PRS desgorjer desgorjarà V;IND;SG;3;FUT jì vae V;SBJV;SG;3;PRS educher educhovais V;IPFV;IND;PL;2;PST sustenir susten V;IND;SG;3;PRS;LGSPEC1 promulgher promulghove V;IPFV;IND;SG;1;PST cherder cherdarà V;IND;PL;3;FUT azerter azerteies V;SBJV;SG;2;PRS;LGSPEC2 acurder acurdassa V;IPFV;SBJV;PL;3;PST cumporter cumporteis V;IND;PL;2;PRS renunzier renunziaron V;IND;PL;1;FUT furmer furmeia V;IND;PL;3;PRS;LGSPEC2 nfurmer nfurmeis V;SBJV;PL;2;PRS costituir costituissa V;IPFV;SBJV;SG;3;PST corompe coromparas V;IND;SG;2;FUT rester restassan V;IPFV;SBJV;PL;1;PST prejenter prejenteie V;SBJV;SG;1;PRS;LGSPEC2 damander damandeie V;SBJV;SG;3;PRS;LGSPEC2 tramuder tramudon V;IND;PL;1;PRS curespuender curespuendes V;IND;SG;2;PRS;LGSPEC1 publicher publichove V;IPFV;IND;SG;1;PST mirer miraré V;IND;SG;1;FUT messei messova V;IPFV;IND;PL;3;PST damander damandeia V;NFIN;SG;2;LGSPEC2 storjer storj V;IND;SG;3;PRS spidler spidler V;NFIN;LGSPEC1 acrediter acreditaron V;IND;PL;1;FUT limiter limitove V;IPFV;IND;SG;1;PST pruibir pruibe V;SBJV;PL;3;PRS;LGSPEC1 cunvalider cunvalideie V;SBJV;SG;1;PRS;LGSPEC2 scuter scutarà V;IND;PL;3;FUT slunger slungeie V;SBJV;SG;3;PRS;LGSPEC2 segurer segurove V;IPFV;IND;SG;1;PST danejer daneje V;SBJV;SG;3;PRS;LGSPEC1 purter purtarà V;IND;SG;3;FUT mander mandeie V;SBJV;SG;1;PRS;LGSPEC2 tradujer tradujaré V;IND;SG;1;FUT delibrer delibre V;SBJV;SG;1;PRS;LGSPEC1 acrediter acrediteies V;SBJV;SG;2;PRS;LGSPEC2 istruir istruiré V;IND;SG;1;FUT slunger slunges V;IND;SG;2;PRS;LGSPEC1 cherder cherdeia V;NFIN;SG;2;LGSPEC2 desvier desvioves V;IPFV;IND;SG;2;PST furmer furma V;NFIN;SG;2;LGSPEC1 usserver usservove V;IPFV;IND;SG;1;PST capir capesc V;IND;PL;3;PRS;LGSPEC2 furmer furmeies V;SBJV;SG;2;PRS;LGSPEC2 anuler anulon V;IND;PL;1;PRS mander mandes V;SBJV;SG;2;PRS;LGSPEC1 arbitrer arbitrer V;NFIN;LGSPEC1 deslier desliasses V;IPFV;SBJV;SG;2;PST reprejenter reprejenton V;IND;PL;1;PRS determiner determineies V;IND;SG;2;PRS;LGSPEC2 acuser acusaré V;IND;SG;1;FUT adoter adote V;SBJV;SG;1;PRS;LGSPEC1 comunicher comunicheies V;SBJV;SG;2;PRS;LGSPEC2 sporjer sporjaré V;IND;SG;1;FUT cunzeder cunzed V;NFIN;SG;2 depenjer depenjove V;IPFV;IND;SG;1;PST parteziper partezipeia V;IND;PL;3;PRS;LGSPEC2 respuender respuendeies V;SBJV;SG;2;PRS;LGSPEC2 seurander seurandaras V;IND;SG;2;FUT marider maridede V;NFIN;PL;2 istituir istituissais V;IPFV;SBJV;PL;2;PST aplicher aplichon V;IND;PL;1;PRS volei volova V;IPFV;IND;SG;3;PST limiter limitede V;NFIN;PL;2 scurter scurtove V;IPFV;IND;SG;1;PST dé dé V;IND;SG;1;PRS udir udesc V;NFIN;SG;2;LGSPEC2 dormir dormesce V;SBJV;PL;3;PRS;LGSPEC2 capir capissa V;IPFV;SBJV;SG;3;PST tramuder tramudarà V;IND;PL;3;FUT aplicher aplicharas V;IND;SG;2;FUT istruir istruissan V;IPFV;SBJV;PL;1;PST pruibir pruibesce V;SBJV;SG;1;PRS;LGSPEC2 revucher revuchova V;IPFV;IND;SG;3;PST deslier desliaron V;IND;PL;1;FUT comunicher comunicheia V;NFIN;SG;2;LGSPEC2 autoriser autorisassa V;IPFV;SBJV;SG;3;PST cianter ciantede V;NFIN;PL;2 onjer onje V;NFIN;LGSPEC2 njinier njiniassan V;IPFV;SBJV;PL;1;PST finanzier finanziovan V;IPFV;IND;PL;1;PST spartir spartesce V;SBJV;PL;3;PRS;LGSPEC2 scuter scutova V;IPFV;IND;PL;3;PST mander mandeis V;SBJV;PL;2;PRS atribuir atribu V;IND;PL;3;PRS;LGSPEC1 eserziter eserzita V;NFIN;SG;2;LGSPEC1 cianter ciantovan V;IPFV;IND;PL;1;PST destiner destine V;SBJV;PL;3;PRS furmer furmon V;IND;PL;1;PRS scuter scouteie V;SBJV;SG;1;PRS;LGSPEC2 mirer mirasses V;IPFV;SBJV;SG;2;PST cunzeder cunzedessa V;IPFV;SBJV;PL;3;PST produjer produjova V;IPFV;IND;SG;3;PST mpartir mparte V;SBJV;SG;3;PRS;LGSPEC1 manifester manifesteie V;IND;SG;1;PRS;LGSPEC2 entenjer entenjeis V;IND;PL;2;PRS cundaner cundanon V;SBJV;PL;1;PRS vedei vedarà V;IND;SG;3;FUT cunferir cunferisses V;IPFV;SBJV;SG;2;PST cherder cherde V;IND;SG;1;PRS;LGSPEC1 cumander cumandasses V;IPFV;SBJV;SG;2;PST detlarer detlareie V;SBJV;SG;3;PRS;LGSPEC2 tramuder tramudeies V;IND;SG;2;PRS;LGSPEC2 mander mande V;SBJV;PL;3;PRS cumporter cumportovais V;IPFV;IND;PL;2;PST giudicher giudichova V;IPFV;IND;SG;3;PST usserver usservaras V;IND;SG;2;FUT rater rate V;IND;SG;1;PRS;LGSPEC1 jonjer jonjon V;IND;PL;1;PRS cianter cianteia V;IND;PL;3;PRS;LGSPEC2 rester restarà V;IND;SG;3;FUT erjer erje V;NFIN;LGSPEC2 dé dova V;IPFV;IND;SG;3;PST adater adata V;NFIN;SG;2;LGSPEC1 rejoner rejonarà V;IND;PL;3;FUT condujer condujessa V;IPFV;SBJV;SG;3;PST segurer segurovan V;IPFV;IND;PL;1;PST cianter cianteis V;IND;PL;2;PRS sponjer sponjeis V;IND;PL;2;PRS ancunter ancuntea V;IND;SG;3;PRS;LGSPEC3 prufesser prufessaron V;IND;PL;1;FUT entenjer entenjarà V;IND;SG;3;FUT condujer conduje V;SBJV;SG;1;PRS strenjer strenje V;NFIN;LGSPEC2 adater adateie V;SBJV;SG;3;PRS;LGSPEC2 coordiner coordinove V;IPFV;IND;SG;1;PST garantir garantiron V;IND;PL;1;FUT prejenter prejenta V;NFIN;SG;2;LGSPEC1 marider maride V;IND;SG;1;PRS;LGSPEC1 fisser fissoves V;IPFV;IND;SG;2;PST purter purtova V;IPFV;IND;SG;3;PST marider marides V;SBJV;SG;2;PRS;LGSPEC1 romper rompova V;IPFV;IND;SG;3;PST acurder acurdove V;IPFV;IND;SG;1;PST afermer afermasse V;IPFV;SBJV;SG;1;PST prufesser prufessa V;IND;PL;3;PRS;LGSPEC1 istruir istru V;IND;PL;3;PRS;LGSPEC1 usserver usservé V;NFIN;LGSPEC2 storjer storjovais V;IPFV;IND;PL;2;PST spartir spartireis V;IND;PL;2;FUT destumer destumer V;NFIN;LGSPEC1 anuler anulon V;SBJV;PL;1;PRS publicher publicha V;IND;SG;3;PRS;LGSPEC1 autoriser autorisova V;IPFV;IND;PL;3;PST ncurajer ncurajaras V;IND;SG;2;FUT stabilir stabilesce V;SBJV;PL;3;PRS;LGSPEC2 nascer nascoves V;IPFV;IND;SG;2;PST acuser acuse V;SBJV;PL;3;PRS publicher publicharas V;IND;SG;2;FUT afermer afermea V;IND;SG;3;PRS;LGSPEC3 comprer compraras V;IND;SG;2;FUT perde perde V;SBJV;SG;1;PRS coster costeie V;SBJV;SG;3;PRS;LGSPEC2 remander remandeis V;SBJV;PL;2;PRS trater traté V;NFIN;LGSPEC2 muder mudes V;IND;SG;2;PRS;LGSPEC1 damander damandeie V;SBJV;SG;1;PRS;LGSPEC2 sponjer sponjessais V;IPFV;SBJV;PL;2;PST damander damandassan V;IPFV;SBJV;PL;1;PST jonjer jonjaras V;IND;SG;2;FUT redujer redujaron V;IND;PL;1;FUT scurter scurtova V;IPFV;IND;PL;3;PST onjer onjarà V;IND;SG;3;FUT resserver resservova V;IPFV;IND;SG;3;PST determiner determinassa V;IPFV;SBJV;PL;3;PST goder godasse V;IPFV;SBJV;SG;1;PST mander mandaras V;IND;SG;2;FUT redujer redujes V;IND;SG;2;PRS trasferir trasferives V;IPFV;IND;SG;2;PST cuntroler cuntrole V;SBJV;PL;3;PRS comprer compraron V;IND;PL;1;FUT detlarer detlarassan V;IPFV;SBJV;PL;1;PST ndrezer ndrezé V;NFIN;LGSPEC2 damander damandarà V;IND;PL;3;FUT segurer segura V;IND;PL;3;PRS;LGSPEC1 damander damandassa V;IPFV;SBJV;SG;3;PST spidler spidlé V;NFIN;LGSPEC2 sustenir sustenes V;SBJV;SG;2;PRS;LGSPEC1 istituir istitue V;SBJV;SG;1;PRS;LGSPEC1 dovei dovan V;IPFV;IND;PL;1;PST;LGSPEC1 porter portarà V;IND;PL;3;FUT cumporter cumportova V;IPFV;IND;PL;3;PST alesirer alesiré V;NFIN;LGSPEC2 adoter adote V;SBJV;SG;3;PRS;LGSPEC1 cunferir cunferieis V;IND;PL;2;PRS detlarer detlareis V;SBJV;PL;2;PRS acurder acurdasses V;IPFV;SBJV;SG;2;PST trater trataré V;IND;SG;1;FUT reguler regulova V;IPFV;IND;PL;3;PST romper rompe V;SBJV;SG;3;PRS finanzier finanzieie V;SBJV;SG;3;PRS;LGSPEC2 finanzier finanziaras V;IND;SG;2;FUT coordiner coordineie V;SBJV;SG;3;PRS;LGSPEC2 jì vas V;SBJV;SG;2;PRS viuler viula V;IND;SG;3;PRS;LGSPEC1 garantir garantissa V;IPFV;SBJV;PL;3;PST manifester manifesta V;NFIN;SG;2;LGSPEC1 franjer franjarà V;IND;SG;3;FUT proibir proibion V;SBJV;PL;1;PRS arjonjer arjonjeis V;SBJV;PL;2;PRS passer passeie V;SBJV;SG;3;PRS;LGSPEC2 acrediter acreditassan V;IPFV;SBJV;PL;1;PST sponjer sponjon V;SBJV;PL;1;PRS resulter resultasses V;IPFV;SBJV;SG;2;PST vegnì vegnì V;NFIN remander remandeie V;SBJV;SG;3;PRS;LGSPEC2 istituir istituion V;SBJV;PL;1;PRS spieter spieteie V;IND;SG;1;PRS;LGSPEC2 secuestrer secuestrasses V;IPFV;SBJV;SG;2;PST seurander seurandeia V;IND;PL;3;PRS;LGSPEC2 rejoner rejona V;IND;PL;3;PRS;LGSPEC1 rater ratasse V;IPFV;SBJV;SG;1;PST adater adateies V;SBJV;SG;2;PRS;LGSPEC2 secuestrer secuestrarà V;IND;SG;3;FUT cunvalider cunvalidassan V;IPFV;SBJV;PL;1;PST mpartir mparte V;IND;SG;1;PRS;LGSPEC1 istituir istituesces V;IND;SG;2;PRS;LGSPEC2 ejaminer ejamina V;NFIN;SG;2;LGSPEC1 fé fajarà V;IND;SG;3;FUT afermer aferme V;IND;SG;1;PRS;LGSPEC1 acuser acuseia V;NFIN;SG;2;LGSPEC2 istituir istituissa V;IPFV;SBJV;SG;3;PST purter purton V;SBJV;PL;1;PRS perder perdon V;IND;PL;1;PRS mener menove V;IPFV;IND;SG;1;PST jonjer jonjes V;IND;SG;2;PRS mander mandova V;IPFV;IND;PL;3;PST sporjer sporjesse V;IPFV;SBJV;SG;1;PST arjonjer arjonjove V;IPFV;IND;SG;1;PST franjer franjede V;NFIN;PL;2 meter metovan V;IPFV;IND;PL;1;PST dejeujer dejëujassa V;IPFV;SBJV;PL;3;PST furmer furmeie V;IND;SG;1;PRS;LGSPEC2 schiver schiveis V;SBJV;PL;2;PRS slunger slungeis V;SBJV;PL;2;PRS arbitrer arbitreis V;IND;PL;2;PRS perder perd V;NFIN;SG;2 eserziter eserzites V;SBJV;SG;2;PRS;LGSPEC1 defrenzier defrenziaras V;IND;SG;2;FUT atribuir atribuivais V;IPFV;IND;PL;2;PST manifester manifestova V;IPFV;IND;SG;3;PST schiver schivassan V;IPFV;SBJV;PL;1;PST messei messe V;SBJV;PL;3;PRS passer passer V;NFIN;LGSPEC1 mantenir mantenissa V;IPFV;SBJV;SG;3;PST dormir dorm V;NFIN;SG;2;LGSPEC1 aproer aproarà V;IND;SG;3;FUT mander manda V;NFIN;SG;2;LGSPEC1 reguler reguleis V;IND;PL;2;PRS ratificher ratificheie V;SBJV;SG;3;PRS;LGSPEC2 strenjer strenjon V;IND;PL;1;PRS sporjer sporjovan V;IPFV;IND;PL;1;PST dovei desses V;IPFV;SBJV;SG;2;PST;LGSPEC1 strenjer strenjovan V;IPFV;IND;PL;1;PST prufesser prufesseia V;IND;SG;3;PRS;LGSPEC2 autoriser autorisé V;NFIN;LGSPEC2 reprejenter reprejente V;SBJV;SG;3;PRS;LGSPEC1 unir unive V;IPFV;IND;SG;1;PST assegurer assegurassais V;IPFV;SBJV;PL;2;PST afermer afermove V;IPFV;IND;SG;1;PST destumer destumeia V;NFIN;SG;2;LGSPEC2 arester arestassais V;IPFV;SBJV;PL;2;PST promulgher promulghasses V;IPFV;SBJV;SG;2;PST rejoner rejone V;SBJV;PL;3;PRS garantir garant V;NFIN;SG;2;LGSPEC1 purter purtede V;NFIN;PL;2 comunicher comunicha V;IND;PL;3;PRS;LGSPEC1 destumer destumé V;NFIN;LGSPEC2 furmer furmeis V;SBJV;PL;2;PRS trasferir trasferesces V;IND;SG;2;PRS;LGSPEC2 azerter azerteis V;IND;PL;2;PRS cogner cognes V;SBJV;SG;2;PRS;LGSPEC1 gaujer gaujareis V;IND;PL;2;FUT cunvalider cunvalideis V;IND;PL;2;PRS passer passeia V;IND;PL;3;PRS;LGSPEC2 respuender respuenda V;NFIN;SG;2;LGSPEC1 avei oves V;IPFV;IND;SG;2;PST;LGSPEC1 marider maridova V;IPFV;IND;SG;3;PST promulgher promulghes V;SBJV;SG;2;PRS;LGSPEC1 marider marida V;NFIN;SG;2;LGSPEC1 revucher revuches V;IND;SG;2;PRS;LGSPEC1 desgorjer desgorj V;IND;PL;3;PRS marider marideis V;SBJV;PL;2;PRS romper romper V;NFIN;LGSPEC1 ncurajer ncuraje V;SBJV;PL;3;PRS garantir garant V;IND;SG;3;PRS;LGSPEC1 rejoner rejonareis V;IND;PL;2;FUT delibrer delibroves V;IPFV;IND;SG;2;PST anuler anule V;SBJV;SG;1;PRS;LGSPEC1 entenjer entenjaré V;IND;SG;1;FUT comprer comprove V;IPFV;IND;SG;1;PST delegher delegheies V;SBJV;SG;2;PRS;LGSPEC2 arester arestede V;NFIN;PL;2 tradujer tradujove V;IPFV;IND;SG;1;PST comprer compra V;IND;PL;3;PRS;LGSPEC1 anuler anulasse V;IPFV;SBJV;SG;1;PST dormir dormiré V;IND;SG;1;FUT adurver adurvon V;SBJV;PL;1;PRS passer passeis V;SBJV;PL;2;PRS unir unir V;NFIN;LGSPEC1 spidler spidleia V;IND;PL;3;PRS;LGSPEC2 secuestrer secuestres V;IND;SG;2;PRS;LGSPEC1 seurander seurandon V;SBJV;PL;1;PRS ancunter ancuntovais V;IPFV;IND;PL;2;PST emaner emaneis V;IND;PL;2;PRS romper rompessan V;IPFV;SBJV;PL;1;PST cuntroler cuntrolaré V;IND;SG;1;FUT ndicher ndichede V;NFIN;PL;2 arjonjer arjonj V;IND;PL;3;PRS numiner numinasses V;IPFV;SBJV;SG;2;PST rater rataras V;IND;SG;2;FUT goder godeie V;IND;SG;1;PRS;LGSPEC2 mpartir mpartivais V;IPFV;IND;PL;2;PST scuter scoute V;IND;SG;1;PRS;LGSPEC1 adater adate V;SBJV;PL;3;PRS tramuder tramudeia V;IND;SG;3;PRS;LGSPEC2 cogner cognon V;SBJV;PL;1;PRS rester restasses V;IPFV;SBJV;SG;2;PST produjer produje V;IND;SG;1;PRS desvier desvia V;NFIN;SG;2;LGSPEC1 schiver schiva V;IND;SG;3;PRS;LGSPEC1 mpartir mpartiron V;IND;PL;1;FUT adoter adotassan V;IPFV;SBJV;PL;1;PST atuer atuassais V;IPFV;SBJV;PL;2;PST acrediter acreditarà V;IND;PL;3;FUT acurder acurdassa V;IPFV;SBJV;SG;3;PST marider maridarà V;IND;SG;3;FUT schiver schiva V;NFIN;SG;2;LGSPEC1 purter purtoves V;IPFV;IND;SG;2;PST arbitrer arbitrassais V;IPFV;SBJV;PL;2;PST ratificher ratifichede V;NFIN;PL;2 entenjer entenje V;SBJV;SG;1;PRS sporjer sporje V;IND;SG;1;PRS urganiser urganisé V;NFIN;LGSPEC2 porter porteis V;SBJV;PL;2;PRS acurder acurdea V;IND;SG;3;PRS;LGSPEC3 ndicher ndicha V;IND;PL;3;PRS;LGSPEC1 populer populovais V;IPFV;IND;PL;2;PST furmer furmeie V;SBJV;SG;3;PRS;LGSPEC2 alesirer alesireies V;SBJV;SG;2;PRS;LGSPEC2 segurer segureie V;SBJV;SG;1;PRS;LGSPEC2 goder goda V;IND;SG;3;PRS;LGSPEC1 resulter resulté V;NFIN;LGSPEC2 stabilir stabilesces V;IND;SG;2;PRS;LGSPEC2 ndicher ndicheia V;IND;PL;3;PRS;LGSPEC2 depenjer depenjaras V;IND;SG;2;FUT adurver adurvoves V;IPFV;IND;SG;2;PST franjer franjarà V;IND;PL;3;FUT remplazer remplaze V;SBJV;SG;1;PRS;LGSPEC1 secuestrer secuestra V;IND;PL;3;PRS;LGSPEC1 porter portassan V;IPFV;SBJV;PL;1;PST reurganiser reurganisassan V;IPFV;SBJV;PL;1;PST volei volei V;NFIN;LGSPEC1 parteziper partezipasses V;IPFV;SBJV;SG;2;PST njinier njinieie V;SBJV;SG;3;PRS;LGSPEC2 educher educha V;IND;PL;3;PRS;LGSPEC1 alesirer alesiraras V;IND;SG;2;FUT cianter cianteia V;IND;SG;3;PRS;LGSPEC2 ressolver ressolvassa V;IPFV;SBJV;SG;3;PST adoter adotarà V;IND;PL;3;FUT arjonjer arjonjaré V;IND;SG;1;FUT cunferir cunferion V;SBJV;PL;1;PRS determiner determineia V;IND;SG;3;PRS;LGSPEC2 cunferir cunferide V;NFIN;PL;2 podei pos V;IND;SG;2;PRS ejaminer ejaminova V;IPFV;IND;PL;3;PST anuler anulé V;NFIN;LGSPEC2 urganiser urganisaras V;IND;SG;2;FUT promulgher promulghareis V;IND;PL;2;FUT muder mudeies V;SBJV;SG;2;PRS;LGSPEC2 capir capiva V;IPFV;IND;PL;3;PST pronunzier pronunzier V;NFIN;LGSPEC1 dormir dormion V;IND;PL;1;PRS spieter spietaré V;IND;SG;1;FUT scriver scrivon V;IND;PL;1;PRS giudicher giudiche V;SBJV;SG;1;PRS;LGSPEC1 pronunzier pronunzia V;NFIN;SG;2;LGSPEC1 arester aresta V;IND;PL;3;PRS;LGSPEC1 erjer erjede V;NFIN;PL;2 registrer registrova V;IPFV;IND;PL;3;PST meter meton V;IND;PL;1;PRS renunzier renunziaras V;IND;SG;2;FUT jì jivais V;IPFV;IND;PL;2;PST trasferir trasfere V;IND;SG;1;PRS;LGSPEC1 dormir dormesces V;IND;SG;2;PRS;LGSPEC2 furmer furmarà V;IND;SG;3;FUT azerter azertareis V;IND;PL;2;FUT passer passassan V;IPFV;SBJV;PL;1;PST arester arestaré V;IND;SG;1;FUT limiter limitarà V;IND;PL;3;FUT giudicher giudiche V;IND;SG;1;PRS;LGSPEC1 furmer furmasse V;IPFV;SBJV;SG;1;PST schiver schivasse V;IPFV;SBJV;SG;1;PST scriver scrivesse V;IPFV;SBJV;SG;1;PST coordener coordenassais V;IPFV;SBJV;PL;2;PST produjer produjessa V;IPFV;SBJV;PL;3;PST muder mudarà V;IND;SG;3;FUT partir pert V;SBJV;PL;3;PRS furmer furmeies V;IND;SG;2;PRS;LGSPEC2 sotscriver sotscrivessan V;IPFV;SBJV;PL;1;PST mutiver mutivon V;IND;PL;1;PRS entenjer entenje V;SBJV;PL;3;PRS produjer produjessa V;IPFV;SBJV;SG;3;PST publicher publicheies V;SBJV;SG;2;PRS;LGSPEC2 messei messove V;IPFV;IND;SG;1;PST ratificher ratificha V;IND;SG;3;PRS;LGSPEC1 scurter scurtarà V;IND;PL;3;FUT passer passeia V;NFIN;SG;2;LGSPEC2 messei messarà V;IND;SG;3;FUT tramuder tramudaron V;IND;PL;1;FUT dejeujer dejëujes V;IND;SG;2;PRS;LGSPEC1 acuser acusé V;NFIN;LGSPEC2 vedei vedessan V;IPFV;SBJV;PL;1;PST autoriser autoriseis V;IND;PL;2;PRS produjer produjon V;IND;PL;1;PRS desvier desviovan V;IPFV;IND;PL;1;PST muder mudareis V;IND;PL;2;FUT manifester manifestassa V;IPFV;SBJV;PL;3;PST deslier deslie V;SBJV;SG;3;PRS;LGSPEC1 nfurmer nfurme V;IND;SG;1;PRS;LGSPEC1 prejenter prejentassan V;IPFV;SBJV;PL;1;PST marider maridaron V;IND;PL;1;FUT jonjer jonje V;SBJV;PL;3;PRS populer populeies V;IND;SG;2;PRS;LGSPEC2 comunicher comunicha V;NFIN;SG;2;LGSPEC1 reurganiser reurganison V;SBJV;PL;1;PRS cogner cognede V;NFIN;PL;2 perder perdaras V;IND;SG;2;FUT furmer furmeie V;SBJV;SG;1;PRS;LGSPEC2 mantenir manteniré V;IND;SG;1;FUT publicher publichovan V;IPFV;IND;PL;1;PST passer passa V;NFIN;SG;2;LGSPEC1 cuntroler cuntrole V;SBJV;SG;1;PRS;LGSPEC1 lascer lascovais V;IPFV;IND;PL;2;PST mener menea V;IND;SG;3;PRS;LGSPEC3 destiner destinassa V;IPFV;SBJV;SG;3;PST finanzier finanzieie V;SBJV;SG;1;PRS;LGSPEC2 scriver scrive V;SBJV;PL;3;PRS costituir costituive V;IPFV;IND;SG;1;PST cunferir cunfer V;NFIN;SG;2;LGSPEC1 danejer danejassais V;IPFV;SBJV;PL;2;PST delibrer delibrea V;IND;SG;3;PRS;LGSPEC3 delibrer delibrassa V;IPFV;SBJV;SG;3;PST acuser acusaras V;IND;SG;2;FUT messei messe V;SBJV;SG;1;PRS revucher revuché V;NFIN;LGSPEC2 resulter resultarà V;IND;SG;3;FUT spieter spiete V;SBJV;SG;3;PRS;LGSPEC1 aplicher apliche V;SBJV;SG;3;PRS;LGSPEC1 eserziter eserzitede V;NFIN;PL;2 condujer condujesse V;IPFV;SBJV;SG;1;PST rester resteie V;IND;SG;1;PRS;LGSPEC2 finanzier finanzia V;NFIN;SG;2;LGSPEC1 strenjer strenjova V;IPFV;IND;PL;3;PST detlarer detlararé V;IND;SG;1;FUT reverir reverion V;IND;PL;1;PRS adurver adurvaron V;IND;PL;1;FUT schiver schivea V;IND;SG;3;PRS;LGSPEC3 coordener coordeneie V;SBJV;SG;3;PRS;LGSPEC2 manifester manifestarà V;IND;SG;3;FUT fisser fisson V;IND;PL;1;PRS parteziper partezipovan V;IPFV;IND;PL;1;PST istruir istruiva V;IPFV;IND;SG;3;PST parteziper parteziparé V;IND;SG;1;FUT renunzier renunziede V;NFIN;PL;2 secuestrer secuestre V;IND;SG;1;PRS;LGSPEC1 defrenzier defrenzion V;IND;PL;1;PRS gaujer gaujer V;NFIN;LGSPEC1 depenjer depenjeis V;SBJV;PL;2;PRS cuntroler cuntroleia V;IND;SG;3;PRS;LGSPEC2 cruzier cruziaré V;IND;SG;1;FUT capir capissais V;IPFV;SBJV;PL;2;PST eserziter eserzitasse V;IPFV;SBJV;SG;1;PST dé daras V;IND;SG;2;FUT costituir costitu V;IND;SG;3;PRS;LGSPEC1 mpartir mpartieis V;SBJV;PL;2;PRS cherder cherdoves V;IPFV;IND;SG;2;PST podei podon V;SBJV;PL;1;PRS aproer aproovan V;IPFV;IND;PL;1;PST corompe corompe V;NFIN;LGSPEC2 rater rateia V;IND;PL;3;PRS;LGSPEC2 afermer afermeies V;SBJV;SG;2;PRS;LGSPEC2 cruzier cruziove V;IPFV;IND;SG;1;PST educher educhede V;NFIN;PL;2 passer passaron V;IND;PL;1;FUT publicher publiche V;SBJV;PL;3;PRS tramuder tramudovan V;IPFV;IND;PL;1;PST revucher revuche V;IND;SG;1;PRS;LGSPEC1 sponjer sponjon V;IND;PL;1;PRS pronunzier pronunzieie V;SBJV;SG;3;PRS;LGSPEC2 stabilir stabilieis V;SBJV;PL;2;PRS danejer daneje V;SBJV;SG;1;PRS;LGSPEC1 goder godassais V;IPFV;SBJV;PL;2;PST cianter cianta V;NFIN;SG;2;LGSPEC1 marider maridasse V;IPFV;SBJV;SG;1;PST destumer destumeies V;IND;SG;2;PRS;LGSPEC2 numiner numinaron V;IND;PL;1;FUT cunzeder cunzedeis V;SBJV;PL;2;PRS dormir dormieis V;SBJV;PL;2;PRS cumander cumandede V;NFIN;PL;2 defrenzier defrenzieis V;SBJV;PL;2;PRS mander mandovais V;IPFV;IND;PL;2;PST atuer atueis V;SBJV;PL;2;PRS aproer aproeia V;IND;PL;3;PRS;LGSPEC2 scuter scutaras V;IND;SG;2;FUT corompe corompessais V;IPFV;SBJV;PL;2;PST strenjer strenjovais V;IPFV;IND;PL;2;PST reprejenter reprejenteies V;IND;SG;2;PRS;LGSPEC2 tradujer tradujessa V;IPFV;SBJV;PL;3;PST lascer lasce V;SBJV;SG;3;PRS;LGSPEC1 remplazer remplazareis V;IND;PL;2;FUT volei volovan V;IPFV;IND;PL;1;PST istituir istitue V;SBJV;PL;3;PRS;LGSPEC1 promulgher promulghassais V;IPFV;SBJV;PL;2;PST cruzier cruzieie V;IND;SG;1;PRS;LGSPEC2 perde perdovais V;IPFV;IND;PL;2;PST ressolver ressolvova V;IPFV;IND;PL;3;PST depenjer depenjes V;SBJV;SG;2;PRS acuser acusova V;IPFV;IND;PL;3;PST resserver resservassa V;IPFV;SBJV;SG;3;PST cianter cianton V;SBJV;PL;1;PRS cianter cianteies V;IND;SG;2;PRS;LGSPEC2 jonjer jonj V;NFIN;SG;2 emaner emaner V;NFIN;LGSPEC1 afermer aferma V;NFIN;SG;2;LGSPEC1 onjer onj V;IND;PL;3;PRS gaujer gaujé V;NFIN;LGSPEC2 assegurer assegureis V;IND;PL;2;PRS podei podessais V;IPFV;SBJV;PL;2;PST cunvalider cunvalidarà V;IND;SG;3;FUT seurander seurandeie V;SBJV;SG;3;PRS;LGSPEC2 anuler anuleia V;IND;SG;3;PRS;LGSPEC2 unir univais V;IPFV;IND;PL;2;PST manifester manifesteia V;IND;SG;3;PRS;LGSPEC2 educher educhassais V;IPFV;SBJV;PL;2;PST arbitrer arbitreia V;NFIN;SG;2;LGSPEC2 emaner emanon V;SBJV;PL;1;PRS ndicher ndiche V;SBJV;PL;3;PRS stipuler stipuleia V;IND;PL;3;PRS;LGSPEC2 alesirer alesireie V;SBJV;SG;1;PRS;LGSPEC2 erjer erje V;IND;SG;1;PRS coordiner coordine V;SBJV;SG;3;PRS;LGSPEC1 rater ratasses V;IPFV;SBJV;SG;2;PST strenjer strenjessa V;IPFV;SBJV;SG;3;PST giudicher giudicharé V;IND;SG;1;FUT podei podeis V;IND;PL;2;PRS acuser acusaron V;IND;PL;1;FUT seurander seurandaron V;IND;PL;1;FUT populer populeie V;SBJV;SG;1;PRS;LGSPEC2 seurander seurandareis V;IND;PL;2;FUT rejoner rejonassan V;IPFV;SBJV;PL;1;PST viuler viuleies V;IND;SG;2;PRS;LGSPEC2 emaner emaneis V;SBJV;PL;2;PRS nascer nasc V;IND;PL;3;PRS stabilir stabilireis V;IND;PL;2;FUT adoter adotea V;IND;SG;3;PRS;LGSPEC3 gaujer gaujassais V;IPFV;SBJV;PL;2;PST partir pert V;IND;SG;3;PRS reverir rever V;IND;PL;3;PRS;LGSPEC1 populer populassais V;IPFV;SBJV;PL;2;PST danejer danejaron V;IND;PL;1;FUT capir capide V;NFIN;PL;2 reprejenter reprejenteie V;SBJV;SG;1;PRS;LGSPEC2 udir udion V;SBJV;PL;1;PRS numiner numinassais V;IPFV;SBJV;PL;2;PST viver vivon V;SBJV;PL;1;PRS dormir dormesce V;SBJV;SG;1;PRS;LGSPEC2 sotscriver sotscrivaron V;IND;PL;1;FUT muder mudeie V;SBJV;SG;3;PRS;LGSPEC2 cuntroler cuntrolassa V;IPFV;SBJV;PL;3;PST reprejenter reprejentede V;NFIN;PL;2 avei arà V;IND;SG;3;FUT scriver scrivarà V;IND;PL;3;FUT cundaner cundanarà V;IND;SG;3;FUT trasferir trasferireis V;IND;PL;2;FUT promulgher promulghes V;IND;SG;2;PRS;LGSPEC1 comunicher comunichasses V;IPFV;SBJV;SG;2;PST redujer redujessais V;IPFV;SBJV;PL;2;PST resserver resserveia V;NFIN;SG;2;LGSPEC2 cherder cherdé V;NFIN;LGSPEC2 aproer aproareis V;IND;PL;2;FUT savei savon V;SBJV;PL;1;PRS marider maridon V;SBJV;PL;1;PRS dormir dormivan V;IPFV;IND;PL;1;PST njinier njiniaras V;IND;SG;2;FUT rester restovais V;IPFV;IND;PL;2;PST storjer storjede V;NFIN;PL;2 someter sometassa V;IPFV;SBJV;PL;3;PST nfurmer nfurmarà V;IND;SG;3;FUT adurver adurveies V;IND;SG;2;PRS;LGSPEC2 morir muere V;SBJV;SG;1;PRS costituir costituiron V;IND;PL;1;FUT cuntroler cuntrolaras V;IND;SG;2;FUT sustenir sustenieis V;IND;PL;2;PRS mantenir mantenesc V;NFIN;SG;2;LGSPEC2 ndicher ndicha V;NFIN;SG;2;LGSPEC1 mirer mires V;IND;SG;2;PRS;LGSPEC1 mutiver mutiveis V;IND;PL;2;PRS pruibir pruibes V;IND;SG;2;PRS;LGSPEC1 messei messessa V;IPFV;SBJV;SG;3;PST eserziter eserzite V;SBJV;SG;3;PRS;LGSPEC1 acurder acurdarà V;IND;PL;3;FUT segurer segureia V;NFIN;SG;2;LGSPEC2 avei ove V;IPFV;IND;SG;1;PST;LGSPEC1 coordener coordenassa V;IPFV;SBJV;SG;3;PST onjer onjon V;IND;PL;1;PRS mantenir mantenesces V;IND;SG;2;PRS;LGSPEC2 proibir proibesce V;SBJV;PL;3;PRS;LGSPEC2 resulter resultassais V;IPFV;SBJV;PL;2;PST savei savessan V;IPFV;SBJV;PL;1;PST acurder acurda V;IND;PL;3;PRS;LGSPEC1 jonjer jonjove V;IPFV;IND;SG;1;PST populer popularon V;IND;PL;1;FUT seurander seurande V;SBJV;SG;1;PRS;LGSPEC1 emaner emanarà V;IND;PL;3;FUT giudicher giudiche V;SBJV;SG;3;PRS;LGSPEC1 parteziper partezipassan V;IPFV;SBJV;PL;1;PST udir udiva V;IPFV;IND;PL;3;PST desvier desviassa V;IPFV;SBJV;PL;3;PST condujer condujovais V;IPFV;IND;PL;2;PST desvier desviarà V;IND;PL;3;FUT azerter azerteia V;IND;PL;3;PRS;LGSPEC2 usserver usserveis V;SBJV;PL;2;PRS comprer comprovais V;IPFV;IND;PL;2;PST cumander cumandeia V;IND;PL;3;PRS;LGSPEC2 slunger slungoves V;IPFV;IND;SG;2;PST cruzier cruziasses V;IPFV;SBJV;SG;2;PST arbitrer arbitrova V;IPFV;IND;SG;3;PST azerter azertovan V;IPFV;IND;PL;1;PST capir capissan V;IPFV;SBJV;PL;1;PST garantir garantirà V;IND;PL;3;FUT remplazer remplazarà V;IND;PL;3;FUT ancunter ancuntede V;NFIN;PL;2 mantenir mantenirà V;IND;PL;3;FUT stabilir stabile V;IND;SG;1;PRS;LGSPEC1 dejeujer dejëuja V;IND;PL;3;PRS;LGSPEC1 respuender respuendon V;SBJV;PL;1;PRS mpartir mpartesc V;NFIN;SG;2;LGSPEC2 adater adatova V;IPFV;IND;SG;3;PST storjer storj V;IND;PL;3;PRS franjer franjesse V;IPFV;SBJV;SG;1;PST messei messessais V;IPFV;SBJV;PL;2;PST autoriser autorise V;SBJV;SG;1;PRS;LGSPEC1 costituir costituesc V;IND;SG;3;PRS;LGSPEC2 scurter scurteie V;SBJV;SG;1;PRS;LGSPEC2 purter purtea V;IND;SG;3;PRS;LGSPEC3 ndrezer ndrezeis V;SBJV;PL;2;PRS dejeujer dejëuje V;SBJV;SG;1;PRS;LGSPEC1 apurver apurva V;IND;PL;3;PRS;LGSPEC1 eserziter eserzitassais V;IPFV;SBJV;PL;2;PST nfurmer nfurmede V;NFIN;PL;2 aproer aproeia V;IND;SG;3;PRS;LGSPEC2 cumporter cumportareis V;IND;PL;2;FUT unir unesce V;SBJV;SG;1;PRS;LGSPEC2 pruibir pruibe V;SBJV;SG;1;PRS;LGSPEC1 ancunter ancunteies V;IND;SG;2;PRS;LGSPEC2 reverir reveresces V;IND;SG;2;PRS;LGSPEC2 rester reste V;SBJV;SG;1;PRS;LGSPEC1 istruir istruion V;SBJV;PL;1;PRS comunicher comunichove V;IPFV;IND;SG;1;PST unir unissan V;IPFV;SBJV;PL;1;PST azerter azerte V;SBJV;SG;1;PRS;LGSPEC1 assenier asseniassan V;IPFV;SBJV;PL;1;PST partir partivan V;IPFV;IND;PL;1;PST educher educharon V;IND;PL;1;FUT dormir dormir V;NFIN;LGSPEC1 assegurer asseguron V;IND;PL;1;PRS franjer franje V;SBJV;SG;1;PRS passer passe V;SBJV;SG;3;PRS;LGSPEC1 produjer produjovan V;IPFV;IND;PL;1;PST autoriser autorisasses V;IPFV;SBJV;SG;2;PST aplicher aplicha V;IND;SG;3;PRS;LGSPEC1 nfurmer nfurma V;IND;SG;3;PRS;LGSPEC1 autoriser autorisove V;IPFV;IND;SG;1;PST reguler reguleies V;IND;SG;2;PRS;LGSPEC2 remplazer remplazeie V;SBJV;SG;3;PRS;LGSPEC2 giudicher giudicha V;IND;SG;3;PRS;LGSPEC1 atribuir atribuivan V;IPFV;IND;PL;1;PST comprer compron V;IND;PL;1;PRS deslier deslies V;IND;SG;2;PRS;LGSPEC1 porter porte V;SBJV;SG;1;PRS;LGSPEC1 mutiver mutiveie V;SBJV;SG;1;PRS;LGSPEC2 destumer destumon V;IND;PL;1;PRS prejenter prejentes V;SBJV;SG;2;PRS;LGSPEC1 scurter scurton V;IND;PL;1;PRS revucher revucha V;NFIN;SG;2;LGSPEC1 passer passassa V;IPFV;SBJV;PL;3;PST depenjer depenjon V;IND;PL;1;PRS rezever rezevaras V;IND;SG;2;FUT perde perde V;SBJV;PL;3;PRS jonjer jonjaron V;IND;PL;1;FUT avei à V;IND;SG;3;PRS tradujer tradujovais V;IPFV;IND;PL;2;PST savei savova V;IPFV;IND;PL;3;PST danejer danejeia V;IND;PL;3;PRS;LGSPEC2 resulter resultasse V;IPFV;SBJV;SG;1;PST destiner destinova V;IPFV;IND;PL;3;PST spieter spietassa V;IPFV;SBJV;PL;3;PST ancunter ancunta V;NFIN;SG;2;LGSPEC1 coordener coordenon V;SBJV;PL;1;PRS viuler viularà V;IND;PL;3;FUT publicher publichassais V;IPFV;SBJV;PL;2;PST scuter scouteies V;SBJV;SG;2;PRS;LGSPEC2 jonjer jonjessa V;IPFV;SBJV;SG;3;PST destumer destumeia V;IND;PL;3;PRS;LGSPEC2 ressolver ressolvareis V;IND;PL;2;FUT fisser fisseia V;IND;SG;3;PRS;LGSPEC2 ncurajer ncuraje V;IND;SG;1;PRS;LGSPEC1 muder muda V;IND;SG;3;PRS;LGSPEC1 ressolver ressolvea V;IND;SG;3;PRS;LGSPEC3 onjer onjovan V;IPFV;IND;PL;1;PST proibir proibivan V;IPFV;IND;PL;1;PST unir univan V;IPFV;IND;PL;1;PST podei podesse V;IPFV;SBJV;SG;1;PST spidler spidlarà V;IND;SG;3;FUT ressolver ressolves V;SBJV;SG;2;PRS;LGSPEC1 mutiver mutivova V;IPFV;IND;SG;3;PST meter metarà V;IND;PL;3;FUT spieter spietes V;SBJV;SG;2;PRS;LGSPEC1 spartir spartivais V;IPFV;IND;PL;2;PST numiner numines V;SBJV;SG;2;PRS;LGSPEC1 trater tratassan V;IPFV;SBJV;PL;1;PST capir capesc V;NFIN;SG;2;LGSPEC2 delegher deleghove V;IPFV;IND;SG;1;PST purter purtasses V;IPFV;SBJV;SG;2;PST sotscriver sotscrive V;SBJV;SG;3;PRS ndicher ndichassa V;IPFV;SBJV;SG;3;PST porter porteies V;SBJV;SG;2;PRS;LGSPEC2 destiner destinassa V;IPFV;SBJV;PL;3;PST proibir proibirà V;IND;PL;3;FUT danejer danejova V;IPFV;IND;PL;3;PST usserver usserve V;SBJV;SG;3;PRS;LGSPEC1 parteziper partezipoves V;IPFV;IND;SG;2;PST anuler anula V;IND;SG;3;PRS;LGSPEC1 limiter limite V;SBJV;PL;3;PRS fisser fissarà V;IND;SG;3;FUT detlarer detlarede V;NFIN;PL;2 gaujer gaujassa V;IPFV;SBJV;PL;3;PST cogner cognasses V;IPFV;SBJV;SG;2;PST spieter spietasses V;IPFV;SBJV;SG;2;PST ndrezer ndrezova V;IPFV;IND;PL;3;PST danejer danejeis V;IND;PL;2;PRS mpartir mpartissa V;IPFV;SBJV;PL;3;PST coordener coordenon V;IND;PL;1;PRS numiner numines V;IND;SG;2;PRS;LGSPEC1 corompe corompessa V;IPFV;SBJV;SG;3;PST jonjer jonjesse V;IPFV;SBJV;SG;1;PST adater adate V;SBJV;SG;1;PRS;LGSPEC1 azerter azerton V;IND;PL;1;PRS resserver resservea V;IND;SG;3;PRS;LGSPEC3 mutiver mutiver V;NFIN;LGSPEC1 publicher publichassa V;IPFV;SBJV;PL;3;PST mander mandé V;NFIN;LGSPEC2 assenier assenie V;SBJV;SG;3;PRS;LGSPEC1 comunicher comunicharon V;IND;PL;1;FUT alesirer alesirede V;NFIN;PL;2 mpartir mpartisse V;IPFV;SBJV;SG;1;PST spidler spidla V;IND;SG;3;PRS;LGSPEC1 scurter scurtes V;IND;SG;2;PRS;LGSPEC1 ncurajer ncuraja V;IND;PL;3;PRS;LGSPEC1 afermer afermassa V;IPFV;SBJV;SG;3;PST morir moriva V;IPFV;IND;PL;3;PST usserver usservea V;IND;SG;3;PRS;LGSPEC3 ncurajer ncurajaré V;IND;SG;1;FUT produjer produje V;NFIN;LGSPEC2 lascer lasces V;SBJV;SG;2;PRS;LGSPEC1 comunicher comunichon V;IND;PL;1;PRS arester aresteies V;SBJV;SG;2;PRS;LGSPEC2 adoter adotassa V;IPFV;SBJV;SG;3;PST desvier desvion V;SBJV;PL;1;PRS cundaner cundanaras V;IND;SG;2;FUT lascer lascareis V;IND;PL;2;FUT populer populeie V;IND;SG;1;PRS;LGSPEC2 tramuder tramudeie V;IND;SG;1;PRS;LGSPEC2 aplicher aplichea V;IND;SG;3;PRS;LGSPEC3 stipuler stipula V;NFIN;SG;2;LGSPEC1 destiner destinaré V;IND;SG;1;FUT determiner determine V;SBJV;PL;3;PRS reurganiser reurganisarà V;IND;PL;3;FUT depenjer depenjesse V;IPFV;SBJV;SG;1;PST rejoner rejoneia V;NFIN;SG;2;LGSPEC2 njinier njiniovais V;IPFV;IND;PL;2;PST plovei plueve V;SBJV;SG;3;PRS nfurmer nfurmeia V;NFIN;SG;2;LGSPEC2 terjer terjede V;NFIN;PL;2 promulgher promulghé V;NFIN;LGSPEC2 populer popule V;SBJV;PL;3;PRS reprejenter reprejenteis V;SBJV;PL;2;PRS comprer compra V;NFIN;SG;2;LGSPEC1 ejaminer ejaminaré V;IND;SG;1;FUT coordener coordenaré V;IND;SG;1;FUT manifester manifestes V;IND;SG;2;PRS;LGSPEC1 nascer nascova V;IPFV;IND;SG;3;PST remplazer remplazassais V;IPFV;SBJV;PL;2;PST adurver adurvassa V;IPFV;SBJV;PL;3;PST atuer atuon V;IND;PL;1;PRS njinier njinieie V;SBJV;SG;1;PRS;LGSPEC2 trater tratareis V;IND;PL;2;FUT sustenir sustenesces V;IND;SG;2;PRS;LGSPEC2 gaujer gaujarà V;IND;PL;3;FUT ressolver ressolvovan V;IPFV;IND;PL;1;PST coordener coordenova V;IPFV;IND;SG;3;PST trater tratede V;NFIN;PL;2 cundaner cundanaron V;IND;PL;1;FUT tramuder tramuda V;NFIN;SG;2;LGSPEC1 ejaminer ejaminassa V;IPFV;SBJV;PL;3;PST scriver scriv V;IND;PL;3;PRS muder mudé V;NFIN;LGSPEC2 cunferir cunfer V;IND;SG;3;PRS;LGSPEC1 revucher revucharas V;IND;SG;2;FUT apurver apurvova V;IPFV;IND;SG;3;PST prufesser prufesseies V;IND;SG;2;PRS;LGSPEC2 numiner numinon V;SBJV;PL;1;PRS dovei dessove V;IPFV;IND;SG;1;PST;LGSPEC2 delibrer delibraras V;IND;SG;2;FUT destumer destume V;IND;SG;1;PRS;LGSPEC1 delegher delegha V;NFIN;SG;2;LGSPEC1 mpartir mpartissais V;IPFV;SBJV;PL;2;PST storjer storjon V;IND;PL;1;PRS ressolver ressolver V;NFIN;LGSPEC1 curespuender curespuende V;IND;SG;1;PRS;LGSPEC1 aplicher aplicheia V;NFIN;SG;2;LGSPEC2 scuter scouteia V;IND;PL;3;PRS;LGSPEC2 someter someteie V;SBJV;SG;1;PRS;LGSPEC2 furmer furma V;IND;SG;3;PRS;LGSPEC1 scriver scriveis V;SBJV;PL;2;PRS educher educharé V;IND;SG;1;FUT spidler spidles V;SBJV;SG;2;PRS;LGSPEC1 spidler spidlova V;IPFV;IND;SG;3;PST determiner determinove V;IPFV;IND;SG;1;PST sporjer sporjes V;SBJV;SG;2;PRS acurder acurdaron V;IND;PL;1;FUT adurver adurvé V;NFIN;LGSPEC2 cogner cogneis V;IND;PL;2;PRS adoter adotassa V;IPFV;SBJV;PL;3;PST trater trateies V;IND;SG;2;PRS;LGSPEC2 viuler viulon V;IND;PL;1;PRS secuestrer secuestrassais V;IPFV;SBJV;PL;2;PST emaner emaneia V;IND;SG;3;PRS;LGSPEC2 registrer registreie V;SBJV;SG;1;PRS;LGSPEC2 arbitrer arbitreie V;SBJV;SG;1;PRS;LGSPEC2 meter met V;NFIN;SG;2 cumporter cumportarà V;IND;SG;3;FUT ncurajer ncurajes V;IND;SG;2;PRS;LGSPEC1 prufesser prufessove V;IPFV;IND;SG;1;PST jì vae V;IND;SG;1;PRS comunicher comunichassa V;IPFV;SBJV;SG;3;PST cianter ciantaras V;IND;SG;2;FUT morir moride V;NFIN;PL;2 rater rate V;SBJV;SG;3;PRS;LGSPEC1 garantir garantiva V;IPFV;IND;SG;3;PST muder mude V;SBJV;SG;1;PRS;LGSPEC1 pruibir pruibe V;IND;SG;1;PRS;LGSPEC1 alesirer alesireia V;IND;PL;3;PRS;LGSPEC2 desgorjer desgorje V;NFIN;LGSPEC2 cumporter cumporter V;NFIN;LGSPEC1 determiner determinon V;SBJV;PL;1;PRS fisser fissaras V;IND;SG;2;FUT detlarer detlarova V;IPFV;IND;SG;3;PST dejeujer dejëujes V;SBJV;SG;2;PRS;LGSPEC1 publicher publicha V;IND;PL;3;PRS;LGSPEC1 manifester manifestoves V;IPFV;IND;SG;2;PST renunzier renunziova V;IPFV;IND;SG;3;PST sustenir sustenes V;IND;SG;2;PRS;LGSPEC1 cunzeder cunzedon V;IND;PL;1;PRS entenjer entenjer V;NFIN;LGSPEC1 defrenzier defrenziova V;IPFV;IND;SG;3;PST autoriser autorisassa V;IPFV;SBJV;PL;3;PST onjer onjoves V;IPFV;IND;SG;2;PST cianter ciantes V;IND;SG;2;PRS;LGSPEC1 mander mandove V;IPFV;IND;SG;1;PST afermer afermeies V;IND;SG;2;PRS;LGSPEC2 adurver adurves V;SBJV;SG;2;PRS;LGSPEC1 ratificher ratificharà V;IND;SG;3;FUT perde perdon V;IND;PL;1;PRS ratificher ratifiche V;SBJV;SG;1;PRS;LGSPEC1 publicher publicheia V;IND;SG;3;PRS;LGSPEC2 garantir garantesc V;IND;PL;3;PRS;LGSPEC2 educher educheies V;SBJV;SG;2;PRS;LGSPEC2 dormir dormesc V;NFIN;SG;2;LGSPEC2 dejeujer dejëujon V;IND;PL;1;PRS fé fajaras V;IND;SG;2;FUT curespuender curespuendeis V;SBJV;PL;2;PRS cundaner cundaneie V;SBJV;SG;3;PRS;LGSPEC2 seurander seuranda V;IND;PL;3;PRS;LGSPEC1 morir moriron V;IND;PL;1;FUT scurter scurtovais V;IPFV;IND;PL;2;PST acurder acurdareis V;IND;PL;2;FUT cunzeder cunzedessa V;IPFV;SBJV;SG;3;PST scriver scrivova V;IPFV;IND;PL;3;PST destiner destinovais V;IPFV;IND;PL;2;PST aplicher aplicha V;IND;PL;3;PRS;LGSPEC1 atribuir atribuion V;SBJV;PL;1;PRS istituir istituiva V;IPFV;IND;SG;3;PST deslier deslieie V;IND;SG;1;PRS;LGSPEC2 reguler regulede V;NFIN;PL;2 dovei dovesses V;IPFV;SBJV;SG;2;PST;LGSPEC2 coordener coordene V;SBJV;PL;3;PRS viuler viules V;IND;SG;2;PRS;LGSPEC1 cumander cumandove V;IPFV;IND;SG;1;PST adater adateia V;NFIN;SG;2;LGSPEC2 curespuender curespuendovan V;IPFV;IND;PL;1;PST ndrezer ndrezeia V;IND;SG;3;PRS;LGSPEC2 cuntroler cuntrolassan V;IPFV;SBJV;PL;1;PST stabilir stabilesce V;SBJV;SG;3;PRS;LGSPEC2 assegurer assegureis V;SBJV;PL;2;PRS entenjer entenjes V;IND;SG;2;PRS someter sometarà V;IND;PL;3;FUT eserziter eserziteies V;IND;SG;2;PRS;LGSPEC2 acurder acurdé V;NFIN;LGSPEC2 assenier assenioves V;IPFV;IND;SG;2;PST someter sometoves V;IPFV;IND;SG;2;PST ejaminer ejaminon V;IND;PL;1;PRS comunicher comunichea V;IND;SG;3;PRS;LGSPEC3 sustenir sustene V;SBJV;SG;1;PRS;LGSPEC1 pruibir pruibesce V;IND;SG;1;PRS;LGSPEC2 rejoner rejonaron V;IND;PL;1;FUT damander damandareis V;IND;PL;2;FUT dovei desseis V;IND;PL;2;PRS aplicher aplicharà V;IND;PL;3;FUT autoriser autorisaré V;IND;SG;1;FUT destumer destumeis V;IND;PL;2;PRS storjer storje V;SBJV;SG;1;PRS danejer danejeies V;IND;SG;2;PRS;LGSPEC2 educher eduche V;SBJV;SG;3;PRS;LGSPEC1 slunger slungé V;NFIN;LGSPEC2 adurver adurvasse V;IPFV;SBJV;SG;1;PST vegnì vegn V;IND;PL;3;PRS sotscriver sotscrivovais V;IPFV;IND;PL;2;PST unir unisse V;IPFV;SBJV;SG;1;PST desgorjer desgorjove V;IPFV;IND;SG;1;PST cunferir cunferivais V;IPFV;IND;PL;2;PST azerter azertede V;NFIN;PL;2 revucher revuche V;SBJV;PL;3;PRS terjer terje V;NFIN;LGSPEC2 azerter azertova V;IPFV;IND;SG;3;PST spidler spidlassan V;IPFV;SBJV;PL;1;PST desgorjer desgorjes V;IND;SG;2;PRS curespuender curespuendeie V;SBJV;SG;1;PRS;LGSPEC2 destiner destiné V;NFIN;LGSPEC2 eserziter eserzitarà V;IND;PL;3;FUT pronunzier pronunzieies V;IND;SG;2;PRS;LGSPEC2 resulter resulta V;IND;SG;3;PRS;LGSPEC1 plovei plovova V;IPFV;IND;SG;3;PST mander mandeia V;NFIN;SG;2;LGSPEC2 capir capesce V;IND;SG;1;PRS;LGSPEC2 pronunzier pronunzie V;SBJV;SG;3;PRS;LGSPEC1 scuter scouta V;IND;PL;3;PRS;LGSPEC1 mirer mireia V;IND;PL;3;PRS;LGSPEC2 rester resteia V;IND;SG;3;PRS;LGSPEC2 njinier njiniove V;IPFV;IND;SG;1;PST seurander seurandeis V;SBJV;PL;2;PRS giudicher giudicharas V;IND;SG;2;FUT promulgher promulgheia V;IND;SG;3;PRS;LGSPEC2 prejenter prejenteia V;IND;SG;3;PRS;LGSPEC2 renunzier renunzieis V;IND;PL;2;PRS detlarer detlare V;SBJV;SG;3;PRS;LGSPEC1 ejaminer ejamina V;IND;SG;3;PRS;LGSPEC1 destiner destinarà V;IND;PL;3;FUT rater ratassan V;IPFV;SBJV;PL;1;PST sporjer sporjessa V;IPFV;SBJV;PL;3;PST dormir dormissais V;IPFV;SBJV;PL;2;PST coordiner coordineies V;SBJV;SG;2;PRS;LGSPEC2 someter someteie V;SBJV;SG;3;PRS;LGSPEC2 scurter scurteie V;IND;SG;1;PRS;LGSPEC2 giudicher giudichoves V;IPFV;IND;SG;2;PST liter litassan V;IPFV;SBJV;PL;1;PST alesirer alesirovais V;IPFV;IND;PL;2;PST aproer aproea V;IND;SG;3;PRS;LGSPEC3 finanzier finanzies V;IND;SG;2;PRS;LGSPEC1 secuestrer secuestreis V;IND;PL;2;PRS cumporter cumportassa V;IPFV;SBJV;SG;3;PST atribuir atribuieis V;SBJV;PL;2;PRS spieter spietede V;NFIN;PL;2 educher educhove V;IPFV;IND;SG;1;PST resserver resservassa V;IPFV;SBJV;PL;3;PST volei vuele V;SBJV;PL;3;PRS acurder acurdeie V;SBJV;SG;3;PRS;LGSPEC2 podei podeis V;SBJV;PL;2;PRS purter purtovais V;IPFV;IND;PL;2;PST romper rompon V;IND;PL;1;PRS dejeujer dejëuje V;IND;SG;1;PRS;LGSPEC1 depenjer depenjer V;NFIN;LGSPEC1 cunvalider cunvalidon V;SBJV;PL;1;PRS adoter adoton V;IND;PL;1;PRS autoriser autorisareis V;IND;PL;2;FUT detlarer detlarasse V;IPFV;SBJV;SG;1;PST desvier desvieia V;IND;SG;3;PRS;LGSPEC2 reguler regula V;IND;PL;3;PRS;LGSPEC1 redujer reduje V;SBJV;SG;3;PRS cruzier cruzies V;SBJV;SG;2;PRS;LGSPEC1 spartir spartiva V;IPFV;IND;PL;3;PST urganiser urganison V;IND;PL;1;PRS spartir spartieis V;IND;PL;2;PRS schiver schivaras V;IND;SG;2;FUT dejeujer dejëujé V;NFIN;LGSPEC2 capir capes V;SBJV;SG;2;PRS;LGSPEC1 sponjer sponjaré V;IND;SG;1;FUT cundaner cundanes V;SBJV;SG;2;PRS;LGSPEC1 jì vas V;IND;SG;2;PRS liter litarà V;IND;SG;3;FUT promulgher promulghova V;IPFV;IND;PL;3;PST adoter adoter V;NFIN;LGSPEC1 purter purtaré V;IND;SG;1;FUT cunferir cunferesce V;IND;SG;1;PRS;LGSPEC2 costituir costituiras V;IND;SG;2;FUT comunicher comunichovais V;IPFV;IND;PL;2;PST meter metoves V;IPFV;IND;SG;2;PST populer popularà V;IND;SG;3;FUT coordener coordenove V;IPFV;IND;SG;1;PST damander damandes V;IND;SG;2;PRS;LGSPEC1 franjer franjessan V;IPFV;SBJV;PL;1;PST rejoner rejonaré V;IND;SG;1;FUT desgorjer desgorjes V;SBJV;SG;2;PRS apurver apurve V;IND;SG;1;PRS;LGSPEC1 reguler regules V;SBJV;SG;2;PRS;LGSPEC1 segurer seguroves V;IPFV;IND;SG;2;PST danejer danejasses V;IPFV;SBJV;SG;2;PST storjer storjon V;SBJV;PL;1;PRS prufesser prufessareis V;IND;PL;2;FUT cogner cogneies V;IND;SG;2;PRS;LGSPEC2 savei sas V;SBJV;SG;2;PRS comprer comprassais V;IPFV;SBJV;PL;2;PST educher educharas V;IND;SG;2;FUT mirer mirede V;NFIN;PL;2 coordener coordeneia V;IND;SG;3;PRS;LGSPEC2 dé daes V;SBJV;SG;2;PRS sustenir sustenieis V;SBJV;PL;2;PRS desvier desviassan V;IPFV;SBJV;PL;1;PST educher educhova V;IPFV;IND;SG;3;PST avei aessa V;IPFV;SBJV;SG;3;PST;LGSPEC2 secuestrer secuestraré V;IND;SG;1;FUT ndicher ndicher V;NFIN;LGSPEC1 adater adatassa V;IPFV;SBJV;SG;3;PST meter metova V;IPFV;IND;PL;3;PST trasferir trasferivan V;IPFV;IND;PL;1;PST assegurer assegurassan V;IPFV;SBJV;PL;1;PST unir unireis V;IND;PL;2;FUT capir cap V;IND;SG;3;PRS;LGSPEC1 adoter adotasse V;IPFV;SBJV;SG;1;PST dé don V;IND;PL;1;PRS ejaminer ejaminovais V;IPFV;IND;PL;2;PST danejer danejovan V;IPFV;IND;PL;1;PST cogner cognova V;IPFV;IND;PL;3;PST curespuender curespuendasse V;IPFV;SBJV;SG;1;PST viver vivon V;IND;PL;1;PRS mpartir mpartes V;IND;SG;2;PRS;LGSPEC1 capir capesce V;SBJV;SG;3;PRS;LGSPEC2 dejeujer dejëujeia V;NFIN;SG;2;LGSPEC2 sponjer sponjareis V;IND;PL;2;FUT urganiser urganisassais V;IPFV;SBJV;PL;2;PST autoriser autoriseia V;IND;PL;3;PRS;LGSPEC2 promulgher promulgheis V;IND;PL;2;PRS rester reston V;SBJV;PL;1;PRS secuestrer secuestreia V;NFIN;SG;2;LGSPEC2 respuender respuendarà V;IND;PL;3;FUT depenjer depenjovais V;IPFV;IND;PL;2;PST stabilir stabilì V;NFIN;LGSPEC2 scurter scurta V;IND;SG;3;PRS;LGSPEC1 registrer registreis V;SBJV;PL;2;PRS someter sometove V;IPFV;IND;SG;1;PST vedei vedove V;IPFV;IND;SG;1;PST desgorjer desgorjessan V;IPFV;SBJV;PL;1;PST proibir proib V;NFIN;SG;2;LGSPEC1 entenjer entenjon V;SBJV;PL;1;PRS pronunzier pronunzion V;IND;PL;1;PRS ndicher ndicheia V;NFIN;SG;2;LGSPEC2 terjer terje V;SBJV;SG;3;PRS cundaner cundanovais V;IPFV;IND;PL;2;PST garantir garantesce V;SBJV;SG;1;PRS;LGSPEC2 perder perdessa V;IPFV;SBJV;SG;3;PST comprer compreia V;NFIN;SG;2;LGSPEC2 cumander cumandes V;IND;SG;2;PRS;LGSPEC1 renunzier renunzieia V;IND;PL;3;PRS;LGSPEC2 mener menarà V;IND;PL;3;FUT registrer registres V;SBJV;SG;2;PRS;LGSPEC1 prejenter prejente V;SBJV;PL;3;PRS registrer registré V;NFIN;LGSPEC2 scuter scutove V;IPFV;IND;SG;1;PST parteziper partezipove V;IPFV;IND;SG;1;PST lascer lascede V;NFIN;PL;2 comprer comprareis V;IND;PL;2;FUT resulter resultarà V;IND;PL;3;FUT assegurer assegurovan V;IPFV;IND;PL;1;PST scriver scrives V;IND;SG;2;PRS perdujer perduj V;NFIN;SG;2 rater rate V;SBJV;SG;1;PRS;LGSPEC1 istituir istitues V;IND;SG;2;PRS;LGSPEC1 acrediter acrediteie V;SBJV;SG;3;PRS;LGSPEC2 vegnì vegnissa V;IPFV;SBJV;PL;3;PST cruzier cruzie V;SBJV;SG;3;PRS;LGSPEC1 reverir reverissais V;IPFV;SBJV;PL;2;PST secuestrer secuestrassan V;IPFV;SBJV;PL;1;PST atribuir atribuirà V;IND;SG;3;FUT passer passe V;IND;SG;1;PRS;LGSPEC1 rezever rezevessa V;IPFV;SBJV;SG;3;PST ancunter ancuntaré V;IND;SG;1;FUT acrediter acrediteia V;IND;SG;3;PRS;LGSPEC2 afermer afermeis V;IND;PL;2;PRS secuestrer secuestreie V;SBJV;SG;1;PRS;LGSPEC2 mantenir mantenireis V;IND;PL;2;FUT pronunzier pronunzia V;IND;SG;3;PRS;LGSPEC1 revucher revucharà V;IND;PL;3;FUT schiver schiveie V;IND;SG;1;PRS;LGSPEC2 someter someta V;IND;PL;3;PRS;LGSPEC1 delibrer delibrarà V;IND;SG;3;FUT cogner cogna V;IND;SG;3;PRS;LGSPEC1 autoriser autorises V;IND;SG;2;PRS;LGSPEC1 cumporter cumporta V;IND;SG;3;PRS;LGSPEC1 gaujer gaujoves V;IPFV;IND;SG;2;PST dé dé V;NFIN;LGSPEC1 usserver usserveies V;IND;SG;2;PRS;LGSPEC2 proibir proibisses V;IPFV;SBJV;SG;2;PST reguler regulovais V;IPFV;IND;PL;2;PST revucher revuchon V;IND;PL;1;PRS spartir spartirà V;IND;PL;3;FUT dejeujer dejëujeies V;SBJV;SG;2;PRS;LGSPEC2 aproer aproaré V;IND;SG;1;FUT viver vivovan V;IPFV;IND;PL;1;PST aplicher aplicheie V;SBJV;SG;3;PRS;LGSPEC2 aproer aproova V;IPFV;IND;PL;3;PST unir unide V;NFIN;PL;2 terjer terjaron V;IND;PL;1;FUT pruibir pruibiron V;IND;PL;1;FUT lascer lascassan V;IPFV;SBJV;PL;1;PST ndrezer ndrezeia V;IND;PL;3;PRS;LGSPEC2 delegher delegheia V;IND;PL;3;PRS;LGSPEC2 cunferir cunferes V;IND;SG;2;PRS;LGSPEC1 publicher publichoves V;IPFV;IND;SG;2;PST limiter limitassa V;IPFV;SBJV;PL;3;PST autoriser autorisovais V;IPFV;IND;PL;2;PST scurter scurtoves V;IPFV;IND;SG;2;PST assegurer assegurea V;IND;SG;3;PRS;LGSPEC3 desvier desviea V;IND;SG;3;PRS;LGSPEC3 udir udiva V;IPFV;IND;SG;3;PST purter purta V;NFIN;SG;2;LGSPEC1 parteziper partezipon V;IND;PL;1;PRS apurver apurve V;SBJV;SG;3;PRS;LGSPEC1 udir udesc V;IND;PL;3;PRS;LGSPEC2 reprejenter reprejenteia V;NFIN;SG;2;LGSPEC2 remander remanda V;IND;SG;3;PRS;LGSPEC1 entenjer entenje V;SBJV;SG;3;PRS cruzier cruzieia V;IND;PL;3;PRS;LGSPEC2 comunicher comunichova V;IPFV;IND;SG;3;PST eserziter eserzité V;NFIN;LGSPEC2 atuer atuove V;IPFV;IND;SG;1;PST storjer storjer V;NFIN;LGSPEC1 njinier njiniassais V;IPFV;SBJV;PL;2;PST cumander cumandeia V;NFIN;SG;2;LGSPEC2 scurter scurta V;IND;PL;3;PRS;LGSPEC1 detlarer detlare V;SBJV;PL;3;PRS savei savovan V;IPFV;IND;PL;1;PST mander mandeie V;IND;SG;1;PRS;LGSPEC2 coster costarà V;IND;SG;3;FUT strenjer strenjova V;IPFV;IND;SG;3;PST podei podaré V;IND;SG;1;FUT delibrer delibrassais V;IPFV;SBJV;PL;2;PST costituir costituieis V;IND;PL;2;PRS tradujer tradujer V;NFIN;LGSPEC1 acuser acusasses V;IPFV;SBJV;SG;2;PST cumander cumandaras V;IND;SG;2;FUT stabilir stabiliras V;IND;SG;2;FUT resserver resserva V;IND;SG;3;PRS;LGSPEC1 autoriser autoriseia V;IND;SG;3;PRS;LGSPEC2 ratificher ratifichareis V;IND;PL;2;FUT spartir spartissais V;IPFV;SBJV;PL;2;PST unir unieis V;IND;PL;2;PRS cunzeder cunzed V;IND;SG;3;PRS nfurmer nfurmova V;IPFV;IND;PL;3;PST cumander cumandova V;IPFV;IND;SG;3;PST fisser fisseie V;IND;SG;1;PRS;LGSPEC2 mirer miré V;NFIN;LGSPEC2 capir capì V;NFIN;LGSPEC2 cumander cumandassais V;IPFV;SBJV;PL;2;PST aplicher aplichovan V;IPFV;IND;PL;1;PST seurander seurandassa V;IPFV;SBJV;PL;3;PST produjer produjareis V;IND;PL;2;FUT acrediter acredite V;IND;SG;1;PRS;LGSPEC1 trasferir trasferiva V;IPFV;IND;SG;3;PST adoter adoteies V;IND;SG;2;PRS;LGSPEC2 sotscriver sotscrives V;IND;SG;2;PRS sotscriver sotscrivarà V;IND;PL;3;FUT reurganiser reurganisasses V;IPFV;SBJV;SG;2;PST scriver scrivovais V;IPFV;IND;PL;2;PST spieter spietarà V;IND;SG;3;FUT rester restova V;IPFV;IND;SG;3;PST spidler spidlovais V;IPFV;IND;PL;2;PST urganiser urganisaron V;IND;PL;1;FUT cianter ciantassa V;IPFV;SBJV;PL;3;PST ndicher ndicheis V;IND;PL;2;PRS spidler spidleis V;IND;PL;2;PRS comunicher comunicheis V;SBJV;PL;2;PRS prufesser prufesson V;IND;PL;1;PRS trasferir trasferir V;NFIN;LGSPEC1 someter sometassais V;IPFV;SBJV;PL;2;PST alesirer alesires V;IND;SG;2;PRS;LGSPEC1 assenier assenieia V;NFIN;SG;2;LGSPEC2 podei podovan V;IPFV;IND;PL;1;PST delibrer delibre V;IND;SG;1;PRS;LGSPEC1 finanzier finanziaré V;IND;SG;1;FUT defrenzier defrenziessa V;IPFV;SBJV;PL;3;PST eserziter eserzite V;SBJV;SG;1;PRS;LGSPEC1 atuer atuova V;IPFV;IND;PL;3;PST cumander cumandarà V;IND;SG;3;FUT desgorjer desgorjesses V;IPFV;SBJV;SG;2;PST istituir istituisses V;IPFV;SBJV;SG;2;PST autoriser autorise V;IND;SG;1;PRS;LGSPEC1 registrer registre V;IND;SG;1;PRS;LGSPEC1 partir partivais V;IPFV;IND;PL;2;PST arbitrer arbitre V;SBJV;SG;3;PRS;LGSPEC1 coster costovan V;IPFV;IND;PL;1;PST mutiver mutivasse V;IPFV;SBJV;SG;1;PST prufesser prufesseis V;SBJV;PL;2;PRS determiner determine V;IND;SG;1;PRS;LGSPEC1 reurganiser reurganisove V;IPFV;IND;SG;1;PST trasferir trasferieis V;IND;PL;2;PRS morir muere V;SBJV;SG;3;PRS arester areste V;SBJV;PL;3;PRS stipuler stipulon V;IND;PL;1;PRS reurganiser reurganisa V;IND;PL;3;PRS;LGSPEC1 ndrezer ndrezarà V;IND;SG;3;FUT mutiver mutiveia V;IND;SG;3;PRS;LGSPEC2 adater adatoves V;IPFV;IND;SG;2;PST dejeujer dejëujassa V;IPFV;SBJV;SG;3;PST alesirer alesirareis V;IND;PL;2;FUT aproer aproa V;IND;PL;3;PRS;LGSPEC1 renunzier renunzié V;NFIN;LGSPEC2 proibir proibesce V;IND;SG;1;PRS;LGSPEC2 reverir reveresce V;IND;SG;1;PRS;LGSPEC2 aproer aproaras V;IND;SG;2;FUT aproer aproeie V;SBJV;SG;1;PRS;LGSPEC2 rezever rezevede V;NFIN;PL;2 deslier desliova V;IPFV;IND;SG;3;PST educher educher V;NFIN;LGSPEC1 storjer storje V;NFIN;LGSPEC2 cundaner cundana V;NFIN;SG;2;LGSPEC1 coordiner coordinaras V;IND;SG;2;FUT emaner emaneie V;IND;SG;1;PRS;LGSPEC2 alesirer alesireies V;IND;SG;2;PRS;LGSPEC2 perdujer perdujoves V;IPFV;IND;SG;2;PST acurder acurdassan V;IPFV;SBJV;PL;1;PST ncurajer ncurajeie V;SBJV;SG;3;PRS;LGSPEC2 mpartir mpartesces V;IND;SG;2;PRS;LGSPEC2 delegher deleghon V;SBJV;PL;1;PRS acrediter acreditasses V;IPFV;SBJV;SG;2;PST coordiner coordineis V;SBJV;PL;2;PRS stipuler stipules V;SBJV;SG;2;PRS;LGSPEC1 podei podessan V;IPFV;SBJV;PL;1;PST goder godeies V;IND;SG;2;PRS;LGSPEC2 fé fajeis V;IND;PL;2;PRS udir ud V;NFIN;SG;2;LGSPEC1 manifester manifeste V;SBJV;PL;3;PRS cumporter cumporte V;SBJV;PL;3;PRS ejaminer ejaminasses V;IPFV;SBJV;SG;2;PST stabilir stabilives V;IPFV;IND;SG;2;PST mirer miron V;SBJV;PL;1;PRS coordiner coordinon V;IND;PL;1;PRS franjer franjaré V;IND;SG;1;FUT registrer registrea V;IND;SG;3;PRS;LGSPEC3 remander remande V;SBJV;SG;3;PRS;LGSPEC1 dejeujer dejëujaras V;IND;SG;2;FUT sustenir sustenesc V;IND;PL;3;PRS;LGSPEC2 nascer nasceis V;IND;PL;2;PRS ratificher ratificheies V;IND;SG;2;PRS;LGSPEC2 resulter resultovan V;IPFV;IND;PL;1;PST someter someton V;IND;PL;1;PRS ressolver ressolveis V;IND;PL;2;PRS ratificher ratifichassan V;IPFV;SBJV;PL;1;PST finanzier finanziasse V;IPFV;SBJV;SG;1;PST secuestrer secuestrova V;IPFV;IND;PL;3;PST usserver usserves V;SBJV;SG;2;PRS;LGSPEC1 acurder acurda V;NFIN;SG;2;LGSPEC1 aproer aproeie V;SBJV;SG;3;PRS;LGSPEC2 azerter azertes V;IND;SG;2;PRS;LGSPEC1 reurganiser reurganisa V;IND;SG;3;PRS;LGSPEC1 remander remandea V;IND;SG;3;PRS;LGSPEC3 adoter adotovais V;IPFV;IND;PL;2;PST deslier deslié V;NFIN;LGSPEC2 populer populassan V;IPFV;SBJV;PL;1;PST mander mandon V;SBJV;PL;1;PRS muder muder V;NFIN;LGSPEC1 liter liteie V;SBJV;SG;3;PRS;LGSPEC2 apurver apurva V;IND;SG;3;PRS;LGSPEC1 comunicher comuniche V;IND;SG;1;PRS;LGSPEC1 morir morissa V;IPFV;SBJV;PL;3;PST destumer destumeies V;SBJV;SG;2;PRS;LGSPEC2 remplazer remplazeia V;IND;SG;3;PRS;LGSPEC2 onjer onjessan V;IPFV;SBJV;PL;1;PST aussei aussova V;IPFV;IND;SG;3;PST resulter resulteie V;IND;SG;1;PRS;LGSPEC2 franjer franj V;IND;PL;3;PRS goder godeia V;IND;SG;3;PRS;LGSPEC2 mutiver mutivareis V;IND;PL;2;FUT viver vivede V;NFIN;PL;2 mutiver mutiva V;NFIN;SG;2;LGSPEC1 sponjer sponjoves V;IPFV;IND;SG;2;PST condujer condujaron V;IND;PL;1;FUT ndicher ndicharà V;IND;SG;3;FUT onjer onjessais V;IPFV;SBJV;PL;2;PST perder perdon V;SBJV;PL;1;PRS assegurer assegureia V;IND;SG;3;PRS;LGSPEC2 remander remande V;SBJV;PL;3;PRS educher eduche V;IND;SG;1;PRS;LGSPEC1 stipuler stipuleie V;SBJV;SG;3;PRS;LGSPEC2 vedei vedeis V;SBJV;PL;2;PRS numiner numina V;IND;SG;3;PRS;LGSPEC1 mirer mirova V;IPFV;IND;PL;3;PST aplicher aplicheies V;IND;SG;2;PRS;LGSPEC2 cogner cognassa V;IPFV;SBJV;SG;3;PST viver vives V;IND;SG;2;PRS prejenter prejentassa V;IPFV;SBJV;SG;3;PST parteziper partezipassais V;IPFV;SBJV;PL;2;PST numiner numinasse V;IPFV;SBJV;SG;1;PST coordener coordener V;NFIN;LGSPEC1 cogner cogner V;NFIN;LGSPEC1 arbitrer arbitra V;IND;SG;3;PRS;LGSPEC1 deslier deslia V;IND;PL;3;PRS;LGSPEC1 schiver schive V;SBJV;SG;1;PRS;LGSPEC1 produjer produjoves V;IPFV;IND;SG;2;PST coordiner coordineies V;IND;SG;2;PRS;LGSPEC2 condujer condujoves V;IPFV;IND;SG;2;PST redujer redujova V;IPFV;IND;PL;3;PST sporjer sporjeis V;IND;PL;2;PRS perdujer perdujesses V;IPFV;SBJV;SG;2;PST arbitrer arbitrarà V;IND;PL;3;FUT messei messaré V;IND;SG;1;FUT manifester manifestovan V;IPFV;IND;PL;1;PST prejenter prejentasses V;IPFV;SBJV;SG;2;PST tramuder tramudasses V;IPFV;SBJV;SG;2;PST prejenter prejentassa V;IPFV;SBJV;PL;3;PST adater adaton V;IND;PL;1;PRS reurganiser reurganisasse V;IPFV;SBJV;SG;1;PST adurver adurveie V;SBJV;SG;3;PRS;LGSPEC2 erjer erjovan V;IPFV;IND;PL;1;PST eserziter eserziteis V;IND;PL;2;PRS tradujer tradujarà V;IND;PL;3;FUT adurver adurvaré V;IND;SG;1;FUT jonjer jonjoves V;IPFV;IND;SG;2;PST ncurajer ncurajeies V;IND;SG;2;PRS;LGSPEC2 slunger slungeis V;IND;PL;2;PRS aplicher aplicheie V;SBJV;SG;1;PRS;LGSPEC2 ressolver ressolvassan V;IPFV;SBJV;PL;1;PST cianter ciantea V;IND;SG;3;PRS;LGSPEC3 njinier njiniova V;IPFV;IND;PL;3;PST ancunter ancunté V;NFIN;LGSPEC2 aproer aproe V;SBJV;SG;1;PRS;LGSPEC1 autoriser autoriseia V;NFIN;SG;2;LGSPEC2 mutiver mutivede V;NFIN;PL;2 prejenter prejentarà V;IND;SG;3;FUT usserver usservede V;NFIN;PL;2 dejeujer dejëujove V;IPFV;IND;SG;1;PST purter purtareis V;IND;PL;2;FUT ndicher ndicheie V;SBJV;SG;3;PRS;LGSPEC2 muder mudeies V;IND;SG;2;PRS;LGSPEC2 reprejenter reprejentarà V;IND;PL;3;FUT lascer lascaron V;IND;PL;1;FUT arbitrer arbitra V;IND;PL;3;PRS;LGSPEC1 finanzier finanzia V;IND;PL;3;PRS;LGSPEC1 udir udir V;NFIN;LGSPEC1 cunferir cunfere V;SBJV;SG;1;PRS;LGSPEC1 entenjer entenjesse V;IPFV;SBJV;SG;1;PST ncurajer ncurajea V;IND;SG;3;PRS;LGSPEC3 prufesser prufessasse V;IPFV;SBJV;SG;1;PST destiner destineia V;IND;SG;3;PRS;LGSPEC2 depenjer depenjede V;NFIN;PL;2 comunicher comunicharà V;IND;PL;3;FUT comunicher comuniches V;SBJV;SG;2;PRS;LGSPEC1 stipuler stipule V;SBJV;SG;1;PRS;LGSPEC1 vegnì vegnissan V;IPFV;SBJV;PL;1;PST cunferir cunferirà V;IND;PL;3;FUT emaner emanaré V;IND;SG;1;FUT usserver usserve V;IND;SG;1;PRS;LGSPEC1 nfurmer nfurmeies V;SBJV;SG;2;PRS;LGSPEC2 destiner destinoves V;IPFV;IND;SG;2;PST afermer afermassa V;IPFV;SBJV;PL;3;PST istruir istruide V;NFIN;PL;2 comprer compre V;SBJV;PL;3;PRS defrenzier defrenzie V;SBJV;PL;3;PRS rater rata V;IND;PL;3;PRS;LGSPEC1 mpartir mpartesc V;IND;SG;3;PRS;LGSPEC2 someter somete V;IND;SG;1;PRS;LGSPEC1 vegnì vegne V;IND;SG;1;PRS slunger slungeia V;NFIN;SG;2;LGSPEC2 franjer franjareis V;IND;PL;2;FUT cumander cumandaron V;IND;PL;1;FUT cunzeder cunzedova V;IPFV;IND;SG;3;PST njinier njinié V;NFIN;LGSPEC2 anuler anuleie V;SBJV;SG;1;PRS;LGSPEC2 aussei aussesse V;IPFV;SBJV;SG;1;PST
c7f6177e719836e2a6fc038de25ae2d753db8421
449d555969bfd7befe906877abab098c6e63a0e8
/1910/CH5/EX5.3/Chapter53.sce
9859928a6d114d86d29a5a240c94bac7268f1276
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,602
sce
Chapter53.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Introduction to heat transfer by S.K.Som, Chapter 5, Example 3") //Air at temprature (T1=20°C) and 1 atmospheric pressure flows over a flat plate with a free stream velocity(Uinf) of 1m/s. Uinf=1; T1=20; //The length of plate is 1m and is heated over its entire length to a constant temprature of T2=100°C. T2=100; //For air at 20°C(The mean temprature of 100°C and 20°C),viscosity(mu=1.9*10^-5kg/(m*s)),density(rho=1.05kg/m^3),conductivity(k=0.03W/(m*K)),specific heat(cp=1.007kJ/(kg*K)) //Prandtl number is Pr=0.7 mu=1.9*10^-5; rho=1.05; k=0.03; cp=1.007; Pr=0.7; //For laminar flow over a plate Nusselt number is Nux=0.332*Rex^0.5*Pr^(1/3) //The boundary layer flow over a flat plate will be laminar if Reynolds number is Rex=(rho*Uinf*x)/mu<5*10^5 //First of all we have to check whether the flow is laminar or not. //Let us check at x=1m x=1; disp("Reynolds number is") ReL=(rho*Uinf*x)/mu //There fore the flow is laminar and we can use the relationships of Nux, //Thus Rex=(1.05*1*x)/(1.9*10^-5)=0.5526*10^5*x //Therefore we can write Nux=(hx*x/k)=0.332*(0.5526*10^5*x)^0.5*Pr^(1/3)....or hx=2.08*x^(-1/2) W/(m^2*°C) //hbarL is the average heat transfer coefficient over a length(L) disp("The average heat transfer coefficient over a length(L)= 1m ,in W/m^2 is") L=1; hbarL=(1/L)*integrate("2.08*x^(-1/2)",'x',0,L) //Q is the rate of heat transfer disp("The rate of heat transfer in W/m of width is") Q=hbarL*L*(T2-T1)
0cd31e628f562a875315d0cf53366adde4721bde
5f2ca8e18735204f5995ac7e44a6e301eb23ea0b
/scripts/controls/nz/trim_v502_alt0_xcg35_level.sce
536b7bba57f81883ec5d43026f8fdf4662e4f300
[]
no_license
Jettanakorn/mcflight
4e7d4e20976e8f3621bf13fec2a8b522ecfc49a9
e6579a11e10c5e9ae9ee558f464a6b88e1ae7a26
refs/heads/master
2023-03-17T10:49:28.906700
2019-10-30T20:20:58
2019-10-30T20:20:58
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,595
sce
trim_v502_alt0_xcg35_level.sce
X0 = [ 502. 0.0369079 0. 0. 0.0369079 0. 0. 0. 0. 0. 0. 0. 8.9983295 ]; X0_body = [ 501.65813 0. 18.523579 0. 0.0369079 0. 0. 0. 0. 0. 0. 0. 8.9983295]; controls.throttle = 0.1385637; controls.elev_deg = -0.7587782; controls.ail_deg = 0.0; controls.rudder_deg = 0.0; params.xcg = 0.35; params.VT_ftps = 502; params.alt_ft = 0.0; u_labels = ['throttle' 'elev_deg']; x_labels = ['u_ftps' 'w_ftps' 'theta_rad' 'q_rps']; // The sign of nzs_g is being considered positive up here y_labels = ['nx_g' 'ny_g' 'nz_g' 'alpha_deg' 'q_rps' 'Q_lbfpft2' 'mach' 'nzs_g']; A_body = [ -0.0205944 0.0544749 -32.149502 -17.34162 -0.0669801 -1.0114212 -1.1768488 454.03925 0. 0. 0. 1. 0.001169 0.0013724 0.0005279 -1.0763773 ]; B_body = [ 26.151683 0.2129226 0.025857 -1.0944541 0. 0. 0.0004101 -0.1756041 ]; C_body = [ -0.0006421 0.0016951 -0.0000381 0.0367417 0. 0. 0. 0. 0.002342 0.0313607 -0.0002848 1.4802948 -0.0045577 0.1139753 -0.0000627 -0.0003423 0. 0. 0. 1. 1.214648 0.0570833 -0.0231385 -0.0973449 0.0008372 0.000034 0.0000025 -0.0000699 0.0022331 0.031387 -0.0003066 1.4805348 ]; D_body = [ 0.8129204 0.0066221 0. 0. -0.0007712 0.0339755 -0.0002763 0.0001229 0. 0. -0.0804158 0.0737061 -0.0000779 0.0000935 0.0292322 0.0343372 ];