blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
6
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
87
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
15 values
visit_date
timestamp[us]date
2016-08-04 09:00:04
2023-09-05 17:18:33
revision_date
timestamp[us]date
1998-12-11 00:15:10
2023-09-02 05:42:40
committer_date
timestamp[us]date
2005-04-26 09:58:02
2023-09-02 05:42:40
github_id
int64
436k
586M
star_events_count
int64
0
12.3k
fork_events_count
int64
0
6.3k
gha_license_id
stringclasses
7 values
gha_event_created_at
timestamp[us]date
2012-11-16 11:45:07
2023-09-14 20:45:37
gha_created_at
timestamp[us]date
2010-03-22 23:34:58
2023-01-07 03:47:44
gha_language
stringclasses
36 values
src_encoding
stringclasses
17 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
15 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
a4ee2eceea712742bb0117a633b7a6759702a757
449d555969bfd7befe906877abab098c6e63a0e8
/2528/CH10/EX10.1/Ex10_1.sce
db51c9a8a546169610384155d696d237dd6fd0e5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
302
sce
Ex10_1.sce
//chapter 10 //Vout and lower frequency //page no. 354 //Example10_1 //Figure 10.7 //Given clc; clear; t=0; Ri=10000; //in Ohm C=10^-8; //in farad Rf=100000; //in Ohm //Vout(t)=-1/(Ri*C)*int(Vi(t))dt Flow=1/(2*%pi*Rf*C); printf("\n Flow is %.0f Hz",Flow);
2cd799c06375ce033deafc005266cfd341dcec4f
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH2/EX2.25/Ch02Ex25.sce
42eb8f3037f050d1f1cf31bb3fc7e25b09bd029d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
414
sce
Ch02Ex25.sce
// Scilab Code Ex2.25:: Page-2.19 (2009) clc; clear; lambda = 5890e-008; // Wavelength of light used, cm mu = 1.5; // Refractive index of material sheet // As shift = 9*lambda*D/d = D/d*(mu - 1)*t, solving for t t = 9*lambda/(mu - 1); // Thickness of the glass sheet, cm printf("\nThe thickness of the glass sheet = %4.2e cm", t); // Result // The thickness of the glass sheet = 1.06e-003 cm
2615f91c170ca6ccffa0170b707d763ecafa964e
449d555969bfd7befe906877abab098c6e63a0e8
/1958/CH12/EX12.e.3/Chapter12_example3.sce
3faeacb43d4ad8530187af9ea7e10bc773afc004
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
417
sce
Chapter12_example3.sce
clc clear //Input data R=[4,12,2,12]//Resistances from circuit diagram 12.12 on page no. 177 in ohms V=12//Voltage in V from circuit diagram 12.12 on page no. 177 //Calculations Rth=((R(1)+R(3))*R(2))/(R(1)+R(3)+R(2))//Equivalent resistance in ohms Vth=(V*R(2))/(R(1)+R(3)+R(2))//Equivalent voltage in V I=(Vth/(Rth+R(4)))//Current in A //Output printf('The current through the resistor is %3.1f A',I)
c95b42dca814f65ce88b3149f31cf3f786775a60
449d555969bfd7befe906877abab098c6e63a0e8
/182/CH2/EX2.3/example2_3.sce
005821aa521106d9c5d210b0c396818f705ed66c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
385
sce
example2_3.sce
//example 2-2 in page 20 clc; //given data V1=100;//stated voltage one V2=80;//stated voltage two e1=(1/100)*V1;//absolute error of v1 e2=(5/100)*V2;//absolute error of v2 //calculation e=e1+e2;//absolute error for the sum of the voltages E=V1-V2;// difference voltage emax=(e/E)*100;//maximum percentage error printf("E=%d V +/- %d percent",E,emax); //result //E=20 V +/- 25 percent
8a0fa33f154e488472444c3636a7699a67768cc4
449d555969bfd7befe906877abab098c6e63a0e8
/530/CH4/EX4.5/example_4_5.sce
569ff6cdd2c058ce0e393557e0730a0a558a9a85
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
664
sce
example_4_5.sce
clear; clc; // A Textbook on HEAT TRANSFER by S P SUKHATME // Chapter 4 // Principles of Fluid Flow // Example 4.5 // Page 195 printf("Example 4.5, Page 195 \n\n"); l = 2 ; // [m] v = 4 ; // [m/s] // From Table A.2 mew = 18.1*10^-6; // [N s/m^2] rho = 1.205*1.5; // [kg/m^3] Re_l = rho*v*l/mew; // Boundary layer is partly laminar and partly turbulent, we shall use eqn 4.10.4 Cf = 0.074*(7.989*10^5)^(-0.2) - 1050/Re_l ; printf("Drag coefficieent is %f \n",Cf) D_f= Cf*1/2*rho*l*v^2; printf("Drag force per meter width = %f N \n",D_f); //from eqn 4.10.1 x = 3*10^5 * (18.1*10^-6)/(1.808*4); printf("Value of x_c is %f m",x);
4238bb760932b4a4d96023f65e3f9af1d4e1d93a
449d555969bfd7befe906877abab098c6e63a0e8
/317/CH2/EX2.5/example5.sce
a5bb7087dc86c058a3f0dc0c29c2c0fae1aa83eb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
924
sce
example5.sce
// Given data V(1)=0.7;// barrier potential in volts at 25 degree celcius T(1)=25; // temperature in degree celcius at which vbarrier potential is known T(2)=100; T(3)=0; // temperature in degree celcius at which barrier potential has to be found //Calculations dT(2)=T(2)-T(1);// difference in temperature dT(3)=T(3)-T(1);// difference in temperature dV(3)=(-0.002)*dT(3);// barrier potential for silicon decreases by 0.002 volts for each degree celcius rise dV(2)=(-0.002)*dT(2)// barrier potential for silicon decreases by 0.002 volts for each degree celcius rise V(2)=V(1)+dV(2);// to find barrier potential at T(2) V(3)=V(1)+dV(3);// to find barrier potential at T(3) disp("Volts",V(2),"Barrier Potential at 100 Degree celcius =") disp("Volts",V(3),"Barrier Potential at 0 Degree celcius =") // Result // barrier potential at 100 degree celcius is 0.55 volts // barrier potential at 0 degree celcius is 0.75 volts
f431c36bf4fbbbe6929f9bb063515c2781921d96
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH6/EX6.34/Ex6_34.sce
69f94a8213c1557de13426e19abb86e0f08cc022
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
944
sce
Ex6_34.sce
clc; f1=50; // rated frequency of 3- phase induction motor f2=40; // applied frequency vr=0.9; // ratio of applied voltage to rated voltage m=3; // number o phases fr=f2/f1; // ratio of frequencies ir=fr/vr; printf('Ratio of starting current at %d Hz to starting current at %d Hz is %f \n',f1,f2,ir); tr=(m/f1)*(f2/m)*(fr/vr)^2; printf('Ratio of starting torque at %d Hz to starting torque at %d Hz is %f \n',f1,f2,tr); tmr=(m/f1)*(f2/m)*(fr/(vr)^2); printf('Ratio of maximum torque at %d Hz to maximum torque at %d Hz is %f \n',f1,f2,tmr); vr1=sqrt((m/f1)*(f2/m)*fr^2); printf('For the same starting torque ratio of voltage at %d Hz to ratio of voltage at %d Hz is %f\n',f2,f1,vr1); vr2=sqrt((m/f1)*(f2/m)*fr); printf('For the same maximum torque ratio of voltage at %d Hz to ratio of voltage at %d Hz is %f\n',f2,f1,vr2); // answer for ratio of v2/v1 for same starting torque is slightly different from what is given in book
0261e48056f9f900d3e4fcab01b3fd145b346e83
449d555969bfd7befe906877abab098c6e63a0e8
/1970/CH9/EX9.7/CH09Exa7.sce
7293243ad484f9ecce70ddc64943d3d93bda0c5d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
CH09Exa7.sce
// Scilab code Exa9.7 : : Page-392 (2011) clc; clear; h_cut = 1.0545e-34; // Reduced Planck's constant, joule sec R = 1.2e-15; // Distance of closest approach, metre m = 1.67482e-27; // Mass of the nucleon, Kg // For O-17 for A = 17:60 // Mass numbers if A == 17 then omega_O = 5*3^(1/3)*h_cut*17^(-1/3)/(2^(7/3)*m*R^2); // Angular frequency of oxygen // For Ni-60 elseif A == 60 then omega_Ni = 5*3^(1/3)*h_cut*60^(-1/3)/(2^(7/3)*m*R^2); // Angular frequency of nickel end end printf("\nThe angular frequency for oxygen 17 = %4.2e \nThe angular frequency for nickel 60 = %4.2e", omega_O, omega_Ni); // Result // The angular frequency for oxygen 17 = 2.43e+022 // The angular frequency for nickel 60 = 1.60e+022
28a01a13c7b154a203631c4db4a94cd97b699495
449d555969bfd7befe906877abab098c6e63a0e8
/3772/CH3/EX3.12/Ex3_12.sce
5c8e30309415cb9eedf34998312bd1f5587529c2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
737
sce
Ex3_12.sce
// Problem 3.12,Page no.61 clc;clear; close; P=500 //KN //Safe Load d=20 //mm //steel rod diameter n=4 //number of steel rod sigma_c=4 //N/mm**2 //stress in concrete //E_S*E_c**-1=15 //Calculations A_s=4*%pi*4**-1*d**2 //mm**2 //Area os steel rod sigma_s=15*sigma_c //N/mm**2 //stress in steel //P=sigma_s*A_s+sigma_c*A_c //After substituting and simplifying above equation we get, A_c=(P*10**3-sigma_s*1256)*(sigma_c)**-1 //mm**2 //Area of the concrete X=(A_s+A_c)**0.5 //mm //Total cross sectional area P_s=A_s*sigma_s*10**-3 //KN //Load carried by steel //Result printf("Load carried by steel is %.2f kN",P_s) printf("\n stress induced in steel is %.2f kN",sigma_s) printf("\n cross sectional area of column is %.2f mm",X)
e870dfba1b564a9c679e1ccf925e5c944dea8df8
449d555969bfd7befe906877abab098c6e63a0e8
/1418/CH26/EX26.21.d/EX26_21d.sce
620e22fea37e1cd1f7165e9cc03bd31d844af055
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,499
sce
EX26_21d.sce
//EXAMPLE 26.21(d) //Short short DC GENERATOR clc; funcprot(0); //Variable Initialisation I=200;.................................//Load current in Amperes V=100;.................................//Terminal voltage in Volts Ra=0.04;.................................//Armature resisitance in Ohms Rse=0.03;................................//Series field resistance in Ohms Rsh=60;..................................//Shunt filed resistance in Ohms //Short shunt connection Va=V+(I*Rse);............................//Armature terminal voltage in Volts Ish=Va/Rsh;..............................//Shunt field current in Amperes y=round(Ish*1000)/1000;...................//Rounding of decimal places Ia=I+y;................................//Armature current in Amperes E=Va+(Ia*Ra);..........................//Armature induced EMF in Volts y1=round(E*100)/100; disp(y1,"Armature induced EMF in Volts in short shunt connection:"); //Long shunt connection Ish1=V/Rsh;...........................//Shunt field current in Amperes y2=round(Ish1*1000)/1000;.............//Rounding of decimal places Ia=I+y;...............................//Armature current in Amperes Vase=Ia*(Ra+Rse);.......................//Total voltage drop in armature and series field winnding in Volts y3=round(Vase*100)/100;.................//Rounding of decimal places E1=y3+V;.............................//Armature induced EMF in Volts disp(E1,"Armature induced EMF in Volts in long shunt connection:");
5a2c993ebf3c4d692007ecab5cbeceb33782a870
449d555969bfd7befe906877abab098c6e63a0e8
/534/CH7/EX7.7/7_7_Staggered_Arrangement.sce
aebb758cc31b314af4628f444959a61afd24d73f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,707
sce
7_7_Staggered_Arrangement.sce
clear; clc; printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 7.7 Page 443 \n'); //Example 7.7 // Air side Convection coefficient and Heat rate // pressure Drop //Operating Conditions v = 6; //[m/s] Air velocity Tsurr = 15+273; //[K] Surrounding Air Temperature D = .0164; //[m] Diameter of tube Ts = 70+273; //[K] Temp of tube //Staggered arrangement dimensions St = .0313; //[m] Sl = .0343; //[m] //Table A.4 Air Properties T = 288 K rho = 1.217; //[kg/m^3] Density cp = 1007; //[J/kg.K] specific heat uv = 14.82*10^-6; //[m^2/s] Kinematic Viscosity k = 25.3*10^-3; //[W/m.K] Thermal conductivity Pr = .71; //Prandtl Number //Table A.4 Air Properties T = 343 K Pr2 = .701; //Prandtl Number //Table A.4 Air Properties T = 316 K uv3 = 17.4*10^-6; //[m^2/s] Kinematic Viscosity k3 = 27.4*10^-3; //[W/m.K] Thermal conductivity Pr3 = .705; //Prandtl Number Sd = [Sl^2 + (St/2)^2]^.5; Vmax = St*v/(St-D); Re = Vmax*D/uv; //Reynolds number C = .35*(St/Sl)^.2; m = .6; C2 = .95; N = 56; Nt = 8; //Using Equation 7.64 & 7.65 Nu = C2*C*Re^m*Pr^.36*(Pr/Pr2)^.25; h = Nu*k/D; //From Eqnn 7.67 Tso = (Ts-Tsurr)*exp(-(%pi*D*N*h)/(rho*v*Nt*St*cp)); Tlm = ((Ts-Tsurr) - Tso)/(2.30*log10((Ts-Tsurr)/Tso)); q = N*(h*%pi*D*Tlm); Pt = St/D; //From Fig 7.14 X = 1.04; f = .35; NL = 7; press = NL*X*(rho*Vmax^2/2)*f; printf("\n Air side Convection coefficient h = %.1f W/m^2.k and Heat rate q = %.1f kW/m \n Pressure Drop = %.2e bars",h,q/1000,press/100000); //END
2d2262e1cc4673685d6863b32268e10f634a42fc
449d555969bfd7befe906877abab098c6e63a0e8
/165/CH4/EX4.18/ex4_18.sce
a41064d70a2dab6df6d60b38cf24b21ba6b4f9dc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
389
sce
ex4_18.sce
//Example 4.18 clc; Ifsd=1*10^-3; //Full scale deflection current Rm=250; //Meter resistence Erms=10; //RMS voltage //Using Sensitivity Sdc=1/Ifsd; //DC Sentitivity of meter Sac=0.9*Sdc; //AC Sentitivity of meter Rs=Sac*Erms-Rm; //Multiplier resistence disp(Rs,'Multiplier Resistence')
0476d6b1a8702dcf5b4159054adb304c80ae21d7
449d555969bfd7befe906877abab098c6e63a0e8
/1808/CH6/EX6.9/Chapter6_Exampl9.sce
e84995749ac87a07fc660bcbfb8a86b0177b5279
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,646
sce
Chapter6_Exampl9.sce
clc clear //INPUT DATA cpic=1.94;//specific pressure inkJ/kgK cpv2=2.805;//specific pressure in kJ/kgK t21=303;//condenser temperature in K t1=258;//evaporator temperature in K t31=293;//subcooled temperature in K p1=2.36;//pressure in MPa p2=11.67;//pressure in MPa hf1=112.3;//enthalpy in kJ/kg hfg1=1313.7;//enthalpy in kJ/kg hg1=1426;//enthalpy in kJ/kg hf2=323.1;//enthalpy in kJ/kg hfg2=1145.9;//enthalpy in kJ/kg hg2=1469;//enthalpy in kJ/kg sf1=0.457;//entropy in kJ/kgK sf2=1.204;//entropy in kJ/kgK sg1=5.549;//entropy in kJ/kgK sg2=4.984;//entropy in kJ/kgK t2=369.7;//from t-s diagram temperature in K nac=0.8;//adiabatic efficiency in percentage vsa=2.96;//volume in kg/min N=1200;//speed in rpm //CALCULATIONS h2=hg2+cpv2*(t2-t21);//enthalpy in kJ/kg Rc=10*1000*(4.1868*30+335+1.94*5)/(24*60);//Refrigeration capacity in kJ/min Re=hg1-hf2;//Refrigeration effect in kJ/kg m=Rc/Re;//mass flow rate of refrigerant in kg/min h2a=((h2-hg1)/nac)+hg1;//enthalpy in kJ/kg t2a=((t2-t1)/nac)+t1;//Temperature in k d=(vsa*0.509*4/(3.14*1.2*N))^(1/3);//piston displacement of compressor in m l=1.2*d;//length of piston displacement in m w=(h2a-hg1)/0.95;//workdone in kJ/kg wac=m*w/60;//Power of the compressor motor in kW copa=(Re/wac)*(m/60);//COP of air //OUTPUT printf('(a)Refrigeration capacity is %3.1f kJ/min \n (b)Mass flow rate of refrigerant is %3.2f kg/min \n (c)The discharge temperature is %3.2f K \n (d)Piston displacement of the compressor is d %3.4f m \n l is %3.4f m \n(e)Power of the compressor motor is %3.2f kW \n (f)COPa is %3.3f',Rc,m,t2a,d,l,wac,copa)
ab3829e2bc4da1893c4c701447a3142f1e7e3c9b
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfas_oo_hrz_col_d/~BivLCM-SR-bfas_oo_hrz_col_d-PLin-VLin.tst
ea41e483eef5625d0c70a222a56f45018ad68d06
[]
no_license
psdlab/life-in-time-values-and-personality
35fbf5bbe4edd54b429a934caf289fbb0edfefee
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
refs/heads/master
2020-03-24T22:08:27.964205
2019-03-04T17:03:26
2019-03-04T17:03:26
143,070,821
1
0
null
null
null
null
UTF-8
Scilab
false
false
11,974
tst
~BivLCM-SR-bfas_oo_hrz_col_d-PLin-VLin.tst
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM. ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.274446D+00 2 -0.229558D-02 0.226118D-02 3 0.687098D-01 0.129227D-02 0.287669D+00 4 0.126446D-02 0.663098D-03 -0.483197D-02 0.231929D-02 5 -0.761851D-03 0.260320D-03 -0.125295D-04 0.113134D-03 0.338943D-02 6 0.709218D-03 -0.233195D-04 0.975171D-03 -0.223198D-03 -0.362744D-04 7 0.137579D-02 0.354635D-03 0.225896D-02 -0.172092D-05 0.822287D-03 8 -0.403972D-03 -0.124204D-03 0.469590D-03 0.835214D-04 0.229210D-03 9 -0.351885D+00 0.115146D-01 -0.899623D-01 0.173796D-01 0.281615D-01 10 -0.237819D+00 0.210597D-01 -0.815694D-02 0.223137D-02 0.164675D+00 11 -0.251346D+00 0.286909D-01 0.176689D-02 0.185566D-01 0.521451D-01 12 -0.368500D+00 0.131038D-01 -0.833697D+00 0.426869D-01 -0.222582D-01 13 0.454266D-01 0.774431D-03 0.147672D+00 -0.192072D-01 0.142274D-01 14 -0.261019D+00 -0.169464D-01 -0.505072D+00 0.173443D-01 0.617228D-02 15 -0.901575D+00 -0.176086D-01 0.116518D+00 -0.343750D-01 -0.426249D-01 16 0.424218D-01 -0.131665D-01 0.325109D-02 -0.486504D-02 -0.149790D-03 17 -0.949945D-02 0.228289D-03 -0.575659D-02 -0.162756D-03 -0.772446D-03 18 0.572980D-01 -0.936946D-02 0.158889D+00 0.540762D-02 -0.117079D-01 19 -0.239785D-01 0.178741D-03 0.283243D-01 0.111924D-01 -0.658371D-02 20 0.254457D+00 0.900715D-02 -0.247486D+01 0.568521D-01 0.408484D-01 21 0.489329D-02 -0.613252D-02 0.119970D-01 -0.203462D-01 0.134004D-01 22 -0.432211D-02 -0.404702D-03 -0.606385D-02 -0.393271D-04 -0.523403D-03 23 0.194276D-01 -0.213766D-02 0.387339D-01 -0.127629D-01 -0.613721D-03 24 -0.512120D-02 -0.634681D-04 -0.256869D-02 -0.103012D-03 -0.159041D-03 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 0.976672D-03 7 0.106814D-02 0.398656D-02 8 0.266433D-04 -0.410560D-03 0.299344D-02 9 -0.477796D-02 0.941524D-02 -0.135063D-01 0.331256D+02 10 0.927068D-02 0.461669D-01 0.184907D-01 0.130105D+01 0.192139D+02 11 -0.309131D-01 0.196220D-02 0.592000D-02 0.888275D+01 0.327676D+01 12 -0.658671D-01 0.427768D-01 -0.210074D-01 0.640505D+01 0.230630D+00 13 0.687599D-01 0.121242D+00 -0.116780D-03 0.106600D+01 0.403380D+01 14 -0.137382D-01 -0.290088D-01 0.209559D+00 0.112895D+01 0.300854D+01 15 0.204799D-03 0.211028D-01 -0.261421D-01 0.123917D+01 -0.824851D+01 16 0.485374D-03 -0.284446D-02 0.101080D-02 0.367015D+00 -0.842261D-01 17 0.117714D-04 -0.677437D-03 0.365910D-03 -0.924650D-01 -0.186622D-01 18 -0.387934D-01 -0.787118D-01 -0.119222D-01 0.216496D+01 -0.328931D+01 19 -0.163276D-01 -0.708734D-03 -0.119334D-02 -0.725035D+00 -0.101563D+01 20 -0.248586D-02 0.150450D-01 -0.249695D+00 0.572971D+01 -0.202631D+01 21 0.172856D-01 -0.227910D-02 0.640809D-02 0.930247D+00 0.135261D+01 22 0.665548D-04 -0.464369D-03 0.397325D-03 -0.594217D-01 -0.445289D-02 23 0.316994D-02 0.266656D-02 -0.695820D-02 -0.827494D-02 0.727519D-01 24 -0.456481D-04 -0.848918D-03 0.117472D-02 -0.499939D-01 0.146985D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 0.269112D+02 12 0.202453D+02 0.129254D+03 13 -0.271020D+01 -0.133854D+01 0.127574D+02 14 0.189936D+01 -0.341732D-01 0.528487D+00 0.488254D+02 15 -0.344403D+00 0.235541D+01 -0.456651D+00 -0.207275D+01 0.166141D+03 16 -0.275071D-01 -0.392488D+00 0.428685D-02 0.299776D+00 0.199989D+01 17 -0.605964D-01 0.294154D-01 -0.801291D-02 0.269611D-01 -0.710774D+00 18 -0.245259D+01 -0.884096D+01 -0.713332D+01 -0.268902D+01 0.371059D+02 19 0.449524D+00 0.170075D+01 -0.141624D+01 -0.603182D+00 -0.307874D+01 20 -0.358316D+01 -0.256153D+02 -0.502387D+01 -0.225852D+02 0.710130D+01 21 -0.474623D+00 -0.272646D+01 0.138880D+01 0.105143D+01 0.518954D+01 22 -0.392540D-01 0.588280D-01 0.140032D-01 0.580111D-01 -0.259088D+00 23 -0.165697D-01 0.824332D+00 0.187775D+00 -0.605993D+00 0.134461D+00 24 -0.441552D-01 -0.713688D-01 0.170167D-01 0.118717D+00 -0.663994D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 0.378501D+00 17 -0.301749D-01 0.878305D-02 18 0.649946D+00 -0.268356D+00 0.112701D+03 19 -0.396279D-01 0.693649D-02 0.291000D+01 0.365055D+01 20 -0.196764D-01 -0.178592D+00 0.622853D+02 0.188960D+01 0.299096D+03 21 0.196683D+00 -0.217619D-01 -0.874929D+00 -0.337403D+01 -0.122465D+01 22 -0.320058D-02 0.379296D-02 -0.557230D+00 -0.248818D-01 -0.505891D+00 23 0.441702D-01 -0.143866D-02 0.204878D+00 -0.228822D+00 0.165610D+01 24 0.778899D-03 0.247289D-02 -0.351414D+00 -0.636024D-02 -0.125855D+01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 0.410668D+01 22 -0.119451D-01 0.754186D-02 23 0.383502D+00 -0.386983D-02 0.639925D+00 24 0.480612D-02 0.536140D-02 -0.545587D-01 0.152066D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.092 1.000 3 0.245 0.051 1.000 4 0.050 0.290 -0.187 1.000 5 -0.025 0.094 0.000 0.040 1.000 6 0.043 -0.016 0.058 -0.148 -0.020 7 0.042 0.118 0.067 -0.001 0.224 8 -0.014 -0.048 0.016 0.032 0.072 9 -0.117 0.042 -0.029 0.063 0.084 10 -0.104 0.101 -0.003 0.011 0.645 11 -0.092 0.116 0.001 0.074 0.173 12 -0.062 0.024 -0.137 0.078 -0.034 13 0.024 0.005 0.077 -0.112 0.068 14 -0.071 -0.051 -0.135 0.052 0.015 15 -0.134 -0.029 0.017 -0.055 -0.057 16 0.132 -0.450 0.010 -0.164 -0.004 17 -0.193 0.051 -0.115 -0.036 -0.142 18 0.010 -0.019 0.028 0.011 -0.019 19 -0.024 0.002 0.028 0.122 -0.059 20 0.028 0.011 -0.267 0.068 0.041 21 0.005 -0.064 0.011 -0.208 0.114 22 -0.095 -0.098 -0.130 -0.009 -0.104 23 0.046 -0.056 0.090 -0.331 -0.013 24 -0.079 -0.011 -0.039 -0.017 -0.022 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 1.000 7 0.541 1.000 8 0.016 -0.119 1.000 9 -0.027 0.026 -0.043 1.000 10 0.068 0.167 0.077 0.052 1.000 11 -0.191 0.006 0.021 0.298 0.144 12 -0.185 0.060 -0.034 0.098 0.005 13 0.616 0.538 -0.001 0.052 0.258 14 -0.063 -0.066 0.548 0.028 0.098 15 0.001 0.026 -0.037 0.017 -0.146 16 0.025 -0.073 0.030 0.104 -0.031 17 0.004 -0.114 0.071 -0.171 -0.045 18 -0.117 -0.117 -0.021 0.035 -0.071 19 -0.273 -0.006 -0.011 -0.066 -0.121 20 -0.005 0.014 -0.264 0.058 -0.027 21 0.273 -0.018 0.058 0.080 0.152 22 0.025 -0.085 0.084 -0.119 -0.012 23 0.127 0.053 -0.159 -0.002 0.021 24 -0.012 -0.109 0.174 -0.070 0.027 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 1.000 12 0.343 1.000 13 -0.146 -0.033 1.000 14 0.052 0.000 0.021 1.000 15 -0.005 0.016 -0.010 -0.023 1.000 16 -0.009 -0.056 0.002 0.070 0.252 17 -0.125 0.028 -0.024 0.041 -0.588 18 -0.045 -0.073 -0.188 -0.036 0.271 19 0.045 0.078 -0.208 -0.045 -0.125 20 -0.040 -0.130 -0.081 -0.187 0.032 21 -0.045 -0.118 0.192 0.074 0.199 22 -0.087 0.060 0.045 0.096 -0.231 23 -0.004 0.091 0.066 -0.108 0.013 24 -0.069 -0.051 0.039 0.138 -0.042 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 1.000 17 -0.523 1.000 18 0.100 -0.270 1.000 19 -0.034 0.039 0.143 1.000 20 -0.002 -0.110 0.339 0.057 1.000 21 0.158 -0.115 -0.041 -0.871 -0.035 22 -0.060 0.466 -0.604 -0.150 -0.337 23 0.090 -0.019 0.024 -0.150 0.120 24 0.010 0.214 -0.268 -0.027 -0.590 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 1.000 22 -0.068 1.000 23 0.237 -0.056 1.000 24 0.019 0.501 -0.553 1.000
900d1c88a869a692a63a749ff5d922c318d71fc8
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set5/s_Electrical_And_Electronic_Principles_And_Technology_J._Bird_1529.zip/Electrical_And_Electronic_Principles_And_Technology_J._Bird_1529/CH21/EX21.22/21_22.sce
a4fbbe80a71c654a1d3e70e27a62790ed9e7b730
[]
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
259
sce
21_22.sce
errcatch(-1,"stop");mode(2);//Chapter 21, Problem 22 ; R1=112; //equivalent input resistance Rl=7; //load resistance N=sqrt(R1/Rl); //turns ratio printf("Optimum turns ratio = %d : 1 ",N); exit();
6875bfff98e31583708b7c67c344cd29f8a9271f
397456b742a46d88c251aa168bfe794903987f93
/Elephant Herd Optimization/standard/scilab/elephant-herd-o.sce
b77ae631c43e79343f3e874c9e577fe22ec25d41
[]
no_license
JonesCG/PROJECT-NIOA
b5dcc7820d818369a4115fbb34b0f7ba02d7a129
7e6a3aa9a5deda6aa4eec9f4d523556844593c8b
refs/heads/master
2022-08-16T14:06:54.967718
2020-05-18T08:17:47
2020-05-18T08:17:47
264,872,793
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,747
sce
elephant-herd-o.sce
clear clc exec('objective.sce'); disp("RUNNING...") rand('seed',getdate('s')) POPSIZE = 50 DIM = 2 UPPER = 100 LOWER = -100 MAXITER = 50 // SCALE FACTOR ALPHA a and BETA b a = 0.5 b = 0.1 // NUMBER OF CLAN NCLAN = 5 ELEPHANT = rand(POPSIZE,DIM).*(UPPER-LOWER) + LOWER FIT = F1(ELEPHANT) // GET GBEST [BESTFIT IND] = min(FIT) GBESTFIT = BESTFIT GBESTPOS = ELEPHANT(IND,:) xtitle("INITIALIZATION") square(LOWER,LOWER,UPPER,UPPER) plot(ELEPHANT(:,1),ELEPHANT(:,2),'b.') plot(GBESTPOS(:,1),GBESTPOS(:,2),'g.') xs2png(gcf(),'gif/eho/ITER0.png') clf() for ITER=1:MAXITER [FIT SORTIND] = gsort(FIT,'lr','i') ELEPHANT = ELEPHANT(SORTIND,:) // CLAN UPDATING OPERATOR estart = 1 member = POPSIZE/NCLAN for c=1:NCLAN IN = estart:member*c ELEPHANT(IN,:) = ELEPHANT(IN,:) + a.*(repmat(ELEPHANT(estart,:),[member 1]) - ELEPHANT(IN,:)).*rand(member,DIM) CENTER = mean(ELEPHANT(estart:member*c,:),'r') ELEPHANT(estart,:) = CENTER.*b estart = estart+member end // SEPARATING OPERATOR WN = matrix(1:POPSIZE,[member NCLAN])(member,:) ELEPHANT(WN,:) = LOWER + (UPPER - LOWER +1.0).*rand(NCLAN,DIM) ELEPHANT = ammend(ELEPHANT,UPPER,LOWER) // EVALUATE FIT = F1(ELEPHANT) [BESTFIT IND] = min(FIT) if BESTFIT < GBESTFIT GBESTFIT = BESTFIT GBESTPOS = ELEPHANT(IND,:) end FITRUN(ITER) = GBESTFIT xtitle("ITER "+string(ITER)) square(LOWER,LOWER,UPPER,UPPER) plot(ELEPHANT(:,1),ELEPHANT(:,2),'b.') plot(GBESTPOS(:,1),GBESTPOS(:,2),'g.') xs2png(gcf(),'gif/eho/ITER'+string(ITER)+'.png') clf() end //plot((1:MAXITER)',FITRUN,'g-')
db536810d4bb9bec2f729cbc4de84f172c54b00e
449d555969bfd7befe906877abab098c6e63a0e8
/2507/CH12/EX12.4/Ex12_4.sce
e549722c7d64d9650a93da0535337c66214a4a77
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
863
sce
Ex12_4.sce
clc clear printf("Example 12.4 | Page number 418 \n\n"); //Find excess air and % theoretical air //Given data xC3H8 = 0.2 //mole fraction of propane xC4H10 = 0.8 //mole fraction of butane xO2 = 0.21 //mole fraction of O2 xN2 = 0.79 //mole fraction of N2 //Molar masses of O2,H2,N2 & C respectively MO2 = 32 //g/mol MH2 = 2 //g/mol MN2 = 28 //g/mol MC = 12 //g/mol Stoichiometric_air = 15.42 //kg/kg //Solution //C balance b = xC3H8*3+xC4H10*4 //H2 balance e = xC3H8*4 + xC4H10*5 //O2 balance d = 40*xO2-b -0.5*e //N2 balance c = 40*xN2 actual_air = 40*(xO2*MO2 + xN2*MN2)/(xC3H8*(MC*3+MH2*4)+xC4H10*(MC*4+MH2*5)) //kg/kg gas excess_air = (actual_air - Stoichiometric_air)/Stoichiometric_air*100 printf("Excess air = %.1f%%\n",excess_air) theoritical_air = 100+excess_air printf("Theoritical air = %.1f%%\n",theoritical_air)
c7e4f997e6b90e96dc3ec37c19abbeeb639bef3a
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH4/EX4.a.16/Example_a_4_16.sce
bc4ca59154c1387f0b3a283f11775ddd1d74ee90
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
267
sce
Example_a_4_16.sce
//Example_a_4_16 page no:182 clc; x0=(%pi/3); x1=%pi; Vav=10*(1/%pi)*(integrate('sin(wt)','wt',x0,x1)); Vrms=sqrt(10^2*(1/%pi)*(integrate('sin(wt)^2','wt',x0,x1))); disp(Vav,"the average value Vav is (in V)"); disp(Vrms,"the effective value Vrms is (in V)");
356eafa31310b1a42c1ca65699057a988287913f
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH19/EX19.4/Ex19_4.sce
e5f31b26396bced864dc238fa5fbf770b55cd7be
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
322
sce
Ex19_4.sce
clc; //e.g 19.4 Vcc=12; Rc=10*10**3; Re=1*10**3; Rb=500*10**3; beta=50; Ic=Vcc/(Re+(Rb/beta)); disp('mA',Ic*10**3,"Ic="); Ie=Ic; re=25/(Ie*10**3); disp('ohm',re*1,"re="); Ri=beta*re; disp('ohm',Ri*1,"Ri="); Ris=(Rb*Ri)/(Rb+Ri); disp('ohm',Ris*1,"Ris="); R0=Rc; Av=R0/re; disp(Av); Av=Rc/Re; disp(Av);
8d76b85f7de5bda68acac15c37dc384039a92b1f
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set7/s_Electronic_Measurements_And_Instrumentation_P._Sharma_876.zip/Electronic_Measurements_And_Instrumentation_P._Sharma_876/CH4/EX4.6/Ex4_6.sce
062095bae544c90c5a03a00583df60fbe056c03f
[]
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
470
sce
Ex4_6.sce
errcatch(-1,"stop");mode(2);//caption:Find magnitude and phase angle of Z4 arm //Ex4.6 Z1=200//impedance of first arm(in ohm) Za=30//phase angle of first arm(in degree) Z2=250//impedance of second arm(in ohm) Zb=-40//phase angle of second arm(in degree) Z3=150//impedane of third arm(in ohm) Zc=0//phase angle of third arm(in degree) Z4=(Z2*Z3)/Z1 disp(Z4,'magnitude of Z4 arm(in ohm)=') Zd=Zb+Zc-Za disp(Zd,'phase angle of Z4 arm(in degree)=') exit();
bd8041329eb45169a098e3dd6371e526ede89858
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH20/EX20.4/example20_4.sce
c36ba11616f962bb5d32922d85a759eb39c2c533
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
209
sce
example20_4.sce
v=120; f=60; l=5; disp("Part a"); x_l=2*%pi*f*l; i=v/x_l; disp("the current (in mA) flowing is"); disp(i*10^3); disp("Part b"); im=i*sqrt(2); disp("the equation for current is i = 0.091*sin(377t) A");
81ebe0f9cce80c9a64264ee9fdef932503d241ef
e5011b60e41005e823ea544d8bfeac90bd598ce6
/trigger_vlsisim/trigger.tst
26aa53b957e104abd38c927331a689775dce9aa2
[]
no_license
Alexander-Andrade/Andrade_kidswt3_var9
120bf2ce69ffd298963f423c2ba966021cac0d86
278de61f5f24e249c69029eecd3e593369b00c8a
refs/heads/master
2020-08-01T19:25:37.450759
2016-11-12T18:03:20
2016-11-12T18:03:20
73,569,322
0
0
null
null
null
null
UTF-8
Scilab
false
false
24
tst
trigger.tst
00 01 10 11 01 00 11 10
e7f73e6001bc28253f9395e287505056bb04e679
4bbc2bd7e905b75d38d36d8eefdf3e34ba805727
/ee_scicoslab/installer.sce
8e8add604768f581a14c3ebc4165ede857ee7dd4
[]
no_license
mannychang/erika2_Scicos-FLEX
397be88001bdef59c0515652a365dbd645d60240
12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba
refs/heads/master
2021-02-08T17:01:20.857172
2012-07-10T12:18:28
2012-07-10T12:18:28
244,174,890
0
0
null
null
null
null
UTF-8
Scilab
false
false
41,712
sce
installer.sce
// *********************************************************** // * ScicosLab Pack Installer * // * Requires: Scicoslab v4.4.1 * // * Built/Tested On: XP, Windows 7 * // * Description: Installation script of the Code generator * // * for FLEX and EASYLAB boards * // * Copyright (c) 2011 Evidence Srl * // * Author: Dario Di Stefano, Evidence * // *********************************************************** // Set global variables EE_DEBUG = 1; MYDIR = get_absolute_file_path('installer.sce'); OLDDIR = pwd(); SCIDIR = strsubst(SCI,'/','\'); if exists('INSTALLER_BATCH_MODE')==0 & exists('ans_inst_dialog')==0 ans_inst_dialog = buttondialog("ScicosLab pack Setup utility.\nChoose if install or uninstall the toolbox. ","Install|Uninstall|Exit","question"); ans_inst_dialog_up = 1; else if exists('ans_inst_dialog')==0 ans_inst_dialog='1'; // Install by default... end end if ans_inst_dialog=='3' | ans_inst_dialog=='0' cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end // ********************************************************************************* // ************************* SCICOS_PACK UNINSTALLER ******************************* if ans_inst_dialog=='2' // Uninstaller section: exec('unistaller.sce'); // TEST if user is Admin cd(SCIDIR + '\contrib'); winId_wait =waitbar(" " + "\n" + .. " EE Scicos pack Setup. " + "\n" + .. " Uninstallation may take several seconds... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " ); cmd = 'dir > test.x'; unix(cmd); [x,err] = fileinfo('test.x'); if err ~= 0 waitbar(" " + "\n" + .. " # Uninstallation Error # " + "\n" + .. " Access denied! Is not possible to delete the files. " + "\n" + .. " Please, run ScicosLab with administrator privileges. " + "\n" + .. " Uninstallation aborted! " + "\n" + .. " ", winId_wait); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; else cmd = 'del /Q test.x'; unix(cmd); end // Change working directory cd(MYDIR); // Load libraries getf scicos_ee\utils\utils.sci // Check .scilab file presence res = grep(SCIHOME,'4.4.1'); if res==[] cd(MYDIR+'scicos_ee\user\Scilab\4.4b7'); // 4.4b7 else cd(MYDIR+'scicos_ee\user\ScicosLab\4.4.1'); // 4.4.1 end [x,ierr]=fileinfo(SCIHOME+'\.scilab'); if ierr==0 txt=mgetl(SCIHOME+'\.scilab'); res_begin = grep(txt,'### Scicos EE ###'); res_end = grep(txt,'### Scicos EE - end ###'); if res_begin==[] EE_debug_printf(' #warning: .scilab is already cleaned!', 0); elseif res_end==[] EE_debug_printf(' #error: .scilab file is corrupted!', 0); waitbar(" " + "\n" + .. " # Uninstallation Error # " + "\n" + .. " .scilab file is corrupted! " + "\n" + .. " (Please, delete or modify the file before to retry) " + "\n" + .. " " + "\n" + .. " ", winId_wait); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; else // To change '.scilab' file user should not be Admin res = size(txt); new_txt = [txt(1:res_begin-1);txt(res_end+1:res(1))]; mputl(new_txt, SCIHOME+'\.scilab'); EE_debug_printf(' #warning: .scilab was successfully restored!', 0); end else EE_debug_printf(' #warning: .scilab file not found!.', 0); end // 50% waitbar(0.5, winId_wait); // Delete scicos_ee folder from contrib waitbar(" " + "\n" + .. " Deleting files... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' Deleting files...', 0); // Unlink DLLs exec(MYDIR + 'scicos_ee\utils\unlink_dll.sce'); cd(SCIDIR + '\contrib'); // Removing ScicosLabPack_install.log [loginfo,ierr]=fileinfo('ScicosLabPack_install.log'); if ierr==0 cmd = 'del /Q ScicosLabPack_install.log'; unix(cmd); end // Removing scicos_ee res = isdir(SCIDIR+'\contrib\scicos_ee'); if res==%T cmd = 'rmdir /s /q scicos_ee'; unix(cmd); end // 100% waitbar(1, winId_wait); waitbar(" " + "\n" + .. " Uninstallation completed successfully! " + "\n" + .. " Restart ScicosLab for the changes to take effect... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' Uninstallation completed successfully!', 0); EE_debug_printf(' Please, restart ScicosLab for the changes to take effect...', 0); cd(home); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end // ********************************************************************************* // *************************** SCICOS_PACK INSTALLER ******************************* if ans_inst_dialog=='1' // Initial message winId_wait =waitbar(" " + "\n" + .. " EE Scicos pack Setup. " + "\n" + .. " Installation may take several seconds... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " "); // Change working directory cd(MYDIR); // Load libraries getf scicos_ee\utils\utils.sci else cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; // added only for completeness... end // Installation test cd(SCIDIR + '\contrib'); cmd = 'dir > test.x'; unix(cmd); [x,err] = fileinfo('test.x'); if err ~= 0 waitbar(" " + "\n" + .. " # Installation Error # " + "\n" + .. " Access denied! " + "\n" + .. " Please, run ScicosLab with administrator privileges. " + "\n" + .. " Installation aborted! " + "\n" + .. " ", winId_wait); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; else cmd = 'del /Q test.x'; unix(cmd); end cd(MYDIR); // Installation log [fd_log, err] = mopen(SCIDIR+'\contrib\ScicosLabPack_install.log', 'w'); if err ~= 0 waitbar(" " + "\n" + .. " # Installation Error # " + "\n" + .. " Access denied! Is not possible to create the log file. " + "\n" + .. " Please, run ScicosLab with administrator privileges. " + "\n" + .. " Installation aborted! " + "\n" + .. " ", winId_wait); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; else EE_debug_printf('### EE Scicoslab pack installer ###', fd_log); end // 10% waitbar(0.1, winId_wait); if exists('NO_APPS_CHECK')==0 // --- Check Cygwin presence --- waitbar(" " + "\n" + .. " Check Cygwin presence... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); [x,ierr]=fileinfo('C:\cygwin\bin\bash.exe'); if ierr==0 waitbar(" " + "\n" + .. " Check Cygwin presence...found! " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); else waitbar(" " + "\n" + .. " # Installation Warning # " + "\n" + .. " Cygwin not found! " + "\n" + .. " Cygwin should be installed in C:\ " + "\n" + .. " if you plan to generate code for dsPIC. " + "\n" + .. " ", winId_wait); EE_debug_printf(' #Warning Cygwin not found!', fd_log); end // --- Create apps.list (installed applications list) --- cd(MYDIR+'scicos_ee\utils'); cmd = 'installed_win_apps_list.bat > apps.list'; unix(cmd); cd(MYDIR+'scicos_ee\utils'); txt=mgetl('apps.list'); // 20 % waitbar(0.2, winId_wait); // Check Visual C++ presence waitbar(" " + "\n" + .. " Check Visual C++ 2008 presence... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); res = grep(txt,'Visual C++ 2008'); if res==[] waitbar(" " + "\n" + .. " # Installation Warning # " + "\n" + .. " Visual C++ not found! " + "\n" + .. " Installation of Visual C++ 2008 Express Edition " + "\n" + .. " is required by the ScicosLab EE pack! " + "\n" + .. " ", winId_wait); EE_debug_printf(' #warning: Visual C++ 2008 not found!', fd_log); EE_debug_printf(' #warning: Installation of Visual C++ 2008 Express Edition is required by the ScicosLab EE pack!', fd_log); end // Check Java presence waitbar(" " + "\n" + .. " Check Java presence... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); res = grep(txt,'Java(TM)'); if res==[] EE_debug_printf(' #warning: Java not found!', fd_log); EE_debug_printf(' #warning: Installation of Java is required by the EE-ScicosLab code generator!', fd_log); waitbar(" " + "\n" + .. " # Installation Warning # " + "\n" + .. " Java not found! " + "\n" + .. " Java is required by the EE-ScicosLab code generator! " + "\n" + .. " " + "\n" + .. " ", winId_wait); end end waitbar(" " + "\n" + .. " Check Visual C++ 2008 settings... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); VC_path_valid = %F; if exists('visualc_path')==0 [x_x_x,vcpp_detect_err] = fileinfo(MYDIR + 'scicos_ee\utils\vcpp_detect.sce'); if vcpp_detect_err == 0 exec(MYDIR + 'scicos_ee\utils\vcpp_detect.sce'); else visualc_path = 'C:\Programmi\Microsoft Visual Studio 9.0\VC'; end end while VC_path_valid==%F if exists('INSTALLER_BATCH_MODE')==0 // in batch mode do not display the dialog window visualc_path = x_dialog(['Enter Visual C++ directory path'],[visualc_path]); visualc_path_up = 1; else if exists('INSTALLER_BATCH_MODE')==1 EE_debug_printf(' #warning: Installation in batch mode is using the default Visual C++ path!', fd_log); end end if visualc_path == [] waitbar(" " + "\n" + .. " # Installation Error # " + "\n" + .. " Please, install a valid Visual C++ compiler " + "\n" + .. " otherwise code generator will not work! " + "\n" + .. " " + "\n" + .. " Installation aborted! ", winId_wait); EE_debug_printf(' Installation aborted!', fd_log); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end visualc_path = visualc_path(1); // to avoid problems in case of multi-string array. visualc_path = strsubst(visualc_path,'/','\'); ind_slash = strindex(visualc_path,'\'); len_path = length(visualc_path); if ind_slash(length(ind_slash)) == len_path strs_temp = strsplit(visualc_path,[ind_slash(length(ind_slash))-1, ind_slash(length(ind_slash))-1]); visualc_path = strs_temp(1); end [x,ierr]=fileinfo(visualc_path + '\bin\cl.exe'); if ierr<0 // path is wrong!!! VC_path_valid = %F; if exists('INSTALLER_BATCH_MODE')==0 & exists('vcansw_retry')==0 vcansw_retry = buttondialog("Inserted path is not valid! (Yes: to retry, No: to abort)","yes|no","question"); vcansw_retry_up = 1; else if exists('vcansw_retry')==0 vcansw_retry = '2'; // error in case of batch_mode - installer... end end if vcansw_retry=='2' waitbar(" " + "\n" + .. " # Installation Error # " + "\n" + .. " Please, install a valid Visual C++ compiler " + "\n" + .. " otherwise code generator will not work! " + "\n" + .. " path + /bin/cl.exe NOT FOUND! " + "\n" + .. " Installation aborted! ", winId_wait); EE_debug_printf(' Installation aborted!', fd_log); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end if vcansw_retry == '0' VC_path_valid = %T; // ignore wrong paths... end else VC_path_valid = %T; // path is OK... end if exists('vcansw_retry_up')==1 clear vcansw_retry vcansw_retry_up end end [x,err] = fileinfo(MYDIR + "scicos_ee\bin\SMCube.exe"); if err == 0 // CONFIGURATION.INI file is created [fd,err] = mopen(MYDIR+'scicos_ee\utils\configuration.ini', 'w'); if err ~= 0 waitbar(" " + "\n" + .. " # Installation Error # " + "\n" + .. " Access denied! Is not possible to create a pref file! " + "\n" + .. " Please, run ScicosLab with administrator privileges. " + "\n" + .. " Installation aborted! " + "\n" + .. " ", winId_wait); EE_debug_printf(' #error: Access denied! Is not possible to create a configuration file!', fd_log); EE_debug_printf(' #error: Please, run ScicosLab with administrator privileges to install the toolbox', fd_log); EE_debug_printf(' Installation aborted!', fd_log); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end mfprintf(fd,"##Compiler path, including the executable file name\n"); mfprintf(fd,"Compiler="); mfprintf(fd, strsubst(visualc_path,'\','\\')); mfprintf(fd,"\\bin\\cl.exe\n"); mclose(fd); waitbar(" " + "\n" + .. " Creating preferences file configuration.ini ... Done! " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); end waitbar(" " + "\n" + .. " C30 compiler settings: " + "\n" + .. " - Recommended version: v3.30 or later " + "\n" + .. " - Bad version: v3.25, sprintf_block cannot be compiled!" + "\n" + .. " For further info visit: http://www.microchip.com/ " + "\n" + .. " ", winId_wait); if exists('INSTALLER_BATCH_MODE')==0 & exists('answ_c30')==0 answ_c30 = buttondialog("Code Generation for dsPIC DSC microcontroller requires a valid path for the Microchip C30 Compiler.\n" + .. "Please answer yes if you plan to generate code for the target.\n" + .. "If you are only installing the tool for simulation purposes, and not for code generation, you can safely answer No.","yes|no","question"); answ_c30_up = 1; if answ_c30=='2' | answ_c30=='0' waitbar(" " + "\n" + .. " # Installation Warning # " + "\n" + .. " C30 compiler not specified " + "\n" + .. " Code generator will not work! " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' #warning: If C30 compiler is not specified, code generator is disabled!', fd_log); end else if exists('answ_c30')==0 answ_c30 = '1'; end end // C30 path CC_path_valid=%F; // path is non valid at the moment... if exists('c30_asm30_paths')==0 [x_x_x,c30_detect_err] = fileinfo(MYDIR + 'scicos_ee\utils\c30_detect.sce'); if c30_detect_err == 0 exec(MYDIR + 'scicos_ee\utils\c30_detect.sce'); else c30_asm30_paths = 'C:\Programmi\Microchip\MPLAB C30'; end end while CC_path_valid==%F if exists('INSTALLER_BATCH_MODE')==0 & answ_c30=='1' // in batch mode do not display the dialog window c30_asm30_paths = x_dialog(['Enter C30 installation directory path';.. '- Recommended version: v3.30 or later';.. '- Bad version: v3.25, sprintf_block cannot be compiled!';.. 'For further info visit: http://www.microchip.com/'],[c30_asm30_paths]); c30_asm30_paths_up = 1; else if exists('INSTALLER_BATCH_MODE')==1 EE_debug_printf(' #warning: Installation in batch mode is using the default C30 path!', fd_log); end end if c30_asm30_paths==[] [x_x_x,c30_detect_err] = fileinfo(MYDIR + 'scicos_ee\utils\c30_detect.sce'); if c30_detect_err == 0 exec(MYDIR + 'scicos_ee\utils\c30_detect.sce'); else c30_asm30_paths = 'C:\Programmi\Microchip\MPLAB C30'; end answ_c30 = buttondialog("Code Generation for dsPIC DSC microcontroller requires a valid path for the Microchip C30 Compiler.\n" + .. "Please answer yes if you plan to generate code for the target.\n" + .. "If you are only installing the tool for simulation purposes, and not for code generation, you can safely answer No.","yes|no","question"); answ_c30_up = 1; if answ_c30=='2' | answ_c30=='0' waitbar(" " + "\n" + .. " # Installation Warning # " + "\n" + .. " C30 compiler not specified " + "\n" + .. " Code generator will not work! " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' #warning: If C30 compiler is not specified, code generator is disabled!', fd_log); else continue; end end c30_asm30_paths = c30_asm30_paths(1); // to avoid problems in case of multi-string array. c30_asm30_paths = strsubst(c30_asm30_paths,'\','/'); ind_slash = strindex(c30_asm30_paths,'/'); len_path = length(c30_asm30_paths); if ind_slash(length(ind_slash)) == len_path strs_temp = strsplit(c30_asm30_paths,[ind_slash(length(ind_slash))-1, ind_slash(length(ind_slash))-1]); c30_asm30_paths = strs_temp(1); end [x,ierr]=fileinfo(c30_asm30_paths + '/bin/pic30-gcc.exe'); if ierr<0 & answ_c30=='1' // path is wrong!!! CC_path_valid = %F; if exists('INSTALLER_BATCH_MODE')==0 & exists('answ_retry')==0 answ_retry = buttondialog("Inserted path is not valid! (Yes: to retry, No: to abort)","yes|no","question"); answ_retry_up = 1; else if exists('answ_retry')==0 answ_retry = '2'; // error in case of batch_mode - installer... end end if answ_retry=='2' waitbar(" " + "\n" + .. " # Installation Error # " + "\n" + .. " Please, install a valid compiler " + "\n" + .. " otherwise code generator will not work! " + "\n" + .. " path + /bin/pic30-gcc.exe NOT FOUND! " + "\n" + .. " Installation aborted! ", winId_wait); EE_debug_printf(' Installation aborted!', fd_log); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end if answ_retry=='0' CC_path_valid = %T; // ignore wrong paths... end else CC_path_valid = %T; // path is OK... end if exists('answ_retry_up')==1 clear answ_retry answ_retry_up end end // COMMON_OIL.PREF file is created [fd,err] = mopen(MYDIR+'scicos_ee\utils\common_oil.pref', 'w'); if err ~= 0 waitbar(" " + "\n" + .. " # Installation Error # " + "\n" + .. " Access denied! Is not possible to create a pref file! " + "\n" + .. " Please, run ScicosLab with administrator privileges. " + "\n" + .. " Installation aborted! " + "\n" + .. " ", winId_wait); EE_debug_printf(' #error: Access denied! Is not possible to create a preferences file!', fd_log); EE_debug_printf(' #error: Please, run ScicosLab with administrator privileges to install the toolbox', fd_log); EE_debug_printf(' Installation aborted!', fd_log); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end mfprintf(fd,"# Path to the ASM30 Assembler\n"); mfprintf(fd,"# NOT the assembler distributed with the C30 Compiler!\n"); mfprintf(fd,"preference_pic30__path_for_asm_compiler = "); //mfprintf(fd, strsubst(c30_asm30_paths,'\','\\\\') ); mfprintf(fd, c30_asm30_paths ); mfprintf(fd,"\n"); mfprintf(fd,"\n"); mfprintf(fd,"# Path to the C30 Assembler\n"); mfprintf(fd,"preference_pic30__path_for_gcc_compiler = "); //mfprintf(fd, strsubst(c30_asm30_paths,'\','\\\\') ); mfprintf(fd, c30_asm30_paths ); mfprintf(fd,"\n"); mfprintf(fd,"\n"); mfprintf(fd,"# Erika Enterprise path\n"); mfprintf(fd,"erika_enterprise_location=${eclipse_home}/../ee\n"); mfprintf(fd,"\n"); mfprintf(fd,"\n"); mclose(fd); waitbar(" " + "\n" + .. " Creating preferences file common_oil.pref ... Done! " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); // 30% waitbar(0.3, winId_wait); // Check the existence of scicos_ee folder in contrib res = isdir(SCIDIR+'\contrib\scicos_ee'); if res==%T waitbar(" " + "\n" + .. " # Installation Warning # " + "\n" + .. " An old version of the ScicosLab pack was found! " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' An old version of the ScicosLab pack was found!', fd_log); if exists('INSTALLER_BATCH_MODE')==0 & exists('ans_old_inst_rm')==0 ans_old_inst_rm = buttondialog("The old version of the ScicosLab pack will be removed.\nDo you want to continue? (Yes: to continue, No: to abort)","yes|no","question"); ans_old_inst_rm_up = 1; else if exists('ans_old_inst_rm')==0 ans_old_inst_rm = '1'; // remove old pack by default. end end if ans_old_inst_rm=='1' // UNINSTALLER: Delete scicos_ee folder from contrib waitbar(" " + "\n" + .. " Deleting files... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' Deleting files...', fd_log); // Unlink DLLs exec(MYDIR + 'scicos_ee\utils\unlink_dll.sce'); // Removing scicos_ee cd(SCIDIR+'\contrib'); cmd = 'rmdir /s /q scicos_ee'; unix(cmd); else waitbar(" " + "\n" + .. " The installation was interrupted! " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' The installation was interrupted!', fd_log); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end end // Ask if the user wants to proceed... if exists('INSTALLER_BATCH_MODE')==0 & exists('ans_inst_go')==0 ans_inst_go = buttondialog("The ScicosLab pack will be installed.\nDo you want to continue? (Yes: to continue, No: to abort)","yes|no","question"); ans_inst_go_up = 1; else if exists('ans_inst_go')==0 ans_inst_go = '1'; // continue with the installation by dafault... end end if ans_inst_go=='1' waitbar(" " + "\n" + .. " The ScicosLab pack for FLEX and Easylab " + "\n" + .. " will be installed... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); cd(SCIDIR+'\contrib'); EE_debug_printf(' EE Scicos pack will be installed...', fd_log); cmd = 'mkdir scicos_ee'; unix(cmd); cmd = 'start xcopy '+ascii(34)+MYDIR+'scicos_ee'+ascii(34)+' '+ascii(34)+SCIDIR+'\contrib\scicos_ee'+ascii(34)+' /s /e /y /i'; unix(cmd); else waitbar(" " + "\n" + .. " The installation was interrupted! " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' The installation was interrupted!', fd_log); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(home); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end // 40% waitbar(0.4, winId_wait); // Check copy is finished EE_debug_printf(' ...copying Scicos EE files...', fd_log); EE_debug_printf(' Please, do not close the MSDOS window.', fd_log); EE_debug_printf(' It will be closed automatically at the end of copy.', fd_log); waitbar(" " + "\n" + .. " Copying files... " + "\n" + .. " (Copy may take several seconds!) " + "\n" + .. " Please, do not close the MSDOS window. " + "\n" + .. " It will be closed automatically at the end of copy. " + "\n" + .. " ", winId_wait); realtimeinit(1); realtime(0); // winId_prog=progressionbar('EE Scicos pack. Copying files...'); res_examples = %F; res_RTD_conf = %F; res_RTD_p2 = %F; res_RTD_plugins = %F; res_flex_dspic = %F; res_flex_gw = %F; res_flex_msvc = %F; res_flex_rttemp = %F; res_user = %F; res_scicosee = isdir(SCIDIR+'\contrib\scicos_ee'); res_utils = isdir(SCIDIR+'\contrib\scicos_ee\utils'); i = 0; if res_scicosee==%F waitbar(" " + "\n" + .. " # Installation Error # " + "\n" + .. " Access denied! Is not possible to install the toolbox! " + "\n" + .. " Please, run ScicosLab with administrator privileges. " + "\n" + .. " Installation aborted! " + "\n" + .. " ", winId_wait); EE_debug_printf(' #error: Access denied! Is not possible to create the directories!', fd_log); EE_debug_printf(' #error: Please, run ScicosLab with administrator privileges to install the toolbox', fd_log); EE_debug_printf(' Installation aborted!', fd_log); // winclose(winId_prog); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(home); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; end while res_utils==%F, res = 0.4; res_examples = isdir(SCIDIR+'\contrib\scicos_ee\examples'); res = res + res_examples*0.02; res_RTD_conf = isdir(SCIDIR+'\contrib\scicos_ee\RT-Druid\configuration'); res = res + res_RTD_conf*0.02; res_RTD_p2 = isdir(SCIDIR+'\contrib\scicos_ee\RT-Druid\p2'); res = res + res_RTD_p2*0.04; res_RTD_plugins = isdir(SCIDIR+'\contrib\scicos_ee\RT-Druid\plugins'); res = res + res_RTD_plugins*0.02; res_flex_dspic = isdir(SCIDIR+'\contrib\scicos_ee\scicos_flex\dspic'); res = res + res_flex_dspic*0.2; res_flex_gw = isdir(SCIDIR+'\contrib\scicos_ee\scicos_flex\flex_usb2udp_gateway'); res = res + res_flex_gw*0.05; res_flex_rttemp = isdir(SCIDIR+'\contrib\scicos_ee\scicos_flex\RT_templates'); res = res + res_flex_rttemp*0.02; res_user = isdir(SCIDIR+'\contrib\scicos_ee\user'); res = res + res_user*0.04; res_utils = isdir(SCIDIR+'\contrib\scicos_ee\utils'); res = res + res_utils*0.02; waitbar(res, winId_wait); // to increment the bar... i = i+1; realtime(i); // progressionbar(winId_prog); end // winclose(winId_prog); // 90% waitbar(0.9, winId_wait); // Check .scilab file presence EE_debug_printf(' ', fd_log); res = grep(SCIHOME,'4.4.1'); if res==[] cd(MYDIR+'scicos_ee\user\Scilab\4.4b7'); // 4.4b7 else cd(MYDIR+'scicos_ee\user\ScicosLab\4.4.1'); // 4.4.1 end if exists('INSTALLER_BATCH_MODE')==1 //% batch installer write in the .scilab [x,ierr]=fileinfo(SCIHOME+'\.scilab'); if ierr==0 waitbar(" " + "\n" + .. " # Installation Warning # " + "\n" + .. " The installation should modify the .scilab script " + "\n" + .. " Please, if the .scilab file is open, " + "\n" + .. " close it before proceeding... " + "\n" + .. " ", winId_wait); EE_debug_printf(' #warning: Please, if the .scilab file is open, close it before proceeding...', fd_log); if exists('answ_dot_scilab')==0 answ_dot_scilab = '1'; // allow changes in .scilab by default... end // EE_debug_printf(' #warning: .scilab file found!', fd_log); txt=mgetl(SCIHOME+'\.scilab'); else // EE_debug_printf(' #warning: .scilab file not found!. The file will be created.', fd_log); txt=[]; if exists('answ_dot_scilab')==0 answ_dot_scilab = '1'; // allow changes in .scilab by default... end end if answ_dot_scilab=='1' res = grep(txt,'### Scicos EE ###'); if res ~= [] // the string was found... // UNINSTALLER: .scilab will be cleaned // EE_debug_printf(' #warning: .scilab should be cleaned!', 0); res_begin = grep(txt,'### Scicos EE ###'); res_end = grep(txt,'### Scicos EE - end ###'); if res_end==[] waitbar(" " + "\n" + .. " # Installation Error # " + "\n" + .. " .scilab file is corrupted! " + "\n" + .. " Please, delete the .scilab file and retry... " + "\n" + .. " Installation aborted! " + "\n" + .. " ", winId_wait); EE_debug_printf(' #error: .scilab file is corrupted!', fd_log); EE_debug_printf(' Installation aborted!', fd_log); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(home); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; else // EE_debug_printf(' #warning: .scilab was successfully restored!', 0); res = size(txt); new_txt = [txt(1:res_begin-1);txt(res_end+1:res(1))]; mputl(new_txt, SCIHOME+'\.scilab'); end end [fd,err]=mopen(SCIHOME+'\.scilab', 'a'); txt=mgetl('.scilab'); res = size(txt); mfprintf(fd,"\n"); mfprintf(fd,"\n"); mfprintf(fd,"// ### Scicos EE ###\n"); mfprintf(fd,"\n"); for i=1:res(1), mfprintf(fd,"%s\n",txt(i)); end mfprintf(fd,"\n"); mfprintf(fd,"// ### Scicos EE - end ###\n"); mfprintf(fd,"\n"); mclose(fd); end end // 95% waitbar(0.95, winId_wait); // Build Scicos EE pack waitbar(" " + "\n" + .. " Building ScicosLab EE pack... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); clc EE_debug_printf(' Building ScicosLab EE pack...', fd_log); cd(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic"); exec builder.sce // Create and move Scicos EE pack palettes waitbar(" " + "\n" + .. " Creating ScicosLab Pack palettes... " + "\n" + .. " (Depending on your installation, now ScicosLab " + "\n" + .. " can generate many warnings, do not worry...) " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' Creating ScicosLab EE palettes...', fd_log); create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\AMAZING"); create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\FLEX"); create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\FLEX-Communication"); create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\FLEX-DMB"); create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\FLEX-MTB"); create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\RT-Data-Exchange"); create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\EASYLAB"); create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\MISC"); create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\CG-Sources"); // SMCube palette create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\SMCube"); // Copy the palettes in the directory cd(MYDIR+'scicos_ee\utils'); cmd = 'start cp_cosf.bat ' + ascii(34)+SCIDIR+ascii(34); unix(cmd); cmd = 'start xcopy '+ascii(34)+SCIDIR+'\contrib\scicos_ee\utils\common_oil.pref'+ascii(34)+' '+ascii(34)+SCIDIR+'\contrib\scicos_ee\RT-Druid\configuration'+ascii(34)+' /s /e /y /i'; unix(cmd); [x,err] = fileinfo(SCIDIR + "\contrib\scicos_ee\utils\configuration.ini"); if err == 0 cmd = 'start xcopy '+ascii(34)+SCIDIR+'\contrib\scicos_ee\utils\configuration.ini'+ascii(34)+' '+ascii(34)+SCIDIR+'\contrib\scicos_ee\bin'+ascii(34)+' /s /e /y /i'; unix(cmd); end // Clear some unnecessary files.. if exists('NO_APPS_CHECK')==0 cmd = 'del apps.list'; unix(cmd); end [x,err] = fileinfo('common_oil.pref'); if err == 0 cmd = 'del common_oil.pref'; unix(cmd); end // Fixes: REGISTER if exists('INSTALLER_BATCH_MODE')==0 & exists('ans_reg_fix')==0 ans_reg_fix = buttondialog("The Scicos pack will now install a fix to the REGISTER block," + .. " which has been fixed after the release of scicosLab 4.4.1.\nIf you are using that version of scicosLab," + .. " and you did not install the fix,\nplease answer yes to this question. (Yes: to continue, No: to skip)","yes|no","question"); ans_reg_fix_up = 1; else if exists('ans_reg_fix')==0 ans_reg_fix = '1'; // continue with the installation by dafault... end end if ans_reg_fix == '1' cd(MYDIR + 'scicos_ee\utils\fixes\register'); cmd = 'start fix.bat ' + ascii(34)+SCIDIR+ascii(34); unix(cmd); end // 99% waitbar(0.99, winId_wait); if exists('INSTALLER_BATCH_MODE')==0 waitbar(" " + "\n" + .. " Creating ScicosLab Pack Help... " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " " + "\n" + .. " ", winId_wait); clc EE_debug_printf(' Building ScicosLab EE pack Help...', fd_log); cd(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\man"); exec builder.sce end // End // 100% waitbar(1, winId_wait); waitbar(" " + "\n" + .. " Installation completed successfully! " + "\n" + .. " Please, restart ScicosLab for the changes " + "\n" + .. " to take effect... " + "\n" + .. " " + "\n" + .. " ", winId_wait); EE_debug_printf(' Installation completed successfully!', fd_log); EE_debug_printf(' Please, restart ScicosLab for the changes to take effect...', fd_log); EE_debug_printf('### END ###', fd_log); mclose(fd_log); cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
8165e7f39c5c2506d4bdc902291daca7a47da810
449d555969bfd7befe906877abab098c6e63a0e8
/2354/CH12/EX12.7/12_7.sce
3468efff856392b85df754503b64b8c57e0bcd27
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
242
sce
12_7.sce
//example 12.7 clc; funcprot(0); // Initialization of Variable Wpdot=10*550; gamm=62.4;//density Q=2;//flow rate hp=Wpdot/gamm/Q; hl=-30+hp; disp(hl,"head loss in ft"); Wdot=gamm*Q*hl/550; disp(Wdot,"power output in hp"); clear()
8d0fbe4d1127bd45cf0979576222a9b2a79a8619
885ee700356ad98a29fe87d97751e692062de746
/data/pos_exp/pos_data/persian.high.tst
4bdc49d33ccea27b2d8abcfcaca8732edc96be4d
[]
no_license
LINGuistLIU/IGT
1e58bfea1e7d70bdff507c67fa856c55af5bbdc2
8b9ca93189424118a669582ce54192bf441fcc6a
refs/heads/master
2022-08-31T12:33:23.649666
2020-05-28T20:27:18
2020-05-28T20:27:18
267,152,155
0
0
null
null
null
null
UTF-8
Scilab
false
false
56,461
tst
persian.high.tst
حشری_شدن حشری_شدهاین V;2:PL;PRS;PRF:COL تفریح_کردن داشت_تفریح_میکرد V;3;SG;PST;PROG برگشودن ببرگشایید V;2;PL;SBJV;PRS تصور_کردن تصور_کرده_بودند V;3;PL;PST;PRF نوشتن نوشته_بودند V;3;PL;PST;PRF خندیدن خندین V;2;PL;PFV;COL ترکیدن ترکیده_باشن V;3;PL;SBJV;PST;COL تفریح_کردن داریم_تفریح_میکنیم V;1;PL;PRS;PROG تصمیم_گرفتن تصمیم_گرفته V;V.PTCP;PST سریدن سریدهام V;1;SG;PRS;PRF جمعآوری_کردن جمعآوری_کرده_باشی V;2;SG;SBJV;PST;COL ماچ_کردن ماچ_کردن V;NFIN;COL به_یاد_آوردن به_یاد_بیار V;2;SG;IMP;COL متحیر_کردن متحیر_میکرد V;3;SG;PST;IPFV درد_کردن درد_خواهد_کرد V;3;SG;FUT انتقاد_کردن انتقاد_میکردم V;1;SG;PST;IPFV فهمیدن دارم_میفهمم V;1;SG;PRS;PROG چسبیدن چسبیده_بودم V;1;SG;PST;PRF دنبال_کردن دنبال_کرده V;V.PTCP;PST ازدواج_کردن ازدواج_کردید V;2:PL;PST خزیدن خزیدیم V;1;PL;PST;COL یخ_بستن یخ_بندیم V;1;PL;PFV پریدن پرید V;2;PL;PFV تشکر_کردن تشکر_بکند V;3;SG;SBJV;PRS آرام_گرفتن داشتن_آروم_میگرفتن V;3;PL;PST;PROG;COL رسیدن رسم V;1;SG;PFV خزیدن داریم_میخزیم V;1;PL;PRS;PROG;COL تقیه_کردن تقیه_کردهام V;1;SG;PRS;PRF بستن بست V;3;SG;PST;COL افسوس_خوردن افسوس_خورم V;1;SG;PFV تعیین_کردن تعیین_کرده_بودند V;3;PL;PST;PRF گوزیدن دارن_میگوزن V;3;PL;PRS;PROG;COL خوردن خوریم V;1;PL;PFV;COL پریدن پریدهای V;2;SG;PRS;PRF:COL ورزیدن بورزید V;2;PL;IMP آغاز_شدن داشتم_آغاز_میشدم V;1;SG;PST;PROG;COL عکس_گرفتن عکس_میگرفتین V;2:PL;PST;IPFV;COL حساب_کردن حساب_کرده_بودن V;3;PL;PST;PRF:COL متحیر_کردن متحیر_کردهای V;2;SG;PRS;PRF:COL حرف_زدن داشت_حرف_میزد V;3;SG;PST;PROG;COL افسوس_خوردن افسوس_خوردهایم V;1;PL;PRS;PRF ذخیره_کردن ذخیره_خواهد_کرد V;3;SG;FUT رختن رخته_است V;3;SG;PRS;PRF تشریف_بردن تشریف_برده_باشد V;3;SG;SBJV;PST همکاری_کردن داشتید_همکاری_میکردید V;2:PL;PST;PROG زدن بزنی V;2;SG;SBJV;PRS;COL جدا_کردن جدا_کنید V;2;PL;PFV اداره_کردن اداره_بکنم V;1;SG;SBJV;PRS;COL به_کار_بردن به_کار_بره V;3;SG;PFV;COL اسکی_کردن اسکی_بکن V;2;SG;IMP فشردن میفشردم V;1;SG;PST;IPFV ماچ_کردن ماچ_کنین V;2;PL;PFV;COL سخن_گفتن سخن_میگفتی V;2;SG;PST;IPFV;COL باختن بازند V;3;PL;PFV ماچ_کردن ماچ_بکن V;2;SG;IMP خواب_دیدن خواب_بینید V;2;PL;PFV نگاه_کردن نیگا_کرده V;V.PTCP;PST;COL شناسایی_کردن دارید_شناسایی_میکنید V;2;PL;PRS;PROG به_فراموشی_سپردن به_فراموشی_میسپردید V;2:PL;PST;IPFV به_زبان_آوردن به_زبان_خواهی_آورد V;2;SG;FUT پیوستن پیوسته_باشین V;2;PL;SBJV;PST;COL پرستیدن پرستیده V;V.PTCP;PST آغاز_کردن دارم_آغاز_میکنم V;1;SG;PRS;PROG نماز_خواندن نماز_بخونیم V;1;PL;SBJV;PRS;COL بوسیدن میبوسید V;2;PL;PRS;IPFV کوبیدن کوبم V;1;SG;PFV تکرار_کردن تکرار_کرده_باشد V;3;SG;SBJV;PST بوسیدن ببوسن V;3;PL;SBJV;PRS;COL بیدار_کردن داریم_بیدار_میکنیم V;1;PL;PRS;PROG;COL باور_کردن باور_کننده V;V.PTCP;PRS پنهان_شدن پنهان_میشدند V;3;PL;PST;IPFV مداخله_کردن مداخله_کرده_بودن V;3;PL;PST;PRF:COL پنهان_کردن داری_پنهان_میکنی V;2;SG;PRS;PROG خط_زدن داری_خط_میزنی V;2;SG;PRS;PROG سخن_گفتن سخن_میگفتم V;1;SG;PST;IPFV;COL ایستادن ایستادن V;3;PL;PST;COL تفریح_کردن تفریح_کرده_باشیم V;1;PL;SBJV;PST سریدن میسرید V;3;SG;PST;IPFV;COL گشودن میگشودم V;1;SG;PST;IPFV;COL پا_به_عرصه_وجود_گذاشتن پا_به_عرصه_وجود_گذاشته_بود V;3;SG;PST;PRF اتراق_کردن اتراق_کردهام V;1;SG;PRS;PRF پرسیدن داشت_میپرسید V;3;SG;PST;PROG حرف_زدن حرف_زدهاین V;2:PL;PRS;PRF:COL مردن مرده_باشد V;3;SG;SBJV;PST وا_کردن باز_کرده_بودیم V;1;PL;PST;PRF دل_به_دریا_زدن دل_به_دریا_بزنند V;3;PL;SBJV;PRS یاد_گرفتن یاد_بگیریم V;1;PL;SBJV;PRS تفریح_کردن داشتند_تفریح_میکردند V;3;PL;PST;PROG عطسه_کردن داری_عطسه_میکنی V;2;SG;PRS;PROG;COL اعتراض_کردن اعتراض_خواهم_کرد V;1;SG;FUT کوک_کردن کوک_کرده_باشم V;1;SG;SBJV;PST عطسه_کردن عطسه_کرده_بودم V;1;SG;PST;PRF خال_کوبیدن خال_کوبیده_باشن V;3;PL;SBJV;PST;COL آشنا_شدن آشنا_شویم V;1;PL;PFV پا_به_عرصه_وجود_گذاشتن پا_به_عرصه_وجود_میذاریم V;1;PL;PRS;IPFV;COL خریدن خریده_بود V;3;SG;PST;PRF چروک_شدن چروک_شده_باشد V;3;SG;SBJV;PST به_خاطر_سپردن داشت_به_خاطر_میسپرد V;3;SG;PST;PROG توجه_کردن توجه_کنی V;2;SG;PFV بازی_کردن بازی_بکنم V;1;SG;SBJV;PRS سرفه_کردن سرفه_کنه V;3;SG;PFV;COL گوش_کردن گوش_کننده V;V.PTCP;PRS چروک_شدن چروک_شدهایم V;1;PL;PRS;PRF:COL اعتراض_کردن اعتراض_میکنم V;1;SG;PRS;IPFV;COL رقصیدن رقصیده_باشی V;2;SG;SBJV;PST;COL ستدن ستدن V;NFIN;COL پشت_سر_گذاشتن دارد_پشت_سر_میگذارد V;3;SG;PRS;PROG پشت_سر_گذاشتن پشت_سر_بگذار V;2;SG;IMP ماندن مونده_بودین V;2;PL;PST;PRF:COL افسوس_خوردن افسوس_خورده_باشد V;3;SG;SBJV;PST اجرا_کردن داشت_اجرا_میکرد V;3;SG;PST;PROG حشری_شدن داشتیم_حشری_میشدیم V;1;PL;PST;PROG ورزیدن ورزیدم V;1;SG;PST;COL پرسیدن دارم_میپرسم V;1;SG;PRS;PROG;COL حساب_کردن حساب_میکند V;3;SG;PRS;IPFV رسیدن میرسد V;3;SG;PRS;IPFV فهمیدن فهمیدیم V;1;PL;PST;COL سر_کردن سر_کرده_باشی V;2;SG;SBJV;PST;COL بو_کردن بو_کرده_بودید V;2;PL;PST;PRF سخن_گفتن سخن_گفته V;V.PTCP;PST خواستن میخوان V;3;PL;PRS;IPFV;COL شروع_کردن شروع_کنند V;3;PL;PFV مالیدن مالیده_بودیم V;1;PL;PST;PRF:COL چروک_شدن چروک_شونده V;V.PTCP;PRS;COL همکاری_کردن همکاری_میکردیم V;1;PL;PST;IPFV;COL آشنا_شدن آشنا_میشدم V;1;SG;PST;IPFV;COL عکس_گرفتن عکس_گرفته_باشد V;3;SG;SBJV;PST تمرین_کردن تمرین_بکنید V;2;PL;SBJV;PRS مرحمت_کردن مرحمت_کرده_باشیم V;1;PL;SBJV;PST ختنه_کردن ختنه_کرده_باشی V;2;SG;SBJV;PST اعلام_کردن اعلام_میکردید V;2:PL;PST;IPFV درد_گرفتن درد_گرفته V;V.PTCP;PST;COL تشریف_بردن تشریف_بردم V;1;SG;PST تکان_خوردن تکان_خورده_بود V;3;SG;PST;PRF خندسن خندسن V;NFIN تشریف_آوردن تشریف_آورده_بودین V;2;PL;PST;PRF:COL مانستن مانسته_باشد V;3;SG;SBJV;PST بلند_کردن بلند_کرده_بودن V;3;PL;PST;PRF:COL تصور_کردن تصور_میکردم V;1;SG;PST;IPFV بلند_کردن بلند_کرده_باشید V;2;PL;SBJV;PST بزرگ_شدن داریم_بزرگ_میشیم V;1;PL;PRS;PROG;COL درد_کردن درد_میکردند V;3;PL;PST;IPFV رقصیدن رقصیده_بودم V;1;SG;PST;PRF فریاد_زدن فریاد_زده_است V;3;SG;PRS;PRF پا_در_میان_گذاشتن پا_در_میان_گذاری V;2;SG;PFV گول_خوردن دارم_گول_میخورم V;1;SG;PRS;PROG سرفه_کردن سرفه_کرده_بود V;3;SG;PST;PRF مداخله_کردن مداخله_کرده_بود V;3;SG;PST;PRF کوک_کردن کوک_کرد V;3;SG;PST;COL تنظیم_کردن تنظیم_خواهی_کرد V;2;SG;FUT رقصیدن دارن_میرقصن V;3;PL;PRS;PROG;COL دفن_کردن دفن_میکردیم V;1;PL;PST;IPFV;COL میل_کردن داریم_میل_میکنیم V;1;PL;PRS;PROG سر_کردن سر_کنین V;2;PL;PFV;COL حاضر_کردن حاضر_کرده_باشم V;1;SG;SBJV;PST;COL منتشر_کردن منتشر_میکرد V;3;SG;PST;IPFV نگاه_کردن نگاه_بکند V;3;SG;SBJV;PRS فوت_کردن فوت_کردهایم V;1;PL;PRS;PRF:COL شروع_کردن شروع_بکند V;3;SG;SBJV;PRS طاقت_آوردن طاقت_میآریم V;1;PL;PRS;IPFV;COL بیدار_شدن بیدار_میشیم V;1;PL;PRS;IPFV;COL تقیه_کردن تقیه_کرده_باشند V;3;PL;SBJV;PST تصمیم_گرفتن تصمیم_گرفته_باشه V;3;SG;SBJV;PST;COL افسوس_خوردن افسوس_خورده_بودیم V;1;PL;PST;PRF:COL مونتاژ_کردن دارم_مونتاژ_میکنم V;1;SG;PRS;PROG;COL یافتن دارد_مییابد V;3;SG;PRS;PROG تحصیل_کردن تحصیل_میکرد V;3;SG;PST;IPFV فشردن خواهیم_فشرد V;1;PL;FUT لیسیدن دارید_میلیسید V;2;PL;PRS;PROG جدا_شدن جدا_میشین V;2;PL;PRS;IPFV;COL استمنا_کردن استمنا_خواهیم_کرد V;1;PL;FUT درست_کردن درست_میکردید V;2:PL;PST;IPFV نماز_خواندن نماز_خواهیم_خواند V;1;PL;FUT جدا_شدن دارید_جدا_میشوید V;2;PL;PRS;PROG خرید_کردن خرید_میکنه V;3;SG;PRS;IPFV;COL سخن_گفتن دارم_سخن_میگم V;1;SG;PRS;PROG;COL سخن_گفتن سخن_بگم V;1;SG;SBJV;PRS;COL مردن مرد V;3;SG;PST;COL کاوش_کردن کاوش_کنند V;3;PL;PFV تماشا_کردن دارید_تماشا_میکنید V;2;PL;PRS;PROG خزیدن خواهی_خزید V;2;SG;FUT طاقت_آوردن طاقت_آوردن V;3;PL;PST;COL گذاشتن میذارن V;3;PL;PRS;IPFV;COL کنار_گذاشتن کنار_گذاره V;3;SG;PFV;COL قطع_کردن قطع_کرده_باشیم V;1;PL;SBJV;PST;COL اصرار_کردن اصرار_کردهان V;3;PL;PRS;PRF:COL عرق_کردن عرق_کردهام V;1;SG;PRS;PRF:COL کاوش_کردن داشتیم_کاوش_میکردیم V;1;PL;PST;PROG;COL پاک_کردن داشتی_پاک_میکردی V;2;SG;PST;PROG بوییدن بوییده_باشه V;3;SG;SBJV;PST;COL خندسن داشتن_میخندسن V;3;PL;PST;PROG;COL بحث_کردن داره_بحث_میکنه V;3;SG;PRS;PROG;COL پا_در_میان_گذاشتن دارند_پا_در_میان_میگذارند V;3;PL;PRS;PROG یافتن یافتن V;NFIN حرکت_کردن حرکت_کردیم V;1;PL;PST صحبت_کردن صحبت_کرده_باشن V;3;PL;SBJV;PST;COL ماچ_کردن ماچ_کرده_بودی V;2;SG;PST;PRF:COL ساک_زدن ساک_بزنین V;2;PL;IMP;COL سخن_گفتن سخن_گفتهایم V;1;PL;PRS;PRF راست_کردن راست_کرد V;3;SG;PST;COL متحیر_کردن متحیر_کرده V;V.PTCP;PST مالیدن ماله V;3;SG;PFV;COL لب_گرفتن لب_بگیرید V;2;PL;IMP کینه_ورزیدن کینه_بورزیم V;1;PL;SBJV;PRS تحمل_کردن تحمل_کنین V;2;PL;PFV;COL کشیدن کشیدهای V;2;SG;PRS;PRF:COL باور_کردن باور_کرده_باشه V;3;SG;SBJV;PST;COL تسلیم_شدن تسلیم_شن V;3;PL;PFV;COL طرفداری_کردن طرفداری_کننده V;V.PTCP;PRS;COL خرید_کردن خرید_خواهم_کرد V;1;SG;FUT راست_کردن دارم_راست_میکنم V;1;SG;PRS;PROG شکایت_کردن شکایت_کرده_بودم V;1;SG;PST;PRF کوچک_شدن کوچک_میشدند V;3;PL;PST;IPFV جمع_شدن جمع_بشین V;2;PL;IMP;COL ترکیدن میترکیدن V;3;PL;PST;IPFV;COL لیسیدن بلیسی V;2;SG;SBJV;PRS سرفه_کردن سرفه_کرده_بودن V;3;PL;PST;PRF:COL حساب_کردن حساب_کرده_باشم V;1;SG;SBJV;PST سرفه_کردن سرفه_خواهد_کرد V;3;SG;FUT زدن زده_بودم V;1;SG;PST;PRF:COL ژولیدن ژولیدیم V;1;PL;PST تحصیل_کردن تحصیل_کردهاند V;3;PL;PRS;PRF گم_شدن داری_گم_میشوی V;2;SG;PRS;PROG خریدن خرد V;3;SG;PFV پشت_سر_گذاشتن پشت_سر_گذاشته_بودن V;3;PL;PST;PRF:COL ختنه_کردن ختنه_کنم V;1:SG;PFV;COL حشری_شدن حشری_شم V;1:SG;PFV;COL کمک_کردن کمک_بکنه V;3;SG;SBJV;PRS;COL فکر_کردن داشتیم_فکر_میکردیم V;1;PL;PST;PROG ثابت_کردن داشتی_ثابت_میکردی V;2;SG;PST;PROG پیدا_کردن پیدا_کردهام V;1;SG;PRS;PRF تکرار_کردن تکرار_کردن V;3;PL;PST;COL نگریستن دارم_مینگرم V;1;SG;PRS;PROG بیمار_شدن دارم_بیمار_میشوم V;1;SG;PRS;PROG توجه_کردن توجه_کردهایم V;1;PL;PRS;PRF:COL فراموش_کردن فراموش_بکنم V;1;SG;SBJV;PRS ژولیدن ژولی V;2;SG;PFV;COL شناسایی_کردن شناسایی_میکردیم V;1;PL;PST;IPFV;COL کشتی_گرفتن کشتی_گرفته_باشیم V;1;PL;SBJV;PST;COL سرفه_کردن سرفه_کنی V;2;SG;PFV بازی_کردن بازی_میکردم V;1;SG;PST;IPFV عرق_کردن عرق_میکردیم V;1;PL;PST;IPFV برگشادن برگشاده V;V.PTCP;PST اسکی_کردن اسکی_بکنید V;2;PL;SBJV;PRS استفاده_کردن استفاده_بکنیم V;1;PL;SBJV;PRS;COL تراشیدن دارم_میتراشم V;1;SG;PRS;PROG دل_به_دریا_زدن دل_به_دریا_زدند V;3;PL;PST نوشتن داشتیم_مینوشتیم V;1;PL;PST;PROG;COL نشستن داشتی_مینشستی V;2;SG;PST;PROG زوم_کردن زوم_کرده_بودی V;2;SG;PST;PRF:COL اصرار_کردن اصرار_بکنید V;2;PL;IMP ستدن میستونن V;3;PL;PRS;IPFV;COL مرحمت_کردن مرحمت_خواهیم_کرد V;1;PL;FUT زدن میزنین V;2;PL;PRS;IPFV;COL شکایت_کردن شکایت_میکنیم V;1;PL;PRS;IPFV;COL پنهان_شدن داشتین_پنهون_میشدین V;2:PL;PST;PROG;COL برگشودن برگشوده_باشد V;3;SG;SBJV;PST رختن رخته_باشند V;3;PL;SBJV;PST کاشتن میکاشت V;3;SG;PST;IPFV مانستن مانید V;2;PL;PFV حمام_کردن داشتی_حمام_میکردی V;2;SG;PST;PROG قطع_کردن قطع_کرده_باشم V;1;SG;SBJV;PST;COL به_وجود_آمدن به_وجود_اومدم V;1;SG;PST;COL استمنا_کردن استمنا_کنه V;3;SG;PFV;COL یاد_گرفتن یاد_گرفتهاند V;3;PL;PRS;PRF به_زبان_آوردن به_زبون_بیارن V;3;PL;SBJV;PRS;COL فوت_کردن فوت_بکنند V;3;PL;SBJV;PRS جا_گذاشتن جا_گذاشتم V;1;SG;PST پنهان_کردن پنهون_کردی V;2;SG;PST;COL گداختن میگدازد V;3;SG;PRS;IPFV بستن میبندیم V;1;PL;PRS;IPFV;COL افشردن خواهد_افشرد V;3;SG;FUT خنثی_کردن خنثی_کنی V;2;SG;PFV;COL خواب_دیدن داشت_خواب_میدید V;3;SG;PST;PROG نوشتن مینویسم V;1;SG;PRS;IPFV;COL ورزش_کردن ورزش_میکردم V;1;SG;PST;IPFV;COL اضافه_کردن اضافه_میکردن V;3;PL;PST;IPFV;COL استمنا_کردن استمنا_کرده_بودی V;2;SG;PST;PRF ذخیره_کردن دارم_ذخیره_میکنم V;1;SG;PRS;PROG کوچک_شدن کوچک_شدید V;2:PL;PST وا_کردن باز_کردهایم V;1;PL;PRS;PRF نفس_کشیدن نفس_کشیدهاین V;2:PL;PRS;PRF:COL شکل_گرفتن شکل_میگرفت V;3;SG;PST;IPFV بیمار_شدن بیمار_میشدین V;2:PL;PST;IPFV;COL باور_کردن باور_کردهان V;3;PL;PRS;PRF:COL تفسیر_کردن تفسیر_کردی V;2;SG;PST;COL دل_به_دریا_زدن دل_به_دریا_زده_باشیم V;1;PL;SBJV;PST تشکر_کردن تشکر_کرده V;3;SG;PRS;PRF:COL اجرا_کردن اجرا_میکردیم V;1;PL;PST;IPFV قطع_کردن قطع_کردهای V;2;SG;PRS;PRF صحبت_کردن صحبت_میکردم V;1;SG;PST;IPFV کپک_زدن کپک_زدی V;2;SG;PST;COL خودکشی_کردن خودکشی_کرد V;3;SG;PST پختن پخته V;V.PTCP;PST درد_گرفتن درد_گرفته_باشی V;2;SG;SBJV;PST;COL زوم_کردن زوم_کردهام V;1;SG;PRS;PRF:COL مداخله_کردن مداخله_کرده_بودند V;3;PL;PST;PRF ژولیدن میژولید V;3;SG;PST;IPFV;COL پا_به_جهان_گذاشتن پا_به_جهان_میذاشت V;3;SG;PST;IPFV;COL نامیدن خواهند_نامید V;3;PL;FUT خودکشی_کردن داشتی_خودکشی_میکردی V;2;SG;PST;PROG چیندن چینده_باشین V;2;PL;SBJV;PST;COL شناسایی_کردن شناسایی_کردهام V;1;SG;PRS;PRF:COL اعتراض_کردن اعتراض_کردی V;2;SG;PST;COL ستدن ستده_بودم V;1;SG;PST;PRF سعی_کردن سعی_کرده_باشم V;1;SG;SBJV;PST;COL انتخاب_کردن انتخاب_کردن V;NFIN باور_کردن باور_کردی V;2;SG;PST;COL کنار_زدن کنار_زده_باشم V;1;SG;SBJV;PST آغاز_شدن آغاز_میشدن V;3;PL;PST;IPFV;COL شناسایی_کردن شناسایی_میکرد V;3;SG;PST;IPFV به_کار_بردن به_کار_برد V;3;SG;PST;COL تکرار_کردن داشتی_تکرار_میکردی V;2;SG;PST;PROG سخن_گفتن سخن_گفتهایم V;1;PL;PRS;PRF:COL تحمل_کردن تحمل_بکنید V;2;PL;SBJV;PRS کشیدن میکشیدن V;3;PL;PST;IPFV;COL آشنا_شدن آشنا_شدهام V;1;SG;PRS;PRF:COL خط_زدن خط_میزدید V;2:PL;PST;IPFV انتخاب_کردن انتخاب_خواهم_کرد V;1;SG;FUT پاک_کردن داشت_پاک_میکرد V;3;SG;PST;PROG;COL پیچیدن پیچی V;2;SG;PFV;COL اسکی_کردن اسکی_کرده_باشند V;3;PL;SBJV;PST سریدن سریدهاند V;3;PL;PRS;PRF پریدن پریدیم V;1;PL;PST به_کار_بردن به_کار_برده_بودن V;3;PL;PST;PRF:COL دراز_کشیدن داری_دراز_میکشی V;2;SG;PRS;PROG قمپز_درکردن قمپز_در_کرده_باشیم V;1;PL;SBJV;PST;COL حس_کردن دارند_حس_میکنند V;3;PL;PRS;PROG تکزنگ_زدن تکزنگ_زدید V;2:PL;PST گزاف_گفتن داشتم_گزاف_میگفتم V;1;SG;PST;PROG استفاده_کردن داشتی_استفاده_میکردی V;2;SG;PST;PROG جستجو_کردن جستجو_کرده_بودین V;2;PL;PST;PRF:COL دمیدن داشتیم_میدمیدیم V;1;PL;PST;PROG;COL پا_به_سن_گذاشتن پا_به_سن_گذاشته_باشیم V;1;PL;SBJV;PST صبر_کردن صبرهاید V;2:PL;PRS;PRF دوش_گرفتن دوش_گرفته_باشند V;3;PL;SBJV;PST دزدی_کردن دزدی_کرده_بودیم V;1;PL;PST;PRF اغوا_کردن اغوا_میکردید V;2:PL;PST;IPFV بستن میبندم V;1;SG;PRS;IPFV;COL تقیه_کردن تقیه_میکردی V;2;SG;PST;IPFV;COL اعتراض_کردن اعتراض_کردیم V;1;PL;PST تشکر_کردن تشکر_بکنی V;2;SG;SBJV;PRS شکل_گرفتن شکل_میگرفتین V;2:PL;PST;IPFV;COL ایستادن ایسته V;3;SG;PFV;COL تبریک_گفتن دارین_تبریک_میگین V;2;PL;PRS;PROG;COL تکرار_کردن دارین_تکرار_میکنین V;2;PL;PRS;PROG;COL بیدار_شدن بیدار_شدهای V;2;SG;PRS;PRF بزرگ_شدن بزرگ_بشو V;2;SG;IMP;COL پا_در_میان_گذاشتن داشتم_پا_در_میون_میذاشتم V;1;SG;PST;PROG;COL فهمیدن بفهمه V;3;SG;SBJV;PRS;COL تکان_خوردن تکون_بخورین V;2;PL;SBJV;PRS;COL ازدواج_کردن ازدواج_کردیم V;1;PL;PST;COL خندسن دارن_میخندن V;3;PL;PRS;PROG;COL آرام_گرفتن آروم_میگرفتم V;1;SG;PST;IPFV;COL یخ_بستن یخ_بسته_بود V;3;SG;PST;PRF جدا_شدن جدا_شده_باشم V;1;SG;SBJV;PST خواندن داشتن_میخوندن V;3;PL;PST;PROG;COL تشریف_بردن تشریف_میبری V;2;SG;PRS;IPFV;COL توجه_کردن توجه_میکنم V;1;SG;PRS;IPFV افسوس_خوردن افسوس_خوردیم V;1;PL;PST گول_خوردن داشتن_گول_میخوردن V;3;PL;PST;PROG;COL چیندن چیندهان V;3;PL;PRS;PRF:COL عرق_کردن دارم_عرق_میکنم V;1;SG;PRS;PROG;COL ستدن داریم_میستونیم V;1;PL;PRS;PROG;COL کمک_کردن کمک_کنی V;2;SG;PFV تلفظ_کردن داشتم_تلفظ_میکردم V;1;SG;PST;PROG پرسیدن پرسیدی V;2;SG;PST تنیدن میتنند V;3;PL;PRS;IPFV نگریستن نگریسته_باشم V;1;SG;SBJV;PST به_وجود_آمدن به_وجود_اومدن V;3;PL;PST;COL درس_خواندن درس_خونده_بودیم V;1;PL;PST;PRF:COL لبخند_زدن لبخند_زده_باشیم V;1;PL;SBJV;PST یافتن خواهیم_یافت V;1;PL;FUT درس_خواندن درس_میخوند V;3;SG;PST;IPFV;COL ترکیدن خواهیم_ترکید V;1;PL;FUT تمام_شدن تموم_شده_باشی V;2;SG;SBJV;PST;COL افشردن بافشارین V;2;PL;IMP;COL ذخیره_کردن ذخیره_کرده_بود V;3;SG;PST;PRF:COL کمک_کردن کمک_کردهاین V;2:PL;PRS;PRF:COL خال_کوبیدن خال_کوبیدهاید V;2:PL;PRS;PRF به_وجود_آمدن به_وجود_بیام V;1;SG;SBJV;PRS;COL پا_به_جهان_گذاشتن داری_پا_به_جهان_میگذاری V;2;SG;PRS;PROG اعتراض_کردن اعتراض_کرده_بودی V;2;SG;PST;PRF استمنا_کردن دارین_استمنا_میکنین V;2;PL;PRS;PROG;COL بوییدن بویید V;2;PL;PFV ماندن داشتیم_میموندیم V;1;PL;PST;PROG;COL خواستن میخواستم V;1;SG;PST;IPFV;COL ورزش_کردن داره_ورزش_میکنه V;3;SG;PRS;PROG;COL نفس_کشیدن نفس_کشیده_بودند V;3;PL;PST;PRF دراز_کشیدن دارند_دراز_میکشند V;3;PL;PRS;PROG مرحمت_کردن مرحمت_میکنید V;2;PL;PRS;IPFV پا_به_جهان_گذاشتن پا_به_جهان_میگذارند V;3;PL;PRS;IPFV پیدا_کردن پیدا_خواهی_کرد V;2;SG;FUT شکایت_کردن شکایت_کردهای V;2;SG;PRS;PRF کینه_ورزیدن کینه_میورزند V;3;PL;PRS;IPFV تشریف_بردن تشریف_برده_بودین V;2;PL;PST;PRF:COL نامیدن نامیده_است V;3;SG;PRS;PRF احساس_کردن احساس_میکنی V;2;SG;PRS;IPFV شروع_کردن داشت_شروع_میکرد V;3;SG;PST;PROG بخشیدن داریم_میبخشیم V;1;PL;PRS;PROG;COL جمع_شدن جمع_شده_باشین V;2;PL;SBJV;PST;COL درد_گرفتن درد_بگیرید V;2;PL;SBJV;PRS تمرین_کردن تمرین_کرد V;3;SG;PST تمرین_کردن تمرین_کردن V;NFIN;COL باختن باخته_باشم V;1;SG;SBJV;PST;COL رژیم_گرفتن رژیم_گرفتهاید V;2:PL;PRS;PRF خنثی_کردن خنثی_کنند V;3;PL;PFV اعلام_کردن اعلام_بکن V;2;SG;IMP دنبال_کردن دنبال_کرده_باشیم V;1;PL;SBJV;PST مالیدن میمالم V;1;SG;PRS;IPFV تراشیدن تراشیده V;V.PTCP;PST فضولی_کردن فضولی_بکنید V;2;PL;IMP گام_زدن گام_بزنید V;2;PL;SBJV;PRS کینه_ورزیدن کینه_ورزیده_باشید V;2;PL;SBJV;PST تشریف_آوردن داشتن_تشریف_میآوردن V;3;PL;PST;PROG;COL کوبیدن کوبیده_باشن V;3;PL;SBJV;PST;COL حرف_زدن دارید_حرف_میزنید V;2;PL;PRS;PROG مانستن میمونیم V;1;PL;PRS;IPFV;COL حرکت_کردن حرکت_میکنیم V;1;PL;PRS;IPFV;COL آرایش_کردن آرایش_میکردین V;2:PL;PST;IPFV;COL لبخند_زدن لبخند_زده V;V.PTCP;PST;COL پیچیدن پیچیده_است V;3;SG;PRS;PRF صحبت_کردن صحبت_کرده_باشی V;2;SG;SBJV;PST کون_کردن کون_کردم V;1;SG;PST;COL کر_کردن کر_بکنی V;2;SG;SBJV;PRS;COL بحث_کردن بحث_میکردی V;2;SG;PST;IPFV ترکیدن داشتید_میترکیدید V;2:PL;PST;PROG دستبرد_زدن دستبرد_میزدی V;2;SG;PST;IPFV میل_کردن داره_میل_میکنه V;3;SG;PRS;PROG;COL ترجمه_کردن ترجمه_کنن V;3;PL;PFV;COL کشیدن دارن_میکشن V;3;PL;PRS;PROG;COL بریدن بریده_بودند V;3;PL;PST;PRF کوشش_کردن کوشش_خواهیم_کرد V;1;PL;FUT مهاجرت_کردن مهاجرت_کردهایم V;1;PL;PRS;PRF فریاد_زدن فریاد_زده_بودیم V;1;PL;PST;PRF:COL افشردن افشردهاین V;2:PL;PRS;PRF:COL ساک_زدن ساک_میزنین V;2;PL;PRS;IPFV;COL تحصیل_کردن داشتین_تحصیل_میکردین V;2:PL;PST;PROG;COL کلیک_کردن کلیک_میکنی V;2;SG;PRS;IPFV;COL کوک_کردن کوک_کرده_بود V;3;SG;PST;PRF:COL تمام_کردن تمام_میکردی V;2;SG;PST;IPFV مجازات_کردن مجازات_بکنی V;2;SG;SBJV;PRS پنهان_شدن پنهون_میشد V;3;SG;PST;IPFV;COL صحبت_کردن صحبت_کرده_باشم V;1;SG;SBJV;PST گشادن دارید_میگشایید V;2;PL;PRS;PROG فراموش_کردن داشتیم_فراموش_میکردیم V;1;PL;PST;PROG تنیدن تنیده_بودم V;1;SG;PST;PRF:COL کر_کردن کر_کنم V;1:SG;PFV;COL دزدی_کردن دزدی_میکنیم V;1;PL;PRS;IPFV;COL شکل_گرفتن شکل_گیرید V;2;PL;PFV ترجمه_کردن ترجمه_بکنند V;3;PL;SBJV;PRS بوییدن بوییدهام V;1;SG;PRS;PRF:COL زندگی_کردن زندگی_کردیم V;1;PL;PST اجرا_کردن اجرا_کرد V;3;SG;PST بزرگ_شدن بزرگ_میشوند V;3;PL;PRS;IPFV حرف_زدن حرف_خواهم_زد V;1;SG;FUT چسبیدن چسبید V;3;SG;PST;COL مردن میمیرن V;3;PL;PRS;IPFV;COL تشریف_بردن تشریف_برده_بودند V;3;PL;PST;PRF چسبیدن چسبیدم V;1;SG;PST منتشر_کردن منتشر_کرده_بودید V;2;PL;PST;PRF تصمیم_گرفتن تصمیم_بگیر V;2;SG;IMP کنار_زدن کنار_زدم V;1;SG;PST تقیه_کردن تقیه_میکردید V;2:PL;PST;IPFV رژیم_گرفتن رژیم_گرفته_باشی V;2;SG;SBJV;PST;COL گام_زدن گام_زنیم V;1;PL;PFV;COL تعیین_کردن تعیین_کرده_باشیم V;1;PL;SBJV;PST امضاء_کردن امضا_میکنه V;3;SG;PRS;IPFV;COL تعارف_کردن تعارف_کرده_بودم V;1;SG;PST;PRF:COL برگشادن داشتید_میبرگشادید V;2:PL;PST;PROG سعی_کردن سعی_بکنند V;3;PL;SBJV;PRS فرض_کردن فرض_بکنم V;1;SG;SBJV;PRS افشردن میافشاریم V;1;PL;PRS;IPFV;COL بخشیدن ببخشم V;1;SG;SBJV;PRS;COL دزدیدن میدزدیدم V;1;SG;PST;IPFV;COL غصه_خوردن غصه_میخوردن V;3;PL;PST;IPFV;COL اضافه_کردن داره_اضافه_میکنه V;3;SG;PRS;PROG;COL تنظیم_کردن تنظیم_بکنند V;3;PL;SBJV;PRS بحث_کردن داشتند_بحث_میکردند V;3;PL;PST;PROG نهیب_زدن نهیب_زدیم V;1;PL;PST;COL ماچ_کردن ماچ_میکنیم V;1;PL;PRS;IPFV تعارف_کردن تعارف_بکنیم V;1;PL;SBJV;PRS ترکیدن داشتیم_میترکیدیم V;1;PL;PST;PROG;COL مداخله_کردن مداخله_بکنی V;2;SG;SBJV;PRS;COL همکاری_کردن همکاری_کرده_باشین V;2;PL;SBJV;PST;COL به_وجود_آمدن به_وجود_آمدید V;2:PL;PST بیدار_شدن بیدار_شده_بودید V;2;PL;PST;PRF مرحمت_کردن مرحمت_کرده_باشید V;2;PL;SBJV;PST حساب_کردن حساب_کرده_است V;3;SG;PRS;PRF دنبال_کردن دنبال_میکنه V;3;SG;PRS;IPFV;COL کاوش_کردن کاوش_کرده_بودیم V;1;PL;PST;PRF پژوهش_کردن پژوهش_کنی V;2;SG;PFV رختن ریزی V;2;SG;PFV;COL رسیدن رسیده V;V.PTCP;PST;COL گذاشتن گذاشتند V;3;PL;PST پیدا_کردن پیدا_کرده_باشی V;2;SG;SBJV;PST کوشش_کردن کوشش_کردهان V;3;PL;PRS;PRF:COL تنیدن میتنی V;2;SG;PRS;IPFV;COL اعتراض_کردن اعتراض_کنیم V;1;PL;PFV;COL اجرا_کردن اجرا_کردهاند V;3;PL;PRS;PRF فضولی_کردن فضولی_بکنید V;2;PL;SBJV;PRS عکس_گرفتن عکس_گرفته_باشم V;1;SG;SBJV;PST شروع_کردن شروع_بکنید V;2;PL;SBJV;PRS رقصیدن داشت_میرقصید V;3;SG;PST;PROG سرفه_کردن سرفه_بکنید V;2;PL;IMP پیچیدن پیچیدند V;3;PL;PST تراشیدن داشتیم_میتراشیدیم V;1;PL;PST;PROG ورزیدن ورزیده_بودی V;2;SG;PST;PRF:COL کنار_زدن کنار_بزنن V;3;PL;SBJV;PRS;COL کر_کردن کر_خواهی_کرد V;2;SG;FUT فشردن فشرده_بودیم V;1;PL;PST;PRF:COL زحمت_کشیدن داریم_زحمت_میکشیم V;1;PL;PRS;PROG پنهان_کردن پنهان_خواهد_کرد V;3;SG;FUT نامیدن بنامه V;3;SG;SBJV;PRS;COL ژولیدن میژولیدی V;2;SG;PST;IPFV ازدواج_کردن ازدواج_کنم V;1;SG;PFV به_کار_بردن میبه_کار_برد V;3;SG;PRS;IPFV انتقاد_کردن انتقاد_کردهان V;3;PL;PRS;PRF:COL دستبرد_زدن دستبرد_زند V;3;SG;PFV استفاده_کردن استفاده_میکردین V;2:PL;PST;IPFV;COL رختن میریزم V;1;SG;PRS;IPFV;COL ماندن ماندهام V;1;SG;PRS;PRF اسکی_کردن داشت_اسکی_میکرد V;3;SG;PST;PROG;COL پا_به_عرصه_وجود_گذاشتن پا_به_عرصه_وجود_میذاری V;2;SG;PRS;IPFV;COL زوم_کردن زوم_کرده_باشد V;3;SG;SBJV;PST پختن پختهان V;3;PL;PRS;PRF:COL کار_کردن کار_میکنم V;1;SG;PRS;IPFV مانستن مونسته_بود V;3;SG;PST;PRF:COL کپک_زدن کپک_میزدند V;3;PL;PST;IPFV نفس_کشیدن نفس_کشی V;2;SG;PFV;COL کاوش_کردن کاوش_کرده_بودند V;3;PL;PST;PRF پاک_کردن پاک_خواهیم_کرد V;1;PL;FUT گزاف_گفتن گزاف_میگفتیم V;1;PL;PST;IPFV;COL به_فراموشی_سپردن به_فراموشی_سپرده_بود V;3;SG;PST;PRF:COL پیچیدن داشت_میپیچید V;3;SG;PST;PROG پوشیدن بپوش V;2;SG;IMP پیوستن خواهید_پیوست V;2;PL;FUT زوم_کردن زوم_بکنین V;2;PL;SBJV;PRS;COL گام_زدن گام_میزدی V;2;SG;PST;IPFV کنار_زدن کنار_میزدن V;3;PL;PST;IPFV;COL دمیدن داری_میدمی V;2;SG;PRS;PROG;COL حاضر_کردن حاضر_کرده_باشید V;2;PL;SBJV;PST بحث_کردن بحث_کردی V;2;SG;PST;COL آرام_گرفتن آروم_میگرفتین V;2:PL;PST;IPFV;COL گوش_کردن گوش_میکنیم V;1;PL;PRS;IPFV اصرار_کردن دارم_اصرار_میکنم V;1;SG;PRS;PROG;COL لب_گرفتن لب_گرفته_بود V;3;SG;PST;PRF:COL راست_کردن راست_خواهیم_کرد V;1;PL;FUT دراز_کشیدن دراز_کشیدهای V;2;SG;PRS;PRF برگشودن داشت_میبرگشود V;3;SG;PST;PROG;COL گول_خوردن گول_میخورن V;3;PL;PRS;IPFV;COL پا_به_عرصه_وجود_گذاشتن پا_به_عرصه_وجود_گذاری V;2;SG;PFV به_وجود_آوردن به_وجود_آورده_بودم V;1;SG;PST;PRF:COL استمنا_کردن استمنا_کردین V;2:PL;PST;COL توجه_کردن توجه_کرده_بودین V;2;PL;PST;PRF:COL زوم_کردن زوم_کرده_بود V;3;SG;PST;PRF مردن مرده_بود V;3;SG;PST;PRF اعلام_کردن اعلام_میکنین V;2;PL;PRS;IPFV;COL چشیدن خواهم_چشید V;1;SG;FUT پنهان_شدن پنهان_خواهید_شد V;2;PL;FUT اصرار_کردن اصرار_بکنم V;1;SG;SBJV;PRS برگشادن برگشاده_باشیم V;1;PL;SBJV;PST;COL خط_زدن خط_زنید V;2;PL;PFV اعتراض_کردن اعتراض_کنین V;2;PL;PFV;COL تفسیر_کردن تفسیر_بکنین V;2;PL;IMP;COL نماز_خواندن داشتیم_نماز_میخوندیم V;1;PL;PST;PROG;COL تقویت_کردن داشتم_تقویت_میکردم V;1;SG;PST;PROG;COL ترکیدن ترکیده V;3;SG;PRS;PRF:COL میل_کردن داشتند_میل_میکردند V;3;PL;PST;PROG زحمت_کشیدن زحمت_کشنده V;V.PTCP;PRS نوشتن مینوشتند V;3;PL;PST;IPFV ختنه_کردن ختنه_کرده_باشند V;3;PL;SBJV;PST بو_کردن بو_کنیم V;1;PL;PFV مجازات_کردن دارم_مجازات_میکنم V;1;SG;PRS;PROG;COL افشا_شدن افشا_میشم V;1;SG;PRS;IPFV;COL تنیدن تنیدهایم V;1;PL;PRS;PRF:COL گذاشتن گذارنده V;V.PTCP;PRS;COL پا_به_عرصه_وجود_گذاشتن پا_به_عرصه_وجود_گذاشتهاید V;2:PL;PRS;PRF نوشتن بنویسم V;1;SG;SBJV;PRS مردن مرده V;3;SG;PRS;PRF:COL به_زبان_آوردن دارم_به_زبان_میآورم V;1;SG;PRS;PROG سخن_گفتن سخن_گفته_باشی V;2;SG;SBJV;PST کار_کردن کار_کنی V;2;SG;PFV فضولی_کردن فضولی_میکنم V;1;SG;PRS;IPFV بستن بندم V;1:SG;PFV;COL پشت_سر_گذاشتن پشت_سر_میذاشتین V;2:PL;PST;IPFV;COL تنیدن تنیدهان V;3;PL;PRS;PRF:COL کوک_کردن کوک_میکردیم V;1;PL;PST;IPFV;COL درست_کردن درست_کنیم V;1;PL;PFV;COL امرار_معاش_کردن امرار_معاش_کرده_باشه V;3;SG;SBJV;PST;COL خودکشی_کردن داشتم_خودکشی_میکردم V;1;SG;PST;PROG;COL کوشش_کردن دارند_کوشش_میکنند V;3;PL;PRS;PROG گشودن گشودهاید V;2:PL;PRS;PRF بریدن بریده V;V.PTCP;PST;COL یاد_گرفتن یاد_گرفته_بود V;3;SG;PST;PRF:COL مداخله_کردن مداخله_کردن V;3;PL;PST;COL ستدن دارد_میستاند V;3;SG;PRS;PROG برخاستن داشت_میبرخاست V;3;SG;PST;PROG;COL حرکت_کردن داشتی_حرکت_میکردی V;2;SG;PST;PROG سخن_گفتن داشتیم_سخن_میگفتیم V;1;PL;PST;PROG نواختن نواخته_بودین V;2;PL;PST;PRF:COL انتقاد_کردن انتقاد_کننده V;V.PTCP;PRS سریدن داریم_میسریم V;1;PL;PRS;PROG نفس_کشیدن نفس_کشیده_بودیم V;1;PL;PST;PRF اصرار_کردن اصرار_کردن V;NFIN به_خاطر_سپردن داشتم_به_خاطر_میسپردم V;1;SG;PST;PROG;COL شکل_گرفتن شکل_گرفته_بودن V;3;PL;PST;PRF:COL آرام_گرفتن آروم_گرفتی V;2;SG;PST;COL بازی_کردن بازی_خواهی_کرد V;2;SG;FUT عطسه_کردن عطسه_بکنین V;2;PL;SBJV;PRS;COL عطسه_کردن عطسه_کرده_باشن V;3;PL;SBJV;PST;COL خط_زدن خط_میزنی V;2;SG;PRS;IPFV;COL اصرار_کردن اصرار_بکنی V;2;SG;SBJV;PRS;COL پا_به_جهان_گذاشتن پا_به_جهان_گذاشته_بود V;3;SG;PST;PRF:COL گم_شدن گم_میشوی V;2;SG;PRS;IPFV تعارف_کردن تعارف_میکردی V;2;SG;PST;IPFV آرام_گرفتن آروم_بگیرین V;2;PL;SBJV;PRS;COL آرایش_کردن آرایش_کردم V;1;SG;PST;COL حرکت_کردن دارین_حرکت_میکنین V;2;PL;PRS;PROG;COL پیدا_کردن پیدا_کرده_باشین V;2;PL;SBJV;PST;COL تکرار_کردن داشتی_تکرار_میکردی V;2;SG;PST;PROG;COL فضولی_کردن فضولی_کرده_بود V;3;SG;PST;PRF درد_گرفتن درد_گرفتن V;NFIN عکس_گرفتن عکس_بگیرد V;3;SG;SBJV;PRS پنهان_کردن پنهون_کرده V;V.PTCP;PST;COL کنار_گذاشتن کنار_بذارین V;2;PL;SBJV;PRS;COL تلفظ_کردن تلفظ_میکردی V;2;SG;PST;IPFV استفاده_کردن استفاده_میکرد V;3;SG;PST;IPFV;COL پنهان_کردن پنهان_کرده_باشم V;1;SG;SBJV;PST فریاد_زدن فریاد_زد V;3;SG;PST ذخیره_کردن دارد_ذخیره_میکند V;3;SG;PRS;PROG توجه_کردن توجه_میکردم V;1;SG;PST;IPFV;COL مانستن داشتن_میمونستن V;3;PL;PST;PROG;COL فشردن داشتید_میفشردید V;2:PL;PST;PROG برگشودن میبرگشایند V;3;PL;PRS;IPFV صحبت_کردن داری_صحبت_میکنی V;2;SG;PRS;PROG;COL غصه_خوردن غصه_میخورین V;2;PL;PRS;IPFV;COL حرکت_کردن حرکت_خواهی_کرد V;2;SG;FUT بافتن ببافین V;2;PL;SBJV;PRS;COL آرایش_کردن داشتم_آرایش_میکردم V;1;SG;PST;PROG;COL به_کار_بردن ببه_کار_برم V;1;SG;SBJV;PRS جلق_زدن جلق_زدی V;2;SG;PST;COL کون_کردن کون_کننده V;V.PTCP;PRS توجه_کردن توجه_خواهی_کرد V;2;SG;FUT کمک_کردن کمک_میکنه V;3;SG;PRS;IPFV;COL طاقت_آوردن داری_طاقت_میآوری V;2;SG;PRS;PROG سر_کردن سر_کنیم V;1;PL;PFV افشا_شدن افشا_بشوید V;2;PL;IMP پرسیدن پرسیده_بودند V;3;PL;PST;PRF نهیب_زدن نهیب_زدهایم V;1;PL;PRS;PRF بیدار_شدن بیدار_شده_بودند V;3;PL;PST;PRF یاد_گرفتن یاد_میگرفتیم V;1;PL;PST;IPFV;COL گشادن بگشای V;2;SG;IMP;COL آشنا_شدن آشنا_میشن V;3;PL;PRS;IPFV;COL لب_گرفتن لب_گرفتی V;2;SG;PST مکیدن مکیدین V;2:PL;PST;COL دستبرد_زدن دستبرد_بزنین V;2;PL;SBJV;PRS;COL اجرا_کردن اجرا_کرده_بودی V;2;SG;PST;PRF رژیم_گرفتن رژیم_گیرد V;3;SG;PFV گشودن گشایه V;3;SG;PFV;COL به_خاطر_سپردن داشت_به_خاطر_میسپرد V;3;SG;PST;PROG;COL به_دنیا_آمدن به_دنیا_اومده_بودم V;1;SG;PST;PRF:COL تفریح_کردن تفریح_کردهای V;2;SG;PRS;PRF:COL یافتن یافته_بودم V;1;SG;PST;PRF نگاه_کردن نگاه_خواهیم_کرد V;1;PL;FUT تفسیر_کردن تفسیر_بکن V;2;SG;IMP درد_گرفتن داشتید_درد_میگرفتید V;2:PL;PST;PROG پوشیدن خواهند_پوشید V;3;PL;FUT فوت_کردن فوت_خواهی_کرد V;2;SG;FUT خندیدن میخندم V;1;SG;PRS;IPFV;COL کاوش_کردن کاوش_میکنی V;2;SG;PRS;IPFV کشیدن کشیدهایم V;1;PL;PRS;PRF صحبت_کردن صحبت_میکنند V;3;PL;PRS;IPFV به_کار_بردن دارید_میبه_کار_برید V;2;PL;PRS;PROG پا_به_جهان_گذاشتن پا_به_جهان_میگذاشتید V;2:PL;PST;IPFV پژوهش_کردن پژوهش_کردیم V;1;PL;PST ثابت_کردن ثابت_کردهان V;3;PL;PRS;PRF:COL فکر_کردن فکر_کرده_باشند V;3;PL;SBJV;PST بیمار_شدن دارن_بیمار_میشن V;3;PL;PRS;PROG;COL تشکر_کردن تشکر_کردی V;2;SG;PST دیدن بینیم V;1;PL;PFV;COL دنبال_کردن دنبال_کرده_بودیم V;1;PL;PST;PRF رقصیدن رقصیدهای V;2;SG;PRS;PRF:COL فشردن فشارنده V;V.PTCP;PRS بزرگ_شدن بزرگ_شیم V;1;PL;PFV;COL خال_کوبیدن خال_کوبیده_بودی V;2;SG;PST;PRF ذخیره_کردن ذخیره_کرده_باشی V;2;SG;SBJV;PST دزدیدن دزدیده_باشین V;2;PL;SBJV;PST;COL طرفداری_کردن طرفداری_کنی V;2;SG;PFV ورزیدن ورزیدن V;3;PL;PST;COL عطسه_کردن عطسه_کنین V;2;PL;PFV;COL به_وجود_آوردن به_وجود_آورده_باشد V;3;SG;SBJV;PST فرض_کردن فرض_کردند V;3;PL;PST پیچیدن داشتی_میپیچیدی V;2;SG;PST;PROG;COL گذاشتن بگذاری V;2;SG;SBJV;PRS کشیدن کشیدند V;3;PL;PST خط_زدن خط_میزدند V;3;PL;PST;IPFV سریدن سریده_باشم V;1;SG;SBJV;PST تراشیدن میتراشی V;2;SG;PRS;IPFV;COL نفس_کشیدن نفس_کشیم V;1;PL;PFV;COL استفاده_کردن استفاده_کرده_بودی V;2;SG;PST;PRF بخشیدن بخشین V;2;PL;PFV;COL پشت_سر_گذاشتن پشت_سر_میگذاشت V;3;SG;PST;IPFV کاوش_کردن کاوش_بکنید V;2;PL;SBJV;PRS اعتراض_کردن اعتراض_کنن V;3;PL;PFV;COL گم_شدن گم_شده_باشین V;2;PL;SBJV;PST;COL راست_کردن راست_کرده_باشی V;2;SG;SBJV;PST;COL بستن بستین V;2:PL;PST;COL حفظ_کردن داشتم_حفظ_میکردم V;1;SG;PST;PROG;COL لیسیدن بلیسید V;2;PL;SBJV;PRS شروع_کردن داشتین_شروع_میکردین V;2:PL;PST;PROG;COL کاشتن بکارن V;3;PL;SBJV;PRS;COL تمام_شدن دارم_تمام_میشوم V;1;SG;PRS;PROG نهیب_زدن نهیب_زدهاین V;2:PL;PRS;PRF:COL کوک_کردن داریم_کوک_میکنیم V;1;PL;PRS;PROG ترکیدن ترکید V;3;SG;PST قمپز_درکردن قمپز_در_میکردیم V;1;PL;PST;IPFV;COL باختن میباختین V;2:PL;PST;IPFV;COL افسوس_خوردن افسوس_میخورد V;3;SG;PST;IPFV;COL شروع_کردن داشت_شروع_میکرد V;3;SG;PST;PROG;COL سر_کردن سر_میکنم V;1;SG;PRS;IPFV رژیم_گرفتن رژیم_گرفتین V;2:PL;PST;COL فشردن بفشاره V;3;SG;SBJV;PRS;COL پیدا_کردن پیدا_کردی V;2;SG;PST توجه_کردن توجه_کرده_بودم V;1;SG;PST;PRF حفظ_کردن داشتی_حفظ_میکردی V;2;SG;PST;PROG;COL آرایش_کردن آرایش_کردهایم V;1;PL;PRS;PRF:COL جوگیر_شدن دارم_جوگیر_میشم V;1;SG;PRS;PROG;COL زحمت_کشیدن زحمت_کشین V;2;PL;PFV;COL دزدیدن دزدیدهان V;3;PL;PRS;PRF:COL تبریک_گفتن تبریک_بگین V;2;PL;SBJV;PRS;COL تنیدن تنم V;1:SG;PFV;COL فضولی_کردن فضولی_کردن V;NFIN سیگار_کشیدن سیگار_میکشید V;3;SG;PST;IPFV;COL پیوستن میپیوستیم V;1;PL;PST;IPFV بیمار_شدن داشتن_بیمار_میشدن V;3;PL;PST;PROG;COL دراز_کشیدن دراز_کشیده_بودیم V;1;PL;PST;PRF:COL پنهان_کردن پنهان_بکن V;2;SG;IMP گشودن میگشایند V;3;PL;PRS;IPFV کون_کردن کون_کرده V;V.PTCP;PST;COL شکایت_کردن شکایت_میکنید V;2;PL;PRS;IPFV دفن_کردن دفن_کرده_باشید V;2;PL;SBJV;PST دیدن دیدهاید V;2:PL;PRS;PRF اداره_کردن اداره_کرده V;V.PTCP;PST;COL همکاری_کردن همکاری_بکنید V;2;PL;SBJV;PRS جمعآوری_کردن جمعآوری_بکنیم V;1;PL;SBJV;PRS آرام_گرفتن آرام_گرفتهایم V;1;PL;PRS;PRF جمعآوری_کردن جمعآوری_میکنیم V;1;PL;PRS;IPFV;COL خال_کوبیدن خال_کوبد V;3;SG;PFV بو_کردن بو_کنم V;1:SG;PFV;COL فارغالتحصیل_شدن فارغالتحصیل_شد V;3;SG;PST;COL پریدن پرنده V;V.PTCP;PRS;COL فشردن میفشاره V;3;SG;PRS;IPFV;COL شروع_کردن شروع_کرد V;3;SG;PST;COL خندیدن میخندیدیم V;1;PL;PST;IPFV حس_کردن حس_میکردیم V;1;PL;PST;IPFV;COL زدن زده_باشی V;2;SG;SBJV;PST مردن میری V;2;SG;PFV انزال_کردن داشتیم_انزال_میکردیم V;1;PL;PST;PROG بزرگ_شدن بزرگ_شده_باشی V;2;SG;SBJV;PST کاوش_کردن کاوش_کرده_باشین V;2;PL;SBJV;PST;COL جا_گذاشتن داشتیم_جا_میذاشتیم V;1;PL;PST;PROG;COL گداختن میگداختن V;3;PL;PST;IPFV;COL فوت_کردن فوت_خواهید_کرد V;2;PL;FUT گزاف_گفتن گزاف_میگین V;2;PL;PRS;IPFV;COL خندسن خندسه_بودم V;1;SG;PST;PRF اتراق_کردن اتراق_میکند V;3;SG;PRS;IPFV فوت_کردن فوت_کرده_بودی V;2;SG;PST;PRF:COL گم_کردن گم_کردن V;3;PL;PST;COL ورزش_کردن داشتم_ورزش_میکردم V;1;SG;PST;PROG رژیم_گرفتن رژیم_میگرفتیم V;1;PL;PST;IPFV;COL تمام_کردن تمام_کردهاید V;2:PL;PRS;PRF باور_کردن باور_کنیم V;1;PL;PFV چروک_شدن چروک_شیم V;1;PL;PFV;COL پریدن بپرین V;2;PL;SBJV;PRS;COL حشری_شدن حشری_شده_باشم V;1;SG;SBJV;PST;COL فهمیدن فهمیده_بودی V;2;SG;PST;PRF افشا_شدن افشا_شود V;3;SG;PFV فکر_کردن فکر_کردند V;3;PL;PST جدا_کردن جدا_کرده_باشی V;2;SG;SBJV;PST;COL پشت_سر_گذاشتن پشت_سر_میذاریم V;1;PL;PRS;IPFV;COL تنیدن تنیده_باشد V;3;SG;SBJV;PST خاستن خاستهام V;1;SG;PRS;PRF:COL نامیدن دارم_مینامم V;1;SG;PRS;PROG خاستن خواهند_خاست V;3;PL;FUT تفسیر_کردن تفسیر_کرده_بودم V;1;SG;PST;PRF:COL ورزیدن بورزین V;2;PL;SBJV;PRS;COL میل_کردن میل_کرده_بودم V;1;SG;PST;PRF:COL بوسیدن بوسیده_بودی V;2;SG;PST;PRF بوسیدن خواهید_بوسید V;2;PL;FUT گفته_شدن گفته_شده_باشن V;3;PL;SBJV;PST;COL کینه_ورزیدن کینه_ورزیدی V;2;SG;PST;COL استمنا_کردن استمنا_کنیم V;1;PL;PFV قطع_کردن قطع_کنین V;2;PL;PFV;COL سعی_کردن سعی_کردی V;2;SG;PST عطسه_کردن عطسه_کردید V;2:PL;PST نهیب_زدن نهیب_میزدی V;2;SG;PST;IPFV;COL کاشتن بکارم V;1;SG;SBJV;PRS;COL تمام_شدن تموم_شده V;V.PTCP;PST;COL بیمار_شدن بیمار_بشوید V;2;PL;IMP تبریک_گفتن تبریک_میگوییم V;1;PL;PRS;IPFV کاوش_کردن کاوش_کنی V;2;SG;PFV;COL خنثی_کردن خنثی_خواهید_کرد V;2;PL;FUT حمام_کردن حموم_کردم V;1;SG;PST;COL تمام_شدن تمام_شدم V;1;SG;PST پیچیدن پیچید V;3;SG;PST غصه_خوردن غصه_خوردن V;NFIN فشردن فشرده_بودی V;2;SG;PST;PRF فراموش_کردن فراموش_میکنین V;2;PL;PRS;IPFV;COL سیگار_کشیدن سیگار_میکشیدن V;3;PL;PST;IPFV;COL اغوا_کردن اغوا_میکنن V;3;PL;PRS;IPFV;COL فشردن میفشرد V;3;SG;PST;IPFV به_دنیا_آمدن به_دنیا_اومدهایم V;1;PL;PRS;PRF:COL عکس_گرفتن عکس_بگیریم V;1;PL;SBJV;PRS;COL قطع_کردن قطع_میکردید V;2:PL;PST;IPFV گول_خوردن داشت_گول_میخورد V;3;SG;PST;PROG;COL تحصیل_کردن تحصیل_بکنین V;2;PL;SBJV;PRS;COL جلق_زدن جلق_خواهد_زد V;3;SG;FUT پشت_سر_گذاشتن پشت_سر_بذاریم V;1;PL;SBJV;PRS;COL توجه_کردن توجه_کردی V;2;SG;PST;COL ثابت_کردن ثابت_میکنید V;2;PL;PRS;IPFV گوزیدن گوزیم V;1;PL;PFV;COL بزرگ_شدن بزرگ_بشوید V;2;PL;SBJV;PRS اعتراض_کردن اعتراض_کردهای V;2;SG;PRS;PRF نهیب_زدن نهیب_بزنه V;3;SG;SBJV;PRS;COL فکر_کردن فکر_کنید V;2;PL;PFV تمام_کردن تمام_کنند V;3;PL;PFV سرفه_کردن دارین_سرفه_میکنین V;2;PL;PRS;PROG;COL تفریح_کردن دارد_تفریح_میکند V;3;SG;PRS;PROG به_دنیا_آمدن به_دنیا_آیند V;3;PL;PFV خط_زدن خط_زدهای V;2;SG;PRS;PRF کوشش_کردن کوشش_میکنیم V;1;PL;PRS;IPFV;COL نگاه_کردن نیگا_کردهان V;3;PL;PRS;PRF:COL فوت_کردن فوت_میکردی V;2;SG;PST;IPFV;COL فال_گرفتن داشتین_فال_میگرفتین V;2:PL;PST;PROG;COL برگشودن میبرگشایه V;3;SG;PRS;IPFV;COL خودکشی_کردن داشتند_خودکشی_میکردند V;3;PL;PST;PROG مرطوب_کردن مرطوب_کرده_باشند V;3;PL;SBJV;PST سریدن سریدند V;3;PL;PST گول_خوردن داری_گول_میخوری V;2;SG;PRS;PROG;COL دل_به_دریا_زدن دل_به_دریا_زده_بودیم V;1;PL;PST;PRF منتشر_کردن داریم_منتشر_میکنیم V;1;PL;PRS;PROG عطسه_کردن عطسه_میکردم V;1;SG;PST;IPFV;COL شناسایی_کردن شناسایی_کرد V;3;SG;PST لب_گرفتن لب_بگیریم V;1;PL;SBJV;PRS اضافه_کردن داشتم_اضافه_میکردم V;1;SG;PST;PROG;COL جلق_زدن داشتی_جلق_میزدی V;2;SG;PST;PROG نامیدن بنامین V;2;PL;IMP;COL آواز_خواندن داشتن_آواز_میخوندن V;3;PL;PST;PROG;COL راست_کردن راست_میکردی V;2;SG;PST;IPFV;COL کاشتن دارین_میکارین V;2;PL;PRS;PROG;COL سرفه_کردن داری_سرفه_میکنی V;2;SG;PRS;PROG;COL افشا_شدن افشا_میشه V;3;SG;PRS;IPFV;COL غصه_خوردن غصه_خوردهام V;1;SG;PRS;PRF:COL تبریک_گفتن داشتم_تبریک_میگفتم V;1;SG;PST;PROG آشنا_شدن آشنا_شدهایم V;1;PL;PRS;PRF:COL خرید_کردن خرید_کننده V;V.PTCP;PRS کاوش_کردن کاوش_میکنم V;1;SG;PRS;IPFV;COL حرکت_کردن حرکت_میکرد V;3;SG;PST;IPFV;COL شکایت_کردن شکایت_بکنیم V;1;PL;SBJV;PRS به_فراموشی_سپردن به_فراموشی_خواهد_سپرد V;3;SG;FUT چیدن میچیدند V;3;PL;PST;IPFV انزال_کردن داره_انزال_میکنه V;3;SG;PRS;PROG;COL ورزش_کردن ورزش_کردن V;NFIN نابود_کردن داشتیم_نابود_میکردیم V;1;PL;PST;PROG ژولیدن ژولیدند V;3;PL;PST دنبال_کردن دارم_دنبال_میکنم V;1;SG;PRS;PROG;COL جلق_زدن دارند_جلق_میزنند V;3;PL;PRS;PROG طاقت_آوردن دارین_طاقت_میآرین V;2;PL;PRS;PROG;COL کپک_زدن کپک_بزنید V;2;PL;IMP زدن میزنیم V;1;PL;PRS;IPFV;COL جوگیر_شدن جوگیر_شدیم V;1;PL;PST باور_کردن باور_کرده_باشین V;2;PL;SBJV;PST;COL سر_کردن دارین_سر_میکنین V;2;PL;PRS;PROG;COL پنداشتن پندارند V;3;PL;PFV دیدن دیدیم V;1;PL;PST;COL برگشودن برگشوده_باشین V;2;PL;SBJV;PST;COL فضولی_کردن فضولی_کردن V;NFIN;COL اسکی_کردن اسکی_کرده V;V.PTCP;PST;COL اعتراض_کردن اعتراض_کردی V;2;SG;PST کشتی_گرفتن داریم_کشتی_میگیریم V;1;PL;PRS;PROG;COL درست_کردن درست_بکنیم V;1;PL;SBJV;PRS;COL لیسیدن لیسیده_باشد V;3;SG;SBJV;PST آشنا_شدن آشنا_شدن V;NFIN;COL ترجمه_کردن داشتند_ترجمه_میکردند V;3;PL;PST;PROG حس_کردن حس_بکنیم V;1;PL;SBJV;PRS وا_کردن باز_میکردید V;2:PL;PST;IPFV تمام_شدن تمام_شدهای V;2;SG;PRS;PRF خوردن میخورد V;3;SG;PRS;IPFV تمام_شدن داریم_تمام_میشویم V;1;PL;PRS;PROG تشریف_بردن تشریف_بریم V;1;PL;PFV مونتاژ_کردن مونتاژ_خواهند_کرد V;3;PL;FUT صحبت_کردن صحبت_کنی V;2;SG;PFV;COL دل_به_دریا_زدن دل_به_دریا_زدهای V;2;SG;PRS;PRF تلفظ_کردن تلفظ_کردهام V;1;SG;PRS;PRF:COL تعجب_کردن تعجب_کرده_باشیم V;1;PL;SBJV;PST;COL ثابت_کردن ثابت_کرده_بودم V;1;SG;PST;PRF:COL لیسیدن بلیسد V;3;SG;SBJV;PRS جدا_کردن جدا_کرد V;3;SG;PST استمنا_کردن استمنا_کنی V;2;SG;PFV پا_به_جهان_گذاشتن پا_به_جهان_میگذارید V;2;PL;PRS;IPFV بیدار_شدن بیدار_شدهاند V;3;PL;PRS;PRF خندیدن خندیده_بود V;3;SG;PST;PRF کم_کردن داری_کم_میکنی V;2;SG;PRS;PROG;COL راست_گفتن راست_میگوییم V;1;PL;PRS;IPFV مرطوب_کردن داری_مرطوب_میکنی V;2;SG;PRS;PROG استراحت_کردن استراحت_کنه V;3;SG;PFV;COL کون_کردن کون_خواهم_کرد V;1;SG;FUT گوزیدن گوزیده_باشه V;3;SG;SBJV;PST;COL تماشا_کردن تماشا_کرده_بودی V;2;SG;PST;PRF کوبیدن میکوبین V;2;PL;PRS;IPFV;COL توجه_کردن توجه_کرده_باشی V;2;SG;SBJV;PST جمعآوری_کردن جمعآوری_کنیم V;1;PL;PFV گم_شدن داشتیم_گم_میشدیم V;1;PL;PST;PROG تکان_خوردن تکان_خوردن V;NFIN شروع_کردن شروع_میکردید V;2:PL;PST;IPFV باختن باخته_بودیم V;1;PL;PST;PRF استمنا_کردن استمنا_کرده V;3;SG;PRS;PRF:COL همکاری_کردن همکاری_میکردی V;2;SG;PST;IPFV غصه_خوردن غصه_خورده V;V.PTCP;PST پا_به_جهان_گذاشتن پا_به_جهان_گذاشتم V;1;SG;PST آرام_گرفتن داشتم_آرام_میگرفتم V;1;SG;PST;PROG حشری_شدن حشری_شدهام V;1;SG;PRS;PRF فراموش_کردن فراموش_کرده_است V;3;SG;PRS;PRF جوگیر_شدن جوگیر_شده_بودیم V;1;PL;PST;PRF:COL خوردن بخورید V;2;PL;IMP بخشیدن میبخشیدم V;1;SG;PST;IPFV پرستیدن پرستیده_باشیم V;1;PL;SBJV;PST;COL کر_کردن کر_میکنن V;3;PL;PRS;IPFV;COL کم_کردن کم_کرده_باشم V;1;SG;SBJV;PST حرف_زدن حرف_میزد V;3;SG;PST;IPFV;COL بازی_کردن بازی_کنند V;3;PL;PFV تحمل_کردن تحمل_کردهاید V;2:PL;PRS;PRF کوچک_شدن کوچک_شدهایم V;1;PL;PRS;PRF جا_گذاشتن جا_میذاشتم V;1;SG;PST;IPFV;COL یافتن خواهید_یافت V;2;PL;FUT پژوهش_کردن پژوهش_کرده_باشیم V;1;PL;SBJV;PST آرام_گرفتن آرام_بگیرید V;2;PL;IMP افشردن میافشاری V;2;SG;PRS;IPFV باز_کردن باز_کرده_بودی V;2;SG;PST;PRF به_یاد_آوردن به_یاد_بیاورید V;2;PL;SBJV;PRS تراشیدن تراشیده_باشیم V;1;PL;SBJV;PST باور_کردن باور_خواهی_کرد V;2;SG;FUT حرکت_کردن دارید_حرکت_میکنید V;2;PL;PRS;PROG بو_کردن بو_کرده_باشم V;1;SG;SBJV;PST تبریک_گفتن تبریک_گفته_بودند V;3;PL;PST;PRF بیمار_شدن داشت_بیمار_میشد V;3;SG;PST;PROG جلق_زدن جلق_زدیم V;1;PL;PST;COL ماچ_کردن ماچ_کرده_باشد V;3;SG;SBJV;PST بزرگ_شدن بزرگ_بشوم V;1;SG;SBJV;PRS پنهان_شدن پنهان_شدیم V;1;PL;PST چسبیدن چسبیده_بودی V;2;SG;PST;PRF متحیر_کردن دارن_متحیر_میکنن V;3;PL;PRS;PROG;COL کم_کردن کم_میکردید V;2:PL;PST;IPFV جا_گذاشتن جا_میذاشتن V;3;PL;PST;IPFV;COL صحبت_کردن صحبت_بکنی V;2;SG;SBJV;PRS;COL فضولی_کردن فضولی_میکنی V;2;SG;PRS;IPFV سخن_گفتن سخن_بگو V;2;SG;IMP;COL ستدن میستونی V;2;SG;PRS;IPFV;COL تلفظ_کردن داشتیم_تلفظ_میکردیم V;1;PL;PST;PROG;COL اصرار_کردن اصرار_کردهاید V;2:PL;PRS;PRF نشستن نشسته_بودم V;1;SG;PST;PRF:COL بیدار_کردن بیدار_کنند V;3;PL;PFV دل_به_دریا_زدن داشتن_دل_به_دریا_میزدن V;3;PL;PST;PROG;COL جمعآوری_کردن جمعآوری_کرده_بودند V;3;PL;PST;PRF استمنا_کردن استمنا_میکردیم V;1;PL;PST;IPFV پوشیدن پوشد V;3;SG;PFV یاد_گرفتن دارید_یاد_میگیرید V;2;PL;PRS;PROG کینه_ورزیدن کینه_خواهید_ورزید V;2;PL;FUT کشتی_گرفتن کشتی_گرفتن V;3;PL;PST;COL گم_کردن گم_بکنیم V;1;PL;SBJV;PRS دزدیدن دزدیده_باشم V;1;SG;SBJV;PST;COL تمیز_کردن تمیز_کردهام V;1;SG;PRS;PRF:COL مرحمت_کردن مرحمت_کرده_باشین V;2;PL;SBJV;PST;COL استمنا_کردن استمنا_کردهان V;3;PL;PRS;PRF:COL زندگی_کردن زندگی_بکنی V;2;SG;SBJV;PRS;COL کمک_کردن کمک_کردهایم V;1;PL;PRS;PRF:COL چروک_شدن چروک_شده_باشی V;2;SG;SBJV;PST کوشش_کردن کوشش_میکنید V;2;PL;PRS;IPFV باز_کردن باز_کرده_است V;3;SG;PRS;PRF افکندن داری_میافکنی V;2;SG;PRS;PROG;COL درست_کردن درست_کرده_باشن V;3;PL;SBJV;PST;COL حرف_زدن حرف_زده_بودین V;2;PL;PST;PRF:COL سر_کردن سر_بکنن V;3;PL;SBJV;PRS;COL چیدن چیده_باشد V;3;SG;SBJV;PST لبخند_زدن لبخند_خواهیم_زد V;1;PL;FUT بوییدن بوییدی V;2;SG;PST خرید_کردن خرید_میکنیم V;1;PL;PRS;IPFV;COL تنظیم_کردن تنظیم_کنند V;3;PL;PFV بوسیدن میبوسند V;3;PL;PRS;IPFV چسبیدن میچسبیدی V;2;SG;PST;IPFV خواستن داشت_میخواست V;3;SG;PST;PROG;COL خنثی_کردن خنثی_بکنین V;2;PL;IMP;COL به_یاد_آوردن به_یاد_آورد V;3;SG;PST ساک_زدن ساک_میزدند V;3;PL;PST;IPFV اغوا_کردن اغوا_بکنید V;2;PL;IMP امرار_معاش_کردن امرار_معاش_کرده_بودند V;3;PL;PST;PRF پیدا_کردن داشتی_پیدا_میکردی V;2;SG;PST;PROG;COL زوم_کردن زوم_کنیم V;1;PL;PFV;COL آرایش_کردن آرایش_خواهند_کرد V;3;PL;FUT
b67b71512f9e646e513e04394b27ee4dd872661f
449d555969bfd7befe906877abab098c6e63a0e8
/40/CH9/EX9.6/Exa_9_6.sce
eae65a968ac5cc747d365edf72cf5da991d1fc9d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
442
sce
Exa_9_6.sce
//Mappings from integration algorithm //(a)Trapezoidal integration algorithm s=%s;z=%z; a=input('enter the value of a') ts=input('enter the value of sampling time') HS=1/(s+1); HZa=horner(HS,2*(z-1)/(ts*(z+1))) za=roots(denom(HZa))//pole always less than 1 ,hence HZ is stable //(b)simphson's algorithm HZb=horner(HS,3*(z^2-1)/(ts*(z^2+4*z+1))) zb=roots(denom(HZb)) //magnitude of 1 pole always greater than 1 ,hence HZ is unstable
a4c34a3a24de4782e276b95599e20159d8975d0c
fdffabe522d631a0964c00b5566713df90e84b8d
/Electrical Machines 2 (EE258)/Lab 2/labtask2_3.sci
322e31a10860125509319b03d8332610c88c4f54
[]
no_license
mnaveenkumar2009/Electrical-and-Electronics-Engineering
aacf3ee8468ea46627162f3f939f257ba55577e1
874bcefc328ebe0793bcb8a4792611b26a2539a6
refs/heads/master
2021-07-12T10:59:32.859028
2020-07-06T16:40:33
2020-07-06T16:40:33
129,063,058
0
0
null
null
null
null
UTF-8
Scilab
false
false
485
sci
labtask2_3.sci
w=2*%pi*f; thetaI=atan(imag(I)/real(I)); thetaVt=atan(imag(Vt)/real(Vt)); thetaE=atan(imag(E)/real(E)); modVt=(real(Vt)*real(Vt))+(imag(Vt)*imag(Vt)); modVt=sqrt(modVt); modI=(real(I)*real(I))+(imag(I)*imag(I)); modI=sqrt(modI); modE=(real(E)*real(E))+(imag(E)*imag(E)); modE=sqrt(modE); t=[0:0.0001:%1/50]; subplot(3,1,1); plot(t,sqrt(2).*(modI*sin(w.*t+thetaI))); subplot(3,1,2); plot(t,sqrt(2).*(modVt*sin(w.*t+thetaVt))); subplot(3,1,3); plot(t,sqrt(2).*(modE*sin(w.*t+thetaE)));
4403bed082c76398610871bb47cf29da31d78225
449d555969bfd7befe906877abab098c6e63a0e8
/1022/CH8/EX8.1/8_1.sce
8f0cc2ddaca47f0f99089f9bbb03f3d10340b5e7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
237
sce
8_1.sce
clc //initialisation of variables W= 25 //Btu W1= 100 //Btu T1= 140 //R T2= 0 //R //CALCULATIONS Th= T1+460 Tl= T2+460 nt= (Th-Tl)/Th n= nt*100 //RESULTS printf ('maximum theotrical efficiency= %.1f (Claim is not valid)',n)
f06d5eb5df64d9f5522bc6a54425cfdfb4f5eeaf
7047cbe423e59d7d64812fffa19d10292e5e456f
/proyect.sci
0dcf126eab0cab7a00b7b287fdd73d2c0116fbf0
[]
no_license
JosPerez/IoTPIbot
39a5f8ebb87185028ef20b169fdcac0edf255fe8
30c645d592b90c8a4151f584300724bd79549067
refs/heads/master
2022-11-17T03:14:13.086618
2017-05-04T20:20:38
2017-05-04T20:20:38
90,306,419
1
1
null
2022-11-01T15:08:20
2017-05-04T20:25:24
JavaScript
UTF-8
Scilab
false
false
1,880
sci
proyect.sci
facil = ["hola", "dora","dama", "amor"] medio = ["hacer","anexo","comer","Lente"] dificil = ["sabana","fabula","hablan","quemar"] function [] = menu() des = "a" nivel = [] n = "f" while(des <> "f") disp("a) scramble word") disp("b) change level") disp("c) agregar palabra") disp("d) mostrar lista") disp("e) eliminar") disp("f) salir") if des == "a" then if n == "f" then juegoF() elseif n == "m" then juegoM() elseif n == "d" then juegoD() end elseif des == "b" then n = input("Seleciona nivel") nivel = changeLevel(n) elseif des == "c" then n = input("entra nivel") palabra = input("entra una palabra") agregar(palabra,n) elseif des == "d" then show() elseif des == "e" then end end endfunction function [nivel] = changeLevel(n) if n == "f" then nivel = facil elseif n == "m" then nivel = medio elseif n == "d" then nivel = dificil end disp("Cambio de nivel") endfunction function [] = show() disp("Facil") disp(facil) disp("Medio") disp(medio) disp("Dificil") disp(dificil) endfunction function [] = agregar(palabra,n) arreglo = [palabra] if n == "f" then facil = cat(facil,arreglo) elseif n == "m" then medio = cat(medio,arreglo) elseif n == "d" then dificil = cat(medio,arreglo) end endfunction function [] = juegoF() ran = floor((rand*length(facil))+1) palabra = facil[ran] disp(strrev(palabra)) ans = input("la palabra es:") if ans == palabra then disp("winner player") else disp("players fail") endfunction function [] = juegoM() ran = floor((rand*length(medio))+1) palabra = medio[ran] disp(strrev(palabra)) ans = input("la palabra es:") if ans == palabra then disp("winner player") else disp("players fail") endfunction function [] = juegoD() ran = floor((rand*length(dificil))+1) palabra = dificil[ran] disp(strrev(palabra)) ans = input("la palabra es:") if ans == palabra then disp("winner player") else disp("players fail") endfunction
a596e1275a3d4fd593408e1727b59f7f979a7f69
e82d1909ffc4f200b5f6d16cffb9868f3b695f2a
/Lista 10/Lista Baron/gaussseidel.sci
7a35d9f24216240471e58440f25d74a19ba726cf
[]
no_license
AugustoCam95/Computational-Linear-Algebra
eb14307dd3b45ccc79617efe74d1faca639c36c5
99b1a1f9499fbc4343bd5c878444e9e281952774
refs/heads/master
2020-03-30T22:26:23.790763
2018-10-05T03:34:06
2018-10-05T03:34:06
151,666,289
0
0
null
null
null
null
UTF-8
Scilab
false
false
337
sci
gaussseidel.sci
function [x,niter]=gaussseidel(A,b) [l,c]=size(A); D=diag(diag(A)); L=-1*(D-tril(A)); U=-1*(D-triu(A)); niter=0 x=zeros(l,1); crit=1 normb = norm(b); while(0.00000001<crit) niter=niter+1 x = inv(D)*b-inv(D)*L*x-inv(D)*U*x; crit = norm((A * x - b) / normb); end endfunction
aff3c884f5caa58d97dcdf6da299855e0d0f6387
449d555969bfd7befe906877abab098c6e63a0e8
/3863/CH13/EX13.2/Ex13_2.sce
0102fca2a03349098fb3f37b18157483dc0cfc5f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
556
sce
Ex13_2.sce
clear // //Given //Variable declaration L=3*1000 //Length in mm W=50*1000 //Point load in N a=2*1000 //Distance between the load and fixed end in mm I=1e8 //Moment of Inertia in mm^4 E=2e5 //Youngs modulus in N/sq.mm //Calculation //case(i):Slope at the free end thetaB=(W*(a**2))/(2*E*I) //case(ii):Deflection at the free end yB=(((W*a**3)/(E*I*3))+((W*(a**2))/(2*E*I)*(L-a))) //Result printf("\n Slope at the free end = %0.3f rad",thetaB) printf("\n Deflection at the free end = %0.3f mm",yB)
7ee42cfdd5ca74b0caa77cf043d8989d91038c13
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set9/s_Engineering_Physics_M._R._Srinivasan_3411.zip/Engineering_Physics_M._R._Srinivasan_3411/CH6/EX6.7.u1/Ex6_7_u1.sce
5efd22c80bce9fac18f15092ccd7c984211a0472
[]
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
421
sce
Ex6_7_u1.sce
errcatch(-1,"stop");mode(2);//Example 6_7_u1 ; ; //To calculate the no of photons emitted by the ruby laser p=1 //units in Watts lamda=694.3 //units in nm lamda=lamda*10^-9 //units in meters h=6.63*10^-34 //units in m^2 kg s^-1 c=3*10^8 //units in meter/sec n=(p*lamda)/(h*c) printf("The no of photons emitted by the ruby laser is n=") disp(n) exit();
0e7aaa2c33cc932c1d9d7c8232cde0dae3739e82
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH20/EX20.9/ex20_9.sce
21df149d38b9bbf5984fc6720ca3e0cb341af477
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
213
sce
ex20_9.sce
clc; clear all; l=0.839e-9;//cell edge length b=9.27e-24; Ms=32*b/(l^3);//saturation magnetisation disp('A/m',Ms,'saturation magnetisation is:') // Wrong answer printed in textbook... checked in calculator
99f629c567a5eb8015199d774fb7b5c34a43c3a4
178822612bcd418dc12ba7a649304a24ab618d60
/Numerical Analysis/Exercise_1.sci
19af53b7b11385735bffd3b776c01cfe68ae4d6d
[]
no_license
engom/Math_Problem_Solving
b56c6cbfbff6c416c519795b9ab8f0c0bbba5ea3
6538c476681ae4ee803ea9b3a8944c5f370e1961
refs/heads/master
2022-05-25T01:13:16.123161
2016-02-13T11:32:28
2016-02-13T11:32:28
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,323
sci
Exercise_1.sci
function[Radius]=test(A) D=diag(diag(A)); E=diag(diag(A))-tril(A); F=diag(diag(A))-triu(A); J=inv(D)*(E+F), if (max(abs(spec(J)))>=1) then disp('Jacobi method do not converge !!') Radius=max(abs(spec(J))) end endfunction function [x]= Jacobi(A,b,eps,x) [n m] = size (A); // size of the matrix A if n<>m then disp('this is not a squared matrix'); end Itmax=1000.; //maximum number of iterations iteration=0; converg=0; while (converg==0) for i=1:n s=0 for j=1:n if i<>j then s=s+A(i,j)*x(j); end end y(i)=(1/A(i,i))*(b(i)-s); end abso = abs(x(1)-y(1)); for i=2:n if abso<abs(x(i)-y(i)) then abso=abs(x(i)-y(i)); end end iteration=iteration + 1; if((iteration==Itmax)|(abso<eps)) then converg=1; end x=y; end endfunction function[x,iter]=Gauss_seidel(A,b,tol,iterMax,x0) iter=0 [n,m]=size(A) r=norm(b-A*x0) while (r > tol & iter < iterMax) iter=iter+1 x=x0 for i=1:n s=0 for j=1:i-1 s=s+A(i,j)*x(j) end for j=i+1:n s=s+A(i,j)*x(j) end x(i)=(b(i)-s)/A(i,i) end end endfunction
a2827865fe485ba30b0aa5c7f74e41717b509491
449d555969bfd7befe906877abab098c6e63a0e8
/2021/CH19/EX19.9/EX19_9.sce
8ba1719c340e020759fab74c156d8e3490bd911f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
272
sce
EX19_9.sce
//Finding of Manometric head //Given D1=0.4; B1=0.025; Q=0.06; N=1000; a=30; g=9.81; Emano=0.8; //To Find u=(%pi*D1*N)/60; Vf=Q/(%pi*D1*B1); Vw1=(-Vf*tan(%pi/6)+u); H=(Vw1*u)/g; Hm=(Emano*u*Vw1)/g; Hm1=2*Hm; disp("Head Developed ="+string(Hm1)+" meter");
646675244799f1e0ef2b57b12374a04c98548e3f
449d555969bfd7befe906877abab098c6e63a0e8
/1379/CH6/EX6.1.2/example6_2.sce
11f5d991ecc383ca4051417183e57f5e596566bd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
494
sce
example6_2.sce
//example 6.2 clc; funcprot(0); //exapple 6.2 // Initialization of Variable Q1=24.8/1000;//flow in pump 1 d1=11.8/100;//diameter of impeller 1 H1=14.7//head of pump 1 N1=1450//frequency of motor 1 Q2=48/1000//flow in pump 2 //calculation H2=1.15*H1;//head of pump 2 specific_speed=N1*Q1^0.5/H1^0.75; N2=specific_speed*H2^0.75/Q2^0.5;//frequency of motor 2 disp(N2 ,"frequency of motor 2 in rpm"); d2=sqrt(N2^2*H1/H2/N1^2/d1^2); disp(1/d2 , "diametr of impeller 2 (in m)");
cb0cc3d9efdb52bb355e0fbb0279fe2bfd9a322d
2f7b1fa044c246ffe96b7e6e7b96aa95f9031cdf
/Anul 2/Anul_2/Metode_Numerice/Laborator/MN rezolvari/MN_Lab/lab7_functii_de_transfer.sce
4579153b33dfb729e6913eee9ba1bcf6d7cec287
[]
no_license
stickyrst/automatica
1f902091376c0f65c08a66721de3185a70f88d26
2ac48ae78f45b787724fa90c0e7acd8052e6725c
refs/heads/master
2020-06-11T18:39:23.768638
2018-05-30T19:55:38
2018-05-30T19:55:38
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
256
sce
lab7_functii_de_transfer.sce
L=0.1; R=5; C=0.001; A=[0,1 ; -1/(L*C),-(R/L)]; B=[0;1/L]; C=[1,0]; D=[0]; sis=syslin('c',A,B,C,D); FT=ss2tf(sis); disp(FT); gs=tf2ss(FT); disp(gs); t=[0:0.1:1000]; u=10*sin(314*t); [y x]=csim(u,t,sis); plot(t,x) plot(t,y)
7971aab503df0807d6f5cd63b2bf895a4bfa9f52
449d555969bfd7befe906877abab098c6e63a0e8
/848/CH7/EX7.2/Example7_2.sce
56ebef637abb2d2304a1c4647eb6cdfbcb8a121e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
403
sce
Example7_2.sce
//clear// //Caption: To find out signal-to-noise ratio and probability of error for given 'Q' //Example7.2 //Page 258 clear; clc; close; Q = 6; Pe = (1/2)*(1-erf(Q/sqrt(2))); S_N_dB = 10*log10(2*Q); disp(Pe,'Probability of error Pe(Q) =') disp(S_N_dB,'Signal-to-noise ratio in dB S/N =') //Result //Probability of error Pe(Q) = 9.866D-10 //Signal-to-noise ratio in dB S/N = 10.791812
a44b7e21224fe08f6bf2f8bc310251adca67bf6f
449d555969bfd7befe906877abab098c6e63a0e8
/3733/CH3/EX3.4/Ex3_4.sce
be12d2d8ad73d67907d4fd54a09dccab855d9e8b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,225
sce
Ex3_4.sce
// Example 3_4 clc;funcprot(0); //Given data L=[60 120 40 10];// Load in MW T_1=[6,10];// Time in hours T_2=[10,18];// Time in hours T_3=[18,24];// Time in hours T_4=[0,6];// Time in hours Er=1.5;// Rs/kW-hr c=2.2;// Cost of input in rupees n_th=[35 40 30 20]/100; Q=20000;// kJ n_thb=40/100;// Thermal efficiency n_o=80/100;// Over all efficiency of pump storage plant // Calculation //(a) T_p=[0 0 4 4 12 12 18 18 24 24];// Time in hours L_p=[0 60 60 120 120 40 40 10 10 130];// Load in MW plot(T_p',L_p','b'); a=gca(); a.x_ticks.labels=["6 P.M","","","12 P.M","","","6 P.M","","","12 P.M","","","6 P.M"]; a.x_ticks.locations=[0;2;4;6;8;10;12;14;16;18;20;22;24]; O=((L(1)*(T_1(2)-T_1(1)))+(L(2)*(T_2(2)-T_2(1)))+(L(3)*(T_3(2)-T_3(1)))+(L(4)*(T_4(2)-T_4(1))))*10^3;// Total energy generated by the thermal plant Tc_s=Er*O;// Total cost of selling the power in rupees I= (((L(1)*(T_1(2)-T_1(1)))/(n_th(1)))+((L(2)*(T_2(2)-T_2(1)))/(n_th(2)))+((L(3)*(T_3(2)-T_3(1)))/(n_th(3)))+((L(4)*(T_4(2)-T_4(1)))/(n_th(4))))*10^3;// Total input to the thermal plant in kWh Tc_i=c*(1/(Q))*(I*3600);// Total cost of input energy in rupees Nr_1=Tc_s-Tc_i;// Net revenue earned in Rs./day //(b) function[Y]=baseload(x) Y(1)=((((x(1)-L(3))*(T_3(2)-T_3(1)))+((x(1)-L(4))*(T_4(2)-T_4(1)))+((x(1)-L(1))*(T_1(2)-T_1(1))))*(n_o))-((L(2)-x(1))*(T_2(2)-T_2(1))); endfunction x=[10]; z=fsolve(x,baseload); x=(z(1));// The capacity of the thermal plant in MW X=[x x x x x x x x x x];// // The capacity of the thermal plant in MW for plot xlabel('Time in hrs'); ylabel('Load in MW'); plot(T_p',L_p','b',T_p',X','b-.'); legend('Load curve','Base load thermal plant'); Ti=((x*24)/n_thb)*3600;// Total input to the thermal plant in 24 hours in MJ Tc_i=Er*(1/Q)*Ti*10^3;// Total cost of input energy during 24 hours in rupees Nr_2=Tc_s-Tc_i;// // Net revenue earned from the combined plant in Rs./day P=((Nr_2-Nr_1)/(Nr_1))*100;// Percentage increase in the profit printf('\n(a)The net revenue earned if the load is taken by the single thermal power plant=%0.3e rupees per day \n(b)The capacity of the thermal plant=%0.0f MW \n Percentage increase in the revenue earned=%0.1f percentage',Nr_1,x,P);
54f133299f8bb2b39c9e75831d6b8071820d4a61
717ddeb7e700373742c617a95e25a2376565112c
/2474/CH3/EX3.7/Ch03Ex07.sce
24a63f116ac5e09a91cf75d7fa1b07cc6d080902
[]
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
613
sce
Ch03Ex07.sce
// Scilab code Ex3.7: Pg.132 (2008) clc; clear; c = 3e+17; // Velocity of light, nm/s e = 1.60e-19; // Conversion factor h = 6.63e-34/e; // Plank's constant, eV-s lamda = 400; // Wavelength of incident light, nm I = 1e-02; // Intensity of incident light, J/s^2-m^2 E = h*c*e/lamda; // Energy of each photon, J N = I/E; // Number of photons per second per square meter, photons/s m^2 printf("\nThe number of photons incident per second per square metre = %4.2e photons/s Sq.m", N); // Result // The number of photons incident per second per square metre = 2.01e+016 photons/s Sq.m
883f9484fdf9db6028c462cba3d5c5d8228210a1
37aadc591f529c3f4f488f15976004ee30f32252
/pointers/loader.sce
51bc2607ebaa37dc04a926a9976f5659bc833361
[]
no_license
aakash30jan/swig
1299c65d44839ac591f94cf11b153f0ea21e5ce8
6eadfc970b94d77df8f9cbc923ec3c76ff1803c7
refs/heads/master
2021-04-09T15:27:04.659636
2017-06-02T15:43:21
2017-06-02T15:43:21
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
797
sce
loader.sce
// ---------------------------------------------------------------------------- // This file was automatically generated by SWIG (http://www.swig.org). // Version 3.0.13 // // Do not make changes to this file unless you know what you are doing--modify // the SWIG interface file instead. // ----------------------------------------------------------------------------- */ libpointers_path = get_absolute_file_path('loader.sce'); [bOK, ilib] = c_link('libpointers'); if bOK then ulink(ilib); end list_functions = [.. 'pointers_Init'; .. 'SWIG_this'; .. 'SWIG_ptr'; .. 'fopen'; .. 'fputs'; .. 'fclose'; .. ]; addinter(fullfile(libpointers_path, 'libpointers' + getdynlibext()), 'libpointers', list_functions); clear libpointers_path; clear bOK; clear ilib; clear list_functions;
9f64ee33db9858dc3889cd6d81741a107f5948b4
c59576b9f96a7b26dc5bc0d52998ad818380b8cf
/test/FM11.prev.tst
74e54bc9d69890597717621c19d0c879bc819575
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/checkdig
0588535521d9106a5c777a809e50d64a9204fa3c
3570d246efd0d102f1a2652dfe752884b5d346d8
refs/heads/master
2022-02-14T07:41:43.949901
2022-01-28T15:00:07
2022-01-28T15:00:07
30,117,975
1
1
null
null
null
null
UTF-8
Scilab
false
false
504
tst
FM11.prev.tst
ATU13585627 !OK ATU83256904 !OK BE123487631 !OK DE187355628 !OK DE129443785 !OK DE814371180 !OK DE235317221 !OK DE234380421 !OK DK13585628 !OK DK10572649 !OK EL094359842 !OK EL123456783 !OK ESA48765309 !OK FI14839261 !OK FR12372654988 !OK GB357468123 !OK IE4782521F !OK IE8473625E !OK IT00156870123 !OK LU11523165 !OK LU11868245 !OK LU11917605 !OK NL025836729B01 !OK PL8567346215 !OK PT195437250 !OK PT508931746 !OK SE679342158401 !OK SI59082437 !OK WRONG_VATID ?CNTRY GR094359842 ?CNTRY EL12345673 ?NOK
a9805db2bc6c965ba9b5307b79300edc57eda240
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH18/EX18.5/RB_5.sce
b97b5fddc4a844776898ee3dd8a34a9044c5a9a8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
993
sce
RB_5.sce
// sum 18-5 clc; clear; R1x=120; R1y=250; R2x=300; R2y=400; Lh=8000; N=720; Ln=Lh*60*N*10^-6; R1=sqrt(R1x^2+R1y^2); R2=sqrt(R2x^2+R2y^2); //Let load factor be Ks Ks=1.5; P1=R1*Ks; P2=R2*Ks; C1=P1*(Ln^(1/3)); C2=P2*(Ln^(1/3)); //let designation,d,D,B,C at bearing B1 be De1,d1,D1,B1,C1 d1=25; D1=37; B1=7; C1=3120; De1=61805; //let designation,d,D,B,C at bearing B2 be De2,d2,D2,B2,C2 d2=25; D2=47; B2=8; C2=7620; De2=16005; // printing data in scilab o/p window printf("Designation of Bearing B1 is %0.0f ",De1); printf("\n d1 is %0.0f mm ",d1); printf("\n D1 is %0.0f mm ",D1); printf("\n B1 is %0.0f mm ",B1); printf("\n C1 is %0.0f N ",C1); printf("\n Designation of Bearing B2 is %0.0f ",De2); printf("\n d2 is %0.0f mm ",d2); printf("\n D2 is %0.0f mm ",D2); printf("\n B2 is %0.0f mm ",B2); printf("\n C2 is %0.0f N ",C2); disp('Bearing 61805 at B1 and 16005 at B2 can be installed.')
eb040933dbd852b77319c7dfe1ab5170b4221667
449d555969bfd7befe906877abab098c6e63a0e8
/884/CH5/EX5.15/Example5_15.sce
69e72ae59d216d897c8f309e48ed3053e8189999
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
461
sce
Example5_15.sce
//Dalton's Law of Partial Pressures clear; clc; printf("\t Example 5.15\n"); PT=762;//pressure total, mmHg PH2O=22.4;//pressure of water vapor, mmHg PO2=PT-PH2O;//pressure of O2, frm Dalton's law, mmHg M=32;//mol mass of O2, g R=0.0821;//universal Gas constant, L.atm/K.mol T=24+273;//temp in K V=0.128;//volume in L m=(PO2/760)*V*M/(R*T);//mass of mass of O2 collected, g printf("\t the mass of O2 collected is : %4.3f g\n",m); //End
dc6d1c0917223fca2599d40685516467524c0700
e41b69b268c20a65548c08829feabfdd3a404a12
/3DCosmos/Data/Scripts/StereoPictures/StereoVideos.SCI
de26c9c67506a14ae0f01f21cf0ad566c61d76cc
[ "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
2,305
sci
StereoVideos.SCI
codeblock readtextfile(ScriptDir+"\_TOOLS.sci"); sf=T_scene_create; sss=T_getscene; vp=T_getviewport; vp.CameraPos=point(0,0,1); vp.CameraDir=vector(0,0,-1); vp.FocalDistance=1; vp.NearClipPlane=0.1; vp.FarClipPlane=20; vp.enableusernavigation=false; vp.EnableUserStop=true; #Show list of videos filelist=GetFileList(datadir+"\StereoVideos\*.AVI"); menu=T_createmenu("Select stereo video",true); menu.sizex=0.5; root.SC.Universe.MenuFrame.Color=color(1,1,1,1); vp.ShowControls=true; listmap=Map; foreach filename in filelist do { filename=filename;filename.Invert;filename.split(".");filename.Invert; filename=filename.split("_R");filename=filename.split("_L"); if not(listmap.IsPresent(filename)) then { listmap.AddItem(filename:1); menu.Add("",filename,filename); } } T_menu_appendclose; menufinished=false; while not(menufinished) do { if menu.WasModified then { menufinished=true; } render; } if menu.SelectID=="[Close]" then stop; filename=datadir+"\StereoVideos\"+menu.SelectID; T_delmenu; soundfilename=filename+".mp3"; screensizey=2*tan(vp.aperture/2); screensizex=screensizey*vp.aspectratio; sss.ambientlightcolor=color(0.3,0.3,0.3); vdleft=addvideo(filename+"_L.avi"); vdright=addvideo(filename+"_R.avi"); vdxres=vdleft.GetXRes; vdyres=vdleft.GetYRes; vdframerate=round(vdleft.GetFrameRate); vdframecount=vdleft.GetFrameCount; frx=vp.aspectratio/vdxres; fry=1/vdyres; fr=min(frx,fry); fr=fr*screensizey; sizex=fr*vdxres; sizey=fr*vdyres; rc=sf.add("Rectangle","Name":"REC","Axis1":vector(sizex,0,0),"Axis2":vector(0,sizey,0), "position":point(0-0.5*sizex,0-0.5*sizey,0),"EnableLight":false); txl=sf.CreateVideoTexture("left",vdleft); txr=sf.CreateVideoTexture("right",vdright); rc.Texture="left"; rc.TextureRight="right"; oldframerate=root.FrameRate; root.FrameRate=vdframerate; #Fade in for i=0 to 30 do { vp.FadeColor=color(0,0,0,1-i/30); render; } #Start sound file if FileIsPresent(soundfilename) then { snd=addsound(soundfilename); snd.Start; } #Play video frnr=0; while frnr<vdframecount do { incrtime; vdleft.CurrentFrame=frnr; vdright.CurrentFrame=frnr; frnr=frnr+1; render; } #fade out for i=0 to 30 do { vp.FadeColor=color(0,0,0,i/30); render; } root.FrameRate=oldframerate;
3a01c858ca2876acbc9e0867645cbd27b8e48c3f
449d555969bfd7befe906877abab098c6e63a0e8
/2912/CH5/EX5.25/Ex5_25.sce
37a425eab483fd0b3fca4a46b9925b1569fecefa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
676
sce
Ex5_25.sce
//chapter 5 //example 5.25 //Calculate minimum uncertainty in the velocity of electron //page 113 clear; clc; //given dx=1E-8; // in m (length of box or uncertainty in the position) h=6.626E-34; // in J-s (Planck'c constant) m=9.1E-31; // in Kg (mass of electron) //calculate // From uncertainty principle dx*dp=h and dp=m*dv // therefore we have dv=h/(m*dx); // calculation of minimum uncertainty in the velocity printf('\nThe minimum uncertainty in the velocity of electron is \t dv=%1.2E m/s',dv); dv=dv*1E-3; // changing unit from m/s to Km/s printf('\n\t\t\t\t\t\t\t =%.1f Km/s',dv); // Note: There is slight variation in the answer due to round off
ce2c720405e8acab6bf5b8456fe2e622a5b21b48
449d555969bfd7befe906877abab098c6e63a0e8
/1850/CH9/EX9.3/exa_9_3.sce
96aaf29a2be49bec641684f4e8cae5f22d32fd38
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
364
sce
exa_9_3.sce
// Exa 9.3 clc; clear; close; //given data C=0.01;// in micro F C=C*10^-6;// in F f=1;// in kHz f=f*10^3;// in Hz // R_A= R_B // T_on = T_off = T/2 // Frequency is given by equation f= 1.44/((R_A+R_B)*C) R_A= 1.44/(2*f*C);// in ohm R_A=R_A*10^-3;// in k ohm R_B= R_A; disp("Resistors required : "+string(R_A)+" k ohm (68 ohm standart value)");
1a1af26f070f91624a11b288c96a5c7a0c742752
449d555969bfd7befe906877abab098c6e63a0e8
/122/DEPENDENCIES/freqch.sci
e4c6304c346bda789bd38ab065f7a72154ce3674
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
543
sci
freqch.sci
// Frequency response characteristics function [Mr,wr,bw,repf] = freqch(G,omega) repf = repfreq(G,omega); // frequency response (complex numbers) [mag phi] = dbphi(repf); // mag in db [Mr k] = max(mag); // resonant peak wr = omega(k); // resonant freq. mag = abs(mag + 3); // mag = abs( mag - (- 3dB) ) [M j] = min(mag); // j : is the point where mag == -3db bw = omega(j); disp(wr,'resonant frequency = '); disp(Mr,'resonant peak (dB)= '); disp(bw,'bandwidth = '); endfunction
45b0dc3b4031c53683d499f2301cd6b0a36fd73b
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH7/EX7.9/Ex7_9.sce
85d85cd5753c87eabfd83d5bf5ac55938c466014
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
149
sce
Ex7_9.sce
clear //Given H1=10 a=5.0 b=4.2 //Calculation I1=(H1*b)/(a*4) A=I1*4/b //Result printf("\n Heat generated in 4 ohm resistor is %0.3f cal/sec", A)
3820f8f357d3f624b6fd9331792397ea59abfe17
449d555969bfd7befe906877abab098c6e63a0e8
/1199/CH6/EX6.5/6_5.sci
7a180022ad5a627cbe30f06b3e132ccabfc1b482
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
183
sci
6_5.sci
// 6.5 clc; R=10*10^3; Ri=100*10^3; Rt=100*10^3; Rp=(Ri*R)/(Ri+R); Attenuation=Rp/Rt; Attenuation_factor=1/Attenuation; printf("\nAttenuation factor=%.1f ",Attenuation_factor)
63871ef4b3f03bb4a22bd4c2042043051175b372
449d555969bfd7befe906877abab098c6e63a0e8
/896/CH6/EX6.3/3.sce
0a98835187b2345aef8dc022f355a050906443a5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
237
sce
3.sce
clc //Example 6.3 //Calculate the fanning friction factor R=10^5//dimentionless reynold's no. ratio_ED=0.0002//dimentionless f=0.001375*(1+(20000*ratio_ED+10^6/R)^(1/3))//dimentionless printf("The fanning friction factor is %f",f);
a176a968003565311fefbd3ff1d3200abc1e149b
449d555969bfd7befe906877abab098c6e63a0e8
/821/CH7/EX7.4/7_4.sce
dc89c52ef9b77d93d6774340b24f8975b1e0ef5d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
606
sce
7_4.sce
C=2.768*10^-3;//conductivity of the cell in ohm^-1 cm^-1// R=82.4;//resistance with KCl solution filled in ohms// K=C*R;//cell constant in cm^-1// printf('Cell constant=K=%fcm^-1',K); R1=326;//resistance with K2SO4 solution filled in ohms// c=K/R1;//Equivalent conductance of the KCl solution in ohm^-1 cm^-1// printf('\nEquivalent conductance of the KCl solution=c=%f=7*10^-4ohm^-1 cm^-1',c); printf('\n0.0025M K2SO4 solution=0.005N of K2SO4.'); EC=1000*c/0.005;//equivalent conductance of K2SO4 solution in ohm^-1 cm^2// printf('\nEquivalent conductance of K2SO4 solution=EC=%fohm^-1cm^2',EC);
40f54bc11b002ed975e942a0ef1cdf370f0ebd7f
dbd504f73f233675d0c8c2c8c5730e866aabcd96
/codes/MRC.sce
6559d8ee93f2859ca0e07628285decd3e7d0aaa2
[]
no_license
surajdurgesht/Wireless-Communication-Lab
f5019be42d24fe6568e98d666efd901283a0c7a7
e8fac339daf91d24ee0dd9e22e9236fcbb68dac3
refs/heads/master
2020-06-04T19:07:54.824459
2019-06-16T06:30:21
2019-06-16T06:30:21
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
282
sce
MRC.sce
clf(); clear all S=0:10:100; t=100; Y=grand(1,10000,'exp',2); G=grand(1,10000,'exp',2); s=10^(S/10); for i=1:1:length(S); K=(S(i)*(Y^2+G^2)); X(i)=sum(K<t)/10000; end plot(S,X); xlabel("power"); ylabel("probability of error"); title("MRC Simulation");
d4c12b6efce2af12faf1ebfce81036dc6435a97f
449d555969bfd7befe906877abab098c6e63a0e8
/3204/CH15/EX15.10/Ex15_10.sce
9030cd721c5961e4249f71aee16df328844ae494
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
701
sce
Ex15_10.sce
// Initilization of variables mu_a=0.40 // coefficient of friction under block A n=40 // r.p.m // speed of rotation of frame W_A=120 // N // weight of block A W_B=80 // N // weight of block B r_1=1.2 // m // distance between W_A & axis of rotation r_2=1.6 // m // distance between W_B & axis of rotation g=9.81 // m/s^2 // Calculations // Consider the F.B.D of block A N=W_A // N // sum F_y=0 omega=(2*%pi*n)/60 // rad/sec a_n=omega^2*r_1 // m/s^2 T=((W_A/g)*a_n)-(mu_a*W_A) // N // Now consider the F.B.D of block B A_n=omega^2*r_2 // m/s^2 N_1=(W_B/g)*A_n // N // sum F_x=0 mu=(T-W_B)/N_1 // sum F_x=0 // Results clc printf('The coefficient of friction of block B is %f \n',mu)
132784810e902cb96636d4df4cbe670b92216aa2
449d555969bfd7befe906877abab098c6e63a0e8
/3651/CH6/EX6.11/11.sce
e4798b1ca55320ecc16be4c1a182d8b05766bc5b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
257
sce
11.sce
//Variable declaration Na=5*10**23 Nd=3*10**23 ni=2*10**16 //Calculations p=((Na-Nd)+(Na-Nd))/2 //Result printf('p = %0.3f *10**23 m**-3 \n',p*10**-23) printf('The electron concentration is given by n = %0.3f *10**9 m**-3 \n',ni**2/p*10**-9)
cb02ce39fd8e3238a6124db17c1a600dcce290cf
953cef8e16ff989ca373ddfc0f3f91d56fa4a5ef
/letraE.sce
c7b1020db930bd64def42c8c7c1ed541d2eb8b39
[]
no_license
anarutesc/STD_P2
ceda2571ae8713ffc701447881fe9f3cb55c6416
100ec1213a9dbc71c64cb638db3d1432eb5fb0e4
refs/heads/master
2020-04-10T11:18:30.524541
2018-12-20T00:12:53
2018-12-20T00:12:53
160,989,402
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,017
sce
letraE.sce
//modulacao delta load('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\AnaRute.sod') x_ana=x_a; x_ana(length(x_ana)+1)=0 load('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\Italo.sod') x_italo=x_a; x_italo(length(x_italo)+1)=0 load('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\Lara.sod') x_lara=x_a; x_lara(length(x_lara)+1)=0 load('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\Luiza.sod') x_luiza=x_a; x_luiza(length(x_luiza)+1)=0 exec('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\delta_mod.sce') exec('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\reamostragem.sce') //exec('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\plot_legivel.sce') x_ana_reamostrado=reamostragem(x_ana,3) x_italo_reamostrado=reamostragem(x_italo,3) x_lara_reamostrado=reamostragem(x_lara,3) x_luiza_reamostrado=reamostragem(x_luiza,3) delta = 0.03; [x_q_ana, s_q_ana] = delta_mod(x_ana_reamostrado, delta) [x_q_italo, s_q_italo] = delta_mod(x_italo_reamostrado, delta) [x_q_lara, s_q_lara] = delta_mod(x_lara_reamostrado, delta) [x_q_luiza, s_q_luiza] = delta_mod(x_luiza_reamostrado, delta) t=linspace(0,98282/264600,length(x_q_ana)) x_ana_reamostrado(length(x_ana_reamostrado)+1)=0 x_italo_reamostrado(length(x_italo_reamostrado)+1)=0 x_lara_reamostrado(length(x_lara_reamostrado)+1)=0 x_luiza_reamostrado(length(x_luiza_reamostrado)+1)=0 /*t=0:passo:tempo_final; x2_ana = x_ana(1:length(t)); e_ana(1) = 0; e_q_ana(1) = delta*sign(e_ana(1)); x_q_ana(1) = 0; x2_italo = x_italo(1:length(t)); e_italo(1) = 0; e_q_italo(1) = delta*sign(e_italo(1)); x_q_italo(1) = 0; x2_lara = x_lara(1:length(t)); e_lara(1) = 0; e_q_lara(1) = delta*sign(e_lara(1)); x_q_lara(1) = 0; x2_luiza = x_luiza(1:length(t)); e_luiza(1) = 0; e_q_luiza(1) = delta*sign(e_luiza(1)); x_q_luiza(1) = 0; for k=1:floor(tempo_final/passo) e_ana(k+1) = x2_ana(k) - x_q_ana(k); e_q_ana(k+1) = delta*sign(e_ana(k)); x_q_ana(k+1) = x_q_ana(k) + e_q_ana(k); e_italo(k+1) = x2_italo(k) - x_q_italo(k); e_q_italo(k+1) = delta*sign(e_italo(k)); x_q_italo(k+1) = x_q_italo(k) + e_q_italo(k); e_lara(k+1) = x2_lara(k) - x_q_lara(k); e_q_lara(k+1) = delta*sign(e_lara(k)); x_q_lara(k+1) = x_q_lara(k) + e_q_lara(k); e_luiza(k+1) = x2_luiza(k) - x_q_luiza(k); e_q_luiza(k+1) = delta*sign(e_luiza(k)); x_q_luiza(k+1) = x_q_luiza(k) + e_q_luiza(k); end*/ plot_legivel(t, x_ana_reamostrado,'Sinal Reamostrado','Tempo','Amplitude',[0 98282/264600 floor(min(x_ana_reamostrado)) ceil(max(x_ana_reamostrado))],3,1) plot_legivel(t, x_q_ana,'Sinal Quantizado','Tempo','Amplitude',[0 98282/264600 floor(min(x_q_ana)) ceil(max(x_q_ana))],3,2) /*figure plot2d2(t,x_italo_reamostrado,2) figure plot2d2(t,x_q_italo,5) figure plot2d2(t,x_lara_reamostrado,2) figure plot2d2(t,x_q_lara,5) figure plot2d2(t,x_luiza_reamostrado,2) figure plot2d2(t,x_q_luiza,5) */
53ee58df0ef0803ed62da1db1f9fc95fe7e37d24
449d555969bfd7befe906877abab098c6e63a0e8
/3763/CH10/EX10.11/Ex10_11.sce
ddfc497dc0adf6e1e7acb15908a588751b19ad91
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
266
sce
Ex10_11.sce
clear // // // //Variable declaration a=100*10**-6 NA=0.3 //numerical aperture(m) lamda=850*10**-9 //wavelength(m) //Calculation V_number=(2*%pi**2*a**2*NA**2/lamda**2) //number of modes printf("\n total number of modes is %0.3f",2*V_number) //Result
7780ae2099ad49010c4c2c1d0352ee6292bb4ece
449d555969bfd7befe906877abab098c6e63a0e8
/1244/CH9/EX9.9/Example99.sce
cf29f26d8ccd3e416901a3fea7d8c7a697b077c6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
710
sce
Example99.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clc; disp("Principles of Heat transfer, Seventh Edition, Frank Kreith, Raj M Manglik and Mark S Bohn, Chapter 9, Example 9") //Window arrangement consists of a long opening with dimensions //Height in meters h=1; //Length in meters l=5; //width of table in meters w=2; //Assuming that window and table are sufficiently long and applying crossed string method, we get //Distance ab in m ab=0; //Distance cb in m cb=w; //Distance ad in m ad=h; //Distance cd in m cd=sqrt(l); disp("Shape factor between the window and the table") //Shape factor between the window and the table F_12=0.5*(ad+cb-cd)
537cc9de468a025e0cf2fc320274d9bd0068d521
66106821c3fd692db68c20ab2934f0ce400c0890
/test/disassembler/rol.instr.tst
337d7d748edf1f912413d11665566c21c85ee368
[]
no_license
aurelf/avrora
491023f63005b5b61e0a0d088b2f07e152f3a154
c270f2598c4a340981ac4a53e7bd6813e6384546
refs/heads/master
2021-01-19T05:39:01.927906
2008-01-27T22:03:56
2008-01-27T22:03:56
4,779,104
2
0
null
null
null
null
UTF-8
Scilab
false
false
1,438
tst
rol.instr.tst
; @Harness: disassembler ; @Result: PASS section .text size=0x00000040 vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0 section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x00000074 ;2**0 start .text: label 0x00000000 ".text": 0x0: 0x00 0x1c adc r0, r0 0x2: 0x11 0x1c adc r1, r1 0x4: 0x22 0x1c adc r2, r2 0x6: 0x33 0x1c adc r3, r3 0x8: 0x44 0x1c adc r4, r4 0xa: 0x55 0x1c adc r5, r5 0xc: 0x66 0x1c adc r6, r6 0xe: 0x77 0x1c adc r7, r7 0x10: 0x88 0x1c adc r8, r8 0x12: 0x99 0x1c adc r9, r9 0x14: 0xaa 0x1c adc r10, r10 0x16: 0xbb 0x1c adc r11, r11 0x18: 0xcc 0x1c adc r12, r12 0x1a: 0xdd 0x1c adc r13, r13 0x1c: 0xee 0x1c adc r14, r14 0x1e: 0xff 0x1c adc r15, r15 0x20: 0x00 0x1f adc r16, r16 0x22: 0x11 0x1f adc r17, r17 0x24: 0x22 0x1f adc r18, r18 0x26: 0x33 0x1f adc r19, r19 0x28: 0x44 0x1f adc r20, r20 0x2a: 0x55 0x1f adc r21, r21 0x2c: 0x66 0x1f adc r22, r22 0x2e: 0x77 0x1f adc r23, r23 0x30: 0x88 0x1f adc r24, r24 0x32: 0x99 0x1f adc r25, r25 0x34: 0xaa 0x1f adc r26, r26 0x36: 0xbb 0x1f adc r27, r27 0x38: 0xcc 0x1f adc r28, r28 0x3a: 0xdd 0x1f adc r29, r29 0x3c: 0xee 0x1f adc r30, r30 0x3e: 0xff 0x1f adc r31, r31 start .data:
ce2e61b8b10f0837cec778796e23d41ed34bda73
449d555969bfd7befe906877abab098c6e63a0e8
/1553/CH6/EX6.6/6Ex6.sce
396672a7dd8cf219e52f63d30f6a90fc65c9b7d8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
175
sce
6Ex6.sce
//chapter 6 Ex 6 clc; clear; close; persons=9; extra=8; avgexp=(12*(persons-1)+extra)/(persons-1); total=9*avgexp; mprintf("The total money spent was Rs.%d",total);
c215f1dc4805a5675469babc43e537a071964021
449d555969bfd7befe906877abab098c6e63a0e8
/181/CH2/EX2.5/example2_5.sce
badaddb891b62123bc47de70610dada271f73da0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
955
sce
example2_5.sce
// Find depletion layer capacitance // Basic Electronics // By Debashis De // First Edition, 2010 // Dorling Kindersley Pvt. Ltd. India // Example 2-5 in page 86 clear; clc; close; // Given data epsln=12/(36*%pi*10^11); // Constant for Si in F/cm A=8.11058*10^-1; // Cross sectional area in m^2 mu_p=500; // Mobility of holes e=1.6*10^-19; // Charge on an electron in C V_j=4.9; // Junction potential in V // Calculation printf("(a)We have C_t/A = sqrt((e*epsnl)/2)*sqrt(Na/Vj)\n"); K=sqrt((e*epsln)/2); printf("sqrt((e*epsln)/2) = %0.2e\n",K); printf("Hence C_t = %0.2e * sqrt(Na/Vj) F/cm^2\n",K); K1=K*10^12; printf("Or C_t = %0.2e * sqrt(Na/Vj) pF/cm^2\n",K1); N_A=1/(3*mu_p*e); C_T=(2.9*10^-4)*sqrt(N_A/V_j)*(8.14*10^-3); printf("(b)The depletion layer capacitance = %0.2f pF",C_T); // Result // (a) The expression for depletion layer capacitance is proved // (b) The depletion layer capacitance in silicon is 68.84 pF
9ee0ca0895cb14be2bbfa36b26f1977540b1e920
449d555969bfd7befe906877abab098c6e63a0e8
/2780/CH5/EX5.4/Ex5_4.sce
7d1c7ddd1d86fb627ec2f5418cc2d76bcc189cb9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
363
sce
Ex5_4.sce
clc //to calculate area and intensity of the image lambda=7200*10^-10 //wavelength in m d=5*10^-3 //aperture in m dtheta=lambda/d //angular spread in radian f=0.1 //focal length in m arealspread=(dtheta*f)^2 disp("areal spread ="+string(arealspread)+"m^2") power=50*10^-3 I=power/arealspread disp("intensity of the image is I="+string(I)+"watts/m^2")
96de9a1da44d58697e32163051e32226ac34e879
727092dff86e9d034d021bbc56565d9336b988aa
/Códigos CN/pratica codigos.sci
82402b1920d66871186db827a9d500d8c01a40a1
[]
no_license
lucasdksan/Numerical-computing
c54b855bd50f2a06b1970086f2da63c28883f287
a5a5863499bdf46003437140e3fa3123fc4960f8
refs/heads/master
2023-06-24T16:13:01.094230
2021-07-29T15:57:00
2021-07-29T15:57:00
278,514,165
0
0
null
null
null
null
UTF-8
Scilab
false
false
475
sci
pratica codigos.sci
function y = taylorSeno(x,x0,n) y = sin(x0); for i = 2:n if modulo(i,4) == 2 then y = y + cos(x0)*(x-x0)^(i-1)/factorial(i-1); elseif modulo(i,4) == 3 then y = y - sin(x0)*(x-x0)^(i-1)/factorial(i-1); elseif modulo(i,4) == 0 then y = y - cos(x0)*(x-x0)^(i-1)/factorial(i-1); else y = y + sin(x0)*(x-x0)^(i-1)/factorial(i-1); end end endfunction
4e4ef21acf2f738f8605f6802a0eceebf15440ba
66106821c3fd692db68c20ab2934f0ce400c0890
/test/jintgen/unr_type_05.tst
e3d3193e757cf4eae14258ab7658297ce7e4b0bb
[]
no_license
aurelf/avrora
491023f63005b5b61e0a0d088b2f07e152f3a154
c270f2598c4a340981ac4a53e7bd6813e6384546
refs/heads/master
2021-01-19T05:39:01.927906
2008-01-27T22:03:56
2008-01-27T22:03:56
4,779,104
2
0
null
null
null
null
UTF-8
Scilab
false
false
158
tst
unr_type_05.tst
// @Harness: verifier // @Purpose: "Test for unresolved types" // @Result: "UnresolvedType @ 6:23" architecture unr_type_04 { operand-type A[5]: duck; }
b89706624eb2f224fd5f2afed031b745319a0042
449d555969bfd7befe906877abab098c6e63a0e8
/1808/CH2/EX2.16/Chapter2_Example16.sce
91385906db9a8b925bda672125bd00b67fa01de9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
656
sce
Chapter2_Example16.sce
clc clear //INPUT DATA //C2H2+3O2=2CO2+2H2O ;//Chemical equation t1=298;//initial temperature in K t2=800;//Final temperature in K R=0.287;//gas constant in kJ/kgK dhCO2=22815;//From tables enthalpy of CO2 kJ/kmol dhH2O=17991;//From tables enthalpy of H2O kJ/kmol hfCO2=-393520;//From tables enthalpy of CO2 kJ/kmol hfH2O=-241827;//From tables enthalpy of H2O kJ/kmol hfC2H4=52283;//From tables enthalpy of C2H4 kJ/kmol //CALCULATIONS Q=2*(hfCO2+dhCO2)+2*(hfH2O+dhH2O)-1*(hfC2H4)-4*R*(t2-t1);//amount of heat transfer from the reactants //OUTPUT printf('(i)The amount of heat transfer from the reactants is %3.1f kJ/kmol of fuel ',Q)
c565bf786e1eb6658ef0777081ae2e90f036a04a
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH2/EX2.1/EX2_1.sce
1a230834e6685b86ee7850546667adc838468313
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
582
sce
EX2_1.sce
//EXAMPLE-2-1 EXAMPLE-59 t=0.5; x=115; z=310.6 //time A.V=0.2*x; //average value R.M.S=(1/10)*z; //rms value F=R.M.S/A.V; //form factor P.F=60/R.M.S; //peak factor S=60/(2)^0.5; //rms value of sine wave disp('i)R.M.S = '+string (R.M.S)+' V') disp('i) average value = '+string (A.V)+' V') disp('i)orm factor = '+string (F)+' ') disp('i peak factor = '+string (P.F)+' ') disp('i)sine wave = '+string (S)+' V')
692f79c60b58ca2628fe0c8568b990f547fd6aeb
786f4889a44528121ba13abdf284f206c1e6553a
/poisson/test_poisson_curl.sce
98958d92093d66a8a00a52a250938fd46ad6a027
[]
no_license
Arttaaz/MNBPLS
a151d44e13da5016e60944d7df539f4470286449
48eb509fdc834218e57738ffa0c391617e8fd359
refs/heads/master
2020-04-28T10:37:25.692040
2019-03-17T21:54:28
2019-03-17T21:54:28
175,208,639
1
0
null
null
null
null
UTF-8
Scilab
false
false
3,008
sce
test_poisson_curl.sce
// Initialise f(x,y) function [w]=init_field(y,x) w = 8*%pi^2*cos(2*%pi*x) * cos(2*%pi*y) endfunction // Solution de référence du problème laplacien(psi(x,y)) = f(x,y) function [Ux]=solution_ux(y,x) Ux = (-2*%pi)*cos(2*%pi*x)*sin(2*%pi*y) endfunction function [Uy]=solution_uy(y,x) Uy = (2*%pi)*sin(2*%pi*x)*cos(2*%pi*y) endfunction // Affichage de la fonction f, de la solution de référence et // de la solution obtenue, ainsi que de l'erreur commise // F = f(x,y) -- fonction testée // Ref = Psi_alpha(x,y) -- solution analytique // Psi = Psi_star(x,y) -- solution du solveur function plot_error(W, Ux_ref, Ux, Uy_ref, Uy) fig = gcf() subplot(421) title("W") plot3d(Y, X, W) subplot(423) title("Ref Ux") plot3d(Y, X, Ux_ref) colorbar() subplot(425) title("Ux") plot3d(Y, X, Ux) colorbar() subplot(427) title("1e14 * Err Ux") plot3d(Y, X, 1e14*abs(Ux_ref - Ux)) colorbar() subplot(424) title("Ref Uy") plot3d(Y, X, Uy_ref) colorbar() subplot(426) title("Uy") plot3d(Y, X, Uy) colorbar() subplot(428) title("1e14 * Err Uy") plot3d(Y, X, 1e14*abs(Uy_ref - Uy)) colorbar() xs2png(fig, "poisson_error2.png") endfunction // Fonction de test pour le solveur de Poisson function test_poisson(Lx, Ly, Nx, Ny) printf("::Testing poisson operator::") printf("\n Domain size: [%0.2f, %0.2f]", Lx, Ly) printf("\n Discretization: [%i, %i]", Nx, Ny) // X[i] = i*dx avec dx = Lx/Nx et i=0..Nx-1 // Y[i] = j*dy avec dy = Ly/Ny et j=0..Ny-1 X = linspace(0.0, Lx*(Nx-1)/Nx, Nx) Y = linspace(0.0, Ly*(Ny-1)/Ny, Ny) printf("\n\n Initializing field F(x,y).") W = feval(Y, X, init_field) printf("\n Initializing reference solution Ref(x,y).") Ux_ref = feval(Y, X, solution_ux) Uy_ref = feval(Y, X, solution_uy) dir = get_absolute_file_path("test_poisson_curl.sce") file = dir+"poisson.sce" printf("\n\n Loading poisson_2d function from file %s%s%s.", char(39), file, char(39)) exec(file, -1) printf("\n\n Computing Poisson solution Psi(x,y).") [Ux, Uy] = poisson_curl_2d(W, Nx, Ny, Lx, Ly) printf("\n Computing error |Psi-Ref|(x,y).") Err_ux = abs(Ux-Ux_ref) Err_uy = abs(Uy-Uy_ref) file = pwd()+"/poisson_error2.png" printf("\n\n Plotting everything to %s%s%s.", char(39), file, char(39)) plot_error(W, Ux_ref, Ux, Uy_ref, Uy) printf("\n\n") mErr_ux = max(Err_ux) mErr_uy = max(Err_uy) max_error = 1e-12 if (mErr_ux > max_error) & (mErr_uy > max_error) then printf(" Maximal error is %.10ef, TEST FAILURE (max_error=%.10ef).\n", max(mErr_ux, mErr_uy), max_error) exit(1) else printf(" Maximal error is only %.10ef, TEST SUCCESS.\n", max(mErr_ux, mErr_uy)) exit(0) end endfunction // Taille du domaine Lx = 1.0 Ly = 1.0 // Discretisation du domaine Nx = 64 Ny = 32 test_poisson(Lx, Ly, Nx, Ny)
630b776d8d11b234e89620d2c206d27d614334d9
449d555969bfd7befe906877abab098c6e63a0e8
/1859/CH7/EX7.24/exa_7_24.sce
57b9dbc3b97f87f5a085a6893be8ae55eaedc665
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
450
sce
exa_7_24.sce
// Exa 7.24 clc; clear; close; // Given data C1= 208;// in pF C1=C1*10^-12;// in F Q1= 80; C2= 184;// in pF C2=C2*10^-12;// in F Q2= 50; f=165;// in kHz f=f*10^3;// in Hz omega= 2*%pi*f;// in radians/sec // Part (i) Rm= 1/omega*(1/(C2*Q2)-1/(C1*Q1));// in ohm disp(Rm,"Resistive component of unknown impedence in ohm") // Part(ii) Xm= 1/omega*(1/C2-1/C1);// in ohm disp(round(Xm),"Reactive component of unknown impedence in ohm")
d753dc820c9c2a5c02acd5ad71ea9fa3b82fbb1b
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH17/EX17.2/ex17_2.sce
57faeea011491cbf7c7f899a6a5662f5bdf33290
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
414
sce
ex17_2.sce
clc; clear all; h=6.626e-34;//planck's constant me=9.1e-31; //Mass of electron in Kg T=0;//temperature n=8.4905e28; Efo=(h*h/(8*me))*((3*n/%pi)^(2/3));//fermi energy at 0K in J Efo1=Efo/(1.6e-19);//convertion into eV from J disp('eV',Efo1,'fermi energy at 0 K'); lemda=6.82e27; Z=lemda*sqrt(Efo1)/2;//density of states for Cu at fermi level disp('m^-3',Z,'density of states for Cu at fermi level is:')
3088bfdb7c5e314a12792e2dbbb1e4315daa4d46
c0c48c5a363ac2c0bf21e72833d72a99771dc6ce
/Simulation_Codes/lab10_18i190002/ex2a_lab09.sce
49f6912c9eb9e6711c1e3e1823c20f29212f29a0
[]
no_license
shubham1166/Operarions_Research_Projects
3b6664b83d89b2a005b5194489bfd0d95cafe3d8
8f28eea93d9e4ff3d6a8e95160c3f9464ce2fc34
refs/heads/main
2023-03-14T02:48:42.359247
2021-03-03T05:51:28
2021-03-03T05:51:28
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,039
sce
ex2a_lab09.sce
clc,clear exec('tv.sce',-1) SUPPLY = 5000 COSTA = SUPPLY*50*50*1.5; CB = zeros(100,1); CS = zeros(100,1); inventory = zeros(100,1); inventory(1) = SUPPLY; CD=zeros(100,1) for i=1:2:99 CD(i)=SUPPLY end CW=zeros(100,1) for i=2:2:100 CW(i)=SUPPLY end DM = demand; for i = 1:99 if(DM(i)<=inventory(i)) inventory(i) = inventory(i) - DM(i); else CB(i) = DM(i) - inventory(i); inventory(i) = 0; DM(i+1) = DM(i+1) + CB(i); end inventory(i+1) = CW(i)+ inventory(i); end i=i+1; if(demand(i)<=inventory(i)) inventory(i) = inventory(i) - demand(i); else CB(i) = demand(i) - inventory(i); inventory(i) = 0; end clf cost = sum(CD)*60+sum(CW)*80+sum(inventory)*100+COSTA+110*sum(CB); disp((sum(CD)*60+sum(CW)*80+sum(inventory)*100+COSTA),'The inventory cost is'); // inventory cost disp((110*sum(CB)),'The back ordering cost is : '); //backing order disp(cost,'The total cost is : '); // total cost week = 1:100; plot(week',inventory);
cd1a80e422d7a8df719bba964c9cdf23600f4c82
449d555969bfd7befe906877abab098c6e63a0e8
/1757/CH5/EX5.14/EX5_14.sce
0d74e3b13886c71e0ae209983700e90bdd6b0a7d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
EX5_14.sce
//Example5.14 // To determine the dominant pole frequency of an op-amp clc; clear; close; Ao = 2*10^5 ; // low frequency open loop gain f = 5*10^6 ; // Hz // pole frequency ACL = 100 ; // low frequency closed lkoop gain p_margin = 80 ; // the dominant pole frequency of an op-amp fPD = (ACL)*(f/Ao); disp('the dominant pole frequency (fPD) of an op-amp is = '+string(fPD)+'Hz');
6ff9383c93b93a65482f444d586338f44aa98deb
449d555969bfd7befe906877abab098c6e63a0e8
/196/CH6/EX6.9/example_6_9.sce
feca6bac40528355f69b02bb813fb7e83f21adbc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
205
sce
example_6_9.sce
//Chapter 6 //Example 6-9 //ProbOnFrequency //Page 164 clear;clc; //Given Ri = 10*10^3 ; Ci = 0.1*10^-6 ; Ei = 2 ; Vref = 10 ; f = Ei / (Ri*Ci*Vref) ; printf ( "\n\n Frequency is %.4f Hz ", f )
89b6d8d96a78646bdcb4e6e1f6123dd97920ccee
ad617742f184bf6d4cceb3e9c99232d8bd52b862
/tests/str-001-mvst.tst
1d219309e7a2e039f248ab5ae4ae01756ef9ff75
[ "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-other-permissive", "BSD-2-Clause" ]
permissive
9track/hyperion
d621343e7eea27c45db49c7c284dd1680491c82c
9ceed2cc7261820eef01c55dac9b9a6ae47636b2
refs/heads/master
2022-09-15T12:19:09.059528
2020-05-28T03:05:29
2020-05-28T03:05:29
268,044,749
3
1
NOASSERTION
2020-05-30T09:03:56
2020-05-30T09:03:55
null
UTF-8
Scilab
false
false
2,646
tst
str-001-mvst.tst
*Testcase str-001-mvst.tst: # Created and placed into the public domain 2018-12-27 by Bob Polmanter. # # NOTE - the nature of the string instructions is such that this test # case will only validate properly for the string instruction # improvement modifications committed in December 2018. The # computation of the CPU determined number of bytes is an # unpredictable number on real hardware (at least above the # minimum value) and the method used in Hercules prior to # instruction improvements calculated it differently than the # improved method. As a result, the operand registers will # likely contain different values when compared by the test # script due to the different CPU number of bytes # determined. None of the methods are wrong, and failing # results in the test script are not necessarily wrong. # But this program and the resulting test script comparisons # were written for the method used by the improved string # instructions (CLST, MVST, SRST). # ########################################################################################### # set up, load, and run the test case # Suppress logging of program checks. Processing of this test script # intentionally generates program checks (specification exception) as part # of instuction test and validation. Redtest.rexx treats these as # errors if they show up in the Hercules log. So suppress them. ostailor quiet # clear any prior test data/program/results sysclear # Run test in z/Arch mode archmode esame loadcore "$(testpath)/str-001-mvst.core" # Run the program runtest # Restore program check messages ostailor default ########################################################################################### # Analyze results *Compare # 0 1 2 3 4 5 6 7 8 9 A B C D E F r 008E.02 *Want "PIC 06" 0006 r 0810.10 *Want "DEST 2" E2C8D6D9 E340E2E3 D9C9D5C7 5B000000 r 0820.0C *Want "Test 2 R6-R8" 0000081C 00000700 00000001 r 0830.04 *Want "DEST 3" 5B000000 r 0840.0C *Want "Test 3 R6-R8" 00000830 00000710 00000001 r 0850.10 *Want "Test 4 R6-R8, CC" 0001204F 000012F0 00000002 00000000 r 0860.10 *Want "Test 5 R6-R8, CC" 00013257 00004000 00000002 00000000 r 0870.10 *Want "Test 6 R6-R8, CC" 0001611F 00006000 00000003 00000000 r 0880.10 *Want "Test 7 R6-R8, CC" 000180CF 00008030 00000003 00000000 r 0890.10 *Want "Test 8 R6-R8, CC" 0001C6F3 0000C000 00000004 00000000 *Done
ea8f86903c167381d5822d685ea94a2439e8f6e6
449d555969bfd7befe906877abab098c6e63a0e8
/2081/CH9/EX9.4/Ex9_4.sce
8e5ccff47dcfe25ab91129f7d956e0971cb86382
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
836
sce
Ex9_4.sce
n1=2200;n2=1900;n3=4000;n4=1100;n5=1000;n6=1200;n7=1800;n8=2100;n9=2000;n10=1580;n11=1800;n12=900 TBW=30*10^6//total allocated bandwidth SBW=25000//simplex channel bandwidth NS=TBW/SBW//no.of simplex channels DS=NS/2//no.of duplex channels NCPC=10 NCPCL=12 TNCC=NCPC*NCPCL////no. of control channels TNTC=DS-TNCC//no. of traffic channels NTCPC=TNTC/NCPCL NUPC=8 NMCPC=8 TNCPC=NMCPC*NTCPC//total no. of calls/cell disp(TNCPC,'total no. of calls/cell') H=5/100*3600 Y=60/3600 Aav=H*Y//traffic intensity case(b) disp(Aav,'average offered traffic load Aav for (case(b)) in Erlangs') tc=n1+n2+n3+n4+n5+n6+n7+n8+n9+n10+n11+n12 pbms=75/100 nbms=pbms*tc disp(nbms,'number of mobile subscribers/cluster ') y=tc/NCPCL Y1=y/3600 H1=60 Aav1=Y1*H1//traffic intensity case(c) disp(Aav1,'average offered traffic load Aav for (case(c)) in Erlangs')
5f5a2170c8f6b5282ab37199b9cfa98fe6b3d6c0
b12941be3faf1fd1024c2c0437aa3a4ddcbbfd67
/normal/pretest.tst
0ff8f18bdf1abbbcb96282ab65e4ac16c0c9aa55
[]
no_license
JanWielemaker/optica
950bd860825ab753236ce1daa399ee7a0b31b3ee
3a378df314b5a60926b325089edac89c00cc8c6d
refs/heads/master
2020-06-12T14:22:46.567191
2019-06-21T11:24:41
2019-06-21T11:24:41
194,328,239
0
0
null
null
null
null
UTF-8
Scilab
false
false
11,879
tst
pretest.tst
/* Questionaire created by optica toolkit Date: Wed Mar 05 11:31:02 1997 */ question(1, 'item 1-1', 'Het lampje staat 4 centimeter boven de hoofdas. Als we het 2 centimeter naar onder bewegen, wat kun je dan zeggen over de plaats waar de lichtstraal de hoofdas raakt?', [ 'Niets, want het ligt aan het soort lens wat er gebeurt', 'De lichtstraal raakt nog steeds op dezelfde plaats de hoofdas', 'De lichtstraal raakt de hoofdas 2 centimeter verder dan eerst', 'weet niet' ], state(state, '', [ m3 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(11), show_gauge(false), instrument_name(lens)), l3 = lamp1(switch(true), angle(0), pos_y(4), pos_x(0), instrument_name(lamp1)) ])). question(2, 'item 2-1', 'Als we de drie lampjes aanzetten schijnen ze recht op de lens. Waar komen de lichtstralen samen?', [ '4 centimeter achter de lens', '8 centimeter achter de lens', '16 centimeter achter de lens', 'weet niet' ], state(state, '', [ m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(8), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(10.3), show_gauge(true)), l4 = parlamp(switch(false), angle(0), separation(1), pos_x(6.25), pos_y(1)), c1 = construction_line(pos_x(14.3)), c2 = construction_line(pos_x(18.3)), c3 = construction_line(pos_x(26.25)), c4 = construction_line(pos_x(6.3)), d7 = ruler(from(m1), to(c4), pos_y(5.75)), d8 = ruler(from(m1), to(c1), pos_y(6.1)), d10 = ruler(from(m1), to(c2), pos_y(5)), d11 = ruler(from(m1), to(c3), pos_y(3.55)) ])). question(3, 'item 3-1', 'Welke afstand geeft weer waar een divergerende lichtbundel samenkomt? Het lampje staat 1 centimeter boven de hoofdas.', [ 'Afstand A', 'Afstand B', 'Afstand C', 'weet niet' ], state(state, '', [ m16 = lens(label(''), radius(5), thickness(0.1), focal_distance(6), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(11.95), show_gauge(true), instrument_name(lens)), l17 = lamp3(switch(false), angle(0), divergence(5), pos_x(-0.05), pos_y(1), instrument_name(lamp3)), c3 = construction_line(pos_x(17.95), instrument_name(consline)), c4 = construction_line(pos_x(23.9), instrument_name(consline)), c5 = construction_line(pos_x(29.95), instrument_name(consline)), d12 = ruler(from(c3), to(m16), pos_y(6.65), varname('A')), d13 = ruler(from(m16), to(c4), pos_y(5.8), varname('B')), d14 = ruler(from(m16), to(c5), pos_y(4.6), varname('C')), d15 = ruler(from(m16), to(centerline), pos_y(6.2)) ])). question(4, 'item 3-2', 'Op welke afstand van de lens komt de lichtbundel samen als het lampje 3 centimeter onder de hoofdas staat en de middelste lichtstraal in de bundel in een hoek van 30 graden op de lens gericht staat?', [ 'Afstand A', 'Afstand B', 'Afstand C', 'weet niet' ], state(state, '', [ l1 = lamp3(switch(true), angle(25), divergence(5), pos_x(0), pos_y(-3), instrument_name(lamp3)), m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(9.95), show_gauge(true), instrument_name(lens)), d1 = ruler(from(m1), to(centerline), pos_y(6.1)), c1 = construction_line(pos_x(19.95), instrument_name(consline)), c2 = construction_line(pos_x(24.95), instrument_name(consline)), c3 = construction_line(pos_x(29.95), instrument_name(consline)), d2 = ruler(from(c1), to(m1), pos_y(6.75), varname('A')), d5 = ruler(from(m1), to(c2), pos_y(5.8), varname('B')), d6 = ruler(from(m1), to(c3), pos_y(5.35), varname('C')), a2 = protractor(path('l1-beam2'), segment(1), location(2.55)) ])). question(5, 'item 4-1', 'Als je van links af een lamp laat schijnen door de gaatjes van de L, wat is dan de vergroting die je vindt op het (scherpe) beeld rechts?', [ '2', '0,5', '1', 'weet niet' ], state(state, '', [ s1 = shield(pos_x(7.3), unit(1)), m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(17.3), show_gauge(true)), s2 = shield2(pos_x(27.25)), d1 = ruler(from(s1), to(m1), pos_y(1.5)), d2 = ruler(from(m1), to(s2), pos_y(3.4)) ])). question(6, 'item 4-2', 'Als we van links af een lamp laten schijnen, hoe ver moet dan een voorwerp van de lens af staan om een scherp beeld te krijgen?', [ '10 centimeter', '8 centimeter', '5 centimeter', 'weet niet' ], state(state, '', [ s4 = shield2(pos_x(25.5)), m3 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(15.5), show_gauge(true)), d14 = ruler(from(m3), to(s4), pos_y(6.2)) ])). question(7, 'item 4-3', 'Wat kun je in bovenstaande situatie zeggen over het beeld van het voorwerp?', [ 'In deze situatie is er geen beeld', 'In deze situatie is het beeld kleiner dan het voorwerp', 'In deze situatie is het beeld groter dan het voorwerp', 'weet niet' ], state(state, '', [ l1 = biglamp(instrument_name(biglamp)), m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(19.9), show_gauge(true), instrument_name(lens)), s1 = shield(pos_x(5.05), unit(1), instrument_name(shield)), d1 = ruler(from(m1), to(s1), pos_y(-6.7)), c1 = construction_line(pos_x(0), instrument_name(consline)), d2 = ruler(from(s1), to(c1), pos_y(5.95)) ])). question(8, 'item 4-4', 'Wat kun je in bovenstaande situatie zeggen over het beeld van het voorwerp?', [ 'In deze situatie is er geen beeld', 'In deze situatie is het beeld kleiner dan het voorwerp', 'In deze situatie is het beeld groter dan het voorwerp', 'weet niet' ], state(state, '', [ l1 = biglamp(instrument_name(biglamp)), m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(13.95), show_gauge(true), instrument_name(lens)), s1 = shield(pos_x(4.95), unit(1), instrument_name(shield)), d1 = ruler(from(m1), to(s1), pos_y(-6.7)), c1 = construction_line(pos_x(0), instrument_name(consline)), d2 = ruler(from(s1), to(c1), pos_y(5.95)) ])). question(9, 'item 5-1', 'Wat kun je in bovenstaande situatie zeggen over het beeld van het voorwerp als we rechts van de lens een beeldscherm plaatsen?', [ 'Er is geen beeld', 'Het beeld is kleiner dan het voorwerp', 'Het beeld is groter dan het voorwerp', 'weet niet' ], state(state, '', [ l1 = biglamp(instrument_name(biglamp)), m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(9.05), show_gauge(true), instrument_name(lens)), s1 = shield(pos_x(4.95), unit(1), instrument_name(shield)), c1 = construction_line(pos_x(0), instrument_name(consline)), d1 = ruler(from(s1), to(c1), pos_y(6.25)), d2 = ruler(from(s1), to(m1), pos_y(-6.85)) ])). question(10, 'item 6-1', 'Op welke afstand van de rechtse lens komen de lichtstralen van een divergerende lichtbundel samen?', [ 'afstand A', 'afstand B', 'afstand C', 'weet niet' ], state(state, '', [ l1 = lamp3(switch(false), angle(0), divergence(5), pos_x(0), pos_y(0)), m19 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(9.9), show_gauge(true), instrument_name(lens)), m20 = lens(label(''), radius(5), thickness(0.1), focal_distance(-5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(4.95), show_gauge(true), instrument_name(lens)), d16 = ruler(from(m19), to(m20), pos_y(6.1)), d17 = ruler(from(m20), to(centerline), pos_y(5.85)), c6 = construction_line(pos_x(14.9), instrument_name(consline)), c7 = construction_line(pos_x(19.9), instrument_name(consline)), c8 = construction_line(pos_x(24.9), instrument_name(consline)), d18 = ruler(from(m19), to(c6), pos_y(7), varname('A')), d19 = ruler(from(m19), to(c7), pos_y(6.35), varname('B')), d20 = ruler(from(m19), to(c8), pos_y(5.7), varname('C')) ])). question(11, 'item 6-2', 'Als je de lampjes aanzet hebben ze drie evenwijdige lichtstralen. Op welke afstand van de rechtse lens komen ze samen?', [ 'afstand A', 'afstand B', 'afstand C', 'weet niet' ], state(state, '', [ l1 = parlamp(switch(false), angle(0), separation(1), pos_x(0), pos_y(0), instrument_name(parlamp)), m1 = lens(label(''), radius(5), thickness(0.1), focal_distance(5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(15), show_gauge(true), instrument_name(lens)), m2 = lens(label(''), radius(5), thickness(0.1), focal_distance(-5), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(10), show_gauge(true), instrument_name(lens)), c1 = construction_line(pos_x(0), instrument_name(consline)), c2 = construction_line(pos_x(19.95), instrument_name(consline)), c3 = construction_line(pos_x(24.95), instrument_name(consline)), c4 = construction_line(pos_x(29.95), instrument_name(consline)), d1 = ruler(from(c1), to(m2), pos_y(6.3)), d2 = ruler(from(m2), to(m1), pos_y(6.85)), d3 = ruler(from(m1), to(c2), pos_y(6.2), varname('A')), d6 = ruler(from(m1), to(c3), pos_y(5), varname('B')), d7 = ruler(from(m1), to(c4), pos_y(3.75), varname('C')) ])). question(12, 'item 7-1', 'Hoe kan in deze situatie het onscherpe beeld gecorrigeerd worden?', [ 'Door een sterke, negatieve lens tussen het voorwerp en de lens te plaatsen', 'Door een sterke, positieve lens tussen het voorwerp en de lens te plaatsen', 'Het beeld kan niet gecorrigeerd worden in deze situatie', 'weet niet' ], state(state, '', [ l8 = biglamp(instrument_name(biglamp)), m3 = lens(label(''), radius(5), thickness(0.1), focal_distance(2), sfere_left(*), sfere_right(*), breaking_index(1.51), pos_x(17.8), show_gauge(true), instrument_name(lens)), s3 = shield2(pos_x(20.3), instrument_name(shield2)), d5 = ruler(from(s3), to(m3), pos_y(6.4)), s4 = shield(pos_x(3.85), unit(1), instrument_name(shield)), d6 = ruler(from(s4), to(m3), pos_y(-6.95)) ])).
7fe15d7f3eafb9862941700238d8188d5dd9dcca
449d555969bfd7befe906877abab098c6e63a0e8
/226/CH8/EX8.9/example9_sce.sce
1dcbf20d0529082082f5a2060da6a7c71f00a0e6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
336
sce
example9_sce.sce
//chapter 8 //example 8.9 //page 330 printf("\n") printf("given") R1=30*10^3;R2=30*10^3;rs=30*10^3;f2=40*10^3;f1=100;k=1.37*10^-23;R=10*10^3;Av=600;Ri=3*10^3; Rb=(R1*R2)/(R1+R2); Rg=(rs*Rb)/(rs+Rb); T=(273+25) B=f2-f1; en=sqrt(4*k*T*B*R) eni=en*((Ri/(Ri+Rg))) eno=(Av*eni)*10^6; printf("noise output voltage is %duV\n",eno)
61c8fc0d2587a342082e3b6ccb212b908220d179
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH3/EX3.20/example3_20.sce
04752ecbed6224b513ed5defee64b6e53f9c1216
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
440
sce
example3_20.sce
//Chapter 3 //Example 3_20 //Page 64 clear;clc; bl=18; sc=20; asso=7.35*1e6; ablso=101.35*1e6; pl=12; hours=2190; printf("Standby station\n\n"); alf=asso/pl/1000/hours; printf("\t Annual loadfactor = %.2f %% \n\n", alf*100); apcf=asso/sc/1000/8760; printf("\t Annual plan capacity factor = %.2f %% \n\n", apcf*100); printf("Base load station\n\n"); alf_base=ablso/bl/1000/8760; printf("Annual load factor = %.2f %% \n\n", alf_base*100);
888e6c8702b45c6f7e7dfad064f7954b24e5f58f
5fa35d077fae86be5fabe363900a7008362095f8
/chirp.sci
35c6985d6594506f852dde3bd9d11f1347c6c03d
[]
no_license
panda314/scilab_toolbox
b250c7f1a2a10fa132eb956677b09aa59515dc60
3bce371075f73dbea75ea051f769872d03911fd2
refs/heads/master
2021-01-13T01:51:13.306854
2016-03-01T18:21:19
2016-03-01T18:21:19
42,867,282
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,113
sci
chirp.sci
//Parthasarathi Panda //parthasarathipanda@gmail.com //t is the array over which thee chirp is computed //f0 is the frequency at t=0 //f1 is the frequency at t=t1 //phi is the phase at t=0 (0 optional) //method indicates the way in which frequency varies (quadratic,linear or logarithmic) and is linear when unspecified //tested for t=[1:5], f0=0 and 1 t1=100, f1=5, all possible methods, phi=0,pi/3 function [y]=chirp(t,f0,t1,f1,method,phi) [lhs,rhs]=argn(); if (rhs<6) then phi=0; if (rhs<5) then method="linear"; end end if ((method=="li") | (method=="linear")) then b=(f1-f0)/t1; y=cos(phi+2*%pi*(f0*t+0.5*b*t.*t)); elseif ((method=="q") | (method=="quadratic")) then b=(f1-f0)/(t1*t1); y=cos(phi+2*%pi*(f0*t+b*t.*t.*t/3)); elseif ((method=="lo") | (method=="logarithmic")) then if f0==0 then error("f0 must be non zero"); else b=(f1/f0)^(1/t1); y=cos(phi+2*%pi*(f0*(b.^t)/log(b))); end else error("unidentified method"); end, endfunction
b71e20d1f7946ba55ebc271ca8bf37fa3c617c3d
449d555969bfd7befe906877abab098c6e63a0e8
/257/CH12/EX12.13/example_12_13.sce
316902f9fd21d2a3615a0bd4d450cf88ca807899
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
95
sce
example_12_13.sce
s=%s; sys1=syslin('c',100*(1+5*s)/(s^4*(s+1))) nyquist(sys1) show_margins(sys1,'nyquist')
84196eac01d2df07ed539175c6018f767a69f101
4a12429e81234c5b957efa71fdec67e9ec829479
/collision/GaussSeidel_exo.sce
c44fce83179f3cb8bbeafd42bd1a44247a04fa56
[]
no_license
agoryu/M3DA
c94d51fafbbb9443f20318eba1251057f6cbb728
aeb9b8701fdf439460e237d5e832d85e07e3cc3a
refs/heads/master
2021-01-18T23:58:47.060425
2015-12-18T16:59:46
2015-12-18T16:59:46
42,066,671
0
0
null
null
null
null
UTF-8
Scilab
false
false
578
sce
GaussSeidel_exo.sce
function [lambda, delta] = GaussSeidel(W,dfree, maxIteration) num=size(W,1); lambda=zeros(num,1); delta = zeros(num,1); // ecrire l'algorithme for i=1 :maxIteration for c=1:num lambda(c)=0; d=W(c,:) * lambda + dfree(c) if (d<0) lambda(c) = -d/W(c,c); end end end endfunction W=[10 1 2; 1 5 4; 2 4 6]; dfree=[-3 ; -2; -0.1]; [lambda, delta] = GaussSeidel(W,dfree, 10000); // visualiser les valeurs de delta et lambda dans la console disp ([lambda, delta])
03c01982d090cd526b8e8e4a5a42717ef71f6992
449d555969bfd7befe906877abab098c6e63a0e8
/1439/CH13/EX13.11/13_11.sce
f24d4482bc80eff03934eb43c30d96dd7528ba8d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
271
sce
13_11.sce
clc //initialisation of variables T= 25 //C n= 2 F= 96500 //coloumbs R= 8.316 //J mole^-1 K^-1 a= 76.2*10-5 a1= 79*10^-5 A= 155.2*10^-5 //CALCULATIONS D0= n*a*a1*R*(273+T)*10^-6/(F*A) //RESULTS printf ('limiting diffusion coefficient= %.2e cm^2 sec^-1',D0)
b54b64f31c4828ca9d408a3126a1dca2fb8f962b
449d555969bfd7befe906877abab098c6e63a0e8
/2354/CH16/EX16.4/16_4.sce
9bf78566a79f6d078964d06f7fa538771d4bf697
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
282
sce
16_4.sce
//example 16.4 clc; funcprot(0); // Initialization of Variable Tinfinity=30; q=1.5e6; La=0.05; h=1000; T2=Tinfinity+q*La/h; disp(T2,"temperature in degreeC"); T1=Tinfinity+(0.02/150+1/h)*q*La; To=q*La^2/2/75+T1; disp(To,"inner surface temperature in degreeC"); clear()
3b5efb8d0e6e5393ca1f6948c65c23afcc37733c
449d555969bfd7befe906877abab098c6e63a0e8
/1733/CH2/EX2.20/2_20.sce
4314cd8278df296c5c13ea4e8e16245b8dabb838
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
501
sce
2_20.sce
//2.20 clc; Vm=230*2^0.5; Vdc=Vm/%pi*(1+cosd(90)); printf("dc value of voltage = %.2f V", Vdc) Vrms=230*((1/%pi)*(%pi-(%pi/2)+sin(%pi)/2))^0.5; printf("\n RMS value of voltage= %.2f V", Vrms) Is=(1-(%pi/2)/%pi)^0.5; Is1=2/%pi*2^0.5*cos(%pi/4); HF=((Is/Is1)^2-1)^0.5; printf("\n Harmonic factor= %.3f ", HF) Displacement_factor=cos(-%pi/4); printf("\n Displacement factor= %.4f ", Displacement_factor) Power_factor=Is1/Is*cos(-%pi/4); printf("\n Power factor= %.4f lagging", Power_factor)
6eedfdf9670c3bb1710ac70c7f59989449a23560
181f67b4868e49ca80872d6ac088a51540f90da6
/186A8/AP186_A8.sce
a3e820166ebb648a0771671a6e1c42d170b6ac2f
[]
no_license
nobody51/AP186
567f25ba1ad7f71ad2983860078eeaccffa46080
cb916fc9b38b508026403a2227ffc76d490fe948
refs/heads/master
2021-08-28T09:35:55.488122
2017-12-11T21:34:46
2017-12-11T21:34:46
104,969,401
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,514
sce
AP186_A8.sce
////Grayscale image of a check chec = imread("C:\Users\Anton Cruz\Desktop\186\AP186\186A8\check.jpg"); chec = rgb2gray(chec); [count, cells] = imhist(chec, 256); plot (cells, count); isoview(); xs2png(gcf(), "A8PartA1.png") BW = chec < 140; imshow(BW); isoview(); imwrite(BW, "A8PartA2threshideal.png") //for i = 50:10:200 // scf(15); // clf(15); // // drawlater(); // filename = "A8PartA2thresh " + string(i) + ".png" // BW = chec < i; // xtitle("Threshold =" + string(i)) // imshow(BW); isoview(); // xs2png(gcf(), filename) // drawnow(); // //end //2D Histogram J = imread("C:\users\jarmsmagalang\My Documents\College\5th Year\App Physics 186\AP186 A8\Gretag-Macbeth_ColorChecker.jpg"); go_on = 'y'; while go_on ~= 'n' do subplot(1,2,1) I = imcropm(J); I = double(I); R = I(:,:,1); G = I(:,:,2); B = I(:,:,3); Int = R+G+B; Int(find(Int == 0)) = 100000; r = R./Int; g = G./Int; BINS = 32 rint = round(r*(BINS-1)+1); gint = round(g*(BINS-1)+1); colors = gint(:) + (rint(:)-1)*BINS; hist = zeros(BINS, BINS); for row = 1:BINS for col = 1:(BINS-row+1) hist(row,col) = length(find(colors==(((col+(row-1)*BINS))))); end; end; subplot(1,2,2); Matplot(imrotate(hist*255/max(hist), 90)); isoview(); f = gcf(); f.color_map = rainbowcolormap(64); go_on = input("Again? y/n", "s"); if go_on =='n' then break end; end; // ////Parametric Segmentation //roi = double(imread("C:\users\jarmsmagalang\My Documents\College\5th Year\App Physics 186\AP186 A8\ROI4.png")); //R = roi(:,:,1); G = roi(:,:,2); B = roi(:,:,3); //Int = R+G+B; //Int(find(Int == 0)) = 100000; //r = R./Int; g = G./Int; // //mean_r = mean(r); sigma_r = stdev(r); //mean_g = mean(g); sigma_g = stdev(g); // //img = double(imread("C:\users\jarmsmagalang\My Documents\College\5th Year\App Physics 186\AP186 A8\face.jpeg")); //R_img = img(:,:,1); G_img = img(:,:,2); B_img = img(:,:,3); //Int_img = R_img+G_img+B_img; //Int_img(find(Int_img == 0)) = 100000; //r_img = R_img./Int_img; g_img = G_img./Int_img; // //pr = (1/sigma_r*sqrt(2*%pi))*exp(-((r_img-mean_r).^2/(2*sigma_r.^2))) //pg = (1/sigma_g*sqrt(2*%pi))*exp(-((g_img-mean_g).^2/(2*sigma_g.^2))) //image = pr.*pg; // //f0 = scf(); imshow(image); // //Non-Parametric Segmentation //roi = double(imread("C:\users\jarmsmagalang\My Documents\College\5th Year\App Physics 186\AP186 A8\ROI5.png")); //R = roi(:,:,1); G = roi(:,:,2); B = roi(:,:,3); //Int = R+G+B; //Int(find(Int == 0)) = 100000; //r = R./Int; g = G./Int; // //BINS = 32 //r_Int = round(r*(BINS-1)+1); //g_Int = round(g*(BINS-1)+1); // //colors = g_Int(:)+(r_Int(:)-1)*BINS; //hist = zeros(BINS, BINS); //for row = 1:BINS // for col = 1:(BINS-row+1) // hist(row, col) = length(find(colors==(((col+(row-1)*BINS))))); // end; //end; // //img = double(imread("C:\users\jarmsmagalang\My Documents\College\5th Year\App Physics 186\AP186 A8\face.jpeg")); //R_img = img(:,:,1); G_img = img(:,:,2); B_img = img(:,:,3); //Int_img = R_img+G_img+B_img; //Int_img(find(Int_img == 0)) = 100000; //r_img = R_img./Int_img; g_img = G_img./Int_img; // //proj_array = zeros(size(r_img,1), size(r_img,2)); //for i = 1:size(r_img, 1) // for j = 1:size(r_img,2) // r_proj = round(r_img(i,j)*(BINS-1)+1); // g_proj = round(g_img(i,j)*(BINS-1)+1); // proj_array(i,j) = hist(r_proj, g_proj); // end; //end; // ////f1 = scf(); imshow(hist); //f2 = scf(); imshow(proj_array); //
62ec6a37212f727b3634c62c737a23b093b153ce
449d555969bfd7befe906877abab098c6e63a0e8
/1691/CH5/EX5.13/exmp5_13.sce
3e5372a7ca8eeb926ac7425e0c0fa8cb5f1c8b61
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
863
sce
exmp5_13.sce
//Example 5.13 clc disp("BW = f_r / Q") q=10700/200 format(5) disp(q,"Therefore, Q = f_r / BW =") disp("Q = omega_r*L / R = 2*pi*f_r*L / R") lr=53.5/(2*%pi*10.7*10^6) format(9) disp(lr,"Therefore, L/R = Q / 2*pi*f_r =") disp("|A_v| = g_m*R_L = 30") rl=(30/5) disp(rl,"Therefore, R_L(in k-ohm) = (r_d || R_p) =") disp("Therefore, R_p = 6383 ohm") disp("We know that") disp("R_p = L/C*R") c=((795*10^-9)/6383)*10^12 format(6) disp(c,"Therefore, C(in pF) =") disp("We know that") l=(1/(4*%pi^2*((10.7*10^6)^2)*124.5*10^-12))*10^6 disp("f_r = 1 / 2*pi*sqrt(L*C)") format(6) disp(l,"Therefore, L(in uH) =") disp("We have") disp("R_p = L / C*R") r=(1.777*10^-6)/(6383*124.5*10^-12) disp(r,"Therefore, R(in ohm) = L / C*R_p =") disp("Therefore, elements of tank circuit are:") disp("L = 1.777 uH, C = 124.5 pF and R = 2.236 ohm")
21b8831e8014a5d70f16db280d65a13f57808729
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH21/EX21.2/Example21_2.sce
27904f19cdc7a451bf92cdca6990e76cef2cab56
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
370
sce
Example21_2.sce
//Given that m = 1.5 //in kg TiL = 60 + 273 //in K TiR = 20 + 273 //in K Tf = 40 + 273 //in K Sc = 386 //in J/kg.K //Sample Problem 21-2 printf("**Sample Problem 21-2**\n") SL = m*Sc*integrate('1/T', 'T', TiL, Tf) SR = m*Sc*integrate('1/T', 'T', TiR, Tf) Srev = SR + SL printf("The net entropy change in the reversible process is equal to %fJ/K", Srev)
15e273104e3a32f66c60c9bbfb4afaab7fced40b
449d555969bfd7befe906877abab098c6e63a0e8
/2102/CH6/EX6.14/exa_6_14.sce
ad1c260a43288e21b5d14659bcfaa43b45d1c2f1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
545
sce
exa_6_14.sce
// Exa 6.14 clc; clear; close; // Given data I_DSS= 4;// in mA I_DSS= I_DSS*10^-3;// in A V_P= -2;// in V V_DD= 10;// in V V_SS= V_DD;// in V V_GS2=0;// in V I_D= I_DSS*(1-V_GS2/V_P)^2;// in A // since I_D= I_DSS V_GS= 0;// in volt // Formula V_SS= V_DS-V_GS V_DS= V_SS-V_GS;// in volt disp(I_D*10^3,"The value of I_D in mA is :") disp(V_GS,"The value of V_GS in volt is : ") disp(V_DS,"The value of V_DS in volts is :") if V_DS > V_GS-V_P then disp("The active region operation of the upper JFET is confirmed ") end
02e784274b51812528e76a49289fd34bcb2d0c5e
58b5c31b2c6a551fee6e4b0f9234aa938c1e9957
/PR Regelungsrechnik - Versuch 3/Scilab/Luft-Temperatur-Regelstrecke.sce
50838f6df979a0343f1457c21f0681739473ee8b
[]
no_license
unizeug/PR_Regelungsrechnik_-_Versuch_3
51fd157da10f0dc69a81e1e6e2e14506d8be1d97
aa2c957243120db8864f6d53d44f9610b66cb69b
refs/heads/master
2016-09-05T22:54:29.931828
2012-07-13T09:20:28
2012-07-13T09:20:28
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,206
sce
Luft-Temperatur-Regelstrecke.sce
// Regelungstechnik Versuch 3 // Boris: cd "/Users/borishenckell/Documents/eclipse workspace/PR_Regelungsrtechnik_-_Versuch_3/PR Regelungsrechnik - Versuch 3" // Dirk: //cd "/media/daten/workspace/PR_Regelungsrechnik_-_Versuch_3/PR Regelungsrechnik - Versuch 3/Scilab/" s = poly(0, 's'); Kpid = 1.355; // Verstärkung s1 = -0.29; // Polstellen der Strecke s2 = -3.12; // Polstellen der Strecke p = -3.6 // Realisierbarkeitspole T = 1/-p; Ti = -(s1+s2)/(s1*s2); Td = 1/-(s1+s2); G_tilde = 2.259 / ((s - s1) * ( s - s2 )); K_tilde = Kpid * (1/(1+T*s))*(1/Ti)*(1/s)*(s^2*Td*Ti+Ti*s+1); // zum Vergleichen w = 2 * %pi * 0.3; d = 1; P =1/ (s^2/w^2+s*2*d/w + 1); polpaar = roots(P.den); // Sprungantwort GKgeschlossen_tilde = (G_tilde*K_tilde)/(1+G_tilde*K_tilde); GKgeschlossen_tilde = syslin('c', clean(real(GKgeschlossen_tilde.num)),clean(real(GKgeschlossen_tilde.den))); t1=[0:0.1:10]; //u=ones(1,length(t1))*0.1; h1=csim('step',t1,GKgeschlossen_tilde); h2=csim('step',t1,P); clf(15);scf(15); plot2d(t1,h1) plot2d(t1,h2,2) legend('Sprungsantwort geschlossener Regelkreis', 'Sprungantwort PT2 Glied',4); xtitle('Sprungantworten', 'Zeit[s]', 'Temperatur [°c]') // Pade-Appriximation tau = 0.4; // 0.4 p1 = (1-tau/2*s)/(1+tau/2*s); G_dach=G_tilde*p1; // Reglerentwurf mit Polvorgabe // erstellen der Streckenmatrix G_dachI = G_dach*1/s nI=length(roots(G_dachI.den)); AsI=zeros(2*nI,2*nI); //As(Zeile,Spalte) for k = 1:2*nI+1 for l = 1:2*nI if k<nI+2 then if l < nI+1 then AsI(k+l-1,l) = coeff(G_dachI.den,nI+1-k); end if l > nI then AsI(k+l-1-nI,l) = coeff(G_dachI.num,nI+1-k); end end end end pol_G_dachI = roots(G_dachI.den); qsoll= (s-pol_G_dachI(1))*(s-pol_G_dachI(2))*(s-pol_G_dachI(3))*(s-pol_G_dachI(4))*(s-polpaar(1))*(s-polpaar(2))*(s+2); qsoll = clean(qsoll); cvekI = coeff(qsoll)'; cvekI = cvekI([1 8 7 6 5 4 3 2]); kcoeffI=clean(inv(AsI)*cvekI); KposI = syslin('c',kcoeffI(nI+1)*s^(nI-1)+kcoeffI(nI+2)*s^(nI-2) + kcoeffI(nI+3)*s^(nI-3)+kcoeffI(nI+4)*s^(nI-4),s*(kcoeffI(1)*s^(nI-1)+kcoeffI(2)*s^(nI-2)+kcoeffI(3)*s^(nI-3)+kcoeffI(4)*s^(nI-4))); KposI = clean(KposI); // Führungssprung //GKgeschlossen = KposI*G_dach/(1+KposI*G_dach) GKgeschlossen = syslin('c', clean(KposI.num*G_dach.num),clean(KposI.den*G_dach.den + KposI.num*G_dach.num)) //clean(GKgeschlossen); //GKgeschlossen = syslin('c', GKgeschlossen.num,real(GKgeschlossen.den)); S = syslin('c', clean(KposI.den*G_dach.den)/(clean(KposI.den*G_dach.den) + clean(KposI.num*G_dach.num))) S = syslin('c',S.num,real(S.den)); S = clean(S); h3=csim('step',t1,GKgeschlossen); h4=csim('step',t1,S); //scf(16);clf(16) //plot2d(t1,h3); //scf(17);clf(17); //plot2d(t1,h4); //clf(18);scf(18); // plot2d(t1,h3) // plot2d(t1,h4,2) // legend('T', 'S',4); // xtitle('Sensitivitäts- und komplimentäre Sensitivitätsfunktion', 'Zeit[s]', 'K.A.') // --- pdf abspeichern --- // //xs2pdf(15,'../Bilder/Sprungantwort.pdf'); //xs2pdf(16,'../Bilder/GKgeschlossen.pdf'); //xs2pdf(17,'../Bilder/S.pdf'); //xs2pdf(18,'../Bilder/S_T_Vergleich.pdf');
609e81458ba791e0c1c1854a0c2a145188d59aae
449d555969bfd7befe906877abab098c6e63a0e8
/3731/CH6/EX6.5/Ex6_5.sce
72969a347343ff18a9c8507fd6d42131093713ef
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,685
sce
Ex6_5.sce
//Chapter 6:Induction Motor Drives //Example 4 clc; //Variable Initialization //Ratings of the star connected Induction motor f=50 // frequency in HZ Vl=440 // line voltage in V P=6 // number of poles Vp=Vl/sqrt(3) //phase voltage in V //Parameters referred to the stator Xr_=1.2 // rotor winding reactance in ohm Xs=Xr_ // stator winding reactance in ohm Rr_=0.4 // resistance of the rotor windings in ohm Rs=0.5 // resistance of the stator windings in ohm Xm=50 // no load reactance in ohms N=950 // full load speed in rpm Sm=2 // slip at maximum torque //Solution Rr_=Sm*sqrt(Rs**2+(Xs+Xr_)**2) //Since Sm=Rr_/sqrt(Rs**2+(Xs+Xr_)**2) Ns=120*f/P //synchronous speed in rpm Wms=2*%pi*Ns/60 s=(Ns-N)/Ns //slip at 950 rpm x=%i*Xm*(Rr_/s+%i*Xr_) y=Rr_/s+%i*(Xr_+Xm) Zp=Rs+%i*Xs+x/y Ip=Vp/sqrt(3)/Zp //The value of Ip is wrong which leads to other wrong answers Irp_=Ip*(%i*Xm)/(Rr_/s+%i*(Xr_+Xm)) Tp=(1/Wms)*3*abs(Irp_)**2*Rr_/s x=%i*Xm*(Rr_/(2-s)+%i*Xr_) y=Rr_/(2-s)+%i*(Xr_+Xm) Zn=Rs+%i*Xs+x/y In=Vp/sqrt(3)/Zn Irn_=In*(%i*Xm)/(Rr_/(2-s)+%i*(Xr_+Xm)) Tn=-(1/Wms)*3*abs(Irn_)**2*Rr_/(2-s) //The value of In is wrong T=Tp-Tn I=abs(Ip)+abs(In) Rr_=0.4 // from the parameters of the motor referred to the stator x=sqrt((Rs+Rr_/s)**2+(Xs+Xr_)**2) If=(Vl/sqrt(3))/x //full load current Tf=(1/Wms)*3*If**2*Rr_/s //full load torque ratio1=I/If ratio2=abs(T)/Tf //Results mprintf("Ratio of braking current to full load current is:%.3f",ratio1) mprintf("\nRatio of braking torque to full load torque is:%.3f",ratio2) //Answer provided in the book is wrong
2f802dc8f34ddddcf6cdaa361253e38d55fc5b15
449d555969bfd7befe906877abab098c6e63a0e8
/680/CH2/EX2.05/2_05.sce
6e8cc63624bd9ae21e52bb37f25a6f0a236ddbbf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
206
sce
2_05.sce
//Problem 2.05: //initializing the variables: sgm = 0.92; dw = 62.4; // in lb/ft3 //calculation: dm = sgm*dw printf("\n\nResult\n\n") printf("\n the density of methanol is %.1f lb/ft3\n",dm)
f0519034a33297fd52932098bd2b0333a3799a3a
449d555969bfd7befe906877abab098c6e63a0e8
/2705/CH14/EX14.8/Ex14_8.sce
e851d6a3b47ab318bb42170d2498260a56cfa05a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,242
sce
Ex14_8.sce
clear; clc; disp(' Example 14.8'); // aim : To determine // the total temperature and pressure of the mixture // given values rp = 2.5;// static pressure ratio FC = .04;// fuel consumption rate, [kg/min] P1 = 60;// inilet pressure, [kN/m^2] T1 = 273+5;// inilet temperature, [K] n_com = .84;// isentropic efficiency of compressor Gama = 1.39;// heat capacity ratio C2 = 120;//exit velocity from compressor, [m/s] rm = 13;// air-fuel ratio cp = 1.005;// heat capacity ratio // solution P2 = rp*P1;// given condition, [kN/m^2] T2_prim = T1*(P2/P1)^((Gama-1)/Gama);// temperature after compression, [K] // using isentropic efficiency=(T2_prim-T1)/(T2-T1) T2 = T1+(T2_prim-T1)/n_com;// final temperature, [K] m_dot = FC*(rm+1);// mass of air-fuel mixture, [kg/s] P = m_dot*cp*(T2-T1);// power to drive compressor, [kW] mprintf('\n The power required to drive compressor is = %f kW\n',P); Tt2 = T2+C2^2/(2*cp*10^3);// total temperature,[K] Pt2 = P2*(Tt2/T2)^(Gama/(Gama-1));// total pressure, [kN/m^2] mprintf('\n The temperature in the engine is = %f C\n',Tt2-273); mprintf('\n The pressure in the engine cylinder is = %f kN/m^2\n',Pt2); // There is calculation mistake in the book // End
89c3f775692442ac4743965d60249c94e5bc3825
25ecbf436e9499640445c5f8dd256d12dcfecf2a
/Rb model/Scilab/StochRb8 DA multi.sci
3e99e17948b1dacb15aeea910dec3e09bfc0f553
[]
no_license
ModelDBRepository/141272
89fa654099db5fe443f1d34b43071108882d740e
67f44e52600c751f37f731f71a5b13a21fd28e8e
refs/heads/master
2020-05-29T18:22:46.893645
2019-05-31T02:44:35
2019-05-31T02:44:35
189,298,198
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,489
sci
StochRb8 DA multi.sci
// Rubinstein model of Ranvier Node's action potentials as in // Rubinstein JT (1995) Biophys J 68: 779-785. // Mino H, Rubinstein JT, White JA (2002) Ann Biomed Eng 30: 578-587. // Bruce IC (2007) Ann Biomed Eng 35: 315-318; // Voltage is shifted so that resting voltage = 0 mV (the reversal of the leak) // This script simulates 1000 sweeps per stimulus and calculates // firing efficiency, mean firing time and firing time variance // 100 (nsim) simultaneous sweeps, 10 times // Lines 43, 59, 60, 110 and 111 are intended to make a voltage trace // It is advisable to reduce nsim before uncommenting them // // Coupled activation particles, 8-state Na channel // Diffusion Approximation nsim=100; gNa=0.02569*265; //mS/cm2 ENa=144; //mV Cm=0.0000714*265; Rm=1953.49/265; NNa=1000; Tstop=1; dt=0.001; //ms points = round(Tstop/dt) Idel=0; Idur=0.1; //ms, ms threshold=80; rand('normal'); currents=[5:0.1:6.5]; Eff=[]; meanFT=[]; varFT=[]; NaNs=[]; tic() for curr=1:size(currents,'*') Iamp=ones(1,nsim)*currents(curr); firetimes=[]; NNaNs=0; for nn=1:10 p=1; // Uncomment this only with a small nsim // vrec = zeros(points,nsim); v = 0*ones(1,nsim); am=1.872*(v-25.41)./(1-exp((25.41-v)/6.06)); bm=3.973*(21-v)./(1-exp((v-21)/9.41)); ah=-0.549*(27.74+v)./(1-exp((v+27.74)/9.06)); bh=(22.57)./(1+exp((56-v)/12.5)); M=am./bm; H=ah./bh; statesum=(1+H).*(1+M)^3; s=[ones(1,nsim);3*M;3*M.^2;M.^3;H;3*M.*H;3*M.^(2).*H;M^(3).*H]./(ones(8,1)*statesum); firetime=zeros(1,nsim); firing=zeros(1,nsim); for t = dt:dt:Tstop //vrec(p,:) = v; //uncomment with small nsim //p=p+1; if or(~firing&v>=threshold) then ind=find(v>=threshold&~firing); firetime(ind)=t; firing(ind)=1; end am=1.872*(v-25.41)./(1-exp((25.41-v)/6.06)); bm=3.973*(21-v)./(1-exp((v-21)/9.41)); ah=-0.549*(27.74+v)./(1-exp((v+27.74)/9.06)); bh=(22.57)./(1+exp((56-v)/12.5)); Iapp=Iamp*(t>Idel&t<(Idel+Idur)); Imemb=-Iapp+gNa.*s(8,:).*(v-ENa)+v/Rm; // deterministic transition matrix transition=[3*am.*s(1,:)-(2*am+bm+ah).*s(2,:)+2*bm.*s(3,:)+bh.*s(6,:); 2*am.*s(2,:)-(2*bm+am+ah).*s(3,:)+3*bm.*s(4,:)+bh.*s(7,:); am.*s(3,:)-(3*bm+ah).*s(4,:)+bh.*s(8,:); -(3*am+bh).*s(5,:)+bm.*s(6,:)+ah.*s(1,:); 3*am.*s(5,:)-(2*am+bm+bh).*s(6,:)+2*bm.*s(7,:)+ah.*s(2,:); 2*am.*s(6,:)-(2*bm+am+bh).*s(7,:)+3*bm.*s(8,:)+ah.*s(3,:); am.*s(7,:)-(3*bm+bh).*s(8,:)+ah.*s(4,:)]; ma=abs(s); //The stochastic terms (R) are calculated with the absolute value of state variables R=rand(10,nsim).*sqrt((dt/NNa)*[3*am.*ma(1,:)+bm.*ma(2,:); 2*am.*ma(2,:)+2*bm.*ma(3,:); am.*ma(3,:)+3*bm.*ma(4,:); ah.*ma(1,:)+bh.*ma(5,:); ah.*ma(2,:)+bh.*ma(6,:); ah.*ma(3,:)+bh.*ma(7,:); ah.*ma(4,:)+bh.*ma(8,:); 3*am.*ma(5,:)+bm.*ma(6,:); 2*am.*ma(6,:)+2*bm.*ma(7,:); am.*ma(7,:)+3*bm.*ma(8,:)]); //Stochastic terms that correspond to state variables 2-8 Wt=[-R(1,:)+R(2,:)+R(5,:); -R(2,:)+R(3,:)+R(6,:); -R(3,:)+R(7,:); R(8,:)-R(4,:); -R(8,:)+R(9,:)-R(5,:); -R(9,:)+R(10,:)-R(6,:); -R(10,:)-R(7,:)]; s(2:8,:)=s(2:8,:)+dt*transition+Wt; s(1,:)=ones(1,nsim)-sum(s(2:8,:),'r'); v=v-dt*Imemb/Cm; end printf("round %d Iamp %g\n",nn,currents(curr)) //clf //uncomment with small nsim //plot(dt:dt:Tstop,vrec) firetimes=[firetimes firetime]; NNaNs=NNaNs + sum(1*(isinf(v)|isnan(v))); end Eff=[Eff;size(find(firetimes<>0),'*')]; meanFT=[meanFT;mean(firetimes(find(firetimes<>0)))]; if size(find(firetimes<>0),'*')>1 then varFT=[varFT;variance(firetimes(find(firetimes<>0)))]; else varFT=[varFT;0]; end NaNs=[NaNs;NNaNs]; end realt=toc(); printf("time = %g\n",realt) write_csv([currents' Eff meanFT varFT NaNs],sprintf('EffN-Rb8DA-N%g-dt%g-%gs.csv',NNa,dt,realt),',',".") scf(0); clf subplot(3,1,1) plot(currents,Eff) subplot(3,1,2) plot(currents,meanFT) subplot(3,1,3) plot(currents,varFT)
3c652b96f76e4e689bd9ea48e93f8975fa1b339c
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/XF92WHT/ATWM1_Working_Memory_MEG_XF92WHT_Session2/ATWM1_Working_Memory_MEG_Salient_Uncued_Run2.sce
93942d6db2bb7e1bf59dca1091f57a170ccb6c02
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
48,408
sce
ATWM1_Working_Memory_MEG_Salient_Uncued_Run2.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_uncued_run2"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 42 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_078 gabor_137 gabor_014 gabor_047 gabor_078_alt gabor_137 gabor_014 gabor_047_alt "2_1_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_078_137_014_047_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_047_framed blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1742 2992 2242 fixation_cross gabor_009 gabor_134 gabor_080 gabor_167 gabor_009_alt gabor_134_alt gabor_080 gabor_167 "2_2_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_009_134_080_167_target_position_1_2_retrieval_position_1" gabor_055_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_064 gabor_142 gabor_175 gabor_014 gabor_064 gabor_142_alt gabor_175 gabor_014_alt "2_3_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_064_142_175_014_target_position_2_4_retrieval_position_2" gabor_circ gabor_094_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_094 gabor_039 gabor_179 gabor_117 gabor_094 gabor_039_alt gabor_179 gabor_117_alt "2_4_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_094_039_179_117_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_117_framed blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_071 gabor_012 gabor_120 gabor_092 gabor_071_alt gabor_012 gabor_120 gabor_092_alt "2_5_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_071_012_120_092_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_045_framed blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1842 2992 2442 fixation_cross gabor_034 gabor_140 gabor_167 gabor_081 gabor_034 gabor_140_alt gabor_167 gabor_081_alt "2_6_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2450_gabor_patch_orientation_034_140_167_081_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_167_framed gabor_circ blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_167_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_078 gabor_018 gabor_058 gabor_148 gabor_078_alt gabor_018 gabor_058_alt gabor_148 "2_7_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_078_018_058_148_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_058_framed gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1892 2992 2392 fixation_cross gabor_016 gabor_122 gabor_094 gabor_078 gabor_016_alt gabor_122 gabor_094_alt gabor_078 "2_8_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_016_122_094_078_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_094_framed gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_094 gabor_076 gabor_111 gabor_144 gabor_094 gabor_076_alt gabor_111 gabor_144_alt "2_9_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_094_076_111_144_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_005_framed blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1892 2992 1892 fixation_cross gabor_088 gabor_053 gabor_111 gabor_126 gabor_088 gabor_053_alt gabor_111 gabor_126_alt "2_10_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_088_053_111_126_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_174_framed blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_097 gabor_074 gabor_043 gabor_133 gabor_097_alt gabor_074_alt gabor_043 gabor_133 "2_11_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_097_074_043_133_target_position_1_2_retrieval_position_2" gabor_circ gabor_026_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 1792 2992 2042 fixation_cross gabor_126 gabor_170 gabor_155 gabor_082 gabor_126_alt gabor_170 gabor_155 gabor_082_alt "2_12_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2050_gabor_patch_orientation_126_170_155_082_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_107_framed gabor_circ blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_107_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1942 2992 2242 fixation_cross gabor_092 gabor_150 gabor_017 gabor_171 gabor_092 gabor_150 gabor_017_alt gabor_171_alt "2_13_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_092_150_017_171_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_035_framed blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 1792 2992 2492 fixation_cross gabor_167 gabor_061 gabor_099 gabor_019 gabor_167 gabor_061_alt gabor_099 gabor_019_alt "2_14_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2500_gabor_patch_orientation_167_061_099_019_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_146_framed gabor_circ blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_146_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_139 gabor_073 gabor_115 gabor_154 gabor_139_alt gabor_073 gabor_115_alt gabor_154 "2_15_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_139_073_115_154_target_position_1_3_retrieval_position_1" gabor_139_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2042 2992 2292 fixation_cross gabor_136 gabor_105 gabor_030 gabor_163 gabor_136_alt gabor_105 gabor_030_alt gabor_163 "2_16_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_136_105_030_163_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_030_framed gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2192 2992 2592 fixation_cross gabor_149 gabor_170 gabor_059 gabor_083 gabor_149 gabor_170_alt gabor_059 gabor_083_alt "2_17_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_149_170_059_083_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_128_framed blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2142 2992 2492 fixation_cross gabor_069 gabor_084 gabor_107 gabor_129 gabor_069 gabor_084_alt gabor_107_alt gabor_129 "2_18_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_069_084_107_129_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_107_framed gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_091 gabor_173 gabor_065 gabor_111 gabor_091 gabor_173_alt gabor_065_alt gabor_111 "2_19_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_091_173_065_111_target_position_2_3_retrieval_position_2" gabor_circ gabor_038_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 2092 2992 2342 fixation_cross gabor_131 gabor_064 gabor_042 gabor_006 gabor_131 gabor_064_alt gabor_042_alt gabor_006 "2_20_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2350_gabor_patch_orientation_131_064_042_006_target_position_2_3_retrieval_position_1" gabor_086_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_086_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1892 2992 2542 fixation_cross gabor_068 gabor_042 gabor_156 gabor_129 gabor_068_alt gabor_042 gabor_156_alt gabor_129 "2_21_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_068_042_156_129_target_position_1_3_retrieval_position_1" gabor_068_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1992 2992 2592 fixation_cross gabor_009 gabor_127 gabor_148 gabor_168 gabor_009 gabor_127_alt gabor_148_alt gabor_168 "2_22_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_009_127_148_168_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_148_framed gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_123 gabor_142 gabor_101 gabor_176 gabor_123_alt gabor_142 gabor_101_alt gabor_176 "2_23_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_123_142_101_176_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_055_framed gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1992 2992 1942 fixation_cross gabor_160 gabor_072 gabor_052 gabor_093 gabor_160_alt gabor_072 gabor_052 gabor_093_alt "2_24_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_160_072_052_093_target_position_1_4_retrieval_position_1" gabor_160_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1842 2992 2092 fixation_cross gabor_084 gabor_172 gabor_102 gabor_021 gabor_084 gabor_172_alt gabor_102_alt gabor_021 "2_25_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_084_172_102_021_target_position_2_3_retrieval_position_2" gabor_circ gabor_037_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_151 gabor_121 gabor_046 gabor_078 gabor_151_alt gabor_121 gabor_046 gabor_078_alt "2_26_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_151_121_046_078_target_position_1_4_retrieval_position_1" gabor_013_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 2192 2992 1942 fixation_cross gabor_090 gabor_155 gabor_179 gabor_114 gabor_090_alt gabor_155_alt gabor_179 gabor_114 "2_27_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_300_300_399_2200_3000_1950_gabor_patch_orientation_090_155_179_114_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_066_framed blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_066_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_025 gabor_076 gabor_109 gabor_043 gabor_025_alt gabor_076 gabor_109 gabor_043_alt "2_28_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_025_076_109_043_target_position_1_4_retrieval_position_1" gabor_163_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2042 2992 2442 fixation_cross gabor_040 gabor_064 gabor_122 gabor_080 gabor_040_alt gabor_064 gabor_122_alt gabor_080 "2_29_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_040_064_122_080_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_122_framed gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2242 2992 2042 fixation_cross gabor_071 gabor_088 gabor_053 gabor_110 gabor_071 gabor_088_alt gabor_053_alt gabor_110 "2_30_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2050_gabor_patch_orientation_071_088_053_110_target_position_2_3_retrieval_position_2" gabor_circ gabor_136_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1892 2992 2292 fixation_cross gabor_032 gabor_149 gabor_066 gabor_008 gabor_032 gabor_149_alt gabor_066 gabor_008_alt "2_31_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2300_gabor_patch_orientation_032_149_066_008_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_066_framed gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_066_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2192 2992 1992 fixation_cross gabor_021 gabor_049 gabor_001 gabor_111 gabor_021 gabor_049_alt gabor_001_alt gabor_111 "2_32_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_021_049_001_111_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1792 2992 2542 fixation_cross gabor_101 gabor_019 gabor_161 gabor_128 gabor_101 gabor_019 gabor_161_alt gabor_128_alt "2_33_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_101_019_161_128_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_128_framed blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1942 2992 2042 fixation_cross gabor_024 gabor_142 gabor_100 gabor_165 gabor_024_alt gabor_142 gabor_100_alt gabor_165 "2_34_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_024_142_100_165_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_100_framed gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_147 gabor_115 gabor_084 gabor_170 gabor_147 gabor_115_alt gabor_084 gabor_170_alt "2_35_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_147_115_084_170_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_170_framed blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_098 gabor_148 gabor_028 gabor_173 gabor_098 gabor_148_alt gabor_028_alt gabor_173 "2_36_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_098_148_028_173_target_position_2_3_retrieval_position_2" gabor_circ gabor_148_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2092 2992 2442 fixation_cross gabor_155 gabor_093 gabor_011 gabor_069 gabor_155 gabor_093_alt gabor_011 gabor_069_alt "2_37_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_155_093_011_069_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_117_framed blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1942 2992 2292 fixation_cross gabor_142 gabor_023 gabor_175 gabor_057 gabor_142 gabor_023_alt gabor_175 gabor_057_alt "2_38_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_2300_gabor_patch_orientation_142_023_175_057_target_position_2_4_retrieval_position_1" gabor_142_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_142_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_046 gabor_152 gabor_031 gabor_113 gabor_046_alt gabor_152 gabor_031_alt gabor_113 "2_39_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_046_152_031_113_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_031_framed gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_131 gabor_015 gabor_156 gabor_090 gabor_131 gabor_015_alt gabor_156 gabor_090_alt "2_40_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_131_015_156_090_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_090_framed blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2142 2992 2142 fixation_cross gabor_140 gabor_052 gabor_025 gabor_110 gabor_140 gabor_052_alt gabor_025_alt gabor_110 "2_41_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_140_052_025_110_target_position_2_3_retrieval_position_2" gabor_circ gabor_003_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1792 2992 2242 fixation_cross gabor_152 gabor_005 gabor_037 gabor_120 gabor_152_alt gabor_005 gabor_037_alt gabor_120 "2_42_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2250_gabor_patch_orientation_152_005_037_120_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_120_framed blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_120_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1742 2992 2492 fixation_cross gabor_057 gabor_130 gabor_173 gabor_004 gabor_057 gabor_130_alt gabor_173 gabor_004_alt "2_43_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_057_130_173_004_target_position_2_4_retrieval_position_2" gabor_circ gabor_083_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_145 gabor_125 gabor_062 gabor_102 gabor_145_alt gabor_125 gabor_062_alt gabor_102 "2_44_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_145_125_062_102_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_013_framed gabor_circ blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 1992 2992 2492 fixation_cross gabor_112 gabor_142 gabor_097 gabor_027 gabor_112 gabor_142_alt gabor_097_alt gabor_027 "2_45_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_300_300_399_2000_3000_2500_gabor_patch_orientation_112_142_097_027_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_166_framed blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_166_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2042 2992 1892 fixation_cross gabor_043 gabor_100 gabor_020 gabor_127 gabor_043_alt gabor_100 gabor_020_alt gabor_127 "2_46_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_043_100_020_127_target_position_1_3_retrieval_position_1" gabor_043_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1892 2992 2142 fixation_cross gabor_180 gabor_040 gabor_108 gabor_020 gabor_180 gabor_040_alt gabor_108 gabor_020_alt "2_47_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_180_040_108_020_target_position_2_4_retrieval_position_2" gabor_circ gabor_040_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_147 gabor_037 gabor_082 gabor_010 gabor_147_alt gabor_037_alt gabor_082 gabor_010 "2_48_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_147_037_082_010_target_position_1_2_retrieval_position_2" gabor_circ gabor_037_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 2242 2992 1892 fixation_cross gabor_096 gabor_050 gabor_177 gabor_072 gabor_096_alt gabor_050 gabor_177 gabor_072_alt "2_49_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_1900_gabor_patch_orientation_096_050_177_072_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_177_framed gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_177_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2142 2992 2192 fixation_cross gabor_091 gabor_130 gabor_157 gabor_040 gabor_091_alt gabor_130_alt gabor_157 gabor_040 "2_50_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_091_130_157_040_target_position_1_2_retrieval_position_2" gabor_circ gabor_179_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_007 gabor_120 gabor_140 gabor_060 gabor_007 gabor_120_alt gabor_140_alt gabor_060 "2_51_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_007_120_140_060_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_140_framed gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1892 2992 2392 fixation_cross gabor_147 gabor_075 gabor_095 gabor_060 gabor_147 gabor_075_alt gabor_095_alt gabor_060 "2_52_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_147_075_095_060_target_position_2_3_retrieval_position_2" gabor_circ gabor_075_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1742 2992 1942 fixation_cross gabor_093 gabor_149 gabor_060 gabor_111 gabor_093_alt gabor_149_alt gabor_060 gabor_111 "2_53_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_1950_gabor_patch_orientation_093_149_060_111_target_position_1_2_retrieval_position_1" gabor_043_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2242 2992 2142 fixation_cross gabor_164 gabor_087 gabor_131 gabor_041 gabor_164_alt gabor_087 gabor_131 gabor_041_alt "2_54_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_164_087_131_041_target_position_1_4_retrieval_position_1" gabor_164_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2092 2992 2442 fixation_cross gabor_150 gabor_062 gabor_120 gabor_172 gabor_150_alt gabor_062_alt gabor_120 gabor_172 "2_55_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_150_062_120_172_target_position_1_2_retrieval_position_1" gabor_100_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_078 gabor_056 gabor_023 gabor_137 gabor_078 gabor_056_alt gabor_023 gabor_137_alt "2_56_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_078_056_023_137_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_137_framed blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_070 gabor_103 gabor_143 gabor_015 gabor_070_alt gabor_103_alt gabor_143 gabor_015 "2_57_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_070_103_143_015_target_position_1_2_retrieval_position_2" gabor_circ gabor_053_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 1842 2992 2242 fixation_cross gabor_068 gabor_088 gabor_122 gabor_145 gabor_068_alt gabor_088 gabor_122 gabor_145_alt "2_58_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2250_gabor_patch_orientation_068_088_122_145_target_position_1_4_retrieval_position_2" gabor_circ gabor_039_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_039_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_061 gabor_148 gabor_118 gabor_166 gabor_061_alt gabor_148 gabor_118 gabor_166_alt "2_59_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_061_148_118_166_target_position_1_4_retrieval_position_1" gabor_011_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_098 gabor_117 gabor_166 gabor_083 gabor_098_alt gabor_117 gabor_166_alt gabor_083 "2_60_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_098_117_166_083_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_031_framed gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2042 2992 2092 fixation_cross gabor_160 gabor_038 gabor_100 gabor_178 gabor_160 gabor_038 gabor_100_alt gabor_178_alt "2_61_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_160_038_100_178_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_100_framed gabor_circ blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 2192 2992 2542 fixation_cross gabor_088 gabor_004 gabor_128 gabor_169 gabor_088 gabor_004 gabor_128_alt gabor_169_alt "2_62_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2550_gabor_patch_orientation_088_004_128_169_target_position_3_4_retrieval_position_1" gabor_088_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_088_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2242 2992 2592 fixation_cross gabor_014 gabor_098 gabor_044 gabor_176 gabor_014_alt gabor_098 gabor_044_alt gabor_176 "2_63_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_014_098_044_176_target_position_1_3_retrieval_position_1" gabor_060_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_035 gabor_011 gabor_167 gabor_058 gabor_035_alt gabor_011 gabor_167_alt gabor_058 "2_64_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_035_011_167_058_target_position_1_3_retrieval_position_1" gabor_035_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2092 2992 1992 fixation_cross gabor_010 gabor_149 gabor_126 gabor_039 gabor_010 gabor_149_alt gabor_126_alt gabor_039 "2_65_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2000_gabor_patch_orientation_010_149_126_039_target_position_2_3_retrieval_position_2" gabor_circ gabor_099_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_099_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1942 2992 2342 fixation_cross gabor_044 gabor_164 gabor_134 gabor_112 gabor_044_alt gabor_164 gabor_134_alt gabor_112 "2_66_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_2350_gabor_patch_orientation_044_164_134_112_target_position_1_3_retrieval_position_2" gabor_circ gabor_164_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_164_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2142 2992 2392 fixation_cross gabor_095 gabor_140 gabor_161 gabor_111 gabor_095_alt gabor_140_alt gabor_161 gabor_111 "2_67_Encoding_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_095_140_161_111_target_position_1_2_retrieval_position_1" gabor_095_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P7_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2192 2992 2342 fixation_cross gabor_122 gabor_062 gabor_036 gabor_082 gabor_122 gabor_062_alt gabor_036_alt gabor_082 "2_68_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_122_062_036_082_target_position_2_3_retrieval_position_2" gabor_circ gabor_014_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_084 gabor_168 gabor_099 gabor_012 gabor_084_alt gabor_168 gabor_099_alt gabor_012 "2_69_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_084_168_099_012_target_position_1_3_retrieval_position_1" gabor_039_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 1842 2992 2142 fixation_cross gabor_112 gabor_031 gabor_157 gabor_173 gabor_112 gabor_031_alt gabor_157_alt gabor_173 "2_70_Encoding_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2150_gabor_patch_orientation_112_031_157_173_target_position_2_3_retrieval_position_1" gabor_067_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P7_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_067_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
26df30ce83584ca2de6852533fd616f5647c96dc
449d555969bfd7befe906877abab098c6e63a0e8
/1967/CH14/EX14.4/14_4.sce
a5688966e3f36263e758c315273409115b395e24
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
14_4.sce
clc //initialisation of variables clear T1= 20 //C T2= 80 //C H1= 4540 //cal mole^-1 //CALCULATIONS n= 10^(H1*(-T2+T1)/(4.576*(273+T1)*(273+T2))) //RESULTS printf ('ideal solubility of napthalene = %.3f ',n)
30378893774fb37efb34255b9ce4e19d213e3599
1485852dd59aafc286600126cf832a32e10f117f
/tests/rgb2gray/test6.sce~
17897c058b16135cbf85b1c00805e140435840e4
[]
no_license
rg77/Scilab-Image-Processing-And-Computer-Vision-Toolbox
dec9fbbce32cfd1eab3c45ccb29c89aaa1384758
8adb116da3a9c29a32e5e0727105aff571e5b374
refs/heads/master
2020-12-02T16:14:45.282650
2017-07-07T10:12:04
2017-07-07T10:12:04
96,524,257
0
0
null
2017-07-07T09:43:50
2017-07-07T09:43:50
null
UTF-8
Scilab
false
false
82
test6.sce~
src = imread("../images/regionFill_test3.jpg"); gray=rgb2gray(src); imshow(gray);
1d90ca49f3a999ffab1e964e92cce114acb29010
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/EC45.prev.tst
ee6d4fe79f1ee7c8fa3c9c6fc9a062eef5aec5fe
[ "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
156
tst
EC45.prev.tst
[[-5,-6,1,-2],[12,14,-3,4],[-1,-1,0,0],[3,4,-1,1]],fraction=1,det=1 is inverse of [[1,1,0,-2],[-1,-1,-1,2],[-2,-1,-2,0],[-1,0,2,-1]],det=1,identity = true
49501d65e3b932c9476c74f0b3dfc96214a3ddd2
449d555969bfd7befe906877abab098c6e63a0e8
/343/CH3/EX3.5/ex3_5.sce
a4c6d55f7ae12e068b6ac56237237f0ff7b46379
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
568
sce
ex3_5.sce
clc l=50 //Assigning values to parameters w=800 c=50 xl=w*l xc=1/(w*c) z1=0+%i*40 z2=50 z3=0-%i*25 zph=z1+z2*z3/(z2+z3) [r,t]=polar(zph) vl=550 vph=vl iph=vph/zph il=sqrt(3)*iph p=sqrt(3)*vl*il*cos(t) pf=cos(t) q=sqrt(3)*vl*il*sin(t) s=sqrt(3)*vl*il disp("Amperes",polar(iph),"The phase current is") disp("Amperes",polar(il),"The line current is") disp("watts",polar(p),"The power drawn is") disp(polar(pf),"The power factor is") disp("watts",polar(q),"The reactive power is") disp("KVA",polar(s),"The kva rating of load is")
cf982c31b2519d1ef49f3254d84dd0025f98027b
717ddeb7e700373742c617a95e25a2376565112c
/3044/CH14/EX14.8/Ex14_8.sce
9b6cf8086de6ece88892122b6c4fdf87c42ba063
[]
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
434
sce
Ex14_8.sce
// Variable declaration alpha = 0.05 // level of significance x = [2.4,4.4,4.8,6.2,14.8,19.5,23.1,25.0,28.2,28.7] n = 10 l = [] // Calculation A_sq = 0 for i = 1:10 l(i) = (x(i)/30) end for i = 1:10 A_sq = A_sq + (2*i-1)*(log(l(i)) + log(1 - l(n-i+1))) end A_sq = (-A_sq)/n - n // Result printf ( "A square value: %.4f",A_sq) printf ( "As A_sq is large, We can not reject Null hypothesis")
5535e2ea4ec551dfb53df35692de01155bc6d237
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH13/EX13.20/13_20.sce
c9542b71eee18dcd7b8e7171eee9c98dd7c18ec1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
602
sce
13_20.sce
//Problem 13.20: The circuit diagram of Figure 13.48 shows dry cells of source e.m.f. 6 V, and internal resistance 2.5 ohm. If the load resistance RL is varied from 0 to 5 ohm in 0.5 ohm steps, calculate the power dissipated by the load in each case. Plot a graph of RL (horizontally) against power (vertically) and determine the maximum power dissipated. //initializing the variables: V = 6; // in volts r = 2.5; // in ohms //calculation: RL=(0:0.5:5)'; function [y]=f(RL) y = RL*(V/(r + RL))^2; endfunction fplot2d(RL, f) xtitle("graph of (RL) against power(P)", "RL(ohm)", "P(W)")
4cc2e9c479278784c9d0c39968b970650dcd55fd
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/FortBox Tracking.sce
88694add387b19fec1311fce4c82c22ca1a6eaa5
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
22,937
sce
FortBox Tracking.sce
Name=FortBox Tracking PlayerCharacters=Player BotCharacters=Pigeon Jumper.bot IsChallenge=true Timelimit=60.0 PlayerProfile=Player AddedBots=Pigeon Jumper.bot;Pigeon Jumper.bot;Pigeon Jumper.bot PlayerMaxLives=0 BotMaxLives=0;0;0 PlayerTeam=1 BotTeams=2;2;2 MapName=box_v4.map MapScale=3.15 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=0.75 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1.0 ScorePerDamage=0.0 ScorePerKill=1.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Fortnite, TPS, Tracking WeaponHeroTag=AR, SMG DifficultyTag=2 AuthorsTag=Tee7even BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=false BlockFCT=true Description=FortBox, but with a tracking weapon and targets that live longer GameVersion=2.0.1.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false LockFOVRange=false LockedFOVMin=80.0 LockedFOVMax=80.0 LockedFOVScale=Clamped Horizontal [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=Pigeon Jumper DodgeProfileNames=Long Strafes Jumping DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Clay Pigeon SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=Player MaxHealth=100.0 WeaponProfileNames=Head Tracker;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=0.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=10.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=800.0 MaxCrouchSpeed=0.0 Acceleration=5000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=0.0 AirControl=0.0 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=300.0 MainBBRadius=45.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=300.0 ProjBBRadius=45.0 ProjBBHasHead=false ProjBBHeadRadius=0.1 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=true TPSArmLength=450.0 TPSOffset=X=0.000 Y=65.000 Z=105.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=-390.0 TerminalVelocity=0.0 CharacterModel=Ecto CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Clay Pigeon MaxHealth=5.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.001 MaxRespawnDelay=0.001 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=1000.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=4.0 JumpVelocity=1750.0 Gravity=3.0 AirControl=0.2 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Spheroid MainBBHeight=150.0 MainBBRadius=20.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=50.0 ProjBBRadius=25.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.05 StrafeSpeedMult=1.2 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=10.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=Long Strafes Jumping MaxTargetDistance=3000.0 MinTargetDistance=500.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.5 MaxLRTimeChange=3.0 MinFBTimeChange=0.5 MaxFBTimeChange=1.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.5 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.00001 MaxJumpTime=0.00001 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Weapon Profile] Name=Head Tracker Type=Hitscan ShotsPerClick=1 DamagePerShot=1.0 KnockbackFactor=4.0 TimeBetweenShots=0.03 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.05 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=70.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.1 IncReloadLoopTime=0.1 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.1 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=false 3rdPersonWeaponModel=SMG 3rdPersonWeaponSkin=Default ParticleMuzzleFlash= ParticleWallImpact= ParticleBodyImpact= ParticleProjectileTrail= ParticleHitscanTrace=None ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=0.0,1.0,0.0,0.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=0.0,1.0,0.0,0.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn brush vertices -91.466667 -76.000000 112.000000 -91.466667 96.000000 112.000000 -91.466667 96.000000 -128.000000 -91.466667 -76.000000 -128.000000 -80.000000 96.000000 -128.000000 -80.000000 -76.000000 -128.000000 -80.000000 -76.000000 112.000000 -80.000000 96.000000 112.000000 faces 0.000000 0.000000 2.000000 1.433334 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 1.433334 -1.433334 90.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 90.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 90.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 1.433334 -1.433334 90.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 1.433334 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -80.000000 -90.000000 112.000000 -80.000000 -74.000000 112.000000 -80.000000 -74.000000 -128.000000 -80.000000 -90.000000 -128.000000 160.000000 -74.000000 -128.000000 160.000000 -90.000000 -128.000000 160.000000 -90.000000 112.000000 160.000000 -74.000000 112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices 160.000000 -76.000000 112.000000 160.000000 96.000000 112.000000 160.000000 96.000000 -128.000000 160.000000 -76.000000 -128.000000 171.466667 96.000000 -128.000000 171.466667 -76.000000 -128.000000 171.466667 -76.000000 112.000000 171.466667 96.000000 112.000000 faces 0.000000 0.000000 2.000000 1.433334 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 1.433334 -1.433334 90.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 90.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 90.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 1.433334 -1.433334 90.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 1.433334 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -80.000000 -76.000000 123.466667 -80.000000 96.000000 123.466667 -80.000000 96.000000 112.000000 -80.000000 -76.000000 112.000000 160.000000 96.000000 112.000000 160.000000 -76.000000 112.000000 160.000000 -76.000000 123.466667 160.000000 96.000000 123.466667 faces 0.000000 0.000000 1.433334 1.433334 90.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 1.433334 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 1.433334 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 1.433334 1.433334 90.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -80.000000 -76.000000 -128.000000 -80.000000 96.000000 -128.000000 -80.000000 96.000000 -139.466667 -80.000000 -76.000000 -139.466667 160.000000 96.000000 -139.466667 160.000000 -76.000000 -139.466667 160.000000 -76.000000 -128.000000 160.000000 96.000000 -128.000000 faces 0.000000 0.000000 1.433334 1.433334 90.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 1.433334 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 1.433334 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 1.433334 1.433334 90.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -80.000000 223.000000 112.000000 -80.000000 239.000000 112.000000 -80.000000 239.000000 -128.000000 -80.000000 223.000000 -128.000000 160.000000 239.000000 -128.000000 160.000000 223.000000 -128.000000 160.000000 223.000000 112.000000 160.000000 239.000000 112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -91.466667 -76.000000 112.000000 -91.466667 224.000000 112.000000 -91.466667 224.000000 -128.000000 -91.466667 -76.000000 -128.000000 -80.000000 224.000000 -128.000000 -80.000000 -76.000000 -128.000000 -80.000000 -76.000000 112.000000 -80.000000 224.000000 112.000000 faces 0.000000 0.000000 2.000000 2.500000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.500000 -1.433334 90.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 90.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 90.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.500000 -1.433334 90.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.500000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -80.000000 -90.000000 112.000000 -80.000000 -74.000000 112.000000 -80.000000 -74.000000 -128.000000 -80.000000 -90.000000 -128.000000 160.000000 -74.000000 -128.000000 160.000000 -90.000000 -128.000000 160.000000 -90.000000 112.000000 160.000000 -74.000000 112.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices 160.000000 -76.000000 112.000000 160.000000 224.000000 112.000000 160.000000 224.000000 -128.000000 160.000000 -76.000000 -128.000000 171.466667 224.000000 -128.000000 171.466667 -76.000000 -128.000000 171.466667 -76.000000 112.000000 171.466667 224.000000 112.000000 faces 0.000000 0.000000 2.000000 2.500000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.500000 -1.433334 90.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 90.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 90.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.500000 -1.433334 90.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.500000 0.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -80.000000 -76.000000 123.466667 -80.000000 224.000000 123.466667 -80.000000 224.000000 112.000000 -80.000000 -76.000000 112.000000 160.000000 224.000000 112.000000 160.000000 -76.000000 112.000000 160.000000 -76.000000 123.466667 160.000000 224.000000 123.466667 faces 0.000000 0.000000 2.500000 1.433334 90.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.500000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.500000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.500000 1.433334 90.000000 4 7 6 5 0x00000000 __TB_empty brush vertices -80.000000 -76.000000 -128.000000 -80.000000 224.000000 -128.000000 -80.000000 224.000000 -139.466667 -80.000000 -76.000000 -139.466667 160.000000 224.000000 -139.466667 160.000000 -76.000000 -139.466667 160.000000 -76.000000 -128.000000 160.000000 224.000000 -128.000000 faces 0.000000 0.000000 2.500000 1.433334 90.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.500000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 0.000000 5 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -1.433334 0.000000 1 7 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.500000 0.000000 6 7 1 0 0x00000000 __TB_empty 0.000000 0.000000 2.500000 1.433334 90.000000 4 7 6 5 0x00000000 __TB_empty entity type PlayerSpawn Vector3 position 128.000000 -20.000000 -96.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 48.000000 -20.000000 0.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position -48.000000 -20.000000 80.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -48.000000 -20.000000 -96.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 128.000000 -20.000000 80.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 128.000000 -20.000000 -96.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 48.000000 -20.000000 0.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position -48.000000 -20.000000 80.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position -48.000000 -20.000000 -96.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 128.000000 -20.000000 80.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0