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
7577334eb71ce198b2bfa88eba5a38efd3ca6157
449d555969bfd7befe906877abab098c6e63a0e8
/2213/CH4/EX4.11/ex_4_11.sce
e02a77ff2a695755325f4d121ac9d4965a53fde8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
431
sce
ex_4_11.sce
//Example 4.11 //total flux and average luminane of the sphere clc; clear; close; format('v',6) th=15;//in degree l=400;//candela d=8;// meter p=0.80;//in percentage absorption Fe=p*4*%pi*l;// flux emitted by the globe in lumens dA=d*tand(th/2);//diameter in degree sa=%pi*(dA)^2;//surface area in m^2 als=Fe/sa;//average lumninance of sphere in lux disp(Fe,"total flux in lumens") disp(als,"average lumninance of sphere in lux")
f9914034801ae56119a2699cd43c85a2b2366552
449d555969bfd7befe906877abab098c6e63a0e8
/2090/CH10/EX10.4/Chapter10_example4.sce
8b93d9cdc806d1d8b59d372e431da0df3a735234
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
866
sce
Chapter10_example4.sce
clc clear //Input data s=20;//Spray penetration in cm t1=15.7;//The spray penetration of 20 cm in ms pi1=150;//The injection pressure in bar pi2=450;//The injection pressure to be used in bar p2=15;//The combustion chamber pressure in bar d1=0.34;//The diameter of the orifice in mm s1=20;//The penetration for an orifice in cm d2=0.17;//If the diameter of the orifice in cm t11=12;//The spray penetration in ms //Calculations t2=(t1*(pi1-p2)^(1/2))/(pi2-p2)^(1/2);//The time required for the spray to penetrate in ms s2=d2*(s1/d1);//The penetration of the orifice in cm t21=t11*(d2/d1);//The time required for the spray to penetrate in ms //Output printf('(a) The time required for the spray to penetrate = %3.2f ms \n (b) The spray penetration of the orifice = %3.0f cm \n The time required for the spray to penetrate = %3.0f ms ',t2,s2,t21)
9719f2fbd91eb1e9ba2be825c0621c87e27cf237
38e8e14fb76356e30e0514d57850ba6793381836
/TP1_Exercice4.sce
7e19fb21015ad470b79ab1a7c06ef053d75bb6cc
[]
no_license
VCOUTURIER-MADNOT/Maths
d2bcf7d0c923f5ad97f1bf79c22f62ef76f95340
7dd5fcce241a9d01de3cbe3541f0fafd76237c05
refs/heads/master
2020-04-15T22:49:40.613661
2013-10-24T16:16:00
2013-10-24T16:16:00
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
148
sce
TP1_Exercice4.sce
function [x] = fourierGibbs(t, N) x = zeros(t); for p = 0:N x = x + (1/(2*(p+1))) * sin((2*p + 1) *t); end x = 4/%pi * x endfunction
0fd5755974fd024683731bea27e4818365656ec5
449d555969bfd7befe906877abab098c6e63a0e8
/773/CH17/EX17.11/17_11.sci
2a599a04db87641d00c4044d45e67c381111c9c4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
605
sci
17_11.sci
//function// A=[0 1;-6 -5] x=[1;0]; disp(x,"x(t)=') s=poly(0,'s'); [Row Col]=size(A) //Size of a matrix m=s*eye(Row,Col)-A //sI-A n=det(m) //To Find The Determinant of si-A p=inv(m) ; // To Find The Inverse Of sI-A syms t s; disp(p,"phi(s)=") //Resolvent Matrix for i=1:Row for j=1:Col //Taking Inverse Laplace of each element of Matrix phi(s) q(i,j)=ilaplace(p(i,j),s,t); end; end; disp(q,"phi(t)=")//State Transition Matrix r=inv(q); r=simple(r); //To Find phi(-t) disp(r,"phi(-t)=") y=q*x; //x(t)=phi(t)*x(0) disp(y,"Solution To The given eq.=")
c1821f8252e1deba2df77d0ff2ca4d8a5de1f87c
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/macros/percent/%s_f_r.sci
5ef6c1ee9e5cd5db091d23207df3d674a44652f3
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
104
sci
%s_f_r.sci
function f=%s_f_r(m,f) // [m;f] //! // Copyright INRIA f=rlist([m;f('num')],[ones(m);f('den')],f('dt'))
3dd8662ef5b369c01d94735ba14aa5413b26ffa1
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/tests/examples/zeros.man.tst
f1fd3afb7edcaef31c1d58303a194f8964238502
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
36
tst
zeros.man.tst
clear;lines(0); zeros(3) zeros(3,3)
8597ae34c6e44eee2f91e55238548f7f69eb81c1
449d555969bfd7befe906877abab098c6e63a0e8
/1055/CH24/EX24.4/ch24_4.sce
4387211338416dd0f70a9557a729c9d5597c4639
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,108
sce
ch24_4.sce
// illustrate the dynamic programming for preparing an optimal unit commitment. clear clc; function[F1]=F1(P1) F1=7.1*P1+.00141*(P1^2) mprintf("F1(%.0f)=%.1f\n",P1,F1); endfunction function[f2]=f2(P2) f2=7.8*P2+.00195*(P2^2) mprintf("f2(%.0f)=%.0f\n",P2,f2); endfunction function[F]=F(P1,P2) F1=7.1*P1+.00141*(P1^2) F2=7.8*P2+.00195*(P2^2) F=F1+F2 mprintf("F1(%.0f)+f2(%.0f)=%.0f\n",P1,P2,F); endfunction P1max=600; P2max=450; mprintf("Unit Commitment using Load 500MW\n") F1(500); mprintf("Since min. Power of second unit is 100MW , we find\n"); F(400,100); F(380,120); F(360,140); mprintf("Therefore for load 500 MW , the load commitment on unit 1 is 400 MW and that on 2 is 100 MW which gives min. cost\n"); mprintf("Next we increase the load by 50 MW and loading unit 1 we get, \n"); F1(550); mprintf("Also if we distribute a part of load to unit 2 we get ,\n") F(450,100); F(400,150); F(350,200); mprintf("Therefore for load 550 MW , the load commitment on unit 1 is 400 MW and that on 2 is 150 MW which gives min. cost\n");
fc06b0dc3b59154e8d4196f7f333106a34fd3d43
7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2
/Scilab/virtual/2dof_controller/dc/ident/scilab/pacf.sci
a4a066149de9693b51aed2c4359872be6341ff05
[]
no_license
advait23/sbhs-manual
e2c380051117e3a36398bb5ad046781f7b379cb9
d65043acd98334c44a0f0dbf480473c4c4451834
refs/heads/master
2021-01-16T19:50:40.218314
2012-11-16T04:11:12
2012-11-16T04:11:12
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
507
sci
pacf.sci
// Updated(4-8-07) // 6.10 function [ajj] = pacf(v,M) [rvv,rvvn] = xcovz(v); // Normalized len = length(rvvn); zero = (len+1)/2; rvvn0 = rvvn(zero); rvvn_one_side = rvvn(zero+1:len); ajj = []; getf pacf_mat.sci; for j = 1:M, ajj = [ajj pacf_mat(rvvn0,rvvn_one_side,j,1)]; end p = 1:length(ajj); N = length(p); lim = 2/sqrt(length(v)); // Plot the figure plot(p,ajj,p,ajj,'o',p,lim*ones(N,1),'--',... p,-lim*ones(N,1),'--'); label('',4,'Lag','PACF',4); endfunction;
03170386761e136f680867e02c06c457ec25375e
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH3/EX3.17/Ex3_17.sce
f232296ec64a5c058700a99cf44483d9a42b1459
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
353
sce
Ex3_17.sce
//Reactions developed in cantilever beam //Refer fig. 3.44 (a)&(b) //assumptions are made as shown in fig. 3.44 (a)&(b) //applying equilibrium conditions VA=15+(10*2)+(20*sind(60)) //kN HA=20*cosd(60) //kN //Taking moment about A MA=10*2*1+20*2*sind(60)+15*3 //kN-m printf("Required values:-\nVA=%.2f kN\nHA=%.2f kN\nMA=%.2f kN-m",VA,HA,MA)
e609e62fcef8f82eddbe0daa615c866cf841f940
449d555969bfd7befe906877abab098c6e63a0e8
/839/CH10/EX10.5/Example_10_5.sce
df4ce5e9fd0375ad2c5b1c98d147a45fd398449c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
356
sce
Example_10_5.sce
//clear// clear; clc; //Example 10.5 //Given Ts = -20; //[C] Ta = 5; //[C] T = 0; //[C] t = 12; //[h] alpha = 0.0011; //[m^2/h] //(a) Temp_diff_ratio = (Ts-T)/(Ts-Ta); //From Fig.(10.8), Z = 0.91; //therefore depth x = Z*2*sqrt(alpha*t) //[m] //(b) //From Eq.(10.27), the penetration distance is x_rho = 3.64*sqrt(alpha*t) //[m]
c80cb6dce92d20dfcc1d5f359b7f79cf9e5af9af
449d555969bfd7befe906877abab098c6e63a0e8
/2240/CH34/EX33.19/EX33_19.sce
ba1dc1cd9047b3af8c12abe48013e027286e2165
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
340
sce
EX33_19.sce
// Grob's Basic Electronics 11e // Chapter No. 33 // Example No. 33_19 clc; clear; // Calculate the cutoff frequency, fc. // Given data Ri = 1*10^3; // Input resistance=10 kOhms Ci = 0.1*10^-6; // Input capacitance=0.01 uFarad fc = 1/(2*%pi*Ri*Ci); disp (fc,'The Cutoff Frequency in Hertz') disp ('i.e 1.591 kHz')
d9a6ac0188a3240e1d44126e0701c205f0910e57
449d555969bfd7befe906877abab098c6e63a0e8
/770/CH2/EX2.3/2_3.sce
04bfcc746b38d0fa60fe7116c410b050947fb000
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
625
sce
2_3.sce
clear; clc; //Example - 2.3 //Page number - 42 printf("Example - 2.3 and Page number - 42\n\n"); //Given //log10(Psat)=8.1122-(1592.864/(t+226.184))// 'Psat' in [mm Hg] and 't' in [c] Tc = 513.9;//[K] - Critical temperature Pc = 61.48;//[bar] - Critical pressure Pc = Pc*10^(5);//[N/m^(2)] Tr = 0.7;// Reduced temperature T = Tr*Tc;//[K] - Temperature T = T - 273.15;//[C] P_sat = 10^(8.1122 - (1592.864/(T + 226.184)));//[mm Hg] P_sat = (P_sat/760)*101325;//[N/m^(2)] Pr_sat = P_sat/Pc; w = -1-log10(Pr_sat);// Acentric factor printf(" The acentric factor (w) for ethanol at given condition is %f",w);
c37687805de70a7e80591a4c0d5fd9644dc73d40
449d555969bfd7befe906877abab098c6e63a0e8
/3831/CH7/EX7.4/Ex7_4.sce
e68d41c10c53ec2b205b7a4f90fb236b93c1c79f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
406
sce
Ex7_4.sce
// Example 7_4 clc;funcprot(0); // Given data m=1.5;// kg x_1=0;// The dryness fraction T_1=20.0;// °C p_1=0.10;// MPa p_2=0.10;// MPa c=4.19;// kJ/kg.°C // Solution T_2=T_1;// °C deltaS=c*log(T_2/T_1);// kJ/kg.K printf('\nThe change in specific entropy of the water,s_2-s_1=%0.0f.Consequently, the entropy of an incompressible material is not altered by changing its pressure.',deltaS);
3394a628e8e784237a28d72e0bc3c2b9224207fe
449d555969bfd7befe906877abab098c6e63a0e8
/213/CH10/EX10.5/10_5.sce
008730c570d670d0cca6a06adb4be3afa4f3a3be
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
586
sce
10_5.sce
//To find the torque required clc //Given: D=150/1000 //m ps=2*10^6 //N/m^2 d0=50,p=6 //mm mu=0.12 //Solution: //Calculating the load on the valve W=ps*%pi/4*D^2 //N //Calculating the mean diameter of the screw d=(d0-p/2)/1000 //m //Calculating the helix angle alpha=atan(p/(%pi*d*1000)) //Calculating the force required to turn the handle phi=atan(mu) //Limiting angle of friction, radians P=W*tan(alpha+phi) //N //Calculating the torque required to turn the handle T=P*d/2 //N-m //Results: printf("\n\n The torque required to turn the handle, T = %.1f N-m.\n\n",T)
7d9b328ca30f3c2a87284cfa925ac3ee643bc59b
449d555969bfd7befe906877abab098c6e63a0e8
/1640/CH1/EX1.9/1_9.sce
59b35ced802872e30f93a9a6b7c195cd4463cadb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
176
sce
1_9.sce
clc //initialisation of variables l= 2 //ft b= 3 //ft h= 8 //ft w= 62.4 //lbs/ft^3 //CALCULATIONS P= w*l*b*(h+(b/2)) //RESULTS printf ('total pressure = %.f lb ',P)
b1ec4c15cbae93a0f7effe827a741633315db07c
d65667bd6da157e725e5083a95c7a5e3c5e50371
/hdf5/.svn/pristine/b1/b1ec4c15cbae93a0f7effe827a741633315db07c.svn-base
49ce52f2c7ef0f989e1f5ab4881e91d66a68cb41
[]
no_license
DCC-Lab/Umuco
4748640ddd5869f193303057445fccbf2e1cc6c5
41c38cd6c8e8d771708959eb02c9dee054148cbc
refs/heads/master
2020-08-07T01:11:31.456247
2019-02-24T18:16:16
2019-02-24T18:16:16
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
76
b1ec4c15cbae93a0f7effe827a741633315db07c.svn-base
Filter type is: H5Z_FILTER_DEFLATE_F Maximum value in DS1 is: 1890
f25079ea2da6babd7a797267baa323c270375f6b
449d555969bfd7befe906877abab098c6e63a0e8
/2863/CH4/EX4.13/ex4_13.sce
680cc5eee215fc078baa8f60515987b6a3608148
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex4_13.sce
//chapter 4 //end fire array printf("\n"); n=10; d=0.25; lamda=1;//assume Gdmax=4*n*d; Gdmaxdb=10*log10(Gdmax); printf("the directive gian is %d",Gdmax); printf("\nthe directive gain in db is %ddb",Gdmaxdb);
b9e8eebc518e7d080a5d64f4022d120cefc34d0a
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4.1/examples/addinter-examples/ex7f.sce
582ce33d6ec5c1cacc9d6bda8b1d500a91bad142
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
309
sce
ex7f.sce
// Copyright INRIA files=G_make(['/tmp/ex7fi.o'],'ex7f.dll'); addinter(files,'intex7','pipo'); //pipo(2) ==> error since g_abs is not defined deff('z=g_abs(x)','z=abs(x)+a') //Now g_abs is defined a=33; y=pipo(33)-34; //goes into Fortran interface ex7fi which calls g_abs if y<>32 then pause,end
64f5b7f6aa0196b4bdcac0b886655ab75f468fa7
449d555969bfd7befe906877abab098c6e63a0e8
/2855/CH1/EX1.7/Ex1_7.sce
6130a7d1a9b93faff364ff9897df4e21e426fa3d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
436
sce
Ex1_7.sce
//Ex1_7 //given //page no 12 clc; clear; disp('Solution (i)'); c=3*10^8; //in m/s speed of light l=640; //in nm u=2.2*10^8; //in m/s lm=u*l/c; //wavelenth in medium printf("\n The wavelength is %0.1f nm\n",lm);// The answer in the book is misprinted disp('Solution (ii)'); n=l/lm; //refractive index printf("\n Refractive Index is %0.3f \n",n);//The answer in the book is misprinted
fefb4c251715fd7f3a591aad5ed5121e849480ff
417f69e36190edf7e19a030d2bb6aa4f15bb390c
/SMTTests/tests/ok_setLogic_QF_AUFLIA.tst
018b8c71dc20a487490d8a87a2c497ae5b4e7240
[]
no_license
IETS3/jSMTLIB
aeaa7ad19be88117c7454d807a944e8581184a66
c724ac63056101bfeeb39cc3f366c8719aa23f7b
refs/heads/master
2020-12-24T12:41:17.664907
2019-01-04T10:47:43
2019-01-04T10:47:43
76,446,229
1
0
null
2016-12-14T09:46:41
2016-12-14T09:46:41
null
UTF-8
Scilab
false
false
52
tst
ok_setLogic_QF_AUFLIA.tst
; testing loading QF_AUFLIA (set-logic QF_AUFLIA )
c97d843cd87d69baf6b9428367d2dd075384ea29
717ddeb7e700373742c617a95e25a2376565112c
/608/CH36/EX36.13/36_13.sce
144c51540ecdee2a06fa58aa6e44e5a78650be29
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
1,567
sce
36_13.sce
//Problem 36.13: In the circuit shown in Figure 36.17 the supply voltage v is given by v = 300sin314t + 120sin(942t + 0.698) Volts.Determine (a) an expression for the supply current, i, (b) the percentage harmonic content of the supply current, (c) the total power dissipated, (d) an expression for the p.d. shown as v1, and (e) an expression for current ic. //initializing the variables: V1m = 300; // in volts V3m = 120; // in volts phiv1 = 0; // in rad phiv2 = 0.698; // in rad w1 = 314; // in rad C = 2.123E-6; // in farads R1 = 560; // in ohms R2 = 2000; // in Ohm //calculation: //voltage V1 = V1m*cos(phiv1) + %i*V1m*sin(phiv1) V3 = V3m*cos(phiv3) + %i*V3m*sin(phiv3) //capacitive reactance, Xc1 = 1/(w1*C) //impedance at the fundamental frequency, Z1 = R1 + %i*Xc1*R2/(R2 + %i*Xc1) //Maximum current at fundamental frequency I1m = V1/Z1 I1mag = (real(I1m)^2 + imag(I1m)^2)^0.5 phii1 = atan(imag(I1m)/real(I1m)) //Third harmonic Xc3 = Xc1/3 //impedance at the third harmonic frequency, Z3 = R1 + %i*Xc3*R2/(R2 + %i*Xc3) //Maximum current at third harmonic frequency I3m = V3/Z3 I3mag = (real(I3m)^2 + imag(I3m)^2)^0.5 phii3 = atan(imag(I3m)/real(I3m)) //Percentage harmonic content of the supply current is given by percent = I3mag*100/I1mag //total active power P = (0.707*V1m)*(0.707*I1mag)*cos(phiv1 - phii1) + (0.707*V3m)*(0.707*I3m)*cos(phiv3 - phii3) printf("\n\n Result \n\n") printf("\n(b)Percentage harmonic content of the supply current is %.0f percent",percent) printf("\n(c)total active power is %.2f W",P)
45de3e17bbebabca4e400204454aae345f07a600
449d555969bfd7befe906877abab098c6e63a0e8
/2438/CH9/EX9.1/Ex9_1.sce
42121b14fb647e878104f2facefbf276bd18ba48
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
819
sce
Ex9_1.sce
//========================================================================================= // chapter 9 example 1 clc clear // Variable declaration F = 8482; // Tensile force in newtons lo = 0.30; // length of steel wire in cm Y = 207*10^9; // Youngs modulus of steel Gpa r = 3*10^-3; // radius of steel wire in m v = 0.30; // poisson ratio // Calculations dl = (F*lo)/(Y*%pi*r^2); // elongation in mm e1 = dl/lo // longitudanl strain e2 = v*e1 // lateral strain dr = e2*r; // lateral contraction in m // Result mprintf('Elongation = %3.3f mm\n Lateral contraction = %3.1f um',dl/10^-3,dr/10^-6); //=============================================================================================
f50c4423e3c114b20c70df383f3c3f43e13dbb02
449d555969bfd7befe906877abab098c6e63a0e8
/61/CH12/EX12.12/ex12_12.sce
c13abd458a22a2c0accac4f1bf99c3842962c7bc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex12_12.sce
//ex12.12 BW=3*10^6; //unity gain bandwidth A_ol=100; //open loop gain disp("non-inverting amplifier") R_f=220*10^3; R_i=3.3*10^3; A_cl=1+(R_f/R_i); //closed loop gain BW_cl=BW/A_cl; disp(BW_cl,'closed loop bandwidth in hertz') disp("inverting amplifier") R_f=47*10^3; R_i=1*10^3; A_cl=-R_f/R_i; BW_cl=BW/(abs(A_cl)); disp(BW_cl,'closed loop bandwidth in hertz')
563f032dabe341e0726730c96173202bb7d9fd0e
20392bee9b9ba080dc86418049e09f82be683a14
/Design_Experiment_1/MUX8WAY16.tst
521e77bf17e69aa54041f8110f82a39c07cd5456
[]
no_license
Liveitabhi/CSD-LAB
698645e3fee27fadc70979c6c64d7de13c58ffbd
e91c386c9d575fcced2f5163eea958033ca1e245
refs/heads/master
2023-01-23T05:31:42.301079
2020-12-09T08:52:58
2020-12-09T08:52:58
298,178,775
0
0
null
null
null
null
UTF-8
Scilab
false
false
872
tst
MUX8WAY16.tst
load MUX8WAY16.hdl, output-file MUX8WAY16.out, compare-to MUX8WAY16.cmp, output-list x1%B1.16.1 x2%B1.16.1 x3%B1.16.1 x4%B1.16.1 x5%B1.16.1 x6%B1.16.1 x7%B1.16.1 x8%B1.16.1 s%B2.3.2 z%B1.16.1; set x1 0, set x2 0, set x3 0, set x4 0, set x5 0, set x6 0, set x7 0, set x8 0, set s 0, eval, output; set s 1, eval, output; set s 2, eval, output; set s 3, eval, output; set s 4, eval, output; set s 5, eval, output; set s 6, eval, output; set s 7, eval, output; set x1 %B0001001000110100, set x2 %B0010001101000101, set x3 %B0011010001010110, set x4 %B0100010101100111, set x5 %B0101011001111000, set x6 %B0110011110001001, set x7 %B0111100010011010, set x8 %B1000100110101011, set s 0, eval, output; set s 1, eval, output; set s 2, eval, output; set s 3, eval, output; set s 4, eval, output; set s 5, eval, output; set s 6, eval, output; set s 7, eval, output;
81be67b06310ba604c10336a45f92f74a9bd16f3
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH6/EX6.a.8/Example_a_6_8.sce
a7276479475f30a5b0b952c509ee37af2e7b18c1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
833
sce
Example_a_6_8.sce
//Example_a_6_8 page no:238 clc; X2=sqrt((16.67^2)-(10^2)); V=100; Imag=6; pf=450/600; theta=acosd(pf); Iang=theta; Vmag=Imag*16.66; Vang=-41.4+53.1; Vreal=Vmag*cosd(Vang); Vimag=Vmag*sind(Vang); V1real=100; V1=V1real-Vreal-(Vimag*%i); V1mag=sqrt(real(V1)^2+imag(V1)^2); V1ang=atand(imag(V1)/real(V1)); I2mag=V1mag/20; I2ang=V1ang-(-90); Ireal=Imag*cosd(Iang); Iimag=Imag*sind(Iang); I=Ireal-(Iimag*%i); I2real=I2mag*cosd(I2ang); I2imag=I2mag*sind(I2ang); I2=I2real+(I2imag*%i); I1=I-I2; I1mag=sqrt(real(I1)^2+imag(I1)^2); I1ang=atand(imag(I1)/real(I1)); Z1mag=V1mag/I1mag; Z1ang=V1ang-I1ang; Zreal=Z1mag*cosd(Z1ang); Zimag=Z1mag*sind(Z1ang); R1=Zreal; X1=-Zimag;//here negative sign is used to take only reactance value disp(R1,"the resistance is (in ohm)"); disp(X1,"the reactance is (in ohm)");
6d15072e0f602fa14d37684bdf829dc9a8ee3b76
449d555969bfd7befe906877abab098c6e63a0e8
/3808/CH2/EX2.19/Ex2_19.sce
00d50b09537a5f1cf3fdb56bb527867db9798342
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
428
sce
Ex2_19.sce
//Chapter 02:Basic Structures: Sets, Functions, Sequences, Sums and Matrices clc; clear; mat=[] row=input("Enter the no. of rows:") col=input("Entet the no.of columns:") mprintf("Enter the elements:") for i=1:row for j=1:col mprintf('\nInput for Row %d , Column %d:',i,j) n=input(" ") mat(i)(j)=n end end mprintf("Original Matrix:") disp(mat) matt=mat' mprintf("Transpose of Matrix:") disp(matt)
9c2d29109e0c120b6462fdc53182ec5afeb0b6b5
449d555969bfd7befe906877abab098c6e63a0e8
/3511/CH8/EX8.1/Ex8_1.sce
1daf6307ac07c9c09eaa994d662944085eecc625
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
479
sce
Ex8_1.sce
clc; N=11500; // Speed in rpm T01=21+273; // Inlet total temperature in kelvin p01=1;// Inlet total pressure in bar p02=4;// Outlet total pressure in bar D=0.75; // impeller diameter in m mu=0.92;// slip factor Cp=1.005; // specific heat at constant pressure in kJ/kg K r=1.4; // Specific heat ratio u=3.14*D*N/60; W=mu*u^2; T02=W/(Cp*10^3)+T01; T_02=T01*(p02/p01)^((r-1)/r); eff_c=(T_02-T01)/(T02-T01); disp ("%",eff_c*100,"Efficiency of the compressor = ");
dd8c6ef4a14cf6953b63e81bafe29cbc135034b5
80c4f32677abf57e118950a28c918a042269200c
/UI_Edit/Scenes/SSSS.sce
87d7d2aef6364d906672a43a62c5a862b9b0bec3
[ "MIT" ]
permissive
ggcrunchy/ui-edit-v1
ab31697a8db0387e71edd1e61f3bcc3cd0bcbc7e
e5b1b1867f5f9bca941e3638a0274f8133711759
refs/heads/master
2021-01-19T14:24:13.514011
2012-10-16T07:09:52
2012-10-16T07:09:52
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
925
sce
SSSS.sce
<nButton>0</nButton> <nSlider>0</nSlider> <nListbox>1</nListbox> <Listbox> <ID>"Listbox1"</ID> <nItem>5</nItem> <LI> <string>"New item"</string> <context>0</context> <bSelected>false</bSelected> </LI> <LI> <string>"MRGYLE"</string> <context>5</context> <bSelected>false</bSelected> </LI> <LI> <string>"New item"</string> <context>0</context> <bSelected>false</bSelected> </LI> <LI> <string>"PETE"</string> <context>0</context> <bSelected>false</bSelected> </LI> <LI> <string>"New item"</string> <context>0</context> <bSelected>false</bSelected> </LI> <m> <D>"VList"</D> <HT>"VList"</HT> <PE>"NOP"</PE> <F>"VList"</F> </m> <capacity>3</capacity> <offset>0</offset> <bClick>true</bClick> <bDragOver>false</bDragOver> <tag>""</tag> </Listbox> <nTextbox>0</nTextbox> <nCheckbox>0</nCheckbox> <nRadiobox>0</nRadiobox> <nPane>0</nPane> <nLayer>0</nLayer> <nFrame>0</nFrame>
f97ab42f894f8c41edf8b2cb16b596ebca7e3610
c52b86c70bfb65ede26a67e3a1647999383b3a5d
/macros/buildmacros.sce
76895787c1970b621e02e7eabf2405b6ffbd6eb7
[]
no_license
FOSSEE-Internship/FOSSEE-Julia-Toolbox
8847c2b1ea8ac69234d9d3a7f8f4238840bf9d62
10811cd0ceb00cb4a9303a6fc61e995fbbdb6b4d
refs/heads/master
2020-12-02T16:18:10.355600
2017-10-25T14:08:55
2017-10-25T14:08:55
96,516,912
0
1
null
null
null
null
UTF-8
Scilab
false
false
104
sce
buildmacros.sce
tbx_build_macros("Julia_Interface", get_absolute_file_path("buildmacros.sce")); clear tbx_build_macros;
a738e209fe10b28c4c0d11ccf95e171f39ab78af
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH26/EX26.1/example_26_1.sce
ac4c83822477ff5c71495b1a62226da2218b5311
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,061
sce
example_26_1.sce
clear; clc; disp("--------------Example 26.1---------------") // client request :- Do enable the echo option r_character1="IAC"; r_character2="DO"; r_character3="ECHO"; //server approval :- I will enable the echo option a_character1="IAC"; a_character2="WILL"; a_character3="ECHO"; printf("In this example, the client wants the server to echo each character sent to the server. In other words,\nwhen a character is typed at the user keyboard terminal, it goes to the server and is sent back to the screen of the user before being processed.\nThe echo option is enabled by the server because it is the server that sends the characters back to the user terminal.\nTherefore, the client should request from the server the enabling of the option using DO.\nThe request consists of three characters: %s, %s and %s.\nThe server accepts the request and enables the option WILL.\nIt informs the client by sending the three-character approval: %s, %s and %s.",r_character1,r_character2,r_character3,a_character1,a_character2,a_character3); // display result
0f30cba27bef1f0a4359dcbf8248996f24f2bfe2
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set14/s_Material_Science_V._Rajendran_1826.zip/Material_Science_V._Rajendran_1826/CH10/EX10.11/ex10_11.sce
492431ac1f03bed99c5a9b7eb687db305a48143c
[]
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
229
sce
ex10_11.sce
errcatch(-1,"stop");mode(2);// Example 10.11, page no-275 e=1.6*10^-19//C eg=1.12 me=0.12 mh=0.28 T=300 k=1.38*10^-23 ef=(eg/2)+(3*k*T/4)*log(mh/me) printf("The Fermi energy of Si at 300 K is %.3f eV",ef) exit();
622a7b820fb725f6c70248a707d4de20f5db6492
449d555969bfd7befe906877abab098c6e63a0e8
/964/CH11/EX11.6/11_6.sce
f237e8190ca69313faf353d897fd7843076fdb46
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
211
sce
11_6.sce
//clc() A = [1,0.5,1/3;1/2,1/3,1/4;1/3,1/4,1/5]; B = [1.833333;1.083333;0.783333]; U = inv(A); X = U*B; x = det(X(1,1)); y = det(X(2,1)); z = det(X(3,1)); disp(x,"x = ") disp(y,"y = ") disp(z,"z = ")
e6ca350ba59b760aa52c567417ec8ba40ae7bf90
449d555969bfd7befe906877abab098c6e63a0e8
/2882/CH11/EX11.5/Ex11_5.sce
8c1064ad55c61789a409f66eaaa42c5af28ee6bf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
535
sce
Ex11_5.sce
//Tested on Windows 7 Ultimate 32-bit //Chapter 11 Oscillators and Multivibrators Pg no. 361 clear; clc; //Given R=4.7D3;//R1,R2,R3 resistances in RC filter circuit in ohms C=4.7D-9;//C1,C2,C3 resistances in RC filter circuit in farads A=29;//voltage gain of RC phase shift oscillator //Solution f0=1/(2*%pi*R*C*sqrt(6));//frequency of oscillation in hertz printf("Frequency of oscillation f0 = %.2f kHz\n ",f0/10^3); Rf=A*R;//feedback resistance in ohms printf("Feedback resistance Rf = %.1f kilo-ohms",Rf/10^3);
ad8455d28349b7228eb6f25e05545fcddd314d0f
449d555969bfd7befe906877abab098c6e63a0e8
/503/CH8/EX8.13/ch8_13.sci
ab3fdbb45a9e177efa4c61de0e04e5e1a5f48763
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
773
sci
ch8_13.sci
//to determine excitation emf, torque angle,stator current, pf, max power, kVAR delivered clc; j=sqrt(-1); P=10000; V=400; Ia=P/(sqrt(3)*V); pf=.8; phi=acosd(pf); Iaa=Ia*complex(cosd(-phi),sind(-phi)); Vt=V/sqrt(3); X=16; Ef=Vt+j*X*Iaa; disp(abs(Ef),'excitation emf(V)'); dl=atand(imag(Ef)/real(Ef)); disp(dl,'torque angle'); Pe=P*pf; Eff=abs(Ef)*1.2; dl=(Pe/3)*X/(Eff*Vt); ta=asind(dl); disp(ta,'torque angle'); Ia=(Eff*complex(cosd(ta),sind(ta))-Vt)/(j*X); disp(abs(Ia),'stator current(A)'); disp(cosd(-atand(imag(Ia)/real(Ia))),'pf'); Ef=413; Pemax=Ef*Vt/X; Ia=(Ef*complex(cosd(90),sind(90))-Vt)/(j*X); disp(abs(Ia),'stator current(A)'); disp(cosd(-atand(imag(Ia)/real(Ia))),'pf'); Qe=(imag(Ia)/real(Ia))*Pe;disp(Qe,'kVar delivered');
39790b1af8ea1c49bf0e2e8ba22e46e17a5da39e
449d555969bfd7befe906877abab098c6e63a0e8
/1511/CH3/EX3.6/ex3_6.sce
122157dcda905c0a337042d1956e6d2325c6d507
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
372
sce
ex3_6.sce
// Example 3.6 page no-165 clear clc vrpp=0.8 //V vrms=vrpp/(2*sqrt(3)) vrms=floor(vrms*10) vrms=vrms/10 vm=8.8 vdc=vm-vrpp/2 gam=vrms/vdc printf("\n%% regulation, gamma = %.2f%%",gam*100) r=100 f=60 c=1050*10^-6 tgam=1/(4*(sqrt(3*c*r*f))) printf("\nTheoretical values, gamma = %.2f%%",tgam*100) Vdc=(4*f*r*c*vm)/(1+4*f*r*c) printf("\nVdc = %.2f V",Vdc)
a46449a4c223afe9747710cb2a0e25d03d7d1454
449d555969bfd7befe906877abab098c6e63a0e8
/2258/CH1/EX1.19/1_19.sce
273f364a1a9e434f58abce28014fc7180eff6e23
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
394
sce
1_19.sce
clc(); clear; // To calculate the de broglie wavelength of neutron mn=1.676*10^-27; //mass of neutron in kg me=9.1*10^-31; //mass of electron in kg h=6.62*10^(-34); c=3*10^8; //velocity of light in m/sec En=2*me*c^2; lamda=h/sqrt(2*mn*En); //wavelength in m lamda_A=lamda*10^10; //converting lamda from m to A printf("The de broglie wavelength is %f Angstrom",lamda_A);
4df0b95d752277197c882f7faa2985a7c7fe4028
449d555969bfd7befe906877abab098c6e63a0e8
/2504/CH5/EX5.5/5_5.sce
9348a1f49ef5a8cc1a112325ad7d72964286922a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
480
sce
5_5.sce
clc //initialisation of variables clear w1= 0.0286 //lbm/ft^3 v= 2500 //ft/sec A= 2.5 //ft^3 k= 0.015 p2= 700 //lbf/ft^2 p1= 628 //lbf/ft^2 v2= 3500 //ft/sec g= 32.17 //ft/sec^2 //CALCULATIONS ma= w1*v*A mf= k*ma mt= ma+mf F= (p2-p1)*A+(mt*v2/g)-(ma*v/g) //RESULTS printf ('air mass flow rate = %.2f lbm/sec',ma) printf ('\n Fuel flow rate = %.2f lbm/sec',mf) printf ('\n Fuel flow rate at station 2 = %.2f lbm/sec',mt) printf ('\n Thrust force = %.f lbf',F)
7760ea9d255a810947b1df6e8c9c3aa31d3ff9aa
dafb7f8634937600c2649b340f57014cbb1ed67e
/41CD_TS_V1.sce
1db0d7ee8bda61edfdb28b10cafde674e4290722
[]
no_license
sharath-matada/Tolerance-stack-up-3D-Robot-Joint
dc517eb24d4f05f2e9b5ab08da7bcaca030730d5
bbad72fbdc7e3781e27c07d8b40f0e10d0c4d818
refs/heads/main
2023-06-17T17:52:30.184364
2021-07-08T11:12:52
2021-07-08T11:12:52
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
7,812
sce
41CD_TS_V1.sce
/*Note: T is nominal Transformation, DT is variation in Transfromation and $T is varied tranformation*/ //Nominal Tranformations //ABWG Housing to Cross Roller Bearing Transformations Ta_f2a=[1 0 0 72; 0 1 0 54; 0 0 1 -9; 0 0 0 1] Tf2a_f1b=[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1] Tf1b_b=[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1] //Cross Roller Bearing To Wheel Flange Transformations Tb_f2b=[1 0 0 0; 0 1 0 0; 0 0 1 -10; 0 0 0 1] Tf2b_f1e=[1 0 0 0; 0 0 -1 0; 0 1 0 0; 0 0 0 1] Tf1e_e=[1 0 0 0; 0 1 0 -11; 0 0 1 0; 0 0 0 1] //Wheel Flange to Worm Wheel Tranformations Te_h=[0 1 0 0; -1 0 0 0; 0 0 1 0; 0 0 0 1] // Ta_h=[0 1 0 72; 0 0 -1 54; -1 0 0 -30; 0 0 0 1] Tb_h=Tb_f2b*Tf2b_f1e*Tf1e_e*Te_h //Variationvalues //A-F2A a_f2a_t=1.25*10^-3 a_f2a_dx=0.010 a_f2a_dy=0.020 a_f2a_dz=0.005 //F2A-F1B f2a_f1b_t=0.62*10^-3 f2a_f1b_dx=0.005 f2a_f1b_dy=0.005 //B-F2B b_f2b_t=5*10^-4 b_f2b_dx=0.002 b_f2b_dy=0.002 b_f2b_dz=-0.075 //F2B-F1E f2b_f1e_t=2.1*10^-3 f2b_f1e_dx=0.010 f2b_f1e_dz=0.010 //F1E-E f1e_e_t=1.04*10^-3 f1e_e_dy=0.005 //E-H e_h_dy=0.006 e_h_dz=0.006 // //Definitions y=0; ymax=0; ytmax=0; t=0; tmax=0; z=0; zmin=0; err_max=0; q=0; count=0; combo=[0 0 0 0 0]; //Functions //Deviation Functions function[DTab,r]=varied1(dtx,dty,dtz,dx,dy,dz,k) r=1; if k==1 then if dtx==0 then r=0; end DTab=[1 0 0 0; 0 1 -dtx 0; 0 dtx 1 0; 0 0 0 1] end if k==2 then if dtx==0 then r=0; end DTab=[1 0 0 0; 0 1 dtx 0; 0 -dtx 1 0; 0 0 0 1] end if k==3 then if dty==0 then r=0; end DTab=[1 0 dty 0; 0 1 0 0; -dty 0 1 0; 0 0 0 1] end if k==4 then if dty==0 then r=0; end DTab=[1 0 -dty 0; 0 1 0 0; dty 0 1 0; 0 0 0 1] end if k==5 then if dtz==0 then r=0; end DTab=[1 -dtz 0 0; dtz 1 0 0; 0 0 1 0; 0 0 0 1] end if k==6 then if dtz==0 then r=0; end DTab=[1 dtz 0 0; -dtz 1 0 0; 0 0 1 0; 0 0 0 1] end if k==7 then if dx==0 then r=0; end DTab=[1 0 0 dx; 0 1 0 0; 0 0 1 0; 0 0 0 1] end if k==8 then if dx==0 then r=0; end DTab=[1 0 0 -dx; 0 1 0 0; 0 0 1 0; 0 0 0 1] end if k==9 then if dy==0 then r=0; end DTab=[1 0 0 0; 0 1 0 dy; 0 0 1 0; 0 0 0 1] end if k==10 then if dy==0 then r=0; end DTab=[1 0 0 0; 0 1 0 -dy; 0 0 1 0; 0 0 0 1] end if k==11 then if dz==0 then r=0; continue end DTab=[1 0 0 0; 0 1 0 0; 0 0 1 dz; 0 0 0 1] end if k==12 then if dz==0 then r=0; continue end DTab=[1 0 0 0; 0 1 0 0; 0 0 1 -dz; 0 0 0 1] end if dtx==dty==dtz==dx==dy==dz==0 then DTab=[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1] end endfunction disp("Started") dr1=getdate() //(dtx,dty,dtz,dx,dy,dz,k) for a_f2a1=0:1 for a_f2a2=0:1 for a_f2a3=0:1 for a_f2a4=1:12 for f2a_f1b=1:12 for b_f2b=1:12 for f2b_f1e=1:12 for f1e_e=1:12 for f1e_e_1=0:1 for e_h=1:12 count=count+1; perc=(count/47775744)*100 [DTa_f2a,r1]=varied1(a_f2a_t,a_f2a_t,0,0,0,0,a_f2a4) if r1==0 then continue; end DTa_f2a=DTa_f2a+ [0 0 0 (((-1)^(a_f2a1))*a_f2a_dx); 0 0 0 (((-1)^(a_f2a2))*a_f2a_dy); 0 0 0 (((-1)^(a_f2a3))*a_f2a_dz); 0 0 0 0] [DTf2a_f1b,r2]=varied1(f2a_f1b_t,f2a_f1b_t,0,f2a_f1b_dx,f2a_f1b_dy,0,f2a_f1b) if r2==0 then continue; end [DTb_f2b,r3]=varied1(b_f2b_t,b_f2b_t,0,b_f2b_dx,b_f2b_dy,0,b_f2b) if r3==0 then continue; end DTb_f2b=DTb_f2b+[0 0 0 0; 0 0 0 0; 0 0 0 b_f2b_dz; 0 0 0 0] [DTf2b_f1e,r4]=varied1(f2b_f1e_t,0,f2b_f1e_t,f2b_f1e_dx,0,f2b_f1e_dz,f2b_f1e) if r4==0 then continue; end [DTf1e_e,r5]=varied1(f1e_e_t,0,f1e_e_t,0,0,0,f1e_e) if r5==0 then continue; end DTf1e_e=DTf1e_e+[0 0 0 0; 0 0 0 (((-1)^(f1e_e_1))*f1e_e_dy); 0 0 0 0; 0 0 0 0] [DTe_h,r6]=varied1(0,0,0,0,e_h_dy,e_h_dz,e_h) if r6==0 then continue; end $Ta_h=Ta_f2a*DTa_f2a*DTf2a_f1b*Tb_f2b*DTb_f2b*Tf2b_f1e*DTf2b_f1e*Tf1e_e*DTf1e_e*Te_h*DTe_h $Tb_h=Tb_f2b*DTb_f2b*Tf2b_f1e*DTf2b_f1e*Tf1e_e*DTf1e_e*Te_h*DTe_h disp($Tb_h) disp('In Progress') q=q+1; y=($Ta_h(2,4)-Ta_h(2,4)); yt=($Tb_h(2,4)-Tb_h(2,4)); //t=($Ta_e(3,2)-Ta_e(3,2)); //z=($Ta_e(3,4)-Ta_e(3,4)); disp("Current Center Offset(mm)=") disp(yt) disp("Maximum Center Offset(mm)=") disp(ytmax) disp("Percentage(%)") disp(perc) if abs(yt)>abs(ytmax) then ytmax=($Tb_h(2,4)-Tb_h(2,4)); disp(ytmax) DTa_f2a_ro=DTa_f2a DTf2a_f1b_ro=DTf2a_f1b DTb_f2b_ro=DTb_f2b DTf2b_f1e_ro=DTf2b_f1e DTf1e_e_ro=DTf1e_e DTe_h_ro=DTe_h $Tb_h_ro=$Tb_h $Ta_h_ro=$Ta_h end /* if t>tmax then tmax=($Ta_e(3,2)-Ta_f2a(3,2)); disp(tmax) DTa_f2a_fo=DTa_f2a DTf2a_f1b_fo=DTf2a_f1b DTb_f2b_fo=DTb_f2b DTf2b_f1e_fo=DTf2b_f1e DTf1e_e_fo=DTf1e_e DTe_h_fo=DTe_h $Ta_e_fo=$Ta_e end */ /* if z<zmin then zmin=($Ta_e(3,4)-Ta_f2a(3,4)); disp(zmin) DTa_f2a_ao=DTa_f2a DTf2a_f1b_ao=DTf2a_f1b DTb_f2b_ao=DTb_f2b DTf2b_f1e_ao=DTf2b_f1e DTf1e_e_ao=DTf1e_e DTe_h_ao=DTe_h $Ta_e_ao=$Ta_e end */ end end end end end end end end end end disp('Done') disp(q) dr2=getdate() disp(etime(dr2,dr1))
a496e37cf55db57ec7c7f38348e9e08ae34428d7
449d555969bfd7befe906877abab098c6e63a0e8
/858/CH4/EX4.17/example_17.sce
2656cc805706b6dd3af8c13bd345e309d882b181
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
387
sce
example_17.sce
clc clear printf("example 4.17 page number 154\n\n") //to find the pressure loss density=998 //in kg/m3 viscosity=0.0008 //in Pa-s d=0.03 //in m u=1.2 //in m/s Re=density*d*u/viscosity; f=0.0088; D=1 //in m N=10 L=3.14*D*N; delta_P=(2*f*u^2*L)/d; //in Pa delta_P_coil=delta_P*(1+(3.54*(d/D))); printf("frictional pressure drop = %f kPa",delta_P_coil)
ca670df2770797085326918bab5abc8437c5d37e
63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa
/test/0015.tst
25ba332c3ea9fdc4b32ed5a3809583f11e8aea67
[]
no_license
fmeci/nfql-testing
e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c
6b7d465b32fa50468e3694f63c803e3630c5187d
refs/heads/master
2021-01-11T04:09:48.579127
2013-05-02T13:30:17
2013-05-02T13:30:17
71,239,280
0
0
null
2016-10-18T11:01:57
2016-10-18T11:01:55
Python
UTF-8
Scilab
false
false
406
tst
0015.tst
SPlitTeR w {} filTer F { bITAnD ( ) OR BiTOr (::C:dE:e:b4fA:f:3.7.226.41, ) >= ::0:e8:ba:EF oR not BITOR (M, 188.253.31.31, y, 56.231.250.215/5952, ) w ( EB:bc:AC:dD:Ec:BC , ) OR BiTOR (Xh ( ), m, ) } fiLteR z {Not Dkr Or ZtmlrP } e -> D -> a GROUPeR Pf {MODuLe sQCFfgB{ } modUle Sj{ } moDulE g{ } AGGregatE aVG(B.ivdxJ) AS WLEF } UngROuPeR l { } GroUpfiLteR w {} meRGER Z { EXPoRt uv }
9780bd69f054e682c604b71aea77d74116bf1bf4
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH8/EX8.3/example8_3.sce
68c1095aa5321e1246ef58f60c148a90f92b0812
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
353
sce
example8_3.sce
//Chapter 8 //Example 8_3 //Page 172 clear;clc; ins=3; v3=17.5; k=1/8; v1=v3/(1+3*k+k^2); v2=(1+k)*v1; v=v1+v2+v3; n=v*100/3/v3; printf("Voltage across first unit = %.2f kV \n\n", v1); printf("Voltage across second unit = %.2f kV \n\n", v2); printf("Voltage between line and earth = %.2f kV \n\n", v); printf("String efficiency = %.2f %% \n\n", n);
7188f0002ac0f33d1d745e559358e5122a0905f5
449d555969bfd7befe906877abab098c6e63a0e8
/1703/CH7/EX7.5/7_5.sce
9190a6ca6e8ac1a4042ba1a1c164b4c8b02388d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
371
sce
7_5.sce
clc //initialisation of variables clear A= 1/16 //mile^2 d= 2 //ft h= 18 //ft h1= 5 //ft f= 0.006 l= 200 //ft h2= 10 //ft g= 32.2 //ft/sec^2 //CALCULATIONS X= sqrt(1/((1.5+(4*f*l/d))/(2*g))) function [y]=fun(H) y=A*5280^2*H^-0.5/(%pi*d^2*X/4) endfunction vec2=intg(h-h1,h,fun) T= vec2 //RESULTS printf ('time for the channel to fall = %.f sec',T)
976344f8a307900901166f4a3c0ee81c1769dfd0
449d555969bfd7befe906877abab098c6e63a0e8
/3843/CH9/EX9.6/Ex9_6.sce
100fe7f7be0adb2cb85a43663a51abed69efa313
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
751
sce
Ex9_6.sce
// Example 9_6 clc;funcprot(0); // Given data r=16;// The compression ratio T_1=200+273;// K P_1=200;// kPa r_c=2;// The cut off ratio r_p=1.3;// The pressure ratio c_p=1.00;// kJ/kg.K c_v=0.717;// kJ/kg.K R=0.287;// kJ/kg.K k=1.4;// The specific heat ratio // Calculation n=1-((1/(r^(k-1)))*(((r_p*r_c^k)-1)/((k*r_p*(r_c-1))+(r_p-1))));// The thermal efficiency T_2=T_1*(r)^(k-1);// K T_3=T_2*r_p;// K T_4=T_3*r_c;// K q_in=(c_v*(T_3-T_2))+(c_p*(T_4-T_3));// kJ/kg w_out=n*q_in;// kJ/kg v_1=(R*T_1)/P_1;// m^3/kg MEP=w_out/(v_1*(1-(1/r)));// kPa printf("\nThe thermal efficiency,n=%0.3f or %2.1f percentage. \nThe heat input,q_in=%4.0f kJ/kg. \nThe work output,w_out=%4.0f kJ/kg. \nThe MEP=%4.0f kPa",n,n*100,q_in,w_out,MEP);
0472746eab9870dccaf65d78b71dbfd02f08f3d2
7cbeef90493f736d2d6033fc4f8eb0c204fbe8ea
/levelsf2.sce
7ebf854ca6eac6523d4a9d803942299ccd5a25c6
[]
no_license
lucasfariaslf/emap_optim
62f7b9e11764302e392a5c86a4fdede41f11dac3
0c93b7654c3101b9275602ff2e6acb49af5133c6
refs/heads/master
2021-09-14T03:53:50.017323
2018-05-08T00:19:16
2018-05-08T00:19:16
103,544,555
0
0
null
null
null
null
UTF-8
Scilab
false
false
159
sce
levelsf2.sce
t=linspace(-10,10,50); function z=my_surface2(x, y) z=(1-x)^2+100*(y-x^2)^2; endfunction contour(t,t,my_surface2,[1;2;5;10;20;30;50;100;200])
abca2472b1db1cdfadb6166ca2ceb871b3dddf9a
c36e1bfd38146c66289228951b38aed97a50e7ce
/Programmation Dynamique/main.sci
5fe2371d485aeb320faa91533825ad1fce54f349
[ "MIT" ]
permissive
AmineKheldouni/Optimization-Control
73e4c50c2edbac1863d231036125c405eea1807c
417336ff19b174668be002c4a5d24bd78c88c39e
refs/heads/master
2020-04-14T22:30:01.903485
2019-01-04T23:35:20
2019-01-04T23:35:20
164,165,063
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,489
sci
main.sci
funcprot(0); // Initialization Tf = 10 ; Nx = 9 ; // x# xref = 5; state = [1:Nx]; // Initialization of the matrix used to store Bellman values V = ones(Tf,Nx) * %inf; U = ones(Tf-1,Nx) * %inf; // Compute B(x) subset : function [res]=B(x) if x == 1 then res = [1]; elseif x == Nx then res = [-1]; elseif x == 2 then res = [0,1]; elseif x == Nx-1 then res = [-1,0]; else res = [-1,0,1]; end endfunction // Compute Bellman function at final time function [res]=K(x) res = (x-xref).^2; endfunction function [res]=p(w) if w == 1 then res = 1/2; else res = 1/2; end endfunction X = zeros(1,Nx); for i=1:Nx X(1,i) = i; end V(Tf,:) = K(X); // make a time backward loop Ti = 1; for t = Tf-1:-1:Ti do for x = 1:Nx do cost_x = %inf; u_opt = 0; Bset = B(x); for k = 1:length(Bset) do u = Bset(k); cost_x_u_w = 0; for w = -1:2:1 do cost_x_u_w = cost_x_u_w + V(t+1,x+u+w)*p(w); end cost_x_u = cost_x_u_w; if cost_x_u < cost_x then u_opt = u; cost_x = cost_x_u; end end V(t,x) = cost_x; U(t,x) = u_opt; end end disp(V); disp(U); function [ud]=optControl(t,x) cost_x = %inf; ud = 0; Bset = B(x); for k = 1:length(Bset) do u = Bset(k); cost_x_u_w = 0; for w = -1:2:1 do cost_x_u_w = cost_x_u_w + V(t+1,x+u+w)*p(w); end cost_x_u = cost_x_u_w; if cost_x_u < cost_x then ud = u; cost_x = cost_x_u; end end endfunction ud = optControl(3,5); disp(ud); function [cost]=simulation_mc(x0,policy,N) cost = 0; W = [1,-1]; for i = 1:N x = x0; for t = 1:Tf-1 w = W(grand(1,1,'uin',1,2)); x = x + policy(t,x) + w; end cost = cost + (x-xref).^2 end cost = cost/N; endfunction timer() for x0=1:Nx do disp(simulation_mc(x0,optControl,10000)); end timer() for x0=1:Nx do disp(simulation_mc(x0,optControl,1000)); end function [cost]=simulation_ex(x0,policy) // Exact computation with the law of W Wa=all_w(Tf-1); cost = 0; for i = 1: size(Wa,'r') x = x0; for t = 1:Tf-1 x = x + policy(t,x) + Wa(i,t); end cost = cost + (x-xref).^2 end cost = cost/size(Wa,'r'); endfunction function W=all_w(n) // generated all the possible (W_1,...,W_(TF-1)) if n == 1 then W=[-1;1] else Wn = all_w(n-1); W=[-1*ones(size(Wn,'r'),1),Wn; +1*ones(size(Wn,'r'),1),Wn]; end endfunction; timer() for x0=1:Nx do disp(simulation_ex(x0,optControl)); end timer() function costs = simulation_dp(policy) // evaluation by dynamic programming with fixed policy Vs = ones(Tf,length(X))*%inf; // Bellman function at time TF Vs(Tf,:) = (X-xref).^2; W = [-1,1]; // Compute final value functions // Loop backward over time: for t = (Tf-1):-1:1 for x= 1:Nx // loop on noises EV=0; for iw = 1:size(W,"*") next_state = x + policy(t,x) + W(iw); EV = EV + p(iw)*Vs(t+1,next_state); end Vs(t,x) = EV; end end costs= Vs(1,:); endfunction timer() simulation_dp(optControl) timer()
cf2a4358c261fa92a92fa741b7e640f015128bc3
449d555969bfd7befe906877abab098c6e63a0e8
/611/CH8/EX8.10/Chap8_Ex10_R1.sce
e79c004d832b9fa7927d56fe6e8d26f1b6a867a8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,376
sce
Chap8_Ex10_R1.sce
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India. //Chapter-8,Example 10,Page 299 //Title: Enthalpy and entropy departure using the generalized virial coefficient correlation //================================================================================================================ clear clc //INPUT T=339.7;//temperature of ethylene in K P=1;//pressure of ethylene in bar Tc=283.1;//critical temperature of ethylene in K Pc=51.17;//critical pressure of ethylene in bar w=0.089;//acentric factor (no unit) R=8.314;//universal gas constant in J/molK //CALCULATION Pr=P/Pc;//calculation of reduced pressure (no unit) Tr=T/Tc;//calculation of reduced temperature (no unit) dep_h=R*Tc*Pr*((0.083-(1.097/(Tr^1.6)))+(w*(0.139-(0.894/(Tr^4.2)))));//calculation of the enthalpy departure using Eq.(8.75) in J/mol dep_s=-Pr*R*((0.675/(Tr^2.6))+(w*(0.722/(Tr^5.2))));//calculation of the entropy departure using Eq.(8.76) in J/molK //OUTPUT mprintf("\n The enthalpy departure for ethylene using the generalized virial coefficient correlation = %f J/mol\n",dep_h); mprintf("\n The entropy departure for ethylene using the generalized virial coefficient correlation = %e J/mol K\n",dep_s); //===============================================END OF PROGRAM===================================================
c6e12ff5b796579df45a30d1b418ea10feaadb86
0bb08b35184b47c6f5e74d41f7cb0b927162dd82
/test/teste4.tst
83f5ae0c37f9c1c6e038b3857e6823480edca99e
[]
no_license
DanielPBL/tp_compiladores
6df7d3bde74d7e4098a32914396f1bdfef7f4843
6536f3588785819f5e28d6358fc36e53c7d52adb
refs/heads/master
2021-01-19T01:10:25.009830
2017-06-29T20:20:23
2017-06-29T20:20:23
87,229,469
1
1
null
null
null
null
UTF-8
Scilab
false
false
166
tst
teste4.tst
init i, j, k, total, soma, a is integer; read (I); k := i * (5 - i * 50 / 10); j := i * 10; k := i * j / k; k := 4 + a ; write(i); write(j); write(k); stop
adacb67920a847748ae2f65f2e5bad368b22fb55
d167200e784b8019615f6b37b5a46b91ec43b98d
/macros/imGaborFilt.sci
546d075f8050a9bc73f7f9d6375af3c6d91b30d1
[]
no_license
AshishMantosh/FOSSEE-Image-Processing-Toolbox
ee9c1a00f97627f372fae1d7d851c4905ac9d83e
e4fbe1891e13e4dc9b62513f0aef2b101638f084
refs/heads/master
2021-01-01T19:05:15.966438
2017-07-27T07:16:11
2017-07-27T07:16:11
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,533
sci
imGaborFilt.sci
// Copyright (C) 2015 - IIT Bombay - FOSSEE // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt // Author: Samiran Roy // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in // function new_image = imGaborFilt(image, wavelength, orientation) // The function applies Gabor filter or set of filters to 2-D image. // // Calling Sequence // [new_image] = imGaborFilt(image, wavelength, orientation) // // Parameters // image : The input grayscale image. // wavelength : It is the wavelength of the sinusoidal carrier, specified as a numeric scalar in the range [2,Inf), in pixels/cycle. // orientation : Orientation value of filter in degrees, specified as a numeric scalar in the range [0 360], where the orientation is defined as the normal direction to the sinusoidal plane wave. // // Description // It computes the magnitude and phase response of a Gabor filter for the input grayscale image. // // Examples // // apply Single Gabor Filter to Input Image // a = imread("/images/lena.jpeg", 0); // wavelength = 4; // orientation = 90; // b = imGaborFilt(a, wavelength, orientation) // // Authors // Samiran Roy image_list = mattolist(image) out = raw_imGaborFilt(image_list, wavelength, orientation) sz = size(out) for i=1:sz new_image(:, :, i) = out(i) end endfunction
6fc7f2212661a18f968deba0d99016b706ffa3e8
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/PY3.prev.tst
b6459dcbdc89b97afaa7478e6b15da377c1e56f8
[ "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
90,684
tst
PY3.prev.tst
ExponentGCDs=[1] ---------------- X1 [5,12,13] X2 [15,8,17] X3 [7,24,25] ---------------- X11 [9,40,41] X12 [35,12,37] X13 [11,60,61] X21 [21,20,29] X22 [55,48,73] X23 [39,80,89] X31 [13,84,85] X32 [63,16,65] X33 [15,112,113] ---------------- X111 [17,144,145] X112 [99,20,101] X113 [19,180,181] X121 [45,28,53] X122 [119,120,169] X123 [95,168,193] X131 [21,220,221] X132 [143,24,145] X133 [23,264,265] X211 [33,56,65] X212 [91,60,109] X213 [51,140,149] X221 [85,132,157] X222 [231,160,281] X223 [135,352,377] X231 [69,260,269] X232 [247,96,265] X233 [87,416,425] X311 [25,312,313] X312 [195,28,197] X313 [27,364,365] X321 [77,36,85] X322 [207,224,305] X323 [175,288,337] X331 [29,420,421] X332 [255,32,257] X333 [31,480,481] ---------------- X1111 [33,544,545] X1112 [323,36,325] X1113 [35,612,613] X1121 [117,44,125] X1122 [319,360,481] X1123 [279,440,521] X1131 [37,684,685] X1132 [399,40,401] X1133 [39,760,761] X1211 [65,72,97] X1212 [171,140,221] X1213 [115,252,277] X1221 [189,340,389] X1222 [527,336,625] X1223 [287,816,865] X1231 [165,532,557] X1232 [551,240,601] X1233 [215,912,937] X1311 [41,840,841] X1312 [483,44,485] X1313 [43,924,925] X1321 [165,52,173] X1322 [455,528,697] X1323 [407,624,745] X1331 [45,1012,1013] X1332 [575,48,577] X1333 [47,1104,1105] X2111 [57,176,185] X2112 [187,84,205] X2113 [75,308,317] X2121 [133,156,205] X2122 [351,280,449] X2123 [231,520,569] X2131 [93,476,485] X2132 [391,120,409] X2133 [111,680,689] X2211 [145,408,433] X2212 [459,220,509] X2213 [195,748,773] X2221 [341,420,541] X2222 [903,704,1145] X2223 [583,1344,1465] X2231 [245,1188,1213] X2232 [999,320,1049] X2233 [295,1728,1753] X2311 [129,920,929] X2312 [667,156,685] X2313 [147,1196,1205] X2321 [325,228,397] X2322 [855,832,1193] X2323 [663,1216,1385] X2331 [165,1508,1517] X2332 [1015,192,1033] X2333 [183,1856,1865] X3111 [49,1200,1201] X3112 [675,52,677] X3113 [51,1300,1301] X3121 [221,60,229] X3122 [615,728,953] X3123 [559,840,1009] X3131 [53,1404,1405] X3132 [783,56,785] X3133 [55,1512,1513] X3211 [105,88,137] X3212 [275,252,373] X3213 [203,396,445] X3221 [333,644,725] X3222 [943,576,1105] X3223 [495,1472,1553] X3231 [301,900,949] X3232 [975,448,1073] X3233 [399,1600,1649] X3311 [57,1624,1625] X3312 [899,60,901] X3313 [59,1740,1741] X3321 [285,68,293] X3322 [799,960,1249] X3323 [735,1088,1313] X3331 [61,1860,1861] X3332 [1023,64,1025] X3333 [63,1984,1985] ---------------- X11111 [65,2112,2113] X11112 [1155,68,1157] X11113 [67,2244,2245] X11121 [357,76,365] X11122 [1007,1224,1585] X11123 [935,1368,1657] X11131 [69,2380,2381] X11132 [1295,72,1297] X11133 [71,2520,2521] X11211 [153,104,185] X11212 [403,396,565] X11213 [315,572,653] X11221 [517,1044,1165] X11222 [1479,880,1721] X11223 [759,2320,2441] X11231 [477,1364,1445] X11232 [1519,720,1681] X11233 [639,2480,2561] X11311 [73,2664,2665] X11312 [1443,76,1445] X11313 [75,2812,2813] X11321 [437,84,445] X11322 [1239,1520,1961] X11323 [1159,1680,2041] X11331 [77,2964,2965] X11332 [1599,80,1601] X11333 [79,3120,3121] X12111 [105,208,233] X12112 [299,180,349] X12113 [155,468,493] X12121 [261,380,461] X12122 [703,504,865] X12123 [423,1064,1145] X12131 [205,828,853] X12132 [759,280,809] X12133 [255,1288,1313] X12211 [329,1080,1129] X12212 [1107,476,1205] X12213 [427,1836,1885] X12221 [765,868,1157] X12222 [2015,1632,2593] X12223 [1343,2976,3265] X12231 [525,2788,2837] X12232 [2255,672,2353] X12233 [623,3936,3985] X12311 [305,1848,1873] X12312 [1419,380,1469] X12313 [355,2508,2533] X12321 [741,580,941] X12322 [1943,1824,2665] X12323 [1463,2784,3145] X12331 [405,3268,3293] X12332 [2279,480,2329] X12333 [455,4128,4153] X13111 [81,3280,3281] X13112 [1763,84,1765] X13113 [83,3444,3445] X13121 [525,92,533] X13122 [1495,1848,2377] X13123 [1407,2024,2465] X13131 [85,3612,3613] X13132 [1935,88,1937] X13133 [87,3784,3785] X13211 [209,120,241] X13212 [555,572,797] X13213 [451,780,901] X13221 [741,1540,1709] X13222 [2135,1248,2473] X13223 [1079,3360,3529] X13231 [693,1924,2045] X13232 [2183,1056,2425] X13233 [935,3552,3673] X13311 [89,3960,3961] X13312 [2115,92,2117] X13313 [91,4140,4141] X13321 [621,100,629] X13322 [1775,2208,2833] X13323 [1679,2400,2929] X13331 [93,4324,4325] X13332 [2303,96,2305] X13333 [95,4512,4513] X21111 [105,608,617] X21112 [475,132,493] X21113 [123,836,845] X21121 [253,204,325] X21122 [663,616,905] X21123 [495,952,1073] X21131 [141,1100,1109] X21132 [775,168,793] X21133 [159,1400,1409] X21211 [217,456,505] X21212 [627,364,725] X21213 [315,988,1037] X21221 [533,756,925] X21222 [1431,1040,1769] X21223 [871,2160,2329] X21231 [413,1716,1765] X21232 [1551,560,1649] X21233 [511,2640,2689] X21311 [177,1736,1745] X21312 [1147,204,1165] X21313 [195,2108,2117] X21321 [493,276,565] X21322 [1311,1360,1889] X21323 [1071,1840,2129] X21331 [213,2516,2525] X21332 [1591,240,1609] X21333 [231,2960,2969] X22111 [265,1392,1417] X22112 [1131,340,1181] X22113 [315,1972,1997] X22121 [629,540,829] X22122 [1647,1496,2225] X22123 [1207,2376,2665] X22131 [365,2652,2677] X22132 [1911,440,1961] X22133 [415,3432,3457] X22211 [561,1240,1361] X22212 [1643,924,1885] X22213 [803,2604,2725] X22221 [1365,1892,2333] X22222 [3655,2688,4537] X22223 [2247,5504,5945] X22231 [1045,4452,4573] X22232 [3975,1408,4217] X22233 [1287,6784,6905] X22311 [465,4312,4337] X22312 [2891,540,2941] X22313 [515,5292,5317] X22321 [1269,740,1469] X22322 [3367,3456,4825] X22323 [2727,4736,5465] X22331 [565,6372,6397] X22332 [4071,640,4121] X22333 [615,7552,7577] X23111 [249,3440,3449] X23112 [2107,276,2125] X23113 [267,3956,3965] X23121 [805,348,877] X23122 [2175,2392,3233] X23123 [1863,3016,3545] X23131 [285,4508,4517] X23132 [2695,312,2713] X23133 [303,5096,5105] X23211 [481,600,769] X23212 [1275,988,1613] X23213 [819,1900,2069] X23221 [1349,2340,2701] X23222 [3735,2432,4457] X23223 [2071,5760,6121] X23231 [1157,3876,4045] X23232 [3927,1664,4265] X23233 [1495,6528,6697] X23311 [321,5720,5729] X23312 [3355,348,3373] X23313 [339,6380,6389] X23321 [1189,420,1261] X23322 [3255,3712,4937] X23323 [2871,4480,5321] X23331 [357,7076,7085] X23332 [4087,384,4105] X23333 [375,7808,7817] X31111 [97,4704,4705] X31112 [2499,100,2501] X31113 [99,4900,4901] X31121 [725,108,733] X31122 [2079,2600,3329] X31123 [1975,2808,3433] X31131 [101,5100,5101] X31132 [2703,104,2705] X31133 [103,5304,5305] X31211 [273,136,305] X31212 [731,780,1069] X31213 [611,1020,1189] X31221 [1005,2132,2357] X31222 [2911,1680,3361] X31223 [1455,4592,4817] X31231 [949,2580,2749] X31232 [2967,1456,3305] X31233 [1287,4816,4985] X31311 [105,5512,5513] X31312 [2915,108,2917] X31313 [107,5724,5725] X31321 [837,116,845] X31322 [2407,3024,3865] X31323 [2295,3248,3977] X31331 [109,5940,5941] X31332 [3135,112,3137] X31333 [111,6160,6161] X32111 [161,240,289] X32112 [435,308,533] X32113 [259,660,709] X32121 [429,700,821] X32122 [1175,792,1417] X32123 [671,1800,1921] X32131 [357,1276,1325] X32132 [1247,504,1345] X32133 [455,2088,2137] X32211 [585,2072,2153] X32212 [2035,828,2197] X32213 [747,3404,3485] X32221 [1357,1476,2005] X32222 [3567,2944,4625] X32223 [2415,5248,5777] X32231 [909,5060,5141] X32232 [4015,1152,4177] X32233 [1071,7040,7121] X32311 [553,3096,3145] X32312 [2451,700,2549] X32313 [651,4300,4349] X32321 [1325,1092,1717] X32322 [3471,3200,4721] X32323 [2575,4992,5617] X32331 [749,5700,5749] X32332 [4047,896,4145] X32333 [847,7296,7345] X33111 [113,6384,6385] X33112 [3363,116,3365] X33113 [115,6612,6613] X33121 [957,124,965] X33122 [2759,3480,4441] X33123 [2639,3720,4561] X33131 [117,6844,6845] X33132 [3599,120,3601] X33133 [119,7080,7081] X33211 [345,152,377] X33212 [931,1020,1381] X33213 [795,1292,1517] X33221 [1309,2820,3109] X33222 [3807,2176,4385] X33223 [1887,6016,6305] X33231 [1245,3332,3557] X33232 [3871,1920,4321] X33233 [1695,6272,6497] X33311 [121,7320,7321] X33312 [3843,124,3845] X33313 [123,7564,7565] X33321 [1085,132,1093] X33322 [3135,3968,5057] X33323 [3007,4224,5185] X33331 [125,7812,7813] X33332 [4095,128,4097] X33333 [127,8064,8065] ---------------- X111111 [129,8320,8321] X111112 [4355,132,4357] X111113 [131,8580,8581] X111121 [1221,140,1229] X111122 [3535,4488,5713] X111123 [3399,4760,5849] X111131 [133,8844,8845] X111132 [4623,136,4625] X111133 [135,9112,9113] X111211 [425,168,457] X111212 [1155,1292,1733] X111213 [1003,1596,1885] X111221 [1653,3604,3965] X111222 [4823,2736,5545] X111223 [2375,7632,7993] X111231 [1581,4180,4469] X111232 [4895,2448,5473] X111233 [2159,7920,8209] X111311 [137,9384,9385] X111312 [4899,140,4901] X111313 [139,9660,9661] X111321 [1365,148,1373] X111322 [3959,5040,6409] X111323 [3815,5328,6553] X111331 [141,9940,9941] X111332 [5183,144,5185] X111333 [143,10224,10225] X112111 [225,272,353] X112112 [595,468,757] X112113 [387,884,965] X112121 [637,1116,1285] X112122 [1767,1144,2105] X112123 [975,2728,2897] X112131 [549,1820,1901] X112132 [1855,792,2017] X112133 [711,3080,3161] X112211 [913,3384,3505] X112212 [3243,1276,3485] X112213 [1155,5452,5573] X112221 [2117,2244,3085] X112222 [5559,4640,7241] X112223 [3799,8160,9001] X112231 [1397,8004,8125] X112232 [6279,1760,6521] X112233 [1639,11040,11161] X112311 [873,4664,4745] X112312 [3763,1116,3925] X112313 [1035,6572,6653] X112321 [2077,1764,2725] X112322 [5439,4960,7361] X112323 [3999,7840,8801] X112331 [1197,8804,8885] X112332 [6319,1440,6481] X112333 [1359,11360,11441] X113111 [145,10512,10513] X113112 [5475,148,5477] X113113 [147,10804,10805] X113121 [1517,156,1525] X113122 [4407,5624,7145] X113123 [4255,5928,7297] X113131 [149,11100,11101] X113132 [5775,152,5777] X113133 [151,11400,11401] X113211 [513,184,545] X113212 [1403,1596,2125] X113213 [1235,1932,2293] X113221 [2037,4484,4925] X113222 [5959,3360,6841] X113223 [2919,9440,9881] X113231 [1957,5124,5485] X113232 [6039,3040,6761] X113233 [2679,9760,10121] X113311 [153,11704,11705] X113312 [6083,156,6085] X113313 [155,12012,12013] X113321 [1677,164,1685] X113322 [4879,6240,7921] X113323 [4719,6560,8081] X113331 [157,12324,12325] X113332 [6399,160,6401] X113333 [159,12640,12641] X121111 [185,672,697] X121112 [651,260,701] X121113 [235,1092,1117] X121121 [429,460,629] X121122 [1127,936,1465] X121123 [767,1656,1825] X121131 [285,1612,1637] X121132 [1271,360,1321] X121133 [335,2232,2257] X121211 [441,1160,1241] X121212 [1363,684,1525] X121213 [603,2204,2285] X121221 [1045,1332,1693] X121222 [2775,2128,3497] X121223 [1767,4144,4505] X121231 [765,3572,3653] X121232 [3055,1008,3217] X121233 [927,5264,5345] X121311 [385,2952,2977] X121312 [2091,460,2141] X121313 [435,3772,3797] X121321 [989,660,1189] X121322 [2607,2576,3665] X121323 [2047,3696,4225] X121331 [485,4692,4717] X121332 [3111,560,3161] X121333 [535,5712,5737] X122111 [609,3760,3809] X122112 [2867,756,2965] X122113 [707,5076,5125] X122121 [1485,1148,1877] X122122 [3895,3672,5353] X122123 [2943,5576,6305] X122131 [805,6588,6637] X122132 [4575,952,4673] X122133 [903,8296,8345] X122211 [1241,2520,2809] X122212 [3555,2108,4133] X122213 [1819,5580,5869] X122221 [3069,4420,5381] X122222 [8255,5952,10177] X122223 [4991,12480,13441] X122231 [2397,9796,10085] X122232 [8927,3264,9505] X122233 [2975,15168,15457] X122311 [1001,10200,10249] X122312 [6675,1148,6773] X122313 [1099,12300,12349] X122321 [2829,1540,3221] X122322 [7535,7872,10897] X122323 [6191,10560,12241] X122331 [1197,14596,14645] X122332 [9167,1344,9265] X122333 [1295,17088,17137] X123111 [585,6832,6857] X123112 [4331,660,4381] X123113 [635,8052,8077] X123121 [1749,860,1949] X123122 [4687,5016,6865] X123123 [3927,6536,7625] X123131 [685,9372,9397] X123132 [5751,760,5801] X123133 [735,10792,10817] X123211 [1121,1560,1921] X123212 [3003,2204,3725] X123213 [1843,4524,4885] X123221 [3045,5092,5933] X123222 [8375,5568,10057] X123223 [4727,12864,13705] X123231 [2565,8932,9293] X123232 [8855,3648,9577] X123233 [3287,14784,15145] X123311 [785,12312,12337] X123312 [7371,860,7421] X123313 [835,13932,13957] X123321 [2709,1060,2909] X123322 [7367,8256,11065] X123323 [6407,10176,12025] X123331 [885,15652,15677] X123332 [9191,960,9241] X123333 [935,17472,17497] X131111 [161,12960,12961] X131112 [6723,164,6725] X131113 [163,13284,13285] X131121 [1845,172,1853] X131122 [5375,6888,8737] X131123 [5207,7224,8905] X131131 [165,13612,13613] X131132 [7055,168,7057] X131133 [167,13944,13945] X131211 [609,200,641] X131212 [1675,1932,2557] X131213 [1491,2300,2741] X131221 [2461,5460,5989] X131222 [7215,4048,8273] X131223 [3519,11440,11969] X131231 [2373,6164,6605] X131232 [7303,3696,8185] X131233 [3255,11792,12233] X131311 [169,14280,14281] X131312 [7395,172,7397] X131313 [171,14620,14621] X131321 [2021,180,2029] X131322 [5895,7568,9593] X131323 [5719,7920,9769] X131331 [173,14964,14965] X131332 [7743,176,7745] X131333 [175,15312,15313] X132111 [297,304,425] X132112 [779,660,1021] X132113 [539,1140,1261] X132121 [885,1628,1853] X132122 [2479,1560,2929] X132123 [1335,3848,4073] X132131 [781,2460,2581] X132132 [2583,1144,2825] X132133 [1023,4264,4385] X132211 [1313,5016,5185] X132212 [4731,1820,5069] X132213 [1651,7980,8149] X132221 [3045,3172,4397] X132222 [7991,6720,10441] X132223 [5495,11712,12937] X132231 [1989,11620,11789] X132232 [9047,2496,9385] X132233 [2327,15936,16105] X132311 [1265,6552,6673] X132312 [5355,1628,5597] X132313 [1507,9324,9445] X132321 [2997,2596,3965] X132322 [7847,7104,10585] X132323 [5735,11328,12697] X132331 [1749,12580,12701] X132332 [9095,2112,9337] X132333 [1991,16320,16441] X133111 [177,15664,15665] X133112 [8099,180,8101] X133113 [179,16020,16021] X133121 [2205,188,2213] X133122 [6439,8280,10489] X133123 [6255,8648,10673] X133131 [181,16380,16381] X133132 [8463,184,8465] X133133 [183,16744,16745] X133211 [713,216,745] X133212 [1971,2300,3029] X133213 [1771,2700,3229] X133221 [2925,6532,7157] X133222 [8591,4800,9841] X133223 [4175,13632,14257] X133231 [2829,7300,7829] X133232 [8687,4416,9745] X133233 [3887,14016,14545] X133311 [185,17112,17113] X133312 [8835,188,8837] X133313 [187,17484,17485] X133321 [2397,196,2405] X133322 [7007,9024,11425] X133323 [6815,9408,11617] X133331 [189,17860,17861] X133332 [9215,192,9217] X133333 [191,18240,18241] X211111 [201,2240,2249] X211112 [1435,228,1453] X211113 [219,2660,2669] X211121 [589,300,661] X211122 [1575,1672,2297] X211123 [1311,2200,2561] X211131 [237,3116,3125] X211132 [1927,264,1945] X211133 [255,3608,3617] X211211 [385,552,673] X211212 [1035,748,1277] X211213 [627,1564,1685] X211221 [1037,1716,2005] X211222 [2847,1904,3425] X211223 [1615,4368,4657] X211231 [869,3060,3181] X211232 [3015,1232,3257] X211233 [1111,5040,5161] X211311 [273,4136,4145] X211312 [2491,300,2509] X211313 [291,4700,4709] X211321 [925,372,997] X211322 [2511,2800,3761] X211323 [2175,3472,4097] X211331 [309,5300,5309] X211332 [3127,336,3145] X211333 [327,5936,5945] X212111 [385,1488,1537] X212112 [1395,532,1493] X212113 [483,2356,2405] X212121 [893,924,1285] X212122 [2343,1976,3065] X212123 [1615,3432,3793] X212131 [581,3420,3469] X212132 [2655,728,2753] X212133 [679,4680,4729] X212211 [897,2296,2465] X212212 [2747,1404,3085] X212213 [1235,4428,4597] X212221 [2133,2756,3485] X212222 [5671,4320,7129] X212223 [3591,8480,9209] X212231 [1573,7236,7405] X212232 [6231,2080,6569] X212233 [1911,10720,10889] X212311 [777,6136,6185] X212312 [4307,924,4405] X212313 [875,7788,7837] X212321 [2013,1316,2405] X212322 [5311,5280,7489] X212323 [4191,7520,8609] X212331 [973,9636,9685] X212332 [6351,1120,6449] X212333 [1071,11680,11729] X213111 [345,6608,6617] X213112 [3835,372,3853] X213113 [363,7316,7325] X213121 [1333,444,1405] X213122 [3663,4216,5585] X213123 [3255,5032,5993] X213131 [381,8060,8069] X213132 [4615,408,4633] X213133 [399,8840,8849] X213211 [697,696,985] X213212 [1827,1564,2405] X213213 [1275,2668,2957] X213221 [2093,3876,4405] X213222 [5871,3680,6929] X213223 [3151,9120,9649] X213231 [1853,5796,6085] X213232 [6111,2720,6689] X213233 [2431,10080,10369] X213311 [417,9656,9665] X213312 [5467,444,5485] X213313 [435,10508,10517] X213321 [1813,516,1885] X213322 [5031,5920,7769] X213323 [4551,6880,8249] X213331 [453,11396,11405] X213332 [6391,480,6409] X213333 [471,12320,12329] X221111 [505,5088,5113] X221112 [3339,580,3389] X221113 [555,6148,6173] X221121 [1421,780,1621] X221122 [3783,3944,5465] X221123 [3103,5304,6145] X221131 [605,7308,7333] X221132 [4599,680,4649] X221133 [655,8568,8593] X221211 [969,1480,1769] X221212 [2627,1836,3205] X221213 [1547,3996,4285] X221221 [2565,4148,4877] X221222 [7015,4752,8473] X221223 [4023,10736,11465] X221231 [2125,7668,7957] X221232 [7455,2992,8033] X221233 [2703,12496,12785] X221311 [705,9928,9953] X221312 [6059,780,6109] X221313 [755,11388,11413] X221321 [2301,980,2501] X221322 [6223,6864,9265] X221323 [5343,8624,10145] X221331 [805,12948,12973] X221332 [7719,880,7769] X221333 [855,14608,14633] X222111 [1001,4080,4201] X222112 [3723,1364,3965] X222113 [1243,6324,6445] X222121 [2325,2332,3293] X222122 [6095,5208,8017] X222123 [4247,8904,9865] X222131 [1485,9052,9173] X222132 [6935,1848,7177] X222133 [1727,12264,12385] X222211 [2289,5720,6161] X222212 [6955,3612,7837] X222213 [3171,11180,11621] X222221 [5461,7140,8989] X222222 [14535,11008,18233] X222223 [9159,21760,23609] X222231 [4053,18404,18845] X222232 [15943,5376,16825] X222233 [4935,27392,27833] X222311 [1969,15960,16081] X222312 [11115,2332,11357] X222313 [2211,20140,20261] X222321 [5141,3300,6109] X222322 [13575,13568,19193] X222323 [10759,19200,22009] X222331 [2453,24804,24925] X222332 [16263,2816,16505] X222333 [2695,29952,30073] X223111 [905,16368,16393] X223112 [9579,980,9629] X223113 [955,18228,18253] X223121 [3381,1180,3581] X223122 [9263,10584,14065] X223123 [8183,12744,15145] X223131 [1005,20188,20213] X223132 [11639,1080,11689] X223133 [1055,22248,22273] X223211 [1809,1880,2609] X223212 [4747,3996,6205] X223213 [3267,6956,7685] X223221 [5365,9828,11197] X223222 [15015,9472,17753] X223223 [8103,23296,24665] X223231 [4725,14948,15677] X223232 [15655,6912,17113] X223233 [6183,25856,26585] X223311 [1105,24408,24433] X223312 [13899,1180,13949] X223313 [1155,26668,26693] X223321 [4661,1380,4861] X223322 [12903,15104,19865] X223323 [11623,17664,21145] X223331 [1205,29028,29053] X223332 [16359,1280,16409] X223333 [1255,31488,31513] X231111 [489,13280,13289] X231112 [7387,516,7405] X231113 [507,14276,14285] X231121 [2365,588,2437] X231122 [6615,7912,10313] X231123 [6063,9016,10865] X231131 [525,15308,15317] X231132 [8455,552,8473] X231133 [543,16376,16385] X231211 [1081,840,1369] X231212 [2835,2668,3893] X231213 [2139,4060,4589] X231221 [3509,6900,7741] X231222 [9975,6032,11657] X231223 [5191,15600,16441] X231231 [3197,9396,9925] X231232 [10287,4784,11345] X231233 [4255,16848,17377] X231311 [561,17480,17489] X231312 [9595,588,9613] X231313 [579,18620,18629] X231321 [2989,660,3061] X231322 [8415,10192,13217] X231323 [7791,11440,13841] X231331 [597,19796,19805] X231332 [10807,624,10825] X231333 [615,21008,21017] X232111 [793,1776,1945] X232112 [2331,1300,2669] X232113 [1131,3700,3869] X232121 [1925,2652,3277] X232122 [5151,3800,6401] X232123 [3175,7752,8377] X232131 [1469,6300,6469] X232132 [5607,1976,5945] X232133 [1807,9576,9745] X232211 [2337,7384,7745] X232212 [7739,3420,8461] X232213 [3059,12780,13141] X232221 [5445,6308,8333] X232222 [14359,11520,18409] X232223 [9495,21248,23273] X232231 [3781,19620,19981] X232232 [16023,4864,16745] X232233 [4503,27904,28265] X232311 [2145,13528,13697] X232312 [10235,2652,10573] X232313 [2483,18156,18325] X232321 [5253,4004,6605] X232322 [13783,13056,18985] X232323 [10455,19712,22313] X232331 [2821,23460,23629] X232332 [16215,3328,16553] X232333 [3159,29440,29609] X233111 [633,22256,22265] X233112 [12091,660,12109] X233113 [651,23540,23549] X233121 [3685,732,3757] X233122 [10431,12760,16481] X233123 [9735,14152,17177] X233131 [669,24860,24869] X233132 [13447,696,13465] X233133 [687,26216,26225] X233211 [1537,984,1825] X233212 [4059,4060,5741] X233213 [3219,5740,6581] X233221 [5285,10788,12013] X233222 [15159,8960,17609] X233223 [7735,23808,25033] X233231 [4901,13860,14701] X233232 [15543,7424,17225] X233233 [6583,25344,26185] X233311 [705,27608,27617] X233312 [14875,732,14893] X233313 [723,29036,29045] X233321 [4453,804,4525] X233322 [12663,15616,20105] X233323 [11895,17152,20873] X233331 [741,30500,30509] X233332 [16375,768,16393] X233333 [759,32000,32009] X311111 [193,18624,18625] X311112 [9603,196,9605] X311113 [195,19012,19013] X311121 [2597,204,2605] X311122 [7599,9800,12401] X311123 [7399,10200,12601] X311131 [197,19404,19405] X311132 [9999,200,10001] X311133 [199,19800,19801] X311211 [825,232,857] X311212 [2291,2700,3541] X311213 [2075,3132,3757] X311221 [3429,7700,8429] X311222 [10087,5616,11545] X311223 [4887,16016,16745] X311231 [3325,8532,9157] X311232 [10191,5200,11441] X311233 [4575,16432,17057] X311311 [201,20200,20201] X311312 [10403,204,10405] X311313 [203,20604,20605] X311321 [2805,212,2813] X311322 [8215,10608,13417] X311323 [8007,11024,13625] X311331 [205,21012,21013] X311332 [10815,208,10817] X311333 [207,21424,21425] X312111 [377,336,505] X312112 [987,884,1325] X312113 [715,1428,1597] X312121 [1173,2236,2525] X312122 [3311,2040,3889] X312123 [1751,5160,5449] X312131 [1053,3196,3365] X312132 [3431,1560,3769] X312133 [1391,5640,5809] X312211 [1785,6968,7193] X312212 [6499,2460,6949] X312213 [2235,10988,11213] X312221 [4141,4260,5941] X312222 [10863,9184,14225] X312223 [7503,15904,17585] X312231 [2685,15908,16133] X312232 [12319,3360,12769] X312233 [3135,21728,21953] X312311 [1729,8760,8929] X312312 [7227,2236,7565] X312313 [2067,12556,12725] X312321 [4085,3588,5437] X312322 [10695,9632,14393] X312323 [7783,15456,17305] X312331 [2405,17028,17197] X312332 [12375,2912,12713] X312333 [2743,22176,22345] X313111 [209,21840,21841] X313112 [11235,212,11237] X313113 [211,22260,22261] X313121 [3021,220,3029] X313122 [8855,11448,14473] X313123 [8639,11880,14689] X313131 [213,22684,22685] X313132 [11663,216,11665] X313133 [215,23112,23113] X313211 [945,248,977] X313212 [2635,3132,4093] X313213 [2403,3596,4325] X313221 [3973,8964,9805] X313222 [11703,6496,13385] X313223 [5655,18592,19433] X313231 [3861,9860,10589] X313232 [11815,6048,13273] X313233 [5319,19040,19769] X313311 [217,23544,23545] X313312 [12099,220,12101] X313313 [219,23980,23981] X313321 [3245,228,3253] X313322 [9519,12320,15569] X313323 [9295,12768,15793] X313331 [221,24420,24421] X313332 [12543,224,12545] X313333 [223,24864,24865] X321111 [273,736,785] X321112 [851,420,949] X321113 [371,1380,1429] X321121 [645,812,1037] X321122 [1711,1320,2161] X321123 [1095,2552,2777] X321131 [469,2220,2269] X321132 [1887,616,1985] X321133 [567,3256,3305] X321211 [737,2184,2305] X321212 [2379,1100,2621] X321213 [979,3900,4021] X321221 [1725,2068,2693] X321222 [4559,3600,5809] X321223 [2975,6768,7393] X321231 [1221,6100,6221] X321232 [5063,1584,5305] X321233 [1463,8784,8905] X321311 [665,4488,4537] X321312 [3315,812,3413] X321313 [763,5916,5965] X321321 [1653,1204,2045] X321322 [4343,4176,6025] X321323 [3335,6192,7033] X321331 [861,7540,7589] X321332 [5135,1008,5233] X321333 [959,9360,9409] X322111 [1089,7280,7361] X322112 [5395,1332,5557] X322113 [1251,9620,9701] X322121 [2701,1980,3349] X322122 [7095,6808,9833] X322123 [5439,10120,11489] X322131 [1413,12284,12365] X322132 [8383,1656,8545] X322133 [1575,15272,15353] X322211 [2185,4248,4777] X322212 [6195,3772,7253] X322213 [3243,9676,10205] X322221 [5453,8004,9685] X322222 [14703,10496,18065] X322223 [8815,22272,23953] X322231 [4301,17220,17749] X322232 [15855,5888,16913] X322233 [5359,26880,27409] X322311 [1737,18584,18665] X322312 [12019,1980,12181] X322313 [1899,22220,22301] X322321 [5005,2628,5653] X322322 [13359,14080,19409] X322323 [11055,18688,21713] X322331 [2061,26180,26261] X322332 [16303,2304,16465] X322333 [2223,30464,30545] X323111 [1057,11376,11425] X323112 [7347,1204,7445] X323113 [1155,13588,13637] X323121 [3053,1596,3445] X323122 [8151,8600,11849] X323123 [6751,11400,13249] X323131 [1253,15996,16045] X323132 [9951,1400,10049] X323133 [1351,18600,18649] X323211 [2025,2968,3593] X323212 [5459,3900,6709] X323213 [3275,8268,8893] X323221 [5421,8900,10421] X323222 [14863,9984,17905] X323223 [8463,22784,24305] X323231 [4525,16068,16693] X323232 [15759,6400,17009] X323233 [5775,26368,26993] X323311 [1449,21400,21449] X323312 [12947,1596,13045] X323313 [1547,24396,24445] X323321 [4845,1988,5237] X323322 [13135,14592,19633] X323323 [11343,18176,21425] X323331 [1645,27588,27637] X323332 [16335,1792,16433] X323333 [1743,30976,31025] X331111 [225,25312,25313] X331112 [12995,228,12997] X331113 [227,25764,25765] X331121 [3477,236,3485] X331122 [10207,13224,16705] X331123 [9975,13688,16937] X331131 [229,26220,26221] X331132 [13455,232,13457] X331133 [231,26680,26681] X331211 [1073,264,1105] X331212 [3003,3596,4685] X331213 [2755,4092,4933] X331221 [4557,10324,11285] X331222 [13439,7440,15361] X331223 [6479,21360,22321] X331231 [4437,11284,12125] X331232 [13559,6960,15241] X331233 [6119,21840,22681] X331311 [233,27144,27145] X331312 [13923,236,13925] X331313 [235,27612,27613] X331321 [3717,244,3725] X331322 [10919,14160,17881] X331323 [10679,14640,18121] X331331 [237,28084,28085] X331332 [14399,240,14401] X331333 [239,28560,28561] X332111 [465,368,593] X332112 [1219,1140,1669] X332113 [915,1748,1973] X332121 [1501,2940,3301] X332122 [4263,2584,4985] X332123 [2223,6664,7025] X332131 [1365,4028,4253] X332132 [4399,2040,4849] X332133 [1815,7208,7433] X332211 [2329,9240,9529] X332212 [8547,3196,9125] X332213 [2907,14476,14765] X332221 [5405,5508,7717] X332222 [14175,12032,18593] X332223 [9823,20736,22945] X332231 [3485,20868,21157] X332232 [16095,4352,16673] X332233 [4063,28416,28705] X332311 [2265,11288,11513] X332312 [9379,2940,9829] X332313 [2715,16268,16493] X332321 [5341,4740,7141] X332322 [13983,12544,18785] X332323 [10143,20224,22625] X332331 [3165,22148,22373] X332332 [16159,3840,16609] X332333 [3615,28928,29153] X333111 [241,29040,29041] X333112 [14883,244,14885] X333113 [243,29524,29525] X333121 [3965,252,3973] X333122 [11655,15128,19097] X333123 [11407,15624,19345] X333131 [245,30012,30013] X333132 [15375,248,15377] X333133 [247,30504,30505] X333211 [1209,280,1241] X333212 [3395,4092,5317] X333213 [3131,4620,5581] X333221 [5181,11780,12869] X333222 [15295,8448,17473] X333223 [7359,24320,25409] X333231 [5053,12804,13765] X333232 [15423,7936,17345] X333233 [6975,24832,25793] X333311 [249,31000,31001] X333312 [15875,252,15877] X333313 [251,31500,31501] X333321 [4221,260,4229] X333322 [12415,16128,20353] X333323 [12159,16640,20609] X333331 [253,32004,32005] X333332 [16383,256,16385] X333333 [255,32512,32513] ---------------- X1111111 [257,33024,33025] X1111112 [16899,260,16901] X1111113 [259,33540,33541] X1111121 [4485,268,4493] X1111122 [13199,17160,21649] X1111123 [12935,17688,21913] X1111131 [261,34060,34061] X1111132 [17423,264,17425] X1111133 [263,34584,34585] X1111211 [1353,296,1385] X1111212 [3811,4620,5989] X1111213 [3531,5180,6269] X1111221 [5845,13332,14557] X1111222 [17271,9520,19721] X1111223 [8295,27472,28697] X1111231 [5709,14420,15509] X1111232 [17407,8976,19585] X1111233 [7887,28016,29105] X1111311 [265,35112,35113] X1111312 [17955,268,17957] X1111313 [267,35644,35645] X1111321 [4757,276,4765] X1111322 [14007,18224,22985] X1111323 [13735,18768,23257] X1111331 [269,36180,36181] X1111332 [18495,272,18497] X1111333 [271,36720,36721] X1112111 [561,400,689] X1112112 [1475,1428,2053] X1112113 [1139,2100,2389] X1112121 [1869,3740,4181] X1112122 [5335,3192,6217] X1112123 [2751,8360,8801] X1112131 [1717,4956,5245] X1112132 [5487,2584,6065] X1112133 [2295,8968,9257] X1112211 [2945,11832,12193] X1112212 [10875,4028,11597] X1112213 [3667,18444,18805] X1112221 [6837,6916,9725] X1112222 [17927,15264,23545] X1112223 [12455,26208,29017] X1112231 [4389,26500,26861] X1112232 [20375,5472,21097] X1112233 [5111,36000,36361] X1112311 [2873,14136,14425] X1112312 [11811,3740,12389] X1112313 [3451,20460,20749] X1112321 [6765,6052,9077] X1112322 [17711,15840,23761] X1112323 [12815,25632,28657] X1112331 [4029,27940,28229] X1112332 [20447,4896,21025] X1112333 [4607,36576,36865] X1113111 [273,37264,37265] X1113112 [19043,276,19045] X1113113 [275,37812,37813] X1113121 [5037,284,5045] X1113122 [14839,19320,24361] X1113123 [14559,19880,24641] X1113131 [277,38364,38365] X1113132 [19599,280,19601] X1113133 [279,38920,38921] X1113211 [1505,312,1537] X1113212 [4251,5180,6701] X1113213 [3955,5772,6997] X1113221 [6549,14980,16349] X1113222 [19367,10656,22105] X1113223 [9287,30816,32185] X1113231 [6405,16132,17357] X1113232 [19511,10080,21961] X1113233 [8855,31392,32617] X1113311 [281,39480,39481] X1113312 [20163,284,20165] X1113313 [283,40044,40045] X1113321 [5325,292,5333] X1113322 [15695,20448,25777] X1113323 [15407,21024,26065] X1113331 [285,40612,40613] X1113332 [20735,288,20737] X1113333 [287,41184,41185] X1121111 [369,800,881] X1121112 [1075,612,1237] X1121113 [531,1700,1781] X1121121 [901,1260,1549] X1121122 [2415,1768,2993] X1121123 [1479,3640,3929] X1121131 [693,2924,3005] X1121132 [2623,936,2785] X1121133 [855,4472,4553] X1121211 [1105,3528,3697] X1121212 [3675,1612,4013] X1121213 [1443,6076,6245] X1121221 [2573,2964,3925] X1121222 [6783,5456,8705] X1121223 [4495,10032,10993] X1121231 [1781,9300,9469] X1121232 [7575,2288,7913] X1121233 [2119,13200,13369] X1121311 [1017,6344,6425] X1121312 [4819,1260,4981] X1121313 [1179,8540,8621] X1121321 [2485,1908,3133] X1121322 [6519,6160,8969] X1121323 [4935,9328,10553] X1121331 [1341,11060,11141] X1121332 [7663,1584,7825] X1121333 [1503,13904,13985] X1122111 [1705,11952,12073] X1122112 [8715,2068,8957] X1122113 [1947,15604,15725] X1122121 [4277,3036,5245] X1122122 [11247,10904,15665] X1122123 [8695,16008,18217] X1122131 [2189,19740,19861] X1122132 [13335,2552,13577] X1122133 [2431,24360,24481] X1122211 [3393,6424,7265] X1122212 [9563,5916,11245] X1122213 [5075,14892,15733] X1122221 [8517,12644,15245] X1122222 [22999,16320,28201] X1122223 [13719,34880,37481] X1122231 [6757,26724,27565] X1122232 [24759,9280,26441] X1122233 [8439,41920,42761] X1122311 [2673,29464,29585] X1122312 [18923,3036,19165] X1122313 [2915,35052,35173] X1122321 [7797,4004,8765] X1122322 [20839,22080,30361] X1122323 [17319,29120,33881] X1122331 [3157,41124,41245] X1122332 [25479,3520,25721] X1122333 [3399,47680,47801] X1123111 [1665,17072,17153] X1123112 [11155,1908,11317] X1123113 [1827,20564,20645] X1123121 [4717,2556,5365] X1123122 [12567,13144,18185] X1123123 [10335,17608,20417] X1123131 [1989,24380,24461] X1123132 [15295,2232,15457] X1123133 [2151,28520,28601] X1123211 [3193,4824,5785] X1123212 [8643,6076,10565] X1123213 [5115,13132,14093] X1123221 [8477,13764,16165] X1123222 [23199,15680,28001] X1123223 [13279,35520,37921] X1123231 [7037,25284,26245] X1123232 [24639,9920,26561] X1123233 [8959,41280,42241] X1123311 [2313,32984,33065] X1123312 [20083,2556,20245] X1123313 [2475,37772,37853] X1123321 [7597,3204,8245] X1123322 [20559,22720,30641] X1123323 [17679,28480,33521] X1123331 [2637,42884,42965] X1123332 [25519,2880,25681] X1123333 [2799,48320,48401] X1131111 [289,41760,41761] X1131112 [21315,292,21317] X1131113 [291,42340,42341] X1131121 [5621,300,5629] X1131122 [16575,21608,27233] X1131123 [16279,22200,27529] X1131131 [293,42924,42925] X1131132 [21903,296,21905] X1131133 [295,43512,43513] X1131211 [1665,328,1697] X1131212 [4715,5772,7453] X1131213 [4403,6396,7765] X1131221 [7293,16724,18245] X1131222 [21583,11856,24625] X1131223 [10335,34352,35873] X1131231 [7141,17940,19309] X1131232 [21735,11248,24473] X1131233 [9879,34960,36329] X1131311 [297,44104,44105] X1131312 [22499,300,22501] X1131313 [299,44700,44701] X1131321 [5925,308,5933] X1131322 [17479,22800,28729] X1131323 [17175,23408,29033] X1131331 [301,45300,45301] X1131332 [23103,304,23105] X1131333 [303,45904,45905] X1132111 [665,432,793] X1132112 [1755,1748,2477] X1132113 [1387,2484,2845] X1132121 [2277,4636,5165] X1132122 [6527,3864,7585] X1132123 [3335,10248,10777] X1132131 [2109,5980,6341] X1132132 [6695,3192,7417] X1132133 [2831,10920,11281] X1132211 [3633,14744,15185] X1132212 [13483,4956,14365] X1132213 [4515,22892,23333] X1132221 [8437,8484,11965] X1132222 [22119,18880,29081] X1132223 [15399,32320,35801] X1132231 [5397,32804,33245] X1132232 [25159,6720,26041] X1132233 [6279,44480,44921] X1132311 [3553,17304,17665] X1132312 [14523,4636,15245] X1132313 [4275,25132,25493] X1132321 [8357,7524,11245] X1132322 [21879,19520,29321] X1132323 [15799,31680,35401] X1132331 [4997,34404,34765] X1132332 [25239,6080,25961] X1132333 [5719,45120,45481] X1133111 [305,46512,46513] X1133112 [23715,308,23717] X1133113 [307,47124,47125] X1133121 [6237,316,6245] X1133122 [18407,24024,30265] X1133123 [18095,24648,30577] X1133131 [309,47740,47741] X1133132 [24335,312,24337] X1133133 [311,48360,48361] X1133211 [1833,344,1865] X1133212 [5203,6396,8245] X1133213 [4875,7052,8573] X1133221 [8077,18564,20245] X1133222 [23919,13120,27281] X1133223 [11439,38080,39761] X1133231 [7917,19844,21365] X1133232 [24079,12480,27121] X1133233 [10959,38720,40241] X1133311 [313,48984,48985] X1133312 [24963,316,24965] X1133313 [315,49612,49613] X1133321 [6557,324,6565] X1133322 [19359,25280,31841] X1133323 [19039,25920,32161] X1133331 [317,50244,50245] X1133332 [25599,320,25601] X1133333 [319,50880,50881] X1211111 [345,2368,2393] X1211112 [1739,420,1789] X1211113 [395,3108,3133] X1211121 [861,620,1061] X1211122 [2263,2184,3145] X1211123 [1743,3224,3665] X1211131 [445,3948,3973] X1211132 [2679,520,2729] X1211133 [495,4888,4913] X1211211 [689,1320,1489] X1211212 [1947,1196,2285] X1211213 [1027,3036,3205] X1211221 [1725,2548,3077] X1211222 [4655,3312,5713] X1211223 [2783,7056,7585] X1211231 [1365,5428,5597] X1211232 [5015,1872,5353] X1211233 [1703,8496,8665] X1211311 [545,5928,5953] X1211312 [3819,620,3869] X1211313 [595,7068,7093] X1211321 [1581,820,1781] X1211322 [4223,4464,6145] X1211323 [3503,5904,6865] X1211331 [645,8308,8333] X1211332 [5159,720,5209] X1211333 [695,9648,9673] X1212111 [801,3920,4001] X1212112 [3283,1044,3445] X1212113 [963,5684,5765] X1212121 [1885,1692,2533] X1212122 [4935,4408,6617] X1212123 [3567,7144,7985] X1212131 [1125,7772,7853] X1212132 [5695,1368,5857] X1212133 [1287,10184,10265] X1212211 [1729,3960,4321] X1212212 [5115,2812,5837] X1212213 [2451,8140,8501] X1212221 [4181,5700,7069] X1212222 [11175,8288,13913] X1212223 [6919,16800,18169] X1212231 [3173,13764,14125] X1212232 [12183,4256,12905] X1212233 [3895,20832,21193] X1212311 [1449,12920,13001] X1212312 [8755,1692,8917] X1212313 [1611,15980,16061] X1212321 [3901,2340,4549] X1212322 [10335,10528,14753] X1212323 [8319,14560,16769] X1212331 [1773,19364,19445] X1212332 [12463,2016,12625] X1212333 [1935,23072,23153] X1213111 [745,11088,11113] X1213112 [6699,820,6749] X1213113 [795,12628,12653] X1213121 [2501,1020,2701] X1213122 [6783,7544,10145] X1213123 [5863,9384,11065] X1213131 [845,14268,14293] X1213132 [8439,920,8489] X1213133 [895,16008,16033] X1213211 [1449,1720,2249] X1213212 [3827,3036,4885] X1213213 [2507,5676,6205] X1213221 [4125,7268,8357] X1213222 [11455,7392,13633] X1213223 [6303,17696,18785] X1213231 [3565,11748,12277] X1213232 [12015,5152,13073] X1213233 [4623,19936,20465] X1213311 [945,17848,17873] X1213312 [10379,1020,10429] X1213313 [995,19788,19813] X1213321 [3621,1220,3821] X1213322 [9943,11424,15145] X1213323 [8823,13664,16265] X1213331 [1045,21828,21853] X1213332 [12519,1120,12569] X1213333 [1095,23968,23993] X1221111 [1169,13920,13969] X1221112 [8787,1316,8885] X1221113 [1267,16356,16405] X1221121 [3525,1708,3917] X1221122 [9455,10152,13873] X1221123 [7943,13176,15385] X1221131 [1365,18988,19037] X1221132 [11615,1512,11713] X1221133 [1463,21816,21865] X1221211 [2241,3080,3809] X1221212 [5995,4428,7453] X1221213 [3699,9020,9749] X1221221 [6109,10260,11941] X1221222 [16815,11152,20177] X1221223 [9471,25840,27521] X1221231 [5157,17876,18605] X1221232 [17767,7344,19225] X1221233 [6615,29648,30377] X1221311 [1561,24840,24889] X1221312 [14835,1708,14933] X1221313 [1659,28060,28109] X1221321 [5429,2100,5821] X1221322 [14775,16592,22217] X1221323 [12871,20400,24121] X1221331 [1757,31476,31525] X1221332 [18447,1904,18545] X1221333 [1855,35088,35137] X1222111 [2193,8176,8465] X1222112 [7811,3060,8389] X1222113 [2771,13140,13429] X1222121 [5085,5372,7397] X1222122 [13351,11160,17401] X1222123 [9135,19592,21617] X1222131 [3349,19260,19549] X1222132 [15087,4216,15665] X1222133 [3927,26536,26825] X1222211 [5177,13464,14425] X1222212 [15939,8060,17861] X1222213 [7099,25740,26701] X1222221 [12285,15748,19973] X1222222 [32639,24960,41089] X1222223 [20735,48768,52993] X1222231 [9021,41860,42821] X1222232 [35903,11904,37825] X1222233 [10943,61824,62785] X1222311 [4505,34968,35257] X1222312 [24675,5372,25253] X1222313 [5083,44556,44845] X1222321 [11613,7684,13925] X1222322 [30623,30336,43105] X1222323 [24095,43392,49633] X1222331 [5661,55300,55589] X1222332 [36575,6528,37153] X1222333 [6239,67200,67489] X1223111 [1953,38896,38945] X1223112 [22451,2100,22549] X1223113 [2051,42900,42949] X1223121 [7725,2492,8117] X1223122 [21271,24600,32521] X1223123 [18975,29192,34817] X1223131 [2149,47100,47149] X1223132 [26847,2296,26945] X1223133 [2247,51496,51545] X1223211 [3977,3864,5545] X1223212 [10419,9020,13781] X1223213 [7339,15180,16861] X1223221 [12045,22468,25493] X1223222 [33839,21120,39889] X1223223 [18095,52608,55633] X1223231 [10701,33220,34901] X1223232 [35183,15744,38545] X1223233 [14063,57984,59665] X1223311 [2345,56088,56137] X1223312 [31635,2492,31733] X1223313 [2443,60876,60925] X1223321 [10413,2884,10805] X1223322 [28943,34176,44785] X1223323 [26255,39552,47473] X1223331 [2541,65860,65909] X1223332 [36815,2688,36913] X1223333 [2639,71040,71089] X1231111 [1145,26208,26233] X1231112 [14859,1220,14909] X1231113 [1195,28548,28573] X1231121 [4941,1420,5141] X1231122 [13703,16104,21145] X1231123 [12383,18744,22465] X1231131 [1245,30988,31013] X1231132 [17399,1320,17449] X1231133 [1295,33528,33553] X1231211 [2409,2120,3209] X1231212 [6307,5676,8485] X1231213 [4587,9116,10205] X1231221 [7525,14388,16237] X1231222 [21255,13072,24953] X1231223 [11223,33136,34985] X1231231 [6765,20468,21557] X1231232 [22015,10032,24193] X1231233 [8943,36176,37265] X1231311 [1345,36168,36193] X1231312 [20139,1420,20189] X1231313 [1395,38908,38933] X1231321 [6461,1620,6661] X1231322 [18063,21584,28145] X1231323 [16543,24624,29665] X1231331 [1445,41748,41773] X1231332 [23079,1520,23129] X1231333 [1495,44688,44713] X1232111 [1881,4720,5081] X1232112 [5723,2964,6445] X1232113 [2603,9204,9565] X1232121 [4485,5852,7373] X1232122 [11935,9048,14977] X1232123 [7527,17864,19385] X1232131 [3325,15132,15493] X1232132 [13095,4408,13817] X1232133 [4047,22504,22865] X1232211 [5249,15960,16801] X1232212 [17115,7772,18797] X1232213 [6931,28140,28981] X1232221 [12261,14500,18989] X1232222 [32375,25728,41353] X1232223 [21239,48000,52489] X1232231 [8613,43684,44525] X1232232 [36023,11136,37705] X1232233 [10295,62592,63433] X1232311 [4769,31320,31681] X1232312 [23355,5852,24077] X1232313 [5491,41580,41941] X1232321 [11781,8740,14669] X1232322 [30935,29568,42793] X1232323 [23639,44160,50089] X1232331 [6213,53284,53645] X1232332 [36503,7296,37225] X1232333 [6935,66432,66793] X1233111 [1545,47728,47753] X1233112 [26219,1620,26269] X1233113 [1595,50868,50893] X1233121 [8181,1820,8381] X1233122 [23023,27864,36145] X1233123 [21303,31304,37865] X1233131 [1645,54108,54133] X1233132 [29559,1720,29609] X1233133 [1695,57448,57473] X1233211 [3569,2520,4369] X1233212 [9387,9116,13085] X1233213 [7267,13356,15205] X1233221 [11925,23908,26717] X1233222 [34055,20352,39673] X1233223 [17543,53376,56185] X1233231 [10965,31588,33437] X1233232 [35015,16512,38713] X1233233 [14663,57216,59065] X1233311 [1745,60888,60913] X1233312 [33099,1820,33149] X1233313 [1795,64428,64453] X1233321 [10101,2020,10301] X1233322 [28583,34944,45145] X1233323 [26663,38784,47065] X1233331 [1845,68068,68093] X1233332 [36839,1920,36889] X1233333 [1895,71808,71833] X1311111 [321,51520,51521] X1311112 [26243,324,26245] X1311113 [323,52164,52165] X1311121 [6885,332,6893] X1311122 [20335,26568,33457] X1311123 [20007,27224,33785] X1311131 [325,52812,52813] X1311132 [26895,328,26897] X1311133 [327,53464,53465] X1311211 [2009,360,2041] X1311212 [5715,7052,9077] X1311213 [5371,7740,9421] X1311221 [8901,20500,22349] X1311222 [26375,14448,30073] X1311223 [12599,42000,43849] X1311231 [8733,21844,23525] X1311232 [26543,13776,29905] X1311233 [12095,42672,44353] X1311311 [329,54120,54121] X1311312 [27555,332,27557] X1311313 [331,54780,54781] X1311321 [7221,340,7229] X1311322 [21335,27888,35113] X1311323 [20999,28560,35449] X1311331 [333,55444,55445] X1311332 [28223,336,28225] X1311333 [335,56112,56113] X1312111 [777,464,905] X1312112 [2059,2100,2941] X1312113 [1659,2900,3341] X1312121 [2725,5628,6253] X1312122 [7839,4600,9089] X1312123 [3975,12328,12953] X1312131 [2541,7100,7541] X1312132 [8023,3864,8905] X1312133 [3423,13064,13505] X1312211 [4393,17976,18505] X1312212 [16371,5980,17429] X1312213 [5451,27820,28349] X1312221 [10205,10212,14437] X1312222 [26751,22880,35201] X1312223 [18655,39072,43297] X1312231 [6509,39780,40309] X1312232 [30447,8096,31505] X1312233 [7567,53856,54385] X1312311 [4305,20792,21233] X1312312 [17515,5628,18397] X1312313 [5187,30284,30725] X1312321 [10117,9156,13645] X1312322 [26487,23584,35465] X1312323 [19095,38368,42857] X1312331 [6069,41540,41981] X1312332 [30535,7392,31417] X1312333 [6951,54560,55001] X1313111 [337,56784,56785] X1313112 [28899,340,28901] X1313113 [339,57460,57461] X1313121 [7565,348,7573] X1313122 [22359,29240,36809] X1313123 [22015,29928,37153] X1313131 [341,58140,58141] X1313132 [29583,344,29585] X1313133 [343,58824,58825] X1313211 [2193,376,2225] X1313212 [6251,7740,9949] X1313213 [5891,8460,10309] X1313221 [9765,22532,24557] X1313222 [28951,15840,33001] X1313223 [13815,46112,48137] X1313231 [9589,23940,25789] X1313232 [29127,15136,32825] X1313233 [13287,46816,48665] X1313311 [345,59512,59513] X1313312 [30275,348,30277] X1313313 [347,60204,60205] X1313321 [7917,356,7925] X1313322 [23407,30624,38545] X1313323 [23055,31328,38897] X1313331 [349,60900,60901] X1313332 [30975,352,30977] X1313333 [351,61600,61601] X1321111 [473,864,985] X1321112 [1323,836,1565] X1321113 [715,2052,2173] X1321121 [1197,1804,2165] X1321122 [3239,2280,3961] X1321123 [1919,4920,5281] X1321131 [957,3724,3845] X1321132 [3479,1320,3721] X1321133 [1199,5880,6001] X1321211 [1545,5192,5417] X1321212 [5251,2220,5701] X1321213 [1995,8732,8957] X1321221 [3589,4020,5389] X1321222 [9447,7696,12185] X1321223 [6327,13936,15305] X1321231 [2445,13172,13397] X1321232 [10591,3120,11041] X1321233 [2895,18512,18737] X1321311 [1441,8520,8641] X1321312 [6603,1804,6845] X1321313 [1683,11644,11765] X1321321 [3485,2772,4453] X1321322 [9135,8528,12497] X1321323 [6847,13104,14785] X1321331 [1925,15252,15373] X1321332 [10695,2288,10937] X1321333 [2167,19344,19465] X1322111 [2457,17776,17945] X1322112 [12827,2964,13165] X1322113 [2795,23028,23197] X1322121 [6213,4316,7565] X1322122 [16351,15960,22849] X1322123 [12711,23240,26489] X1322131 [3133,28956,29125] X1322132 [19431,3640,19769] X1322133 [3471,35560,35729] X1322211 [4865,9048,10273] X1322212 [13659,8540,16109] X1322213 [7315,21228,22453] X1322221 [12261,18340,22061] X1322222 [33143,23424,40585] X1322223 [19703,50304,54025] X1322231 [9765,38308,39533] X1322232 [35639,13440,38089] X1322233 [12215,60288,61513] X1322311 [3809,42840,43009] X1322312 [27387,4316,27725] X1322313 [4147,50796,50965] X1322321 [11205,5668,12557] X1322322 [29975,31872,43753] X1322323 [24983,41856,48745] X1322331 [4485,59428,59597] X1322332 [36695,4992,37033] X1322333 [4823,68736,68905] X1323111 [2409,23920,24041] X1323112 [15755,2772,15997] X1323113 [2651,28980,29101] X1323121 [6741,3740,7709] X1323122 [17935,18648,25873] X1323123 [14679,25160,29129] X1323131 [2893,34524,34645] X1323132 [21783,3256,22025] X1323133 [3135,40552,40673] X1323211 [4625,7128,8497] X1323212 [12555,8732,15293] X1323213 [7363,19116,20485] X1323221 [12213,19684,23165] X1323222 [33383,22656,40345] X1323223 [19175,51072,54553] X1323231 [10101,36580,37949] X1323232 [35495,14208,38233] X1323233 [12839,59520,60889] X1323311 [3377,47064,47185] X1323312 [28779,3740,29021] X1323313 [3619,54060,54181] X1323321 [10965,4708,11933] X1323322 [29639,32640,44089] X1323323 [25415,41088,48313] X1323331 [3861,61540,61661] X1323332 [36743,4224,36985] X1323333 [4103,69504,69625] X1331111 [353,62304,62305] X1331112 [31683,356,31685] X1331113 [355,63012,63013] X1331121 [8277,364,8285] X1331122 [24479,32040,40321] X1331123 [24119,32760,40681] X1331131 [357,63724,63725] X1331132 [32399,360,32401] X1331133 [359,64440,64441] X1331211 [2385,392,2417] X1331212 [6811,8460,10861] X1331213 [6435,9212,11237] X1331221 [10669,24660,26869] X1331222 [31647,17296,36065] X1331223 [15087,50416,52625] X1331231 [10485,26132,28157] X1331232 [31831,16560,35881] X1331233 [14535,51152,53177] X1331311 [361,65160,65161] X1331312 [33123,364,33125] X1331313 [363,65884,65885] X1331321 [8645,372,8653] X1331322 [25575,33488,42137] X1331323 [25207,34224,42505] X1331331 [365,66612,66613] X1331332 [33855,368,33857] X1331333 [367,67344,67345] X1332111 [897,496,1025] X1332112 [2387,2484,3445] X1332113 [1955,3348,3877] X1332121 [3213,6716,7445] X1332122 [9271,5400,10729] X1332123 [4671,14600,15329] X1332131 [3013,8316,8845] X1332132 [9471,4600,10529] X1332133 [4071,15400,15929] X1332211 [5225,21528,22153] X1332212 [19539,7100,20789] X1332213 [6475,33228,33853] X1332221 [12141,12100,17141] X1332222 [31823,27264,41905] X1332223 [22223,46464,51505] X1332231 [7725,47428,48053] X1332232 [36239,9600,37489] X1332233 [8975,64128,64753] X1332311 [5129,24600,25129] X1332312 [20787,6716,21845] X1332313 [6187,35916,36445] X1332321 [12045,10948,16277] X1332322 [31535,28032,42193] X1332323 [22703,45696,51025] X1332331 [7245,49348,49877] X1332332 [36335,8832,37393] X1332333 [8303,64896,65425] X1333111 [369,68080,68081] X1333112 [34595,372,34597] X1333113 [371,68820,68821] X1333121 [9021,380,9029] X1333122 [26695,34968,43993] X1333123 [26319,35720,44369] X1333131 [373,69564,69565] X1333132 [35343,376,35345] X1333133 [375,70312,70313] X1333211 [2585,408,2617] X1333212 [7395,9212,11813] X1333213 [7003,9996,12205] X1333221 [11613,26884,29285] X1333222 [34463,18816,39265] X1333223 [16415,54912,57313] X1333231 [11421,28420,30629] X1333232 [34655,18048,39073] X1333233 [15839,55680,57889] X1333311 [377,71064,71065] X1333312 [36099,380,36101] X1333313 [379,71820,71821] X1333321 [9405,388,9413] X1333322 [27839,36480,45889] X1333323 [27455,37248,46273] X1333331 [381,72580,72581] X1333332 [36863,384,36865] X1333333 [383,73344,73345] X2111111 [393,8576,8585] X2111112 [4891,420,4909] X2111113 [411,9380,9389] X2111121 [1645,492,1717] X2111122 [4551,5320,7001] X2111123 [4095,6232,7457] X2111131 [429,10220,10229] X2111132 [5767,456,5785] X2111133 [447,11096,11105] X2111211 [817,744,1105] X2111212 [2139,1900,2861] X2111213 [1539,3100,3461] X2111221 [2525,4788,5413] X2111222 [7119,4400,8369] X2111223 [3775,11088,11713] X2111231 [2261,6900,7261] X2111232 [7383,3344,8105] X2111233 [2983,12144,12505] X2111311 [465,12008,12017] X2111312 [6715,492,6733] X2111313 [483,12956,12965] X2111321 [2173,564,2245] X2111322 [6063,7216,9425] X2111323 [5535,8272,9953] X2111331 [501,13940,13949] X2111332 [7735,528,7753] X2111333 [519,14960,14969] X2112111 [649,1680,1801] X2112112 [1995,1012,2237] X2112113 [891,3220,3341] X2112121 [1541,1980,2509] X2112122 [4095,3128,5153] X2112123 [2599,6120,6649] X2112131 [1133,5244,5365] X2112132 [4503,1496,4745] X2112133 [1375,7752,7873] X2112211 [1785,5368,5657] X2112212 [5795,2652,6373] X2112213 [2363,9516,9805] X2112221 [4173,4964,6485] X2112222 [11023,8736,14065] X2112223 [7215,16352,17873] X2112231 [2941,14820,15109] X2112232 [12255,3808,12833] X2112233 [3519,21280,21569] X2112311 [1617,10744,10865] X2112312 [7979,1980,8221] X2112313 [1859,14220,14341] X2112321 [4005,2948,4973] X2112322 [10519,10080,14569] X2112323 [8055,15008,17033] X2112331 [2101,18180,18301] X2112332 [12423,2464,12665] X2112333 [2343,22624,22745] X2113111 [537,16016,16025] X2113112 [8827,564,8845] X2113113 [555,17108,17117] X2113121 [2773,636,2845] X2113122 [7791,9400,12209] X2113123 [7191,10600,12809] X2113131 [573,18236,18245] X2113132 [9991,600,10009] X2113133 [591,19400,19409] X2113211 [1225,888,1513] X2113212 [3219,3100,4469] X2113213 [2475,4588,5213] X2113221 [4061,8100,9061] X2113222 [11583,6944,13505] X2113223 [5983,18144,19105] X2113231 [3725,10788,11413] X2113232 [11919,5600,13169] X2113233 [4975,19488,20113] X2113311 [609,20600,20609] X2113312 [11227,636,11245] X2113313 [627,21836,21845] X2113321 [3445,708,3517] X2113322 [9735,11872,15353] X2113323 [9063,13216,16025] X2113331 [645,23108,23117] X2113332 [12535,672,12553] X2113333 [663,24416,24425] X2121111 [721,5280,5329] X2121112 [3795,868,3893] X2121113 [819,6820,6869] X2121121 [1829,1260,2221] X2121122 [4815,4712,6737] X2121123 [3751,6840,7801] X2121131 [917,8556,8605] X2121132 [5727,1064,5825] X2121133 [1015,10488,10537] X2121211 [1425,2632,2993] X2121212 [3995,2508,4717] X2121213 [2147,6204,6565] X2121221 [3597,5396,6485] X2121222 [9727,6864,11905] X2121223 [5775,14768,15857] X2121231 [2869,11220,11581] X2121232 [10455,3952,11177] X2121233 [3591,17680,18041] X2121311 [1113,12616,12665] X2121312 [8051,1260,8149] X2121313 [1211,14940,14989] X2121321 [3285,1652,3677] X2121322 [8791,9360,12841] X2121323 [7335,12272,14297] X2121331 [1309,17460,17509] X2121332 [10767,1456,10865] X2121333 [1407,20176,20225] X2122111 [1625,7728,7897] X2122112 [6555,2132,6893] X2122113 [1963,11316,11485] X2122121 [3813,3484,5165] X2122122 [9983,8856,13345] X2122123 [7175,14472,16153] X2122131 [2301,15580,15749] X2122132 [11495,2808,11833] X2122133 [2639,20520,20689] X2122211 [3537,8216,8945] X2122212 [10507,5724,11965] X2122213 [4995,16748,17477] X2122221 [8533,11556,14365] X2122222 [22791,16960,28409] X2122223 [14151,34240,37049] X2122231 [6453,28196,28925] X2122232 [24871,8640,26329] X2122233 [7911,42560,43289] X2122311 [2977,26136,26305] X2122312 [17787,3484,18125] X2122313 [3315,32428,32597] X2122321 [7973,4836,9325] X2122322 [21111,21440,30089] X2122323 [16951,29760,34249] X2122331 [3653,39396,39565] X2122332 [25431,4160,25769] X2122333 [3991,47040,47209] X2123111 [1505,23088,23137] X2123112 [13875,1652,13973] X2123113 [1603,26196,26245] X2123121 [5133,2044,5525] X2123122 [13943,15576,20905] X2123123 [12095,19272,22753] X2123131 [1701,29500,29549] X2123132 [17375,1848,17473] X2123133 [1799,33000,33049] X2123211 [2937,3416,4505] X2123212 [7747,6204,9925] X2123213 [5115,11468,12557] X2123221 [8413,14916,17125] X2123222 [23391,15040,27809] X2123223 [12831,36160,38369] X2123231 [7293,23876,24965] X2123232 [24511,10560,26689] X2123233 [9471,40640,41729] X2123311 [1897,36696,36745] X2123312 [21267,2044,21365] X2123313 [1995,40588,40637] X2123321 [7373,2436,7765] X2123322 [20271,23360,30929] X2123323 [18031,27840,33169] X2123331 [2093,44676,44725] X2123332 [25551,2240,25649] X2123333 [2191,48960,49009] X2131111 [681,25760,25769] X2131112 [13915,708,13933] X2131113 [699,27140,27149] X2131121 [4189,780,4261] X2131122 [11895,14632,18857] X2131123 [11151,16120,19601] X2131131 [717,28556,28565] X2131132 [15367,744,15385] X2131133 [735,30008,30017] X2131211 [1705,1032,1993] X2131212 [4515,4588,6437] X2131213 [3627,6364,7325] X2131221 [5957,12276,13645] X2131222 [17127,10064,19865] X2131223 [8695,26928,28297] X2131231 [5549,15540,16501] X2131232 [17535,8432,19457] X2131233 [7471,28560,29521] X2131311 [753,31496,31505] X2131312 [16891,780,16909] X2131313 [771,33020,33029] X2131321 [5005,852,5077] X2131322 [14271,17680,22721] X2131323 [13455,19312,23537] X2131331 [789,34580,34589] X2131332 [18487,816,18505] X2131333 [807,36176,36185] X2132111 [1105,1968,2257] X2132112 [3075,1972,3653] X2132113 [1683,4756,5045] X2132121 [2813,4284,5125] X2132122 [7623,5336,9305] X2132123 [4495,11592,12433] X2132131 [2261,8700,8989] X2132132 [8175,3128,8753] X2132133 [2839,13800,14089] X2132211 [3657,12376,12905] X2132212 [12467,5244,13525] X2132213 [4715,20748,21277] X2132221 [8493,9476,12725] X2132222 [22351,18240,28849] X2132223 [14991,32960,36209] X2132231 [5773,31236,31765] X2132232 [25071,7360,26129] X2132233 [6831,43840,44369] X2132311 [3417,20056,20345] X2132312 [15587,4284,16165] X2132313 [3995,27468,27757] X2132321 [8253,6596,10565] X2132322 [21631,20160,29569] X2132323 [16191,31040,35009] X2132331 [4573,36036,36325] X2132332 [25311,5440,25889] X2132333 [5151,45760,46049] X2133111 [825,37808,37817] X2133112 [20155,852,20173] X2133113 [843,39476,39485] X2133121 [5893,924,5965] X2133122 [16863,21016,26945] X2133123 [15975,22792,27833] X2133131 [861,41180,41189] X2133132 [21895,888,21913] X2133133 [879,42920,42929] X2133211 [2257,1176,2545] X2133212 [6027,6364,8765] X2133213 [4995,8428,9797] X2133221 [8213,17316,19165] X2133222 [23751,13760,27449] X2133223 [11911,37440,39289] X2133231 [7733,21156,22525] X2133232 [24231,11840,26969] X2133233 [10471,39360,40729] X2133311 [897,44696,44705] X2133312 [23707,924,23725] X2133313 [915,46508,46517] X2133321 [6853,996,6925] X2133322 [19671,24640,31529] X2133323 [18711,26560,32489] X2133331 [933,48356,48365] X2133332 [25591,960,25609] X2133333 [951,50240,50249] X2211111 [985,19392,19417] X2211112 [11211,1060,11261] X2211113 [1035,21412,21437] X2211121 [3869,1260,4069] X2211122 [10647,12296,16265] X2211123 [9487,14616,17425] X2211131 [1085,23532,23557] X2211132 [13431,1160,13481] X2211133 [1135,25752,25777] X2211211 [2001,1960,2801] X2211212 [5243,4524,6925] X2211213 [3683,7644,8485] X2211221 [6045,11252,12773] X2211222 [16975,10608,20017] X2211223 [9087,26384,27905] X2211231 [5365,16692,17533] X2211232 [17655,7888,19337] X2211233 [7047,29104,29945] X2211311 [1185,28072,28097] X2211312 [15851,1260,15901] X2211313 [1235,30492,30517] X2211321 [5229,1460,5429] X2211322 [14527,17136,22465] X2211323 [13167,19856,23825] X2211331 [1285,33012,33037] X2211332 [18471,1360,18521] X2211333 [1335,35632,35657] X2212111 [1649,4560,4849] X2212112 [5187,2516,5765] X2212113 [2227,8436,8725] X2212121 [3885,4828,6197] X2212122 [10295,7992,13033] X2212123 [6623,15336,16705] X2212131 [2805,13468,13757] X2212132 [11375,3672,11953] X2212133 [3383,19656,19945] X2212211 [4401,12920,13649] X2212212 [14155,6588,15613] X2212213 [5859,23180,23909] X2212221 [10309,12420,16141] X2212222 [27255,21472,34697] X2212223 [17751,40480,44201] X2212231 [7317,36356,37085] X2212232 [30247,9504,31705] X2212233 [8775,52448,53177] X2212311 [3961,27000,27289] X2212312 [19875,4828,20453] X2212313 [4539,35500,35789] X2212321 [9869,7140,12181] X2212322 [25935,24992,36017] X2212323 [19951,36960,42001] X2212331 [5117,45156,45445] X2212332 [30687,5984,31265] X2212333 [5695,55968,56257] X2213111 [1385,38352,38377] X2213112 [21291,1460,21341] X2213113 [1435,41172,41197] X2213121 [6789,1660,6989] X2213122 [19007,22776,29665] X2213123 [17447,25896,31225] X2213131 [1485,44092,44117] X2213132 [24311,1560,24361] X2213133 [1535,47112,47137] X2213211 [3081,2360,3881] X2213212 [8083,7644,11125] X2213213 [6123,11564,13085] X2213221 [10045,19812,22213] X2213222 [28575,17248,33377] X2213223 [14847,44704,47105] X2213231 [9165,26852,28373] X2213232 [29455,13728,32497] X2213233 [12207,48224,49745] X2213311 [1585,50232,50257] X2213312 [27531,1660,27581] X2213313 [1635,53452,53477] X2213321 [8549,1860,8749] X2213322 [24087,29216,37865] X2213323 [22327,32736,39625] X2213331 [1685,56772,56797] X2213332 [30951,1760,31001] X2213333 [1735,60192,60217] X2221111 [1881,14560,14681] X2221112 [10283,2244,10525] X2221113 [2123,18564,18685] X2221121 [4845,3212,5813] X2221122 [12775,12648,17977] X2221123 [10047,18104,20705] X2221131 [2365,23052,23173] X2221132 [15255,2728,15497] X2221133 [2607,28024,28145] X2221211 [3689,6600,7561] X2221212 [10275,6572,12197] X2221213 [5611,15900,16861] X2221221 [9381,14260,17069] X2221222 [25415,17808,31033] X2221223 [14999,38640,41449] X2221231 [7533,29044,30005] X2221232 [27263,10416,29185] X2221233 [9455,46032,46993] X2221311 [2849,33480,33601] X2221312 [21195,3212,21437] X2221313 [3091,39420,39541] X2221321 [8541,4180,9509] X2221322 [22895,24528,33553] X2221323 [19199,31920,37249] X2221331 [3333,45844,45965] X2221332 [28103,3696,28345] X2221333 [3575,52752,52873] X2222111 [4137,19184,19625] X2222112 [16459,5460,17341] X2222113 [5019,28340,28781] X2222121 [9685,8988,13213] X2222122 [25359,22360,33809] X2222123 [18135,36808,41033] X2222131 [5901,39260,39701] X2222132 [29143,7224,30025] X2222133 [6783,51944,52385] X2222211 [9073,21336,23185] X2222212 [27051,14620,30749] X2222213 [12771,43180,45029] X2222221 [21845,29412,36637] X2222222 [58311,43520,72761] X2222223 [36295,87552,94777] X2222231 [16469,72420,74269] X2222232 [63687,22016,67385] X2222233 [20167,109056,110905] X2222311 [7665,66392,66833] X2222312 [45355,8988,46237] X2222313 [8547,82604,83045] X2222321 [20437,12516,23965] X2222322 [54087,54784,76985] X2222323 [43335,76288,87737] X2222331 [9429,100580,101021] X2222332 [65095,10752,65977] X2222333 [10311,120320,120761] X2223111 [3817,60144,60265] X2223112 [35979,4180,36221] X2223113 [4059,68020,68141] X2223121 [13205,5148,14173] X2223122 [35919,40280,53969] X2223123 [31255,49608,58633] X2223131 [4301,76380,76501] X2223132 [44823,4664,45065] X2223133 [4543,85224,85345] X2223211 [7473,8536,11345] X2223212 [19691,15900,25309] X2223213 [13091,29100,31909] X2223221 [21525,38372,43997] X2223222 [59911,38400,71161] X2223223 [32775,92672,98297] X2223231 [18709,60900,63709] X2223232 [62727,27136,68345] X2223233 [24327,103936,106745] X2223311 [4785,94552,94673] X2223312 [54635,5148,54877] X2223313 [5027,104364,104485] X2223321 [18837,6116,19805] X2223322 [51847,59904,79225] X2223323 [46215,71168,84857] X2223331 [5269,114660,114781] X2223332 [65415,5632,65657] X2223333 [5511,125440,125561] X2231111 [1785,63712,63737] X2231112 [34571,1860,34621] X2231113 [1835,67332,67357] X2231121 [10509,2060,10709] X2231122 [29767,36456,47065] X2231123 [27807,40376,49025] X2231131 [1885,71052,71077] X2231132 [38391,1960,38441] X2231133 [1935,74872,74897] X2231211 [4361,2760,5161] X2231212 [11523,11564,16325] X2231213 [9163,16284,18685] X2231221 [15045,30772,34253] X2231222 [43175,25488,50137] X2231223 [22007,67824,71305] X2231231 [13965,39412,41813] X2231232 [44255,21168,49057] X2231233 [18767,72144,74545] X2231311 [1985,78792,78817] X2231312 [42411,2060,42461] X2231313 [2035,82812,82837] X2231321 [12669,2260,12869] X2231322 [36047,44496,57265] X2231323 [33887,48816,59425] X2231331 [2085,86932,86957] X2231332 [46631,2160,46681] X2231333 [2135,91152,91177] X2232111 [2889,5360,6089] X2232112 [8107,5076,9565] X2232113 [4347,12596,13325] X2232121 [7285,10908,13117] X2232122 [19695,13912,24113] X2232123 [11703,29896,32105] X2232131 [5805,22748,23477] X2232132 [21175,7992,22633] X2232133 [7263,35816,36545] X2232211 [9361,31320,32689] X2232212 [31755,13468,34493] X2232213 [12099,52780,54149] X2232221 [21749,24420,32701] X2232222 [57255,46592,73817] X2232223 [38311,84480,92761] X2232231 [14837,79716,81085] X2232232 [64167,18944,66905] X2232233 [17575,112128,113497] X2232311 [8721,51800,52529] X2232312 [40075,10908,41533] X2232313 [10179,70700,71429] X2232321 [21109,16740,26941] X2232322 [55335,51712,75737] X2232323 [41511,79360,89561] X2232331 [11637,92516,93245] X2232332 [64807,13824,66265] X2232333 [13095,117248,117977] X2233111 [2185,95472,95497] X2233112 [51051,2260,51101] X2233113 [2235,99892,99917] X2233121 [15029,2460,15229] X2233122 [42927,53336,68465] X2233123 [40567,58056,70825] X2233131 [2285,104412,104437] X2233132 [55671,2360,55721] X2233133 [2335,109032,109057] X2233211 [5841,3160,6641] X2233212 [15563,16284,22525] X2233213 [12803,21804,25285] X2233221 [21045,44132,48893] X2233222 [60775,35328,70297] X2233223 [30567,95744,100505] X2233231 [19765,54372,57853] X2233232 [62055,30208,69017] X2233233 [26727,100864,104345] X2233311 [2385,113752,113777] X2233312 [60491,2460,60541] X2233313 [2435,118572,118597] X2233321 [17589,2660,17789] X2233322 [50407,62976,80665] X2233323 [47847,68096,83225] X2233331 [2485,123492,123517] X2233332 [65511,2560,65561] X2233333 [2535,128512,128537] X2311111 [969,52160,52169] X2311112 [27547,996,27565] X2311113 [987,54116,54125] X2311121 [7885,1068,7957] X2311122 [22695,28552,36473] X2311123 [21663,30616,37505] X2311131 [1005,56108,56117] X2311132 [29575,1032,29593] X2311133 [1023,58136,58145] X2311211 [2881,1320,3169] X2311212 [7755,8428,11453] X2311213 [6579,10780,12629] X2311221 [10829,23220,25621] X2311222 [31455,18032,36257] X2311223 [15631,49680,52081] X2311231 [10277,27636,29485] X2311232 [32007,15824,35705] X2311233 [13975,51888,53737] X2311311 [1041,60200,60209] X2311312 [31675,1068,31693] X2311313 [1059,62300,62309] X2311321 [8989,1140,9061] X2311322 [25935,32752,41777] X2311323 [24831,34960,42881] X2311331 [1077,64436,64445] X2311332 [33847,1104,33865] X2311333 [1095,66608,66617] X2312111 [1633,2256,2785] X2312112 [4371,3220,5429] X2312113 [2691,6580,7109] X2312121 [4445,7452,8677] X2312122 [12231,8120,14681] X2312123 [6895,18792,20017] X2312131 [3749,13020,13549] X2312132 [12927,5336,13985] X2312133 [4807,21576,22105] X2312211 [6177,22264,23105] X2312212 [21659,8700,23341] X2312213 [7859,36300,37141] X2312221 [14325,15428,21053] X2312222 [37639,31200,48889] X2312223 [25575,55328,60953] X2312231 [9541,53700,54541] X2312232 [42423,12064,44105] X2312233 [11223,74464,75305] X2312311 [5865,32248,32777] X2312312 [25715,7452,26773] X2312313 [6923,45036,45565] X2312321 [14013,11684,18245] X2312322 [36703,33696,49825] X2312323 [27135,52832,59393] X2312331 [7981,59940,60469] X2312332 [42735,9568,43793] X2312333 [9039,76960,77489] X2313111 [1113,68816,68825] X2313112 [36091,1140,36109] X2313113 [1131,71060,71069] X2313121 [10165,1212,10237] X2313122 [29391,37240,47441] X2313123 [28215,39592,48617] X2313131 [1149,73340,73349] X2313132 [38407,1176,38425] X2313133 [1167,75656,75665] X2313211 [3577,1464,3865] X2313212 [9699,10780,14501] X2313213 [8379,13420,15821] X2313221 [13805,29988,33013] X2313222 [40239,22880,46289] X2313223 [19855,63648,66673] X2313231 [13181,34980,37381] X2313232 [40863,20384,45665] X2313233 [17983,66144,68545] X2313311 [1185,78008,78017] X2313312 [40795,1212,40813] X2313313 [1203,80396,80405] X2313321 [11413,1284,11485] X2313322 [33063,42016,53465] X2313323 [31815,44512,54713] X2313331 [1221,82820,82829] X2313332 [43255,1248,43273] X2313333 [1239,85280,85289] X2321111 [1417,5856,6025] X2321112 [5307,1924,5645] X2321113 [1755,9028,9197] X2321121 [3293,3276,4645] X2321122 [8631,7400,11369] X2321123 [6031,12600,13969] X2321131 [2093,12876,13045] X2321132 [9831,2600,10169] X2321133 [2431,17400,17569] X2321211 [3225,8008,8633] X2321212 [9779,5100,11029] X2321213 [4475,15708,16333] X2321221 [7701,10100,12701] X2321222 [20503,15504,25705] X2321223 [12903,30704,33305] X2321231 [5725,25908,26533] X2321232 [22479,7600,23729] X2321233 [6975,38608,39233] X2321311 [2769,22600,22769] X2321312 [15707,3276,16045] X2321313 [3107,28476,28645] X2321321 [7245,4628,8597] X2321322 [19135,19152,27073] X2321323 [15183,27056,31025] X2321331 [3445,35028,35197] X2321332 [22935,3952,23273] X2321333 [3783,42256,42425] X2322111 [4313,25584,25945] X2322112 [19803,5396,20525] X2322113 [5035,34932,35293] X2322121 [10437,8284,13325] X2322122 [27359,25560,37441] X2322123 [20519,39240,44281] X2322131 [5757,45724,46085] X2322132 [32039,6840,32761] X2322133 [6479,57960,58321] X2322211 [8865,18392,20417] X2322212 [25531,14940,29581] X2322213 [12915,40172,42197] X2322221 [21829,31140,38029] X2322222 [58647,42496,72425] X2322223 [35607,88576,95465] X2322231 [16965,70052,72077] X2322232 [63511,23040,67561] X2322233 [21015,108032,110057] X2322311 [7201,71640,72001] X2322312 [47163,8284,47885] X2322313 [7923,86764,87125] X2322321 [20165,11172,23053] X2322322 [53655,55808,77417] X2322323 [43927,75264,87145] X2322331 [8645,103332,103693] X2322332 [65175,9728,65897] X2322333 [9367,121344,121705] X2323111 [4121,50160,50329] X2323112 [31515,4628,31853] X2323113 [4459,58740,58909] X2323121 [12549,5980,13901] X2323122 [33695,36312,49537] X2323123 [28391,46920,54841] X2323131 [4797,67996,68165] X2323132 [41447,5304,41785] X2323133 [5135,77928,78097] X2323211 [7905,10712,13313] X2323212 [21115,15708,26317] X2323213 [13107,31724,34325] X2323221 [21637,36516,42445] X2323222 [59607,39424,71465] X2323223 [33495,91648,97577] X2323231 [18309,63140,65741] X2323232 [62935,26112,68137] X2323233 [23511,104960,107561] X2323311 [5473,88536,88705] X2323312 [52731,5980,53069] X2323313 [5811,99820,99989] X2323321 [19205,7332,20557] X2323322 [52311,58880,78761] X2323323 [45655,72192,85417] X2323331 [6149,111780,111949] X2323332 [65367,6656,65705] X2323333 [6487,124416,124585] X2331111 [1257,87776,87785] X2331112 [45787,1284,45805] X2331113 [1275,90308,90317] X2331121 [12733,1356,12805] X2331122 [36951,47080,59849] X2331123 [35631,49720,61169] X2331131 [1293,92876,92885] X2331132 [48391,1320,48409] X2331133 [1311,95480,95489] X2331211 [4345,1608,4633] X2331212 [11859,13420,17909] X2331213 [10395,16348,19373] X2331221 [17141,37620,41341] X2331222 [50103,28304,57545] X2331223 [24583,79344,83065] X2331231 [16445,43188,46213] X2331232 [50799,25520,56849] X2331233 [22495,82128,85153] X2331311 [1329,98120,98129] X2331312 [51067,1356,51085] X2331313 [1347,100796,100805] X2331321 [14125,1428,14197] X2331322 [41055,52432,66593] X2331323 [39663,55216,67985] X2331331 [1365,103508,103517] X2331332 [53815,1392,53833] X2331333 [1383,106256,106265] X2332111 [2233,2544,3385] X2332112 [5883,4756,7565] X2332113 [3915,8692,9533] X2332121 [6437,11484,13165] X2332122 [17919,11480,21281] X2332123 [9799,27720,29401] X2332131 [5597,18204,19045] X2332132 [18759,8120,20441] X2332133 [7279,31080,31921] X2332211 [9345,35032,36257] X2332212 [33371,13020,35821] X2332213 [11795,56172,57397] X2332221 [21669,22820,31469] X2332222 [56887,47616,74185] X2332223 [38967,83456,92105] X2332231 [14245,82212,83437] X2332232 [64311,17920,66761] X2332233 [16695,113152,114377] X2332311 [8961,47320,48161] X2332312 [38363,11484,40045] X2332313 [10643,66924,67765] X2332321 [21285,18212,28013] X2332322 [55735,50688,75337] X2332323 [40887,80384,90185] X2332331 [12325,89892,90733] X2332332 [64695,14848,66377] X2332333 [14007,116224,117065] X2333111 [1401,109040,109049] X2333112 [56635,1428,56653] X2333113 [1419,111860,111869] X2333121 [15589,1500,15661] X2333122 [45375,58072,73697] X2333123 [43911,61000,75161] X2333131 [1437,114716,114725] X2333132 [59527,1464,59545] X2333133 [1455,117608,117617] X2333211 [5185,1752,5473] X2333212 [14235,16348,21677] X2333213 [12627,19564,23285] X2333221 [20837,46116,50605] X2333222 [61047,34304,70025] X2333223 [29815,96768,101257] X2333231 [20069,52260,55981] X2333232 [61815,31232,69257] X2333233 [27511,99840,103561] X2333311 [1473,120536,120545] X2333312 [62491,1500,62509] X2333313 [1491,123500,123509] X2333321 [17125,1572,17197] X2333322 [49911,64000,81161] X2333323 [48375,67072,82697] X2333331 [1509,126500,126509] X2333332 [65527,1536,65545] X2333333 [1527,129536,129545] X3111111 [385,74112,74113] X3111112 [37635,388,37637] X3111113 [387,74884,74885] X3111121 [9797,396,9805] X3111122 [29007,38024,47825] X3111123 [28615,38808,48217] X3111131 [389,75660,75661] X3111132 [38415,392,38417] X3111133 [391,76440,76441] X3111211 [2793,424,2825] X3111212 [8003,9996,12805] X3111213 [7595,10812,13213] X3111221 [12597,29204,31805] X3111222 [37399,20400,42601] X3111223 [17799,59600,62201] X3111231 [12397,30804,33205] X3111232 [37599,19600,42401] X3111233 [17199,60400,62801] X3111311 [393,77224,77225] X3111312 [39203,396,39205] X3111313 [395,78012,78013] X3111321 [10197,404,10205] X3111322 [30199,39600,49801] X3111323 [29799,40400,50201] X3111331 [397,78804,78805] X3111332 [39999,400,40001] X3111333 [399,79600,79601] X3112111 [1025,528,1153] X3112112 [2739,2900,3989] X3112113 [2275,3828,4453] X3112121 [3741,7900,8741] X3112122 [10823,6264,12505] X3112123 [5423,17064,17905] X3112131 [3525,9628,10253] X3112132 [11039,5400,12289] X3112133 [4775,17928,18553] X3112211 [6129,25400,26129] X3112212 [22987,8316,24445] X3112213 [7587,39116,39845] X3112221 [14245,14148,20077] X3112222 [37335,32032,49193] X3112223 [26103,54496,60425] X3112231 [9045,55748,56477] X3112232 [42535,11232,43993] X3112233 [10503,75296,76025] X3112311 [6025,28728,29353] X3112312 [24339,7900,25589] X3112313 [7275,42028,42653] X3112321 [14141,12900,19141] X3112322 [37023,32864,49505] X3112323 [26623,53664,59905] X3112331 [8525,57828,58453] X3112332 [42639,10400,43889] X3112333 [9775,76128,76753] X3113111 [401,80400,80401] X3113112 [40803,404,40805] X3113113 [403,81204,81205] X3113121 [10605,412,10613] X3113122 [31415,41208,51817] X3113123 [31007,42024,52225] X3113131 [405,82012,82013] X3113132 [41615,408,41617] X3113133 [407,82824,82825] X3113211 [3009,440,3041] X3113212 [8635,10812,13837] X3113213 [8211,11660,14261] X3113221 [13621,31620,34429] X3113222 [40455,22048,46073] X3113223 [19239,64480,67289] X3113231 [13413,33284,35885] X3113232 [40663,21216,45865] X3113233 [18615,65312,67913] X3113311 [409,83640,83641] X3113312 [42435,412,42437] X3113313 [411,84460,84461] X3113321 [11021,420,11029] X3113322 [32655,42848,53873] X3113323 [32239,43680,54289] X3113331 [413,85284,85285] X3113332 [43263,416,43265] X3113333 [415,86112,86113] X3121111 [585,928,1097] X3121112 [1595,1092,1933] X3121113 [923,2436,2605] X3121121 [1533,2444,2885] X3121122 [4183,2856,5065] X3121123 [2415,6392,6833] X3121131 [1261,4620,4789] X3121132 [4455,1768,4793] X3121133 [1599,7480,7649] X3121211 [2057,7176,7465] X3121212 [7107,2924,7685] X3121213 [2635,11868,12157] X3121221 [4773,5236,7085] X3121222 [12551,10320,16249] X3121223 [8471,18480,20329] X3121231 [3213,17716,18005] X3121232 [14111,4080,14689] X3121233 [3791,24720,25009] X3121311 [1937,11016,11185] X3121312 [8667,2444,9005] X3121313 [2275,15228,15397] X3121321 [4653,3796,6005] X3121322 [12191,11280,16609] X3121323 [9071,17520,19729] X3121331 [2613,20116,20285] X3121332 [14231,3120,14569] X3121333 [2951,25680,25849] X3122111 [3345,24752,24977] X3122112 [17731,4020,18181] X3122113 [3795,31892,32117] X3122121 [8509,5820,10309] X3122122 [22407,21976,31385] X3122123 [17487,31816,36305] X3122131 [4245,39932,40157] X3122132 [26671,4920,27121] X3122133 [4695,48872,49097] X3122211 [6601,12120,13801] X3122212 [18483,11644,21845] X3122213 [9963,28684,30365] X3122221 [16685,25092,30133] X3122222 [45135,31808,55217] X3122223 [26767,68544,73585] X3122231 [13325,51972,53653] X3122232 [48495,18368,51857] X3122233 [16687,81984,83665] X3122311 [5145,58712,58937] X3122312 [37411,5820,37861] X3122313 [5595,69452,69677] X3122321 [15229,7620,17029] X3122322 [40767,43456,59585] X3122323 [34047,56896,66305] X3122331 [6045,81092,81317] X3122332 [49951,6720,50401] X3122333 [6495,93632,93857] X3123111 [3289,31920,32089] X3123112 [21147,3796,21485] X3123113 [3627,38836,39005] X3123121 [9125,5148,10477] X3123122 [24255,25112,34913] X3123123 [19783,34056,39385] X3123131 [3965,46428,46597] X3123132 [29415,4472,29753] X3123133 [4303,54696,54865] X3123211 [6321,9880,11729] X3123212 [17195,11868,20893] X3123213 [10019,26220,28069] X3123221 [16629,26660,31421] X3123222 [45415,30912,54937] X3123223 [26151,69440,74201] X3123231 [13717,49956,51805] X3123232 [48327,19264,52025] X3123233 [17415,81088,82937] X3123311 [4641,63640,63809] X3123312 [39035,5148,39373] X3123313 [4979,73260,73429] X3123321 [14949,6500,16301] X3123322 [40375,44352,59977] X3123323 [34551,56000,65801] X3123331 [5317,83556,83725] X3123332 [50007,5824,50345] X3123333 [5655,94528,94697] X3131111 [417,86944,86945] X3131112 [44099,420,44101] X3131113 [419,87780,87781] X3131121 [11445,428,11453] X3131122 [33919,44520,55969] X3131123 [33495,45368,56393] X3131131 [421,88620,88621] X3131132 [44943,424,44945] X3131133 [423,89464,89465] X3131211 [3233,456,3265] X3131212 [9291,11660,14909] X3131213 [8851,12540,15349] X3131221 [14685,34132,37157] X3131222 [43631,23760,49681] X3131223 [20735,69552,72577] X3131231 [14469,35860,38669] X3131232 [43847,22896,49465] X3131233 [20087,70416,73225] X3131311 [425,90312,90313] X3131312 [45795,428,45797] X3131313 [427,91164,91165] X3131321 [11877,436,11885] X3131322 [35207,46224,58105] X3131323 [34775,47088,58537] X3131331 [429,92020,92021] X3131332 [46655,432,46657] X3131333 [431,92880,92881] X3132111 [1161,560,1289] X3132112 [3115,3348,4573] X3132113 [2619,4340,5069] X3132121 [4309,9180,10141] X3132122 [12495,7192,14417] X3132123 [6231,19720,20681] X3132131 [4077,11036,11765] X3132132 [12727,6264,14185] X3132133 [5535,20648,21377] X3132211 [7105,29592,30433] X3132212 [26715,9628,28397] X3132213 [8787,45484,46325] X3132221 [16517,16356,23245] X3132222 [43287,37184,57065] X3132223 [30295,63168,70057] X3132231 [10469,64740,65581] X3132232 [49335,12992,51017] X3132233 [12151,87360,88201] X3132311 [6993,33176,33905] X3132312 [28171,9180,29629] X3132313 [8451,48620,49349] X3132321 [16405,15012,22237] X3132322 [42951,38080,57401] X3132323 [30855,62272,69497] X3132331 [9909,66980,67709] X3132332 [49447,12096,50905] X3132333 [11367,88256,88985] X3133111 [433,93744,93745] X3133112 [47523,436,47525] X3133113 [435,94612,94613] X3133121 [12317,444,12325] X3133122 [36519,47960,60281] X3133123 [36079,48840,60721] X3133131 [437,95484,95485] X3133132 [48399,440,48401] X3133133 [439,96360,96361] X3133211 [3465,472,3497] X3133212 [9971,12540,16021] X3133213 [9515,13452,16477] X3133221 [15789,36740,39989] X3133222 [46927,25536,53425] X3133223 [22287,74816,78065] X3133231 [15565,38532,41557] X3133232 [47151,24640,53201] X3133233 [21615,75712,78737] X3133311 [441,97240,97241] X3133312 [49283,444,49285] X3133313 [443,98124,98125] X3133321 [12765,452,12773] X3133322 [37855,49728,62497] X3133323 [37407,50624,62945] X3133331 [445,99012,99013] X3133332 [50175,448,50177] X3133333 [447,99904,99905] X3211111 [497,2496,2545] X3211112 [2067,644,2165] X3211113 [595,3588,3637] X3211121 [1173,1036,1565] X3211122 [3071,2760,4129] X3211123 [2231,4440,4969] X3211131 [693,4876,4925] X3211132 [3551,840,3649] X3211133 [791,6360,6409] X3211211 [1065,2408,2633] X3211212 [3139,1740,3589] X3211213 [1515,4988,5213] X3211221 [2581,3540,4381] X3211222 [6903,5104,8585] X3211223 [4263,10384,11225] X3211231 [1965,8468,8693] X3211232 [7519,2640,7969] X3211233 [2415,12848,13073] X3211311 [889,8040,8089] X3211312 [5427,1036,5525] X3211313 [987,9916,9965] X3211321 [2405,1428,2797] X3211322 [6375,6512,9113] X3211323 [5143,8976,10345] X3211331 [1085,11988,12037] X3211332 [7695,1232,7793] X3211333 [1183,14256,14305] X3212111 [1353,7504,7625] X3212112 [5963,1716,6205] X3212113 [1595,10452,10573] X3212121 [3237,2684,4205] X3212122 [8479,7800,11521] X3212123 [6279,12200,13721] X3212131 [1837,13884,14005] X3212132 [9879,2200,10121] X3212133 [2079,17800,17921] X3212211 [2825,6072,6697] X3212212 [8211,4700,9461] X3212213 [4075,12972,13597] X3212221 [6909,9700,11909] X3212222 [18527,13536,22945] X3212223 [11327,27936,30145] X3212231 [5325,22372,22997] X3212232 [20111,7200,21361] X3212233 [6575,34272,34897] X3212311 [2321,22200,22321] X3212312 [14763,2684,15005] X3212313 [2563,27084,27205] X3212321 [6405,3652,7373] X3212322 [17015,17568,24457] X3212323 [13847,23904,27625] X3212331 [2805,32452,32573] X3212332 [20615,3168,20857] X3212333 [3047,38304,38425] X3213111 [1281,16720,16769] X3213112 [10355,1428,10453] X3213113 [1379,19380,19429] X3213121 [4029,1820,4421] X3213122 [10855,11832,16057] X3213123 [9231,15080,17681] X3213131 [1477,22236,22285] X3213132 [13407,1624,13505] X3213133 [1575,25288,25337] X3213211 [2465,3192,4033] X3213212 [6555,4988,8237] X3213213 [4147,9804,10645] X3213221 [6837,11716,13565] X3213222 [18887,12384,22585] X3213223 [10535,29088,30937] X3213231 [5829,19780,20621] X3213232 [19895,8352,21577] X3213233 [7511,33120,33961] X3213311 [1673,28536,28585] X3213312 [16851,1820,16949] X3213313 [1771,31980,32029] X3213321 [6045,2212,6437] X3213322 [16511,18720,24961] X3213323 [14495,22752,26977] X3213331 [1869,35620,35669] X3213332 [20687,2016,20785] X3213333 [1967,39456,39505] X3221111 [2097,27104,27185] X3221112 [16819,2340,16981] X3221113 [2259,31460,31541] X3221121 [6565,2988,7213] X3221122 [17679,19240,26129] X3221123 [15015,24568,28793] X3221131 [2421,36140,36221] X3221132 [21823,2664,21985] X3221133 [2583,41144,41225] X3221211 [4033,5256,6625] X3221212 [10731,8140,13469] X3221213 [6771,16060,17429] X3221221 [11165,19092,22117] X3221222 [30831,20240,36881] X3221223 [17215,47472,50497] X3221231 [9509,32340,33709] X3221232 [32487,13616,35225] X3221233 [12247,54096,55465] X3221311 [2745,46472,46553] X3221312 [27475,2988,27637] X3221313 [2907,52124,52205] X3221321 [9877,3636,10525] X3221322 [26967,30544,40745] X3221323 [23655,37168,44057] X3221331 [3069,58100,58181] X3221332 [33775,3312,33937] X3221333 [3231,64400,64481] X3222111 [3841,13680,14209] X3222112 [13395,5428,14453] X3222113 [4899,22420,22949] X3222121 [8909,9660,13141] X3222122 [23415,19352,30377] X3222123 [15871,34440,37921] X3222131 [5957,33276,33805] X3222132 [26367,7544,27425] X3222133 [7015,46248,46777] X3222211 [9225,24472,26153] X3222212 [28595,14268,31957] X3222213 [12587,46284,47965] X3222221 [21837,27716,35285] X3222222 [57967,44544,73105] X3222223 [36975,86528,94097] X3222231 [15949,74820,76501] X3222232 [63855,20992,67217] X3222233 [19311,110080,111761] X3222311 [8073,61336,61865] X3222312 [43571,9660,44629] X3222313 [9131,78540,79069] X3222321 [20685,13892,24917] X3222322 [54511,53760,76561] X3222323 [42735,77312,88337] X3222331 [10189,97860,98389] X3222332 [65007,11776,66065] X3222333 [11247,119296,119825] X3223111 [3393,71024,71105] X3223112 [40723,3636,40885] X3223113 [3555,77972,78053] X3223121 [13837,4284,14485] X3223122 [38199,44440,58601] X3223123 [34239,52360,62561] X3223131 [3717,85244,85325] X3223132 [48319,3960,48481] X3223133 [3879,92840,92921] X3223211 [6985,6552,9577] X3223212 [18291,16060,24341] X3223213 [13035,26572,29597] X3223221 [21389,40260,45589] X3223222 [60207,37376,70865] X3223223 [32047,93696,99025] X3223231 [19085,58692,61717] X3223232 [62511,28160,68561] X3223233 [25135,102912,105937] X3223311 [4041,100760,100841] X3223312 [56563,4284,56725] X3223313 [4203,109004,109085] X3223321 [18445,4932,19093] X3223322 [51375,60928,79697] X3223323 [46767,70144,84305] X3223331 [4365,117572,117653] X3223332 [65455,4608,65617] X3223333 [4527,126464,126545] X3231111 [2065,43488,43537] X3231112 [24915,2212,25013] X3231113 [2163,47716,47765] X3231121 [8453,2604,8845] X3231122 [23343,27176,35825] X3231123 [20935,31992,38233] X3231131 [2261,52140,52189] X3231132 [29535,2408,29633] X3231133 [2359,56760,56809] X3231211 [4257,3976,5825] X3231212 [11147,9804,14845] X3231213 [7955,16188,18037] X3231221 [13053,24596,27845] X3231222 [36751,22800,43249] X3231223 [19551,57200,60449] X3231231 [11653,35796,37645] X3231232 [38151,17200,41849] X3231233 [15351,62800,64649] X3231311 [2457,61576,61625] X3231312 [34547,2604,34645] X3231313 [2555,66588,66637] X3231321 [11253,2996,11645] X3231322 [31351,37200,48649] X3231323 [28551,42800,51449] X3231331 [2653,71796,71845] X3231332 [39951,2800,40049] X3231333 [2751,77200,77249] X3232111 [3425,9072,9697] X3232112 [10611,5300,11861] X3232113 [4675,17172,17797] X3232121 [8109,10300,13109] X3232122 [21527,16536,27145] X3232123 [13727,32136,34945] X3232131 [5925,27772,28397] X3232132 [23711,7800,24961] X3232133 [7175,40872,41497] X3232211 [9321,27800,29321] X3232212 [30163,13884,33205] X3232213 [12363,49484,51005] X3232221 [21805,26052,33973] X3232222 [57615,45568,73457] X3232223 [37647,85504,93425] X3232231 [15405,77252,78773] X3232232 [64015,19968,67057] X3232233 [18447,111104,112625] X3232311 [8425,56472,57097] X3232312 [41811,10300,43061] X3232313 [9675,74572,75197] X3232321 [20909,15300,25909] X3232322 [54927,52736,76145] X3232323 [42127,78336,88945] X3232331 [10925,95172,95797] X3232332 [64911,12800,66161] X3232333 [12175,118272,118897] X3233111 [2849,82800,82849] X3233112 [45747,2996,45845] X3233113 [2947,88596,88645] X3233121 [14445,3388,14837] X3233122 [40535,48792,63433] X3233123 [37343,55176,66625] X3233131 [3045,94588,94637] X3233132 [51935,3192,52033] X3233133 [3143,100776,100825] X3233211 [6441,4760,8009] X3233212 [16915,16188,23413] X3233213 [12939,24140,27389] X3233221 [21229,42180,47221] X3233222 [60495,36352,70577] X3233223 [31311,94720,99761] X3233231 [19437,56516,59765] X3233232 [62287,29184,68785] X3233233 [25935,101888,105137] X3233311 [3241,107160,107209] X3233312 [58515,3388,58613] X3233313 [3339,113740,113789] X3233321 [18029,3780,18421] X3233322 [50895,61952,80177] X3233323 [47311,69120,83761] X3233331 [3437,120516,120565] X3233332 [65487,3584,65585] X3233333 [3535,127488,127537] X3311111 [449,100800,100801] X3311112 [51075,452,51077] X3311113 [451,101700,101701] X3311121 [13221,460,13229] X3311122 [39215,51528,64753] X3311123 [38759,52440,65209] X3311131 [453,102604,102605] X3311132 [51983,456,51985] X3311133 [455,103512,103513] X3311211 [3705,488,3737] X3311212 [10675,13452,17173] X3311213 [10203,14396,17645] X3311221 [16933,39444,42925] X3311222 [50343,27376,57305] X3311223 [23895,80272,83753] X3311231 [16701,41300,44549] X3311232 [50575,26448,57073] X3311233 [23199,81200,84449] X3311311 [457,104424,104425] X3311312 [52899,460,52901] X3311313 [459,105340,105341] X3311321 [13685,468,13693] X3311322 [40599,53360,67049] X3311323 [40135,54288,67513] X3311331 [461,106260,106261] X3311332 [53823,464,53825] X3311333 [463,107184,107185] X3312111 [1305,592,1433] X3312112 [3515,3828,5197] X3312113 [2987,4884,5725] X3312121 [4917,10556,11645] X3312122 [14287,8184,16465] X3312123 [7095,22568,23657] X3312131 [4669,12540,13381] X3312132 [14535,7192,16217] X3312133 [6351,23560,24401] X3312211 [8153,34104,35065] X3312212 [30723,11036,32645] X3312213 [10075,52332,53293] X3312221 [18957,18724,26645] X3312222 [49679,42720,65521] X3312223 [34799,72480,80401] X3312231 [11997,74404,75365] X3312232 [56639,14880,58561] X3312233 [13919,100320,101281] X3312311 [8033,37944,38785] X3312312 [32283,10556,33965] X3312313 [9715,55692,56533] X3312321 [18837,17284,25565] X3312322 [49319,43680,65881] X3312323 [35399,71520,79801] X3312331 [11397,76804,77645] X3312332 [56759,13920,58441] X3312333 [13079,101280,102121] X3313111 [465,108112,108113] X3313112 [54755,468,54757] X3313113 [467,109044,109045] X3313121 [14157,476,14165] X3313122 [42007,55224,69385] X3313123 [41535,56168,69857] X3313131 [469,109980,109981] X3313132 [55695,472,55697] X3313133 [471,110920,110921] X3313211 [3953,504,3985] X3313212 [11403,14396,18365] X3313213 [10915,15372,18853] X3313221 [18117,42244,45965] X3313222 [53879,29280,61321] X3313223 [25559,85920,89641] X3313231 [17877,44164,47645] X3313232 [54119,28320,61081] X3313233 [24839,86880,90361] X3313311 [473,111864,111865] X3313312 [56643,476,56645] X3313313 [475,112812,112813] X3313321 [14637,484,14645] X3313322 [43439,57120,71761] X3313323 [42959,58080,72241] X3313331 [477,113764,113765] X3313332 [57599,480,57601] X3313333 [479,114720,114721] X3321111 [705,992,1217] X3321112 [1891,1380,2341] X3321113 [1155,2852,3077] X3321121 [1909,3180,3709] X3321122 [5247,3496,6305] X3321123 [2967,8056,8585] X3321131 [1605,5612,5837] X3321132 [5551,2280,6001] X3321133 [2055,9272,9497] X3321211 [2641,9480,9841] X3321212 [9243,3724,9965] X3321213 [3363,15484,15845] X3321221 [6125,6612,9013] X3321222 [16095,13328,20897] X3321223 [10927,23664,26065] X3321231 [4085,22932,23293] X3321232 [18135,5168,18857] X3321233 [4807,31824,32185] X3321311 [2505,13832,14057] X3321312 [11011,3180,11461] X3321313 [2955,19292,19517] X3321321 [5989,4980,7789] X3321322 [15687,14416,21305] X3321323 [11607,22576,25385] X3321331 [3405,25652,25877] X3321332 [18271,4080,18721] X3321333 [3855,32912,33137] X3322111 [4369,32880,33169] X3322112 [23427,5236,24005] X3322113 [4947,42196,42485] X3322121 [11165,7548,13477] X3322122 [29415,28952,41273] X3322123 [23023,41736,47665] X3322131 [5525,52668,52957] X3322132 [35055,6392,35633] X3322133 [6103,64296,64585] X3322211 [8601,15640,17849] X3322212 [24035,15228,28453] X3322213 [13019,37260,39469] X3322221 [21789,32900,39461] X3322222 [58975,41472,72097] X3322223 [34911,89600,96161] X3322231 [17437,67716,69925] X3322232 [63327,24064,67745] X3322233 [21855,107008,109217] X3322311 [6681,77080,77369] X3322312 [48995,7548,49573] X3322313 [7259,91020,91309] X3322321 [19869,9860,22181] X3322322 [53215,56832,77857] X3322323 [44511,74240,86561] X3322331 [7837,106116,106405] X3322332 [65247,8704,65825] X3322333 [8415,122368,122657] X3323111 [4305,41072,41297] X3323112 [27331,4980,27781] X3323113 [4755,50132,50357] X3323121 [11869,6780,13669] X3323122 [31527,32536,45305] X3323123 [25647,44296,51185] X3323131 [5205,60092,60317] X3323132 [38191,5880,38641] X3323133 [5655,70952,71177] X3323211 [8281,13080,15481] X3323212 [22563,15484,27365] X3323213 [13083,34444,36845] X3323221 [21725,34692,40933] X3323222 [59295,40448,71777] X3323223 [34207,90624,96865] X3323231 [17885,65412,67813] X3323232 [63135,25088,67937] X3323233 [22687,105984,108385] X3323311 [6105,82712,82937] X3323312 [50851,6780,51301] X3323313 [6555,95372,95597] X3323321 [19549,8580,21349] X3323322 [52767,57856,78305] X3323323 [45087,73216,85985] X3323331 [7005,108932,109157] X3323332 [65311,7680,65761] X3323333 [7455,123392,123617] X3331111 [481,115680,115681] X3331112 [58563,484,58565] X3331113 [483,116644,116645] X3331121 [15125,492,15133] X3331122 [44895,59048,74177] X3331123 [44407,60024,74665] X3331131 [485,117612,117613] X3331132 [59535,488,59537] X3331133 [487,118584,118585] X3331211 [4209,520,4241] X3331212 [12155,15372,19597] X3331213 [11651,16380,20101] X3331221 [19341,45140,49109] X3331222 [57535,31248,65473] X3331223 [27279,91760,95729] X3331231 [19093,47124,50845] X3331232 [57783,30256,65225] X3331233 [26535,92752,96473] X3331311 [489,119560,119561] X3331312 [60515,492,60517] X3331313 [491,120540,120541] X3331321 [15621,500,15629] X3331322 [46375,61008,76633] X3331323 [45879,62000,77129] X3331331 [493,121524,121525] X3331332 [61503,496,61505] X3331333 [495,122512,122513] X3332111 [1457,624,1585] X3332112 [3939,4340,5861] X3332113 [3379,5460,6421] X3332121 [5565,12028,13253] X3332122 [16199,9240,18649] X3332123 [8015,25608,26833] X3332131 [5301,14140,15101] X3332132 [16463,8184,18385] X3332133 [7223,26664,27625] X3332211 [9273,38936,40025] X3332212 [35011,12540,37189] X3332213 [11451,59660,60749] X3332221 [21565,21252,30277] X3332222 [56511,48640,74561] X3332223 [39615,82432,91457] X3332231 [13629,84740,85829] X3332232 [64447,16896,66625] X3332233 [15807,114176,115265] X3332311 [9145,43032,43993] X3332312 [36675,12028,38597] X3332313 [11067,63244,64205] X3332321 [21437,19716,29125] X3332322 [56127,49664,74945] X3332323 [40255,81408,90817] X3332331 [12989,87300,88261] X3332332 [64575,15872,66497] X3332333 [14911,115200,116161] X3333111 [497,123504,123505] X3333112 [62499,500,62501] X3333113 [499,124500,124501] X3333121 [16125,508,16133] X3333122 [47879,63000,79129] X3333123 [47375,64008,79633] X3333131 [501,125500,125501] X3333132 [63503,504,63505] X3333133 [503,126504,126505] X3333211 [4473,536,4505] X3333212 [12931,16380,20869] X3333213 [12411,17420,21389] X3333221 [20605,48132,52357] X3333222 [61311,33280,69761] X3333223 [29055,97792,102017] X3333231 [20349,50180,54149] X3333232 [61567,32256,69505] X3333233 [28287,98816,102785] X3333311 [505,127512,127513] X3333312 [64515,508,64517] X3333313 [507,128524,128525] X3333321 [16637,516,16645] X3333322 [49407,65024,81665] X3333323 [48895,66048,82177] X3333331 [509,129540,129541] X3333332 [65535,512,65537] X3333333 [511,130560,130561] Maximum level 6 at [3280]: X; 3; 4; 5
7ee7732ceada9b6a2e4bd03e88f20028988dc273
449d555969bfd7befe906877abab098c6e63a0e8
/3751/CH4/EX4.20/Ex4_20.sce
184934bd5c0bdde80c2264b9cf72c259c4c0c533
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,270
sce
Ex4_20.sce
//Fluid Systems - By - Shiv Kumar //Chapter 4 - Pelton Turbine (Impulse Turbine) //Example 4.20 clc clear //Given Data:- D=1.6; //Mean Diameter of Bucket Circle, m P=3200; //Power Developed, kW n=2; //Number of Wheels H=300; //Effective Head, m N=410; //Speed, rpm eta_o=0.89; //Overall Efficiency Cv=0.98; //Co-efficient of Velocity //Data Used:- rho=1000; //Density of water, kg/m^3 g=9.81; //Acceleration due to gravity, m/s^2 //Computations:- Q=P*1000/(rho*g*H*eta_o); //Discharge, m^3/s //(a)Diameter of the Nozzle, d Vi=Cv*sqrt(2*g*H); //m/s d=sqrt(Q/((%pi/4)*Vi))*1000; //mm //(b)Speed Ratio, Ku u=%pi*D*N/60; //m/s Ku=u/sqrt(2*g*H); //(c)Specific Speed, Ns Ns=N*sqrt(P/n)/(H^(5/4)); // In SI Units //Results:- printf(" (a)Diameter of the Nozzle, d=%.2f mm\n",d) //The answer vary due to round off error printf(" (b)Speed Ratio, Ku =%.3f \n",Ku) //The answer vary due to round off error printf(" (c)Specific Speed, Ns =%.f (SI Units)\n",Ns)
70489bf156d5cd1b3562626876f33f16b88364b6
449d555969bfd7befe906877abab098c6e63a0e8
/3816/CH10/EX10.9/10_9.sce
5f9c15f62d591e0c9919fcb764d0a2c861da0220
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
380
sce
10_9.sce
clc; clear; W=23400;//KVA rating pf=0.8; Lb=68;//Bearing friction loss Lv=220;//Windage loss Lc=165;//Core loss Lw=200;//WInding loss Li=62;//I^2R loss Le=14;//Exciter loss Ll=Lw-Li; disp(Li,'Thye load loss is:') Lt=763;//Sum of totallosses Po=W*pf;//output disp(Po,'The output is:') Pi=Po+Lt; disp(Pi,'The input is:') eff=Po/Pi; disp(eff,'The efficiency is:')
35ae7fda0f410f0f0e9f1dd8f56d011933c88042
449d555969bfd7befe906877abab098c6e63a0e8
/1409/CH8/EX8.15/8_15.sce
0ee439bce29a7c6a60e6fc55e8fcc9323193ac83
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
683
sce
8_15.sce
clc; //page no 8-54 //Example 8.15 fsmax=1650; fsmin=525;//in kHz SFR=fsmax/fsmin; disp(SFR,'Signal frequency ratio is'); //Rounding off SRF to 3.14 SFR1=3.14; C=(SFR1)^2; disp(C,'Capacitance ratio is'); Comin=50; Comax=450;//in pF //For trimmer capacitor //Comax/Comin=(Csmax+CT)/(Csmin+CT) //450/50=(Csmax+CT)/(Csmin+CT) //By solving this //Csmax-9*Csmin=200 //Csmax-9.86*Csmin=0 //Solving we get Csmin=232.55; Csmax=2293; disp(+'pF',Csmin,'Csmin='); disp(+'pF',Csmax,'Csmax='); //For padder capacitor //Comax/Comin=(Csmax/Csmin)*(Csmin+Cp)/(Csmax+Cp) //9=9.86*(232.55+Cp)/(2293+Cp) //Solving this Cp=21330; disp(+'pF',Cp,'Padder Capacitor vlue is');
3d666ac0943cbc3bf3d19e823ab1c089ffc0da05
449d555969bfd7befe906877abab098c6e63a0e8
/479/CH12/EX12.3/Example_12_3.sce
cac9b868b403c5fb3934c26e7175f257ba971155
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,647
sce
Example_12_3.sce
//Chemical Engineering Thermodynamics //Chapter 12 //Refrigeration //Example 12.3 clear; clc; //Given //Consider the figure 12.4 (page no 226) m = 5;//tonnes of refrigeration T1 = 273-10;//temperature of the saturated vapour in K T2 = 273+35;//temperature of the super heated vapour in K T3 = 273+25;//temperature of the saturated liquid in K T4 = 273+25;//temperature of the wet vapour in K H1 = 341.8;//enthalpy of the saturated vapour in Kcal/Kg H2 = 409.0;//enthalpy of the super heated vapour in Kcal/Kg H3 = 350.0;//enthalpy of the saturated liquid in Kcal/Kg H4 = 71.3;//enthalpy of the wet vapour in Kcal/Kg //To Calculate the C.O.P, mass of refrigerant required, compressor horse power required and the C.O.P & compressor horse power for a reversed Carnot cycle //(i)Calculation of the C.O.P of the compression cycle //From equation 12.6 (page no 226) C.O.P = (H1-H4)/(H2-H1); mprintf('(i)C.O.P of the compression cycle is %f',C.O.P); //(ii)Calculation of mass of refrigerant required //From equation 12.7 (page no 226) M = (m*50.4)/(H1-H4); mprintf('\n (ii)The mass of refrigerant required is %f Kg/mt',M); //(iii)Calculation of the compressor horse power //From equation 12.5 (page no 226) C_hp = (H2-H1)*M*(427/4500); mprintf('\n (iii)The compressor horse power is %f hp',C_hp); //(iv)Calculation for reversed Carnot cycle //From equation 12.1 (page no 220) C.O.P = T1/(T3-T1); mprintf('\n\n (iv)C.O.P for the reversed Carnot cycle is %f',C.O.P); Q2 = m*50.4*(427/4500);//in hp C_hp = Q2/C.O.P; mprintf('\n Compressor horse power for the reversed Carnot cycle is %f hp',C_hp); //end
7275bc017409eb12607e1c62dd2b8fedda8d5cef
93c7fb5ee09b14b93d6c6a5a99d15e57555802be
/pushswap42/scripts/docker_file/test_500/test12.tst
010c2e3d3b375d26d606c461b2e1f3823d7001ce
[]
no_license
ach5910/42PushSwap.com
b1cd724453b20296e39c18e5d576bdfb6290f7da
bfa2755c1cb84c7d72a4858c77193743a5583a1a
refs/heads/master
2020-04-05T12:35:36.043271
2017-07-26T06:33:40
2017-07-26T06:33:40
95,174,903
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,896
tst
test12.tst
14661 1371 15184 45640 35857 28813 43785 24347 48214 13059 9989 44636 9986 3140 34909 22898 2066 4333 38585 43254 41059 27113 37529 31731 49917 47273 1359 9368 46398 35854 24834 14680 40047 16513 24327 29457 21965 17405 18484 48618 44885 44710 44677 2576 7851 43615 36600 10339 6640 31231 44901 25808 25848 37547 37015 46399 12742 30539 4130 36642 43464 23274 46351 18784 45005 34738 21531 9467 17003 46018 45533 17790 41922 44360 46246 36297 21807 45815 24875 11892 26235 27665 38760 32257 47153 40442 42903 18384 25569 32730 41302 30140 15397 17800 33908 43778 32026 21452 9985 28051 3052 11291 7794 47877 30309 30981 7739 48854 46792 35656 21784 30514 25360 37014 18896 33688 42974 18750 23094 40012 48351 23425 48009 25557 6009 1553 4649 14605 40552 39111 26532 28547 33164 26207 21949 42889 16351 1810 27565 6253 47551 36752 26692 2354 38404 43094 39602 14037 9375 308 12001 46383 45769 3749 7969 41996 9110 15673 16535 40226 10042 299 24629 43497 2525 10503 28747 25384 25121 43406 49460 18611 7621 14844 41005 47633 12109 4195 33415 2624 43619 7397 33255 5894 4233 10384 32070 40197 47425 15729 27973 10515 12515 36538 37347 45601 17199 46593 12223 20335 37508 40799 4109 17449 15785 30512 4335 14679 39233 27268 45540 8974 26427 33615 46917 27930 11531 22491 40744 32454 22971 24585 2490 20113 29427 37456 47461 1889 44892 47400 32711 8388 44155 36009 15825 40706 18193 5080 8795 30625 6366 9045 17890 25978 41696 44338 1418 48747 25490 5768 34751 3416 36803 38025 14219 42489 18583 20354 18339 17537 49536 36055 929 9109 7730 49240 44737 430 14825 44132 42049 39403 47665 26261 15740 17123 43536 7827 48527 46764 47262 43207 25591 24330 8626 3113 30621 3546 46200 38446 37995 12206 25034 37992 35222 30490 5650 5111 33423 43448 3582 22923 4719 25242 10869 37362 34386 6047 17804 25545 20172 8417 23441 35472 3476 1770 47229 23329 43890 7692 27488 30954 49627 725 30224 37938 33007 40798 39344 28447 10942 31976 43714 10077 17918 36309 34624 18366 37828 31886 29837 36399 45595 11202 26164 1513 15264 14484 35241 32748 36310 17471 15438 46112 33114 46562 49397 20173 41077 19169 39075 8155 18047 36316 27213 27519 29273 375 26631 44704 39976 10531 16835 33489 32916 27723 24648 35578 49101 32920 47360 49866 41719 21375 11369 41387 25287 20274 40284 31217 16320 19856 26038 18918 48006 43558 24173 49249 32728 38459 15901 41586 36441 26297 9422 6109 10522 26409 48135 43014 28754 27804 34078 11882 1042 38157 30624 9873 1440 39283 28181 31839 14545 29579 4162 7890 35592 23336 48095 15959 17694 20833 17724 39616 16005 618 12550 576 40110 13221 7626 29969 30684 46074 44913 22986 31196 40893 29297 47019 45974 20033 29954 8008 23879 31571 26640 43623 3716 6099 8169 35338 28413 23352 47539 32014 46839 27124 25029 29062 3577 37283 35107 8842 95 34028 14536 24771 5420 11220 43523 38896 49915 40461 8720 44159 42208 22914 35395 9193 27956 9210 35556 44717 41015 25742 49 16993 49509 24711
517117c7bdd567b300569f56e915f3a57d16ee07
449d555969bfd7befe906877abab098c6e63a0e8
/2045/CH4/EX4.34/Ex4_34.sce
8e8eaf12fe92fab3ed44a093c1a656aa89656fd6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
493
sce
Ex4_34.sce
//pagenumber 221 example 34 clear em1cur=2*10^-3;//ampere v1=12;//volt vcc=12;//volt format(12); colres=5*10^3;//ohm em1res=v1/em1cur; colcur=em1cur; voltag=colcur*colres;//ic*r v1=vcc-(colres*colcur); disp("emitter current = "+string((em1cur))+"ampere"); disp("collector current = "+string((colcur))+"ampere"); disp("voltage = "+string((voltag))+"volt"); disp("vcb = "+string(abs(v1))+"volt"); disp("emitter resistance = "+string((em1res))+"ohm");
a86a9736fffaea3af2188f38b71c150a6325e810
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set11/s_Fundamentals_Of_Thermodynamics_B._Claus_And_R._E._Sonntag_172.zip/Fundamentals_Of_Thermodynamics_B._Claus_And_R._E._Sonntag_172/CH9/EX9.7/ex7.sce
0f3ac3fab3c8d7d8ffa211cf154f77748449204f
[]
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
349
sce
ex7.sce
errcatch(-1,"stop");mode(2);//example 7 //work required to pump water isentropically P1=100 //initial pressure in kPa P2=5000 //final pressure in kPa v=0.001004 //specific volume in m^3/kg w=v*(P2-P1) //work required to pump water isentropically printf("\n hence,work required to pump water isentropically is w=%.2f kJ/kg.\n",w) exit();
c7ad62ba28154121b96a084ab6a9efbd54249fbf
449d555969bfd7befe906877abab098c6e63a0e8
/1172/CH8/EX8.9/Example8_9.sce
412f318d1de01910adc2a76db1d28212c19473a9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
533
sce
Example8_9.sce
clc //Given that R_e = 6.4e6 // radius of Earth in km M_e = 6e24 // mass of Earth in kg G = 6.67e-11 // universal gravitational constant u = 6e3 // initial speed of rocket in m/s // sample problem 9 page No. 302 printf("\n\n\n # Problem 9 # \n") printf("Standard formula used U_f - U_i = 1/2 * m *(u^2 - v^2)\n ") h = ((R_e * 1e3)^2 * u^2) / (2 * G * M_e - R_e * u^2) / 1000 // calculation of Height reached by rocket before returning to Earth printf ("\n Height reached by rocket before returning is %e km.",h)
b1ac50f0aeeab586378fe1926508f06137d16d05
449d555969bfd7befe906877abab098c6e63a0e8
/3808/CH6/EX6.6/Ex6_6.sce
25b0b648e80effc01dee70274cc0ce0ad5b6b520
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
484
sce
Ex6_6.sce
//Chapter 06: Counting clc; clear; function res=permutation(n,r) //function definition i=n res=1 l=(n-r)+1 u=n for i=l:u //computing the permutation res=res*i end return res endfunction a=permutation(5,3)//function call b=permutation(5,5)//function call mprintf("The number of ways to select 3 students from a group of 5 students to line up for a picture is %d",a) mprintf("\nThe number of ways to select 5 students from a group of 5 students to line up for a picture is %d",b)
556c5adc2c29af47d91602bf41b2fb5328cfc019
449d555969bfd7befe906877abab098c6e63a0e8
/1979/CH7/EX7.2/Ex7_2.sce
7eedffde220eff2a34760b7d53eee5db1f996ab3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
646
sce
Ex7_2.sce
//chapter-7 page 279 example 7.2 //============================================================================== clc; clear; x=3;//O/P incident power from first directional coupler in mW y=0.1;//O/P reflected power from second directional coupler in mW //CALCULATION Pi=x*100;//Incident Power in mW Pr=y*100;//Reflected Power in mW p=sqrt(Pr/Pi);//Reflection Coefficient S=((1+p)/(1-p));//Voltage Standing Wave Ratio(VSWR) //OUTPUT mprintf('\nVoltage Standing Wave Ratio(VSWR)in the main waveguide is S=%1.2f \nReflected Power is Pr=%2.0f mW',S,Pr); //=========================END OF PROGRAM===============================
6cfd9a7adc91f40a37136b92a71f73151d92c6ec
5bd32b0243dbcb7551e03872f901a42713dfa199
/Bitmaps.sce
698abfcae386394dc0bf49d304a5f27f28e91ea7
[ "MIT" ]
permissive
cvdhengel/MarioCards
da0dc732d11631eeaee215b82dbbd5fa45398f8c
7ab6013dbbc2e0f36f482467845df961d5d7616f
refs/heads/master
2021-01-23T00:48:31.597526
2017-05-31T18:52:29
2017-05-31T18:52:29
92,846,680
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,512
sce
Bitmaps.sce
bitmap {filename ="dia1.jpg"; width=1029; height=830;}Intro1; bitmap {filename = "VB1_MR1.jpg"; width=400; height=400;}V1; bitmap {filename = "VB2_SG2.jpg"; width=400; height=400;}V2; bitmap {filename = "VB3_LB3.jpg"; width=400; height=400;}V3; bitmap {filename = "VB4_PP4.jpg"; width=400; height=400;}V4; array{ bitmap {filename = "MR1.jpg"; width=400; height=400; description= "MR1";}T1; bitmap {filename = "MR2.jpg"; width=400; height=400; description= "MR2";}T2; bitmap {filename = "MR3.jpg"; width=400; height=400; description= "MR3";}T3; bitmap {filename = "MR4.jpg"; width=400; height=400; description= "MR4";}T4; bitmap {filename = "SR1.jpg"; width=400; height=400; description= "SR1";}T5; bitmap {filename = "SR2.jpg"; width=400; height=400; description= "SR2";}T6; bitmap {filename = "SR3.jpg"; width=400; height=400; description= "SR3";}T7; bitmap {filename = "SR4.jpg"; width=400; height=400; description= "SR4";}T8; bitmap {filename = "LR1.jpg"; width=400; height=400; description= "LR1";}T9; bitmap {filename = "LR2.jpg"; width=400; height=400; description= "LR2";}T10; bitmap {filename = "LR3.jpg"; width=400; height=400; description= "LR3";}T11; bitmap {filename = "LR4.jpg"; width=400; height=400; description= "LR4";}T12; bitmap {filename = "PR1.jpg"; width=400; height=400; description= "PR1";}T13; bitmap {filename = "PR2.jpg"; width=400; height=400; description= "PR2";}T14; bitmap {filename = "PR3.jpg"; width=400; height=400; description= "PR3";}T15; bitmap {filename = "PR4.jpg"; width=400; height=400; description= "PR4";}T16; bitmap {filename = "MG1.jpg"; width=400; height=400; description= "MG1";}T17; bitmap {filename = "MG2.jpg"; width=400; height=400; description= "MG2";}T18; bitmap {filename = "MG3.jpg"; width=400; height=400; description= "MG3";}T19; bitmap {filename = "MG4.jpg"; width=400; height=400; description= "MG4";}T20; bitmap {filename = "SG1.jpg"; width=400; height=400; description= "SG1";}T21; bitmap {filename = "SG2.jpg"; width=400; height=400; description= "SG2";}T22; bitmap {filename = "SG3.jpg"; width=400; height=400; description= "SG3";}T23; bitmap {filename = "SG4.jpg"; width=400; height=400; description= "SG4";}T24; bitmap {filename = "LG1.jpg"; width=400; height=400; description= "LG1";}T25; bitmap {filename = "LG2.jpg"; width=400; height=400; description= "LG2";}T26; bitmap {filename = "LG3.jpg"; width=400; height=400; description= "LG3";}T27; bitmap {filename = "LG4.jpg"; width=400; height=400; description= "LG4";}T28; bitmap {filename = "PG1.jpg"; width=400; height=400; description= "PG1";}T29; bitmap {filename = "PG2.jpg"; width=400; height=400; description= "PG2";}T30; bitmap {filename = "PG3.jpg"; width=400; height=400; description= "PG3";}T31; bitmap {filename = "PG4.jpg"; width=400; height=400; description= "PG4";}T32; bitmap {filename = "MB1.jpg"; width=400; height=400; description= "MB1";}T33; bitmap {filename = "MB2.jpg"; width=400; height=400; description= "MB2";}T34; bitmap {filename = "MB3.jpg"; width=400; height=400; description= "MB3";}T35; bitmap {filename = "MB4.jpg"; width=400; height=400; description= "MB4";}T36; bitmap {filename = "SB1.jpg"; width=400; height=400; description= "SB1";}T37; bitmap {filename = "SB2.jpg"; width=400; height=400; description= "SB2";}T38; bitmap {filename = "SB3.jpg"; width=400; height=400; description= "SB3";}T39; bitmap {filename = "SB4.jpg"; width=400; height=400; description= "SB4";}T40; bitmap {filename = "LB1.jpg"; width=400; height=400; description= "LB1";}T41; bitmap {filename = "LB2.jpg"; width=400; height=400; description= "LB2";}T42; bitmap {filename = "LB3.jpg"; width=400; height=400; description= "LB3";}T43; bitmap {filename = "LB4.jpg"; width=400; height=400; description= "LB4";}T44; bitmap {filename = "PB1.jpg"; width=400; height=400; description= "PB1";}T45; bitmap {filename = "PB2.jpg"; width=400; height=400; description= "PB2";}T46; bitmap {filename = "PB3.jpg"; width=400; height=400; description= "PB3";}T47; bitmap {filename = "PB4.jpg"; width=400; height=400; description= "PB4";}T48; bitmap {filename = "MP1.jpg"; width=400; height=400; description= "MV1";}T49; bitmap {filename = "MP2.jpg"; width=400; height=400; description= "MV2";}T50; bitmap {filename = "MP3.jpg"; width=400; height=400; description= "MV3";}T51; bitmap {filename = "MP4.jpg"; width=400; height=400; description= "MV4";}T52; bitmap {filename = "SP1.jpg"; width=400; height=400; description= "SV1";}T53; bitmap {filename = "SP2.jpg"; width=400; height=400; description= "SV2";}T54; bitmap {filename = "SP3.jpg"; width=400; height=400; description= "SV3";}T55; bitmap {filename = "SP4.jpg"; width=400; height=400; description= "SV4";}T56; bitmap {filename = "LP1.jpg"; width=400; height=400; description= "LV1";}T57; bitmap {filename = "LP2.jpg"; width=400; height=400; description= "LV2";}T58; bitmap {filename = "LP3.jpg"; width=400; height=400; description= "LV3";}T59; bitmap {filename = "LP4.jpg"; width=400; height=400; description= "LV4";}T60; bitmap {filename = "PP1.jpg"; width=400; height=400; description= "PV1";}T61; bitmap {filename = "PP2.jpg"; width=400; height=400; description= "PV2";}T62; bitmap {filename = "PP3.jpg"; width=400; height=400; description= "PV3";}T63; bitmap {filename = "PP4.jpg"; width=400; height=400; description= "PV4";}T64; }stimuli;
1662261fa93ecd5dc1d7f23f9fb1562ece8047f2
449d555969bfd7befe906877abab098c6e63a0e8
/2672/CH1/EX1.46/Ex1_46.sce
5738b16f432bc844f5707e86e1f1182951419130
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
351
sce
Ex1_46.sce
//Example 1_46 clc; clear; close; format('v',5); //given data : RAD=20;//ohm RAC=30;//ohm RDC=50;//ohm RDB=50;//ohm RBC=45;//ohm RAN=RAD*RAC/(RAD+RAC+RDC);//ohm RDN=RAD*RDC/(RAD+RAC+RDC);//ohm RCN=RAC*RDC/(RAD+RAC+RDC);//ohm RAB=RAN+(RDN+RDB)*(RCN+RBC)/(RDN+RDB+RCN+RBC);//ohm disp(RAB,"Total Resistance between terminal A & B(ohm)");
367ddc86d22f9b97b5fbbeb6d8af16f4fb732493
449d555969bfd7befe906877abab098c6e63a0e8
/273/CH12/EX12.3/ex12_3.sce
b4f96c7efdda21eff950afbd2e848413416f2310
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
351
sce
ex12_3.sce
clc;clear; //Example 12.3 //calculation of depth and wavelength //given values f=.07*10^6;//frequency in Hz t=.65;//time taken for pulse to return v=1700;//velocity of sound in sea water in m/s //calculation d=v*t/2;// disp(d,'the depth of sea(in m) is'); l=v/f;//wavelenght of pulse in m disp(l*10^2,'wavelength of pulse (in cm)is');
d6da9f8fc69b5655a87faeacd2c64c3c610dfcf7
676ffceabdfe022b6381807def2ea401302430ac
/solvers/ShallowWaterSolver/Tests/NonlinearSWE_RossbyModon_DG_P9.tst
ffb1d0d659e43e87d42c2ef1e65461f4c0a96e81
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
869
tst
NonlinearSWE_RossbyModon_DG_P9.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>Rossby modon, DG, P=9</description> <executable>ShallowWaterSolver</executable> <parameters>NonlinearSWE_RossbyModon_DG_P9.xml</parameters> <files> <file description="Session File">NonlinearSWE_RossbyModon_DG_P9.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="h" tolerance="1e-12">1.00464</value> <value variable="hu" tolerance="1e-12">0.0216838</value> <value variable="hv" tolerance="1e-12">0.00553772</value> </metric> <metric type="Linf" id="2"> <value variable="h" tolerance="1e-12">1.1588</value> <value variable="hu" tolerance="1e-12">0.3005</value> <value variable="hv" tolerance="1e-12">0.0484094</value> </metric> </metrics> </test>
2cb9209e72dba6000de7ced94c50d52bf6a0f3ca
1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08
/Scilab/PCIE Clocks/SinosoidalJitter.sce
188ca0322fac8e6f33d0fb7c7c17bd218f326a8f
[]
no_license
lrayzman/SI-Scripts
5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d
9ab161c6deff2a27c9da906e37aa68964fabb036
refs/heads/master
2020-09-25T16:23:23.389526
2020-02-09T02:13:46
2020-02-09T02:13:46
66,975,754
0
0
null
null
null
null
UTF-8
Scilab
false
false
975
sce
SinosoidalJitter.sce
//Generates clock ideal crossings with sinosoidal jitter component stacksize(128*10*1024); N=1*1024 ; // Number of samples n=[0:1:N]; //Number of clock edges per=10^(-8); //100Mhz clock period JitAmp=0.1; //Amplitude of the jitter component JitFreq=1*10^6; //Jitter frequency (Hz) Crossings = per *(n + JitAmp*sin((2*%pi*JitFreq) * n*per)); //Generate signal with sinosoidal modulation //plot2d(N*per, Crossings); //Plot phase jitter //xtitle("", "Time", "Time"); Frequencies=n(1:N/2) / (N*per); //Difference = Crossings(2:N) - Crossings(1:N-1); //Cycle-to-cycle difference vector Difference = Crossings - n*per; clear n; clear Crossings; Spectrum= 2 * per * fft(Difference(1:N) / (per * N), -1); xbasc(); plot2d(Frequencies, abs(Spectrum(1:N/2)))
bf17f849c9d3a28628a47897ab58995c0e8f8c6e
449d555969bfd7befe906877abab098c6e63a0e8
/1682/CH8/EX8.4/Exa8_4.sce
3e5f0fee50b93ad8c07243c156bcc040643449d4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
901
sce
Exa8_4.sce
//Exa 8.4 clc; clear; close; //Alternative 1: Present machine : Pprice=200000;//in Rs P=120000;//in Rs F=25000;//in Rs A=25000;//in Rs i=12;//in % per annum n=6;//in years //Formula : (A/P,i,n) : ((i/100)*(1+i/100)^n)/(((1+i/100)^n)-1) AE1=(P-F)*((i/100)*(1+i/100)^n)/(((1+i/100)^n)-1)+F*i/100+A;//in RS disp(AE1,"The annual equivalent cost(AE(12%)) of this alternative in RS. : "); //Alternative 2: New machine : P=150000;//in Rs F=20000;//in Rs A=14000;//in Rs i=12;//in % per annum n=6;//in years //Formula : (A/P,i,n) : ((i/100)*(1+i/100)^n)/(((1+i/100)^n)-1) AE2=(P-F)*((i/100)*(1+i/100)^n)/(((1+i/100)^n)-1)+F*i/100+A;//in RS disp(AE2,"The annual equivalent cost(AE(12%)) of this alternative in RS. : "); disp("Since, The equivalent cost of new machine is less than that of present machine, it is suggested that the present machine be replaced with the new machine.");
766e20097c22ac1dbffc5b0648e30b854b772063
449d555969bfd7befe906877abab098c6e63a0e8
/542/CH15/EX15.1/Example_15_1.sci
1ccf89652afc298bae3e3d2927d5ba0e19690a31
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
648
sci
Example_15_1.sci
clear; clc; printf("\n Example 15.1"); printf("\n For concentrations in kg sucrose/kg water:"); c = 2.45; //concentration is in kg/kg printf("\n c = %.2f kg/kg",c); c1= 2.04; //concentration is in kg/kg printf("\n c1 = %.2f kg/kg",c1); S = c/c1; printf("\n S = %.2f",S); printf("\n\n For concentrations in kg sucrose/kg water:") co = c/(c+1); //concentration is in kg/kg solution printf("\n co = %.3f kg/kg solution",co); co1 = c1/(c1 + 1); //concentration is in kg/kg solution printf("\n co1 = %.3f kg/kg solution",co1); S = co/co1; printf("\n S = %.2f ",S);
162b1802f98d7e7d1f9406a49593b21f53a17ed7
449d555969bfd7befe906877abab098c6e63a0e8
/779/CH12/EX12.11/12_11.sce
167c12c951a456505a2918db7f0f7ef68644175b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
334
sce
12_11.sce
h1 = 3285; h2s = 3010; h3 = 3280; h4s = 3030; h4 = h3-0.83*(h3-h4s); h5s = 2225; h5 = h4-0.83*(h4-h5s); h6 = 162.7; h7 = h6; h8 = 762.81; h2 = h1-0.785*(h1-h2s); m = (h8-h7)/(h4-h7); n_cycle = ((h1-h2)+(h3-h4)+(1-m)*(h4-h5))/((h1-h8)+(h3-h2)) disp("kg/s",m,"Steam flow at turbine inlet is") disp("%",n_cycle*100,"cycle efficiency is")
97f68ac4e73efadca146dbe3ec45f867da2aec91
449d555969bfd7befe906877abab098c6e63a0e8
/1958/CH12/EX12.e.2/Chapter12_example2.sce
4ef1e4660b508fe3abbda18228826920e931304c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
687
sce
Chapter12_example2.sce
clc clear //Input data R=[6,6,3]//Resistances in the circuit from circuit diagram 12.9 on page no. 175 in ohms V=[24,16]//Voltages in the circuit from circuit diagram 12.9 on page no. 175 in V //Calculations Re1=1/((1/R(2))+(1/R(3)))//Equivalent resistance for parallel combination in ohms Re=R(1)+Re1//Equivalent resistance of the ciriuit in ohms I1=(V(1)/Re)//Current across the resistors in A pd=(I1*Re1)//Potential difference across A and B from circuit diagram 12.9 on page no. 175 in V I2=(pd/R(3))//Current across 3 ohms resistance in A I3=(V(2)/(R(1)+R(2)))//Current in A I=I2+I3//Total current //Output printf('The current shown in the circiut is %3.1f A',I)
48d584fc6f231c09832d18576947f8997aa12941
449d555969bfd7befe906877abab098c6e63a0e8
/564/DEPENDENCIES/5_5data.sci
0d4569d42b980d889a642b505634105cb0cd115e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
146
sci
5_5data.sci
L=2000;//langth.in mm Ab=200;//in mm^2 A=180;//area of bar,in mm^2 P=1000;//in N theta=60*(%pi/180); E=200000;//in N/mm^2 I=100000;//in mm^4
f9e81aa46bfe4ef3ad34e83ddfe552edc6a62bf7
449d555969bfd7befe906877abab098c6e63a0e8
/405/CH4/EX4.12/4_12.sce
8853a6d5be35d0c1d01ea15690dad116f529cf13
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,500
sce
4_12.sce
clear; clc; printf("\t\t\tExample Number 4.12\n\n\n"); // implicit formulation // Example 4.12 (page no.-173-174) // solution // we are using the data of example 4.11 for this question // we are inserting the value of Rij in equation (4-43) to write the nodal equations for the end of the first time increment, taking all T1^(p) = 200 degree celsius // we use underscore to designate the temperatures at the end of the time increment. for node 1 // 0.05302*T1_ = 200/70.731+T2_/70.731+40/84.833+0.01296*200 // for node 2 // 0.05302*T2_ = T1_/70.731+T3_/70.731+40/84.833+0.01296*200 // for node 3 and 4, // 0.05302*T3_ = T2_/70.731+T4_/70.731+40/84.833+0.01296*200 // 0.02686*T4_ = T3_/70.731+40/2829+40/169.77+0.00648*200 // these equations can then be reduced to // 0.05302*T1_-0.01414*T2_ = 5.8911 // -0.01414*T1_+0.05302*T2_-0.01414*T3_ = 3.0635 // -0.01414*T2_+0.05302*T3_-0.01414*T4_ = 3.0635 // -0.01414*T3_+0.02686*T4_ = 1.5457 // These equations can be solved by matrix method Z = [0.05302 -0.01414 0 0;-0.01414 0.05302 -0.01414 0;0 -0.01414 0.05302 -0.01414;0 0 -0.01414 0.02686]; C = [5.8911;3.0635;3.0635;1.5457]; T_ = Z^(-1)*C; T1_ = T_(1);// [degree celsius] T2_ = T_(2);// [degree celsius] T3_ = T_(3);// [degree celsius] T4_ = T_(4);// [degree celsius] // we can now apply the backward-difference formulation a second time using the double underscore to designate the temperatures at the end of the second time increment: // 0.05302*T1__ = 200/70.731+T2__/70.731+40/84.833+0.01296*145.81 // 0.05302*T2__ = T1__/70.731+T3__/70.731+40/84.833+0.01296*130.12 // 0.05302*T3__ = T2__/70.731+T4__/70.731+40/84.833+0.01296*125.43 // 0.02686*T4__ = T3__/70.731+40/2829+40/169.77+0.00648*123.56 // These equations can be solved by matrix method X = [0.05302 -0.01414 0 0;-0.01414 0.05302 -0.01414 0;0 -0.01414 0.05302 -0.01414;0 0 -0.01414 0.02686]; V = [5.1888;2.1578;2.0970;1.0504]; T__ = X^(-1)*V; T1__ = T__(1);// [degree celsius] T2__ = T__(2);// [degree celsius] T3__ = T__(3);// [degree celsius] T4__ = T__(4);// [degree celsius] printf(" temperatures after time increment 1 are:"); printf("\n\n\t\t T1'' == %f",T1_); printf("\n\n\t\t T2'' == %f",T2_); printf("\n\n\t\t T3'' == %f",T3_); printf("\n\n\t\t T4'' == %f",T4_); printf("\n\n temperatures after time increment 2 are:"); printf("\n\n\t\t T1'''' == %f",T1__); printf("\n\n\t\t T2'''' == %f",T2__); printf("\n\n\t\t T3'''' == %f",T3__); printf("\n\n\t\t T4'''' == %f",T4__);
d8bc6b52725bf4757b2ab4220998a73018426bd3
449d555969bfd7befe906877abab098c6e63a0e8
/527/CH1/EX1.4/1_4exam.sce
5f6bc69c0e96e1245070b8750629616548287a98
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
645
sce
1_4exam.sce
//Engineering and Chemical Thermodynamics //Example 1.3 //Page no :27 clear ; clc //From Ideal gas law we have v=(R*T)/P //Given data P = 1.4 ; //[MPa] P_low = 1 ;//[MPa] P_high = 1.5;//[MPa] //At T=333*C from interpolation we have v_cap_P1_5 = 0.18086 ;//[m^3/kg] v_cap_P1 = 0.27414 ;//[m^3/kg] //Molar volume is inversely proportional to pressure v_cap_P1_4 = v_cap_P1 +(v_cap_P1_5 - v_cap_P1)*((1/P - 1/P_low)/(1/P_high - 1/P_low)); x=(0.19951-0.19418)/0.19418*100 ; disp(" Example: 1.4 Page no : 28") ; printf('\n Specific volume (m^3/kg) = %g',v_cap_P1_4); printf('\n Percentage difference = %g',x);
509e69e1cc28f72b37f1f206a55abbbd48facfe7
449d555969bfd7befe906877abab098c6e63a0e8
/2409/CH16/EX16.1/Ex16_1.sce
b3dc9b1ab20931ea1a3c90f923d70c8a1973f434
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,683
sce
Ex16_1.sce
//Varaible Declaration EIRP=55 //EIRP for satellite(dBW) fD=12.5 //Downlink frequency(GHz) Pss=-101 //Receiving at ground station direction(degrees west) Rb=40*10**6 //Transmission Rate(Hz) D=18 //Diameter of antenna(inches) n=0.55 //Efficiency of antenna Tant=70 //Antenna noise(Kelvin) Teq=100 //Equivalent noise temperature at LNA(Kelvin) R=6371 //Radius of earth(Km) L=2 //Transmission losses(dB) aGSO=42164 //Circumference of earth(km) k=-228.6 //Boltzmann's constant (dB) PE=-90 //Longitude of Earth station(degrees west) LE=45 //Latitude of Earth station(degrees north) f=14 //Frequency(GHz) //Calculation B=PE-Pss b=acos(cos(B*3.142/180)*cos(LE*3.142/180)) b=b*180/3.142 A=asin(sin(abs(B)*3.142/180)/sin(b*3.142/180)) A=A*180/3.142 Az=180+A //Azimuth angle of antenna(degrees) d=(R**2+aGSO**2-2*R*aGSO*cos(b*3.142/180))**0.5 //Range of antenna(km) El=acos(aGSO*sin(b*3.142/180)/d) //Elevation angle of antenna(radians) El=El*180/3.142 //Elevation angle of antenna(degrees) El=round(El) d=round(d) FSL=32.4+20*log10(d)+20*log10(f*10**3) //Free space loss(dB) LOSSES=FSL+L //Total Transmission Losses Ts=Teq+Tant //Total system noise temperature(Kelvin) T=10*log10(Ts) //Total system noise temperature(dBK) G=n*(3.192*f*(D/(12)))**2 G=10*log10(G) //Antenna Gain(dB) GTR=G-T //G/T ratio(dB) CNR=EIRP+GTR-LOSSES-k //Carrier to noise ratio(dB) Rb=10*log10(Rb) //Transmission Rate(dBHz) EbN0R=CNR-Rb //Eb/N0 ratio at IRD(dB) //Results printf("The Azimuth angle of antenna is %.1f degrees" ,Az) printf("The Elevaation Angle of Antenna is %.f degrees",El) printf("The Range of Antenna is %.f km",d) printf("The Eb/N0 ratio at IRD is %.1f dB",EbN0R)
b971a37622048954bba4a2b75f8cb104290cd268
717ddeb7e700373742c617a95e25a2376565112c
/72/CH4/EX4.2.2/4_2_2.sce
d4c4f97c78395a813e2c2fff637bfda7fd40e057
[]
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
3,947
sce
4_2_2.sce
//CAPTION:Wave_Propagation_In_circular_Waveguide //chapter-4 //Example-4-2-2 page no.-147 //program_to_find_all_the_TE(n,p)_and_TM(n,p)modes_for_which_energy_transmisssion_is_possible. radius=.02; //Given. Here_radius_is_in_metres. uo=(4*(%pi))*(10^-7); eo=8.85*(10^(-12)); //scientific_values_of_permeability_and_permittivity_in_free_space f=(10^10); //guide_is_operating_at_the_frequency_of_10GHZ wc=(2*%pi*f); //since, wc=(2*%pi*f) kc=wc*sqrt(uo*eo); //kc_is_cut-off_wave_number X=kc*radius ; //the product X=(kc*radius) for_a_given_mode_is_constant disp(kc*radius,'The_value_of_the_product X=(kc*radius)is = '); //display_the_product_X=(kc*a) disp('Any mode having a product (kc*radius) less than or equal to 4.18 will propagate the wave with a frequency of 10 GHZ .This is (kc*radius)<=4.18'); syms i j //Defining_the_variables p=[3.832 1.841 3.054 4.201 5.317 6.416;7.016 5.331 6.706 8.015 9.282 10.520 ; 10.173 8.536 9.969 11.346 12.682 13.987]//represent_the_values_of X_for_ different_modes_in_a_form_of_matrix. Where_columns_represent the_n_values_of_mode_and_rows_represent_the_m_values_of_mode. for i=1:1:3 //value_of_i_traverse_across_the_rows for j=1:1:6 //value_of_j_traverse_across_the_columns if(X >=p(i,j)) //check_if_the_value_in(n,p)_matrix_is_less_than_or_equal_to_X disp(p(i,j),i,j-1,'TE mode(n,p) and corresponding value of X='); //display_TE_mode_for_which_value_in [(n,p)matrix] <= X and print corresponding_value_of_X end //end if end //end for end //end for m=[2.405 3.832 5.136 6.380 7.588 ; 5.520 7.106 8.417 9.761 11.065 ; //represent_the_values_of_X_for_different_modes_in_a_form_of_matrix.Where columns_represent_the_n_values_of_mode_and_rows_represent_the_m_values_of_mode. 8.645 10.173 11.620 13.015 14.372] for i=1:1:3 //value_of_i_traverse_across_the_rows_in [(n,p)matrix]. for j=1:1:5 //value_of_j_traverse_across_the_columns in [(n,p)matrix]. if(X >=m(i,j)) //check_if_the_value_in(n,p)_matrix_is_less_than_or_equal_to_X disp(m(i,j),i,j-1,'TM mode(n,p) and corresponding value of X='); //display_TM_mode_for_which_value in [(n,p)matrix] <= X and_print corresponding_value_of_X. end //end if end //end for end //end for
e708bc62a03f73e8e2191b9730b3d40a180aa4d7
449d555969bfd7befe906877abab098c6e63a0e8
/1627/CH10/EX10.2/Ex10_2.sce
c07e8f12481491c1ab99fb89503eee7f179f4239
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
295
sce
Ex10_2.sce
clc //initialisation of variables p=38//cm^3/rev Q=65//min d=1800//rpm p1=103//bars h=1/1000//rev/min //CALCULATIONS Q1=p*h*d//min Ev=Q/Q1*100//percent Ta=(p*10^-6)*(p1*10^5)/(2*(%pi))//N.m //RESULTS printf('The volumetric efficiency and torque applied to the shaft is=% f N.m',Ta)
9df21299e2ab333883863f5a207bcf260e9aedac
bbdc72de6d7eef74128eaf52b1f040053943de38
/Code/Cholesky_Factorisation.sci
b247deaf444975c51cdabcf24dfd9ffcd8a368ba
[]
no_license
Abdel-BHPC/Numerical-analysis
46bb4dbcd26e00d6c4f405fe59a1ba433b8b72e0
2bcdb80d9ab8890d036eac3cce92b595abb88784
refs/heads/main
2023-03-02T14:11:06.939206
2021-02-08T08:40:07
2021-02-08T08:40:07
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
881
sci
Cholesky_Factorisation.sci
/* Etideur: Jinshan GUO Objecitf: Fonction à réaliser l'algorithme de Cholesky pour le calcul direct en factorisation Principe A = C * C^T Containtes: A est une matrice symétrique définie positive C est une matrice triangulaire inférieure et C(i,i)>0 C^T est matrice transposée de C, triangulaire supérieure Valeur retour: C */ function [C,CT]=Cholesky_Factorisation(A) n = size(A)(1); //Nombre de ligne de matrice C = zeros(n,n); for j=1:n s = A(j,j) - C(j,1:j) * C(j,1:j)'; if abs(s) < %eps then error("A non SDP"); end C(j,j) = sqrt(s); /*for i=j+1:n C(i,j) = 1/C(j,j) * (A(i,j) - C(i,1:j) * C(j,1:j)'); end */ C(j+1:n,j) = 1/C(j,j) * (A(j+1:n,j) - C(j+1:n,1:j) * C(j,1:j)'); end CT = C'; endfunction
5fc42d5eac7090e7ee60412e67f8e327ac0772fb
449d555969bfd7befe906877abab098c6e63a0e8
/1922/CH3/EX3.1/3_1.sce
6b37dcc4eb29368e8f4cc4d0383dfbfa97bf68b5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
270
sce
3_1.sce
clc //Initialization of variables clear mass=4000 //kg/m^2 Patm=1.013*10^5 //pa g=9.807 M=28 R=8.3143*10^3 T=303 //K P1=800*10^3 //pa //calculations Ps=Patm+mass*g n=1/M V1=n*R*T/P1 W=Ps*(2*V1) //results printf("Work done on the surroundings = %d J",W)
1513d5e86a4f9975e010c73fcfdf8299d4ce1d3a
67ba0a56bc27380e6e12782a5fb279adfc456bad
/STAMPER_PROG_7.4/CreateGrooveOffsetArray.sci
f05f909f955d10d293e7ac444d6c53e49d86a1ef
[]
no_license
2-BiAs/STAMPER_PROG
8c1e773700375cfab0933fc4c2b0f5be0ab8e8f0
4fdc0bcdaef7d6d11a0dcd97bd25a9463b9550d0
refs/heads/master
2021-01-18T19:30:06.506977
2016-11-10T23:32:40
2016-11-10T23:32:40
71,999,971
0
0
null
null
null
null
UTF-8
Scilab
false
false
446
sci
CreateGrooveOffsetArray.sci
function vOffsetArray = CreateGrooveOffsetArray(vGroovePoints, fDoCfacet, fDoCwall, vBoundary) //vGroovePoints — a 3x2 DOUBLE array [point1X, point1Y; point2X...] //fDoCfacet — depth of cut on the second line segment of the Groove ("Facet") //fDoCwall — depth of cut on the first line segment of the Groove ("Wall") //vBoundary — boundary line to which to extend the groove array line segments endfunction
fcc5c50e5567127db546706e905e9f389ef77a80
449d555969bfd7befe906877abab098c6e63a0e8
/2417/CH6/EX6.8/Ex6_8.sce
0ed5ce1c41efe487eb95bcdf90c239d1ae186135
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
464
sce
Ex6_8.sce
clear; clc; printf("\t\t\tProblem Number 6.8\n\n\n"); // Chapter 6: The Ideal Gas // Problem 6.8 (page no. 246) // Solution //For CO2, R=8.314/44; //Unit:kJ/kg*K //constant of proportionality //Molecular weight of CO2=44 p=500; //Unit:kPa //pressure V=0.5; //Unit:m^3 //volume T=(100+273); //Unit:K //Celsius converted to kelvin //Applying p*V=m*R*T , m=(p*V)/(R*T); //mass //kg //ideal gas law printf("The mass of gas in the tank is %f kg\n",m);
c2bed1078d787b9311960d073b23a37a938ed67c
717ddeb7e700373742c617a95e25a2376565112c
/3204/CH8/EX8.2/Ex8_2.sce
0829fe80a3a8a1f1613304825d8e2ec7a3561935
[]
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
739
sce
Ex8_2.sce
// Initilization of variables V_r=20 // Velocity ratio // Refer the table given in the textbook for values of W,P,M.A & efficiency (eta) // Calculations // Part (a)- Realtionship between W & P // Here part a cannot be solved as it has variables which cannot be defined in Scilab. Ref.textbook for the solution // Part (b)- Graph between W & efficiency (eta) x=[0;30;40;50;60;70;80;90;100] // values for W // N y=[0;21.4;23.5;25;26.1;25.9;27.6;28.1;28.6] // values for efficiency (eta) subplot(221) xlabel("W (N)") ylabel("efficiency (eta)") plot(x,y) // Results clc printf('The graph is the solution') // The value of m is found by drawing straight line on the graph and by taking its slope. Ref textbook for the solution
fa88231e06e3ef252f7b5689d0534a4e1493769e
449d555969bfd7befe906877abab098c6e63a0e8
/569/CH9/EX9.17/9_17.sci
14fe3fd0c6eeb967f84c1eaad0c9f68e1278bf29
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,118
sci
9_17.sci
// calculate the optimum setting clc; Aou=700*25*1/100; Aol=100*25*1/100; AouPtP= 2*Aou; AolPtP= 2*Aol; Se1=1; D1=AouPtP/Se1; disp(D1,'deflection of screen corresponding to maximum pressure for sensitivity of 1mV/mm (mm)') disp('sinch the length of the screen is 100mm so waveform is out of range and hence sensitivity setting of 1mV/mm should not be used') Se2=5; D2=AouPtP/Se2; disp(D2,'deflection of screen corresponding to maximum pressure for sensitivity of 5mV/mm (mm)') disp('delection is within the range') Se3=20; D3=AouPtP/Se3; disp(D3,'deflection of screen corresponding to maximum pressure for sensitivity of 20mV/mm (mm)') disp('delection is within the range') Se4=100; D4=AouPtP/Se4; disp(D4,'deflection of screen corresponding to maximum pressure for sensitivity of 100mV/mm (mm)') disp('delection is within the range') Se5=500; D5=AouPtP/Se5; disp(D5,'deflection of screen corresponding to maximum pressure for sensitivity of 500mV/mm (mm)') disp('delection is within the range') disp('since the sensitivity of 5mV/mm gives higher deflection so it is the optimum sensitivity')
4d1109d70e78ad726c0e1cfa111ae3be7c0fb742
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH9/EX9.5/Ex9_5.sce
4daefea05036af77586f2cb186308eb4e4482c58
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,414
sce
Ex9_5.sce
clc Psat = 3.973 // Saturation pressure in MPa vf = 0.0012512 // specific volume of fluid in m^3/kg vg = 0.05013 // Specific volume of gas in m^3/kg hf = 1085.36 // Specific enthalpy of fluid in kJ/kg hfg = 1716.2 // Latent heat of vaporization in kJ/kg sf = 2.7927 // Specific entropy of fluid in kJ/kgK sfg = 3.2802 // Entropy change due to vaporization in kJ/kgK mf = 9 // Mass of liquid in kg V = 0.04 // Volume of vessel in m^3 // at T = 250 uf = 1080.39 //Specific internal energy in kJ/kg ufg = 1522// Change in internal energy due to vaporization in kJ/kg printf("\n Example 9.5") Vf = mf*vf // volume of fluid Vg = V-Vf // volume of gas mg = Vg/vg // mass of gas m = mf+mg // mass if mixture x = mg/m // quality of steam v = vf+x*(vg-vf) // specific volume of mixture h = hf+x*hfg // enthalpy of mixture s = sf+(x*sfg) // entropy of mixture u = h-Psat*1e6*v*1e-03 // Internal energy of mixture u_ = uf+x*ufg // Internal energy at 250 degree Celsius printf("\n The pressure is %f MPa",Psat) printf("\n The total mass of mixture is %f kg",m) printf("\n Specific volume is %f m3/kg",v) printf("\n Enthalpy is is %f kJ/kg",h) printf("\n The entropy is %f kJ/kg K",s) printf("\n The internal energy is %f kJ/kg",u) printf("\n At 250 degree Celsius, internal energy is %fkJ/kg",u_) //The answer provided in the textbook is wrong //The answers vary due to round off error
618370010d42a559d533deafbe1c37879ed7e237
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH16/EX16.17/17.sce
e35abbda26efb955e393873c070ebd948ec4d7d0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,179
sce
17.sce
clc p1=200; //kN/m^2 V1=170; //m/s T1=473; //K A1=0.001; //m^2 R=287; //J/kg K cp=1000; //J/kg K y=1.4; disp("(i) Stagnation temperature (Ts) and stagnation pressure (ps)") Ts=T1+V1^2/2/cp; disp("Ts=") disp(Ts) disp("K") ps=p1*(Ts/T1)^(y/(y-1)); disp("ps=") disp(ps) disp("kN/m^2") disp("(ii) Sonic velocity and Mach number at this section") C1=sqrt(y*R*T1); disp("Sonic velocity =") disp(C1) disp("m/s") M1=V1/C1; disp("Mach number = ") disp(M1) disp("(iii) Velocity, Mach number and flow area at outlet section where pressure is 110 kN/m2") p2=110; //kN/m^2 M2=sqrt(2/(y-1)*((ps/p2)^((y-1)/y) - 1)); disp("M2=") disp(M2) T2=Ts*(p2/ps)^((y-1)/y); C2=sqrt(y*R*T2); V2=M2*C2; disp("V2=") disp(V2) disp("m/s") A2=(p1*A1*V1*T2/T1/p2/V2)*10^6; disp("A2=") disp(A2) disp("mm^2") disp("(iv) Pressure (pt), temperature (Tt), velocity (Vt), and flow area (At) at throat of the nozzle") Mt=1; Tt=Ts/(1+(y-1)/2*Mt^2); disp("Tt =") disp(Tt) disp("K") pt=ps*(Tt/Ts)^(y/(y-1)); disp("pt") disp(pt) disp("kN/m^2") Ct=sqrt(y*R*Tt); Vt=Mt*Ct; At=(p1*A1*V1*Tt/T1/pt/Vt)*10^6; disp("At=") disp(At) disp("mm^2")
fb116bbea1ce93afcdc33b5bddae13ec7a79c729
676ffceabdfe022b6381807def2ea401302430ac
/solvers/CompressibleFlowSolver/Tests/Couette_FRDG_LFRDG_GLL_LAGRANGE_3DHOMO1D_MVM.tst
e4d24092a10dd2d0a35668adb1a3216c15aedf53
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
1,251
tst
Couette_FRDG_LFRDG_GLL_LAGRANGE_3DHOMO1D_MVM.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>NS, Couette flow, mixed bcs, FRDG advection and LFRDG diffusion, GLL_LAGRANGE</description> <executable>CompressibleFlowSolver</executable> <parameters>Couette_FRDG_LFRDG_GLL_LAGRANGE_3DHOMO1D_MVM.xml</parameters> <files> <file description="Session File">Couette_FRDG_LFRDG_GLL_LAGRANGE_3DHOMO1D_MVM.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="rho" tolerance="1e-12">0.000483154</value> <value variable="rhou" tolerance="1e-12">48.1265</value> <value variable="rhov" tolerance="1e-12">0.177367</value> <value variable="rhow" tolerance="1e-12"> 7.87069e-06</value> <value variable="E" tolerance="1e-12">17518.9</value> </metric> <metric type="Linf" id="2"> <value variable="rho" tolerance="1e-12">0.00207196</value> <value variable="rhou" tolerance="1e-12">83.332</value> <value variable="rhov" tolerance="1e-12">0.752414</value> <value variable="rhow" tolerance="1e-12">5.89513e-05</value> <value variable="E" tolerance="1e-12">18726.3</value> </metric> </metrics> </test>
7d90c0b765265697b9b5580a9d580f54a44b1f92
449d555969bfd7befe906877abab098c6e63a0e8
/2513/CH14/EX14.10/14_10.sce
fcd89b02c86a1fb5106e7574b01dd6f25135fc43
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
260
sce
14_10.sce
clc //initialisation of variables Q1=30//cfs Q2=16//cfs a=32//sq ft r=1.6//ft i=10^-4//ft n=1.25*10^-2//ft h2=0.50//ft c=3.33//ft h1=5.20//ft l=72//ft s=12320//ft //CALCULATIONS L=s-l//ft //RESULTS printf('the forchheimer s methos =% f ft',L)
8c145397afa5cad667c9c2405a6289b11f322c89
449d555969bfd7befe906877abab098c6e63a0e8
/671/CH10/EX10.18/10_18.sce
fd005b957d46b5d5b4db0c0e437a55cf5fa0ba46
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
92
sce
10_18.sce
R=1.2 V=220 Ea35=V-35*R n35=(475+400)/2 V=200 E0=V-35*(R+2) n=n35*E0/Ea35 disp(n)
85243eb72804408042d2267de2e424cf546192af
449d555969bfd7befe906877abab098c6e63a0e8
/2621/CH3/EX3.5/Ex3_5.sce
3451f05ea526331735456fbd1de90d6166f3cdf9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
674
sce
Ex3_5.sce
// Example 3.5 clc; clear; close; // Given data format('v',8); Rin= 2*10^6;// in Ω Rout= 75;// in Ω f0= 5;// in Hz R1= 330;//in Ω Rf= 3.3*10^3;// in Ω A= 2*10^5;//unit less B= R1/(R1+Rf);// feedback fraction AB= A*B;// feedback factor Af= -Rf/R1;// colsed-loop voltage gain Rin_f= R1;// input resistance with feedback in Ω Rout_f=Rout/(1+AB);// output resistance with feedback in Ω f_f= f0*(1+AB);// closed-loop bandwidth in Hz f_f= f_f*10^-3;// in kHz disp(Af,"The closed-loop voltage gain is : "); disp(Rin_f,"The input resistance in Ω is : "); disp(Rout_f,"The output resistance in Ω is : "); disp(f_f,"The bandwidth in kHz is : ");
43ab36b1a7a8e945ae38f443178cdadff74e5fb9
8ea401b354e99fe129b2961e8ee6f780dedb12bd
/sci_gateway/cpp/loader.sce
0c9ab68dcad16650b454811ca58d7d3c2c6c495e
[ "BSD-2-Clause" ]
permissive
adityadhinavahi/SciPandas
91340ca30e7b4a0d76102a6622c97733a28923eb
b78b7571652acf527f877d9f1ce18115f327fa18
refs/heads/master
2022-12-20T04:04:35.984747
2020-08-19T16:10:51
2020-08-19T16:10:51
288,765,541
0
1
null
2020-08-19T15:35:04
2020-08-19T15:14:46
Python
UTF-8
Scilab
false
false
906
sce
loader.sce
// This file is released under the 3-clause BSD license. See COPYING-BSD. // Generated by builder.sce : Please, do not edit this file // ---------------------------------------------------------------------------- // if ~win64() then warning(_("This module requires a Windows x64 platform.")); return end // scipandas_cpp_path = get_absolute_file_path('loader.sce'); // // ulink previous function with same name [bOK, ilib] = c_link('scipandas_cpp'); if bOK then ulink(ilib); end // link(scipandas_cpp_path + filesep() + '../../src/c/libPythonInstance' + getdynlibext()); list_functions = [ 'pandas'; ]; addinter(scipandas_cpp_path + filesep() + 'scipandas_cpp' + getdynlibext(), 'scipandas_cpp', list_functions); // remove temp. variables on stack clear scipandas_cpp_path; clear bOK; clear ilib; clear list_functions; // ----------------------------------------------------------------------------
0d2048a81bc31ebb47d9ccf44e6c8c97cffd2ce9
449d555969bfd7befe906877abab098c6e63a0e8
/1628/CH13/EX13.8/Ex13_8.sce
7ddcac1eeb226d05b8a1290b18c450897ea7a9f6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
686
sce
Ex13_8.sce
// Example 13.8 // We Know that Pi= Ph+ Pe=( Af+ Bf^2 ) // there for at 60Hz 100= 60A+ 3600B // at 40Hz 60 = 40A+ 1600B // After Solving Equation We have A=1.167; // Alphabet for Simlicity B=0.00834; // Alphabet for Simlicity f=50; // Frequency Ph=A*f; // Hysteresis Loss disp('Hysteresis Loss ( at 50 Hz ) = '+string(Ph)+' Watt'); Pe=B*f^2; // Eddy-Current Loss disp('Eddy-Current Loss ( at 50 Hz ) = '+string(Pe)+' Watt'); // p 495 13.8
ea39b5f9aa53d96832ed5b60d548da3227033cbd
449d555969bfd7befe906877abab098c6e63a0e8
/647/CH3/EX3.2/Example3_2.sce
80b412c52c9953a5d3e7da8dca88bd603f877de0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Example3_2.sce
clear; clc; // Example: 3.2 // Page: 89 printf("Example: 3.2 - Page: 89\n\n"); // Solution //*****Data*****// V1 = 8;// [cubic m] P1 = 300;// [kPa] V2 = 2;// [cubic m] //**************// // Apptying the ideal gas Eqn. & since the Temperature remains constant: P2 = P1*V1/V2;// [kPa] printf("The pressure of air after compression is %d kPa\n",P2);
0e2440cecfdb0c55c763e5e5e572d5fd0165c26a
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH6/EX6.4/EX_6_4.sce
dec944638dc2b6d327cd9c03c8d3efe06c290997
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
307
sce
EX_6_4.sce
// Example 6.3;// feedback ratio clc; clear; close; Vo= 5;// output voltage Vin=0.1;//input voltage without feedback A= Vo/Vin;// Gain without feedback Vin1=0.2;//input voltage with feedback Af= Vo/Vin1;// Gain with feedback Beta=( (A/Af)-1)/A;// feedback ratio disp(Beta,"feedback ration is ")
9288e176a1086d0adebe6a3e468cf3b1eca66345
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/QH29DKV/ATWM1_Working_Memory_MEG_QH29DKV_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
3f56b10eafd2fe93f2c6799716efa8288838bb0e
[]
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,617
sce
ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_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 = 36; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 382; width = 382; color = 0, 0, 0;} frame1; box { height = 369; width = 369; 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 = 369; width = 369; color = 42, 42, 42;} 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; 44 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_171 gabor_058 gabor_144 gabor_033 gabor_171_alt gabor_058 gabor_144 gabor_033_alt "2_1_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_171_058_144_033_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_144_framed gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_144_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_176 gabor_131 gabor_065 gabor_093 gabor_176_alt gabor_131_alt gabor_065 gabor_093 "2_2_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_176_131_065_093_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_045_framed blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2192 fixation_cross gabor_006 gabor_058 gabor_120 gabor_096 gabor_006 gabor_058 gabor_120_alt gabor_096_alt "2_3_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_006_058_120_096_target_position_1_2_retrieval_position_1" gabor_006_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2542 fixation_cross gabor_176 gabor_001 gabor_024 gabor_160 gabor_176 gabor_001 gabor_024_alt gabor_160_alt "2_4_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_176_001_024_160_target_position_1_2_retrieval_position_2" gabor_circ gabor_141_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_180 gabor_060 gabor_096 gabor_030 gabor_180 gabor_060_alt gabor_096 gabor_030_alt "2_5_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_180_060_096_030_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_096_framed gabor_circ blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 1942 fixation_cross gabor_058 gabor_040 gabor_168 gabor_004 gabor_058 gabor_040_alt gabor_168 gabor_004_alt "2_6_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_058_040_168_004_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_168_framed gabor_circ blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2492 fixation_cross gabor_036 gabor_096 gabor_009 gabor_115 gabor_036_alt gabor_096 gabor_009 gabor_115_alt "2_7_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_036_096_009_115_target_position_2_3_retrieval_position_2" gabor_circ gabor_096_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2242 2992 2242 fixation_cross gabor_058 gabor_145 gabor_035 gabor_019 gabor_058_alt gabor_145 gabor_035_alt gabor_019 "2_8_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2250_gabor_patch_orientation_058_145_035_019_target_position_2_4_retrieval_position_1" gabor_103_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_103_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 2242 fixation_cross gabor_007 gabor_094 gabor_173 gabor_120 gabor_007_alt gabor_094 gabor_173_alt gabor_120 "2_9_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_007_094_173_120_target_position_2_4_retrieval_position_2" gabor_circ gabor_049_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_140 gabor_034 gabor_011 gabor_056 gabor_140_alt gabor_034_alt gabor_011 gabor_056 "2_10_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_140_034_011_056_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_056_framed blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 2192 fixation_cross gabor_013 gabor_091 gabor_030 gabor_070 gabor_013_alt gabor_091 gabor_030_alt gabor_070 "2_11_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_013_091_030_070_target_position_2_4_retrieval_position_2" gabor_circ gabor_091_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 2042 2992 2242 fixation_cross gabor_129 gabor_076 gabor_145 gabor_161 gabor_129 gabor_076_alt gabor_145 gabor_161_alt "2_12_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_2250_gabor_patch_orientation_129_076_145_161_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_161_framed blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_161_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 1992 fixation_cross gabor_085 gabor_024 gabor_059 gabor_130 gabor_085 gabor_024_alt gabor_059_alt gabor_130 "2_13_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_085_024_059_130_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_130_framed blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_130_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_165 gabor_044 gabor_132 gabor_114 gabor_165 gabor_044_alt gabor_132 gabor_114_alt "2_14_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_165_044_132_114_target_position_1_3_retrieval_position_1" gabor_026_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 2242 fixation_cross gabor_152 gabor_129 gabor_063 gabor_078 gabor_152_alt gabor_129_alt gabor_063 gabor_078 "2_15_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_152_129_063_078_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_015_framed gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1742 2992 2042 fixation_cross gabor_087 gabor_120 gabor_056 gabor_105 gabor_087_alt gabor_120 gabor_056 gabor_105_alt "2_16_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2050_gabor_patch_orientation_087_120_056_105_target_position_2_3_retrieval_position_1" gabor_087_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_087_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2092 fixation_cross gabor_099 gabor_126 gabor_151 gabor_046 gabor_099_alt gabor_126 gabor_151_alt gabor_046 "2_17_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_099_126_151_046_target_position_2_4_retrieval_position_2" gabor_circ gabor_078_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 2042 fixation_cross gabor_131 gabor_104 gabor_063 gabor_042 gabor_131 gabor_104 gabor_063_alt gabor_042_alt "2_18_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_131_104_063_042_target_position_1_2_retrieval_position_2" gabor_circ gabor_104_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1942 2992 1892 fixation_cross gabor_119 gabor_009 gabor_053 gabor_141 gabor_119_alt gabor_009 gabor_053_alt gabor_141 "2_19_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_119_009_053_141_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_053_framed gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_053_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2292 fixation_cross gabor_112 gabor_176 gabor_133 gabor_159 gabor_112_alt gabor_176 gabor_133_alt gabor_159 "2_20_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_112_176_133_159_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_022_framed blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_110 gabor_020 gabor_039 gabor_054 gabor_110_alt gabor_020 gabor_039_alt gabor_054 "2_21_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_110_020_039_054_target_position_2_4_retrieval_position_2" gabor_circ gabor_070_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2142 fixation_cross gabor_004 gabor_110 gabor_157 gabor_172 gabor_004_alt gabor_110_alt gabor_157 gabor_172 "2_22_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_004_110_157_172_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_172_framed blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2092 fixation_cross gabor_073 gabor_004 gabor_128 gabor_109 gabor_073_alt gabor_004 gabor_128_alt gabor_109 "2_23_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_073_004_128_109_target_position_2_4_retrieval_position_2" gabor_circ gabor_004_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 2442 fixation_cross gabor_098 gabor_066 gabor_008 gabor_125 gabor_098 gabor_066_alt gabor_008 gabor_125_alt "2_24_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_098_066_008_125_target_position_1_3_retrieval_position_1" gabor_049_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2142 fixation_cross gabor_149 gabor_079 gabor_060 gabor_027 gabor_149_alt gabor_079_alt gabor_060 gabor_027 "2_25_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_149_079_060_027_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_027_framed blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2592 fixation_cross gabor_142 gabor_093 gabor_023 gabor_157 gabor_142 gabor_093_alt gabor_023 gabor_157_alt "2_26_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_142_093_023_157_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_071_framed gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1742 2992 2192 fixation_cross gabor_084 gabor_165 gabor_020 gabor_060 gabor_084 gabor_165 gabor_020_alt gabor_060_alt "2_27_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2200_gabor_patch_orientation_084_165_020_060_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_060_framed blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_060_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_054 gabor_002 gabor_024 gabor_092 gabor_054 gabor_002_alt gabor_024 gabor_092_alt "2_28_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_054_002_024_092_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_024_framed gabor_circ blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 1992 fixation_cross gabor_007 gabor_173 gabor_068 gabor_128 gabor_007_alt gabor_173 gabor_068 gabor_128_alt "2_29_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2000_gabor_patch_orientation_007_173_068_128_target_position_2_3_retrieval_position_2" gabor_circ gabor_038_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_004 gabor_032 gabor_061 gabor_180 gabor_004 gabor_032_alt gabor_061_alt gabor_180 "2_30_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_004_032_061_180_target_position_1_4_retrieval_position_1" gabor_143_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_147 gabor_041 gabor_020 gabor_110 gabor_147_alt gabor_041 gabor_020_alt gabor_110 "2_31_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_147_041_020_110_target_position_2_4_retrieval_position_2" gabor_circ gabor_178_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1892 2992 1942 fixation_cross gabor_032 gabor_163 gabor_106 gabor_049 gabor_032_alt gabor_163_alt gabor_106 gabor_049 "2_32_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_1950_gabor_patch_orientation_032_163_106_049_target_position_3_4_retrieval_position_1" gabor_032_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_032_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2042 fixation_cross gabor_059 gabor_124 gabor_008 gabor_170 gabor_059_alt gabor_124 gabor_008_alt gabor_170 "2_33_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_059_124_008_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_33_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2592 fixation_cross gabor_140 gabor_031 gabor_156 gabor_002 gabor_140_alt gabor_031 gabor_156_alt gabor_002 "2_34_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_140_031_156_002_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_002_framed blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 1892 fixation_cross gabor_084 gabor_173 gabor_038 gabor_103 gabor_084 gabor_173 gabor_038_alt gabor_103_alt "2_35_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_084_173_038_103_target_position_1_2_retrieval_position_2" gabor_circ gabor_173_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2392 fixation_cross gabor_160 gabor_026 gabor_140 gabor_095 gabor_160 gabor_026_alt gabor_140_alt gabor_095 "2_36_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_160_026_140_095_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_095_framed blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2092 fixation_cross gabor_130 gabor_095 gabor_059 gabor_074 gabor_130_alt gabor_095_alt gabor_059 gabor_074 "2_37_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_130_095_059_074_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_074_framed blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1792 2992 1992 fixation_cross gabor_001 gabor_016 gabor_121 gabor_139 gabor_001 gabor_016_alt gabor_121 gabor_139_alt "2_38_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2000_gabor_patch_orientation_001_016_121_139_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_089_framed blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_089_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 1892 fixation_cross gabor_160 gabor_035 gabor_019 gabor_053 gabor_160 gabor_035 gabor_019_alt gabor_053_alt "2_39_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_160_035_019_053_target_position_1_2_retrieval_position_2" gabor_circ gabor_035_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 1992 fixation_cross gabor_149 gabor_124 gabor_169 gabor_015 gabor_149_alt gabor_124_alt gabor_169 gabor_015 "2_40_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_149_124_169_015_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_169_framed gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1742 2992 2292 fixation_cross gabor_121 gabor_177 gabor_042 gabor_161 gabor_121 gabor_177_alt gabor_042_alt gabor_161 "2_41_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_121_177_042_161_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_087_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_048 gabor_073 gabor_004 gabor_026 gabor_048_alt gabor_073 gabor_004_alt gabor_026 "2_42_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_048_073_004_026_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_026_framed blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 2492 fixation_cross gabor_109 gabor_175 gabor_021 gabor_149 gabor_109 gabor_175 gabor_021_alt gabor_149_alt "2_43_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_109_175_021_149_target_position_1_2_retrieval_position_1" gabor_061_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_010 gabor_147 gabor_040 gabor_083 gabor_010 gabor_147_alt gabor_040_alt gabor_083 "2_44_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_010_147_040_083_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_083_framed blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2542 fixation_cross gabor_135 gabor_172 gabor_008 gabor_064 gabor_135 gabor_172_alt gabor_008_alt gabor_064 "2_45_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_135_172_008_064_target_position_1_4_retrieval_position_1" gabor_135_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_073 gabor_133 gabor_158 gabor_096 gabor_073 gabor_133 gabor_158_alt gabor_096_alt "2_46_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_073_133_158_096_target_position_1_2_retrieval_position_1" gabor_026_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1842 2992 2542 fixation_cross gabor_070 gabor_136 gabor_095 gabor_008 gabor_070_alt gabor_136 gabor_095 gabor_008_alt "2_47_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2550_gabor_patch_orientation_070_136_095_008_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_053_framed blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_053_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_062 gabor_103 gabor_170 gabor_151 gabor_062_alt gabor_103_alt gabor_170 gabor_151 "2_48_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_062_103_170_151_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_016_framed blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2442 fixation_cross gabor_154 gabor_068 gabor_048 gabor_015 gabor_154 gabor_068_alt gabor_048 gabor_015_alt "2_49_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_154_068_048_015_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_094_framed gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_006 gabor_121 gabor_038 gabor_086 gabor_006_alt gabor_121_alt gabor_038 gabor_086 "2_50_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_006_121_038_086_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_038_framed gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 2492 fixation_cross gabor_117 gabor_175 gabor_089 gabor_038 gabor_117 gabor_175 gabor_089_alt gabor_038_alt "2_51_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2500_gabor_patch_orientation_117_175_089_038_target_position_1_2_retrieval_position_1" gabor_068_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1942 2992 2042 fixation_cross gabor_142 gabor_092 gabor_068 gabor_028 gabor_142_alt gabor_092 gabor_068_alt gabor_028 "2_52_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2050_gabor_patch_orientation_142_092_068_028_target_position_2_4_retrieval_position_1" gabor_007_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_007_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 2342 fixation_cross gabor_162 gabor_128 gabor_039 gabor_144 gabor_162_alt gabor_128 gabor_039_alt gabor_144 "2_53_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_162_128_039_144_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_144_framed blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_144_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_177 gabor_133 gabor_025 gabor_007 gabor_177_alt gabor_133 gabor_025_alt gabor_007 "2_54_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_177_133_025_007_target_position_2_4_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 2142 2992 2092 fixation_cross gabor_153 gabor_131 gabor_096 gabor_116 gabor_153_alt gabor_131_alt gabor_096 gabor_116 "2_55_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2100_gabor_patch_orientation_153_131_096_116_target_position_3_4_retrieval_position_2" gabor_circ gabor_131_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2342 fixation_cross gabor_101 gabor_081 gabor_155 gabor_040 gabor_101 gabor_081 gabor_155_alt gabor_040_alt "2_56_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_101_081_155_040_target_position_1_2_retrieval_position_2" gabor_circ gabor_126_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_100 gabor_154 gabor_085 gabor_125 gabor_100 gabor_154_alt gabor_085 gabor_125_alt "2_57_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_100_154_085_125_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_085_framed gabor_circ blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2042 fixation_cross gabor_064 gabor_179 gabor_091 gabor_037 gabor_064 gabor_179_alt gabor_091 gabor_037_alt "2_58_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_064_179_091_037_target_position_1_3_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1742 2992 1992 fixation_cross gabor_001 gabor_117 gabor_085 gabor_037 gabor_001 gabor_117_alt gabor_085_alt gabor_037 "2_59_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_001_117_085_037_target_position_1_4_retrieval_position_2" gabor_circ gabor_162_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_162_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2492 fixation_cross gabor_006 gabor_143 gabor_062 gabor_175 gabor_006 gabor_143 gabor_062_alt gabor_175_alt "2_60_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_006_143_062_175_target_position_1_2_retrieval_position_2" gabor_circ gabor_143_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 2342 fixation_cross gabor_058 gabor_178 gabor_099 gabor_034 gabor_058 gabor_178_alt gabor_099_alt gabor_034 "2_61_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_058_178_099_034_target_position_1_4_retrieval_position_1" gabor_012_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 1892 fixation_cross gabor_066 gabor_109 gabor_046 gabor_002 gabor_066 gabor_109 gabor_046_alt gabor_002_alt "2_62_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_066_109_046_002_target_position_1_2_retrieval_position_2" gabor_circ gabor_155_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 2592 fixation_cross gabor_098 gabor_035 gabor_150 gabor_175 gabor_098 gabor_035_alt gabor_150 gabor_175_alt "2_63_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_098_035_150_175_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_011_framed gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2092 2992 1942 fixation_cross gabor_132 gabor_109 gabor_003 gabor_049 gabor_132_alt gabor_109 gabor_003_alt gabor_049 "2_64_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_1950_gabor_patch_orientation_132_109_003_049_target_position_2_4_retrieval_position_1" gabor_180_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_180_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 2292 fixation_cross gabor_170 gabor_128 gabor_085 gabor_147 gabor_170 gabor_128_alt gabor_085_alt gabor_147 "2_65_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_170_128_085_147_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_147_framed blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_116 gabor_131 gabor_172 gabor_001 gabor_116 gabor_131 gabor_172_alt gabor_001_alt "2_66_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_116_131_172_001_target_position_1_2_retrieval_position_2" gabor_circ gabor_082_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_159 gabor_136 gabor_114 gabor_099 gabor_159 gabor_136_alt gabor_114 gabor_099_alt "2_67_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_159_136_114_099_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_069_framed gabor_circ blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_069_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 2192 fixation_cross gabor_143 gabor_029 gabor_053 gabor_073 gabor_143_alt gabor_029 gabor_053_alt gabor_073 "2_68_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_143_029_053_073_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_118_framed blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1992 2992 2592 fixation_cross gabor_031 gabor_004 gabor_110 gabor_160 gabor_031_alt gabor_004 gabor_110_alt gabor_160 "2_69_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2600_gabor_patch_orientation_031_004_110_160_target_position_2_4_retrieval_position_1" gabor_031_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_031_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2392 fixation_cross gabor_157 gabor_042 gabor_094 gabor_069 gabor_157 gabor_042_alt gabor_094_alt gabor_069 "2_70_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_157_042_094_069_target_position_1_4_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; }; # 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; };
ad2186b4f95409dca762df0c9a24ffc079f643e6
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/Widowbaker strafes.sce
016d8fe982f09161ee25a5a625c36eadfc083ea9
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
44,968
sce
Widowbaker strafes.sce
Name=Widowbaker strafes PlayerCharacters=Quaker BotCharacters=Bot Rotation Profile.rot IsChallenge=true Timelimit=300.0 PlayerProfile=Quaker AddedBots=Bot Rotation Profile.rot PlayerMaxLives=0 BotMaxLives=18 PlayerTeam=1 BotTeams=0 MapName=boxed.map MapScale=10.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=300.0 ScorePerDamage=0.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=1.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Ow WeaponHeroTag=Widowbaker DifficultyTag=4 AuthorsTag=Punk BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Widowbaker training against multiple strafing targets. GameVersion=1.0.8.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 [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 [Bot Profile] Name=target1 DodgeProfileNames=Target1 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=false CharacterProfile=Target1 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=target_small1 DodgeProfileNames=Target1 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=false CharacterProfile=Target_small1 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=StraferMf1 DodgeProfileNames=ADAD 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=false CharacterProfile=Luxio SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=target2 DodgeProfileNames=Target2 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=false CharacterProfile=Target2 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=target_small2 DodgeProfileNames=Target2 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=false CharacterProfile=Target_small2 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=StraferMf2 DodgeProfileNames=ADAD 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=false CharacterProfile=Luxio2 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=target3 DodgeProfileNames=Target3 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=false CharacterProfile=Target3 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=target_small3 DodgeProfileNames=Target3 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=false CharacterProfile=Target_small3 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Profile] Name=StraferMf3 DodgeProfileNames=ADAD 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=false CharacterProfile=Luxio3 SeeThroughWalls=false NoDodging=false NoAiming=false [Bot Rotation Profile] Name=Bot Rotation Profile ProfileNames=target1;target_small1;StraferMf1;target2;target_small2;StraferMf2;target3;target_small3;StraferMf3 ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 Randomized=false [Character Profile] Name=Quaker MaxHealth=300.0 WeaponProfileNames=Spider Rifle;Spider Bullet;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=true DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=2000.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=true InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=350.0 MainBBRadius=58.0 MainBBHasHead=true MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.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.0 StrafeSpeedMult=2.0 BackSpeedMult=2.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=2.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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Target1 MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=true DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=1500.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=true MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.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.0 StrafeSpeedMult=1.0 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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Target_small1 MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=true DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=1500.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=270.0 MainBBRadius=47.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.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.0 StrafeSpeedMult=1.0 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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Luxio MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.5 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-5.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1200.0 MaxCrouchSpeed=500.0 Acceleration=4000.0 AirAcceleration=16000.0 Friction=150.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.5 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=50.0 MainBBHasHead=true MainBBHeadRadius=50.0 MainBBHeadOffset=-20.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=40.0 ProjBBHasHead=true ProjBBHeadRadius=30.0 ProjBBHeadOffset=-20.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=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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Target2 MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=true DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=2000.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=true MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.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.0 StrafeSpeedMult=1.0 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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Target_small2 MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=true DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=2000.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=270.0 MainBBRadius=47.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.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.0 StrafeSpeedMult=1.0 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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Luxio2 MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.5 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-5.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1500.0 MaxCrouchSpeed=500.0 Acceleration=4000.0 AirAcceleration=16000.0 Friction=150.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.5 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=40.0 MainBBHasHead=true MainBBHeadRadius=40.0 MainBBHeadOffset=-20.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=40.0 ProjBBHasHead=true ProjBBHeadRadius=30.0 ProjBBHeadOffset=-20.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=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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Target3 MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=true DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=2500.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=true MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.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.0 StrafeSpeedMult=1.0 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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Target_small3 MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=true DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=2500.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=270.0 MainBBRadius=47.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.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.0 StrafeSpeedMult=1.0 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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Luxio3 MaxHealth=300.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.5 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=-5.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1700.0 MaxCrouchSpeed=500.0 Acceleration=4000.0 AirAcceleration=16000.0 Friction=150.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.5 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=240.0 MainBBRadius=30.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=-20.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=40.0 ProjBBHasHead=true ProjBBHeadRadius=30.0 ProjBBHeadOffset=-20.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=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=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Dodge Profile] Name=Target1 MaxTargetDistance=5100.0 MinTargetDistance=5000.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=1.5 MaxLRTimeChange=1.501 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.0 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.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Dodge Profile] Name=ADAD MaxTargetDistance=5100.0 MinTargetDistance=5000.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.1 MaxLRTimeChange=0.101 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.16 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.1 MaxCrouchTime=0.2 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Dodge Profile] Name=Target2 MaxTargetDistance=5100.0 MinTargetDistance=5000.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=1.0 MaxLRTimeChange=1.01 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.0 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.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Dodge Profile] Name=Target3 MaxTargetDistance=5100.0 MinTargetDistance=5000.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.501 MaxLRTimeChange=0.501 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.0 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.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Weapon Profile] Name=Spider Rifle Type=Hitscan ShotsPerClick=1 DamagePerShot=13.0 KnockbackFactor=0.1 TimeBetweenShots=0.01 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=0.8 DamageFalloffStartDistance=2500.0 DamageFalloffStopDistance=4000.0 DamageAtMaxRange=6.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.3789 ADSMoveFactor=0.35 ADSStartDelay=0.333333 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=true ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot=Spider Bullet StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.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 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=51.0 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=2.0,5.5,0.0,3.0 SpreadSCA=2.0,5.5,0.0,3.0 SpreadMSA=2.0,5.5,0.0,3.0 SpreadMCA=2.0,5.5,0.0,3.0 SpreadSSH=2.0,5.5,0.0,3.0 SpreadSCH=2.0,5.5,0.0,3.0 SpreadMSH=2.0,5.5,0.0,3.0 SpreadMCH=2.0,5.5,0.0,3.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.01 TimeToRecoilReset=0.45 AAMode=2 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=1.5 AADeadZone=0.0 AAFOV=75.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=true AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.01 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Spider Bullet Type=Hitscan ShotsPerClick=1 DamagePerShot=120.0 KnockbackFactor=0.1 TimeBetweenShots=0.01 Pierces=false Category=Charge BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=12.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=0.75 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.5 MagazineMax=0 AmmoPerShot=3 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=80.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.5 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 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=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=true BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 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,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=4.5 MinRecoilUp=4.5 MinRecoilHoriz=-0.25 MaxRecoilHoriz=0.25 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.5 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.2 AAMaxSpeed=0.5 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.01 TriggerBotFOV=1.0 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -576.000000 0.000000 256.000000 448.000000 0.000000 256.000000 448.000000 0.000000 -768.000000 -576.000000 0.000000 -768.000000 -576.000000 -16.000000 256.000000 448.000000 -16.000000 256.000000 448.000000 -16.000000 -768.000000 -576.000000 -16.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 -576.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 448.000000 0.000000 -784.000000 -576.000000 0.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 0.000000 272.000000 448.000000 0.000000 272.000000 448.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 0.000000 256.000000 464.000000 0.000000 256.000000 464.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 -592.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 -576.000000 0.000000 -768.000000 -592.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 704.000000 -768.000000 -592.000000 704.000000 -768.000000 -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 448.000000 704.000000 256.000000 464.000000 704.000000 256.000000 464.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 704.000000 -784.000000 -576.000000 704.000000 -784.000000 -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 272.000000 448.000000 704.000000 272.000000 448.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 720.000000 256.000000 448.000000 720.000000 256.000000 448.000000 720.000000 -768.000000 -576.000000 720.000000 -768.000000 -576.000000 704.000000 256.000000 448.000000 704.000000 256.000000 448.000000 704.000000 -768.000000 -576.000000 704.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip entity type PlayerSpawn Vector3 position -64.000000 0.000000 -736.000000 Bool8 teamA 0 entity type CameraPath UInt32 entityIdAttachedTo 5 UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 352.000000 256.000000 224.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -64.000000 0.000000 224.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 416.000000 0.000000 -256.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 0.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -64.000000 0.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamB 0
340d1ea473779f23378a66640075a86cd7ff161c
449d555969bfd7befe906877abab098c6e63a0e8
/2549/CH2/EX2.9.1/Ex2_9_1.sce
5f13c389f795a5fab7d725313eb34328f1d01ad6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
570
sce
Ex2_9_1.sce
//Ex2.9.1 //calculation of the width of depletion layer clc; clear; Na=4*10^20;//accepter impurity atom concentration per m3 Vj=0.2;//contact potential V=-1;//applied reverse voltage V1=-5; epslnR=16;//for Ge epslnO=8.854*10^-12;//permittivity of free space epsln=epslnR*epslnO;//permittivity of semiconductor q=1.6*10^-19;//charge W=sqrt((2*epsln*(Vj-V))/(q*Na))//expression for width of depletion layer disp('um',W*10^6,'width of depletion layer is when V=-1') W=sqrt((2*epsln*(Vj-V1))/(q*Na)) disp('um',W*10^6,'width of depletion layer is when V=-5')
9b5cd6a0defa37c55875638f1bb74b1f70950cb3
449d555969bfd7befe906877abab098c6e63a0e8
/1748/CH2/EX2.20/Exa2_20.sce
309c35a031fe5c87c95b66216465bb96b28c1765
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
532
sce
Exa2_20.sce
//Exa 2.20 clc; clear; close; //Given data : phase=3;//no. of phase Pin_stator=60;//Power input of stator in KW TotalStatorLosses=1;//in KW Pin_rotor=Pin_stator-TotalStatorLosses;//Power input of rotor in KW S=3;//slip in % RotorCopperLosses=(S/100)*Pin_rotor;//in KW RotorCopperLosses=RotorCopperLosses/phase;//in KW per phase disp(RotorCopperLosses*10^3,"Rotor Copper Losses per phase(in watts) : "); TotalMechPowerDev=Pin_rotor*(1-S/100);//in KW disp(TotalMechPowerDev,"Total mechanial power developed(in KW) : ") ;
8b025b3714fcc4d23c92af2a521237fe5bb2b40b
1553f49678b55a6283e04ec177d0c4174457e834
/códigos/minimos_quadrados_exemplo.sci
5c0bce4ee956f6e26f6e69b41d3826135e3a8f48
[ "MIT" ]
permissive
reneroliveira/Monitoria-ALN-2021
c16a26c208610e7450def04c775e5550886e3ce8
7c746dfe07cdc08921678bf65505389f274416ce
refs/heads/main
2023-05-13T13:01:35.401001
2021-06-09T17:20:06
2021-06-09T17:20:06
344,234,191
3
0
null
null
null
null
UTF-8
Scilab
false
false
565
sci
minimos_quadrados_exemplo.sci
//Exemplo de regressão linear em dados simulados //Fixando seeds para reprodutibilidade rand("seed",0) grand('setsd',0) //Geração dos dados x = 10*rand(100,1) //x é vetor de 100 pontos aleatório uniforme(0,10) eps = grand(100,1,'nor',0,2) y = 7*x+2+eps //y = 7x+2+e, onde eps é vetor de 100 pts ~ Normal(0,2) //Scatter Plot dos dados scatter(x,y) //Estimação dos coeficientes: X = [ones(100,1) x] alpha = X'*X\X'*y disp("Coeficientes Reais:",[2;7]) disp("Coeficientes Estimados:",alpha) //Plotando a reta estimada y_pred = X*alpha plot(x,y_pred,'red')
3162531d5816bae64127815b1b53439a4eafef60
717ddeb7e700373742c617a95e25a2376565112c
/2474/CH11/EX11.28/Ch11Ex28.sce
80f3535c7bff99840d87bcdc429d04b4cbe17495
[]
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
600
sce
Ch11Ex28.sce
// Scilab code Ex11.28: Pg.544-545 (2008) clc; clear; C_c = 200; // Carbon content d_beta = 400; // Beta decay rate, decays/min d_r = 15.6*C_c; // Decay rate, decays/min t_half = 5730; // Half life-time of C-14, y n = log(d_r/d_beta)/log(2); // Number of half-lives of bone t = n*t_half; // Age of bone, y printf("\nThe age of the bone = %5d y", t); printf("\nSince the bone is older than 500 y so it cannot be related to Cortes conquests"); // Result // The age of the bone = 16980 y // Since the bone is older than 500 y so it cannot be related to Cortes conquests
5ba4130cd6fc3b05bbb83d2f3e81dec52ef82cb1
449d555969bfd7befe906877abab098c6e63a0e8
/1092/CH2/EX2.6/Example2_6.sce
5936ef83fe469b16878070b90bf5e9212d1a3327
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,623
sce
Example2_6.sce
// Electric Machinery and Transformers // Irving L kosow // Prentice Hall of India // 2nd editiom // Chapter 2: Dynamo Construction and Windings // Example 2-6 clear; clc; close; // Clear the work space and console. // Given data P = 4;// No. of poles phi = 3; // No. of phases slots_(1) = 12; // No. of slots for case 1 slots_(2) = 24; // No. of slots for case 2 slots_(3) = 48; // No. of slots for case 3 slots_(4) = 84; // No. of slots for case 4 // Calculations electrical_degrees = 180 * 4; i=1; // where i is case subscript .eg case1, case2, etc while i<=4 alpha_(i) = electrical_degrees / slots_(i); // electrical degrees // per slots for case i n_(i) = slots_(i) / ( P * phi ); // No. of ac cycles for case 1 k_d(i) = sind( n_(i)*( alpha_(i) / 2 ) ) / ( n_(i) * sind( alpha_(i) / 2)); i=i+1; end; // Display the results disp("Example 2-6 Solution : ") printf("\n a:"); i=1; // where i is case subscript .eg case1, case2, etc while i<=4 printf("\n \t %d: alpha = %.2f degrees/slot", i , alpha_(i) ); printf("\n\t n = %d slots/pole-phase ", n_(i) ); printf("\n\t kd = %.3f ", k_d(i)); printf("\n"); i=i+1; end; printf("\n\n\n b: "); printf("\n \t \t n \t alpha in degrees \t\t kd "); printf("\n \t __________________________________________________________" ); i=1; while i<=4 printf("\n \t \t %d \t %.2f \t\t\t\t%.3f ", n_(i) , alpha_(i) , k_d(i) ); i = i +1; end; printf("\n \t __________________________________________________________" );
20560134b9f02a596427d88aa24a17fb660103d6
beca18778f40d44e713160c5b0e8136d8a92cad8
/scilab/orbit.sce
04082b3d478767dca855c6c77be3de2e48d298e0
[]
no_license
thomasantony/enjomitch-orbiter
9542df3dfc83ce0a6cf06ec78dca91b4c1a0babf
83967b7bf8f8c49d1e90f7b904846e66d1ad6e37
refs/heads/master
2022-12-02T07:47:03.976695
2020-03-22T13:54:57
2020-03-22T13:54:57
286,159,679
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,626
sce
orbit.sce
clear exec('/home/enjo/devel/orbiter/scilab/cross.sci'); exec('/home/enjo/devel/orbiter/scilab/len.sci'); //exec('E:\devel\Orbiter\scilab\cross.sci'); //exec('E:\devel\Orbiter\scilab\len.sci'); R = 6378100.0; M = 5.9736e24; G = 6.67300e-11; mu = G * M; g = mu / R^2; // Gravit. acceleration ~ 9.8 pos = [R 0 0]'; // starting point v = sqrt(mu/R); // module of starting velocity //v = 2000; incl = 0 * %pi / 180; // inclination vel = [0; cos(incl) * v; sin(incl) * v ]; // starting velocity T = 2*%pi*R / v; // orbital period n = cross( vel, pos ); // orbit's normal tincr = 10; // time increments acc = 15; // ship's acceleration in m/s^2 az = -10 * %pi / 180; // acceleration azimuth // position vectors outPos1 = []; // first orbit outPos2 = []; // second orbit points = round(T / tincr); for j = 1:points * 2 // gravity acting on object //xg = ( len(pos) - g*tincr^2/2 ) / len(pos); // set magnitude xg = R / len(pos); // simplification if we use v < 1st cosmic pos = pos * xg; // shorten the position vector as required n = cross( vel, pos ); // update the orbit in case velocity changed n = n / len(n); // normalise ncrossp1 = -cross(n, pos); // find perpendicular velocity xv = len( vel ) / len( ncrossp1 ); // set magnitude (wrt current vel) //xv = v / len( ncrossp1 ); // set magnitude (wrt starting vel) vel = ncrossp1 * xv; // shorten the velocity vector as required // simulate acceleration in other direction after making 1 orbit // see http://www.euclideanspace.com/maths/geometry/rotations/theory/inaPlane/index.htm if (j > points & j < points + 60) then velNorm = vel / len(vel); vn = [velNorm n]; // plane of rotation v2d = vn' * vel; // cast velocity to 2D space - plane of rotation vadd = [ acc * tincr * sin(az); -acc * tincr * cos(az) ]; // accelerated v2d = v2d + vadd; // add it to 2d space velocity vector (rotate) vel = vn * v2d; // convert back to 3D space // param3d([pos(1) pos(1) + vel(1) * tincr], [pos(2) pos(2)+ vel(2) * tincr], [pos(3) pos(3)+vel(3) * tincr]); end; pos = pos + vel * tincr; // update position vector by velocity // add points to first vector if doing first orbit if j < points then outPos1 = [outPos1 pos]; else // the second orbit outPos2 = [outPos2 pos]; end; end; colors = outPos1(3,:) * 0; colors = colors + 2; param3d1(outPos1(1,:), outPos1(2,:), list(outPos1(3,:), colors)); colors = outPos2(3,:) * 0; colors = colors + 5; param3d1(outPos2(1,:), outPos2(2,:), list(outPos2(3,:), colors));
4f874f2acf0368e83359032d95ffc12e3ea6effb
449d555969bfd7befe906877abab098c6e63a0e8
/1892/CH1/EX1.56/Example1_56.sce
5e22b3004b6f3fc64ed3d6082d2d5fb31369757d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
488
sce
Example1_56.sce
// Example 1.56 clear; clc; close; format('v',7); // Given data TmByTfl=3;//ratio Sm=0.1;//slip at max Torque //Calculations TstByTfl_dol=2*Sm/(1+Sm^2)*TmByTfl;//ratio for D.O.L starter disp(TstByTfl_dol,"Ratio of starting torque to full load torque for D.O.L starter : "); TstByTfl=1/3*TstByTfl_dol;//ratio for star delta starting disp(TstByTfl,"Ratio of starting torque to full load torque for star delta starter : "); //Anser of first part is not given in the book.
b4e1ac7e7f5352aba1d49cc0328ef91da16f43b6
449d555969bfd7befe906877abab098c6e63a0e8
/2045/CH5/EX5.5/Ex5_5.sce
119b119ad3d355b0ed735fe0bca428b6d7314ae7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
270
sce
Ex5_5.sce
//pagenumber 288 example 5 clear av=12480; fedbac=8;//decibel volgai=20*log10(av);//gain without fedback volga1=volgai-fedbac; beta1=((av/5000)-1)/av; disp("voltage gain with fedback = "+string((volga1))+"decibel"); disp("beta = "+string((beta1)));