blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6258fd590822730b6a05af3e26df07d8b21e52a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH12/EX12.1/example12_1.sce | 0a38fde254476e68c79f099667192fd703ccbe3b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,259 | sce | example12_1.sce |
//example 12.1
//calculate average hydraulic gradient
//uplift presuures and thickness of floor at 6m, 12m and 18m from u/s
clc;funcprot(0);
//given
rho=2.24; //relative density of material
gamma_w=9.81; //unit weigth of water
L=22; //total length
lc=(2*6)+L+(2*8); //length of creep
hg=4/lc; //hydraulic gradient
mprintf("avearge hydraulic gradient=%f.",hg);
//at 6 m from u/s
x=6;
lg=(6*2)+x;
h1=4*(1-lg/50); //unbalanced head
up=gamma_w*h1;
t=4*h1/(3*(rho-1));
up=round(up*100)/100;
t=round(t*100)/100;
mprintf("\n\nuplift at 6 m from u/s=%f kN/square metre.",up);
mprintf("\nthickness at 6 m from u/s=%f m.",t);
//at 12 m from u/s
x=12;
lg=(6*2)+x;
h1=4*(1-lg/50); //unbalanced head
up=gamma_w*h1;
t=4*h1/(3*(rho-1));
up=round(up*100)/100;
t=round(t*100)/100;
mprintf("\n\nuplift at 12 m from u/s=%f kN/square metre.",up);
mprintf("\nthickness at 12 m from u/s=%f m.",t);
//at 18m from u/s
x=18;
lg=(6*2)+x;
h1=4*(1-lg/50); //unbalanced head
up=gamma_w*h1;
t=4*h1/(3*(rho-1));
up=round(up*10)/10;
t=round(t*100)/100;
mprintf("\n\nuplift at 18 m from u/s=%f kN/square metre.",up);
mprintf("\nthickness at 18 m from u/s=%f m.",t);
|
6be167279198f5270689e06cae96f65db5503262 | 449d555969bfd7befe906877abab098c6e63a0e8 | /431/CH3/EX3.9/EX3_9.sce | a3b6eaf339ea983bdbcb9338c0a4802be2d363a8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 951 | sce | EX3_9.sce | //Calculating magnetising current,primary current and primary power factor
//Chapter 3
//Example 3.9
//page 210
clear;
clc;
disp("Example 3.9")
phi_m=7.5*10^(-3); //maximium flux
f=50; //frequecy in hertz
N1=144; //number of primary turns
N2=432; //number of secondary turns
kVA=0.24; //rating of transformer
E1=(4.44*phi_m*f*N1)
V1=E1;
printf("V1=%dV",V1)
I0=(kVA*1000)/V1;
phi0=acosd(0.26);
Im=I0*sind(phi0);
printf("\nIm=%fA",Im);
V2=(E1*N2)/N1
printf("\nV2=%fV",V2)
disp("At a load of 1.2kVA and power factor of 0.8 lagging")
kVA=1.2;
phi2=acosd(0.8);
I2=(kVA*1000)/V2;
I=(I2*N2)/N1;
I1c=(I*cosd(phi2))+(I0*cosd(phi0));
I1s=(I*sind(phi2))+(I0*sind(phi0));
I=sqrt(I1c^2+I1s^2);
printf("\nI1=%fA",I);
phi=acosd(((I*cosd(phi2))+(I0*cosd(phi0)))/I);
printf("\nprimary power factor=%flagging",cosd(phi)) |
9e5d0941afd031a423c4ee04295d5dcadad18e68 | 449d555969bfd7befe906877abab098c6e63a0e8 | /887/CH10/EX10.5/10_5.sce | 83c419ec2a420e8626e0e5bedb2471ddd158c6b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sce | 10_5.sce | clc
//ex10.5
V_1=10;
V_2=3;
R_1=4*10^3;
R_2=6*10^3;
//1)analysis by assuming D1 off and D2 on
I_D_2=V_2/R_2; //ohm's law
//applying KVL
V_D_1=7; //contradiction to 'D1 is off'
//this assumption is not correct
//2)analysis by assuming D1 on and D2 off
I_D_1=V_1/R_1; //ohm's law
//applying KVL
V_D_2=-V_1+V_2+I_D_1*R_1;
//we get V_D_2 which is consistent
disp('correct assumption is D2 off and D1 on')
|
3910de891ed65dea4390add1a797cd1f782d2549 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2606/CH11/EX11.34/ex11_34.sce | 2cfad9728130b37e57ef3267afa1a55e85d12042 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 680 | sce | ex11_34.sce | //Page Number: 11.33
//Example 11.34
clc;
//Given
//(a) For Shannon Fano Code
Px=[0.4 0.19 0.16 0.15 0.1];
n=[2 2 2 3 3];
//Average Code length
//L=Summation(P(xi)ni)
L=0;
for i=1:5
L=L+(Px(i)*n(i));
end
//As H(X)=-Sum of[P(xi)log2P(xi)]
//Where i=0 to n;
HofX=0;
for i=1:5
HofX=HofX+(Px(i)*log2(Px(i)));
end
//Efficiency=H(X)/L
n=-HofX/L;
np=n*100;
disp('%',np,'Code efficiency for shannon fanon:');
//(b) For Huffman Code
nh=[1 3 3 3 3];
//Average Code length
//L=Summation(P(xi)ni)
Lh=0;
for i=1:5
Lh=Lh+(Px(i)*nh(i));
end
//Efficiency=H(X)/L
n1=-HofX/Lh;
np1=n1*100;
disp('%',np1,'Code efficiency for hauffman:');
|
dc54ce1a28210d64b0f013086d48bf0ceb1e8b08 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3116/CH4/EX4.8/Ex4_8.sce | 1e8d6fdffbe88fa46bb50d4cbe50ee0ccd948411 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 627 | sce | Ex4_8.sce |
clc
//given that
a = 0.2866 // lattice parameter in nm
h = 2 // component of set of plane
k = 2// component of set of plane
l = 0// component of set of plane
n = 1 // order of detraction
lambda = 0.1790 // wavelength of light in nm
printf("Example 4.8\n")
d_hkl=a/(sqrt(h^2+k^2+l^2))
theta=asind(n*lambda/(2*d_hkl))
printf("\n Answer A:")
printf("\n Interplanar spacing is %.4f nm.",d_hkl)
printf("\n\n Answer B:")
printf("\n Diffraction angle is %0.2f degree.\n",2*theta);
// Answer in book is 124.26 degree. It is so because of consideration of different number of significant figures in calculation.
|
976e72aa3ef8a0195661849ef93555c3892a098c | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH9/EX9.7/example9_7.sce | 953a4ed2ec041d74bf9653e713c29ad7bfe81d9b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 978 | sce | example9_7.sce | //Chapter 9
//Example 9_7
//Page 216
clear;clc;
r=1.3;
d_acd=6;
d_bbd=d_acd;
d_ab=3;
d_bc=3;
d_adbd=d_bc;
d_aa=1.01*1e-2;
d_bb=d_aa;
d_adad=d_aa;
d_bdbd=d_aa;
d_bdb=d_aa;
d_ca=6;
d_cad=6;
d_cda=6;
d_cdad=6;
gmr=r*0.7788;
d_abd=sqrt(d_acd^2+d_ab^2);
d_adb=d_abd;
d_aad=sqrt(d_acd^2+(d_ab+d_bc)^2);
ds1=(d_aa*d_aad*d_adad*d_aad)^(1/4);
ds2=(d_bb*d_bbd*d_bdbd*d_bbd)^(1/4);
ds=(ds1*ds2*ds1)^(1/3);
dab=(d_ab*d_abd*d_adb*d_adbd)^(1/4);
dbc=dab;
dca=(d_ca*d_cad*d_cda*d_cdad)^(1/4);
dm=(dab*dbc*dca)^(1/3);
l=(1e-7)*2*log(dm/ds);
printf("GMR of conductor = %.2f cm \n\n", gmr);
printf("Distance a to b_dash = %.2f m \n", d_abd);
printf("Distance a to a_dash = %.2f m \n\n", d_aad);
printf("Ds1 = %.2f m \n", ds1);
printf("Ds2 = %.2f m \n", ds2);
printf("Ds = %.2f m \n\n", ds);
printf("Dab = %.2f m \n", dab);
printf("Dbc = %.2f m \n", dbc);
printf("Dca = %.2f m \n", dca);
printf("Dm = %.2f m \n\n", dm);
printf("Inductance per phase per metre length = %.2f mH \n\n",l*1e6);
|
2243b7277f18d6a54a32b290594bee002ce20ec7 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/U05.prev.tst | 2a13c8c6dc6f6c27bd87031e6358c6fc196123fa | [
"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 | 384 | tst | U05.prev.tst | 0 0 0
1 0 0
0 1 0
1 1 0
0 0 1
1 0 1
0 1 1
1 1 1
2 0 0
2 1 0
0 2 0
1 2 0
2 2 0
2 0 1
2 1 1
0 2 1
1 2 1
2 2 1
0 0 2
1 0 2
2 0 2
0 1 2
1 1 2
2 1 2
0 2 2
1 2 2
2 2 2
3 0 0
3 1 0
3 2 0
0 3 0
1 3 0
2 3 0
3 3 0
3 0 1
3 1 1
3 2 1
0 3 1
1 3 1
2 3 1
3 3 1
3 0 2
3 1 2
3 2 2
0 3 2
1 3 2
2 3 2
3 3 2
0 0 3
1 0 3
2 0 3
3 0 3
0 1 3
1 1 3
2 1 3
3 1 3
0 2 3
1 2 3
2 2 3
3 2 3
0 3 3
1 3 3
2 3 3
3 3 3
|
67fafcb003d7a84d9f6c566bef308b39726846fa | 449d555969bfd7befe906877abab098c6e63a0e8 | /605/CH9/EX9.7/9_7.sce | 7b455df66cd7dbd9b6192ed1256bc95f4fe87b4b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 568 | sce | 9_7.sce | clc
clear
L = 5;
W =400;
Wc = 100;
Gr=0.01
m=acosh(sqrt(10^(0.1*L)-1)/sqrt(10^(0.1*Gr-1)))/acosh(W/Wc)
printf("\nm=%.0f\n",m)
m=3
E=log(coth(Gr/17.37))
X=sinh(E/2/m)
n=3
gp=1
for p=1:1:n
ap=sin((2*p-1)*%pi/2/m)
bp=X^2+sin(p*%pi/m)^2
printf("\nap=%.4f\nbp=%.4f\n",ap,bp)
end
gp=0.62425
printf("\ng0=g4=1")
printf("\np=1\tgp=0.62425")
for p=2:1:n
gp=4*sin((2*(p-1)-1)*%pi/2/m)*sin((2*p-1)*%pi/2/m)/(X^2+sin((p-1)*%pi/m)^2)/gp
printf("\np=%.0f\tgp=%.5f",p,gp)
end
printf("\nL1=L3=%.4e H\nC1=%.4e F",75*0.62425/(2*%pi*10^8),0.9662/(75*2*%pi*10^8)) |
ec10e6c74520d7045c596b0c6b220d7d99d039b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH4/EX4.22/Ex4_22.sce | b2fbe535b30c25fc53aa24b6e6cbc753128b1403 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 714 | sce | Ex4_22.sce | clc;
Vt=100;//terminnal voltage
P=2;//no of poles
Z=1000;//no of conductors
A=2;//no of parallel paths for armature conductors
Ra_=2*10e-3;//resistance of each armature
Ra=500*Ra_*(1/2);//total armature resistance
//Let If be field current
//Ea=Vt+(Il+If)*0.5
//Ea1=100+(10+If)*0.5,because at 1055 rpm Il=10.
//Ea2=100+(20+If)*0.5,because at 1105 rpm Il=20.
//But, Ea=k1*If*speed
//Therefore,((If*1055)/(If*1105))=((100+(10+If)*0.5)/(100+(20+If)*0.5)),which gives-
If=1;//field current
Ea1=100+(10+1)*0.5;//at 1055 rpm
N=1055;//speed of rotor
phi=(Ea1*60*A)/(Z*N*P);
Rf=Vt/If;//field circuit resistance
printf('Field circuit resistance is %f ohm.\n',Rf);
printf('Flux per pole is %f Wb.',phi);
|
79ccb842ca12ca8f364d8e9f6773d2f6fa8bef49 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH6/EX6.24/Ex6_24.sce | f5e3ea2fc9db01db7c488779bba48db7b7cdda6a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,298 | sce | Ex6_24.sce | clear;
clc;
printf("\t\t\tProblem Number 6.24\n\n\n");
// Chapter 6: The Ideal Gas
// Problem 6.24 (page no. 267)
// Solution
//data given
T2=460+400; //Fahrenheit temperature converted to absolute final temperature //unit:R
T1=460+70; //Fahrenheit temperature converted to absolute initial temperature //unit:R
cp=0.24; //specific heat at constant pressure //Btu/lbm*R
J=778; //conversion factor
R=1545/29; //moleculer weight=29 //Unit:ft*lbf/lbm*R //constant of proportionality
//From the energy equation for the constant-pressure process,the heat transferred is deltah.Therefore,
//q=deltah=cp*(T2-T1)
deltah=cp*(T2-T1); //heat transferred //Btu/lb //into system
printf("The heat transferred is %f Btu/lb(into system)\n",deltah);
deltas=cp*log(T2/T1); //increase in entropy //Btu/lbm*R
printf("The increase in entropy is %f Btu/lbm*R\n",deltas);
//The flow work change is (p2*v2)/J - (p1*v1)/J = (R/J)*(T2-T1)
flowworkchange=(R/J)*(T2-T1); //Btu/lbm //The flow work change per pound of air
printf("The flow work change per pound of air is %f Btu/lbm\n",flowworkchange);
//In addition to each of the assumptions made in all the process being considered,it has further been tacitly assumed that these processes are carried out quasi- statically and without friction.
|
dcd89f5352602d4f858ab96265e78781836fd62a | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH20/EX20.2/example2.sce | 3e214ee5f1688e84f458d7d26580e23572d1016c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 507 | sce | example2.sce | // find maximum,minimum voltage gain
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 20-2, page 747
clear; clc; close;
// Given data
R1=1.2*10^3;// in ohms
R2=91*10^3;// in ohms
// Calculations
Avmin=-R2/R1;// minimum voltage gain
Avmax=0;// maximum voltage gain is 0
disp(Avmin,"minimum voltage gain=")
disp(Avmax,"maximum voltage gain=")
// Result
// Minimum voltage gain is -75.8
// Maximum voltage gain is 0 |
2a757079bb9ef0da45c4104bf0eb30a2d90e121b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2513/CH2/EX2.3/2_3.sce | df9a2e5449f37b0061d3a2253ee58bce03a5bb5d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 300 | sce | 2_3.sce | clc
//initialisation of variables
w=20//ft
r=3//ft a day
g=500//ft
g1=1000//ft
h=7.5/1440//ft
p=7.5/1000000//ft
r1=2//ft a day
//CALCULATIONS
W1=w*g1*r*h//gpm
W2=w*g1*r1*r*p//mgd
//RESULTS
printf('the ground water laterally =% f gpm',W1)
printf('the water from both sides=% f mgd',W2)
|
175554c46d12bb782e423dc8549e0c23068df4ee | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/armcov/armcov5.sce | 4ae59b18210cd9918d4a343c8137040c12c4d839 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 609 | sce | armcov5.sce | y=[0.107533427909220;
0.663644537348001;
0.970587221665023;
0.608390883863076;
-0.293540506673764;
-1.42787086899790;
-2.19233932281606;
-1.88376277475872;
0.351621088370924;
4.20456888982602;
7.02440717036035;
6.65058196622351;
2.57013250348360;
-3.50487012663216;
-8.16852139220758;
-8.56013313698647;
-4.20428209151219;
2.87304879208001;
9.06603681929948;
11.1157950647464i];
arcoeffs = armcov(y,4)
disp(arcoeffs);
//output
// column 1 to 3
//
// 1. - 1.7123163 - 0.5802940i 1.585047 + 0.7415019i
//
// column 4 to 5
//
// - 0.5097538 - 0.4931370i 0.0267578 + 0.1051454i
//
|
c682a1c5a5b273b6887831ad42677370437d4645 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH10/EX10.15/10_15.sce | 62ec46ab5ec1f8da00e679927c15b0c5f4f6bbe7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | 10_15.sce | V=230
Rf=120
Ra=0.15
If=V/Rf
Psh=V*V/Rf
I=14.5
Pin=I*V
Ia=I-If
Pk=Pin-Ia*Ia*Ra
I=215
Ia=I-If
Pl=Ia*Ia*Ra+Pk
Pin=V*I
effi=(Pin-Pl)/Pin
disp(effi)
Ia=sqrt(Pk/Ra)
Il=Ia+If
Pl=2*Pk
Pin=V*Il
effi=(Pin-Pl)/Pin
disp(effi)
|
7a118c868628a9433df003e4b47265ddf96b3df8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH6/EX6.10/Example_6_10.sce | e0e056140f1abe620f8edd37236cdcb25beb0bda | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 527 | sce | Example_6_10.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 6
//Thermodynamic Properties of Pure Fluids
//Example 10
clear;
clc;
//Given:
betta = 1.8*10^-4; //coeffecient of volume expansion (K^-1)
k = 3.9*10^-6; //coeffecient of compressibility (bar^-1)
T = 273; //temperature in K
d = 13.596*10^3; //density (kg/m^3)
Cp = 0.14*10^3; //(J/kg K)
//To calculate Cv for mercury
//Using equation 6.55 (Page no. 208)
Cv = Cp - (betta^2*T*10^5)/(k*d);
mprintf('Cv for mercury is %f J/kg K',Cv);
//end |
077fc37723087279747c1c319013724a2f185464 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/MX43.prev.tst | aa5087654d640f550c318c50e1435e1c3f6184f9 | [
"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 | 3,191 | tst | MX43.prev.tst | chain 2, fact 1 [[-2,1,-2,0],[0,-3,1,-1],[1,3,0,1],[2,0,2,1]] [1,6,8,-9] => [-12,-1,10,9] => [3,4,-6,5] ?? [10,-23,20,-1]
chain 8, fact 1 [[-2,3,-4,2],[2,-3,4,0],[1,1,1,-2],[0,0,0,1]] [1,6,8,-9] => [-34,16,33,-9] => [-34,16,33,-9] => [-34,16,33,-9] => [-34,16,33,-9] => [-34,16,33,-9] => [-34,16,33,-9] => [-34,16,33,-9] => [-34,16,33,-9]
chain 2, fact 1 [[0,0,-3,-3],[-3,1,0,1],[1,1,3,3],[3,-1,1,0]] [1,6,8,-9] => [3,-6,4,5] => [-27,-10,24,19] ?? [-129,90,92,-47]
chain 8, fact 1 [[0,0,-3,-3],[1,1,3,3],[-4,3,0,1],[4,-3,1,0]] [1,6,8,-9] => [3,4,5,-6] => [3,4,-6,5] => [3,4,5,-6] => [3,4,-6,5] => [3,4,5,-6] => [3,4,-6,5] => [3,4,5,-6] => [3,4,-6,5]
chain 8, fact 1 [[0,2,2,1],[1,-2,-2,0],[2,1,0,2],[-2,0,1,-2]] [1,6,8,-9] => [19,-27,-10,24] => [-50,93,59,-96] => [208,-354,-199,351] => [-755,1314,764,-1317] => [2839,-4911,-2830,4908] => [-10574,18321,10583,-18324] => [39484,-68382,-39475,68379] => [-147335,255198,147344,-255201]
chain 2, fact 1 [[0,3,1,3],[1,-3,0,-3],[2,0,2,1],[-2,1,-2,0]] [1,6,8,-9] => [-1,10,9,-12] => [3,5,4,-6] ?? [1,6,8,-9]
chain 8, fact 1 [[0,0,-3,-3],[1,1,3,3],[4,-3,1,0],[-4,3,0,1]] [1,6,8,-9] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5]
chain 2, fact 1 [[0,1,3,3],[2,2,0,1],[1,0,-3,-3],[-2,-2,1,0]] [1,6,8,-9] => [3,5,4,-6] => [-1,10,9,-12] ?? [1,6,8,-9]
chain 4, fact 27 [[0,4,4,3],[4,0,3,4],[3,-4,-4,0],[-4,3,0,-4]] [1,6,8,-9] => [29,-8,-53,50] => [-94,157,331,-340] => [932,-743,-2234,2207] => [-5287,5854,14704,-14785] ?? [37877,-36176,-98093,97850]
chain 8, fact 1 [[1,1,4,4],[0,0,-4,-4],[-4,3,0,1],[4,-3,1,0]] [1,6,8,-9] => [3,4,5,-6] => [3,4,-6,5] => [3,4,5,-6] => [3,4,-6,5] => [3,4,5,-6] => [3,4,-6,5] => [3,4,5,-6] => [3,4,-6,5]
chain 2, fact 1 [[1,1,0,1],[0,0,0,-1],[-3,3,0,0],[3,-3,1,1]] [1,6,8,-9] => [-2,9,15,-16] => [-9,16,33,-34] ?? [-27,34,75,-76]
chain 8, fact 1 [[1,1,4,4],[0,0,-4,-4],[4,-3,1,0],[-4,3,0,1]] [1,6,8,-9] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5] => [3,4,-6,5]
chain 8, fact 1 [[1,1,1,-2],[2,1,-3,2],[-2,-1,3,0],[0,0,0,1]] [1,6,8,-9] => [33,-34,16,-9] => [33,-34,16,-9] => [33,-34,16,-9] => [33,-34,16,-9] => [33,-34,16,-9] => [33,-34,16,-9] => [33,-34,16,-9] => [33,-34,16,-9]
chain 8, fact 1 [[2,1,0,2],[-2,0,1,-2],[0,2,2,1],[1,-2,-2,0]] [1,6,8,-9] => [-10,24,19,-27] => [-50,93,59,-96] => [-199,351,208,-354] => [-755,1314,764,-1317] => [-2830,4908,2839,-4911] => [-10574,18321,10583,-18324] => [-39475,68379,39484,-68382] => [-147335,255198,147344,-255201]
chain 2, fact 1 [[2,-2,3,1],[-2,1,0,0],[1,2,1,2],[0,0,-3,-2]] [1,6,8,-9] => [5,4,3,-6] => [5,-6,4,3] ?? [37,-16,3,-18]
chain 8, fact 1 [[2,2,0,1],[1,0,-2,-2],[0,1,2,2],[-2,-2,1,0]] [1,6,8,-9] => [5,3,4,-6] => [10,9,-1,-12] => [26,36,-17,-39] => [85,138,-76,-141] => [305,519,-296,-522] => [1126,1941,-1117,-1944] => [4190,7248,-4181,-7251] => [15625,27054,-15616,-27057]
chain 5, fact 27 [[4,0,3,4],[0,4,4,3],[-4,3,0,-4],[3,-4,-4,0]] [1,6,8,-9] => [-8,29,50,-53] => [-94,157,331,-340] => [-743,932,2207,-2234] => [-5287,5854,14704,-14785] => [-36176,37877,97850,-98093] ?? [-243526,248629,650707,-651436]
elapsed time: nn s
|
0683d792d8cc17d56cb4e58f5af8554a97315931 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH14/EX14.7/7.sce | cb7ab1852bd7b9747bdd09e09133ebca248724d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 641 | sce | 7.sce | clc
cp1=1.25; //kJ/kg 0C
cp2=2.93; //kJ/kg 0C
L=232; //kJ/kg
T1=-3; //0C
T2=-8; //0C
T3=25; //0C
Q1=cp2*(T3-T1) + L + cp1*(T1-T2); //Heat removed in 8 hours from each kg of fish
Q=Q1*20*1000/8; //Heat removed by the plant /min
disp("(i) Capacity of the refrigerating plant =")
capacity=Q/14000; //tonnes
disp(capacity)
disp("tonnes")
disp("(ii) Carnot cycle C.O.P. between this temperature range.")
T1=298; //K
T2=265; //K
COP=T2/(T1-T2);
disp("COP of reversed carnot cycle =")
disp(COP)
disp("(iii) Power required")
COP_actual=1/3*COP;
W=Q/COP_actual/3600; //kJ/s
disp("Power =")
disp(W)
disp("kW")
|
13a1c1f3d0440a243b7f21d3a61ebd67e7dc350f | d53a400ca7264286657a6910d31c30f7d0c51a33 | /Download.tst | bc8e5a222427786c9a04631e92e08aeb22bf3717 | [] | no_license | YanivSaar/TestRepo | 91244476cae9d61b4a46639dc40491b3ad2cf048 | 77ded7b9ea61b6b94f8159c821f9f82fd928d2d1 | refs/heads/master | 2020-04-07T22:39:17.722926 | 2018-11-26T09:24:57 | 2018-11-26T09:24:57 | 158,779,098 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 153 | tst | Download.tst | Download info
5052971089
8895528525
5069690259
7044036318
4734810143
0134911115
7898924658
1698594459
8564592765
7254655566
This is further addon info
|
685e8c5e80009d1a180d7c517ad642d3e0bc917d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2048/CH2/EX2.1/pend_model.sce | 1181fc69f11982c4bb440085d23813fabb2adcb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 515 | sce | pend_model.sce | // Model of inverted pendulum
// 2.1
Km = 0.00767;
Kg = 3.7;
Rm = 2.6;
r = 0.00635;
M = 0.522;
m = 0.231;
g = 9.81;
L = 0.305;
J = 0;
D1 = (J+m*L^2)*(M+m)-m^2*L^2;
alpha = m*g*L*(M+m)/D1;
beta1 = m*L/D1;
gamma1 = m^2*g*L^2/D1;
delta = (J+m*L^2)/D1;
alpha1 = Km*Kg/Rm/r;
alpha2 = Km^2*Kg^2/Rm/r^2;
A = zeros(4,4);
A(1,3) = 1;
A(2,4) = 1;
A(3,2) = -gamma1;
A(3,3) = -alpha2*delta;
A(4,2) = alpha;
A(4,3) = alpha2*beta1;
B = zeros(4,1);
B(3) = alpha1*delta;
B(4) = -alpha1*beta1;
|
66a2016363d5437a186e9fc16a4a47ea6e779591 | e86653ab56eded6714574f9f8f34013272027113 | /3432/CH9/EX9.8/Ex9_8.sce | e4b3c9795658a756e1c70ba8986fb128274c7079 | [] | no_license | FOSSEE/Xcos_TBC_Uploads | 3637554f9dca20d0c5ec2c5d00d30942edafe09a | 37e81552cb6d9066617ba91b13c91098e5ab6758 | refs/heads/master | 2023-03-30T10:45:38.033053 | 2021-03-15T05:40:35 | 2021-03-17T09:45:20 | 346,244,418 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 999 | sce | Ex9_8.sce | //Example 9.8
//Antiwindup compensation for a PI controller.
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
//System Model
//Response of the system
kp=2;
ki=4;
//Without antiwindup
ka=0;
importXcosDiagram(".\Ex9_8_model.xcos")
xcos_simulate(scs_m,4);
scs_m.props.context
figure(0)
plot(yt.time,yt.values,'m-.')
figure(1)
plot(ut.time,ut.values,'m-.')
//With antiwindup
ka=10;
xcos_simulate(scs_m,4);
scf(0)
plot(yt.time,yt.values)
exec .\fig_settings.sci; // custom script for setting figure properties
xlabel('Time (sec.)');
ylabel('Output');
title("Integrator antiwindup (a) step response.",'fontsize',3);
scf(1)
plot(ut.time,ut.values);
exec .\fig_settings.sci; // custom script for setting figure properties
xlabel('Time (sec.)');
ylabel('Control');
title("Integrator antiwindup (b) Control effort.",'fontsize',3);
zoom_rect([0 -1.2 10 1.2])
//------------------------------------------------------------------
|
6cff80e3d157860432f0434caf364fbc231fd602 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1655/CH5/EX5.2.1/Example_5_2_1.sce | 7957f39b5df05c8c3ee7625783de57b6c867637c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 487 | sce | Example_5_2_1.sce | // Example 5.2.1 page 5.2
clc;
clear;
n1=1.47; //refractive index of fiber
n=1; //refractive index of air
r=((n1-n)/(n1+n))^2; //computing fraction of light reflected
loss=-10*log10(1-r); //loss
total_loss=2*loss;
printf("r = %.3f, which means %.1f percent of the transimitted light is reflected at one interface",r,r*100);
printf("\nTotal loss is %.3f dB",total_loss);
//answer in the book for total loss of fiber is 0.318 dB, deviation of 0.002
|
873278ad1de93a4019cd04de6dd658a393e5171a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1172/CH1/EX1.3/Example1_3.sce | d4778114c89e3a244b06acffcd14402c060f974e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 360 | sce | Example1_3.sce | clc
//Given that
beta=0.0320//fringe width in cm
D=100// separation between source and screen in cm
d=0.184// separation between sources in cm
//Sample Problem 3 Page No. 47
printf ("\n # Problem 3 # \n")
printf(" \n Standard formula used beta=lambda*D/d \n")
lambda=d*beta/D*1e8
printf("\n Wavelength of light used is %d Angstrom.",lambda)
|
5329cd6bfdb1b36d541a20e45d682ff690bafb7d | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/FZ52MUA/ATWM1_Localizer_MRI_FZ52MUA/ATWM1_Localizer_MRI.sce | a9dc9055f5c53ccc47f17950b9af47949b99b159 | [] | 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 | 40,042 | sce | ATWM1_Localizer_MRI.sce | # ATWM1_MRI_Localizer
scenario = "ATWM1_Localizer_MRI";
scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
#scenario_type = trials;
scan_period = 2000; # TR
pulses_per_scan = 1;
pulse_code = 1;
#pulse_width=6;
default_monitor_sounds = false;
active_buttons = 1;
response_matching = simple_matching;
button_codes = 10;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
#write_codes=true;
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
bitmap {filename = "fixation_cross_black.bmp";} fixation_cross_black;
bitmap {filename = "blank.bmp";} blank;
bitmap {filename = "localizer.bmp";} localizer;
bitmap {filename = "localizer_inv.bmp";} localizer_inv;
bitmap {filename = "localizer_target.bmp";} localizer_target;
sound { wavefile { filename = "FeedbackSound_NoResponse.wav"; }; } sound_no_response;
sound { wavefile { filename = "FeedbackSound_Correct.wav"; }; } sound_correct;
sound { wavefile { filename = "FeedbackSound_Incorrect.wav"; }; } sound_incorrect;
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;
# 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";
};
TEMPLATE "ATWM1_Localizer_MRI.tem" {
trigger_volume intertrial_interval single_stimulus_presentation_time trl_duration stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 stim_enc_target1 stim_enc_target2 stim_enc_target3 stim_enc_target4 control_flicker_index trial_code retr_code posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
6 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "01_4_Objects_Pos1_DefaultTrial" "Localizer_01_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
7 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "02_4_Objects_Pos4_DefaultTrial" "Localizer_02_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
8 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 6 "03_4_Objects_Pos2_TargetTrial" "Localizer_03_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
9 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "04_4_Objects_Pos3_DefaultTrial" "Localizer_04_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
10 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "05_4_Objects_Pos1_DefaultTrial" "Localizer_05_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
11 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "06_4_Objects_Pos4_DefaultTrial" "Localizer_06_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
12 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 4 "07_4_Objects_Pos3_TargetTrial" "Localizer_07_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
13 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "08_4_Objects_Pos2_DefaultTrial" "Localizer_08_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
14 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "09_4_Objects_Pos1_DefaultTrial" "Localizer_09_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
15 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "10_4_Objects_Pos3_DefaultTrial" "Localizer_10_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
16 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "11_4_Objects_Pos4_DefaultTrial" "Localizer_11_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
17 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "12_4_Objects_Pos2_TargetTrial" "Localizer_12_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
19 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "13_4_Objects_Pos3_DefaultTrial" "Localizer_13_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
20 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "14_4_Objects_Pos1_DefaultTrial" "Localizer_14_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
21 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "15_4_Objects_Pos4_DefaultTrial" "Localizer_15_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
22 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 12 "16_4_Objects_Pos2_TargetTrial" "Localizer_16_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
23 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "17_4_Objects_Pos3_DefaultTrial" "Localizer_17_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
24 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "18_4_Objects_Pos2_DefaultTrial" "Localizer_18_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
25 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 6 "19_4_Objects_Pos1_TargetTrial" "Localizer_19_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
26 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "20_4_Objects_Pos4_DefaultTrial" "Localizer_20_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
27 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "21_4_Objects_Pos2_DefaultTrial" "Localizer_21_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
28 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "22_4_Objects_Pos1_DefaultTrial" "Localizer_22_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
29 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "23_4_Objects_Pos3_TargetTrial" "Localizer_23_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
30 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "24_4_Objects_Pos4_DefaultTrial" "Localizer_24_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
31 1950 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "25_4_Objects_Pos3_DefaultTrial" "Localizer_25_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
33 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "26_4_Objects_Pos2_DefaultTrial" "Localizer_26_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
34 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "27_4_Objects_Pos1_DefaultTrial" "Localizer_27_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
35 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "28_4_Objects_Pos4_TargetTrial" "Localizer_28_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
36 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "29_4_Objects_Pos2_DefaultTrial" "Localizer_29_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
37 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "30_4_Objects_Pos3_DefaultTrial" "Localizer_30_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
38 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "31_4_Objects_Pos1_DefaultTrial" "Localizer_31_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
39 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "32_4_Objects_Pos4_TargetTrial" "Localizer_32_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
40 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "33_4_Objects_Pos3_DefaultTrial" "Localizer_33_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "34_4_Objects_Pos1_DefaultTrial" "Localizer_34_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "35_4_Objects_Pos2_DefaultTrial" "Localizer_35_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "36_4_Objects_Pos4_TargetTrial" "Localizer_36_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 1950 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "37_4_Objects_Pos3_DefaultTrial" "Localizer_37_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
46 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "38_4_Objects_Pos2_DefaultTrial" "Localizer_38_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
47 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 8 "39_4_Objects_Pos1_TargetTrial" "Localizer_39_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
48 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "40_4_Objects_Pos4_DefaultTrial" "Localizer_40_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
49 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "41_4_Objects_Pos2_DefaultTrial" "Localizer_41_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
50 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "42_4_Objects_Pos3_DefaultTrial" "Localizer_42_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
51 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "43_4_Objects_Pos4_DefaultTrial" "Localizer_43_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
52 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 12 "44_4_Objects_Pos1_TargetTrial" "Localizer_44_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
53 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "45_4_Objects_Pos2_DefaultTrial" "Localizer_45_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
54 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "46_4_Objects_Pos1_DefaultTrial" "Localizer_46_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
55 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "47_4_Objects_Pos4_DefaultTrial" "Localizer_47_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
56 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 4 "48_4_Objects_Pos3_TargetTrial" "Localizer_48_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
57 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "49_4_Objects_Pos4_DefaultTrial" "Localizer_49_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
58 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 6 "50_4_Objects_Pos1_TargetTrial" "Localizer_50_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
59 1950 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "51_4_Objects_Pos3_DefaultTrial" "Localizer_51_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
61 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "52_4_Objects_Pos2_DefaultTrial" "Localizer_52_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
62 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "53_4_Objects_Pos3_DefaultTrial" "Localizer_53_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
63 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 8 "54_4_Objects_Pos2_TargetTrial" "Localizer_54_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
64 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "55_4_Objects_Pos4_DefaultTrial" "Localizer_55_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
65 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "56_4_Objects_Pos1_DefaultTrial" "Localizer_56_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
66 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "57_4_Objects_Pos2_DefaultTrial" "Localizer_57_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
67 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "58_4_Objects_Pos4_TargetTrial" "Localizer_58_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
68 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "59_4_Objects_Pos1_DefaultTrial" "Localizer_59_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
69 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "60_4_Objects_Pos3_DefaultTrial" "Localizer_60_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
70 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "61_4_Objects_Pos2_DefaultTrial" "Localizer_61_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
72 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 8 "62_4_Objects_Pos1_TargetTrial" "Localizer_62_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
73 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "63_4_Objects_Pos3_DefaultTrial" "Localizer_63_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
74 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "64_4_Objects_Pos4_DefaultTrial" "Localizer_64_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
75 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 12 "65_4_Objects_Pos3_TargetTrial" "Localizer_65_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
76 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "66_4_Objects_Pos2_DefaultTrial" "Localizer_66_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
77 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "67_4_Objects_Pos4_DefaultTrial" "Localizer_67_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
78 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "68_4_Objects_Pos1_DefaultTrial" "Localizer_68_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
79 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 8 "69_4_Objects_Pos2_TargetTrial" "Localizer_69_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
80 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "70_4_Objects_Pos3_DefaultTrial" "Localizer_70_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
81 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "71_4_Objects_Pos4_DefaultTrial" "Localizer_71_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
82 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "72_4_Objects_Pos1_DefaultTrial" "Localizer_72_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
83 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "73_4_Objects_Pos2_DefaultTrial" "Localizer_73_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
85 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "74_4_Objects_Pos1_DefaultTrial" "Localizer_74_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
86 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "75_4_Objects_Pos4_DefaultTrial" "Localizer_75_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
87 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 10 "76_4_Objects_Pos3_TargetTrial" "Localizer_76_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
88 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "77_4_Objects_Pos1_DefaultTrial" "Localizer_77_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
89 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "78_4_Objects_Pos4_DefaultTrial" "Localizer_78_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
90 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "79_4_Objects_Pos3_TargetTrial" "Localizer_79_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
91 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "80_4_Objects_Pos2_DefaultTrial" "Localizer_80_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
92 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "81_4_Objects_Pos3_DefaultTrial" "Localizer_81_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
93 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "82_4_Objects_Pos2_DefaultTrial" "Localizer_82_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
94 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 12 "83_4_Objects_Pos1_TargetTrial" "Localizer_83_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
95 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "84_4_Objects_Pos4_DefaultTrial" "Localizer_84_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
97 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "85_4_Objects_Pos1_DefaultTrial" "Localizer_85_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
98 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 4 "86_4_Objects_Pos3_TargetTrial" "Localizer_86_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
99 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "87_4_Objects_Pos4_DefaultTrial" "Localizer_87_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
100 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "88_4_Objects_Pos2_DefaultTrial" "Localizer_88_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
101 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "89_4_Objects_Pos1_DefaultTrial" "Localizer_89_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
102 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "90_4_Objects_Pos4_TargetTrial" "Localizer_90_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
103 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "91_4_Objects_Pos2_DefaultTrial" "Localizer_91_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
104 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "92_4_Objects_Pos3_DefaultTrial" "Localizer_92_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
105 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "93_4_Objects_Pos1_DefaultTrial" "Localizer_93_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
106 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 8 "94_4_Objects_Pos2_TargetTrial" "Localizer_94_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
108 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "95_4_Objects_Pos3_DefaultTrial" "Localizer_95_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
109 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "96_4_Objects_Pos4_DefaultTrial" "Localizer_96_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
110 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "97_4_Objects_Pos3_DefaultTrial" "Localizer_97_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
111 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "98_4_Objects_Pos2_TargetTrial" "Localizer_98_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
112 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "99_4_Objects_Pos1_DefaultTrial" "Localizer_99_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
113 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "100_4_Objects_Pos4_DefaultTrial" "Localizer_100_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
114 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "101_4_Objects_Pos3_TargetTrial" "Localizer_101_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
115 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "102_4_Objects_Pos1_DefaultTrial" "Localizer_102_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
116 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "103_4_Objects_Pos4_DefaultTrial" "Localizer_103_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
117 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "104_4_Objects_Pos2_DefaultTrial" "Localizer_104_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
118 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "105_4_Objects_Pos4_TargetTrial" "Localizer_105_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
119 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "106_4_Objects_Pos1_DefaultTrial" "Localizer_106_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
120 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "107_4_Objects_Pos2_DefaultTrial" "Localizer_107_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
122 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "108_4_Objects_Pos3_DefaultTrial" "Localizer_108_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
123 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "109_4_Objects_Pos2_DefaultTrial" "Localizer_109_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
124 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "110_4_Objects_Pos3_DefaultTrial" "Localizer_110_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
125 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "111_4_Objects_Pos4_DefaultTrial" "Localizer_111_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
126 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 10 "112_4_Objects_Pos1_TargetTrial" "Localizer_112_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
127 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "113_4_Objects_Pos2_DefaultTrial" "Localizer_113_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
128 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "114_4_Objects_Pos1_DefaultTrial" "Localizer_114_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
129 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "115_4_Objects_Pos4_TargetTrial" "Localizer_115_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
130 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "116_4_Objects_Pos3_DefaultTrial" "Localizer_116_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
131 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "117_4_Objects_Pos1_DefaultTrial" "Localizer_117_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
132 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "118_4_Objects_Pos4_DefaultTrial" "Localizer_118_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
133 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 12 "119_4_Objects_Pos3_TargetTrial" "Localizer_119_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
134 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "120_4_Objects_Pos2_DefaultTrial" "Localizer_120_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
135 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "121_4_Objects_Pos4_DefaultTrial" "Localizer_121_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
137 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "122_4_Objects_Pos2_DefaultTrial" "Localizer_122_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
138 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 10 "123_4_Objects_Pos1_TargetTrial" "Localizer_123_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
139 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "124_4_Objects_Pos3_DefaultTrial" "Localizer_124_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
140 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "125_4_Objects_Pos1_DefaultTrial" "Localizer_125_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
141 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "126_4_Objects_Pos3_DefaultTrial" "Localizer_126_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
142 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "127_4_Objects_Pos4_DefaultTrial" "Localizer_127_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
143 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 8 "128_4_Objects_Pos2_TargetTrial" "Localizer_128_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
144 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "129_4_Objects_Pos3_DefaultTrial" "Localizer_129_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
145 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "130_4_Objects_Pos2_DefaultTrial" "Localizer_130_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
146 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "131_4_Objects_Pos1_DefaultTrial" "Localizer_131_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
147 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 6 "132_4_Objects_Pos4_TargetTrial" "Localizer_132_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
149 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "133_4_Objects_Pos1_DefaultTrial" "Localizer_133_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
150 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "134_4_Objects_Pos3_DefaultTrial" "Localizer_134_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
151 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 6 "135_4_Objects_Pos4_TargetTrial" "Localizer_135_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
152 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "136_4_Objects_Pos2_DefaultTrial" "Localizer_136_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
153 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "137_4_Objects_Pos3_DefaultTrial" "Localizer_137_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
154 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "138_4_Objects_Pos4_DefaultTrial" "Localizer_138_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
155 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 4 "139_4_Objects_Pos1_TargetTrial" "Localizer_139_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
156 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "140_4_Objects_Pos2_DefaultTrial" "Localizer_140_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
157 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "141_4_Objects_Pos4_DefaultTrial" "Localizer_141_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
158 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "142_4_Objects_Pos1_DefaultTrial" "Localizer_142_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
159 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "143_4_Objects_Pos3_DefaultTrial" "Localizer_143_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
160 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 4 "144_4_Objects_Pos2_TargetTrial" "Localizer_144_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 20000;
code = "BaselinePost";
}; |
317e72c9ffdd622ce11dfd6ec138ceb00b9e57da | a45f93853fdb67523e71e3e7fb88c4298eae1ef7 | /Screens/InGameMenu_Options_Display.tst | 761d3bf4907e1dac4f1e9ddf836bfc0f9ceb8874 | [] | no_license | voarsh/Disney-Treasure-Planet-Battle-at-Procyon | 68192cbfdf8b823bc8399e3ea1e62d4976b74aed | 99cbbc70701ef6e8f9d95eba1052635de992910f | refs/heads/master | 2020-04-16T01:44:03.761947 | 2016-06-08T10:25:05 | 2016-06-08T10:25:05 | 38,745,932 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,690 | tst | InGameMenu_Options_Display.tst | ScreenName String 'InGameMenu_Options_Display'
ImplName String 'InGameMenu Screen'
ElementChunkArray Int 20
ScreenElementType Int 0
ImplName String 'In Game Backdrop'
TabIndex Int 1
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 53, 46, 747, 550 ) # left,top,right,bottom
ScreenElementType Int 1
ImplName String 'Video Modes Toggle Button'
TabIndex Int 8
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 405, 175, 685, 210 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_START_NEW_CAMPAIGN'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Render Background Toggle Button'
TabIndex Int 10
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 405, 355, 685, 390 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_BUTTON_CREW'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Detail Effect Scrollbar Button'
TabIndex Int 11
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 405, 220, 685, 255 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_BUTTON_ARMS'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Detail Model Scrollbar Button'
TabIndex Int 14
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 405, 265, 685, 300 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_BUTTON_CREW'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Detail Terrain Toggle Button'
TabIndex Int 30
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 405, 310, 685, 345 ) # left,top,right,bottom
Font String 'Univers10'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_EFFECT_DETAIL'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Open Prev Arrow Button'
TabIndex Int 33
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 357, 397, 447, 487 ) # left,top,right,bottom
Font String 'DebugFont'
Text String 'IDGS_TPFRONTENDTEXT_BUTTON_ADD'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Open Dialog Next Button'
TabIndex Int 34
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 465, 416, 673, 460 ) # left,top,right,bottom
Font String 'BlackChancery16'
Text String 'IDGS_TPFRONTENDTEXT01_ADVANCED_OPTIONS'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 35
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 114, 131, 694, 169 ) # left,top,right,bottom
Font String 'BlackChancery22'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_DISPLAY_OPTIONS'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Center Justify Label'
TabIndex Int 36
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 112, 124, 693, 172 ) # left,top,right,bottom
Font String 'BlackChancery22'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_DISPLAY_OPTIONS'
Color Colour( 1.000000, 0.796100, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 37
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 38, 182, 402, 211 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_RENDERER_AND_BIT_DEPTH'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 38
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 39, 180, 401, 204 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_RENDERER_AND_BIT_DEPTH'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 39
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 46, 225, 401, 255 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_EFFECT_DETAIL'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 40
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 148, 223, 400, 258 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_EFFECT_DETAIL'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 41
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 98, 271, 401, 298 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_MODEL_DETAIL'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 42
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 182, 269, 399, 304 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_MODEL_DETAIL'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 43
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 131, 313, 401, 348 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT02_TERRAIN_VISIBILITY'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 44
Selectable Bool True
Enabled Bool True
ReferenceArea Rect( 178, 311, 400, 346 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT02_TERRAIN_VISIBILITY'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 45
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 63, 360, 401, 395 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_RENDER_BACKGROUND'
Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 )
HotKey Int -1
ScreenElementType Int 1
ImplName String 'Right Justify Label'
TabIndex Int 46
Selectable Bool False
Enabled Bool True
ReferenceArea Rect( 83, 359, 400, 399 ) # left,top,right,bottom
Font String 'UniversBold14'
Text String 'IDGS_TPFRONTENDTEXT_SCREENS_RENDER_BACKGROUND'
Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 )
HotKey Int -1
|
fbd9a7bf204a22413b934b83664f7e332203f294 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.3_14.tst | 9674ae02ddf9dd3d8ea0fa4e576c0ba766b4377b | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 33,040 | tst | bow.3_14.tst | 3 15:0.07692307692307693 17:0.2 23:0.25 37:0.09090909090909091 82:0.16666666666666666 95:1.0 96:0.16666666666666666 97:1.0 114:0.5 115:1.0 116:2.0 128:0.5 145:1.0 171:0.5 272:1.0 350:0.038461538461538464 531:0.5 561:1.0 622:1.0 641:1.0 809:1.0 892:1.0 938:1.0 1168:1.0 1430:1.0 1618:1.0 1742:1.0 1947:0.5 1959:1.0 1992:1.0 2297:1.0 2550:1.0 2721:1.0 3667:1.0 4220:1.0 4227:1.0
3 5:0.3333333333333333 23:0.375 42:0.5 96:0.16666666666666666 97:2.0 100:0.25 105:0.5 143:0.3333333333333333 147:0.5 165:0.1 171:0.5 177:0.5 219:0.3333333333333333 368:1.0 373:0.038461538461538464 622:2.0 644:1.0 897:1.0 1058:1.0 1163:1.0 1618:1.0 1742:1.0 1780:0.5 1867:1.0 1869:1.0 1947:0.5 2188:1.0 2194:1.0 2550:1.0 2886:1.0 2942:1.0 3121:1.0 3183:1.0 3667:1.0
3 1:0.1111111111111111 4:0.5 5:0.3333333333333333 6:0.043478260869565216 23:0.125 34:0.07692307692307693 37:0.09090909090909091 40:1.0 42:0.5 116:1.0 146:1.0 147:0.5 150:0.038461538461538464 258:1.0 373:0.038461538461538464 399:0.5 441:1.0 517:1.0 667:1.0 1109:1.0 1377:1.0 1438:1.0 1644:0.3333333333333333 2573:1.0 5019:1.0
3 6:0.2608695652173913 15:0.15384615384615385 17:0.2 34:0.15384615384615385 42:0.25 56:0.3333333333333333 63:0.5 73:1.0 75:1.0 82:0.16666666666666666 105:0.5 114:0.5 145:1.0 190:0.5 215:0.2 219:0.3333333333333333 249:0.5 350:0.038461538461538464 477:1.0 534:1.0 1154:1.0 1568:0.5 1993:1.0 2276:1.0 2515:1.0 2599:1.0 2970:1.0 2987:1.0 4003:1.0 4112:2.0 5019:1.0 5058:1.0 6567:1.0
3 5:0.3333333333333333 23:0.25 42:0.25 97:1.0 116:2.0 157:1.0 275:1.0 311:1.0 312:1.0 373:0.038461538461538464 397:0.5 423:1.0 1657:2.0 1698:1.0 1740:0.5 2547:1.0 3000:0.25 3391:1.0 4451:1.0
3 6:0.043478260869565216 17:0.2 23:0.125 34:0.07692307692307693 42:0.25 56:0.3333333333333333 97:0.5 114:1.5 143:0.3333333333333333 146:1.0 165:0.1 169:1.0 190:0.5 191:0.5 215:0.2 219:0.3333333333333333 261:0.03571428571428571 409:1.0 644:1.0 1132:1.0 1176:1.0 1319:1.0 1492:1.0 1867:1.0 1993:1.0 2187:1.0 2974:1.0 3171:1.0 5081:1.0 6327:1.0
3 5:0.3333333333333333 6:0.08695652173913043 15:0.07692307692307693 34:0.15384615384615385 37:0.09090909090909091 56:0.3333333333333333 94:1.0 96:0.16666666666666666 97:1.0 107:0.5 116:1.0 128:0.5 157:1.0 165:0.1 167:1.0 190:1.0 191:1.0 235:1.0 461:1.0 561:1.0 1064:1.0 2524:1.0 3375:1.0 4146:1.0 5192:1.0 5272:1.0
3 4:0.5 6:0.17391304347826086 15:0.23076923076923078 34:0.07692307692307693 37:0.18181818181818182 42:0.25 63:0.5 75:1.5 82:0.16666666666666666 98:0.5 150:0.038461538461538464 158:1.0 165:0.1 185:1.0 189:1.0 191:0.5 206:1.0 281:1.0 295:1.0 311:1.0 319:0.0625 340:1.0 367:0.5 443:0.3333333333333333 660:1.0 693:1.0 1030:1.0 1033:1.0 1298:1.0 1424:1.0 1719:1.0 2017:1.0 2462:1.0 3605:1.0 4006:1.0 4102:1.0 5095:1.0
3 6:0.043478260869565216 17:0.2 34:0.07692307692307693 37:0.09090909090909091 94:0.5 95:1.0 96:0.16666666666666666 114:1.0 139:1.0 150:0.11538461538461539 165:0.1 206:1.0 238:0.125 295:1.0 320:1.0 409:1.0 443:0.3333333333333333 654:0.14285714285714285 982:1.0 1424:1.0 1947:0.5 2033:1.0 2211:1.0 2320:2.0 3855:1.0
3 1:0.1111111111111111 34:0.07692307692307693 35:1.0 36:1.0 42:0.25 44:1.0 63:0.5 89:1.0 177:0.5 197:0.5 215:0.2 311:1.0 314:1.0 417:1.0 496:1.0 654:0.14285714285714285 800:0.5 1671:1.0 2688:1.0 4185:1.0 4370:2.0
3 1:0.1111111111111111 4:0.5 6:0.13043478260869565 23:0.125 33:1.0 34:0.07692307692307693 35:1.0 36:1.0 42:0.25 56:0.3333333333333333 146:1.0 181:0.125 307:1.0 550:1.0 647:0.5 1266:1.0 1616:1.0 1671:1.0 2231:1.0 2444:1.0 2462:1.0 2609:1.0 5383:1.0 5638:1.0 6425:1.0
3 6:0.043478260869565216 17:0.2 34:0.23076923076923078 37:0.18181818181818182 42:0.5 56:0.3333333333333333 63:0.5 96:0.16666666666666666 107:0.5 146:1.0 150:0.038461538461538464 191:1.0 201:0.5 206:1.0 219:0.3333333333333333 231:1.0 388:1.0 424:1.0 443:0.3333333333333333 461:1.0 473:0.6666666666666666 563:1.0 728:1.0 892:1.0 1139:0.5 1147:1.0 1161:1.0 1267:1.0 1404:1.0 1422:1.0 1438:1.0 1538:1.0 2041:1.0 2331:1.0 2376:1.0 2409:1.0 2695:1.0 3567:1.0 3661:1.0 5672:1.0 6060:1.0 6137:1.0
3 6:0.043478260869565216 14:0.07692307692307693 15:0.15384615384615385 56:0.3333333333333333 63:0.5 82:0.16666666666666666 97:0.5 100:0.25 191:0.5 219:0.3333333333333333 261:0.03571428571428571 287:1.0 320:1.0 373:0.038461538461538464 399:0.5 477:1.0 507:1.0 728:1.0 817:1.0 872:1.0 1399:1.0 1693:1.0 1790:0.3333333333333333 2695:1.0 3128:1.0 3216:1.0 3255:1.0 3659:1.0 3661:1.0 6741:1.0
3 1:0.1111111111111111 5:0.3333333333333333 6:0.08695652173913043 17:0.4 23:0.125 33:1.0 34:0.07692307692307693 35:1.0 36:1.0 37:0.09090909090909091 115:1.0 140:0.5 191:0.5 204:1.0 416:0.25 417:1.0 443:0.3333333333333333 473:0.3333333333333333 646:1.0 1126:1.0 1181:1.0 2557:1.0 2801:1.0 3515:1.0 3870:1.0 4049:1.0 4651:1.0 6734:1.0 7210:1.0
3 6:0.043478260869565216 17:0.2 34:0.07692307692307693 37:0.09090909090909091 96:0.16666666666666666 106:1.0 128:0.5 201:0.5 223:2.0 327:0.16666666666666666 441:1.0 442:1.0 443:0.3333333333333333 531:1.0 561:1.0 654:0.14285714285714285 689:1.0 850:1.0 1075:1.0 1217:1.0 1275:1.0 1426:1.0 1428:1.0 1438:1.0 1936:1.0 2294:1.0 3686:1.0 3981:1.0 4109:1.0 4341:1.0 4532:1.0 4911:1.0 5127:1.0 5494:1.0
3 5:0.6666666666666666 34:0.07692307692307693 51:0.5 56:0.3333333333333333 63:0.5 88:1.0 94:0.5 98:0.5 102:0.3333333333333333 107:0.5 127:1.0 167:1.0 173:1.0 185:1.0 191:1.0 215:0.2 222:0.3333333333333333 223:1.0 226:2.0 353:0.5 373:0.038461538461538464 438:0.3333333333333333 480:1.0 482:1.0 598:1.0 646:1.0 689:1.0 737:0.5 829:1.0 1693:1.0 1716:1.0 1867:1.0 3175:1.0 3770:1.0 3828:1.0 4497:1.0 5309:1.0 6444:1.0
3 5:0.3333333333333333 6:0.08695652173913043 17:0.2 34:0.07692307692307693 42:0.25 56:0.3333333333333333 82:0.16666666666666666 96:0.16666666666666666 97:0.5 102:0.3333333333333333 108:0.5 129:0.5 150:0.038461538461538464 165:0.1 191:0.5 210:1.0 339:1.0 350:0.038461538461538464 454:1.0 488:1.0 561:1.0 595:1.0 597:1.0 689:1.0 816:0.5 1295:1.0 1404:1.0 1669:0.16666666666666666 1867:1.0 1885:1.0 2123:1.0 2538:1.0 3197:1.0 3593:1.0 3671:1.0 3686:1.0 4497:1.0 6153:1.0 6444:1.0
3 6:0.08695652173913043 94:0.5 147:1.0 311:1.0 425:1.0 511:0.5 1127:1.0 1571:1.0 2856:1.0 3259:1.0
3 6:0.043478260869565216 16:0.1111111111111111 56:0.3333333333333333 60:1.0 82:0.16666666666666666 97:0.5 128:0.5 150:0.038461538461538464 155:0.06666666666666667 163:1.0 226:1.0 281:1.0 327:0.16666666666666666 336:0.5 399:0.5 473:0.3333333333333333 1904:1.0 2055:1.0 2607:1.0 2721:1.0 2973:1.0 3663:1.0 4237:1.0 4246:1.0 4404:1.0
3 1:0.1111111111111111 5:0.6666666666666666 6:0.08695652173913043 34:0.07692307692307693 42:0.25 45:1.0 75:0.5 89:1.0 120:1.0 150:0.07692307692307693 275:1.0 327:0.16666666666666666 353:0.5 367:0.5 441:1.0 448:1.0 929:1.0 1127:1.0 1241:0.3333333333333333 1382:0.5 1671:2.0 2015:0.5 2158:1.0 2313:1.0 2370:1.0 2530:1.0 2770:1.0 3392:1.0 3817:2.0 4051:1.0 4523:1.0
3 5:1.0 6:0.043478260869565216 14:0.07692307692307693 51:0.25 56:0.3333333333333333 73:1.0 94:0.5 114:0.5 135:0.5 138:0.14285714285714285 146:1.0 147:0.5 150:0.038461538461538464 169:1.0 185:1.0 275:1.0 359:0.5 367:0.5 379:1.0 427:0.034482758620689655 483:1.0 531:0.5 536:1.0 549:1.0 583:2.0 609:1.0 661:1.0 747:0.5 846:1.0 897:1.0 1035:1.0 1295:1.0 1397:1.0 1412:1.0 1426:1.0 1671:1.0 2082:1.0 2721:1.0 2789:1.0 2819:1.0 3794:1.0 4054:1.0 4261:1.0 4463:1.0 4465:1.0 4480:1.0 4635:1.0
3 1:0.1111111111111111 5:1.3333333333333333 15:0.3076923076923077 34:0.07692307692307693 37:0.09090909090909091 42:0.5 56:0.3333333333333333 73:1.0 82:0.5 123:1.0 128:0.5 180:1.0 191:0.5 261:0.03571428571428571 286:1.0 287:1.0 350:0.038461538461538464 373:0.038461538461538464 405:1.0 411:0.3333333333333333 461:1.0 473:0.6666666666666666 477:1.0 483:1.0 878:1.0 1095:1.0 1753:1.0 1910:1.0 2078:1.0 2295:1.0 2313:1.0 2941:1.0 2980:1.0 4723:1.0 5070:1.0 5104:0.125 5230:1.0 5280:0.5 7230:1.0
3 5:0.3333333333333333 6:0.043478260869565216 15:0.3076923076923077 17:0.2 23:0.125 35:1.0 42:1.75 53:1.0 82:0.3333333333333333 96:0.16666666666666666 97:0.5 135:0.5 155:0.06666666666666667 181:0.125 249:0.5 251:0.3333333333333333 270:1.0 272:0.5 289:1.0 441:1.0 443:0.3333333333333333 534:3.0 560:1.0 561:1.0 577:1.0 615:0.14285714285714285 644:1.0 717:0.3333333333333333 735:1.0 1035:1.0 1160:1.0 1445:0.3333333333333333 1473:1.0 1474:1.0 1538:1.0 1655:1.0 1719:1.0 1868:1.0 1992:1.0 2263:0.5 2582:1.0 2751:1.0 2752:1.0 2776:1.0 2821:1.0 3096:1.0 3144:1.0 3146:1.0 3628:2.0 3832:1.0 5151:1.0 5403:1.0 5539:1.0 5569:1.0
3 5:1.0 6:0.043478260869565216 15:0.07692307692307693 23:0.25 34:0.23076923076923078 56:0.3333333333333333 63:0.5 64:0.5 71:1.0 73:1.0 82:0.16666666666666666 96:0.16666666666666666 97:0.5 116:1.0 143:0.3333333333333333 147:0.5 169:1.0 176:1.0 185:1.0 191:1.0 201:0.5 245:0.5 281:1.0 319:0.0625 410:1.0 443:0.3333333333333333 499:1.0 587:1.0 613:1.0 644:1.0 763:1.0 840:1.0 1102:1.0 1219:1.0 1690:1.0 1710:1.0 1910:1.0 2015:0.5 2045:1.0 2721:1.0 3064:1.0 3552:1.0 3584:1.0 3636:1.0 4306:1.0 5874:1.0
3 5:0.3333333333333333 6:0.13043478260869565 14:0.07692307692307693 23:0.125 97:0.5 165:0.1 169:1.0 191:0.5 220:1.0 241:1.0 328:1.0 397:0.5 424:1.0 473:0.3333333333333333 533:0.25 1275:1.0 1700:1.0 2018:1.0 2235:1.0 3639:1.0 3840:1.0 3842:1.0 4385:1.0 5216:1.0
3 5:0.6666666666666666 6:0.21739130434782608 15:0.15384615384615385 17:0.2 23:0.125 34:0.15384615384615385 42:0.25 45:1.0 82:0.16666666666666666 89:1.0 96:0.16666666666666666 97:1.0 140:1.0 150:0.038461538461538464 327:0.16666666666666666 339:1.0 410:1.0 430:1.0 443:0.3333333333333333 473:0.3333333333333333 623:1.0 927:1.0 1397:1.0 1399:1.0 1655:1.0 2716:1.0 2992:1.0 5369:1.0 5453:1.0 6286:1.0
3 5:0.3333333333333333 23:0.125 42:0.5 89:1.0 97:0.5 135:0.5 143:0.3333333333333333 147:1.0 150:0.11538461538461539 155:0.06666666666666667 165:0.1 215:0.2 327:0.16666666666666666 350:0.038461538461538464 359:0.5 367:0.5 379:1.0 473:0.3333333333333333 583:1.0 717:0.3333333333333333 747:0.5 857:1.0 879:1.0 1180:1.0 1436:1.0 1637:1.0 2518:1.0 2672:1.0 4492:1.0
3 1:0.3333333333333333 5:0.3333333333333333 23:0.25 34:0.07692307692307693 36:1.0 96:0.16666666666666666 97:1.5 150:0.07692307692307693 215:0.2 409:1.0 423:1.0 617:1.0 695:1.0 941:1.0 1293:1.0 1295:1.0 1568:0.5 2183:1.0 3123:1.0 3405:1.0 3543:1.0
3 1:0.2222222222222222 4:1.0 6:0.043478260869565216 17:0.4 33:1.0 56:0.6666666666666666 75:0.5 81:1.0 97:0.5 105:0.5 114:1.5 169:1.0 180:1.0 190:0.5 223:1.0 289:1.0 300:1.0 327:0.16666666666666666 399:0.5 473:0.6666666666666666 482:1.0 491:1.0 511:0.5 587:1.0 615:0.14285714285714285 790:1.0 1123:1.0 1154:1.0 1241:0.3333333333333333 1275:1.0 1389:1.0 1959:2.0 2178:1.0 3437:1.0 3947:1.0 5711:1.0 6291:1.0
3 1:0.1111111111111111 5:0.3333333333333333 15:0.07692307692307693 17:0.2 23:0.125 34:0.07692307692307693 35:1.0 36:1.0 37:0.09090909090909091 42:0.25 60:1.0 73:1.0 82:0.3333333333333333 190:0.5 215:0.2 228:0.5 235:1.0 340:1.0 423:1.0 496:1.0 664:1.0 714:1.0 769:1.0 1423:0.5 1538:1.0 1655:1.0
3 15:0.07692307692307693 25:0.5 42:0.5 56:0.3333333333333333 95:1.0 145:1.0 223:1.0 319:0.0625 443:0.3333333333333333 531:0.5 534:1.0 566:1.0 595:1.0 618:1.0 622:1.0 623:1.0 671:1.0 795:1.0 1295:1.0 1407:1.0 1853:1.0 1998:1.0 2532:1.0 4616:1.0 4877:1.0 6095:1.0 6153:1.0
3 1:0.1111111111111111 5:0.3333333333333333 6:0.043478260869565216 15:0.15384615384615385 16:0.1111111111111111 34:0.07692307692307693 56:0.3333333333333333 82:0.16666666666666666 88:1.0 114:0.5 123:1.0 138:0.14285714285714285 243:1.0 261:0.03571428571428571 275:1.0 386:0.5 511:0.5 857:1.0 1009:1.0 1032:2.0 1155:1.0 1244:1.0 1295:1.0 1433:1.0 1998:1.0 2353:1.0 2609:1.0 3800:1.0 4540:1.0 6027:1.0
3 1:0.1111111111111111 5:0.6666666666666666 6:0.043478260869565216 11:1.0 42:0.25 51:0.25 56:0.3333333333333333 128:1.0 146:1.0 147:0.5 150:0.038461538461538464 155:0.06666666666666667 181:0.25 185:1.0 226:2.0 284:1.0 327:0.16666666666666666 350:0.038461538461538464 409:1.0 443:0.3333333333333333 473:0.3333333333333333 588:1.0 714:1.0 1105:1.0 1109:1.0 1202:1.0 1225:1.0 1349:1.0 1538:1.0 1655:1.0 1768:1.0 1939:1.0 2059:1.0 2409:1.0 2553:1.0 2910:1.0 2930:1.0 3085:1.0 6734:1.0 6832:1.0
3 37:0.09090909090909091 56:0.3333333333333333 97:1.0 147:1.0 235:1.0 261:0.03571428571428571 266:1.0 272:0.5 287:1.0 340:1.0 375:0.5 785:1.0 1109:2.0 2716:1.0 3270:1.0 3976:1.0
3 6:0.043478260869565216 15:0.15384615384615385 17:0.4 37:0.18181818181818182 42:0.25 73:1.0 114:0.5 147:0.5 169:1.0 206:1.0 261:0.03571428571428571 295:1.0 542:0.5 615:0.14285714285714285 911:1.0 1109:1.0 1354:0.5 1448:1.0 1538:1.0 1572:1.0 1655:1.0 1826:1.0 2378:0.3333333333333333 2524:1.0 3539:1.0
3 4:0.5 5:0.3333333333333333 15:0.15384615384615385 23:0.125 42:0.5 73:1.0 97:1.0 150:0.07692307692307693 164:0.25 169:1.0 171:1.0 190:0.5 204:1.0 215:0.2 226:1.0 261:0.03571428571428571 484:1.0 681:0.2 785:1.0 794:1.0 911:1.0 1126:1.0 1261:1.0 1785:1.0 1947:0.5 2723:1.0 3332:1.0 3473:1.0 4782:1.0 5672:1.0
3 4:0.5 5:0.3333333333333333 6:0.13043478260869565 34:0.07692307692307693 42:0.5 56:0.3333333333333333 63:0.5 82:0.16666666666666666 95:1.0 105:0.5 107:0.5 135:0.5 192:1.0 261:0.03571428571428571 327:0.16666666666666666 376:1.0 473:0.6666666666666666 488:0.5 531:1.0 534:3.0 542:0.5 561:2.0 785:1.0 1241:0.3333333333333333 1261:1.0 1780:0.5 2614:1.0 3790:1.0 3838:1.0 4182:1.0 6217:1.0 6265:1.0 6611:1.0 7230:1.0
3 6:0.08695652173913043 34:0.07692307692307693 42:0.25 69:0.5 114:0.5 117:0.03571428571428571 143:0.3333333333333333 146:1.0 147:0.5 165:0.1 170:1.0 253:1.0 261:0.03571428571428571 279:1.0 336:0.5 350:0.038461538461538464 484:1.0 587:1.0 892:1.0 908:1.0 1351:0.5 1382:0.5 1487:1.0 2221:1.0 2263:0.5 5030:1.0 5406:1.0
3 1:0.1111111111111111 5:0.3333333333333333 15:0.15384615384615385 30:0.5 37:0.18181818181818182 64:0.5 69:0.5 88:1.0 116:1.0 128:0.5 146:1.0 147:0.5 165:0.1 228:0.5 284:1.0 299:1.0 350:0.038461538461538464 373:0.07692307692307693 452:1.0 484:1.0 488:0.5 561:1.0 587:1.0 747:0.5 1003:1.0 1091:1.0 1326:1.0 1327:1.0 1885:1.0 1936:1.0 2243:1.0 2403:1.0 2626:1.0 3584:1.0
3 1:0.1111111111111111 6:0.043478260869565216 23:0.125 34:0.07692307692307693 42:0.25 49:0.3333333333333333 56:0.3333333333333333 82:0.5 96:0.16666666666666666 106:3.0 139:1.0 145:1.0 146:1.0 162:1.0 165:0.2 169:1.0 188:1.0 189:1.0 328:1.0 353:0.5 393:0.25 443:0.3333333333333333 488:0.5 524:1.0 618:1.0 644:1.0 671:1.0 892:1.0 1075:1.0 1103:0.5 1241:0.3333333333333333 1275:1.0 1681:1.0 1780:0.5 1885:1.0 1923:1.0 2591:0.3333333333333333 2807:0.5 4462:1.0
3 5:0.3333333333333333 6:0.043478260869565216 14:0.07692307692307693 34:0.07692307692307693 42:0.25 82:0.3333333333333333 96:0.16666666666666666 102:0.3333333333333333 201:0.5 204:1.0 223:1.0 373:0.038461538461538464 441:1.0 461:1.0 1003:1.0 1220:1.0 1278:1.0 1572:1.0 1596:1.0 2068:1.0 2441:1.0 2591:0.3333333333333333 4965:1.0
3 4:0.5 14:0.07692307692307693 69:0.5 82:0.16666666666666666 138:0.14285714285714285 169:1.0 170:1.0 204:1.0 206:1.0 219:0.3333333333333333 255:1.0 367:0.5 756:1.0 1936:1.0 2539:1.0 7184:1.0 7269:1.0
3 6:0.043478260869565216 14:0.07692307692307693 15:0.07692307692307693 37:0.09090909090909091 49:0.3333333333333333 97:0.5 105:0.5 138:0.14285714285714285 177:0.5 215:0.2 224:1.0 424:1.0 443:0.3333333333333333 542:0.5 858:1.0 930:0.2 2474:1.0 2591:0.3333333333333333
3 5:0.3333333333333333 6:0.043478260869565216 14:0.07692307692307693 42:0.25 82:0.16666666666666666 146:1.0 228:0.5 505:1.0 573:1.0 1091:1.0 1199:1.0 1538:1.0 1847:1.0 3605:1.0
3 5:0.6666666666666666 6:0.043478260869565216 69:0.5 95:1.0 106:1.0 114:0.5 135:0.5 147:0.5 261:0.03571428571428571 336:0.5 353:0.5 534:1.0 955:0.2 1057:1.0 1087:1.0 1104:1.0 1430:1.0 2030:1.0 3550:1.0 3584:1.0 3849:1.0 6453:1.0
3 15:0.07692307692307693 17:0.2 23:0.125 42:0.25 82:0.3333333333333333 97:0.5 108:0.5 134:1.0 139:1.0 154:1.0 155:0.2 201:0.5 215:0.6 272:0.5 338:1.0 359:0.5 440:1.0 482:1.0 560:1.0 1040:1.0 1219:1.0 1241:0.3333333333333333
3 6:0.13043478260869565 15:0.07692307692307693 17:0.2 63:0.5 73:1.0 105:1.0 108:0.5 167:1.0 215:0.2 253:1.0 295:1.0 305:1.0 328:1.0 359:0.5 407:1.0 441:1.0 461:1.0 522:1.0 615:0.14285714285714285 958:1.0 959:1.0 960:1.0 1045:1.0 1275:1.0 1423:0.5 1445:0.3333333333333333 1464:1.0 1569:0.3333333333333333 1621:1.0 1671:1.0 2175:0.5 2282:1.0 3013:1.0 3535:1.0 4774:1.0 7180:1.0
3 5:0.6666666666666666 6:0.043478260869565216 26:1.0 34:0.07692307692307693 37:0.09090909090909091 42:0.5 56:0.3333333333333333 63:0.5 64:0.5 69:0.5 108:0.5 146:1.0 150:0.07692307692307693 169:1.0 181:0.125 215:0.2 359:1.5 443:0.3333333333333333 558:1.0 681:0.2 696:1.0 768:0.5 1006:1.0 1215:1.0 1521:1.0 1651:0.14285714285714285 1923:1.0 1929:1.0 1939:1.0 2683:1.0 2770:1.0 2942:1.0 3151:1.0 3379:1.0 4076:1.0 4104:1.0 5873:1.0
3 34:0.07692307692307693 37:0.09090909090909091 42:0.5 54:1.0 56:0.3333333333333333 63:0.5 64:1.0 75:0.5 82:0.16666666666666666 108:0.5 150:0.07692307692307693 169:1.0 181:0.125 201:0.5 250:1.0 251:0.3333333333333333 350:0.038461538461538464 359:1.0 373:0.038461538461538464 399:0.5 443:0.3333333333333333 447:1.0 511:0.5 681:0.2 768:0.5 795:1.0 1058:1.0 1192:1.0 1332:1.0 1582:1.0 1923:1.0 1929:1.0 2016:1.0 2770:1.0 2942:1.0 4076:1.0 4242:1.0
3 34:0.07692307692307693 82:0.16666666666666666 97:0.5 143:0.3333333333333333 145:1.0 150:0.07692307692307693 238:0.125 328:1.0 329:0.5 367:0.5 370:1.0 664:1.0 1097:1.0 1296:1.0 1669:0.16666666666666666 1929:1.0 2370:2.0 3663:1.0 6899:1.0
3 5:1.0 6:0.08695652173913043 15:0.15384615384615385 23:0.125 34:0.07692307692307693 37:0.18181818181818182 42:0.25 44:1.0 56:0.3333333333333333 64:1.0 97:0.5 106:2.0 147:0.5 226:1.0 253:1.0 350:0.038461538461538464 367:0.5 373:0.038461538461538464 424:1.0 441:1.0 449:1.0 473:0.6666666666666666 488:1.0 545:1.0 561:1.0 989:1.0 1143:1.0 1260:0.5 1263:1.0 1452:1.0 1511:1.0 1569:0.3333333333333333 1707:1.0 1867:1.0 2013:1.0 2248:1.0 2288:1.0 2485:1.0 3582:1.0 3745:1.0 5122:1.0 6673:1.0 7008:1.0
3 5:0.6666666666666666 6:0.043478260869565216 42:0.5 69:0.5 73:1.0 97:0.5 106:1.0 108:0.5 146:1.0 165:0.1 204:1.0 250:1.0 368:1.0 402:1.0 445:1.0 450:1.0 483:1.0 735:1.0 1066:1.0 1161:1.0 1266:1.0 1281:1.0 1386:1.0 1445:0.3333333333333333 1651:0.14285714285714285 1847:1.0 1867:2.0 2297:1.0 3121:1.0 3567:1.0 4335:1.0
3 1:0.1111111111111111 3:1.0 5:0.3333333333333333 6:0.13043478260869565 15:0.07692307692307693 17:0.2 34:0.07692307692307693 56:0.3333333333333333 69:0.5 82:0.16666666666666666 98:0.5 106:1.0 114:0.5 123:1.0 139:1.0 146:1.0 162:1.0 165:0.1 226:1.0 353:0.5 388:1.0 587:1.0 641:1.0 717:0.3333333333333333 1057:1.0 1109:1.0 1522:1.0 1743:1.0 2332:1.0 3098:1.0 3661:1.0 4262:1.0 4555:1.0 4853:1.0 4889:1.0
3 1:0.1111111111111111 5:0.3333333333333333 6:0.043478260869565216 15:0.23076923076923078 17:0.2 23:0.125 34:0.07692307692307693 54:1.0 56:0.3333333333333333 74:1.0 75:0.5 82:0.16666666666666666 105:0.5 123:1.0 135:0.5 147:0.5 169:1.0 219:0.3333333333333333 238:0.125 260:1.0 326:1.0 394:1.0 418:1.0 460:0.5 509:1.0 553:1.0 566:1.0 573:1.0 695:1.0 1083:1.0 1109:1.0 1221:1.0 1317:1.0 1332:1.0 1333:1.0 1692:1.0 1716:1.0 1717:1.0 2564:1.0 2721:1.0 3330:1.0 4275:1.0 4669:1.0 4703:1.0 5093:1.0 5156:1.0
3 17:0.2 25:0.5 138:0.14285714285714285 284:1.0 1332:1.0 4274:1.0 4275:1.0
3 5:0.6666666666666666 6:0.043478260869565216 42:0.5 82:0.16666666666666666 98:0.5 102:0.3333333333333333 150:0.038461538461538464 169:1.0 175:1.0 177:0.5 228:0.5 350:0.038461538461538464 366:1.0 409:1.0 411:0.3333333333333333 443:0.3333333333333333 648:1.0 768:0.5 1421:0.5 1434:1.0 1671:1.0 1719:1.0 1752:1.0 2694:1.0
3 5:0.3333333333333333 6:0.043478260869565216 23:0.125 37:0.09090909090909091 42:0.25 146:1.0 150:0.038461538461538464 165:0.1 169:1.0 191:1.0 347:1.0 350:0.038461538461538464 393:0.25 473:0.6666666666666666 484:1.0 534:1.0 609:1.0 716:1.0 776:1.0 908:1.0 2532:1.0 2614:1.0 2678:1.0 3663:1.0 4571:1.0
3 5:0.6666666666666666 23:0.125 42:0.5 49:0.3333333333333333 56:0.3333333333333333 82:0.3333333333333333 94:1.0 98:0.5 128:0.5 131:0.5 165:0.1 176:1.0 249:0.5 263:1.0 292:1.0 350:0.038461538461538464 366:1.0 367:0.5 373:0.038461538461538464 411:0.3333333333333333 441:1.0 457:1.0 460:0.5 473:0.6666666666666666 477:1.0 767:1.0 776:1.0 829:1.0 911:1.0 1580:1.0 1614:1.0 2054:1.0 2729:1.0 3030:1.0 4599:1.0 6944:1.0
3 1:0.2222222222222222 15:0.07692307692307693 17:0.4 34:0.15384615384615385 35:1.0 37:0.09090909090909091 56:0.3333333333333333 63:0.5 71:1.0 96:0.3333333333333333 97:0.5 143:0.3333333333333333 150:0.07692307692307693 226:1.0 284:1.0 300:1.0 331:1.0 402:1.0 416:0.25 417:1.0 418:1.0 561:1.0 595:1.0 3241:1.0 3998:1.0 4238:1.0 4562:1.0
3 5:0.3333333333333333 6:0.08695652173913043 17:0.2 117:0.03571428571428571 138:0.14285714285714285 146:1.0 595:1.0 1920:1.0 2138:1.0 2384:0.5 4425:1.0 4789:1.0 5055:1.0
3 6:0.08695652173913043 15:0.07692307692307693 17:0.2 23:0.125 30:0.5 34:0.15384615384615385 37:0.09090909090909091 42:0.5 82:0.16666666666666666 97:0.5 98:0.5 105:0.5 135:0.5 145:1.0 169:1.0 175:1.0 180:1.0 191:0.5 211:1.0 286:1.0 328:1.0 340:1.0 367:1.0 385:1.0 389:1.0 411:0.3333333333333333 511:0.5 542:0.5 617:1.0 620:1.0 622:1.0 624:1.0 671:1.0 695:2.0 747:0.5 811:1.0 1123:1.0 1280:1.0 2158:1.0 2219:1.0 2534:1.0 2970:1.0 3072:1.0 3330:1.0 3331:1.0 3671:1.0 3742:1.0 7059:1.0
3 5:0.3333333333333333 6:0.043478260869565216 14:0.07692307692307693 15:0.07692307692307693 16:0.1111111111111111 34:0.07692307692307693 44:1.0 56:0.3333333333333333 96:0.16666666666666666 275:1.0 320:1.0 587:1.0 595:1.0 681:0.2 866:1.0 1387:1.0 1403:1.0 2101:1.0 2478:0.125 2504:1.0 3330:1.0 3353:1.0 3410:1.0 3653:0.5 4498:1.0 5965:1.0 6153:1.0
3 5:0.3333333333333333 6:0.043478260869565216 15:0.07692307692307693 25:0.5 42:0.25 54:1.0 56:0.3333333333333333 73:1.0 75:0.5 98:0.5 185:1.0 245:0.5 320:1.0 367:0.5 399:0.5 423:1.0 543:0.5 717:0.3333333333333333 813:1.0 866:1.0 999:1.0 1139:0.5 1373:1.0 1445:0.3333333333333333 1675:1.0 1785:1.0 2688:1.0 3450:1.0 4376:1.0 4498:1.0 4612:1.0
3 5:0.6666666666666666 6:0.043478260869565216 14:0.07692307692307693 42:0.25 73:1.0 95:1.0 97:0.5 191:1.0 251:0.3333333333333333 305:2.0 328:1.0 350:0.07692307692307693 353:0.5 494:1.0 506:1.0 531:0.5 585:1.0 586:1.0 618:1.0 1017:1.0 1018:1.0 1066:1.0 1389:1.0 1496:1.0 1535:5.0 2786:1.0 4483:1.0 4893:1.0 5137:1.0 5886:1.0
3 6:0.08695652173913043 31:1.0 35:1.0 36:1.0 91:1.0 92:1.0 150:0.038461538461538464 190:1.0 261:0.03571428571428571 275:1.0 359:0.5 496:1.0 785:1.0 911:1.0 1436:1.0 1810:1.0 2059:1.0 3031:1.0 5396:1.0
3 6:0.043478260869565216 14:0.07692307692307693 15:0.07692307692307693 56:0.3333333333333333 73:1.0 150:0.038461538461538464 261:0.03571428571428571 263:1.0 359:0.5 445:1.0 644:1.0 785:1.0 3870:1.0 6410:1.0
3 5:0.3333333333333333 14:0.07692307692307693 34:0.07692307692307693 42:0.25 97:0.5 147:0.5 155:0.06666666666666667 158:1.0 201:0.5 219:0.3333333333333333 220:1.0 261:0.03571428571428571 367:0.5 373:0.038461538461538464 375:0.5 441:1.0 563:1.0 785:1.0 1241:0.3333333333333333 1479:1.0 1564:1.0 1896:1.0 1941:1.0 2342:1.0
3 5:0.3333333333333333 6:0.08695652173913043 34:0.07692307692307693 56:0.3333333333333333 73:1.0 82:0.3333333333333333 114:0.5 128:0.5 146:1.0 155:0.06666666666666667 216:1.0 308:1.0 473:0.3333333333333333 648:1.0 1298:1.0 1430:1.0 1611:1.0 1654:1.0 3006:1.0 3267:1.0 5762:1.0 6078:1.0
3 14:0.07692307692307693 37:0.09090909090909091 56:0.3333333333333333 319:0.0625 375:0.5 566:1.0 587:1.0 1432:1.0 1921:1.0 2330:2.0 2649:1.0
3 5:0.3333333333333333 6:0.043478260869565216 7:0.5 15:0.07692307692307693 17:0.2 34:0.07692307692307693 37:0.09090909090909091 64:0.5 82:0.16666666666666666 97:0.5 128:0.5 135:0.5 165:0.1 181:0.125 220:1.0 223:1.0 275:1.0 300:1.0 347:1.0 373:0.038461538461538464 440:1.0 441:1.0 587:1.0 654:0.14285714285714285 1423:0.5 1471:1.0 1695:1.0 1779:1.0 2519:1.0 2675:1.0 2959:1.0 3391:1.0 5095:1.0
3 5:0.3333333333333333 6:0.043478260869565216 14:0.07692307692307693 17:0.2 45:2.0 56:0.3333333333333333 128:0.5 138:0.14285714285714285 240:1.0 319:0.0625 399:0.5 417:1.0 511:0.5 549:1.0 561:1.0 587:1.0 647:0.5 4185:1.0 4237:1.0
3 1:0.1111111111111111 6:0.043478260869565216 42:0.5 56:0.3333333333333333 96:0.16666666666666666 97:0.5 98:0.5 101:1.0 135:0.5 165:0.1 191:0.5 223:1.0 319:0.0625 443:0.3333333333333333 671:1.0 717:0.3333333333333333 1332:1.0 1333:1.0 1403:1.0 1564:1.0 1926:1.0 2686:1.0 3774:1.0 5158:1.0 6444:1.0
3 23:0.125 34:0.15384615384615385 97:0.5 117:0.03571428571428571 138:0.14285714285714285 165:0.1 181:0.125 190:0.5 531:0.5 1105:1.0 1155:1.0 1667:1.0 1740:0.5 2609:1.0 2610:1.0 2611:1.0 2776:1.0 4059:1.0 4707:1.0 6572:1.0
3 6:0.08695652173913043 7:0.5 14:0.07692307692307693 15:0.07692307692307693 34:0.07692307692307693 42:0.25 56:0.3333333333333333 97:0.5 190:0.5 191:0.5 215:0.4 275:1.0 384:1.0 711:1.0 1256:1.0 2688:1.0 3212:1.0 3353:1.0 4006:1.0 4707:1.0 5686:1.0 6572:1.0
3 5:0.3333333333333333 6:0.043478260869565216 15:0.07692307692307693 31:1.0 34:0.07692307692307693 42:1.25 101:1.0 105:0.5 109:1.0 115:1.0 128:0.5 147:0.5 150:0.038461538461538464 180:1.0 194:1.0 204:1.0 206:1.0 215:0.2 240:1.0 241:1.0 251:0.3333333333333333 373:0.038461538461538464 441:1.0 473:1.3333333333333333 511:0.5 564:1.0 1332:1.0 1569:0.3333333333333333 1670:0.5 1717:1.0 2297:1.0 2691:1.0 2941:1.0 4238:1.0 4241:1.0 4924:1.0 4980:1.0 5226:1.0
3 5:0.3333333333333333 6:0.13043478260869565 7:0.5 17:0.2 31:1.0 42:0.25 56:0.3333333333333333 63:0.5 75:0.5 82:0.16666666666666666 106:1.0 115:1.0 117:0.03571428571428571 146:1.0 147:0.5 149:1.0 150:0.038461538461538464 176:1.0 207:1.0 232:1.0 281:1.0 300:1.0 350:0.038461538461538464 539:1.0 561:1.0 615:0.14285714285714285 1161:1.0 1421:0.5 1423:0.5 1448:1.0 1719:1.0 2229:1.0 2559:0.2 2803:1.0 3584:1.0 3800:1.0 4311:1.0
3 5:0.3333333333333333 6:0.043478260869565216 10:1.0 11:1.0 12:1.0 15:0.07692307692307693 31:1.0 34:0.07692307692307693 42:0.5 64:1.0 75:0.5 97:0.5 150:0.07692307692307693 201:0.5 235:1.0 261:0.03571428571428571 319:0.0625 327:0.16666666666666666 380:1.0 488:0.5 587:1.0 785:1.0 1003:1.0 1104:0.5 1281:1.0 1355:1.0 1440:1.0 1661:0.5 2064:0.5 3448:1.0 4370:1.0 4707:1.0
3 5:1.3333333333333333 7:0.5 30:0.5 31:1.0 42:0.25 88:1.0 97:0.5 106:1.0 108:0.5 131:0.5 143:0.3333333333333333 146:2.0 147:0.5 191:0.5 454:1.0 473:0.3333333333333333 878:1.0 1085:1.0 1268:1.0 1535:1.0 1661:0.5 1667:1.0 2515:1.0 2591:0.3333333333333333 3416:1.0 3556:2.0 4324:1.0 4406:1.0 5225:1.0
3 6:0.17391304347826086 15:0.07692307692307693 23:0.125 31:1.0 56:0.3333333333333333 75:0.5 82:0.5 97:0.5 106:1.0 143:0.3333333333333333 146:1.0 147:0.5 191:1.0 220:1.0 222:0.3333333333333333 254:1.0 261:0.03571428571428571 300:1.0 367:0.5 386:0.5 409:1.0 488:0.5 534:1.0 561:1.0 622:1.0 672:1.0 713:1.0 1332:1.0 1333:1.0 1426:1.0 1546:1.0 1865:1.0 1998:1.0 2317:1.0 2683:1.0 3344:1.0 3870:1.0 4407:1.0
3 5:0.6666666666666666 6:0.08695652173913043 17:0.2 29:1.0 31:1.0 42:0.5 82:0.16666666666666666 97:1.0 106:1.0 115:1.0 150:0.038461538461538464 165:0.1 215:0.2 238:0.125 254:0.5 273:0.3333333333333333 300:1.0 319:0.0625 339:1.0 373:0.038461538461538464 410:1.0 488:0.5 541:1.0 870:1.0 1596:1.0 1667:1.0 2351:1.0 2378:0.3333333333333333 2694:1.0 3182:1.0 3231:1.0 3770:1.0 3884:1.0 5076:1.0 6078:1.0
3 1:0.1111111111111111 6:0.043478260869565216 24:1.0 34:0.15384615384615385 42:0.25 56:0.3333333333333333 73:1.0 82:0.16666666666666666 97:0.5 114:0.5 146:1.0 181:0.125 221:1.0 223:1.0 225:1.0 226:1.0 251:0.3333333333333333 261:0.03571428571428571 272:0.5 300:1.0 320:1.0 399:0.5 405:1.0 406:1.0 543:0.5 654:0.14285714285714285 995:1.0 1032:1.0 1410:1.0 1667:4.0 1910:1.0 1992:1.0 2876:1.0 2923:1.0 2966:1.0 3087:1.0 3106:1.0 6673:1.0 6836:1.0
3 5:0.3333333333333333 6:0.043478260869565216 7:0.5 17:0.2 23:0.125 31:1.0 34:0.3076923076923077 54:1.0 56:0.6666666666666666 128:0.5 222:0.3333333333333333 261:0.03571428571428571 281:1.0 300:1.0 477:1.0 798:1.0 1177:1.0 1332:1.0 1333:1.0 1465:1.0 2113:1.0 2119:2.0 2609:1.0 2876:1.0
3 5:0.6666666666666666 6:0.13043478260869565 15:0.15384615384615385 17:0.2 42:0.25 82:0.16666666666666666 146:1.0 147:0.5 190:1.0 191:0.5 204:1.0 290:1.0 441:1.0 577:1.0 1123:1.0 1569:0.3333333333333333 1904:1.0 2462:1.0 2776:1.0 3208:1.0 3332:1.0 3892:1.0 4155:1.0 4236:1.0 4880:1.0 4980:1.0 5611:1.0 7183:1.0
3 5:0.3333333333333333 6:0.13043478260869565 14:0.07692307692307693 34:0.07692307692307693 51:0.25 56:0.3333333333333333 145:1.0 201:0.5 204:1.0 255:1.0 367:0.5 1780:0.5 2538:1.0 3183:1.0 3416:1.0
3 5:0.3333333333333333 6:0.08695652173913043 14:0.07692307692307693 15:0.07692307692307693 23:0.25 56:0.3333333333333333 82:0.16666666666666666 106:2.0 146:1.0 147:1.0 155:0.06666666666666667 165:0.2 241:1.0 278:1.0 457:1.0 908:1.0 1248:1.0 1298:1.0 1830:1.0 1923:1.0 1992:2.0 2721:1.0 2722:1.0 3910:1.0 4054:1.0 4490:1.0
3 5:0.3333333333333333 6:0.043478260869565216 14:0.07692307692307693 17:0.2 97:1.0 114:0.5 138:0.14285714285714285 165:0.1 232:1.0 275:1.0 290:1.0 491:1.0 647:0.5 724:1.0 927:1.0 988:0.5 1481:1.0 1671:1.0 1888:1.0 2435:1.0 2547:1.0 2626:1.0 4344:1.0 4576:1.0
3 5:0.6666666666666666 15:0.07692307692307693 25:0.5 34:0.15384615384615385 177:0.5 290:1.0 407:1.0 510:1.0 747:0.5 1064:1.0 1191:1.0 1332:1.0 1333:1.0 1578:1.0 1932:1.0 1994:1.0 2959:1.0 3101:1.0 3567:1.0 4567:1.0
3 1:0.1111111111111111 6:0.043478260869565216 15:0.23076923076923078 17:0.2 30:0.5 34:0.15384615384615385 35:1.0 36:1.0 42:0.5 56:0.3333333333333333 96:0.16666666666666666 98:0.5 131:0.5 155:0.06666666666666667 175:1.0 185:1.0 188:1.0 302:1.0 320:1.0 368:1.0 393:0.25 443:0.3333333333333333 496:1.0 526:1.0 800:0.5 857:1.0 1120:1.0 1345:1.0 1349:1.0 1671:1.0 1672:1.0 1708:2.0 1709:2.0 2282:1.0 2828:1.0 4250:1.0 4324:1.0 6250:1.0
3 15:0.07692307692307693 30:0.5 34:0.07692307692307693 42:0.25 44:1.0 82:0.16666666666666666 97:0.5 261:0.03571428571428571 281:1.0 373:0.038461538461538464 743:1.0 1389:1.0 1992:1.0 2539:1.0 2721:1.0 4250:1.0 7234:1.0
3 6:0.17391304347826086 14:0.07692307692307693 15:0.07692307692307693 17:0.2 94:1.0 97:1.0 149:1.0 169:1.0 171:1.0 204:1.0 226:1.0 331:1.0 531:0.5 537:1.0 546:1.0 561:1.0 828:0.5 850:1.0 1154:1.0 1183:0.5 1672:1.0 1681:1.0 1780:0.5 2278:1.0 2468:1.0 2968:1.0 3260:1.0 4327:1.0 6333:2.0
3 6:0.08695652173913043 34:0.15384615384615385 42:0.25 82:0.16666666666666666 150:0.038461538461538464 245:0.5 473:0.3333333333333333 543:0.5 918:1.0 919:1.0 1044:1.0 1256:1.0 1361:1.0 1446:1.0 1569:0.3333333333333333 2041:1.0 2263:0.5 3049:1.0 3410:1.0 3700:1.0
3 5:0.3333333333333333 6:0.08695652173913043 14:0.07692307692307693 23:0.125 26:1.0 42:0.5 54:1.0 97:1.0 101:1.0 191:0.5 219:0.3333333333333333 226:1.0 238:0.125 255:1.0 272:0.5 329:0.5 371:1.0 441:1.0 1426:1.0 1637:1.0 1992:1.0 2996:1.0 3823:1.0 7127:1.0
3 4:0.5 5:0.6666666666666666 6:0.08695652173913043 17:0.2 37:0.18181818181818182 56:0.3333333333333333 75:0.5 98:0.5 138:0.14285714285714285 143:0.3333333333333333 150:0.038461538461538464 246:1.0 307:1.0 327:0.16666666666666666 350:0.038461538461538464 394:1.0 896:1.0 981:1.0 1143:1.0 1166:2.0 1332:1.0 1333:1.0 1664:1.0 2478:0.125 2500:1.0 2567:1.0 3672:1.0 4141:1.0 4979:1.0
3 5:0.3333333333333333 56:0.3333333333333333 117:0.03571428571428571 138:0.14285714285714285 215:0.2 443:0.3333333333333333 461:1.0 1295:1.0 1332:1.0 1333:1.0 2680:1.0 2927:1.0 3101:1.0 3241:1.0 3737:1.0 5027:1.0 6527:1.0
3 1:0.1111111111111111 5:1.0 6:0.13043478260869565 15:0.07692307692307693 34:0.07692307692307693 42:0.25 44:1.0 56:0.3333333333333333 73:1.0 75:0.5 82:0.16666666666666666 97:0.5 98:0.5 132:1.0 165:0.1 190:0.5 197:0.5 204:1.0 206:1.0 211:1.0 215:0.4 367:0.5 399:0.5 412:1.0 478:1.0 563:1.0 1116:1.0 1160:1.0 1177:1.0 1222:1.0 1522:1.0 1596:1.0 1661:0.5 1693:1.0 2688:1.0 2843:1.0 3175:1.0 4177:1.0 4317:1.0 4523:1.0
3 1:0.1111111111111111 4:0.5 6:0.08695652173913043 16:0.1111111111111111 25:0.5 34:0.07692307692307693 56:0.3333333333333333 138:0.14285714285714285 164:0.25 386:0.5 654:0.14285714285714285 716:1.0 717:0.3333333333333333 1222:1.0 2929:1.0
3 5:0.3333333333333333 34:0.07692307692307693 42:0.25 56:0.3333333333333333 97:1.0 101:1.0 128:0.5 191:0.5 261:0.03571428571428571 272:0.5 353:0.5 367:1.0 595:1.0 597:1.0 599:1.0 785:1.0 1241:0.3333333333333333 1332:1.0 1333:1.0 1389:1.0 1410:1.0 2973:1.0 3832:1.0 4158:1.0 4497:1.0
3 6:0.13043478260869565 15:0.07692307692307693 34:0.07692307692307693 42:0.75 56:0.3333333333333333 82:0.16666666666666666 169:1.0 201:0.5 245:0.5 350:0.038461538461538464 439:1.0 441:1.0 496:1.0 511:0.5 693:1.0 843:1.0 892:1.0 927:1.0 1046:1.0 1116:1.0 1174:1.0 1307:1.0 1332:1.0 1333:1.0 1363:1.0 1569:0.3333333333333333 1719:1.0 2018:1.0 2188:1.0 3208:1.0 5310:1.0 5829:1.0
3 5:0.3333333333333333 6:0.17391304347826086 17:0.6 34:0.07692307692307693 42:0.5 44:1.0 56:0.3333333333333333 82:0.5 114:0.5 138:0.14285714285714285 139:1.0 147:0.5 275:1.0 300:1.0 318:1.0 343:1.0 488:0.5 650:1.0 1028:0.5 1044:1.0 1104:1.0 2017:1.0 2141:1.0 2158:1.0 2161:1.0 2162:1.0 2182:1.0 7028:1.0
3 14:0.07692307692307693 15:0.07692307692307693 34:0.07692307692307693 37:0.09090909090909091 73:1.0 165:0.1 240:1.0 290:1.0 297:1.0 298:1.0 399:0.5 418:1.0 449:1.0 473:0.3333333333333333 635:1.0 1332:1.0 1333:1.0 1596:1.0 1719:1.0 1883:1.0 1992:1.0 2071:1.0 2941:1.0 3031:3.0 3829:1.0 4221:1.0 4924:1.0 5226:1.0 5867:1.0
|
750e73d63c7f9b15665bfcfbb93ec15cc3b3a72a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH4/EX4.25/Ex4_25.sce | f92aa60e5161fac979588f7c32c612e2e7164941 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 145 | sce | Ex4_25.sce | clear
//Given
C=5*10**-6
V=100
C1=3*10**-6
//Calculation
q=C*V
Cp=C+C1
pd=q/Cp
//Result
printf("\n P.D across the capacitor is %0.3f V", pd)
|
ba0fa1a96196850979830255f31ba44f767215cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH6/EX6.7/Ex6_7.sce | 95d8b768f012c6774cf91978230b3d2adfd2896b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 531 | sce | Ex6_7.sce |
theta=linspace(0,2*%pi,100)
i=10+10*sin(theta)//expression for the resultant wave
plot2d(theta,i)
xtitle("Wave shape for example 6.7","theta","current")
//calculating average value of the resultant wave
Iavg=integrate('10+10*sin(theta)','theta',0,2*%pi)/(2*%pi)
mprintf("Average value of the resultant current wave=%d A\n",Iavg)
//calculating RMS value of current of the resultant wave
Irms=sqrt(integrate('(10+10*sin(theta))^2','theta',0,2*%pi)/(2*%pi))
mprintf("RMS value of the resultant current wave=%f A",Irms)
|
d2ae527aa831cacc6756b8547ab0c35992ee1b27 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2621/CH2/EX2.11/Ex2_11.sce | 5cc88e58724ada0751fdc8fabf35427b57f094e8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 231 | sce | Ex2_11.sce | // Example 2.11
clc;
clear;
close;
// Given data
format('v',9);
dVout= 20;// change in output voltage in V
dt= 4;// change in time in µs
SR= dVout/dt;// slew rate in V/µs
disp(SR,"The slew rate in V/µs is : ")
|
ede6862113ee94cf2b9950b1d7a7c86370444db2 | 12d276a808c8403c4dd3b13dea1edb8720127311 | /one-back_notouch.sce | d756ea1ed59cdca09d61308f16377ac8ae42d02b | [] | no_license | npytabitha/VOT3 | 85b317ae4c120eb2bda125b28c1ad27243d40eab | 51032662c4a6f0960393aad4ebf9b3289c641155 | refs/heads/develop | 2021-01-10T05:44:31.715364 | 2015-10-01T13:34:47 | 2015-10-01T13:34:47 | 43,233,510 | 0 | 1 | null | 2015-10-02T09:05:14 | 2015-09-27T03:56:10 | Scilab | UTF-8 | Scilab | false | false | 15,854 | sce | one-back_notouch.sce | scenario = "One-Back-Arm"; # This name is recorded in the log file
scenario_type = trials;
response_matching = simple_matching;
response_logging = log_all;
active_buttons = 3;
#button_codes = 1, 2, 3; # These values will be used to code participant responses
#target_button_codes = 0, 0, 2;
button_codes = 0, 0, 2;
target_button_codes = 0, 0, 1;
write_codes = true; # Enables triggering via the parallel port
pulse_width = 10; # Trigger pulses are set to 10 msec in duration
response_port_output = true; # Enables trigger codes for response buttons
default_font_size = 56;
default_font = "Arial";
default_background_color = 0,0,0; #Black#
default_text_color = 255,255,255; #White#
begin;
# Instructions for block
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 3;
picture {
text {font_size = 20; caption = "Heute wirst Du nicht gestreichelt.
Wenn Du bereit bist zu beginnen, druecke bitte die 'Enter' Taste."; };
x = 0;
y = 0;
};
time = 0;
}instructions_notouch;
#500ms fixation at beginning of trial
trial {
trial_duration=500;
trial_type=fixed;
picture {
text {font_size = 56; caption = "+";};
x = 0;
y = 0;
};
time = 0;
}fix;
#Break after 1/3 trials (1 loop)
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 3;
picture {
text {font_size = 20; caption = "Du kannst jetzt eine Pause machen.\n Bitte informiere die Versuchsleiterin, wenn Du weiter machen moechtest.";
};
x = 0;
y = 0;
};
time = 0;
}break_trials;
#List of dummy sounds (2 used at the beginning of each block)
array {
sound { wavefile {filename = "Neutral_TLSM.wav";}; default_port_code = 10; description = "dummy"; } stim;
sound { wavefile { filename = "Neutral_6.wav"; }; };
sound { wavefile { filename = "Neutral_61.wav"; }; };
}soundListD;
#entire sound array
array {
TEMPLATE "declaresounds.tem" {
file;
"Neutral_TKH.wav";
"Neutral_LS.wav";
"Neutral_Edward.wav";
"Neutral_NXR.wav";
"Neutral_46.wav";
"Neutral_SG.wav";
"Neutral_Joyce.wav";
"Neutral_58.wav";
"Neutral_ML.wav";
"Neutral_Elizabeth.wav";
"Neutral_CW.wav";
"Neutral_SH.wav";
"Neutral_Daryl.wav";
"Neutral_Janvin.wav";
"Surprise_Ernest_rot.wav";
"Surprise_TKH_rot.wav";
"Surprise_55_rot.wav";
"Surprise_Madeline_rot.wav";
"Surprise_CKH_rot.wav";
"Surprise_60_rot.wav";
"Surprise_GZ_rot.wav";
"Surprise_GC_rot.wav";
"Surprise_Edward_rot.wav";
"Surprise_MY_rot.wav";
"Surprise_Elizabeth_rot.wav";
"Surprise_NXR_rot.wav";
"Surprise_MSC_rot.wav";
"Surprise_45.wav";
"Surprise_59.wav";
"Surprise_6.wav";
"Surprise_CC.wav";
"Surprise_CW.wav";
"Surprise_Daryl.wav";
"Surprise_Janvin.wav";
"Surprise_Joyce.wav";
"Surprise_LS.wav";
"Surprise_ML.wav";
"Surprise_Rena.wav";
"Surprise_SG.wav";
"Surprise_SH.wav";
"Surprise_TLSM.wav";
"Neutral_42_rot.wav";
"Neutral_55_rot.wav";
"Neutral_59_rot.wav";
"Neutral_CC_rot.wav";
"Neutral_CKH_rot.wav";
"Neutral_DK_rot.wav";
"Neutral_Ernest_rot.wav";
"Neutral_GC_rot.wav";
"Neutral_GZ_rot.wav";
"Neutral_Madeline_rot.wav";
"Neutral_MSC_rot.wav";
"Neutral_MY_rot.wav";
"Neutral_Rena_rot.wav";
"Neutral_ML_rot.wav";
"Neutral_Elizabeth_rot.wav";
"Neutral_SH_rot.wav";
"Neutral_NXR_rot.wav";
"Neutral_CW_rot.wav";
"Neutral_TKH_rot.wav";
"Neutral_Janvin_rot.wav";
"Neutral_58_rot.wav";
"Neutral_Edward_rot.wav";
"Neutral_Daryl_rot.wav";
"Neutral_LS_rot.wav";
"Neutral_46_rot.wav";
"Neutral_SG_rot.wav";
"Neutral_Joyce_rot.wav";
"Neutral_42.wav";
"Neutral_55.wav";
"Neutral_59.wav";
"Neutral_CC.wav";
"Neutral_CKH.wav";
"Neutral_DK.wav";
"Neutral_Ernest.wav";
"Neutral_GC.wav";
"Neutral_GZ.wav";
"Neutral_Madeline.wav";
"Neutral_MSC.wav";
"Neutral_MY.wav";
"Neutral_Rena.wav";
"Surprise_45_rot.wav";
"Surprise_59_rot.wav";
"Surprise_6_rot.wav";
"Surprise_CC_rot.wav";
"Surprise_CW_rot.wav";
"Surprise_Daryl_rot.wav";
"Surprise_Janvin_rot.wav";
"Surprise_Joyce_rot.wav";
"Surprise_LS_rot.wav";
"Surprise_ML_rot.wav";
"Surprise_Rena_rot.wav";
"Surprise_SG_rot.wav";
"Surprise_SH_rot.wav";
"Surprise_TLSM_rot.wav";
"Surprise_CKH.wav";
"Surprise_Ernest.wav";
"Surprise_GZ.wav";
"Surprise_60.wav";
"Surprise_Elizabeth.wav";
"Surprise_Madeline.wav";
"Surprise_GC.wav";
"Surprise_MY.wav";
"Surprise_Edward.wav";
"Surprise_55.wav";
"Surprise_NXR.wav";
"Surprise_MSC.wav";
"Surprise_TKH.wav";
};
}soundList;
#neutral original
array {
TEMPLATE "declaresounds.tem" {
file;
"Neutral_TKH.wav";
"Neutral_LS.wav";
"Neutral_Edward.wav";
"Neutral_NXR.wav";
"Neutral_46.wav";
"Neutral_SG.wav";
"Neutral_Joyce.wav";
"Neutral_58.wav";
"Neutral_ML.wav";
"Neutral_Elizabeth.wav";
"Neutral_CW.wav";
"Neutral_SH.wav";
"Neutral_Daryl.wav";
"Neutral_Janvin.wav";
"Neutral_42.wav";
"Neutral_55.wav";
"Neutral_59.wav";
"Neutral_CC.wav";
"Neutral_CKH.wav";
"Neutral_DK.wav";
"Neutral_Ernest.wav";
"Neutral_GC.wav";
"Neutral_GZ.wav";
"Neutral_Madeline.wav";
"Neutral_MSC.wav";
"Neutral_MY.wav";
"Neutral_Rena.wav";
};
}repeat1;
#neutral_rot
array{
TEMPLATE "declaresounds.tem"{
file;
"Neutral_42_rot.wav";
"Neutral_55_rot.wav";
"Neutral_59_rot.wav";
"Neutral_CC_rot.wav";
"Neutral_CKH_rot.wav";
"Neutral_DK_rot.wav";
"Neutral_Ernest_rot.wav";
"Neutral_GC_rot.wav";
"Neutral_GZ_rot.wav";
"Neutral_Madeline_rot.wav";
"Neutral_MSC_rot.wav";
"Neutral_MY_rot.wav";
"Neutral_Rena_rot.wav";
"Neutral_ML_rot.wav";
"Neutral_Elizabeth_rot.wav";
"Neutral_SH_rot.wav";
"Neutral_NXR_rot.wav";
"Neutral_CW_rot.wav";
"Neutral_TKH_rot.wav";
"Neutral_Janvin_rot.wav";
"Neutral_58_rot.wav";
"Neutral_Edward_rot.wav";
"Neutral_Daryl_rot.wav";
"Neutral_LS_rot.wav";
"Neutral_46_rot.wav";
"Neutral_SG_rot.wav";
"Neutral_Joyce_rot.wav";
};
}repeat2;
#surprise_orig
array{
TEMPLATE "declaresounds.tem"{
file;
"Surprise_45.wav";
"Surprise_59.wav";
"Surprise_6.wav";
"Surprise_CC.wav";
"Surprise_CW.wav";
"Surprise_Daryl.wav";
"Surprise_Janvin.wav";
"Surprise_Joyce.wav";
"Surprise_LS.wav";
"Surprise_ML.wav";
"Surprise_Rena.wav";
"Surprise_SG.wav";
"Surprise_SH.wav";
"Surprise_TLSM.wav";
"Surprise_CKH.wav";
"Surprise_Ernest.wav";
"Surprise_GZ.wav";
"Surprise_60.wav";
"Surprise_Elizabeth.wav";
"Surprise_Madeline.wav";
"Surprise_GC.wav";
"Surprise_MY.wav";
"Surprise_Edward.wav";
"Surprise_55.wav";
"Surprise_NXR.wav";
"Surprise_MSC.wav";
"Surprise_TKH.wav";
};
}repeat3;
#surprise_rot
array{
TEMPLATE "declaresounds.tem"{
file;
"Surprise_Ernest_rot.wav";
"Surprise_TKH_rot.wav";
"Surprise_55_rot.wav";
"Surprise_Madeline_rot.wav";
"Surprise_CKH_rot.wav";
"Surprise_60_rot.wav";
"Surprise_GZ_rot.wav";
"Surprise_GC_rot.wav";
"Surprise_Edward_rot.wav";
"Surprise_MY_rot.wav";
"Surprise_Elizabeth_rot.wav";
"Surprise_NXR_rot.wav";
"Surprise_MSC_rot.wav";
"Surprise_45_rot.wav";
"Surprise_59_rot.wav";
"Surprise_6_rot.wav";
"Surprise_CC_rot.wav";
"Surprise_CW_rot.wav";
"Surprise_Daryl_rot.wav";
"Surprise_Janvin_rot.wav";
"Surprise_Joyce_rot.wav";
"Surprise_LS_rot.wav";
"Surprise_ML_rot.wav";
"Surprise_Rena_rot.wav";
"Surprise_SG_rot.wav";
"Surprise_SH_rot.wav";
"Surprise_TLSM_rot.wav";
};
}repeat4;
#Each trial has fixation cross and sound, and lasts as long as each sound
picture {
text {
font_size = 56;
caption = "+";
};
x = 0;
y = 0;
}trialFix;
trial {
trial_duration = stimuli_length;
trial_type = fixed;
picture trialFix;
target_button = 3;
stimulus_event {
sound stim;
code = "repeat";
port_code = 11;
}eventR;
}trialR;
trial {
trial_duration = stimuli_length;
trial_type = fixed;
picture trialFix;
target_button = 3;
stimulus_event {
sound stim;
code = "dummy";
port_code = 10;
}event1;
}trial1;
#inter-trial interval
trial {
trial_type = fixed;
trial_duration = 11;
picture {} default;
target_button = 3;
}ITI;
#-------------------------------------------------------------------------
begin_pcl;
output_port my_port = output_port_manager.get_port(1);
#arrays for port codes for stimuli
array<int> soundPortCodes[108] = {
100,
100,
100,
100,
100,
100,
100,
100,
100,
100,
100,
100,
100,
100,
201,
201,
201,
201,
201,
201,
201,
201,
201,
201,
201,
201,
201,
101,
101,
101,
101,
101,
101,
101,
101,
101,
101,
101,
101,
101,
101,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
200,
100,
100,
100,
100,
100,
100,
100,
100,
100,
100,
100,
100,
100,
201,
201,
201,
201,
201,
201,
201,
201,
201,
201,
201,
201,
201,
201,
101,
101,
101,
101,
101,
101,
101,
101,
101,
101,
101,
101,
101
};
sub presentIndividualSound(int soundIndex)
begin;
fix.present();
ITI.set_duration(random(1000, 3000));
array<int> buttonCodes[3] = {0, 0, 2};
response_manager.set_target_button_codes(buttonCodes);
soundList[soundIndex].get_wavefile().load();
event1.set_stimulus(soundList[soundIndex]);
event1.set_port_code(soundPortCodes[soundIndex]);
event1.set_event_code(soundList[soundIndex].description());
event1.set_target_button(0);
event1.set_response_active(true);
trial1.present();
response_manager.set_target_button_codes(buttonCodes);
ITI.present();
end;
sub presentRepeatedSound(int soundIndex)
begin;
fix.present();
ITI.set_duration(random(1000, 3000));
array<int> repeatedCodes[3] = {0, 0, 1};
response_manager.set_target_button_codes(repeatedCodes);
eventR.set_stimulus(soundList[soundIndex]);
eventR.set_port_code(11);
trialR.present();
response_manager.set_target_button_codes(repeatedCodes);
ITI.present();
end;
# checks if the next sound or the last 2 sounds are paired-rotated
#
# @param
# prev: name of the prev sound that was played
# curr: name of the current sound that has to be played
#
# @return
# true if any of the above mentioned conditions are fulfilled
sub bool isNextSoundRotated(string prev, string curr)
begin;
array<string> prevArray[1];
array<string> currArray[1];
prev.split(".wav", prevArray);
curr.split(".wav", currArray);
string prevPath = prevArray[1];
string currPath = currArray[1];
# term.print_line("-------------------------");
# term.print_line(prevPath);
# term.print_line(currPath);
# term.print_line("-------------------------");
if prevPath.find(currPath) != 0 || currPath.find(prevPath) != 0 then
return true;
end;
return false;
end;
# this subroutine goes through the repeated sounds array and checks if the array
# of repeated sounds contains this sound to be checked
#
# @param
# repeatedSounds: list containing sounds to be repeated
# soundToBeChecked: sound that has to be checked if it is repeated
#
# @return
# true - if the sound has to be repeated
# false - if the sound does not have to be repeated
sub bool isRepeat(array<sound, 1> repeatedSounds, sound soundToBeChecked)
begin;
loop int i = 1 until i > repeatedSounds.count()
begin;
string check = soundToBeChecked.get_wavefile().filename();
string repeat = repeatedSounds[i].get_wavefile().filename();
if check == repeat then
return true;
end;
i = i + 1;
end;
return false;
end;
# this sub routine creates a list of sounds to be repeated
# it pulls sounds from the 4 different lists and performs shuffling to introduce
# random selection on the repeated sounds
# @return
# an array of sounds to be repeated
sub array<sound, 1> getShuffledRepeated
begin;
array<sound> firstSet[1];
array<sound> secSet[1];
array<sound> thirdSet[1];
array<sound> fourthSet[1];
firstSet.assign(repeat1);
secSet.assign(repeat2);
thirdSet.assign(repeat3);
fourthSet.assign(repeat4);
firstSet.shuffle();
secSet.shuffle();
thirdSet.shuffle();
fourthSet.shuffle();
firstSet.resize(6);
secSet.resize(6);
thirdSet.resize(6);
fourthSet.resize(6);
firstSet.append(secSet);
firstSet.append(thirdSet);
firstSet.append(fourthSet);
return firstSet;
end;
# sub routine that does the checking and ensures that the next sound to be played
# is not a rotated sound
#
# example:
# soundsToBePlayed = ("1.wav", "1_rot.wav", "2.wav", "2_rot.wav")
# currently playing the 2nd sound
# since it is a rotated sound, array will be shuffled from the 2nd element to the last
#
# @param
# list: list containing shuffled sound indexes to the soundList
# pointer: current sound number that is going to be played
#
# @return
# a new array that is shuffled from the index if there is a rotated sound
# next
sub array<int, 1> ensureNextNotRotated(array<int, 1> list, int pointer)
begin;
array<int> copiedList[1];
copiedList.assign(list);
string prevSoundName = soundList[copiedList[pointer - 1]].get_wavefile().filename();
string currSoundName = soundList[copiedList[pointer]].get_wavefile().filename();
string secLastSoundName = soundList[copiedList[list.count() - 1]].get_wavefile().filename();
string lastSoundName = soundList[copiedList[copiedList.count()]].get_wavefile().filename();
loop until
isNextSoundRotated(prevSoundName, currSoundName) == false && isNextSoundRotated(secLastSoundName, lastSoundName) == false
begin;
copiedList.shuffle(pointer, list.count());
prevSoundName = soundList[copiedList[pointer - 1]].get_wavefile().filename();
currSoundName = soundList[copiedList[pointer]].get_wavefile().filename();
secLastSoundName = soundList[copiedList[list.count() - 1]].get_wavefile().filename();
lastSoundName = soundList[copiedList[copiedList.count()]].get_wavefile().filename();
end;
return copiedList;
end;
# sub routine for looping through the 108 sounds once
# @param
# repeatedSounds: an array repeated sounds with "sound" type
# shuffledList: contains a shuffled int array
sub playSounds(array<sound, 1> repeatedSounds, array<int, 1> shuffledList)
begin;
int count = shuffledList.count();
int pointer = 1;
loop until pointer > count
begin;
term.print("pointer: "); term.print_line(pointer);
# only needs to check if the next is rotated starting from the 2nd sound onwards
if pointer > 1 then
shuffledList = ensureNextNotRotated(shuffledList, pointer);
end;
sound currentSound = soundList[shuffledList[pointer]];
presentIndividualSound(shuffledList[pointer]);
if isRepeat(repeatedSounds, currentSound) then
presentRepeatedSound(shuffledList[pointer]);
end;
soundList[shuffledList[pointer]].get_wavefile().unload();
pointer = pointer + 1;
end;
end;
# sub routine for presenting the dummy sounds
sub presentDummySounds
begin;
soundListD.shuffle();
loop int d = 1 until d > 2
begin;
fix.present();
soundListD[d].get_wavefile().load();
event1.set_stimulus(soundListD[d]);
event1.set_event_code("dummy");
ITI.set_duration(random(1000, 3000));
trial1.present();
ITI.present();
soundListD[d].get_wavefile().unload();
d = d + 1;
end;
end;
sub printRepeatList(array<sound, 1> repeatedList)
begin;
loop int i = 1 until i > repeatedList.count()
begin;
string repeatedSound = repeatedList[i].get_wavefile().filename();
term.print_line(repeatedSound);
i = i + 1;
end;
end;
# this sub routine does the main loop of each block
sub mainLoop
begin;
presentDummySounds();
loop int block = 1 until block > 3
begin;
#shuffle sound list array reference
array<int> shuffledList[108];
shuffledList.fill(1, 108, 1, 1);
shuffledList.shuffle();
array<sound> repeatedSounds[] = getShuffledRepeated();
printRepeatList(repeatedSounds);
presentDummySounds();
playSounds(repeatedSounds, shuffledList); # this is where the 108 sounds are played
break_trials.present();
block = block + 1;
end;
end;
mainLoop();
|
e31391e70338efd1504de1b190ebe9e469efdf46 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1061/CH8/EX8.5/Ex8_5.sce | 968b179a2be2e4a391d057b69756cbae4b9b57ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 324 | sce | Ex8_5.sce | //Ex:8.5
clc;
clear;
close;
r=45*10^-6;// radius in m
NA=0.3;// numerical aperture
rd=40;// radiance
A=3.14*(r*100)^2;// area in cm^2
pe=3.14*(1-r)*A*rd*NA^2;// optical power coupled into the fiber
Pe=pe*10^4;// optical power coupled into the fiber uW
printf("The optical power coupled into the fiber =%f uW", Pe); |
b0b657f5f2371adad8167f3d90fcf42ba60ac1e2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3523/CH3/EX3.7.4/Ex3_4.sce | 0e20dd0281ec08752cd254a3ae33dc9b3b19d537 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 198 | sce | Ex3_4.sce | // Example 4// Ch 3
clc;
clear;
close;
// given data
v = 1.6*10^-19; // avg kinetic energy in j
k = 1.38*10^-23 //boltzmann constant in J/K
T = (2*v)/(3*k);
printf("temperature %e K",T)
|
5d43017ce7b2413615f15939313f6d272ba8c74e | a5de878687ee2e72db865481785dafbeda373e2a | /trunck/OpenPR-0.0.2/macros/createkernel.sci | a9e050c1ba75530eb6565a38ad10c25b359c3cc3 | [
"BSD-3-Clause"
] | permissive | Augertron/OpenPR | 8f43102fd5811d26301ef75e0a1f2b6ba9cbdb73 | e2b1ce89f020c1b25df8ac5d93f6a0014ed4f714 | refs/heads/master | 2020-05-15T09:31:08.385577 | 2011-03-21T02:51:40 | 2011-03-21T02:51:40 | 182,178,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,827 | sci | createkernel.sci | ///////////////////////////////////////////////////////////////////////////////
// Author: Jia Wu
// Version: 0.1
// Date: Nov 2009
// Description: Kernel Function
//
// Copyright (C) 2009 OpenPR
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of OpenPR nor the names of its
// contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL HOLDER AND CONTRIBUTORS BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// Input:
// x - dim*numx data matrix. Each column is a data point.
// y - dim*numy data matrix. Each column is a data point.
// param - A struct variable with the following fields:
// typ - Gaussian: exp(-|x-y|^2/2t^2)
// Polynomial: (c*x'*y+r)^d
// Linear: x'*y
// Sigmoid: tanh(c*x'*y+r)
// t - kernel parameter
// c - kernel parameter
// r - kernel parameter
// d - kernel parameter
//
// Output:
// K - numx*numy kernel matrix.
///////////////////////////////////////////////////////////////////////////////
function K = createkernel(x, y, param)
if ~isstruct(param),
error('param should be a struct variable.');
end
if isempty(y),
y = x;
end
select param.typ
case 'Gaussian' then
if isempty(param.t),
param.t = 1;
end
r = size(x, 2);
c = size(y, 2);
K = zeros(r, c);
for i = 1:r,
for j = 1:c,
K(i, j) = norm(x(:,i)-y(:,j));
end
end
K = exp(-K.^2/(2*param.t^2));
case 'Polynomial' then
if isempty(param.c)
param.c = 1;
end
if isempty(param.r)
param.r = 0;
end
if isempty(param.d)
param.d = 2;
end
K = (param.c*(x'*y)+param.r).^param.d;
case 'Linear' then
K = x'*y;
case 'Sigmoid' then
if isempty(param.c)
param.c = 1;
end
if isempty(param.r)
param.r = 0;
end
K = (param.c*x'*y+param.r);
else
K = [];
error('No kernel type assigned, or wrong kernel type.');
end
endfunction
|
55a9b0dec99d91280d249f6de1e9ac47943d6f0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3050/CH5/EX5.1/Ex5_1.sce | 2ea988a6dc4f75a7a24dccc70c5400a5c3a78849 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | sce | Ex5_1.sce | //calculating VI
//Example 5.1
clc
clear
L=674//viscosity of low viscosity index oil
H=314//viscosity of high viscosity index oil
U=464//viscosity of test oil in S
VI=(L-U)*100/(L-H)//viscosity index
printf('Thus VI of the oil sample under test =%2.2f',VI)
|
9fc5136738fc42c02b9b02616814b4e62bb7cbfb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2297/CH6/EX6.3/Ex6_3.sce | 19acbd9b752bb7d1276b9745caadf07fd5b4b516 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,044 | sce | Ex6_3.sce | //Example 6.3// spped ,torque and efficiency
clc;
clear;
close;
format('v',6)
v=200;//voltage in volts
r=100;//resistance in ohms
ish=v/r;//shunt current in amperes
i=4;//current in amperes
nla=i-ish;//no load armature current in amperes
w=8;//powerin kW
ifl=(w*10^3)/v;//full load current in amperes
fla=ifl-ish;//full load armature current in amperes
r1=0.6;//internal resistance in ohms
ebo=(v-(ish*r1));//voltage in volts
eb=(v-(fla*r1));//voltage in volts
no=700;//number of rpm
n=no*(eb/ebo);//number of rpm
ta=((eb*fla*60)/(2*n));//armature torque in N-m
nlpi=v*i;//no load power input in watts
cl=(ish^2*r1);//copper losses in watts
cl=nlpi-cl;//total copper lossses in Watts
flacl=(fla^2*r1);//full load armmature copper losses in Watts
tfll=flacl+cl;//total full load losses in Watts
flo=(w*10^3)-tfll;//full load output in Watts
ef=((flo)/(w*10^3))*100;//efficiency
disp(n,"speed is,(rpm)=")
disp(ta,"armature torque is, (N-m)=")
disp(ef,"full load motor efficiency is ,(%)=")
//armature torque is calculated wrong in the textbook
|
cf7c1edafed66855c7f4aa99f8d53b0a67505f39 | f04d3d47f893de08cd99a31b4870112915b80d5b | /Datasets/segment/data5.tst | 4bdca3b60e435b250d7353183581c3f7909cc0e6 | [] | no_license | MesumRaza/MyWorkInPython | f5364b8514943e44c7200123653da9f4551251b1 | bd8c9b3ca2fb02ae6d2b626054fa3cd32c28b330 | refs/heads/master | 2021-08-19T21:46:41.412995 | 2017-11-27T13:37:52 | 2017-11-27T13:37:52 | 111,728,604 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 37,105 | tst | data5.tst | 0.0671937 0.329167 0 0 0 0.0361217 0.000377198 0.0149068 0.000160295 0.019623 0.00405187 0.0456554 0.00701481 0.720149 0.261176 0.485769 0.0456554 0.926146 0.147709class2
0.466403 0.75 0 0 0 0.106464 0.00297357 0.11677 0.00247396 0.41544 0.381686 0.498527 0.359314 0.468284 0.628235 0.149905 0.498527 0.31901 0.167396class5
0.0158103 0.3375 0 0 0 0.0456274 0.000492972 0.0484472 0.000921699 0.13039 0.136953 0.157585 0.0950896 0.837687 0.292941 0.314991 0.157585 0.42886 0.251127class0
0.770751 0.7125 0 0 0 0.0399239 0.000436951 0.0136646 0.000269831 0.138652 0.123177 0.120029 0.173032 0.682836 0.0752941 0.823529 0.163476 0.314897 0.892425class6
0.774704 0.604167 0 0 0 0.0323194 0.00049475 0.0459627 0.00122995 0.117996 0.0980551 0.103093 0.152767 0.658582 0.0882353 0.827324 0.14433 0.384638 0.907851class6
0.770751 0.370833 0 0 0 0.249049 0.0840479 0.129193 0.0496809 0.0568035 0.0340357 0.0883652 0.0452065 0.658582 0.296471 0.491461 0.0883652 0.738034 0.126632class2
0.695652 0.5 0 0 0 0.0152091 0.000433218 0.0173913 0.000149609 0.0415698 0.0551053 0.0441826 0.025721 0.914179 0.154118 0.461101 0.0500736 0.515873 0.375937class0
0.177866 0.5 0 0 0 0.00950571 6.34888e-05 0.0397516 0.0013358 0.00981151 0.00567261 0.0184094 0.00467654 0.802239 0.175294 0.540797 0.0184094 0.77037 0.166676class4
0.964427 0.6875 0 0 0 0.0342206 0.00052071 0.0223602 0.000402339 0.128841 0.110211 0.112666 0.163679 0.664179 0.0847059 0.827324 0.154639 0.35207 0.90259class6
0.731225 0.00416667 0 0 0 0.0152091 0.000274438 0.0521739 0.00141841 0.0436354 0.028363 0.0751105 0.0249415 0.714552 0.292941 0.440228 0.0751105 0.687302 0.165562class4
0.916996 0.616667 0 0 0 0.0855513 0.000526583 0.0285714 0.00113543 0.0462174 0.0372771 0.0670103 0.0327358 0.757463 0.242353 0.478178 0.0670103 0.541667 0.175389class3
0.628458 0.0791667 0 0 0 0.00760452 0.000274438 0.0136645 0.000441177 0.775368 0.712318 0.854934 0.750585 0.151119 0.696471 0.362429 0.854934 0.24285 0.107255class1
0.592885 0.55 0 0 0 0.013308 6.34888e-05 0.0111801 2.40441e-05 0.0395043 0.0551053 0.0427099 0.0210444 0.929104 0.156471 0.442125 0.0500736 0.60119 0.377268class0
0.549407 0.0208333 0 0 0 0.0171103 0.000347319 0.0198758 0.000277845 0.779499 0.722853 0.868925 0.738114 0.19403 0.744706 0.240987 0.868925 0.244021 0.12595class1
0.391304 0.470833 0 0 0 0.00950571 6.34888e-05 0.0223602 0.000320591 0.0493158 0.0599676 0.0581738 0.0296181 0.891791 0.185882 0.432638 0.0596465 0.531173 0.316804class0
0.936759 0.3625 0 0 0 0.0456274 0.00129965 0.0285714 0.000430127 0.368448 0.34684 0.428571 0.325019 0.567164 0.507059 0.244782 0.428571 0.28511 0.170969class3
0.205534 0.779167 0 0 0 0.0589354 0.00187041 0.114286 0.00115479 0.360186 0.332253 0.425626 0.317225 0.526119 0.530588 0.248577 0.425626 0.299707 0.163105class5
0.695652 0.491667 0 0 0 0.0152091 0.000253955 0.0248447 0.000213727 0.0446682 0.0583468 0.0493373 0.0265004 0.914179 0.164706 0.444023 0.0544919 0.541887 0.35782class0
0.339921 0.770833 0 0.333333 0 0.0456273 0.000876487 0.0496894 0.00120382 0.429383 0.401135 0.501473 0.379579 0.501866 0.578824 0.195446 0.501473 0.287526 0.167114class5
0.806324 0.15 0 0 0 0.0418251 0.000612481 0.0347826 0.000598435 0.863413 0.832253 0.926362 0.825409 0.343284 0.637647 0.26186 0.926362 0.18354 0.135023class1
0.802372 0.604167 0 0 0 0.0171103 0.000281215 0.0447205 0.000402338 0.165247 0.126418 0.16863 0.198753 0.51306 0.187059 0.815939 0.187776 0.389034 0.992017class6
0.628458 0.4125 0 0 0 0.0285171 0.000696986 0.00993788 0.000196321 0.220501 0.198541 0.260677 0.198753 0.61194 0.376471 0.409867 0.260677 0.307444 0.143861class4
0.948617 0.270833 0 0 0 0.0285171 0.000212877 0.0298137 0.000512945 0.627937 0.54376 0.77246 0.554949 0.0522388 0.972941 0.0170778 0.77246 0.360194 0.140373class1
0.343874 0.433333 0 0 0 0.0570342 0.00183744 0.0931677 0.0030376 0.153628 0.155592 0.185567 0.117693 0.798507 0.321176 0.309298 0.185567 0.397362 0.239165class0
0.6917 0.925 0 0.333333 0 0.0494296 0.00115786 0.0583851 0.00137214 0.0870127 0.0753647 0.0552283 0.131723 0.725746 0 0.901328 0.124448 0.554881 0.830644class6
0.197628 0.416667 0 0 0 0.555133 0.0165807 0.0099379 0.000248328 0.2378 0.221232 0.279823 0.208885 0.643657 0.389412 0.356736 0.279823 0.290355 0.174332class3
0.0711462 0.0708333 0 0 0 0.039924 0.00128869 0.0248447 0.000855744 0.777434 0.700972 0.869661 0.752143 0.0578359 0.757647 0.358634 0.869661 0.267544 0.10378class1
0.924901 0.320833 0 0 0 0.0209125 0.000242751 0.021118 0.000237772 0.0193648 0.00324149 0.0427099 0.0101325 0.716418 0.248235 0.510436 0.0427099 0.938492 0.130044class2
0.782609 0.370833 0 0 0 0.0817491 0.00145277 0.0546584 0.00434935 0.0423444 0.0202593 0.0765832 0.0272798 0.66791 0.305882 0.466793 0.0765832 0.773815 0.137313class2
0.225296 0.425 0 0 0 0.117871 0.00123345 0.0161491 0.000281089 0.145365 0.123177 0.188513 0.120811 0.634328 0.372941 0.392789 0.188513 0.414807 0.154194class4
0.177866 0.320833 0 0 0 0.0513308 0.00137808 0.0347826 0.000919027 0.0229796 0.00486224 0.05081 0.0109119 0.701493 0.270588 0.489564 0.05081 0.929574 0.138942class2
0.134387 0.741667 0 0 0 0.0874524 0.00289807 0.100621 0.0110844 0.222566 0.211507 0.255523 0.197973 0.686567 0.342353 0.388994 0.255523 0.262981 0.171564class5
0.652174 0.879167 0 0 0 0.053232 0.000841411 0.026087 0.000449828 0.07307 0.0632091 0.0441826 0.113016 0.742537 0.0105882 0.867173 0.106775 0.58766 0.825071class6
0.312253 0.720833 0 0 0 0.117871 0.0119508 0.0931677 0.00422378 0.122902 0.0988655 0.113402 0.155885 0.628731 0.115294 0.814042 0.147275 0.398353 0.934828class6
0.952569 0.570833 0 0 0 0 0 0 0 0 0 0 0 0.833955 0.131765 0.578748 0 0 0.511054class4
0.731225 0.675 0 0 0 0.0494296 0.000836559 0.047205 0.00143197 0.119546 0.0988655 0.103093 0.156664 0.652985 0.0811765 0.844402 0.148012 0.396433 0.902673class6
0.29249 0.225 0 0 0 0.0855513 0.00111983 0.0347826 0.000674385 0.40253 0.367909 0.481591 0.35152 0.466418 0.605882 0.187856 0.481591 0.314783 0.16226class3
0.675889 0.0833333 0 0 0 0.0247148 0.000422012 0.0149068 0.000512945 0.950942 0.953809 0.963917 0.93297 0.550373 0.418824 0.404175 0.963917 0.10071 0.133073class1
0.735178 0.3125 0 0 0 0.0361217 0.00107172 0.068323 0.00183379 0.0467338 0.0340357 0.0721649 0.0319563 0.731343 0.264706 0.468691 0.0721649 0.594226 0.16615class4
0.0988142 0.333333 0 0.333333 0 0.0684411 0.00219596 0.0571429 0.00156021 0.137619 0.144246 0.162739 0.104443 0.835821 0.284706 0.330171 0.162739 0.394157 0.250464class0
0.624506 0.704167 0 0.333333 0 0.053232 0.000881373 0.0732919 0.00244985 0.148206 0.132091 0.120029 0.193297 0.675373 0.0317647 0.901328 0.182621 0.358862 0.865938class6
0.245059 0.0916667 0 0 0 0.0209125 0.000332381 0.016149 4.54171e-05 0.776143 0.713128 0.874816 0.731099 0.151119 0.788235 0.214421 0.874816 0.25913 0.12654class1
0.391304 0.433333 0 0.333333 0 0.026616 0.000164324 0.0161491 0.000237772 0.0191066 0.00243112 0.0412371 0.0116914 0.712687 0.242353 0.523719 0.0412371 0.954365 0.121261class2
0.498024 0.458333 0 0 0 0.0570342 0.000806682 0.0447205 0.00176325 0.161115 0.158023 0.199558 0.123149 0.761194 0.354118 0.294118 0.199558 0.415524 0.218821class0
0.359684 0.145833 0 0 0 0.0209126 0.000242752 0.0248447 0.000726674 0.749548 0.684765 0.854197 0.699922 0.147388 0.810588 0.182163 0.854197 0.271501 0.129825class1
0.881423 0.258333 0 0 0 0.0513308 0.00128845 0.0521739 0.000769418 0.0405371 0.0170178 0.0706922 0.0311769 0.658582 0.285882 0.508539 0.0706922 0.78993 0.115591class2
0.881423 0.745833 0 0 0 0.0988593 0.00215395 0.0670808 0.00133441 0.33101 0.309562 0.388807 0.289945 0.580224 0.487059 0.263757 0.388807 0.295621 0.17094class5
0.944664 0.266667 0 0 0 1 0.756024 0.228571 0.0714811 0.265169 0.21718 0.335788 0.236165 0.41791 0.532941 0.354839 0.335788 0.464912 0.127586class2
0.454545 0.754167 0 0.333333 0 0.207224 0.00284742 0.0968944 0.00220894 0.397883 0.367099 0.477909 0.342167 0.494403 0.609412 0.1537 0.477909 0.324017 0.171141class5
0.44664 0.720833 0 0 0 0.0247149 0.000332383 0.209938 0.0208838 0.217403 0.207455 0.24595 0.196415 0.695896 0.32 0.41556 0.24595 0.232343 0.148379class5
0.16996 0.629167 0 0 0 0.0304182 0.000459224 0.0434783 0.000978656 0.170927 0.142626 0.159794 0.209665 0.583955 0.118824 0.85389 0.198085 0.347032 0.940388class6
0.897233 0.466667 0 0 0 0.00570343 7.84275e-05 0.00993788 0.000149609 0.00490576 0 0.0132548 0.000779422 0.798507 0.172941 0.548387 0.0132548 1 0.154604class2
0.316206 0.479167 0 0 0.5 0.0665399 0.00113906 0.0236025 0.000205712 0.0206558 0.00405187 0.0434462 0.0124708 0.712687 0.245882 0.518027 0.0434462 0.935706 0.126762class2
0.810277 0.925 0 0 0 0.0475285 0.00155367 0.0385093 0.000597087 0.186935 0.159643 0.166421 0.234606 0.585821 0.0776471 0.918406 0.221649 0.345755 0.912177class6
0.15415 0.35 0 0 0.5 0.0437262 0.00158722 0.0360248 0.000878953 0.0322747 0.00729336 0.0611193 0.025721 0.651119 0.277647 0.529412 0.0611193 0.907099 0.1032class2
0.735178 0.629167 0 0 0 0.0513308 0.001154 0.26087 0.0527372 0.301317 0.268233 0.35567 0.275136 0.509328 0.463529 0.373814 0.35567 0.300182 0.10954class5
0.0513834 0.229167 0 0 0 0.0532319 0.00101582 0.0335404 0.000729343 0.130132 0.135332 0.159057 0.0943102 0.828358 0.301176 0.311195 0.159057 0.437855 0.247609class0
0.853755 0.4625 0 0 0 0.0114068 0.000134446 0.0111801 0.000216399 0.041828 0.0526742 0.0486009 0.0241621 0.895522 0.174118 0.447818 0.05081 0.551808 0.334539class0
0.162055 0.191667 0 0 0 0.0475286 0.000983775 0.0223602 0.000263392 0.458043 0.433549 0.52651 0.408418 0.518657 0.568235 0.195446 0.52651 0.266776 0.170141class3
0.743083 0.554167 0 0 0 0 0 0 0 0 0 0 0 0.833955 0.131765 0.578748 0 0 0.511054class4
0.573123 0.945833 0 0 0 0.0703422 0.000601277 0.0596273 0.00134648 0.123935 0.1094 0.10972 0.152767 0.69403 0.0929412 0.783681 0.14433 0.315256 0.903468class6
0.300395 0.725 0 0 0 0.10076 0.00772695 0.13913 0.023168 0.226956 0.213128 0.262887 0.201871 0.666045 0.357647 0.385199 0.262887 0.27036 0.16098class5
0.0474308 0.383333 0 0 0 0.0475285 0.000601276 0.0509317 0.00155219 0.112574 0.128849 0.126657 0.0818394 0.910448 0.225882 0.349146 0.128866 0.398903 0.306374class0
0.960474 0.283333 0 0 0 0.0190114 0.000119508 0.0236024 0.00033395 0.623548 0.536467 0.764359 0.557288 0.0335821 0.954118 0.0664137 0.764359 0.362172 0.13473class1
0.0711462 0.329167 0 0 0 0.0475285 0.00190093 0.0248447 0.00152815 0.0237542 0.00648298 0.0522828 0.0101325 0.70709 0.274118 0.478178 0.0522828 0.904321 0.147414class2
0.335968 0.520833 0 0 0 0.13308 0.00422849 0.047205 0.00172495 0.0849471 0.0486224 0.138439 0.0631333 0.55597 0.408235 0.41556 0.138439 0.695755 0.130137class2
0.865613 0.104167 0 0 0 0.0323193 0.000807146 0.0236025 0.000616147 0.794991 0.735008 0.877761 0.763835 0.166045 0.716471 0.314991 0.877761 0.239085 0.114483class1
0.083004 0.204167 0 0 0 0.0171103 0.000302505 0.0285714 0.000526303 0.13891 0.141005 0.170839 0.102884 0.804104 0.317647 0.309298 0.170839 0.430484 0.234045class0
0.766798 0.45 0 0 0.5 0.123574 0.00141675 0.0273292 0.000657016 0.0601601 0.0429498 0.0905744 0.0444271 0.695896 0.291765 0.461101 0.0905744 0.589565 0.151338class4
0.055336 0.741667 0 0 0 0.0513308 0.000929922 0.0447205 0.00208384 0.223857 0.206645 0.267305 0.194076 0.643657 0.392941 0.351044 0.267305 0.315363 0.168919class5
0.853755 0.975 0 0.333333 0.5 0.108365 0.00304181 0.0484472 0.000896437 0.067906 0.054295 0.0471281 0.102884 0.718284 0.0482353 0.83112 0.0972018 0.572767 0.858473class6
0.667984 0.104167 0 0 0 0.0380228 0.000343588 0.0409938 0.00104994 0.718306 0.65316 0.829897 0.66173 0.154851 0.836471 0.132827 0.829897 0.284654 0.136289class1
0.284585 0.7625 0 0 0 0.110266 0.00235442 0.103106 0.00242081 0.423703 0.389789 0.504418 0.370226 0.464552 0.618824 0.16888 0.504418 0.309253 0.165131class5
0.482213 0.2375 0 0 0 0.0323194 0.000578929 0.0161491 0.00041414 0.748515 0.687196 0.837261 0.712393 0.171642 0.734118 0.280835 0.837261 0.25416 0.119356class1
0.936759 0.629167 0 0.666667 0 0.0323194 0.000718274 0.0596273 0.000526785 0.132455 0.115073 0.114875 0.167576 0.671642 0.0788235 0.829222 0.158321 0.34003 0.895736class6
0.142292 0.0583333 0 0 0 0.0456273 0.000736396 0.0223602 0.000548295 0.878647 0.833874 0.942563 0.852689 0.244403 0.645882 0.349146 0.942563 0.196093 0.113989class1
0.142292 0.641667 0 0 0 0.0817491 0.0081751 0.367702 0.0172371 0.249677 0.224473 0.284242 0.236945 0.580224 0.356471 0.474383 0.284242 0.273647 0.0963665class5
0.3083 0.3875 0 0.333333 0 0.0323194 0.000377198 0.0335404 0.000729346 0.455203 0.435981 0.516937 0.407638 0.55597 0.535294 0.210626 0.516937 0.254697 0.173981class3
0.786561 0.995833 0 0 0 0.0779468 0.00143261 0.0322981 0.000739795 0.0642912 0.047812 0.0486009 0.0966485 0.699627 0.0717647 0.812144 0.0913108 0.56339 0.879203class6
0.932806 0.525 0 0 0 0.306084 0.00872718 0.0583851 0.00112178 0.257423 0.254457 0.28056 0.235386 0.731343 0.303529 0.406072 0.28056 0.214456 0.185205class3
0.525692 0.733333 0 0 0 0.0646388 0.00152801 0.047205 0.00128736 0.413891 0.384117 0.491163 0.360094 0.496269 0.6 0.166983 0.491163 0.307458 0.169675class5
0.636364 0.745833 0 0 0 0.104563 0.00107172 0.136646 0.00376404 0.39969 0.371961 0.463918 0.357755 0.514925 0.534118 0.254269 0.463918 0.279561 0.156478class5
0.735178 0.2875 0 0 0 0.0456274 0.000717049 0.0298137 0.000512944 0.282468 0.275527 0.315906 0.253313 0.695896 0.358824 0.352941 0.315906 0.24473 0.184915class3
0.928854 0.7625 0 0 0 0.0912547 0.00194832 0.0546584 0.00129631 0.349342 0.322528 0.413844 0.306313 0.537313 0.523529 0.248577 0.413844 0.300667 0.164505class5
0.869565 0.766667 0 0 0 0.0418251 0.00142073 0.0658385 0.00110097 0.102763 0.0850891 0.0824742 0.141076 0.679104 0.0588235 0.85389 0.133284 0.434488 0.879342class6
0.897233 0.55 0 0 0 0.0171103 0.00034732 0.0149068 0.000224414 0.0369223 0.0486224 0.0412371 0.0210444 0.902985 0.161176 0.461101 0.044919 0.556437 0.357476class0
0.956522 0.154167 0 0 0 0.0418252 0.000209138 0.0285715 0.000911017 0.940098 0.930308 0.968336 0.918161 0.466418 0.489412 0.375712 0.968336 0.126968 0.128553class1
0.889328 0.254167 0 0 0 0.0437262 0.000825353 0.0310559 0.00103925 0.0315001 0.0113452 0.0625921 0.0179267 0.684701 0.288235 0.478178 0.0625921 0.84169 0.138913class2
0.636364 0.616667 0 0 0 0.0741445 0.000968343 0.0496894 0.0010499 0.182029 0.183955 0.195876 0.165238 0.789179 0.241176 0.447818 0.195876 0.202846 0.208443class3
0.549407 0.475 0 0 0 0.00950571 6.34888e-05 0.0149068 0.000224414 0.043119 0.0534846 0.05081 0.0249415 0.891791 0.178824 0.444023 0.0515464 0.545635 0.322724class0
0.450593 0.266667 0 0 0 0.0323194 0.000780541 0.0236026 0.000430126 0.878905 0.845219 0.935935 0.849571 0.320896 0.612941 0.324478 0.935935 0.179353 0.123286class1
0.13834 0.558333 0 0 0 0.00950571 0.000197935 0.0285714 0.00148808 0.00593855 0.00243112 0.0095729 0.00545596 0.807836 0.150588 0.574953 0.0095729 0.251852 0.0861599class2
0.533597 0.533333 0 0 0 0.0228137 0.000179263 0.0173913 0.000149609 0.0371805 0.047812 0.0427099 0.0210444 0.895522 0.167059 0.459203 0.0456554 0.566799 0.342346class0
0.0316206 0.3375 0 0 0 0.0475285 0.00243871 0.0559006 0.000633167 0.132972 0.136953 0.159794 0.100546 0.81903 0.291765 0.335863 0.159794 0.401025 0.247385class0
0.411067 0.758333 0 0 0 0.110266 0.00192107 0.0645963 0.00157057 0.419055 0.387358 0.497791 0.365549 0.481343 0.608235 0.16888 0.497791 0.308465 0.167277class5
0.387352 0.383333 0 0 0 0.0342205 0.000403341 0.0186336 0.000312577 0.449264 0.425446 0.517673 0.399065 0.526119 0.565882 0.191651 0.517673 0.271568 0.171505class3
0.0909091 0.670833 0 0 0 0.039924 0.000920493 0.218634 0.00393524 0.293054 0.277147 0.333579 0.265004 0.630597 0.395294 0.360531 0.333579 0.249836 0.151168class5
0.992095 0.7625 0 0 0 0.0741445 0.000788264 0.0459627 0.0014619 0.129357 0.1094 0.10162 0.177708 0.654851 0.0294118 0.925996 0.167894 0.422491 0.868053class6
0.671937 0.0166667 0 0 0 0.0228137 0.00056243 0.0149069 0.000504357 0.792925 0.730146 0.874816 0.765394 0.147388 0.711765 0.341556 0.874816 0.241576 0.109986class1
0.130435 0.341667 0 0 0 0.0190114 0.000274438 0.00869565 0.000281089 0.103279 0.076175 0.155376 0.0740452 0.613806 0.405882 0.360531 0.155376 0.559179 0.158053class4
0.936759 0.833333 0 0.333333 0 0.0361217 0.000494751 0.0360248 0.000904996 0.143042 0.117504 0.127393 0.183944 0.61194 0.0905882 0.870968 0.173785 0.385282 0.916711class6
0.924901 0.320833 0 0 0 0.0114069 4.48151e-05 0.0099379 5.34318e-05 0.0854635 0.0551053 0.139912 0.0568979 0.597015 0.412941 0.366224 0.139912 0.641775 0.15235class4
0.150198 0.204167 0 0.333333 0 0.053232 0.00115027 0.0546584 0.00139991 0.157759 0.155592 0.198822 0.116134 0.768657 0.365882 0.267552 0.198822 0.446636 0.224083class0
0.371542 0.75 0 0 0.5 0.108365 0.00281015 0.134162 0.00374042 0.420088 0.382496 0.505155 0.365549 0.440299 0.638824 0.16129 0.505155 0.320865 0.16226class5
0.660079 0.275 0 0 0 0.0304183 0.00128471 0.0347826 0.00114344 0.415182 0.395462 0.472754 0.372564 0.565299 0.505882 0.248577 0.472754 0.255329 0.170112class3
0.988142 0.85 0 0.333333 0 0.0513308 0.00205031 0.0621118 0.00181668 0.0864963 0.0672609 0.0765832 0.115355 0.673507 0.104706 0.785579 0.108984 0.441049 0.920314class6
0.478261 0 0 0 0 0.0342205 0.000313714 0.0645963 0.00364405 1 0.998379 1 1 0.503731 0.368235 0.533207 1 0.092773 0.0877215class1
0.833992 0.933333 0 0 0 0.0494297 0.00146767 0.0434783 0.00163372 0.18048 0.153971 0.159057 0.228371 0.593284 0.0717647 0.920304 0.215758 0.351881 0.906582class6
0.0671937 0.558333 0 0 0 0.013308 1.86726e-05 0.0136646 0.000269831 0.027369 0.0405186 0.0265096 0.0155885 0.916045 0.134118 0.491461 0.0368188 0.600529 0.415205class0
0.798419 0.508333 0 0 0 0.00190116 0.000137219 0.00124225 9.81607e-05 0.00206558 0 0.00589102 0 0.81903 0.150588 0.563567 0.00589102 0.888889 0.159449class4
0.869565 0.0791667 0 0 0 0.0361217 0.000861317 0.0372671 0.00117793 0.0591273 0.0445705 0.0868925 0.0436477 0.714552 0.278824 0.462998 0.0868925 0.518586 0.165228class4
0.624506 0.391667 0 0 0 0.0190114 0.00050604 0.089441 0.00131696 0.186419 0.164506 0.225331 0.166017 0.623134 0.362353 0.421252 0.225331 0.337494 0.142995class4
0.588933 0.5875 0 0 0 0.00380228 2.98774e-05 0.0459627 0.00257809 0.00955332 0.00729336 0.0154639 0.00545596 0.815299 0.162353 0.548387 0.0154639 0.537037 0.174061class4
0.790514 0.454167 0 0.333333 0 0.134981 0.0148975 0.0832298 0.00693812 0.026078 0.0105348 0.05081 0.014809 0.718284 0.256471 0.495256 0.05081 0.893054 0.145028class2
0.3083 0.195833 0 0 0 0.0361217 0.000538487 0.0236026 0.000490803 0.760392 0.702593 0.837997 0.732658 0.192164 0.683529 0.341556 0.837997 0.238143 0.112306class1
0.375494 0.433333 0 0 0 0.0684411 0.000974159 0.0745341 0.00102011 0.103021 0.0615883 0.151694 0.0911925 0.514925 0.389412 0.487666 0.151694 0.618328 0.0982321class2
0.948617 0.8625 0 0 0 0.0608365 0.00352549 0.0372671 0.000737359 0.0588691 0.0397083 0.0486009 0.0880748 0.682836 0.0964706 0.789374 0.0832106 0.569266 0.907492class6
0.177866 0.945833 0 0 0 0.0361217 0.000834671 0.0484472 0.00131476 0.0924348 0.0705024 0.083947 0.122369 0.652985 0.112941 0.793169 0.115611 0.445509 0.932134class6
0.573123 0.470833 0 0 0 0.0171103 0.000168059 0.00869565 7.74758e-05 0.0420862 0.054295 0.0486009 0.0233827 0.904851 0.172941 0.440228 0.05081 0.563492 0.339023class0
0.0632411 0.470833 0 0 0 0.039924 0.000616214 0.0322981 0.000566377 0.00800413 0.00162074 0.0176731 0.00389712 0.787313 0.18 0.548387 0.0176731 0.953704 0.146889class2
0.450593 0.291667 0 0 0 0.0247149 0.000652334 0.0161491 0.00028109 0.738446 0.670178 0.827688 0.708496 0.126866 0.734118 0.326376 0.827688 0.26422 0.111122class1
0.822134 0.229167 0 0 0 0.0361217 0.000466831 0.0248448 0.000438139 0.651433 0.576985 0.777614 0.588464 0.11194 0.890588 0.0891841 0.777614 0.325711 0.137549class1
0.264822 0.4 0 0.333333 0 0.0380228 0.00316697 0.0248447 0.00184874 0.0123935 0.00162074 0.0301915 0.00389712 0.755597 0.22 0.516129 0.0301915 0.981482 0.150696class2
0.462451 0.0416667 0 0 0 0.165399 0.00461228 0.0285714 0.000766658 0.459334 0.432739 0.525037 0.414653 0.503731 0.555294 0.231499 0.525037 0.25706 0.163182class3
0.525692 0.075 0 0 0 0.0266159 0.000407058 0.00993786 0.000291191 0.781306 0.718801 0.865243 0.751364 0.152985 0.718824 0.324478 0.865243 0.245093 0.112642class1
0.13834 0.816667 0 0 0 0.0931559 0.00320576 0.144099 0.00202125 0.396075 0.367909 0.464654 0.349961 0.51306 0.554118 0.223909 0.464654 0.290668 0.164765class5
0.454545 0.945833 0 0 0 0.039924 0.000885107 0.0236025 0.00164837 0.0593855 0.054295 0.0375552 0.0872954 0.779851 0.0411765 0.779886 0.0824742 0.54054 0.820746class6
0.0711462 0.2125 0 0 0 0.38403 0.0008935 0.0149068 0.000263391 0.437903 0.39222 0.530191 0.383476 0.378731 0.677647 0.16129 0.530191 0.329364 0.154108class3
0.0592885 0.979167 0 0.333333 0 0.0817491 0.00109425 0.0385093 0.00126366 0.0655822 0.0696921 0.0670103 0.0600156 0.841418 0.154118 0.535104 0.0684831 0.163351 0.311184class6
0.778656 0.483333 0 0 0 0.0836502 0.00442181 0.191304 0.0429485 0.284018 0.277147 0.319588 0.252533 0.695896 0.369412 0.335863 0.319588 0.248999 0.190682class3
0.667984 0.320833 0 0 0 0.0247148 0.000392935 0.0186335 0.000331428 0.155693 0.132901 0.194404 0.136399 0.626866 0.354118 0.43074 0.194404 0.378615 0.140328class4
0.501976 0.554167 0 0 0 0 0 0 0 0 0 0 0 0.833955 0.131765 0.578748 0 0 0.511054class4
0.865613 0.116667 0 0.333333 0 0.0228137 0.000736396 0.0298137 0.000961772 0.787761 0.725284 0.868925 0.760717 0.151119 0.707059 0.345351 0.868925 0.241459 0.109224class1
0.106719 0.629167 0 0.333333 0 0.039924 0.000628818 0.0322981 0.000957757 0.175058 0.143436 0.173049 0.207327 0.559701 0.163529 0.806452 0.195876 0.335127 0.975919class6
0.407115 0.383333 0 0.333333 0 0.0323194 0.000538487 0.0149068 0.000430118 0.410534 0.380875 0.481591 0.363211 0.498134 0.569412 0.214421 0.481591 0.287394 0.163354class3
0.438735 0.0791667 0 0 0 0.0190115 0.000274437 0.0273292 0.000519416 0.789569 0.735008 0.862297 0.763835 0.205224 0.667059 0.354839 0.862297 0.225384 0.11061class1
0.359684 0.458333 0 0 0 0.0494296 0.00183689 0.0459627 0.00148544 0.104312 0.0696921 0.155376 0.0833983 0.561567 0.401176 0.421252 0.155376 0.596422 0.135784class2
0.699605 0.725 0 0 0 0.0893536 0.00182145 0.0695652 0.00164254 0.341854 0.320908 0.402062 0.29774 0.580224 0.501176 0.240987 0.402062 0.300036 0.174257class5
0.221344 0.691667 0 0 0 0.0323194 0.00055646 0.0322981 0.00123962 0.136587 0.115073 0.122239 0.172253 0.641791 0.0952941 0.833017 0.162739 0.35899 0.916192class6
0.268775 0.533333 0 0 0 0.0969582 0.00178807 0.047205 0.00120382 0.126001 0.116694 0.149485 0.109899 0.729478 0.274118 0.455408 0.158321 0.386612 0.225184class2
0.126482 0.404167 0 0 0 0.10076 0.00463468 0.152795 0.0121424 0.278854 0.262561 0.319588 0.250974 0.632463 0.392941 0.362429 0.319588 0.266758 0.161786class3
0.73913 0.4125 0 0 0 0.026616 0.000522848 0.0173913 0.000694614 0.0294345 0.0202593 0.0493373 0.0171473 0.761194 0.234118 0.487666 0.0493373 0.675265 0.171732class4
0.284585 0.391667 0 0 0 0.0722433 0.00110545 0.026087 0.000376694 0.408727 0.388979 0.466127 0.366329 0.567164 0.503529 0.250474 0.466127 0.259048 0.169883class3
0.596838 0.983333 0 0 1 0.0551331 0.00122869 0.159006 0.00313111 0.152853 0.153971 0.166421 0.137178 0.79291 0.232941 0.457306 0.166421 0.215788 0.216345class6
0.0909091 0.0166667 0 0 0 0.0285172 0.000696986 0.0248447 0.000392641 0.48851 0.444895 0.579529 0.433359 0.376866 0.683529 0.1537 0.579529 0.30227 0.154314class3
0.754941 0.95 0 0.333333 0 0.0855513 0.00245365 0.0509317 0.000943071 0.105603 0.089141 0.0964654 0.130943 0.686567 0.112941 0.759013 0.123711 0.344304 0.927806class6
0.150198 0.275 0 0.333333 0 0.0627376 0.00182624 0.0534161 0.000558362 0.0537051 0.0235008 0.0868925 0.0475448 0.608209 0.303529 0.531309 0.0868925 0.762049 0.0968131class2
0.920949 0.691667 0 0 0 0.0380228 0.000478032 0.0198758 0.000406082 0.113349 0.0915721 0.102356 0.145752 0.647388 0.105882 0.810247 0.137703 0.396399 0.924393class6
0.470356 0.404167 0 0.333333 0 0.0209125 0.000646092 0.021118 0.000109535 0.152853 0.15316 0.18704 0.116134 0.787313 0.331765 0.303605 0.18704 0.412134 0.228425class0
0.379447 0.275 0 0 0.5 0.0418251 0.00186732 0.0993789 0.00473406 0.175574 0.175851 0.214286 0.134061 0.779851 0.358824 0.267552 0.214286 0.407623 0.229469class0
0.916996 0.391667 0 0 0 0.214829 0.00233273 0.021118 0.000535852 0.105861 0.0923825 0.131075 0.0919719 0.70709 0.277647 0.472486 0.131075 0.353768 0.148171class4
0.474308 0.2125 0 0 0 0.0190114 0.00020914 0.0248447 0.000406082 0.874258 0.84846 0.919735 0.849571 0.376866 0.556471 0.358634 0.919735 0.161658 0.122252class1
0.588933 0.345833 0 0 0 0.0380228 0.000612476 0.0285714 0.000366009 0.664343 0.589951 0.790133 0.601715 0.108209 0.891765 0.0910816 0.790133 0.321505 0.137168class1
0.810277 0.0625 0 0 0 0.041825 0.00150878 0.0422359 0.00101521 0.955332 0.958671 0.972754 0.93219 0.552239 0.441176 0.366224 0.972754 0.105128 0.144646class1
0.656126 0.741667 0 0 0 0.129278 0.00225641 0.084472 0.00111402 0.407178 0.374392 0.480118 0.360873 0.477612 0.577647 0.222011 0.480118 0.295523 0.158285class5
0.545455 0.408333 0 0 0 0.0304183 0.000841412 0.00621118 0.000281089 0.205009 0.180713 0.24595 0.184723 0.600746 0.376471 0.421252 0.24595 0.331954 0.137328class4
0.347826 0.4 0 0.333333 0 0.0494296 0.00195695 0.042236 0.00197698 0.131681 0.145057 0.151694 0.0974279 0.884328 0.258824 0.322581 0.15243 0.394656 0.283096class0
0.316206 0.3625 0 0.333333 0 0.0418251 0.000433218 0.042236 0.00232963 0.145624 0.15316 0.171576 0.110678 0.839552 0.290588 0.316888 0.171576 0.389147 0.254384class0
0.304348 0.2125 0 0.333333 0 0.0228137 0.000403339 0.0360248 0.000622481 0.767106 0.735008 0.837261 0.722525 0.367537 0.649412 0.218216 0.837261 0.202279 0.144167class1
0.470356 0.025 0 0 0 0.0475285 0.000556459 0.042236 0.000822846 0.903176 0.866289 0.951399 0.886204 0.291045 0.576471 0.413662 0.951399 0.172628 0.105967class1
0.940711 0.341667 0 0 0 0.117871 0.013609 0.0236025 0.00062248 0.100439 0.0721232 0.151694 0.0732658 0.606343 0.401176 0.375712 0.151694 0.577002 0.152213class4
0.474308 0.754167 0 0.333333 0 0.11597 0.0020765 0.132919 0.00179556 0.423961 0.389789 0.506627 0.368667 0.462687 0.628235 0.155598 0.506627 0.31261 0.165985class5
0.166008 0.5875 0 0 0 0.0665399 0.00172167 0.0273292 0.000598437 0.0105861 0.00729336 0.0191458 0.00467654 0.807836 0.175294 0.535104 0.0191458 0.648677 0.186503class4
0.667984 0.55 0 0 0 0 0 0 0 0 0 0 0 0.833955 0.131765 0.578748 0 0 0.511054class4
0.00790514 0.395833 0 0 0 0.00760456 0.00017357 0.00248447 0.000124165 0.00387297 0 0.0110457 0 0.80597 0.167059 0.550285 0.0110457 1 0.159449class2
0.557312 0.420833 0 0 0 0.0361217 0.00049475 0.0124223 0.000248328 0.201136 0.179092 0.240059 0.180826 0.617537 0.365882 0.421252 0.240059 0.32175 0.141693class4
0.205534 0.6875 0 0 0 0.0665399 0.000887162 0.0347826 0.00143999 0.350633 0.331442 0.411635 0.303975 0.589552 0.507059 0.222011 0.411635 0.302421 0.179061class5
1 0.616667 0 0 0 0.121673 0.00760371 0.331677 0.110147 0.255358 0.228525 0.306333 0.226812 0.567164 0.436471 0.358634 0.306333 0.294845 0.122099class5
0.525692 0.341667 0 0 0 0.013308 0.000253019 0.0198758 0.000392642 0.145882 0.121556 0.195876 0.116134 0.619403 0.405882 0.354839 0.195876 0.44338 0.160844class4
0.300395 0.516667 0 0 0 0.10076 0.00198755 0.0397515 0.000691318 0.330235 0.299028 0.402062 0.28371 0.51306 0.554118 0.223909 0.402062 0.33466 0.164642class3
0.743083 0.541667 0 0 0 0 0 0 0 0 0 0 0 0.833955 0.131765 0.578748 0 0 0.511054class4
0.347826 0.325 0 0 0 0.0589354 0.00293169 0.0658385 0.00350779 0.152595 0.155592 0.184094 0.116134 0.80597 0.318824 0.305503 0.184094 0.400445 0.240539class0
0.454545 0.720833 0 0 0 0.0760457 0.00213621 0.237267 0.0325213 0.221017 0.209887 0.251841 0.198753 0.686567 0.331765 0.406072 0.25405 0.250721 0.139124class5
0.826087 0.920833 0 0 0 0.0627376 0.00121654 0.0335404 0.00124242 0.0614511 0.047812 0.0478645 0.0888542 0.720149 0.0811765 0.776091 0.083947 0.491388 0.880611class6
0.0592885 0.166667 0 0 0 0.0247149 0.000446754 0.0186336 0.000521268 0.857217 0.807131 0.93299 0.82385 0.214552 0.697647 0.296015 0.93299 0.213813 0.119817class1
0.517787 0.470833 0 0 0 0.00760456 7.46926e-05 0.00496894 5.34318e-05 0.00748774 0 0.0213549 0 0.779851 0.2 0.523719 0.0213549 1 0.159449class2
0.110672 0.416667 0 0 0 0.013308 0.000242751 0.0136646 0.000109535 0.0376969 0.0502431 0.0419735 0.0210444 0.908582 0.161176 0.455408 0.0456554 0.564153 0.360322class0
0.695652 0.745833 0 0 0 0.0323194 0.000834672 0.0310559 0.000687123 0.36535 0.345219 0.427835 0.318005 0.578358 0.517647 0.216319 0.427835 0.297733 0.177663class5
0.225296 0.475 0 0 0 0.0741445 0.00111983 0.0236025 0.000652601 0.129357 0.0810373 0.20324 0.0974279 0.458955 0.516471 0.339658 0.20324 0.638455 0.134676class2
0.952569 0.225 0 0 0 0.0190114 0.000274439 0.0223602 0.000304139 0.0622257 0.0445705 0.0949926 0.0444271 0.692164 0.303529 0.44592 0.0949926 0.583461 0.154835class4
0.620553 0.766667 0 0 0 0.0836502 0.002364 0.063354 0.00124242 0.0815905 0.0688817 0.056701 0.120031 0.720149 0.0317647 0.855787 0.113402 0.517717 0.848698class6
0.233202 0.770833 0 0 0 0.0494297 0.00105579 0.0993789 0.00143998 0.356571 0.330632 0.419735 0.314108 0.541045 0.518824 0.252372 0.419735 0.297689 0.165347class5
0.288538 0.491667 0 0 0 0.00760456 2.98774e-05 0.00248447 2.1373e-05 0.00361477 0 0.0103093 0 0.807836 0.164706 0.552182 0.0103093 1 0.159449class2
0.87747 0.725 0 0 0 0.0171103 0.000352522 0.0534161 0.00150092 0.0903692 0.0842788 0.0648012 0.123149 0.76306 0.0305882 0.814042 0.116348 0.445418 0.81976class6
0.841897 0.7625 0 0 0 0.0418251 0.00103416 0.0720497 0.00122288 0.314227 0.293355 0.367452 0.277475 0.589552 0.461176 0.296015 0.367452 0.291972 0.167406class5
0.806324 0.804167 0 0 0 0.0532319 0.000966397 0.042236 0.00127835 0.132455 0.104538 0.113402 0.179267 0.598881 0.0717647 0.914611 0.169367 0.439342 0.905358class6
0.229249 0.366667 0 0 0 0.026616 0.000836558 0.0223602 0.000256473 0.0142009 0.000810372 0.0368188 0.00311769 0.73694 0.243529 0.497154 0.0368188 0.986111 0.150157class2
0.782609 0.358333 0 0.333333 0 0.0931559 0.0012651 0.0111801 0.000131696 0.333333 0.335494 0.358616 0.303975 0.742537 0.331765 0.349146 0.358616 0.199351 0.202697class3
0.027668 0.0416667 0 0.333333 0 0.0209126 0.000446754 0.0459627 0.000879073 0.875549 0.827391 0.944035 0.848012 0.222015 0.667059 0.337761 0.944035 0.203582 0.114435class1
0.458498 0.979167 0 0 0 0.0779468 0.00566544 0.0596273 0.0042318 0.107668 0.0875203 0.0949926 0.140296 0.660448 0.0964706 0.812144 0.132548 0.395955 0.913242class6
0.438735 0.0791667 0 0 0 0.0190115 0.000274437 0.0273292 0.000519416 0.789569 0.735008 0.862297 0.763835 0.205224 0.667059 0.354839 0.862297 0.225384 0.11061class1
0.73913 0.1 0 0 0 0.0418251 0.00106063 0.0248448 0.000406082 0.868319 0.834684 0.928571 0.835542 0.324627 0.625882 0.29981 0.928571 0.183109 0.127799class1
0.865613 0.416667 0 0 0 0.0874525 0.00166934 0.0509317 0.00115229 0.2063 0.185575 0.253314 0.17615 0.625 0.405882 0.349146 0.253314 0.349325 0.16443class3
0.00395257 0.429167 0 0 0 0.0285171 0.000123243 0.00621118 4.54171e-05 0.0121353 0.00567261 0.0257732 0.00389712 0.785448 0.2 0.518027 0.0257732 0.881481 0.170758class2
0.56917 0.725 0 0.333333 0 0.095057 0.00227635 0.0496894 0.0014075 0.392202 0.363857 0.463181 0.343726 0.51306 0.564706 0.206831 0.463181 0.302283 0.166724class5
0.114625 1 0 0 0 0.0836502 0.0018974 0.178882 0.00115813 0.144074 0.156402 0.11782 0.159782 0.873134 0.04 0.686907 0.150957 0.231417 0.727125class6
0.418972 0.491667 0 0 0 0.0190114 0.000567664 0.0198758 0.000630495 0.0464756 0.0615883 0.0500736 0.0280592 0.923507 0.16 0.442125 0.0559647 0.530556 0.36938class0
0.130435 0.4875 0 0 0 0.0152091 0.000119508 0.0149068 0.00035265 0.0395043 0.054295 0.0434462 0.0210444 0.923507 0.16 0.442125 0.0493373 0.597443 0.370439class0
0.411067 0.2125 0 0 0 0.0285172 0.000168058 0.026087 0.000601108 0.881745 0.857374 0.930044 0.852689 0.384328 0.571765 0.326376 0.930044 0.162225 0.129057class1
0.932806 0.754167 0 0.333333 0 0.0285171 0.000552297 0.0981366 0.00254196 0.323264 0.299838 0.38218 0.282931 0.56903 0.490588 0.26945 0.38218 0.302675 0.167364class5
0.936759 0.3125 0 0 0 0.0152091 2.98774e-05 0.00745341 3.20588e-05 0.0836561 0.0551053 0.135493 0.0561185 0.610075 0.4 0.373814 0.135493 0.629503 0.153746class4
0.367589 0.2875 0 0 0 0.0741444 0.00119782 0.0186336 0.00036465 0.406662 0.373582 0.477909 0.362432 0.475746 0.569412 0.237192 0.477909 0.290834 0.155763class3
0.545455 0.733333 0 0 0 0.0703422 0.0011332 0.0409938 0.000771669 0.421379 0.39141 0.495582 0.371005 0.492537 0.587059 0.191651 0.495582 0.292692 0.165523class5
0.256917 0.408333 0 0 0 0.0285171 0.000816427 0.0223603 0.00060828 0.714433 0.65235 0.810015 0.671863 0.177239 0.758824 0.235294 0.810015 0.268118 0.125344class1
0.0118577 0.741667 0 0 0 0.0703422 0.00391763 0.262112 0.0826617 0.184353 0.170989 0.218704 0.160561 0.682836 0.34 0.396584 0.218704 0.271473 0.158339class5
0.0671937 0.245833 0 0 0.5 0.323194 0.00594715 0.22236 0.00501234 0.146656 0.118314 0.17673 0.141855 0.591418 0.310588 0.537002 0.17673 0.415836 0.0889712class2
0.794466 0.25 0 0 0 0.0323194 0.000578928 0.0173913 0.000328508 0.267493 0.276337 0.279087 0.246298 0.809702 0.250588 0.411765 0.279087 0.166047 0.229702class3
0.00790514 0.0416667 0 0 0 0.0152091 0.000612479 0.0273292 8.54905e-05 0.907307 0.880875 0.94919 0.886984 0.36194 0.547059 0.388994 0.94919 0.15668 0.115333class1
0.857708 0.220833 0 0 0 0.0513308 0.00113983 0.0409938 0.00141637 0.0557707 0.0445705 0.0832106 0.0374123 0.738806 0.276471 0.442125 0.0832106 0.579142 0.18113class4
0.762846 0.470833 0 0 0 0.0513308 0.000436953 0.0310559 0.000654539 0.019623 0.00729336 0.0368188 0.0132502 0.742537 0.218824 0.531309 0.0368188 0.836773 0.127516class2
0.822134 0.75 0 0 0.5 0.104563 0.00232302 0.12795 0.00437954 0.336174 0.320097 0.388807 0.295401 0.615672 0.463529 0.265655 0.388807 0.279764 0.181188class5
0.12253 0.8125 0 0 0.5 0.0969582 0.00178807 0.125466 0.00202553 0.401756 0.367909 0.477909 0.353079 0.472015 0.591765 0.204934 0.477909 0.30568 0.160869class5
0.56917 0.0958333 0 0.333333 0 0.0190115 0.000343586 0.0422361 0.000822853 0.955332 0.958671 0.972018 0.93297 0.552239 0.437647 0.371917 0.972018 0.104539 0.14172class1
0.363636 0.483333 0 0 0 0.0380228 0.000841411 0.0223602 0.000568993 0.0265944 0.00972447 0.044919 0.0233827 0.708955 0.225882 0.55408 0.044919 0.827249 0.0956263class2
0.126482 0.345833 0 0 0 0.0456274 0.000212578 0.0571429 0.00118445 0.0410534 0.0235008 0.0515464 0.0467654 0.699627 0.191765 0.618596 0.0515464 0.609788 0.0292491class2
0.72332 0.558333 0 0 0 0.0247148 0.000616723 0.00496894 0.000196321 0.00387297 0.00243112 0.00810015 0.000779422 0.822761 0.152941 0.555977 0.00810015 0.527778 0.188567class4
0.905138 0.629167 0 0 0 0.0570342 0.00108394 0.021118 0.00041414 0.120837 0.100486 0.105302 0.156664 0.654851 0.0858824 0.834915 0.148012 0.382522 0.905633class6
0.648221 0.45 0 0 0 0.0361217 0.00158722 0.0322981 0.000598436 0.205525 0.169368 0.267305 0.174591 0.518657 0.476471 0.343454 0.267305 0.425713 0.143771class4
0.13834 0.741667 0 0 0 0.0665399 0.00248353 0.130435 0.0155727 0.218694 0.207455 0.251841 0.194076 0.686567 0.342353 0.388994 0.251841 0.266302 0.17188class5
0.0316206 0.704167 0 0 0 0.039924 0.000728684 0.026087 0.000709205 0.157242 0.127229 0.145803 0.197973 0.576493 0.114118 0.86907 0.18704 0.381429 0.937747class6
0.624506 0.829167 0 0 0 0.0513308 0.00137808 0.0347826 0.00156021 0.0903692 0.0688817 0.0795287 0.122369 0.656716 0.101176 0.808349 0.115611 0.460437 0.918792class6
0.494071 0.541667 0 0 0 0.0475285 0.00136314 0.0198758 0.000598437 0.0227214 0.00324149 0.05081 0.0116914 0.692164 0.271765 0.497154 0.05081 0.953086 0.13213class2
0.521739 0.379167 0 0 0.5 0.754753 0.377725 0.668323 0.35203 0.306997 0.273096 0.349043 0.294622 0.501866 0.405882 0.474383 0.349043 0.397892 0.105321class2
0.6917 0.370833 0 0 0 0.0665399 0.000780539 0.0322981 0.000470199 0.386006 0.367099 0.443299 0.342946 0.580224 0.497647 0.246679 0.443299 0.268621 0.174256class3
0.87747 0.579167 0 0 0 0 0 0 0 0 0 0 0 0.833955 0.131765 0.578748 0 0 0.511054class4
0.280632 0.0833333 0 0 0 0.0380227 0.00150879 0.0298137 0.000512943 0.947586 0.947326 0.964654 0.928293 0.529851 0.437647 0.394687 0.964654 0.107616 0.132484class1
0.758893 0.475 0 0 0 0.173004 0.00257226 0.0434783 0.00135518 0.261038 0.235818 0.315169 0.227592 0.576493 0.452941 0.322581 0.315169 0.321825 0.158392class3
0.403162 0.495833 0 0 0 0.0114068 0 0.00621118 0.000281089 0.00542216 0 0.0154639 0 0.794776 0.181176 0.538899 0.0154639 1 0.159449class2
0.573123 0.470833 0 0 0 0.0171103 0.000168059 0.00869565 7.74758e-05 0.0420862 0.054295 0.0486009 0.0233827 0.904851 0.172941 0.440228 0.05081 0.563492 0.339023class0
0.26087 0.0958333 0 0 0 0.0380228 0.00123345 0.0124224 0.000421062 0.37826 0.337115 0.466127 0.32424 0.429105 0.642353 0.166983 0.466127 0.34747 0.159428class3
0.509881 0.741667 0 0 0 0.0304183 0.000343586 0.026087 0.000665226 0.0836561 0.0688817 0.0670103 0.115355 0.705224 0.0717647 0.806452 0.108984 0.439443 0.879406class6
|
ed7a0c51c8246806eb75d6f01d7631a4ec1e8b7a | 845eb3d48cb8c3e6c846d11c9869b57f40dca505 | /EKF_Scilab.sce | ccd7e156953a810e9c53701e3be1264d8e510e0a | [] | no_license | MDX1997/Lidar-and-Radar-sensor-fusion-with-Extended-Kalman-Filter | 422c10f14db1f1378eeb181d91d908565f070a58 | 089d3160ce73453640c501dfbb561f0885ef1b64 | refs/heads/master | 2023-01-04T17:24:37.339742 | 2020-10-29T14:58:46 | 2020-10-29T14:58:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,861 | sce | EKF_Scilab.sce | clear;
clf;
dt = 0.1;
Data = csvRead('Radar_Lidar_Data1.csv',[], [], "double", [], [], [2 2 1225 10]);//Omit the header and the first column.
Radar_Measurement = [];
Lidar_Measurement = [];
EKF_Path = [];
F = [[1, 0, dt, 0];
[0, 1, 0, dt];
[0, 0, 1, 0];
[0, 0, 0, 1]];
u = 0;
B = [(dt^2)/2 (dt^2)/2 dt dt]';
P = [[1, 0, 0, 0];
[0, 1, 0, 0];
[0, 0, 1000, 0];
[0, 0, 0, 1000]];
R_l = [[0.0025, 0];
[0, 0.0025]];
R_r = [[0.09, 0, 0];
[0, 0.005, 0];
[0, 0, 0.09]];
Q = [(dt^2)/4 0 (dt^3)/2 0;
0 (dt^2)/4 0 (dt^3)/2;
(dt^3/2) 0 (dt^2) 0;
0 (dt^3)/2 0 (dt^2)];
H = [[1, 0, 0, 0];
[0, 1, 0, 0]];
I = eye(4,4);
if (Data(1,1) == 1)
x = [Data(1,2); Data(1,3); 0; 0];
else
x = [Data(1,2); Data(1,3); Data(1,4); 0];
end
for n = 1:size(Data)(1,1)
if (Data(n,1) == 2)
//prediction
x = F * x + B*u;
P = F * P * F' + Q;
//measurement update
Z = Data(n,2:4);
X = Z(1)*cos(Z(2));
Y = Z(1)*sin(Z(2));
VX = Z(3)*cos(Z(2));
VY = Z(3)*sin(Z(2));
c1 = X^2 + Y^2;
c2 = sqrt(c1);
c3 = c1 * c2;
if (c1==0 || c2==0 || c3==0)
H_Jac = [[0, 0, 0, 0];
[0, 0, 0, 0];
[0, 0, 0, 0]];
else
H_Jac = [[X/c2, Y/c2, 0, 0];
[-Y/c1, X/c1, 0, 0];
[(Y*(VX*Y-VY*X))/c3, (X*(X*VY-Y*VX))/c3, X/c2, Y/c2]];
end
Z_Car = [X; Y; VX; VY];
y = Z' - (H_Jac * Z_Car);
S = H_Jac * P * H_Jac' + R_r;
K = P * H_Jac' * inv(S);
x = Z_Car + (K * y);
P = (I - (K * H_Jac)) * P;
EKF_Path = [EKF_Path;[x(1),x(2)]];
Radar_Measurement = [Radar_Measurement; Data(n,2:4)];
else
//prediction
x = (F * x) + B*u;
P = F * P * F' + Q;
//measurement update
Z = Data(n,2:3);
y = Z' - (H * x);
S = H * P * H' + R_l;
K = P * H' * inv(S);
x = x + (K * y);
P = (I - (K * H)) * P;
EKF_Path = [EKF_Path;[x(1),x(2)]];
Lidar_Measurement = [Lidar_Measurement; Data(n,2:3)];
end
end
for i = 1:size(Radar_Measurement)(1,1)
Radar_Measurement_Cart(i,:) = [[Radar_Measurement(i,1),0];[0, Radar_Measurement(i,1)]]*[cos(Radar_Measurement(i,2));sin(Radar_Measurement(i,2))];
end
set(gca(),"auto_clear","off")
plot(Data(:,6),Data(:,7),'r','linewidth', 2);
scatter(gca(),EKF_Path(:,1),EKF_Path(:,2),,'scilabred3');
scatter(gca(),Lidar_Measurement(:,1),Lidar_Measurement(:,2),,'scilabgreen3');
scatter(Radar_Measurement_Cart(:,1),Radar_Measurement_Cart(:,2),,'skyblue');
legend(gca(),['Grundtruth';'EKF Path result';'Lidar Measurement';'Radar Measurement'],2);
//axis square; Not Implemented yet.
set(gca(),"auto_clear","on")
|
5b8a116d119d2ecdfbeedce7acc4a914be1c3252 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3035/CH6/EX6.4/Ex6_4.sce | 58290a36738346a9f9dbb86e0b911c8b66bd3a5d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 889 | sce | Ex6_4.sce | // Variable Declaration
E = 40.0 //Safe working stress(kV/cm) rms
d = 1.5 //Conductor diameter(cm)
D = 6.7 //Sheath diameter(cm)
t = 0.1 //Thickness of lead tube(cm)
// Calculation Section
r = d/2 //Conductor radius(cm)
R = D/2 //Sheath radius(cm)
r_i = r+((R-r)/2)-t/2 //Internal radius of intersheath(cm)
r_e = r_i + t //External radius of intersheath(cm)
V_1 = E*r*log(r_i/r) //Voltage across conductor & intersheath(kV)
V_2 = E*r_e*log(R/r_e) //Voltage across intersheath & earthed sheath(kV)
V = V_1 + V_2 //Safe working voltage with intersheath(kV)
V_no = E*r*log(R/r) //Safe working voltage without intersheath(kV)
// Result Section
printf('Safe working voltage with intersheath , V = %.2f kV' ,V)
printf('Safe working voltage without intersheath , V = %.2f kV' ,V_no)
|
23fb0f6a2c804819657c36122f38a745f46cefd2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2297/CH2/EX2.2/Ex2_2.sce | 3586610ac27417de00b1b9c1018ef594c7073b7f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 748 | sce | Ex2_2.sce | // Example 2.2 :current
clc;
close;
clear;
// given :
vs1=72;//voltage in volts
vs2=40;//voltage in volts
R1=36;//resistance in ohm
R2=10;//resistance in ohm
ig=2;//current in amperes
Rx=8;//resistance in ohm
//(va-72)/36+(va-40)/10 -2 +va/8=0 node equation at 1
va=((R2*Rx*vs1)+(R1*Rx*vs2)+(R1*R2*Rx*ig))/((R2*Rx)+(R1*Rx)+(R1*R2));//voltage in volts
ix1=va/Rx;//current in amperes
//(R1+R2)*I1-R2*I2+vs2=vs1 loop equation 1
//R2*I2-R2*I1+Ix*Rx=vs2 loop equation 2
//Ix=I2+2
A=[R1+R2 -R2;-R2 R2+Rx];//making equations
B=[vs1-vs2;vs2-2*Rx];//making equations
X=A\B;//solving equations
ix2=X(2,1)+ig;//current in amperes
disp(ix1,"current through Rx is(by node voltage method), (A)=")
disp(ix2,"current through Rx is (by loop current method),(A) =")
|
2959d92ada51d2c86216fab846e6023612c484cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH9/EX9.2/Ex9_2.sce | 99a44add5eacb96b97775005a82467cad2b0e038 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 656 | sce | Ex9_2.sce | //chapter9
//example9.2
//page145
Vi_p=20 // V
rf=10 // ohm
Rl=500 // ohm
Vo=0.7 // V
Vin=20 // V
// peak current through diode will occur when Vin=Vf so
Vf=Vin
// since Vf=Vo+If_peak(rf+Rl) making If_peak as subject we get
If_peak1=(Vf-Vo)/(rf+Rl) // in ampere
Vout_peak1=If_peak1*Rl
// for ideal diode, Vo=0 and rf=0 so
// Vf=If_peak*Rl so we get
If_peak2=Vf/Rl // in ampere
Vout_peak2=If_peak2*Rl
printf("peak current through given diode = %.3f mA and peak output voltage = %.3f V \n",If_peak1*1000,Vout_peak1)
printf("peak current through ideal diode = %.3f mA and peak output voltage = %.3f V \n",If_peak2*1000,Vout_peak2)
|
6f524746dc4ef747c7030ce55c3e978d1c4c2ca3 | 8ad9380384d2751d79937ba5d6d581565596b891 | /macros/fpfh_estimation.sci | 0df6f6d189341606eac5913836393c4778fb3b2b | [
"BSD-3-Clause"
] | permissive | iamAkshayrao/scilab_point_cloud_toolbox | 1d8845f0830ddb623383c8dbfeadc8a3a35e8801 | 5d592a695b7976f4e63f0ae24d0a14937e474642 | refs/heads/master | 2022-12-17T23:14:11.513116 | 2020-09-25T18:57:02 | 2020-09-25T18:57:02 | 290,829,006 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 996 | sci | fpfh_estimation.sci | function fpfh_estimation()
// Estimate FPFH (Fast Point Feature Histograms) (33) descriptors using pcl::FPFHEstimation.
//
// Syntax
// PointCloud(InputPCDFilename, OutputPCDFilename, options,"fpfh_estimation")
//
// Parameters
// InputPCDFilename: It is the Input File in PCD format
// OutputPCDFilename: It is the Output File in PCD format that is to be generated
// where options are:
// -radius = use a radius of Xm around each point to determine the neighborhood (default: 0.0)
// -k = use a fixed number of X-nearest neighbors around each point (default: 0)
//
// Description
// Fast point Feature Histograms of InputPCD file is calculated and the result is stored in the OutputPCD file.
//
// Examples
// PointCloud("bun0.pcd", "out_fpfh1.pcd", "-radius", "0", "-k", "20","fpfh_estimation")
//
// Examples
// PointCloud("bun0.pcd", "out_fpfh2.pcd","fpfh_estimation")
//
//Authors
//Ankit Kumar
//Akshay S Rao
//Mohammed Rehab Sait
//Aliasgar AV
endfunction
|
ead5ea5dfcb378199a1904e3ee2f7408b3ed8a4f | 45a93944a52f35e5601f5eebc0ff0e0c885849fd | /scripts/marcheAleatoireReduc.sci | e4297eb53526a324ba016c168a0a2c909acf15f8 | [] | no_license | madox35/Simulations-numeriques | ae32655f213f5a1dc04de86387652264a5b56aa0 | 11d59864210370b2524ad533bf864d0968053131 | refs/heads/master | 2020-03-17T13:32:10.082544 | 2018-05-21T21:14:09 | 2018-05-21T21:14:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 455 | sci | marcheAleatoireReduc.sci | function marche = marcheAleatoireReduc(nombre_pas, T, s)
alpha = 1;
for i=1:T:nombre_pas
pas = genererRandBinomiale(1,0.5,1);
s = sqrt(alpha * T);
if pas == 0 then
tabPas(i) = s;
elseif pas == 1 then
tabPas(i) = -s;
end
marche(i) = sum(tabPas);
alpha = alpha - alpha/1000;
// if i == 10000 then
// disp(alpha)
// end
end
endfunction
|
17916ae9a24d2e1b8b2ea42df828721b12545d2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /812/CH7/EX7.04/7_04.sce | b6e3ab18250468d0d3bc301b4acafe7861839b7d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sce | 7_04.sce | //speed and force//
pathname=get_absolute_file_path('7.04.sce')
filename=pathname+filesep()+'7.04-data.sci'
exec(filename)
//Velocity of prototype in ft/sec
Vp1=Vp*6080/3600
//Reynolds number of prototype:
Rep=Vp1*Dp/vp
//Rep=Rem
//Therefore:
Rem=Rep;
//Velocity of air for wind tunnel(in ft/sec):
Vm=Rem*vm/(Dm/12)
//Drag force on prototype(in lbf):
Fp=Fm*(dp/dm)*(Vp1/Vm)^2*(Dp/(Dm/12))^2
printf("\n\nRESULTS\n\n")
printf("\n\nTest speed in air: %.3f ft/sec\n\n",Vm)
printf("\n\nDrag force on prototype: %.3f lbf\n\n",Fp)
|
f641459b529b853b23b7844472cb32a4db91091a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3683/CH4/EX4.3/Ex4_3.sce | 28b45f7c44384c908015213a4864de2add6538a4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex4_3.sce | b=300//width, in mm
d=600//effective depth, in mm
W=100//UDL including self-weight, in kN/m
Pt=2//percentage tensile steel
l=7.2//span, in m
sigma_cbc=7//in MPa
sigma_st=190//in MPa
m=13.33//modular ratio
V=W*l/2//in kN
Tv=(V*10^3)/(b*d)//in MPa
Tcmax=1.8//in MPa
//as Tv>Tcmax, section is to be redesigned so that Tv becomes less than Tcmax
mprintf("Nominal shear stress in beam=%f MPa\nFor given grade of concrete, Tcmax=1.8 MPa and as Tv > Tcmax, section is to be redesigned so that Tv becomes less than Tcmax", Tv)
|
11d2a42094d3b4ce70810e22502caab19a408589 | 3073307fa4b6da9371518f0718c199501b8c5c71 | /viejos/newton_multiple.sci | acab5ecc4798473235dd6d06c3ee9e0b56627d84 | [] | no_license | fern17/CalculoNumerico | 8b04abdf8e1da4b69a1256334a4bc58ff5c9180d | c793733ce17616361dd02f358ef63c1d9be5c99e | refs/heads/master | 2020-06-04T00:06:19.723655 | 2011-12-20T13:47:40 | 2011-12-20T13:47:40 | 2,929,202 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 436 | sci | newton_multiple.sci | function y = f(x)
y = exp(x) - x - 1;
endfunction
function y = fp(x)
y = exp(x) - 1;
endfunction
function y = fpp(x)
y = exp(x);
endfunction
function [p,it] = newton_multiples(p0,tol,maxit)
it = maxit;
for i=1:maxit
p(i) = p0 - (f(p0)*fp(p0))/(fp(p0)^2 - f(p0)*fpp(p0));
if(abs(p(i)-p0)<tol)
it = i;
return;
end
p0 = p(i);
end
endfunction
|
085ae1026275fa93ed4b8cd1d735b92635f30006 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2120/CH3/EX3.2/ex3_2.sce | 52a8323e948f61ee0c402d7704685b88a2000da7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 505 | sce | ex3_2.sce | // Exa 3.2
clc;
clear;
close;
// Given data
T_K= '273.15+t_C';
T_R= '459.67+t_F';
// t_C= t_F or T_K-T_R= -186.52 (i)
// T_R/T_K = 1.68 (ii)
// From eq (i) and (ii)
T_K= -186.52/(1-1.68);// temp. in kelvin in K
T_R= 1.68*T_K;// in temp. in rankine in °R
t_C= T_K-273.15;// in °C
t_F= T_R-459.67;// in °F
disp(T_K,"Temperature in kelvin is : ")
disp(T_R,"Temperature in °R is ")
disp(t_C,"Temperature in °C is ")
disp(t_F,"Temperature in °F is ")
|
c78f63bc95d6d68de0e259992bd3d1846a8f26be | d690dc340d20c52be6c8f033e2e1073411651b6d | /examples/main.tst | 9925ff46f81af3a284208c19811c28c46d20eead | [
"Unlicense"
] | permissive | levibland/Typescript-2.0 | 3a0bf20269cc4712e520f406f76d9f5d5338b1c3 | 921d98b414406cabe715b40b0099a32ff9800b26 | refs/heads/main | 2022-12-27T02:51:16.078123 | 2020-10-12T21:51:10 | 2020-10-12T21:51:10 | 303,518,916 | 1 | 0 | Unlicense | 2020-10-12T21:45:14 | 2020-10-12T21:36:33 | C | UTF-8 | Scilab | false | false | 65 | tst | main.tst | main = (argc: int, argv: Array<string>):int => {
return 0;
}
|
2b27707528bda8f85eba6a2127f683dec74bfe05 | 717ddeb7e700373742c617a95e25a2376565112c | /806/DEPENDENCIES/111.sci | 13f118fa8a7f5d44299cb6cc0e3d67231a4afe4d | [] | 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 | 87 | sci | 111.sci | W=20//N(weight of a flour bag)
g=9.81//m/s^2(Acceleration due to gravity on the earth) |
cf442188b7e1840489787e160e2da5010d0e786a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH17/EX17.10/Example17_10.sce | bd31ce787b8217cf106de099d1f174b46b3e57bc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,613 | sce | Example17_10.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 10: POWER SYSTEM STABILITY
// EXAMPLE : 10.10 :
// Page number 275-276
clear ; clc ; close ; // Clear the work space and console
// Given data
E_1 = 1.1 // Sending end voltage(p.u)
x_d1 = 1.0 // Reactance(p.u)
x_T1 = 0.1 // Reactance(p.u)
x_l1 = 0.4 // Reactance(p.u)
x_l2 = 0.4 // Reactance(p.u)
x_T2 = 0.1 // Reactance(p.u)
E_2 = 1.0 // Receiving end voltage(p.u)
x_d2 = 1.0 // Reactance(p.u)
x_L = 1.0 // Shunt inductor reactance(p.u)
x_C = 1.0 // Static capacitor reactance(p.u)
delta = 30.0 // δ(°)
// Calculations
// Case(a)
Z_1_a = x_d1+x_T1+(x_l1/2.0) // Reactance(p.u)
X_1_a = %i*Z_1_a
Z_2_a = x_T2+x_d2 // Reactance(p.u)
X_2_a = %i*Z_2_a
Z_3_a = -x_C // Reactance(p.u)
X_3_a = %i*Z_3_a
X_a = X_1_a+X_2_a+(X_1_a*X_2_a/X_3_a) // Transfer reactance(p.u)
P_max_a = E_1*E_2/abs(X_a) // Maximum steady state power if static capacitor is connected(p.u)
P_a = P_max_a*sind(delta) // Value of P(p.u)
Q_a = (E_1*E_2/abs(X_a))*cosd(delta)-(E_2**2/abs(X_a)) // Value of Q(p.u)
// Case(b)
Z_1_b = x_d1+x_T1+(x_l1/2.0) // Reactance(p.u)
X_1_b = %i*Z_1_b
Z_2_b = x_T2+x_d2 // Reactance(p.u)
X_2_b = %i*Z_2_b
Z_3_b = x_L // Reactance(p.u)
X_3_b = %i*Z_3_b
X_b = X_1_b+X_2_b+(X_1_b*X_2_b/X_3_b) // Transfer reactance(p.u)
P_max_b = E_1*E_2/abs(X_b) // Maximum steady state power if static capacitor is replaced by an inductive reactor(p.u)
P_b = P_max_b*sind(delta) // Value of P(p.u)
Q_b = (E_1*E_2/abs(X_b))*cosd(delta)-(E_2**2/abs(X_b)) // Value of Q(p.u)
// Results
disp("PART II - EXAMPLE : 10.10 : SOLUTION :-")
printf("\nCase(a): Maximum steady state power if static capacitor is connected, P_max = %.3f p.u", P_max_a)
printf("\n Value of P = %.3f p.u", P_a)
printf("\n Value of Q = %.3f p.u", Q_a)
printf("\nCase(b): Maximum steady state power if static capacitor is replaced by an inductive reactor, P_max = %.3f p.u", P_max_b)
printf("\n Value of P = %.3f p.u", P_b)
printf("\n Value of Q = %.4f p.u", Q_b)
|
d75a39a17179f6d6c9c2d2f08a1f3d1c507b172c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH6/EX6.13/Ex6_13.sce | 52dc9055a3c3dc5fbefda9773eafcd1f3ae77794 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex6_13.sce |
// Theory and Problems of Thermodynamics
// Chapter 6
// Thermodynamic Potentials and Availability
// Example 13
clear ;clc;
//Given data
T1 = 1273.15 // product leaving temperature in K
Ta = 298.15 // ambient temperature in K
T_ai = 298.15 // air entering reactor temperature in K
P_ai = 0.5 // air entering reactor pressure in MPa
T_ao = 573.15 // hot air leaving reactor temperature in K
P_ao = 0.1 // hot air leaving reactor pressure in MPa
m = 5000 // product produced per hour by reactor in kg
Cp = 1 // specific heat capacity of product in kJ/kg K
// Calculations
// a) maximum work that can be obtained from product
// W = Q_P - Ta*del_S // maximum work obtainable = available energy
Q_P = m*Cp*(T1-Ta)
del_S_P = m*Cp*log(T1/Ta) // Change in entrophy of product
W_P = Q_P - Ta*del_S_P // Maximum work done in kJ
// b) maximum work that can be obtained from hot air
//Q_A = Q_P = m_a*Cp*(T_ao-T_ai)
m_a = Q_P/(Cp*(T_ao-T_ai)) // mass of air in kg
del_S_a = m_a*Cp*log(T_ao/T_ai) // entrophy of air
W_A = Q_P - T_ai*del_S_a // work done by air
// c) loss in available energy
L_E = W_P - W_A
// Output Results
mprintf('(a) The maximum amount of work that can be done if reactor product is fed to heat engine = %4.4f E+06 kJ' ,W_P/1e6);
mprintf('\n (b) The maximum amount of work that can be done by hot air = %4.4f E+06 kJ' ,W_A/1e6);
mprintf('\n (c) Loss in available energy = %4.2f E+06 kJ' ,L_E/1e6);
|
10bc8131cc7ea6d0fd452a62e6df93b7465196a1 | f4cfee6e4201b01843e6de00cc439883a49aa4f1 | /my scilab files/yogesh 7.sce | fc5b17d6e595199ca3b2dfc57fff6702776ee0e5 | [] | no_license | yogeshkhatana/All_programming_language_files | a17bb49ea4d3aef2b667bdbb03f3af5c4224b0d1 | bec946abcf8e69a6e6ebc568d14db73c52029170 | refs/heads/master | 2022-11-19T09:05:08.861581 | 2020-07-24T17:40:32 | 2020-07-24T17:40:32 | 282,181,013 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 302 | sce | yogesh 7.sce | x=[10 24 19 38 15]
y=[0 0 1 0 1]
subplot(1,3,1)
pie(x)
title('simple pie chart')
subplot(1,3,2)
pie(x,['cement','water','air','telecom','software'])
title('pie chart with label')
subplot(1,3,3)
label=({'cement','telecom','software','air','water'})
pie(x,y,label)
title('piechart with slice & label')
|
be5659b7f144b5bdd98eaf3c339430394d053bc6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1244/CH9/EX9.16/Example916.sce | f0e9ab5b48f3ade1de2d8944f3477f8db44f65eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 867 | sce | Example916.sce |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clc;
disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 9 Example # 9.16 ")
//Total pressure in atm
Pt = 2;
//Temperature in degree K
TH2O = 500;
//Mean beam length in m
L = 0.75;
//Partial pressure of water vapor in atm
PH2O = 0.4;
//Source temperature in degree K
Ts = 1000;
//Since nitrogen is transparent, the absorption in the mixture is due to the water vapor alone.
//Parameters required
//A Parameter in atm-m
A = PH2O*L;
//B Parameter in atm
B = (Pt+PH2O)/2;
//From Figs. 9.46 and 9.48 we find
//For water, C factor in SI units
CH2O = 1.4;
//Emissivity of water
epsilonH2O = 0.29;
//From Eq. (9.115) the absorptivity of H2O is
disp("Absorptivity of H2O is")
alphaH2O = (CH2O*epsilonH2O)*((TH2O/Ts)^0.45)
|
1a6248beadb9bb5281bd9c92f29c6c2e2f60b1b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH3/EX3.1/1.sci | 5518f928a700d88f80863ba69af2d8d050051c59 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,832 | sci | 1.sci | clc;
clear all;
disp("steady state temperature distribution")
disp("Let th = t-ta")
disp("the controllign differential equation for the given problem is given by")
disp("d2th/dx2+d2th/dy2 =0------(1)")
disp("the boundary conditions are :")
disp("i) at x = infinity, th =0")
disp("ii) at x = 0, th =th0")
disp("iii) at y =L, th =0")
disp("iv) at y = 0, th =0")
disp("The solution of eq. 1 is th = X(x)Y(y) ------ (2)")
disp("substituting the solution in controlling equation, we get ")
disp("1/X*d2X/dx2 =-1/Y*d2Y/dy2 = + or - lambda^2")
disp("The required equations are :")
disp("d2X^2/dx2-lambda^2*X =0 ------(iii)")
disp("d2Y^2/dy2+lambda^2*Y =0 ------(iv)")
disp("the solutions of eqns are :")
disp("X = A*exp(lambda*x)+B*exp(-lambda*x)")
disp("Y = C*cos(lambda*y)+D*sin(lambda*y)")
disp("th = (A*exp(lambda*x)+B*exp(-lambda*x))*(C*cos(lambda*y)+D*sin(lambda*y))")
disp(" from boundary condition i), we have ")
disp("0 = (A*exp(lambda*x)+B*exp(-lambda*x))*(C*cos(lambda*y)+D*sin(lambda*y)")
disp("A = 0 and th =B*(C*cos(lambda*y)+D*sin(lambda*y)")
disp("from boundary condition iv), we have")
disp("0 = C*B*exp(-lambda*x)")
disp("hence C = 0 and equation reduces to th = B*D*sin(lambda*y)*exp(-lambda*x)")
disp("from boundary condition iii) we get, 0 = E*exp(-lambda*x)*sin(lambda*L), where E = B*D")
disp("since E is not 0, sin (lambda*L)=0")
disp("lambda = 0, %pi/L,2*%pi/L.....")
disp("lambdan = n*%pi/L, where n = 0,1,2....")
disp("hence , th = E*exp(-lambdan*x)*sin(lambdan*y)")
disp("from boundary eqn ii) we have ")
disp("th = sum(En*sin(lambdan*y), 1, infinity)")
disp("This is an expression of th0 in terms of Fourier series, where En are Fourier coefficients.")
disp("by integrating we get")
disp("th = 2*th0/L*(sum(((1-(-1)^n)/lambdan *exp(-lambdan*x)*sin(lambdan*y))")
,
|
107469c4024c47fdd56fd4fbb3ece0b66728c8a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH3/EX3.2/Ch03Ex2.sce | a8b81ed220ac32843d335367fd071474883df7d4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,009 | sce | Ch03Ex2.sce | // Scilab Code Ex3.2:: Page-3.9 (2009)
clc; clear;
v1 = 36; // Position of the strongest image from the zone plate, cm
v2 = 9; // Position of the next image from the zone plate, cm
lambda = 5890e-008; // Wavelength of light used, cm
r1 = 1; // For simplicity assume radius of first ring of zone plate to be unity, cm
n = 1; // Order of zone plate
// As 1/v1-1/u = n*lambda/r1^2 = 1/3*(1/v2-1/u), solving for u
u = 2/(3/36-1/9); // Distance of the zone plate from source, cm
// As 1/v-1/u = n*lambda/r1^2, solving for r1
r1 = sqrt(lambda/(1/v1-1/abs(u))); // Radius of first zone, cm
f1 = r1^2/(n*lambda); // Principal focal length, cm
printf("\nThe distance of the zone plate from source = %2d cm", u);
printf("\nThe radius of first zone = %3.1e cm", r1);
printf("\nThe principal focal length = %4.1f cm", f1);
// Result
// The distance of the zone plate from source = -72 cm
// The radius of first zone = 6.5e-002 cm
// The principal focal length = 72.0 cm
|
d8f9e5ccccb3913dbdfc0c71b0666c3a0b53b3ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /2783/CH8/EX8.11/Ex8_11.sce | 3e634e24c0ac936cd7e2e779cbff7b4611afaeb2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 229 | sce | Ex8_11.sce | clc
//initialization of new variables
clear
u=20 //km/h
Cd=0.15
S=4 //m^2
r=1025 //kg/m^3
//calculations
D=Cd*1/2*r*(u/3.6)^2*(S)
P=D*u/3.6
//results
printf('Drag force = %d N',D)
printf('\n Power = %.2f KW',P/1000)
|
2e78c7b1b2542cb0c98ee6e0cdd7baf92b42b9df | 59ca8642f974b397e1747edc1015fce8b8e6c59f | /taylor2.sce | 5778eabbf46863c8c634c26eb88271c99b8c3568 | [] | no_license | mcortex/scilab-code | c6a367b216e531d0ebe3cda5d4a84156b23d2085 | 2709299d60d9e72294b274773bdadb4126a25ba9 | refs/heads/master | 2020-05-26T05:49:42.441734 | 2019-12-06T02:06:49 | 2019-12-06T02:06:49 | 188,126,346 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 735 | sce | taylor2.sce | // FUNCION A EVALUAR:
function z1=d1(t,y)
//z1=t*exp(y)
z1=0.5*t*y
endfunction
function z2=d2(t,y,y1)
//z2=exp(y)*(1+t*y1)
z2=0.5*(t+y*y1)
endfunction
function T=taylor2(t,y,d1,d2,h,N) // t=var indep, y=var dep de t, f(t,y(t)), h=paso, N=cantidad de iteraciones
T=[t y] //matriz de 1 fila x 2 columnas: [t0 y0]
for i=1:N
Y1=d1(t,y)
Y2=d2(t,y,Y1)
printf("\nyi= %12.9f + %12.9f * %12.9f + %12.9f * %12.9f * 0.5",y,Y1,h,Y2,(h^2));
y=y+Y1*h+Y2*(h^2)*0.5 // calculo yi
t=t+h // avanzo
T=[T;t y] // ";" agrega una fila a la matriz
end
t=T(:,1);
y=T(:,2)';
//Grafico f(x)
plot2d(t,y);
//muestra grilla
xgrid(3,1,7);
endfunction
|
e5a4493f6dcc1266dec8fcc56a381c961a4166ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /1694/CH6/EX6.20/Ex6_20.sce | 3130e5a6653608dee14c904d6307b8df031133db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 457 | sce | Ex6_20.sce | clear;
clc;
printf("\nEx-6.20\n");
//page no.-192
//given
rho=1.7*10^-8;......//resistivity in ohm m
M=63.54;...........//atomic weight
d=8.96*10^3;......//density in Kg/m^3
N=6.025*10^23;......//avagadro no.
e=1.6*10^-19;.......//charge
no=(N*d)/M........//no of electrons per unit volume
printf("\nno. of electrons/ unit volume 8.50*10^28 /m^3\n");
mu=(1)/(rho*e*no).......//mobility in m/Vs
printf("\nmobility is 4.35*10^-3 m/Vs");
|
e04e9ffe4770e68a8e0aba5a2335b30bb8682897 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/gsort.man.tst | d41f6882dc1cda0c7e490bfd12637bca2619a3bd | [
"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 | 123 | tst | gsort.man.tst | clear;lines(0);
alr=[1,2,2;
1,2,1;
1,1,2;
1,1,1];
[alr1,k]=gsort(alr,'lr','i')
[alr1,k]=gsort(alr,'lc','i')
|
fbb10dffeee35dc628b6a11174c8b6fc47188521 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1436/CH5/EX5.8/ex5_8.sce | 57a772396ccc3b8aa0ccd1f720eded5883b6828e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 115 | sce | ex5_8.sce | // Example 5.8, page no-313
clear
clc
Cd=0.6
g=9.8
h=400*10^-3
V=Cd*sqrt(2*g*h)
printf("V = %.2f m/sec",V)
|
2e3d0b268fb9d6c7eac829256b17a05228192ea1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH9/EX9.10/ch9_10.sci | 9e6ca1df0507728befd9fb24be0ed8dfa88a350d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 285 | sci | ch9_10.sci | //to calculate max torque and slip, starting torque
clc;
k=5; //k=I_s/I_fl
s_fl=0.04;
s_max_T=sqrt((s_fl^2*(1-k^2))/((k*s_fl)^2-1));disp(s_max_T,'slip');
T_max=.5*(s_max_T^2+s_fl^2)/(s_fl*s_max_T);disp(T_max,'max torque(pu)');
T_s=k^2*s_fl;disp(T_s,'starting torque(pu)'); |
2990e98f41201d6fdb7e1ae668d62e70eb3e8ee1 | d01bf962afff16bc1ce292c49da5923ebbe59775 | /Maths/RandomFourier.sce | 66f7643d43eb541ac1c53f4464143a286e9730a2 | [] | no_license | fredkerdraon/Reference-research | 71d0af22f84605ed0c53907acd6b248400c47388 | 1f48fdfebbe766bbd268b4f1853ab98162f57425 | refs/heads/master | 2023-05-05T12:18:18.655367 | 2020-02-08T22:08:15 | 2020-02-08T22:08:15 | 71,020,179 | 0 | 0 | null | 2023-04-19T18:37:49 | 2016-10-15T23:49:14 | POV-Ray SDL | UTF-8 | Scilab | false | false | 291 | sce | RandomFourier.sce | function [y] = ranf(x)
//Random Fourier series
y=[];
for j = 1:length(x)
y = [y ff(x(j))];
end;
endfunction;
function [y] = ff(x)
n=100*rand();
aa = int(10*(rand(1,n)-0.5));
bb = int(10*(rand(1,n)-0.5));
y = 0.0;
for j = 1:n
y = y + aa(j)*sin(2*%pi*x)+bb(j)*cos(2*%pi*x);
end;
endfunction;
|
d360ed064ba02c360e280fa5eb4031b3b3ee4293 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2705/CH1/EX1.1/Ex1_1.sce | e41b309e64a0f71287a64509015335246edda131 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex1_1.sce | clear ;
clc;
disp('Example 1.1');
// Given values
P = 700; //pressure,[kN/m^2]
V1 = .28; //initial volume,[m^3]
V2 = 1.68; //final volume,[m^3]
//solution
W = P*(V2-V1);// // Formula for work done at constant pressure is, [kJ]
mprintf('\n The Work done is = %f MJ\n',W*10^-3);
//End
|
ca48da9587382207145faea44a300e8eb2150852 | 449d555969bfd7befe906877abab098c6e63a0e8 | /389/CH12/EX12.5/Example12_5.sce | 22da7602bb305166397cb55a28f35fa5e7c72ca7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 945 | sce | Example12_5.sce | clear;
clc;
// Illustration 12.5
// Page: 684
printf('Illustration 12.5 - Page: 684\n\n');
// Solution
//***Data***//
x1 = 0.025;// [moisture fraction]
x2 = 0.001;// [moisture fraction]
zS = 0.018;// [m]
dp = 2*10^(-4);// [m]
Density_S = 1350;// [kg dry solid/cubic m]
//***********//
X1 = x1/(1-x1);// [kg water/kg dry air]
X2 = x2/(1-x2);// [kg water/kg dry air]
// From Fig 7.5 (Pg 232)
Y1 = 0.0153;// [kg water/kg dry air]
Tempas = 24;// [OC]
Yas = 0.0190;// [kg water/kg dry air]
Gs = 0.24;// [kg dry air/square m.s]
Gav = Gs+(Gs*(Y1+Yas)/2);// [kg dry air/square m.s]
// From Eqn. 12.26:
Nmax = Gs*(Yas-Y1);// [kg evaporated/square m.s]
viscosity_air = 1.8*10^(-5);// [kg/m.s]
Value = integrate('1/(Nmax*(1-exp(-(0.273/dp^0.35)*((dp*Gav/viscosity_air)^0.215)*(Density_S*zS*X)^0.64)))','X',X2,X1);
// From Eqn. 12.3:
thetha = Density_S*zS*Value;// [s]
printf("The time for drying: %f min\n",thetha/60); |
22338da911cf4649fc193ad540fe480c1833df7c | 03d0f9c67fad13abbcf2ce0b810ca85025d12cef | /presentation scripts/shaping/phase0_FREEWATER.sce | 6bf60c9cdbe3b70a4f9c009fc9a718fb2148fe48 | [] | no_license | Kwan-Lab/behavioral-rigs | 1f6f9719b02d957e2777c1b485ff8224e96c7d5d | 8e2ac0f9a36fc177a457d127474f8823d78c915b | refs/heads/master | 2022-06-21T13:03:35.870220 | 2022-06-06T23:55:01 | 2022-06-06T23:55:01 | 254,467,063 | 4 | 1 | null | 2022-06-06T23:55:03 | 2020-04-09T20:02:30 | Scilab | UTF-8 | Scilab | false | false | 6,171 | sce | phase0_FREEWATER.sce | #--DISCRIMINATION PHASE 0--#
#--Free water collection: subjects receive water on an Fixed-Ratio-1/Fixed-Interval-1 schedule--#
#
# PURPOSE: Training for lick-based water collection in two-choice tasks.
#
# OTHER NOTES:
# 1. Reserve codes {1,2,3} for responses, {1:20} for non-stimulus events, and {21:end} for stimulus events.
#
# TRAINING PROGRESSION:
# 1. phase0_FREEWATER: Introduce collection of water from lickports until ~100 total licks/session (1-2 days)
# 2. phase1_ALTERNATION: (2 days)
# 3. phase2a_DISCRIM: Grace period (see SDL defaults) and novice mode (see subs) included;
# constant ITI; timeout ITI longer than ITI for hits.
# Train to three consecutive days above chance performance.
# 4. phase2b_DISCRIM: Random (exponential) ITI.
# Train to three consecutive days above 90%.
# 5. phase2c_DISCRIM: Grace period removed. Licks are immediately reinforced and affect control flow of trial.
# 6. phase2d_DISCRIM: Novice mode removed; "expert mode." Subjects are now ready for Rule Switching Task.
#
# AUTHORS: MJ Siniscalchi and AC Kwan, 6/26/17
# LAST EDIT:
#-------SDL HEADER----------------------------------------------------------------------------------------#
scenario = "phase0_FREEWATER";
active_buttons = 3; # Number of response buttons in experiment (need three for lick_left, lick_right, & spacebar in earlier phases)
button_codes = 1,2,3;
target_button_codes = 1,2,3;
response_logging = log_all; # Log all responses, even when stimuli are inactive
response_matching = simple_matching;
#DEFAULTS
default_all_responses = true;
default_trial_type = fixed;
begin;
#-------SDL EVENTS-------#
trial { #START TRIAL
trial_duration = 500;
nothing {};
code = 4;
}startTrial;
trial {
trial_type = first_response;
trial_duration = forever;
nothing {};
code=5;
}waitlick;
trial { #REWARD COLLECTION PERIOD (LEFT)
trial_duration = 500; #3 sec to retrieve water drop
nothing {};
code = 6;
}rewardLeft;
trial { #REWARD COLLECTION PERIOD (RIGHT)
trial_duration = 500; # 3 sec to retrieve water drop
nothing {};
code = 7;
}rewardRight;
trial { #REWARD COLLECTION PERIOD (BOTH SIDES)
trial_duration = 500; #3 sec to retrieve water drop
nothing {};
code = 8;
}rewardBothSides;
trial { #SAVE TEMP LOGFILE
save_logfile {
filename = "temp.log"; # Path is default logfile dir
}; # Save every 5 trials in case of failure.
}quicksave;
#-------PCL---------------------------------------------------------------------------------------
begin_pcl;
# SET TASK PARAMETERS AND INITIALIZE TRIAL VARIABLES
#GET INI FILE
preset string user_name = "DEFAULT"; # Prompt user for file prefix, e.g., initials "MJS"
string ini_pathname = "C:\\Users\\KWANLAB\\Desktop\\Presentation\\ini_"+user_name+".pcl";
#SET TASK PARAMETERS
include "sub_getParameterValue.pcl";
int waterAmount_left = int(get_parameterValue(ini_pathname,"waterAmount_left",60)); # Valve open duration in ms
int waterAmount_right = int(get_parameterValue(ini_pathname,"waterAmount_right",60));
int max_rewards = int(get_parameterValue(ini_pathname,"max_rewards",1000)); # Normally, set arbitrarily high.
int interpulse_interval = 500; # Time between left and right pulses for manual feed - necessary for single reservoir ("parallel circuit").
#INITIALIZE BEHAVIORAL VARIABLES
int manualFeed = 0;
int leftLicks = 0;
int rightLicks = 0;
#INITIALIZE OUTPUT PORT VARIABLES
output_port port = output_port_manager.get_port(1);
int portcode_left = 4; # Digital I/O # is log base2 of portcode
int portcode_right = 8;
#LOGFILE & PARAMETER LOG
string dateStr = (date_time("yymmddhhnn")); # Store startTime in str for naming files
logfile.set_filename(logfile.subject() +"_FREEWATER_"+ dateStr + ".log"); #unique filename for session, e.g., M40_DISCRIM_1706221807
string fname_parameterLog = "parameterLog_" + logfile.subject() +"_"+ dateStr + ".txt";
output_file parameterLog = new output_file;
#SETUP TERMINAL WINDOW
term.print("Starting time: ");
term.print(date_time());
logfile.add_event_entry(date_time());
display_window.draw_text("Initializing...");
#SETUP PARAMETER WINDOW
int count; # Response counter
int idx; # Index for displaying response counts
parameter_window.remove_all();
int manualFeedIndex = parameter_window.add_parameter("Manual Feeds");
int leftLickIndex = parameter_window.add_parameter("Left Rewards");
int rightLickIndex = parameter_window.add_parameter("Right Rewards");
#-------BEGIN SESSION-------#
display_window.draw_text("Phase 0: Licks to left or right port trigger water reward. Press <SPACE> for manual feed to both ports...");
loop int i = 1
until leftLicks + rightLicks >= max_rewards
begin
# WAIT FOR RESPONSE
waitlick.present();
if response_manager.response_count(2)>0 then # Left lick detected?
port.send_code(portcode_left, waterAmount_left); # Give pulse for water reward
rewardLeft.present();
leftLicks = leftLicks + 1; # Response count for parameter window.
idx = leftLickIndex;
count = leftLicks;
elseif response_manager.response_count(3)>0 then # Right lick detected?
port.send_code(portcode_right, waterAmount_right); #give pulse for water reward
rewardRight.present();
rightLicks = rightLicks + 1;
idx = rightLickIndex; # For parameter window.
count = rightLicks;
elseif response_manager.response_count(1)>0 then # Manual feed.
port.send_code(portcode_left, waterAmount_left); #give pulse for water reward
wait_interval(interpulse_interval);
port.send_code(portcode_right, waterAmount_right); #give pulse for water reward
rewardBothSides.present();
manualFeed = manualFeed+1;
idx = manualFeedIndex;
count = manualFeed;
end;
parameter_window.set_parameter(idx,string(count));
# TEMP LOGFILE
if (i%5) == 0 then # Every 5 trials, save a temporary logfile (in case of power outage, etc.).
quicksave.present();
end;
i=i+1; # Increment trial.
end; # End loop
display_window.draw_text("Phase 0 training has ended.");
term.print("Ending time:");
term.print(date_time());
|
3ed9c5e36f0d5e9605352a2dc7045750799ee104 | c34cdc974263b166a6f9f6a8d043f8e0630181b1 | /negatyw.sce | 6b0c1909e4159625399a103575faab9e568cfd0b | [] | no_license | BartusZak/WDGM_3 | adffa505744c6612a8bed4b85a8bd17fa4f33458 | 932dfd0b3e124dcadbc80d48c69ce12ff618da3c | refs/heads/master | 2021-05-08T04:31:02.725849 | 2017-10-27T12:37:35 | 2017-10-27T12:37:35 | 108,414,880 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 842 | sce | negatyw.sce | function negatyw(img) //deklarujemy funckję negatyw z parametrem img
img = uint16(img); //konwertujemy img do uint16
img = rgb2gray(img); //zastępujemy obraz RGB obrazem w odcieniach szarości
[h w] = size(img); //przypisujemy wielkość obrazu pod parametrem img zmiennym h i w
X = [0:1:255]'; //tworze tablice z transponowaniem od 0 do 255 co 1
for i=1:256 //rozpoczynamy petle
LUT(i) = 256-i; //kod
end
for i=1:h
for j=1:w
out(i,j) = LUT(img(i,j));
end
end
out = uint8(out); //wracamy do uint8 zeby wyswietlic obrazek
imshow(out); //wyswietlamy obrazek
endfunction //zamykamy funkcję
img = imread('lena.jpg'); //przypisujemy zmiennej img obraz
negatyw(img); //wysołujemy funkcję negatyw z argumentem img
|
d67466cad6539378a19348c14ae751962eab95be | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH13/EX13.2/CH13Exa2.sce | ab3bc435bd725ab5b836b51bf756fb440354d13d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 516 | sce | CH13Exa2.sce | // Scilab code Exa13.2 : : Page-600 (2011)
clc; clear;
E = 200*1.6e-13; // Energy released per fission, joules per neutron
t = 10^-3; // Time, sec
P = E/t; // Power produced by one free neutron, watt per neutron
P_l = 10^9; // Power level, watt
N = P_l/P; // Number of free neutrons in the reactor, neutrons
printf("\nThe number of free neutrons in the reactor = %5.3e neutrons", N);
// Result
// The number of free neutrons in the reactor = 3.125e+016 neutrons |
3a64b8199a74e4900de36ecd8bad8ca1508c8a9e | 3797f4ae070f4a8e41c7db3b7f424f98ca8e5459 | /Moniteur_Skel.sce | aac063edbc92c23162a77cd4de94c2a5196fed5d | [] | no_license | bastiendechamps/OptiHydro | dc59dca84fb4c35e1c4ee42e21aae6d87ba0fe62 | 02bb24fb5117464d35731e9795be0375b657f1a2 | refs/heads/master | 2021-09-13T11:51:49.173927 | 2018-04-29T13:34:49 | 2018-04-29T13:34:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,769 | sce | Moniteur_Skel.sce | ///////////////////////////////////////////////////////////////////////////////
// //
// MONITEUR D'ENCHAINEMENT POUR LE CALCUL DE L'EQUILIBRE D'UN RESEAU D'EAU //
// //
///////////////////////////////////////////////////////////////////////////////
// --------------------------------------
// Dimensionnement de l'espace de travail
// --------------------------------------
// stacksize(10000000);
// ------------------------------------------
// Fonctions fournies dans le cadre du projet
// ------------------------------------------
// Donnees du problemes
exec('Probleme_R.sce');
exec('Structures_R.sce');
// Affichage des resultats
exec('Visualg.sci');
// Verification des resultats
exec('HydrauliqueP.sci');
exec('HydrauliqueD.sci');
exec('Verification.sci');
// ------------------------------------------
// Fonctions a ecrire dans le cadre du projet
// ------------------------------------------
// ---> Charger les fonctions associees a l'oracle du probleme,
// aux algorithmes d'optimisation et de recherche lineaire.
//
// Exemple : la fonction "optim" de Scilab
//
exec('Oracle.sce');
exec('Oracle_D.sce');
exec('Optim_Scilab.sci');
titrgr = "";
exec('Wolfe_Skel.sci');
exec('Gradient_F.sci');
exec('BFGS.sci');
exec('Newton.sci');
exec('Gradient_V.sci');
exec('Polak_Ribiere.sci');
// ------------------------------
// Initialisation de l'algorithme
// ------------------------------
// La dimension (n-md) est celle du probleme primal
xini = 0.1 * rand(n-md,1);
lmb_ini = 0.1 * rand(md,1);
// ----------------------------
// Minimisation proprement dite
// ----------------------------
// PROBLEME PRIMAL
// [fopt,xopt,gopt] = Gradient_F(OraclePG, xini);
// [fopt,xopt,gopt] = Gradient_V(OraclePG, xini);
// [fopt,xopt,gopt] = Polak_Ribiere(OraclePG, xini);
// [fopt,xopt,gopt] = BFGS(OraclePG, xini);
// [fopt,xopt,gopt] = Newton(OraclePH, xini);
// [fopt,xopt,gopt] = Optim_Scilab(OraclePH, xini);
// PROBLEME DUAL
// [fopt,xopt,gopt] = Gradient_F(OracleDG, lmb_ini);
// [fopt,xopt,gopt] = Gradient_V(OracleDG, lmb_ini);
// [fopt,xopt,gopt] = Polak_Ribiere(OracleDH, lmb_ini);
// [fopt,xopt,gopt] = BFGS(OracleDG, lmb_ini);
[fopt,xopt,gopt] = Newton(OracleDH, lmb_ini);
// [fopt,xopt,gopt] = Optim_Scilab(OracleDH, lmb_ini);
// --------------------------
// Verification des resultats
// --------------------------
// PROBLEME PRIMAL
// [q,z,f,p] = HydrauliqueP(xopt);
// PROBLEME DUAL
[q,z,f,p] = HydrauliqueD(xopt)
Verification(q,z,f,p);
//
|
67aea73129dec8e24ec4770b6f71b6bb218d381c | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH6/EX6.6.a/6_6_data.sci | 4ac4f70f64f9742c2234c77e030665cf9c196c31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 499 | sci | 6_6_data.sci | // Aim:Refer Example 6-6 for Problem Description
// Given:
// Flow rate of pump:
Q_pump=18.2; //gpm
// Diameter of blank end of piston:
D=3; //in
// Diameter of cushion plunger:
D_cush=1; //in
// Stroke of cushion plunger:
L_cush=0.75; //in
// Distance Piston decelerates at the end of extending stroke:
L=0.75; //in
// Weight of Body:
W=1500; //lb
// coefficient of friction:
CF=0.12;
// Pressure relief valve settings:
p_relf=750; //psi
// maximum pressure at the Blank end:
p1=750; //psi
|
b9d3ad8e2f256415cf733d30acb40985b3e8ce9f | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/LR7.prev.tst | b401d6609fb0d115c3fb509df5ff0d114d0fde5f | [
"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 | 420 | tst | LR7.prev.tst | before x, phead=0, pbody= - 14*y, ptail= - 448*y^2 - 576, mlead= + 4*x^2, flead=256, root2=16, widev=64
after x, phead=2*x^2, pbody= - 14*y, ptail= - 840*y^2 - 576, vmapt={x=> - 14*y+16*x,y=>y}
zero y, pbody == 0, fbody=-840
after y, phead=2*x^2 - 840*y^2, pbody=0, ptail= - 576, vmapt={x=> - 14*y+16*x,y=>y}
("8*x^2 - 14*x*y - 7*y^2 - 9").getReductionMap(1) = {=>x^2 - 105*y^2 - 288,x=>16*x - 14*y,y=>2*y}
|
ac7f69d9cb038090b376ef0a10e6f0d2f1a5a88f | 37950f16d052f7743e8ddc536e89c28f717a7229 | /Pattern/Pattern.sce | 9ff70cd53df7e1aabc3deb25e520a325c82cefcf | [] | no_license | tauhideee/SIM-Scilab | 51aca407e107500d6dbb780db4ceebb5a18ef03f | d94b53bb856b59bb33ace4ff001fe96c3c8229bb | refs/heads/master | 2021-01-22T14:20:56.974550 | 2015-07-18T10:26:44 | 2015-07-18T10:26:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,519 | sce | Pattern.sce | //Generation of Pattern
//1. linSI.m
//
// Clear previous variables and graphics windows
//
clear ;
//
// Set parameters
//
impath = 'C:\Users\Bene\Dropbox\Dokumente\Optical Design\Superresolution\Scilab\Pattern\'
// Microscope Objective
M_Microscope = 10; // Magnification @TL 200mm
NA = 2;
lambda = 555e-9;
f_mo = 200e-3/M_Microscope;
// Magnification
f_TL = 400e-3 ; // Focal Length Tube Lens
f_PL = 400e-3 ; // Focal Length Projection Lens
mag_p = f_mo/f_PL; // Demagnification of DLP Display into Probe Plane
mag_i = f_TL/f_mo; // Magnification of Probe into Camera
// Periode
period = 10; // How many pixel form a periode
rho_p = 0.61*lambda/NA;
fc = 1/rho_p;
// Set Camera Parameters PIKE_F_145B_C_fiber.pdf
pixel_camera_width = 1388; // Number of Pixel width
pixel_camera_height = 1038; // Number of Pixel height
pixelsize_camera = 6.45e-6; // Pixel_Size [mu m]
cs_width = pixelsize_camera * pixel_camera_width; // width of Camera-Sensor [mm]
cs_height = pixelsize_camera * pixel_camera_height; // hight of Camera-Sensor [mm]
// Set Projector Parameters
ps_width = 1e-3; // width of Camera-Sensor [mm]
ps_height = 72e-3; // hight of Camera-Sensor [mm]
pixel_projector_width = 320;// 480; // Number of Pixel width
pixel_projector_height = 320; // Number of Pix<<l height
pixelsize_projector = 7.6e-6; // Pixel_Size [mu m]
// find best Period to fullfill resolution enhancement
period_best = ceil(((rho_p/mag_p)/pixelsize_projector));
disp(period_best, 'Best Period for DLP to fit: ')
fc_dlp = floor(1/(period_best*pixelsize_projector))
// Set number of pattern, angle, rotation
nphases = 3; // number of phases
nangles = 3; // number of angles
// ------------------ START -----------
n = pixel_projector_width;
m = pixel_projector_height;
theta=linspace(0,%pi,nangles+1);
theta=theta(1:nangles);
phi=linspace(0,2*%pi,nphases+1);
phi=phi(1:nphases);
I = zeros(m,n,nphases*nangles);
[X1,Y1] = meshgrid(1:n,1:m);
ki = 2*%pi*(fc_dlp)/1000;
for itheta=1:nphases
for iphi=1:nphases
rottheta= [cos(theta(itheta)) -sin(theta(itheta));
sin(theta(itheta)) cos(theta(itheta)) ];
k = rottheta*[ki; 0];
kx = k(1); ky = k(2);
I(:,:,(itheta-1)*3+iphi) = (1/2+squarewave((kx*X1+ky*Y1+phi(iphi)))/2);
imshow(I(:,:,(itheta-1)*3+iphi))
pattern = I(:,:,(itheta-1)*nangles+iphi);
WriteImage(pattern, impath+'period_'+string(period_best)+'_phase'+string(itheta)+'_'+string(iphi)+'.jpg');
end
end
|
bdd219bc786019a8c9c52b13f3b12d032a1f61d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /51/CH8/EX8.10/8_10.sce | de686e54a9b0bc19c42bf2afff2ac68795b8c4b7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 445 | sce | 8_10.sce | clc;
clear;
D=4;//in
l=20;//ft
n=4;//number of 90 degree elbows
h=0.2;//in
T=100;//degree F
//energy equation between the inside of the dryer and the exit of the vent pipe
p1=(h/12)*62.4;//lb/(ft^2)
KLentrance=0.5;
KLelbow=1.5;
sw=0.0709;//lb/(ft^3)
f=0.022;//assumption
//hence,
V=((p1/sw)*2*32.2/(1+(f*l/(D/12))+KLentrance+(n*KLelbow)))^0.5;//ft/sec
Q=V*(%pi*((D/12)^2)/4);//(ft^3)/sec
disp("(ft^3)/sec",Q,"The flowrate=")
|
0e8b0d55e8a35962c9a451b1d18876648abc3b30 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH1/EX1.4/Ex1_4.sce | c22cf88c60ffdce99ba57057e4b58b3e6729d0ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 680 | sce | Ex1_4.sce | // Exa 1.4
clc;
clear all;
// Given data
x1= 49.7;
x2= 50.1;
x3= 50.2;
x4= 49.6;
x5= 49.7;
// solution
X_mean= (x1+x2+x3+x4+x5)/5; // Arithmatic mean
d1= x1-X_mean;
d2= x2-X_mean; // deviation from each value
d3= x3-X_mean;
d4=x4-X_mean;
d5=x5-X_mean;
d_total= d1+d2+d3+d4+d5; //Algebraic sum of deviations
printf('The arithmatic mean is %.2f \n \n',X_mean);
printf(' Deviation from x1 is %.2f \n ',d1);
printf('Deviation from x2 is %.2f \n ',d2);
printf('Deviation from x3 is %.2f \n ',d3);
printf('Deviation from x4 is %.2f \n ',d4);
printf('Deviation from x5 is %.2f \n \n',d5);
printf(' The algebraic sum of deviation is %d \n',d_total);
|
8975d77691ae4bd22cc6c607987ead5c92f4c93d | b667735486117d0c7bb30d616ee6ed37032e947d | /online/labca3_5/documentation/xmlhelp/en_US/lcaGetTimeout.sci | e76d54c81e02bf56fce8673a52b2167761f4afda | [
"EPICS",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | KIT-IBPT/MML | 6b8093aec421162c56ada56daa2d43a1b6977e62 | 4ad8cbb61a36a8b145cc6b17e0b5a3a6b4213c26 | refs/heads/master | 2021-08-28T07:39:45.693497 | 2021-08-04T13:14:01 | 2021-08-04T13:14:01 | 226,303,582 | 0 | 0 | null | 2019-12-06T10:28:11 | 2019-12-06T10:28:11 | null | UTF-8 | Scilab | false | false | 1,098 | sci | lcaGetTimeout.sci | function lcaGetTimeout, lcaSetTimeout
// Retrieve / set the ezca library timeout parameter (consult the ezca documentation for more information).
//
// Calling Sequence
//
//currentTimeout = lcaGetTimeout()
//lcaSetTimeout(newTimeout)
//
// Description
//
// Retrieve / set the ezca library timeout parameter (consult the ezca
// documentation for more information). Note that the semantics of the
// timeout parameter has changed with labCA version 3. The library no
// longer pends for CA activity in multiples of this timeout value but
// returns control to scilab as soon as the underlying CA request
// completes.
//
// However, labCA checks for ``Ctrl-C'' key events every time (and only
// when) the timeout expires. Hence, it is convenient to choose a value
// $<1$ s.
//
// The maximal time spent waiting for connections and/or data equals the
// timeout multiplied by the [1]retry count.
// __________________________________________________________________
//
//
// till 2017-08-08
//
//See also
//
// lcaGetRetryCount 1. lcaGetRetryCount
endfunction
|
234ffb6559bba6e079f1cec2284a9b759fd8fb76 | 51a0428c9302b97856546f658bc33bd9a2f2b471 | /sem1/src/lab3/code/plots.sce | 82a3082930dd959bbaa9745820335d8210ad96be | [] | no_license | EgorZamotaev/courses | 8d157c6dfb4df8b4b9d68b5215a25270a830f188 | c815c5052be82f6f11e86f6a1699fe7d020fe071 | refs/heads/master | 2020-03-22T12:00:00.570913 | 2018-07-06T08:17:18 | 2018-07-06T08:17:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sce | plots.sce | results=read("/home/rami/Desktop/red/ev3_course/courses/sem1/src/lab3/code/data.txt",-1,2)
qlines=size(results,1)
dist=results(:,2)
time=results(:,1)/1000
plot2d(time, dist, 1)
|
62b7f368f276cb02ae3123c68f06ffd562811301 | 6b778fe7ce057aaef2abb8bcf50d716047b597b0 | /test/issue235.tst | 049ed6181f37999904a238f91203d330b2666154 | [
"Apache-2.0"
] | permissive | grobian/carbon-c-relay | a9cfa93e51afca31df8fbb3f0115e4678e0502ca | 741937387d08e877d3c28583a7c453c99bf506f1 | refs/heads/master | 2023-07-04T23:29:37.333774 | 2023-01-26T15:27:39 | 2023-01-26T15:27:39 | 15,357,351 | 368 | 132 | Apache-2.0 | 2022-09-16T07:03:46 | 2013-12-21T10:33:29 | C | UTF-8 | Scilab | false | false | 37 | tst | issue235.tst | collection.fo.bar.x.y.blakwklsa.skla
|
a6b230853c40fab3c292395afcdb34f2ffe4b5af | 449d555969bfd7befe906877abab098c6e63a0e8 | /995/CH1/EX1.12/Ex1_12.sce | 68c997ced4811742c6a087a83a79bdf7f4e6a165 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 127 | sce | Ex1_12.sce | //Ex:1.12
clc;
clear;
close;
t=20*10^-3;//in sec
i=45*10^-6;//in amp
q=i*t*10^9;
printf("Charge transferred = %f nC",q); |
b93e84fce17ac8023cab8b23639c820614f9ca6d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH13/EX13.7/13_7.sce | 47159cd12e050792f8e2f215c93a65c72f7c5aba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 555 | sce | 13_7.sce | clear;
clc;
z11=40;z22=30;z12=20;z21=20;
deltaz=(z11*z22)-(z12*z21);
A=z11/z12;
printf("The transmission parameters are:\n");
printf(" A = %f\n",A);
B=deltaz/z21;
printf(" B = %f ohms\n",B);
C=1/z21;
printf(" C = %f mho\n",C);
D=z22/z21;
printf(" D = %f\n",D);
printf(" The network equations using z-parameter are\n");
printf(" V1 = %fI1 + %fI2\n",z11,z12);
printf(" V2 = %fI1 + %fI2\n",z21,z22);
printf(" The network equations using ABCD parameter are\n");
printf(" V1 = %fV2 - %fI2\n",A,B);
printf(" I1 = %fV2 - %fI2\n",C,D);
|
a5a1b9994b5b0723545366b1bacba5d6809a60fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH3/EX3.4/Ex3_4.sce | 2368bf5b81043e8eede2fc163b2599da3b285191 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,068 | sce | Ex3_4.sce | //chapter3
//example3.4
//page50
Eb=250 // V
Ec=-3 // V
// given that Ib=0.003*(Eb+30*Ec)^1.5 mA
// differentiating w.r.t Ec with Eb=constant, we get
gm=0.003*1.5*(Eb+30*Ec)^0.5*30*10^-3
mutual_inductance_micro=gm*10^6
printf("mutual conductance = %f mho or %.3f micro mho \n",gm,mutual_inductance_micro)
// differentiating given equation w.r.t Ec with Ib=constant, we get
// 0=0.003*10^-3*1.5*(Eb+Ec)^1.5*(mu+30) where mu is equal to ratio of changes in Eb and Ec i.e. amplification factor
// thus mu+30=0 hence we get
mu=-30
printf("here negative sign of amplification factor indicates that Eb and Ec are in opposite direction. \n \n")
// here we need not worry as to if mu may be positive because the equation given in problem statement will always give mu+30=0 i.e. mu=-30
printf("amplification factor = %.3f \n",mu)
rp=mu/gm
if rp<0 // rp can not be negative
rp=-rp
end
printf("plate resistance = %.3f ohm \n",rp)
//in book, the answers are less accurate. The accurate answers are
// gm=1707.630 micro mho
// plate resistance=17568.209 ohm
|
2bb0d7b3b0350c138741dad42ddce749a0266645 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set13/s_Introduction_To_Modern_Physics_Volume_1_R._B._Singh_623.zip/Introduction_To_Modern_Physics_Volume_1_R._B._Singh_623/CH3/EX2.2.18/U2_C2_18.sce | 3cf89eaa394f37b4145c5a32b73f9ea231f71cfc | [] | 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 | 503 | sce | U2_C2_18.sce | errcatch(-1,"stop");mode(2);//variable initialization
delta_t=10^-8; //life-time of the average excited atom (second)
//calculation of the minimum uncertainty in the frequency of photon
delta_f=1/delta_t; //minimum uncertainty in the frequency of photon (radian/second)
printf("\nminimum uncertainty in the frequency of photon = %.0e radian/second",delta_f);
exit();
|
86f3613ddfe7b01a783fd14300a3cd9c52037394 | 67ba0a56bc27380e6e12782a5fb279adfc456bad | /STAMPER_PROG_7.4/OffsetNormal.sci | cac889a73123e9ef7b4e1184d6edc3a7976db2a9 | [] | 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 | 263 | sci | OffsetNormal.sci | function plOutput = OffsetNormal(plInput, fDist)
//Setup Offset Regime Boundary Matrix
mORBM = [0, %pi];
//Setup Normal Offset Components
mNOC = [[fDist, 0], [0, 0]];
plOutput = OffsetPolyline(plInput, mORBM, mNOC);
endfunction
|
c9891e3f6b2bf76daa7e26cd8717b2b9c5d1b736 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2294/CH7/EX7.4/EX7_4.sce | 42825f0fb7793664f5f528feb4e16c78d2443cd0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 296 | sce | EX7_4.sce | //Example 7.4
//Find the laplace transform
clc;
close;
syms t;
b=4;
a=2;c=1;
s=a+c*%i;
X1=integrate((exp(-(b+s)*t)),'t',0,%inf);
X2=integrate((exp(-(s-b)*t)),'t',-%inf,0);
disp(X1);
disp(X2);
X=X1+X2;disp(X)
disp(real(s));
disp('Since -b< real(s)<b,so the integral converges');
|
d98cc0817c1e9cab1178c758de23764815c23885 | 449d555969bfd7befe906877abab098c6e63a0e8 | /104/CH5/EX5.13/5_13.sce | 02f1f03b0a35c161ca80d3a8e2b6b0e3be11fdb6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 459 | sce | 5_13.sce | //OCF form
A=[1 2 1;0 1 3;1 1 1]
B=[1;0;1]
C=[1 1 0]
D=0
[row,col]=size(A)
c=s*eye(row,col)-A
x=det(c)
r=coeff(x)
M=[r(1,2) r(1,3) 1;r(1,3) 1 0;1 0 0]
V=[C;C*A;C*A^2]
disp(V,"observability matrix=")
if (det(V)==0) then
printf("system cannot be transformed into ocf form")
else
printf("system can be transformed into ocf form")
end
Q=inv(M*V)
disp(Q,"Q=")
Aocf=inv(Q)*A*Q
Cocf=C*Q
B=inv(Q)*B
disp(Aocf,"Aocf=")
disp(Cocf,"Cocf=") |
857079584a7fae64c36592148aece6c26e1cba69 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/m2sci/sci_null.sci | 8896a3726c3bf7aede76e41aeb41e7196f16df9b | [
"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 | 124 | sci | sci_null.sci | function [stk,txt,top]=sci_null()
// Copyright INRIA
txt=[]
stk=list('kernel('+stk(top)(1)+')','0',stk(top)(4),'?','1')
|
eaf111bbcd2471564cefda642d9a90a8dae7fc8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3480/CH8/EX8.1/Ex8_1.sce | 4adc7c1a9d9931349a6e19b0782ebdbee11aa4c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 778 | sce | Ex8_1.sce | //Example 8.1, page 157
clc
r=5//in cm
n=1//in cm
n1=1.67200//in cm
for h = 1:3 //the calculations for h=0 is 0, the textbook ans is wrong
sin_ph=h/r
sin_ph_1=(sin_ph)*(n/n1)
ph=asind(sin_ph)
ph_1=asind(sin_ph_1)
theta=ph_1-ph
angle=sin(theta) // the textbook ans is wrong
printf("\n \n")
printf("\n For h=%d, sin_ph=%f ",h,sin_ph)
printf("\n \n")
printf("\n For h=%d, sin_ph1=%f ",h,sin_ph_1)
printf("\n \n")
printf("\n \n")
printf("\n For h=%d, ph=%f ",h,ph)
printf("\n \n")
printf("\n For h=%d, ph1=%f ",h,ph_1)
printf("\n \n")
printf("\n For h=%d, theta=%f ",h,theta)
printf("\n \n")
printf("\n For h=%d, angle=%f ",h,angle)
end
|
925fa4d4ea30da4534938a29a233071492894477 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2075/CH2/EX2.9/pe2_9.sce | 6816ec6bdaf43f4dc4ec6248b438c7ae653e0ec7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 330 | sce | pe2_9.sce | //example 2.9
clc; funcprot(0);
// Initialization of Variable
V=15;//voltage
R=4;//resistance
Vl=.1;
D=8;//duty cycle
//calculation
Il=V/R;
disp(Il,"load current in A:")
Rw=Vl/Il//wiring resistance
disp(Rw*1000,"wiring resistance in mohm:")
Ri=Rw/(2*D);
disp(Ri*1e6,"resistance per inch in microohm/inch:")
clear()
|
1886601b6d4f363f8d235e6835c7bf9017ec2181 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH9/EX9.9/9.sci | bc3954ca627a62b466787e8238f6578e9068931a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sci | 9.sci | clc
clear all;
disp("average heat transfer coefficient")
ts=120;// degree C
d=2/100;//m
L=0.2;//m
ta=119;// degree C
psat=1.985;// bar
rhow=943;//kg/m^3
hfg=2202.2*1000;//J/kg
kw=0.686;// W/m.K
mu=273.3*10^(-6);// Ns/m^2
g=9.81;//m/s^2
del=(4*kw*mu*(ts-ta)*L/(rhol^2*g*hfg))^0.25;//
hL=k/del;
disp("mm",del*1000,"Thickness of condensate film =")
h=4*hL/3;
disp("W/m^2.C",h,"Average heat transfer coefficient =")
|
b13879ee30e75addd375adf972ac9c3cde4efa73 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1691/CH5/EX5.12/exmp5_12.sce | 9e3eb68076ebae1095efafb20df3746ac54f247c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 544 | sce | exmp5_12.sce | //Example 5.12
clc
fr=1/(2*%pi*sqrt(100*1000*10^-18))
format(8)
disp(fr,"(i) Resonant frequency f_r(in kHz) = 1 / 2*pi*sqrt(L*C) =")
disp("(ii) Tank circuit impedance at resonance can be given as")
rp=((100*10^6)/5000)*10^-3
disp(rp,"R_P(in k-ohm) = L / C*R =")
av=(-5*10^-3)*((500*20*10^3)/(520))
format(6)
disp(av,"(iii) A_v = -g_m*R_L = -g_m*(r_d||R_P) =")
bw=(5/(2*%pi*100*10^-6))*10^-3
disp("(iv) BW = f_r/Q")
disp(" BW = f_r*R / omega_r*L Therefore, Q = omega_r*L / R")
disp(bw," BW(in kHz) = R / 2*pi*L =")
|
9fc03263d838d7c3857008c802d19e44a806a9d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH24/EX24.11/24_11.sce | 73e0e273f121489a38cd5c9b5cbed82a4f6b9dab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,077 | sce | 24_11.sce | //Problem 24.11:A coil of resistance R ohms and inductance L henrys is connected in series with a 50 μF capacitor. If the supply voltage is 225 V at 50 Hz and the current flowing in the circuit is 1.56/_-30° A, determine the values of R and L. Determine also the voltage across the coil and the voltage across the capacitor.
//initializing the variables:
C = 50E-6; // in Farads
f = 50; // in Hz
V = 225; // in volts
ri = 1.5; // in Amperes
thetai = -30; // in degrees
//calculation:
I = ri*cos(thetai*%pi/180) + %i*ri*sin(thetai*%pi/180)
//Capacitive reactance, Xc
Xc = 1/(2*%pi*f*C)
//Circuit impedance Z
Z = V/I
R = real(Z)
XL = imag(Z) + Xc
//inductance L
L = XL/(2*%pi*f)
//Voltage across coil
Zcoil = R + %i*XL
Vcoil = I*Zcoil
//Voltage across capacitor,
Vc = -1*I*Xc*%i
printf("\n\n Result \n\n")
printf("\n (a)resistance is %.2f ohm and inductance is %.2f H ",R, L)
printf("\n (b)voltage across the coil is %.2f + (%.2f)i V ",real(Vcoil), imag(Vcoil))
printf("\n (c)voltage across the capacitor is %.2f + (%.2f)i V ",real(Vc), imag(Vc)) |
6f6e576503df511b294fdbb19e3ff013b344b46d | fbd17575bab2ee4dc49cc7d13b5b94d24ab9482c | /TP5/newton (2).sci | 979c29e766ba78318c55da4b1e8cff54895aa7d2 | [] | no_license | 1saac-W/MT09-Analyse-Num-rique | 05b509981dfa00e3b7b550716b1487cbbf0a3fed | 0853f8053254f5dd23179073187ada3d936aff84 | refs/heads/master | 2020-09-27T04:34:36.549125 | 2020-01-05T16:02:18 | 2020-01-05T16:02:18 | 226,431,201 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 360 | sci | newton (2).sci | function [x, k] = newton(foncjac, tol, N, x0)
X = [];
x = x0;
for k = 1:N
X = [X,x];
[F,J] = foncjac(x);
h = -J\F;
if norm(h,2) < tol
[F,J] = foncjac(x);
x = X;
return [x,k];
else
x = x+h;
end
end
disp('newton did not converge');
endfunction
|
3d997dc1f53f85ed0e7566c7b550ce2e635d5f11 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH17/EX17.16/Ex17_16.sce | e627244be2c801db644983d3e07cb4dd18571ef2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | Ex17_16.sce | //Initilization of variables
l=2 //m
m=4 //kg
w_1=20 //rpm
w_2=50 //rpm
rev=10 //no of revolution
//Calculations
Io=(1/3)*(m)*l^2 //kg.m^2
w1=(2*%pi*w_1)/60 //rad/s
w2=(2*%pi*w_2)/60 //rad/s
theta=2*%pi*rev //rad
M=(0.5*Io*(w2^2-w1^2))/theta //N.m
//result
clc
printf('The constant moment required is %fN.m',M)
|
33c81389567a88cabbc334e61daa3f28135f38a3 | 3cbee2296fd6b54f80587eead83813d4c878e06a | /sci2blif/sci2blif_added_blocks/common_source_nfg.sce | 37a7dfa1fd95ac0953ef64a88311c1ec348fa38c | [] | no_license | nikhil-soraba/rasp30 | 872afa4ad0820b8ca3ea4f232c4168193acbd854 | 936c6438de595f9ac30d5619a887419c5bae2b0f | refs/heads/master | 2021-01-12T15:19:09.899590 | 2016-10-31T03:23:48 | 2016-10-31T03:23:48 | 71,756,442 | 0 | 0 | null | 2016-10-24T05:58:57 | 2016-10-24T05:58:56 | null | UTF-8 | Scilab | false | false | 559 | sce | common_source_nfg.sce | //************************* Common Source conventional ******************************
if (blk_name.entries(bl) =='common_source_nfg') then
mputl("# Common Source conventional",fd_w);
for ss=1:scs_m.objs(bl).model.ipar(1)
cap_str= ".subckt common_source_nfg in[0]=net"+string(blk(blk_objs(bl),2))+'_'+ string(ss)+" in[1]=net"+string(blk(blk_objs(bl),3))+'_'+ string(ss)+" out=net"+ string(blk(blk_objs(bl),2+numofip))+'_'...
+ string(ss) + " #common_source_nfg_fg =0";
mputl(cap_str,fd_w);
mputl(" ",fd_w);
end
end
|
7591024b1555d2da96daa6dd1b1b30aeec280df8 | 191707dd19837f7abd6f4255cd42b78d3ca741c5 | /X11R5/contrib/lib/andrew/overhead/cmenu/tests/nospaces.tst | 62e89b05cc8839b9ca509e633907aad05c9ebdae | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | yoya/x.org | 4709089f97b1b48f7de2cfbeff1881c59ea1d28e | fb9e6d4bd0c880cfc674d4697322331fe39864d9 | refs/heads/master | 2023-08-08T02:00:51.277615 | 2023-07-25T14:05:05 | 2023-07-25T14:05:05 | 163,954,490 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 129 | tst | nospaces.tst | 0 1 0
1 10 1 First
1 11 2 Second
1 13 3 Third
1 14 9 Fourth
1 15 4 Fifth
1 16 0 Sixth
1 17 0 Seventh
1 18 0 Eighth
1 19 0 Ninth
|
d922b84505c6f1f3e701e10c520f867bafcda9aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH11/EX11.22/22.sce | 932968eab8f7c3b76f9f09866c65abab1f44551b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 899 | sce | 22.sce | clc
// C2H6O + 3O2 + 3*79/21 N2 → 2CO2 + 3H2O + 3*79/21 N2
O2_req=3*32/46;
AF=O2_req/0.233;
disp("Stoichiometric A/F ratio =")
disp(AF)
mix=0.8; //mixture strength
AF_actual=AF/mix;
disp("Actual A/F ratio =")
disp(AF_actual)
// C2H6O + 1.25*(3 O2 + 3*79/21 N2) → 2CO2 + 3H2O + 0.25*3O2 + 1.25*3*79/21 N2
n=2+3+0.75+14.1;
disp("Hence wet analysis is")
disp("CO2 =")
CO2=2/n*100;
disp(CO2)
disp("%")
disp("H2O =")
H2O=3/n*100;
disp(H2O)
disp("%")
disp("O2 =")
O2=0.75/n*100;
disp(O2)
disp("%")
disp("N2 =")
N2=14.1/n*100;
disp(N2)
disp("%")
nd=2+0.75+14.1; //total dry moles
disp("Hence dry analysis is : ")
disp("CO2 =")
CO2=2/nd*100;
disp(CO2)
disp("%")
disp("O2 =")
O2=0.75/nd*100;
disp(O2)
disp("%")
disp("N2 =")
N2=14.1/nd*100;
disp(N2)
disp("%")
mix=1.3;
AF_act=AF/mix;
disp("Actual A/F ratio =")
disp(AF_act) |
a8d92c73d9daaba225bd4f09fe11b8266cf00275 | 25ec4bae7c1d991a8b4f36a96650a07061417648 | /Exemplos/exemplo05AjusteMotores/plotaPotencia.sce | 0564630f6d4d220c67028a9ade51415a66636ba2 | [] | no_license | OtacilioNeto/EV3MicroPythonExamples | 716f76e4179d98157577d68b116a33a078aed085 | 037af9585402fe294d3c82d3b7d88cb49bc26bcf | refs/heads/master | 2023-06-08T19:34:49.916922 | 2023-06-02T13:24:10 | 2023-06-02T13:24:10 | 226,492,496 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,421 | sce | plotaPotencia.sce | funcprot(0)
clc
function ret=MinimosQuadrados(Y, X)
n = size(X)(1)
ret(1) = (n*X'*Y - sum(X)*sum(Y)) / (n*sum(X^2) - sum(X)^2)
ret(2) = mean(Y) - ret(1)*mean(X)
endfunction
exec(get_absolute_file_path('plotaPotencia.sce')+'datalog.sce', 0);
scf(1001)
clf()
// subplot(3,2,1);
plot2d(datalog(:,1), datalog(:,2:3), leg="Motor Esquerdo@Motor Direito", style=[-3, -2])
p = get("hdl")
p.children(1).mark_size=3;
p.children(2).mark_size=3;
p.parent.x_label.text = "Potência (%)"
p.parent.x_label.font_size = 4;
p.parent.y_label.text = "Graus/%S"
p.parent.y_label.font_size = 4;
p.parent.title.text = "Giro dos motores vs. Percentual da potência máxima"
p.parent.title.font_size = 4;
p.parent.font_size = 4;
p.parent.box = "on";
p.parent.children(2).font_size = 4;
p.parent.children(2).legend_location="in_lower_right";
p.parent.children(2).fill_mode = "on";
xgrid(5, 1, 7);
// Vamos fazer a regressão linear pelo método dos mínimos quadrados
Y=datalog(:,2);
X=datalog(:,1);
motorEsquerdo = MinimosQuadrados(Y, X)
Y=datalog(:,3);
X=datalog(:,1);
motorDireito = MinimosQuadrados(Y, X)
// Vamos calcular os gráficos
yEsquerdo = motorEsquerdo(1)*datalog(:,1) + motorEsquerdo(2);
yDireito = motorDireito(1)*datalog(:,1) + motorDireito(2);
// Eh preciso retirar a área negativa porque na prática o motor nunca gira para trás no experimento
for i=1:size(yEsquerdo)(1)
if(yEsquerdo(i, 1)<0) then
yEsquerdo(i, 1) = 0;
end
end
for i=1:size(yDireito)(1)
if(yDireito(i, 1)<0) then
yDireito(i, 1) = 0;
end
end
scf(1002)
clf()
// subplot(3,2,5);
plot2d(datalog(:,1), [datalog(:,2), datalog(:,3), yEsquerdo, yDireito], leg="Motor esquerdo@Motor direito@Função ajustada (motor esquerdo)@Função ajustada (motor direito)", style=[-3, -2, 2, 13])
a=gca(); // Handle on axes entity
a.x_location = "origin";
a.y_location = "origin";
p = get("hdl")
p.children(1).thickness=3;
p.children(2).thickness=3;
p.children(3).mark_size=3;
p.children(4).mark_size=3;
p.parent.x_label.text = "Potência (%)"
p.parent.x_label.font_size = 4;
p.parent.y_label.text = "Graus/%S"
p.parent.y_label.font_size = 4;
p.parent.title.text = "Giro dos motores vs. Percentual da potência máxima"
p.parent.title.font_size = 4;
p.parent.font_size = 4;
p.parent.box = "on";
p.parent.children(2).font_size = 4;
p.parent.children(2).legend_location="in_lower_right";
p.parent.children(2).fill_mode = "on";
xgrid(5, 1, 7);
scf(1003)
clf()
// subplot(3,2,3);
plot2d(datalog(:,1), [yEsquerdo, yDireito], leg="Função ajustada (motor esquerdo)@Função ajustada (motor direito)", style=[2, 13])
a=gca(); // Handle on axes entity
a.x_location = "origin";
a.y_location = "origin";
p = get("hdl")
p.children(1).thickness=3;
p.children(2).thickness=3;
p.parent.x_label.text = "Potência (%)"
p.parent.x_label.font_size = 4;
p.parent.y_label.text = "Graus/%S"
p.parent.y_label.font_size = 4;
p.parent.title.text = "Giro dos motores vs. Percentual da potência máxima"
p.parent.title.font_size = 4;
p.parent.font_size = 4;
p.parent.box = "on";
p.parent.children(2).font_size = 4;
p.parent.children(2).legend_location="in_lower_right";
p.parent.children(2).fill_mode = "on";
xgrid(5, 1, 7);
scf(1004)
clf()
yDesejadoEsquerdo = datalog(:, 1)*yEsquerdo(size(yEsquerdo)(1))/datalog(size(datalog)(1),1)
yDesejadoDireito = datalog(:, 1)*yDireito(size(yDireito)(1))/datalog(size(datalog)(1),1)
plot2d(datalog(:,1), [yDesejadoEsquerdo, yDesejadoDireito], leg="Motor esquerdo@Motor direito", style=[2, 13])
a=gca(); // Handle on axes entity
a.x_location = "origin";
a.y_location = "origin";
p = get("hdl")
p.children(1).thickness=3;
p.children(2).thickness=3;
p.parent.x_label.text = "Potência (%)"
p.parent.x_label.font_size = 4;
p.parent.y_label.text = "Graus/%S"
p.parent.y_label.font_size = 4;
p.parent.title.text = "Resposta desejada dos motores"
p.parent.title.font_size = 4;
p.parent.font_size = 4;
p.parent.box = "on";
p.parent.children(2).font_size = 4;
p.parent.children(2).legend_location="in_lower_right";
p.parent.children(2).fill_mode = "on";
xgrid(5, 1, 7);
scf(1005)
clf()
plot2d(datalog(:,1), [yEsquerdo, yDireito, yDesejadoEsquerdo], leg="Função ajustada (motor esquerdo)@Função ajustada (motor direito)@Função desejada")
a=gca(); // Handle on axes entity
a.x_location = "origin";
a.y_location = "origin";
p = get("hdl")
p.children(1).thickness=3;
p.children(2).thickness=3;
p.children(3).thickness=3;
p.parent.x_label.text = "Potência (%)"
p.parent.x_label.font_size = 4;
p.parent.y_label.text = "Graus/%S"
p.parent.y_label.font_size = 4;
p.parent.title.text = "Funçõs desejadas vs.funções obtidas"
p.parent.title.font_size = 4;
p.parent.font_size = 4;
p.parent.box = "on";
p.parent.children(2).font_size = 4;
p.parent.children(2).legend_location="in_lower_right";
p.parent.children(2).fill_mode = "on";
xgrid(5, 1, 7);
// A funcao de correção é potr = pot*100/(100-zona morta) + zona morta
B = - motorEsquerdo(2)/motorEsquerdo(1);
A = (yEsquerdo(size(yEsquerdo)(1)) - B) / yEsquerdo(size(yEsquerdo)(1));
printf("Potência Esquerda(x) = %.4f(x) + %.4f\n", A, B);
B = - motorDireito(2)/motorDireito(1);
A = (yDireito(size(yDireito)(1)) - B) / yDireito(size(yDireito)(1));
printf("Potência Direita(x) = %.4f(x) + %.4f\n", A, B);
printf("VOCÊ JÁ MEDIU OS VALORES CORRIGIDOS [S/N]?");
// Carregar os valores corrigidos
exec(get_absolute_file_path('plotaPotencia.sce')+'datalog2.sce', 0);
// Vamos ajustar duas retas. Uma para cada motor.
scf(1006)
clf()
// subplot(3,2,2);
plot2d(datalog(:,1), datalog(:,2:3), leg="Motor esquerdo@Motor direito", style=[-3, -2])
p = get("hdl")
p.children(1).mark_size=3;
p.children(2).mark_size=3;
p.parent.x_label.text = "Potência (%)"
p.parent.x_label.font_size = 4;
p.parent.y_label.text = "Graus/%S"
p.parent.y_label.font_size = 4;
p.parent.title.text = "Giro dos motores vs. Percentual da potência máxima após correção"
p.parent.title.font_size = 4;
p.parent.font_size = 4;
p.parent.box = "on";
p.parent.children(2).font_size = 4;
p.parent.children(2).legend_location="in_lower_right";
p.parent.children(2).fill_mode = "on";
xgrid(5, 1, 7);
// Vamos fazer uma regressão linear para ajustar duas retas. Uma para cada motor.
Y=datalog(:,2);
X=datalog(:,1);
motorEsquerdo=MinimosQuadrados(Y, X);
Y=datalog(:,3);
X=datalog(:,1);
motorDireito=MinimosQuadrados(Y, X);
// Vamos calcular os gráficos
yEsquerdoC = motorEsquerdo(1)*datalog(:,1) + motorEsquerdo(2);
yDireitoC = motorDireito(1)*datalog(:,1) + motorDireito(2);
for i=1:size(yEsquerdoC)(1)
if(yEsquerdoC(i, 1)<0) then
yEsquerdoC(i, 1) = 0;
end
end
for i=1:size(yDireitoC)(1)
if(yDireitoC(i, 1)<0) then
yDireitoC(i, 1) = 0;
end
end
scf(1007)
clf()
// subplot(3,2,6);
plot2d(datalog(:,1), [datalog(:,2), datalog(:,3), yEsquerdoC, yDireitoC], leg="Motor esquerdo@Motor direito@Função ajustada (motor esquerdo)@Função ajustada (motor direito)", style=[-3, -2, 2, 13])
a=gca(); // Handle on axes entity
a.x_location = "origin";
a.y_location = "origin";
p = get("hdl")
p.children(1).thickness=3;
p.children(2).thickness=3;
p.children(3).mark_size=3;
p.children(4).mark_size=3;
p.parent.x_label.text = "Potência (%)"
p.parent.x_label.font_size = 4;
p.parent.y_label.text = "Graus/%S"
p.parent.y_label.font_size = 4;
p.parent.title.text = "Giro dos motores vs.Percentual da potência máxima após correção"
p.parent.title.font_size = 4;
p.parent.font_size = 4;
p.parent.box = "on";
p.parent.children(2).font_size = 4;
p.parent.children(2).legend_location="in_lower_right";
p.parent.children(2).fill_mode = "on";
xgrid(5, 1, 7);
scf(1008)
clf()
// subplot(3,2,4);
plot2d(datalog(:,1), [yEsquerdoC, yDireitoC], leg="Função ajustada (motor esquerdo)@Função ajustada (motor direito)", style=[2, 13])
a=gca(); // Handle on axes entity
a.x_location = "origin";
a.y_location = "origin";
p = get("hdl")
p.children(1).thickness=3;
p.children(2).thickness=3;
p.parent.x_label.text = "Potência (%)"
p.parent.x_label.font_size = 4;
p.parent.y_label.text = "Graus/%S"
p.parent.y_label.font_size = 4;
p.parent.title.text = "Giro dos motores vs.Percentual da potência máxima após correção"
p.parent.title.font_size = 4;
p.parent.font_size = 4;
p.parent.box = "on";
p.parent.children(2).font_size = 4;
p.parent.children(2).legend_location="in_lower_right";
p.parent.children(2).fill_mode = "on";
xgrid(5, 1, 7);
|
b713ef292b417c4750b64737b92a4a9562fb1e70 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH15/EX15.1/ex15_1.sce | 7b97789f47abbe3ab0fb85dee0bdf3f57bbc7ccb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 424 | sce | ex15_1.sce | //Chapter-15, Example 15.1, Page 492
//=============================================================================
clc
clear
//INPUT DATA
x=12;//in decimal form
//CALCULATIONS
y=dec2oct(x);//converting to octal form
mprintf("Thus octal number is");
disp(y);
//=================================END OF PROGRAM=======================================================================================================
|
fca5be13ec1aeb8d486049ee1ce360aded370e06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3250/CH2/EX2.5/Ex2_5.sce | 7081419b996f316713a03fa0ab73895693863dd7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,059 | sce | Ex2_5.sce | clc
// Given that
thetaF= 1540 // Temperature of mould face in degree centigrade
Theta0 = 28 // Initial temperature of mould in Degree centigrade
L= 272e3 // Latent heat of liquid metal in J/Kg
Dm = 7850 // Density of liquid metal in Kg/m^3
c = 1.17e+3 //Specific heat of sand in J/Kg-K
k = 0.8655 // Conductivity of sand in W/m-K
D= 1600 // Density of sand in Kg/m^3
h = 0.1 // Height in m
b = 10 // Thickness of slab in cm
r =h/2// V/A in meter
// Sample Problem 5 on page no. 66
printf("\n # PROBLEM 2.5 # \n")
lambda = (thetaF - Theta0)*(D*c)/(Dm*L)
Beta1 = 2*lambda/sqrt(%pi)
Alpha = k /(D*c)
ts1 = r^2 /((Beta1^2)*Alpha)//In sec
ts1_=ts1/3600 // In hour
Beta= poly(0,"Beta");
p=Beta^2 - lambda*(2/sqrt(%pi))*Beta -lambda/3
Beta2 = roots(p)
printf(" The value of Beta2 is %f, ",Beta2)
printf("\n We only take the positive value of Beta2 , \n Hence Beta2=1.75")
r1 = r/3
ts2 = (r1^2)/((1.75^2)*Alpha) // in sec
ts2_=ts2/3600//in Hour
printf("\n\n Solidification time for slab-shaped casting = %f hr,\n Solidification time for sphere = %f hr", ts1_,ts2_)
|
73bb1b2c73bfced0aa1047e1bc5ad1ae0a249386 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/IncNavierStokesSolver/Tests/Tet_channel_m4_per.tst | 5ef4ed4ee4c4a5202e2a0e6fa227663e9109e826 | [
"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,067 | tst | Tet_channel_m4_per.tst | <?xml version="1.0" encoding="utf-8" ?>
<test>
<description>3D channel flow, Tetrahedral elements, P=4, periodic BCs</description>
<executable>IncNavierStokesSolver</executable>
<parameters>-I GlobalSysSoln=DirectStaticCond Tet_channel_m4_per.xml</parameters>
<files>
<file description="Session File">Tet_channel_m4_per.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="1e-12">2.169e-15</value>
<value variable="v" tolerance="1e-12">2.23196e-16</value>
<value variable="w" tolerance="1e-12">4.49841e-16</value>
<value variable="p" tolerance="1e-8">1.65856e-14</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="1e-12">2.10942e-15</value>
<value variable="v" tolerance="1e-12">3.00716e-16</value>
<value variable="w" tolerance="1e-12">3.21388e-16</value>
<value variable="p" tolerance="1e-8">1.02141e-14</value>
</metric>
</metrics>
</test>
|
a69aa859fb6f18c99552b98151950eccbe3dd4ad | 63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa | /test/0017.tst | c522e38179d072f01a882883d55acd9598b05f87 | [] | 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 | 319 | tst | 0017.tst | spLiTtEr eP {}
fIlteR W { }
FILteR I {dFA oR nOt O oR V }
m bRanCh N -> PHs
GrOUPeR YMaOp {AgGrEGATE bitand(vWT.Oo) aS J }
UNgroUper PH { }
GrOuPFIltER h {}
MerGer N { mODUle X { bRAnCHes UvN, Y, GNO } MoDULE dr { BRanChes fUq, TeN } MoDuLe u { BRAnchEs hl } MODUle Zt { BRaNChEs ZLL, M, aB } ExPORT MX } |
a05fa8add5b5ac3cb946e5e1156e2a51b687633a | 28a8d47c4d79b231f8bebc28925792a290f67e9f | /bk/others/sql/test_new_model.tst | afc9d949ff9bb41959daf764d49707588476c3e2 | [] | no_license | ZVlad1980/doo | a1fe7d18ccfd0acf6ced7dbb33927c86a925aae8 | e81be8f524b78b9a6ec06b7f83a8c13354fc6412 | refs/heads/master | 2021-08-17T02:03:54.553822 | 2017-11-20T17:21:03 | 2017-11-20T17:21:03 | 111,440,129 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,748 | tst | test_new_model.tst | PL/SQL Developer Test script 3.0
48
-- Created on 22.08.2014 by ZHURAVOV_VB
declare
-- Local variables here
r xxapps.xxapps_service_raw_block;
start_time timestamp;
l_callback_id varchar2(32);
--
function request(book_name varchar2,
query varchar2,
path varchar2,
inputs varchar2,
meta varchar2) return xxapps.xxapps_service_raw_block is
begin
dbms_session.set_context(namespace => 'CLIENTCONTEXT', attribute => 'SERVICE_TAILURI', value => query);
return xxdoo_ee.xxdoo_bk_ee_gateway_pkg."request"("book_name" => book_name,
"path" => path,
"inputs" => inputs,
"meta" => meta --
);
end;
begin
--dbms_session.reset_package; return;
/*select id
into l_callback_id
from xxdoo.xxdoo_bk_callbacks_t
where rownum = 1; --*/
xxdoo.xxdoo_utl_pkg.init_exceptions;
start_time := current_timestamp;
r := request(book_name => 'journals',
query => '',
path => '/raw/DEV12/oralce.organaizers.journals/call/',
inputs => '',
meta => '' --
); --*/
--
dbms_output.put_line(r.clob_value);
--
dbms_output.put_line('Total processing time = ' || regexp_substr(to_char(current_timestamp - start_time), '[^ ]+', 1, 2));
xxdoo.xxdoo_utl_pkg.show_errors;
--
exception
when others then
xxdoo.xxdoo_utl_pkg.fix_exception;
xxdoo.xxdoo_utl_pkg.show_errors;
end;
0
2
self.path
|
4440fbb79353273bb62a4f55f79273970b658e63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH9/EX9.9/example9.sce | 3f8c3729ee4a8c73b8da63e94ab7787cbd6ae5f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 959 | sce | example9.sce | //Chapter-9 example 9
//=============================================================================
clc;
clear;
//input data
F = 9*10^9;//radar operating frequency in hz
Vo = 3*10^8;//velocity of EM wave in m/s
Gp = 100;//power gain of antenna in dB
//Calculations
lamda = Vo/F;//wavelength
//antilog calculation
//100 = 10log10(Gp);
//10 = log(Gp);
G = 10^10;//gain of antenna
Da = lamda*sqrt(G/6.4)//diameter of parabolic antenna in m
A = (%pi*Da*Da)/4;//Area of antenna
Ac = 0.65*A;//capture area
NNBW = 140*(lamda/Da);//beamwidth b/w null to null
HPBW = 70*(lamda/Da);//half power beamwidth in deg
//Output
mprintf('NNBW of parabolic reflector is %g degrees\n HPBW of parabolic reflector is %g degrees\n',NNBW,HPBW);
mprintf('\n Mouth diameter of parabolic reflector is %3.3f m\n Capture area is %3.2f m^2',Da,Ac);
//=============end of the program==============================================
|
45eeb6f266716d8b2c5b08f5b2af34623c3c4e0e | 3cbdc2f272df05cfe8c6636d4504e9e3d2e4fe3f | /SciLab/BakerCode.sce | 34d1e998829c1204f21e4112ff384a172cad719b | [] | no_license | bozhink/Code-Chunks | 74355eb4c0d423c2f6484226e564030dff798678 | 860b7b8f53089ed96fd0ebead2e3eec16fa377cb | refs/heads/master | 2020-12-24T06:19:04.343239 | 2019-11-13T14:09:15 | 2019-11-13T14:09:15 | 42,819,484 | 0 | 1 | null | 2019-11-13T14:09:16 | 2015-09-20T16:09:09 | HTML | UTF-8 | Scilab | false | false | 438 | sce | BakerCode.sce | function [pp,qq]=baker(p,q)
if 0<=q & q <= 0.5 then
pp = p/2;
qq = 2*q;
elseif 0.5 < q & q <= 1 then
pp = (p+1)/2;
qq = 2*q-1;
else
disp("Error: q must be in interval [0,1): q="+string(q));
pp=0;
qq=0;
end
endfunction
function [pp,qq]=BakerCode(n,p,q)
pp(1) = p;
qq(1) = q;
for i = 2:n
[pp(i),qq(i)] = baker(pp(i-1),qq(i-1));
end
endfunction |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.