blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5895f1690a0f31e110970fd57d33af1f756cf7e1 | a589f95d013369896bef66dc002835588232d49b | /spaceRCSN.sce | b54f8736aea1ac1ff265320b262e80d5d00130c1 | [] | no_license | saifsmailbox98/scilab-linear-algebra | c26273bbeb8031874e7b13e90a0d191f7a331bd8 | 2249f2d46672c8acb35e25f719c64f1db6823326 | refs/heads/master | 2020-05-03T12:17:35.971027 | 2019-04-07T18:26:23 | 2019-04-07T18:26:23 | 178,621,819 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 919 | sce | spaceRCSN.sce | function [rowspace, dimR, colspace, dimC, nullspace, dimN] = spaceRCSN(A)
[m, n] = size(A);
r = rank(A);
echelon = rref(A);
rowspace = zeros(r, n);
colspace = zeros(r, m);
k = 1;
for i=1:m
if ~and(echelon(i, :)==0) then
rowspace(k, :) = echelon(i, :);
colspace(k, :) = A(:, i);
k = k+1;
end
end
nullspace = kernel(A);
dimR = r;
dimC = r;
dimN = n - r;
endfunction
A = [1 -1 1 3 2;2 -1 1 5 1; 0 1 -1 -1 -3];
[r, dr, c, dc, n, dn] = spaceRCSN(A);
disp(r);
disp(dr);
disp(c);
disp(dc);
disp(n);
disp(dn);
/*
1. 0. 0. 2. -1.
0. 1. -1. -1. -3.
2.
1. 2. 0.
-1. -1. 1.
2.
-0.1354001 0.0393158 0.9006148
0.921171 -0.200996 0.1629036
-0.1169189 -0.9496078 0.008238
0.2063272 0.0900949 -0.3638827
0.2772542 0.2195057 0.1728494
3.
*/
|
0910e578ee3bc5d6c4fd925caae380f3cbdd9201 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3843/CH9/EX9.12/Ex9_12.sce | aaba81941221b263c0f92d0594a58ec406515261 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 808 | sce | Ex9_12.sce | // Example 9_12
clc;funcprot(0);
// Given data
// From example 9.9
P_1=100;// kPa
P_4=500;// kPa
T_1=25+273;// K
T_6=850+273;// The maximum temperature in K
c_p=1.00// kJ/kg.K
k=1.4;// The specific heat ratio
// Calculation
P_2=sqrt(P_1*P_4);// The intermediate pressure in kPa
T_2=T_1*(P_2/P_1)^((k-1)/k);// K
T_8=T_6;// K
P_7=P_2;// kPa
P_6=P_4;// kPa
T_7=T_6*(P_7/P_6)^((k-1)/k);// K
T_9=T_7;// K
T_5=T_7;// K
T_4=T_2;// K
T_3=T_1;// K
w_turb=(c_p*(T_6-T_7))+(c_p*(T_8-T_9));// kJ/kg
w_comp=(c_p*(T_2-T_1))+(c_p*(T_4-T_3));// kJ/kg
w_out=w_turb-w_comp;// kJ/kg
q_C=c_p*(T_6-T_5);// kJ/kg
q_R=c_p*(T_8-T_7);// kJ/kg
q_in=q_C+q_R;// kJ/kg
n=w_out/q_in;// The thermal efficiency of the cycle
printf("\nThe thermal efficiency of the cycle,n=%0.3f or %2.1f percentage",n,n*100);
|
701ff193ea272c2732158534f2df03f0b73f8c43 | e797ba1aae8afbcf9d2dcdc83c8cf4b45c749347 | /HW3/output2.tst | be52cf4d275c01df96383cedb625505307fb5ff5 | [] | no_license | muff1nman/cs400 | 4fbabe395f49a4d9f8a32be3932fe77d105c9e4e | 428450ff21c2cf7e2d300f01a89903f544b8c5c2 | refs/heads/master | 2021-01-15T16:56:30.816211 | 2013-04-17T20:58:14 | 2013-04-17T20:58:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,552 | tst | output2.tst | <BLKCMT> ********************
<NEWLINE> 4
<NEWLINE> 5
<ID> R0
<ASSIGN> =
<INT> 12
<SEMI> ;
<NEWLINE> 6
<ID> R1
<ASSIGN> =
<FLT> 4.2
<SEMI> ;
<NEWLINE> 7
<ID> R2
<ASSIGN> =
<FLT> .1
<SEMI> ;
<NEWLINE> 8
<ID> R3
<ASSIGN> =
<FLT> 1.
<SEMI> ;
<NEWLINE> 9
<ID> R4
<ASSIGN> =
<FLT> 4.2E+9
<SEMI> ;
<NEWLINE> 10
<ID> R5
<ASSIGN> =
<FLT> 2E-6
<SEMI> ;
<NEWLINE> 11
<ID> R7
<ASSIGN> =
<SUB> -
<FLT> 1.E12
<SEMI> ;
<NEWLINE> 12
<NEWLINE> 13
<ID> R8
<ASSIGN> =
<ID> R1
<ADD> +
<SUB> -
<FLT> 4.9
<SUB> -
<ID> R3
<BLKCMT> (R3+12)
<ADD> +
<ID> R3
<SEMI> ;
<NEWLINE> 14
<ID> R9
<ASSIGN> =
<INT> 15
<MUL> *
<OPAREN> (
<FLT> 3.4
<ADD> +
<FLT> .09
<CPAREN> )
<EXP> ^
<ID> R5
<SEMI> ;
<EOLCMT> #20EOL#20comment
<NEWLINE> 15
<NEWLINE> 16
<ID> R1
<INT> 2
<ASSIGN> =
<FLT> 2.6E-6
<ADD> +
<SUB> -
<ADD> +
<ID> R0
<EOLCMT> #20Odd,#20but#20legal
<NEWLINE> 17
<BAD> T
<INT> 34
<ASSIGN> =
<BAD> 2.4E
<BAD> F
<INT> 9
<EOLCMT> #20BAD#20stuff
<NEWLINE> 18
<ID> R1
<INT> 42
<ASSIGN> =
<OPAREN> (
<ID> R1
<BAD> &&
<ID> R5
<CPAREN> )
<EOLCMT> #20More#20BAD#20stuff
<NEWLINE> 19
<BAD> This
<BAD> should
<BAD> give
<BAD> the
<BAD> ni
<INT> 9
<BAD> ne
<NEWLINE> 20
<NEWLINE> 21
<END> 71
|
bea9e85c2e9aa3b810ea1cba5825a6c41b49c47c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH2/EX2.20/ex2_20.sce | adfe31e63b0ee21996f02b0c64071fd21b0defcf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 442 | sce | ex2_20.sce | // Exa 2.20
clc;
clear;
close;
// Given data
Sigma = 5.8*10^7;// in mho/m
l = 1;// in m
d = 1;// in cm
d = d * 10^-2;// in m
W = 1;// in mm
W = W*10^-3;// in m
I = 1;// in Amp
B = 1;// in Tesla
V_H = 0.074*10^-6;// in Volts
A = 10^-2 * 10^-3;// in m^2
R_H = (V_H*A)/(B*I*d);// in m^3/c
disp(R_H,"Hall coefficient in m^3/c is");
Miu = Sigma * R_H;// in m^2/volt.sec
disp(Miu,"The mobility of electron in m^2/volt.sec is");
|
a5dae2207de631f5f271b5a26e64a750e4f8a73b | 499d051e2a4fa1bb1cc5ac86c4fe23ae88d60a6d | /scilab/get_inverses.sci | a0b227ec68a93db38eec94f27fc88d63bd5465a0 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gap-packages/automgrp | 27ef69cfb6a97093e708c4241abc2f002053359b | bae72980572af919f6498e13e88d71feb9175875 | refs/heads/master | 2022-10-11T13:52:38.771189 | 2022-09-23T07:10:33 | 2022-09-23T07:10:33 | 209,880,291 | 2 | 0 | MIT | 2022-01-27T00:21:10 | 2019-09-20T21:00:32 | GAP | UTF-8 | Scilab | false | false | 346 | sci | get_inverses.sci | //
function [full_mat] = get_inverses(mat)
[m, d] = size(mat);
inv_mat = mat;
for i = 1:m
if inv_mat(i,3) == 0 then
inv_mat(i,1) = inv_mat(i,1) + m;
inv_mat(i,2) = inv_mat(i,2) + m;
else
t = inv_mat(i,1);
inv_mat(i,1) = inv_mat(i,2) + m;
inv_mat(i,2) = t + m;
end
end
full_mat = [mat; inv_mat];
endfunction
|
3c26f297428f94c27b5f6c6492356afc21245974 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2657/CH2/EX2.19/Ex2_19.sce | e5b3e8286fd6b49faeaab37ddecbbb23e98f9da4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,977 | sce | Ex2_19.sce | //Calculations for comparision of Otto cycle and Diesel cycle
clc,clear
//Given:
n=6 //Number of cylinders
V_s=300 //Engine swept volume in cm^3 per cylinder
r=10 //Compression ratio
N=3500 //Engine speed in rpm
bp=75 //Brake power in kW
P1=1 //Pressure at 1 in bar
T1=15+273 //Temperature at 1 in K (misprint)
cv=0.718 //Specific heat at constant volume in kJ/kgK
cp=1.005 //Specific heat at constant pressure in kJ/kgK
g=1.4 //Specific heat ratio(gamma)
//Solution:
//Refer fig 2.32
//Otto cycle
eta_o=1-1/r^(g-1) //Cycle efficiency
Q1=bp/eta_o //Rate of heat addition in kW
P_o=bp/n //Power output per cylinder in kW
W_o=P_o/(N/(2*60)) //Work output per cycle per cylinder in kJ
mep_o=W_o/V_s*10^6/100 //Mean effective pressure in bar
T2=T1*r^(g-1) //Temperature at 2 in K
Q1=Q1/(n*N/(2*60)) //Heat supplied per cycle per cylinder in kJ
R=0.287 //Specific gas constant in kJ/kgK
v1=R*T1/(P1*100) //Volume of air in m^3/kg
V1=V_s/(1-1/r)*10^-6 //Volume at 1 in m^3
m=V1/v1 //Mass of the air in kg
T3=T2+Q1/(m*cv) //Temperature at 3 in K
//Diesel cycle
T3!=T2+Q1/(m*cp) //Temperature at 3 in diesel cycle in K
rho=T3!/T2 //Cut off ratio for diesel cycle
eta_d=1-((rho^g-1)/(r^(g-1)*g*(rho-1))) //The air standard efficiency
Power=eta_d*bp/(eta_o) //Power output in kW
P_d=Power/n //Power output per cylinder in kW
W_d=P_d/(N/(2*60)) //Work output per cycle per cylinder in kJ
mep_d=W_d/V_s*10^6/100 //Mean effective pressure in bar
//Results:
printf("\n The rate of heat addition same for both Petrol and Diesel engine, Q1 = %.1f kW",bp/eta_o)
printf("\n For Petrol engine\n\t Cycle efficiency, eta = %.3f\n\t Mean effective pressure, mep = %.2f bar\n\t The maximum temperature of the cycle, Tmax = %.0f K",eta_o,mep_o,T3)
printf("\n For Diesel engine\n\t Cycle efficiency, eta = %.2f\n\t Mean effective pressure, mep = %.2f bar\n\t The maximum temperature of the cycle, Tmax = %.0f K\n\t Power output = %.1f kW",eta_d,mep_d,T3!,Power)
|
8566b3993f2bc38644cf12d25258fe4df6450037 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2621/CH1/EX1.9/Ex1_9.sce | 5ffea5d253c344f310e7235f7bfeea9f3c69bdbb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,512 | sce | Ex1_9.sce | // Example 1.9
clc;
clear;
close;
// Given data
format('v',7);
RC= 2.2;//in kΩ
RE= 4.7;// in kΩ
Ri1= 50*10^-3;// in kΩ
Ri2= 50*10^-3;// in kΩ
VCC= 10;//in V
VEE= 10;// in V
VBE= 0.7;// in V
beta_dc= 100;
beta_ac= 100;
// Part (i)
// Formula Used : ICQ= IE= (VEE-VBE)/(2*RE+Ri/beta_dc)
ICQ= (VEE-VBE)/(2*RE+Ri1/beta_dc);//quiescent collector current in mA
IE= ICQ;// in mA
disp("Part (i) : Dual-input, unbalanced output")
disp(ICQ,"The value of ICQ in mA is : ");
// Quiescent collector-emitter voltage,
VCEQ= VCC+VBE-ICQ*RC;// in V
disp(VCEQ,"The value of VCEQ in volts is : ");
re_desh= 26/IE;// AC emitter resistance in Ω
Rin1= 2*beta_ac*re_desh;// input resistance in Ω
Rin1= Rin1*10^-3;//in kΩ
Rin2= Rin1;// in kΩ
disp(Rin1,"The value of Rin1 in kΩ is : ");
Rout= RC;// in kΩ
disp(Rout,"The value of Rout in kΩ is : ");
disp(RC,"The value of RC in kΩ is : ")
// Formula Used : Ad= Vout/Vind= RC/re_desh
Ad= RC*10^3/(re_desh*2);// voltage gain of dual input, unbalanced output
disp(Ad,"The value of Ad is : ");
// Part (ii)
disp("Part (ii) : Single-output, balanced output");
disp(ICQ,"The value of ICQ in mA is : ");
disp(VCEQ,"The value of VCEQ in volts is : ");
disp(Rin1,"The value of Rin1 in kΩ is : ");
disp(Rout,"The value of Rout in kΩ is : ");
disp(RC,"The value of RC in kΩ is : ")
// Formula Used : Ad= Vout/Vind= RC/re_desh
Ad= RC*10^3/(re_desh);// voltage gain of dual input, unbalanced output
disp(Ad,"The value of Ad is : ");
|
4044cbd54b0f2ba77bf31af791dc04ecd8950e99 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/colormap.man.tst | fbbdea490a5775e3531791d7af5d22439afd0216 | [
"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 | 200 | tst | colormap.man.tst | clear;lines(0);
m=228;
n= fix(3/8*m);
r=[(1:n)'/n; ones(m-n,1)];
g=[zeros(n,1); (1:n)'/n; ones(m-2*n,1)];
b=[zeros(2*n,1); (1:m-2*n)'/(m-2*n)];
h=[r g b];
xset("colormap",h)
plot3d1()
xset("default")
|
ae182a8445fb17b0dbf688520f17560c6c869c28 | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH8/EX8.20/8_20.sce | 2b3418cf81aa664110fa3691f7b487d9ee1fd67a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 677 | sce | 8_20.sce | P1 = 1; T1 = 273+30;
P2 = 3.5; T2 = 141+273 ; V = 90;
T0 = 303;
V2 = 100;
// Part (a)
g = 1.4;
T2s = T1*((P2/P1)^((g-1)/g));
disp("As T2s> T2 so the process must be polytropic")
// Part (b)
p = log(P2/P1); q = log(T2/T1);
n = p/(p-q);
disp(n,"The polytropic index is")
// Part (c)
cp = 1.0035; R = 0.287;
Wa = cp*(T1-T2)-(V2^2/2)*1e-03 ;
Wt = -R*T0*log(P2/P1)-(V2^2/2)*1e-03;
Nt = Wt/Wa;
disp(Nt,"The isothermal effiency is")
// Part (d)
f12 = cp*(T1-T2) + T0*((R*log(P2/P1))-(cp*log(T2/T1))) - (V2^2/2)*1e-03 ;
I = f12-Wa ;
disp("kW respectively",I,"and",f12,"The minimum work input and irreversibility are")
// Part (e)
n2 = (f12/Wa);
disp(n2,"Second law efficiency is") |
0196333b221e49881bbf6c4fec458aafe8e67fc4 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Chi-RW-C/results/Chi-RW-C.flare-10-1tra/result1.tst | 60b1ac5d8ba8afefacb542a0b45addc67a53a72d | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 950 | tst | result1.tst | @relation flare
@attribute LargestSpotSize{A,R,S,X,K,H}
@attribute SpotDistribution{X,O,I,C}
@attribute Activity{1,2}
@attribute Evolution{1,2,3}
@attribute Prev24Hour{1,2,3}
@attribute HistComplex{1,2}
@attribute BecomeHist{1,2}
@attribute Area{1,2}
@attribute C-class{0,1,2,3,4,5,6,7,8}
@attribute M-class{0,1,2,3,4,5}
@attribute X-class{0,1,2}
@attribute Class{H,D,C,B,E,F}
@inputs LargestSpotSize,SpotDistribution,Activity,Evolution,Prev24Hour,HistComplex,BecomeHist,Area,C-class,M-class,X-class
@outputs Class
@data
B ?
B ?
B H
D D
D E
B H
D H
D H
E H
C H
E D
H H
H H
C H
D ?
D ?
D ?
H ?
F H
H H
B ?
D C
C H
H H
C ?
H H
H ?
E D
H H
D ?
B D
H H
C H
D ?
B H
D ?
D ?
C H
D ?
C C
D ?
H H
H H
H H
F D
C B
C ?
C H
H H
C ?
F D
C H
D D
B ?
H H
E ?
H ?
H H
B H
H ?
H H
B ?
H H
B C
H H
B H
H H
H H
D ?
H H
C H
E ?
H H
H ?
F ?
B ?
D ?
C C
E ?
C C
E ?
D H
H H
C H
H ?
H ?
D D
C ?
E ?
H ?
C ?
D ?
C ?
B ?
B H
H H
D H
E D
D D
C ?
D ?
E ?
H H
H ?
H ?
C C
D ?
|
4a17afe5e2c3388e878f6eca268e286aa42f50c9 | 42dc5d0801a8341e90573ae6f38cb433a47c3a27 | /TEST/test.tst | e3509bff3de550d1711de7dbb28234548152853b | [
"MIT"
] | permissive | ihgazni2/string-painter | 7b1e5f32b8742ba57503ea7f2fbfab0664fc4cca | 57a456aa65d71b875d41363a71d3f7d588a35c75 | refs/heads/master | 2020-04-08T15:15:50.017154 | 2019-10-03T08:43:14 | 2019-10-03T08:43:14 | 159,471,766 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,212 | tst | test.tst | import spaint.spaint as spaint
from xdict.jprint import pdir,pobj
import elist.elist as elel
from spaint.spaint import *
#1.
spaint.spanpaint("0123456789x",(2,3),'blue',(5,7),'yellow',(9,10),'green')
#2.
spaint.sieipaint("0123456789x",2,3,'blue',5,7,'yellow',9,10,'green')
#3. (2,4) (4,9) (9,lngth)
spaint.sipaint("0123456789x",2,'blue',4,'yellow',9,'green')
#4. (0,4),(4,9),(9,lngth)
spaint.eipaint("0123456789x",4,'blue',9,'yellow')
#5.
spaint.slpaint('<div>','yellow','content','green','</div>','yellow')
ps = spaint.slpaint('<div>','yellow','content','green','</div>','yellow',rtrn=True)
print(ps)
#6.
lines = [
'the first green line',
'the second yellow line',
'the third blue line'
]
colors = ['green','yellow','blue']
spaint.mlpaint(lines,colors)
ps = spaint.mlpaint(lines,colors,rtrn=True)
print(ps)
#7.
rainbow(s*256,10)
#8.
lines = [
'the first line',
'the second line',
'the third line',
'the fourth line',
'the fifth line'
]
rainbow_lines(lines)
#9.
spaint.ansi8_help()
#10.
spaint.ansi8_test(95)
spaint.ansi8_test('brightmagenta')
#11.
spaint.ansi256_help()
#12.
spaint.ansi256_test(2)
spaint.ansi256_test('green')
#
|
06cf7d5bc80d7eb73518a1928bf296df503ee51c | c61d570c37971fa455028a89d2163f455f91c291 | /interpolador_lagrange.sci | 344faaefd6e0f961f39d8c0e5f974f64d20e8f44 | [] | no_license | OgliariNatan/-ScientificComputing | a0af891f900f3f146a9751fd169f96052bd4ba83 | 070ea9d70430ef0c9e7944f491426b73af7c12b0 | refs/heads/master | 2020-04-04T23:13:12.585946 | 2017-07-03T21:46:18 | 2017-07-03T21:46:18 | 81,988,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,415 | sci | interpolador_lagrange.sci | //
// Autor: Jonas Vieira de Souza
//
// TODO: Interpolador de Lagrange
// Exemplo de chamada:
// $$ exec( caminho + 'interpolador_lagrange.sci', -1 );
// $$ x [1 2 5 7 9 21];
// $$ y [4 5 6 7 9 20];
// $$ pa = 15;
// $$ [ vi ] = interpolador_lagrange( x, y, pa );
//
// Retornos:
// $$ vi $$ variavel independente do interpolado
//
// Argumentos:
// $$ _x $$ vetor de valores da Variavel Dependente
// $$ _y $$ vetor de valores da Variavel Independente
// $$ _pa $$ ponto de avalição do Polinônio Interpolador
//
function vi = interpolador_lagrange( _x, _y, _pa )
//Sendo o tamanho dos vectores correspondentes a ordem+1 de lagranje
[ mx, nx ] = size(_x);
[ my, ny ] = size(_y);
if nx ~= ny then
disp("Dados incompatíveis - Tamanho dos dados desiguais");
error("x e y devem ter a mesma dimensão");
end
// Termos do Polinomio interpolador de Lagrange
for i = 1:nx
L(i) = 1;
for j = 1:nx
if j ~= i then
L(i) = L(i)*((_pa-_x(j))/(_x(i)-_x(j)))
end
end
printf("L(%d) = %.4f\n",i,L(i));
// Olhar Slide 13 (pg 35) - Esta Devolvendo o Polinomio.
end
//Avaliando o ponto no polinomio interpolador de Lagrange
vi = 0;
for i = 1:nx
printf("L(%d)*y(%d) = %.4f\n",i,i,(L(i)*_y(i)));
vi = vi + (L(i)*_y(i))
end
endfunction
|
893832314bfe705b02f68d69cfbfe8a5d48cb8e2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH14/EX14.15/example15.sce | b0a523a957a460ce46109dd288a74c7e95f78b3e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,156 | sce | example15.sce | // find Vgs,Id,gm,Vout
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 14-15, page 508
clear; clc; close;
// Given data
k=104*10^-3 ;// constant k of the E-MOSFET
Idon=600*10^-3 ;// in amperes
Vgsth=2.1;// in volts
R1=10^6;// in ohms from the given figure
R2=350*10^3;// in ohms from the given figure
Vin=100*10^-3;// in volts from the given figure
Rd=68;// in ohms from the given figure
Rl=10^3;// in ohms from the given figure
Vdd=12;// drain cutoff voltage in volts from the given figure
// Calculations
Vg=(R2/(R1+R2))*Vdd ;// ground voltage in volts
Vgs=Vg;// Vgs = ground voltage
Id=k*([Vgs-Vgsth]^2)
gm=2*k*(Vgs-Vgsth);//transconductance in Seimens
rd=Rd*Rl/(Rd+Rl) ;// rd=Rd||Rl in ohms
Av=gm*rd;// voltage gain
Vout=Av*Vin;// output voltage in volts
disp("Volts",Vgs,"gate-source voltage=")
disp("Amperes",Id,"drain current=")
disp("Seimen",gm,"transconductane=")
disp("Volts",Vout,"output voltage=")
// Result
// Vgs is 3.11 Volts
// Drain current is 106 mAmperes
// Transconductance is 210 mSeimens
// Output voltage is 1.34 mVolts |
917d757e28f2fe7788f133f0d1b5d50ecef0b772 | 449d555969bfd7befe906877abab098c6e63a0e8 | /273/CH13/EX13.7/ex13_7.sce | 630d60644284580b297a2f4254b5abaf2d2eeae5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 482 | sce | ex13_7.sce | clc;clear;
//Example 13.7
//calculation of uncertainty in position
//1)given values
h=6.626*10^-34;//Planck's constant in Js
v1=220;//velocity of e in m/s
m=9.1*10^-31;//mass of e in kg
A=0.065/100;//accuracy
//1)calculation
v2=v1*A;//uncertainty in speed
x1=h/(2*%pi*m*v2);//
disp(x1,'uncertainty in position of e (in m)is');
//2)given values
m1=150/1000;//mass of object in kg
x2=h/(2*%pi*m1*v2);
disp(x2,'uncertainty in position of baseball(in m) is'); |
ef49a62e7f90d6f85884a77584487d9a02052a92 | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH10/EX10.2/ex2.sce | 21340b2fc0f1563c8f3a9a84710fabb4e757358a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 452 | sce | ex2.sce | // Example 10.2 : W/L ratios for the logic circuit
//For basic inverter
n=1.5;
p=5;
L=0.25*10^-6; // (m)
WbyL=2*n; // W/L for Q_NB , Q_NC , Q_ND
disp(WbyL,"W/L ratio for Q_NB")
disp(WbyL,"W/L ratio for Q_NC")
disp(WbyL,"W/L ratio for Q_ND")
WbyL=n; // W/L ratio for Q_NA
disp(WbyL,"W/L ratio for Q_NA")
WbyL=3*p; // W/L for Q_PA, Q_PC , Q_PD
disp(WbyL,"W/L ratio for Q_PA")
disp(WbyL,"W/L ratio for Q_PC")
disp(WbyL,"W/L ratio for Q_PD") |
8c80c4c16f5f8f5b0db6f7386ccf119d377bb21e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1073/CH3/EX3.38/3_38.sce | b660a3be6083ff0bec4334385bff06541d7eeead | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 660 | sce | 3_38.sce | clc;
clear;
//Example 3.38
v=23.13*10^-6 ; //[m^2/s]
k=0.0321 ; //[W/m.K]
Beta=2.68*10^-3; //[K^-1]
Tw=443 ;//[K]
T_inf=303 ; //[K]
dT=Tw-T_inf; //[K]
g=9.81 ; //[m/s^2]
Npr=0.688; //Prandtl number
D=100 ; //Diameter [mm]
D=D/1000 //Diameter [m]
Nra=(g*Beta*dT*(D^3)*Npr)/(v^2)
Nnu=0.53*(Nra^(1.0/4.0)) //Nusselt number
h=Nnu*k/D //[W/(m^2.K)]
h=7.93 //Approximation
e=0.90; //Emissivity
sigma=5.67*10^-8 ;
//Q=Q_conv+Q_rad //Total heat loss
//for total heat loss per meter length
Q_by_l=h*%pi*D*dT+sigma*e*%pi*D*(Tw^4-T_inf^4) //[W/m]
printf("Total heat loss per metre length of pipe is %f W/m",Q_by_l)
|
3e3bffcba0f998491c2be1db2aa21d87d51c81e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2075/CH4/EX4.3/pe4_3.sce | 1e131c86eaac8a1489bd25b519d5f74f79b2d443 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 193 | sce | pe4_3.sce | //example 4.3
clc; funcprot(0);
// Initialization of Variable
Rl=10;
V=12;
Vl=5;
//calculation
Pl=Vl^2/Rl;
I=Vl/Rl;
Ps=V*I;
Pic=Ps-Pl;
disp(Pic,"power delivered in watt:")
clear()
|
aa0a28f4eff456eb312797ebdc6c749aa85e71e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH11/EX11.2/11_2.sce | b0615e43e96d34c5c04f6fb93a30413b7493d0a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 546 | sce | 11_2.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 11.2
//calculation of the work done in bringing three particles together
//given data
m1=100*10^-3//masss(in kg) of particle1
r=20*10^-2//separation(in m) between the two particles
G=6.67*10^-11//universal constant of gravitation(in N-m^2/kg^2)
//calculation
//since the work done by the gravitational force is equal to change in the potential energy
U=3*(-G*m1*m1/r)
printf('the work done in bringing three particles is %3.1e J',U)
|
23129f5a5547324ee67ac87ebfff0780889fe178 | fdd5981eadab338ec2624b6a22fd0eac6e72c6c5 | /DSScluster.sce | ce2545d8381d5027950353eed5813f9e95eabc0f | [] | no_license | meshcheryakovva/DSS-2017 | 5e2c6b88b657ad7de62ffe658b7aadef73ae7828 | 0171975e96655b6fcc6c334523517d6517492369 | refs/heads/master | 2021-03-09T19:19:56.332398 | 2020-03-10T18:00:29 | 2020-03-10T18:00:29 | 246,371,971 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,091 | sce | DSScluster.sce | // Система поддержки принятия решений
// Прогнозированние перспектив развития кластера
// на основе систем нечеткого логического вывода.
// Реализация в SciLab 5.5.2
// Использованы модули: GUI Builder 3.0, Fuzzy Logic Toolbox (sciFLT 0.4.7)
// Мещеряков В.А., 2017
clc
clear all
funcprot(0)
global stage // флаги завершения этапов ввода данных и расчетов
global outVector // вектор выхода первого каскада
stage = zeros(5, 1); // 5 этапов
outVector = zeros(11 ,1)
exec("wind1.sce");
while ~stage(1)
end
// если первый этап корректно завершен
exec("wind2.sce");
while ~stage(2)
end
// если второй этап корректно завершен
exec("wind2_23.sce");
while ~stage(3)
end
// если третий этап корректно завершен
exec("wind34.sce");
while ~stage(4)
end
exec("wind5.sce");
|
76d537a3c31195a93e4066144ce835ba27faf077 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3869/CH6/EX6.17/Ex6_17.sce | c56f7f454c9b7aaa0e03d2003a2ade0984fc2a08 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 462 | sce | Ex6_17.sce | clear
//
//
//
//Variable declaration
h=2
k=0
l=2 //miller indices
theta=34*%pi/180 //glancing angle(radian)
n=1 //order
lamda=1.5*10**-10 //wavelength of X-ray beam(m)
//Calculation
d=n*lamda/(2*sin(theta))
a=d*sqrt(h**2+k**2+l**2) //lattice constant(m)
//Result
printf("\n lattice constant is %0.4f angstrom",a*10**10)
printf("\n answer given in the book varies due to rounding off errors")
|
2a3dc40e377c06f26116b9c009104e6ac806dd56 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/BIPO/RU62HEJ/ATWM1_Working_Memory_MEG_RU62HEJ_Session1/ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce | d9e423593ca80393514b1e4ffdf47552a5c0d791 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,405 | sce | ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_uncued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
42 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_104 gabor_158 gabor_069 gabor_180 gabor_104 gabor_158_alt gabor_069 gabor_180_alt "1_1_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_104_158_069_180_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_134_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2092 fixation_cross gabor_120 gabor_100 gabor_172 gabor_039 gabor_120 gabor_100 gabor_172_alt gabor_039_alt "1_2_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_120_100_172_039_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_039_framed blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2492 fixation_cross gabor_131 gabor_163 gabor_054 gabor_073 gabor_131 gabor_163_alt gabor_054_alt gabor_073 "1_3_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_131_163_054_073_target_position_2_3_retrieval_position_2" gabor_circ gabor_163_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_163 gabor_074 gabor_042 gabor_096 gabor_163_alt gabor_074_alt gabor_042 gabor_096 "1_4_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_163_074_042_096_target_position_1_2_retrieval_position_2" gabor_circ gabor_119_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 2392 fixation_cross gabor_113 gabor_152 gabor_091 gabor_128 gabor_113_alt gabor_152_alt gabor_091 gabor_128 "1_5_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_113_152_091_128_target_position_1_2_retrieval_position_1" gabor_065_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_145 gabor_026 gabor_081 gabor_102 gabor_145 gabor_026 gabor_081_alt gabor_102_alt "1_6_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_145_026_081_102_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_102_framed blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 1892 fixation_cross gabor_014 gabor_038 gabor_122 gabor_103 gabor_014 gabor_038_alt gabor_122_alt gabor_103 "1_7_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_014_038_122_103_target_position_2_3_retrieval_position_2" gabor_circ gabor_177_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1792 2992 2042 fixation_cross gabor_129 gabor_047 gabor_092 gabor_152 gabor_129 gabor_047_alt gabor_092_alt gabor_152 "1_8_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2050_gabor_patch_orientation_129_047_092_152_target_position_2_3_retrieval_position_1" gabor_175_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_175_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2242 fixation_cross gabor_036 gabor_144 gabor_008 gabor_166 gabor_036_alt gabor_144 gabor_008_alt gabor_166 "1_9_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_036_144_008_166_target_position_1_3_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2242 2992 1992 fixation_cross gabor_174 gabor_013 gabor_068 gabor_087 gabor_174 gabor_013 gabor_068_alt gabor_087_alt "1_10_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2000_gabor_patch_orientation_174_013_068_087_target_position_3_4_retrieval_position_2" gabor_circ gabor_013_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_013_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2442 fixation_cross gabor_065 gabor_172 gabor_017 gabor_090 gabor_065 gabor_172_alt gabor_017_alt gabor_090 "1_11_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2450_gabor_patch_orientation_065_172_017_090_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_017_framed gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2292 fixation_cross gabor_092 gabor_031 gabor_047 gabor_113 gabor_092_alt gabor_031 gabor_047_alt gabor_113 "1_12_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_092_031_047_113_target_position_1_3_retrieval_position_1" gabor_092_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2392 fixation_cross gabor_135 gabor_010 gabor_178 gabor_090 gabor_135 gabor_010_alt gabor_178 gabor_090_alt "1_13_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_135_010_178_090_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_090_framed blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2192 2992 1992 fixation_cross gabor_120 gabor_030 gabor_172 gabor_058 gabor_120_alt gabor_030_alt gabor_172 gabor_058 "1_14_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2000_gabor_patch_orientation_120_030_172_058_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_058_framed blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_058_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_146 gabor_170 gabor_031 gabor_008 gabor_146 gabor_170_alt gabor_031 gabor_008_alt "1_15_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_146_170_031_008_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_058_framed blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_015 gabor_134 gabor_105 gabor_086 gabor_015_alt gabor_134_alt gabor_105 gabor_086 "1_16_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_015_134_105_086_target_position_1_2_retrieval_position_1" gabor_062_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_102 gabor_086 gabor_147 gabor_020 gabor_102 gabor_086_alt gabor_147 gabor_020_alt "1_17_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_102_086_147_020_target_position_2_4_retrieval_position_2" gabor_circ gabor_036_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_146 gabor_168 gabor_092 gabor_120 gabor_146_alt gabor_168_alt gabor_092 gabor_120 "1_18_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_146_168_092_120_target_position_1_2_retrieval_position_2" gabor_circ gabor_031_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_056 gabor_142 gabor_072 gabor_013 gabor_056_alt gabor_142 gabor_072_alt gabor_013 "1_19_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_056_142_072_013_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_072_framed gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2542 fixation_cross gabor_175 gabor_113 gabor_146 gabor_087 gabor_175 gabor_113 gabor_146_alt gabor_087_alt "1_20_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_175_113_146_087_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_039_framed blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_020 gabor_159 gabor_083 gabor_043 gabor_020 gabor_159_alt gabor_083 gabor_043_alt "1_21_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_020_159_083_043_target_position_2_4_retrieval_position_2" gabor_circ gabor_110_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2592 fixation_cross gabor_155 gabor_010 gabor_025 gabor_043 gabor_155_alt gabor_010 gabor_025 gabor_043_alt "1_22_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_155_010_025_043_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_180_framed blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1742 2992 2592 fixation_cross gabor_046 gabor_122 gabor_102 gabor_013 gabor_046 gabor_122_alt gabor_102 gabor_013_alt "1_23_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2600_gabor_patch_orientation_046_122_102_013_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_152_framed gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_152_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 1942 fixation_cross gabor_179 gabor_108 gabor_136 gabor_069 gabor_179 gabor_108_alt gabor_136_alt gabor_069 "1_24_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_179_108_136_069_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2242 2992 2142 fixation_cross gabor_092 gabor_123 gabor_107 gabor_002 gabor_092_alt gabor_123_alt gabor_107 gabor_002 "1_25_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2150_gabor_patch_orientation_092_123_107_002_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_002_framed blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_002_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_032 gabor_053 gabor_083 gabor_102 gabor_032_alt gabor_053 gabor_083_alt gabor_102 "1_26_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_032_053_083_102_target_position_1_3_retrieval_position_1" gabor_032_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2342 fixation_cross gabor_114 gabor_177 gabor_141 gabor_034 gabor_114_alt gabor_177 gabor_141_alt gabor_034 "1_27_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_114_177_141_034_target_position_1_3_retrieval_position_1" gabor_114_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_114_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_117 gabor_082 gabor_162 gabor_048 gabor_117_alt gabor_082 gabor_162 gabor_048_alt "1_28_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_117_082_162_048_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_048_framed blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2442 fixation_cross gabor_134 gabor_065 gabor_177 gabor_048 gabor_134 gabor_065_alt gabor_177 gabor_048_alt "1_29_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_134_065_177_048_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_048_framed blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_154 gabor_031 gabor_065 gabor_010 gabor_154 gabor_031_alt gabor_065_alt gabor_010 "1_30_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_154_031_065_010_target_position_2_3_retrieval_position_2" gabor_circ gabor_171_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_010 gabor_144 gabor_100 gabor_028 gabor_010 gabor_144 gabor_100_alt gabor_028_alt "1_31_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_010_144_100_028_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_028_framed blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2292 fixation_cross gabor_114 gabor_007 gabor_029 gabor_084 gabor_114 gabor_007 gabor_029_alt gabor_084_alt "1_32_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_114_007_029_084_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_029_framed gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1742 2992 1992 fixation_cross gabor_021 gabor_140 gabor_169 gabor_060 gabor_021 gabor_140 gabor_169_alt gabor_060_alt "1_33_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_021_140_169_060_target_position_3_4_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_001_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_029 gabor_097 gabor_011 gabor_058 gabor_029 gabor_097_alt gabor_011 gabor_058_alt "1_34_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_029_097_011_058_target_position_2_4_retrieval_position_2" gabor_circ gabor_143_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 1992 fixation_cross gabor_123 gabor_009 gabor_098 gabor_070 gabor_123 gabor_009 gabor_098_alt gabor_070_alt "1_35_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_123_009_098_070_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_098_framed gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 2492 fixation_cross gabor_030 gabor_079 gabor_098 gabor_055 gabor_030 gabor_079_alt gabor_098_alt gabor_055 "1_36_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_030_079_098_055_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_144_framed gabor_circ blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_144_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 2492 fixation_cross gabor_086 gabor_013 gabor_162 gabor_042 gabor_086_alt gabor_013_alt gabor_162 gabor_042 "1_37_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_086_013_162_042_target_position_1_2_retrieval_position_1" gabor_131_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2192 2992 2542 fixation_cross gabor_152 gabor_133 gabor_088 gabor_021 gabor_152 gabor_133_alt gabor_088 gabor_021_alt "1_38_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_2200_3000_2550_gabor_patch_orientation_152_133_088_021_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_043_framed gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_043_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_034 gabor_142 gabor_096 gabor_052 gabor_034 gabor_142_alt gabor_096 gabor_052_alt "1_39_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_034_142_096_052_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_052_framed blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2092 fixation_cross gabor_091 gabor_048 gabor_032 gabor_164 gabor_091 gabor_048_alt gabor_032 gabor_164_alt "1_40_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_091_048_032_164_target_position_2_4_retrieval_position_2" gabor_circ gabor_048_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_001 gabor_020 gabor_064 gabor_083 gabor_001 gabor_020 gabor_064_alt gabor_083_alt "1_41_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_001_020_064_083_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_083_framed blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_007 gabor_069 gabor_179 gabor_090 gabor_007 gabor_069 gabor_179_alt gabor_090_alt "1_42_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_007_069_179_090_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_130_framed gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_130_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1742 2992 2192 fixation_cross gabor_070 gabor_144 gabor_006 gabor_113 gabor_070 gabor_144 gabor_006_alt gabor_113_alt "1_43_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_2200_gabor_patch_orientation_070_144_006_113_target_position_3_4_retrieval_position_2" gabor_circ gabor_144_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_144_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2142 fixation_cross gabor_095 gabor_052 gabor_028 gabor_135 gabor_095_alt gabor_052 gabor_028_alt gabor_135 "1_44_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_095_052_028_135_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_028_framed gabor_circ blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_083 gabor_017 gabor_132 gabor_153 gabor_083 gabor_017_alt gabor_132 gabor_153_alt "1_45_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_083_017_132_153_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_107_framed blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_050 gabor_121 gabor_076 gabor_010 gabor_050_alt gabor_121 gabor_076 gabor_010_alt "1_46_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_050_121_076_010_target_position_1_4_retrieval_position_1" gabor_050_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1892 2992 1892 fixation_cross gabor_002 gabor_139 gabor_071 gabor_033 gabor_002 gabor_139_alt gabor_071 gabor_033_alt "1_47_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_1900_gabor_patch_orientation_002_139_071_033_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_071_framed gabor_circ blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_071_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2042 fixation_cross gabor_131 gabor_075 gabor_146 gabor_162 gabor_131 gabor_075 gabor_146_alt gabor_162_alt "1_48_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_131_075_146_162_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_162_framed blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 2592 fixation_cross gabor_163 gabor_111 gabor_092 gabor_030 gabor_163_alt gabor_111 gabor_092 gabor_030_alt "1_49_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_163_111_092_030_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_075_framed blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 1942 fixation_cross gabor_137 gabor_103 gabor_020 gabor_158 gabor_137_alt gabor_103 gabor_020 gabor_158_alt "1_50_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_137_103_020_158_target_position_1_4_retrieval_position_1" gabor_087_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 2342 fixation_cross gabor_010 gabor_156 gabor_071 gabor_097 gabor_010 gabor_156_alt gabor_071_alt gabor_097 "1_51_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_010_156_071_097_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_121_framed gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2192 fixation_cross gabor_168 gabor_097 gabor_059 gabor_081 gabor_168 gabor_097 gabor_059_alt gabor_081_alt "1_52_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_168_097_059_081_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2242 2992 2492 fixation_cross gabor_021 gabor_149 gabor_087 gabor_176 gabor_021_alt gabor_149 gabor_087_alt gabor_176 "1_53_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2500_gabor_patch_orientation_021_149_087_176_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_051 gabor_081 gabor_162 gabor_105 gabor_051_alt gabor_081_alt gabor_162 gabor_105 "1_54_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_051_081_162_105_target_position_1_2_retrieval_position_2" gabor_circ gabor_081_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2192 fixation_cross gabor_139 gabor_058 gabor_180 gabor_073 gabor_139_alt gabor_058_alt gabor_180 gabor_073 "1_55_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_139_058_180_073_target_position_1_2_retrieval_position_2" gabor_circ gabor_058_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_038 gabor_103 gabor_023 gabor_077 gabor_038_alt gabor_103 gabor_023_alt gabor_077 "1_56_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_038_103_023_077_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_162_framed gabor_circ blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1992 2992 2242 fixation_cross gabor_141 gabor_034 gabor_106 gabor_167 gabor_141_alt gabor_034 gabor_106 gabor_167_alt "1_57_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_2000_3000_2250_gabor_patch_orientation_141_034_106_167_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_060_framed gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_060_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_094 gabor_157 gabor_032 gabor_017 gabor_094_alt gabor_157 gabor_032 gabor_017_alt "1_58_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_094_157_032_017_target_position_1_4_retrieval_position_1" gabor_094_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 2292 fixation_cross gabor_162 gabor_087 gabor_123 gabor_108 gabor_162_alt gabor_087_alt gabor_123 gabor_108 "1_59_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_162_087_123_108_target_position_1_2_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_025 gabor_099 gabor_130 gabor_083 gabor_025_alt gabor_099_alt gabor_130 gabor_083 "1_60_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_025_099_130_083_target_position_1_2_retrieval_position_1" gabor_164_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1792 2992 1892 fixation_cross gabor_123 gabor_058 gabor_103 gabor_179 gabor_123 gabor_058 gabor_103_alt gabor_179_alt "1_61_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_1900_gabor_patch_orientation_123_058_103_179_target_position_3_4_retrieval_position_2" gabor_circ gabor_058_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_058_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2092 fixation_cross gabor_151 gabor_025 gabor_045 gabor_065 gabor_151 gabor_025 gabor_045_alt gabor_065_alt "1_62_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_151_025_045_065_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_045_framed gabor_circ blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_088 gabor_113 gabor_065 gabor_175 gabor_088 gabor_113 gabor_065_alt gabor_175_alt "1_63_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_088_113_065_175_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_129_framed blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_126 gabor_096 gabor_162 gabor_076 gabor_126 gabor_096_alt gabor_162 gabor_076_alt "1_64_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_126_096_162_076_target_position_2_4_retrieval_position_2" gabor_circ gabor_143_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2392 fixation_cross gabor_021 gabor_004 gabor_082 gabor_037 gabor_021 gabor_004 gabor_082_alt gabor_037_alt "1_65_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_021_004_082_037_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_037_framed blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_087 gabor_110 gabor_129 gabor_069 gabor_087 gabor_110 gabor_129_alt gabor_069_alt "1_66_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_087_110_129_069_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_175_framed gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2042 2992 2292 fixation_cross gabor_112 gabor_082 gabor_050 gabor_163 gabor_112_alt gabor_082_alt gabor_050 gabor_163 "1_67_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2300_gabor_patch_orientation_112_082_050_163_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_023_framed blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_023_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 2392 fixation_cross gabor_140 gabor_158 gabor_018 gabor_084 gabor_140_alt gabor_158_alt gabor_018 gabor_084 "1_68_Encoding_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_140_158_018_084_target_position_1_2_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P5_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2192 fixation_cross gabor_173 gabor_013 gabor_146 gabor_093 gabor_173_alt gabor_013_alt gabor_146 gabor_093 "1_69_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_173_013_146_093_target_position_1_2_retrieval_position_1" gabor_173_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1942 2992 1942 fixation_cross gabor_132 gabor_069 gabor_001 gabor_108 gabor_132_alt gabor_069 gabor_001 gabor_108_alt "1_70_Encoding_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_1950_gabor_patch_orientation_132_069_001_108_target_position_1_4_retrieval_position_2" gabor_circ gabor_069_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P5_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_069_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
c2a78563d6179cfa8acbe078835e9c9156e77d24 | 449d555969bfd7befe906877abab098c6e63a0e8 | /497/CH7/EX7.1/Chap7_Ex1.sce | 8b7cc248420eb1b7fa02410c4bb6f224e7678448 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,039 | sce | Chap7_Ex1.sce | //Kunii D., Levenspiel O., 1991. Fluidization Engineering(II Edition). Butterworth-Heinemann, MA, pp 491
//Chapter-7, Example 1, Page 179
//Title: Entrainment from Fine Particle Beds with High Freeboard
//==========================================================================================================
clear
clc
//INPUT
rhog=5.51;//Density of gas in kg/m^3
rhos=1200;//Density of solid in kg/m^3
dpbar=130;//Average size of particles in micrometer
uo=0.61;//Superficial gas velocity in m/s
g=9.80;//Acceleration due to gravity in m/s^2
//CALCULATION
//Assuming that freeboard in higher than TDH, computation of entrainment rate by Zenz & Weil's method
x=(uo^2)/(g*(dpbar*10^-6)*rhos^2);//Calculation of value of x-axis for Fig.(6), page 175
y=1.2;// Value of y-axis from Fig.(6)
Gsstar=y*rhog*uo;//Computation of rate of entrainment
//OUTPUT
mprintf('\nRate of entrainment=%fkg/m^2s',Gsstar);
//====================================END OF PROGRAM ====================================================== |
26ccaf932c39e9f8cd239ccca575b8dc31e101eb | fabc48f29c1a9611501fae0c34433b44d5617bd0 | /scilab/generate_schema.sci | bb4cdfc11b460316653cf6632fb2bac092ca69da | [] | no_license | rubiruchi/automatic-power-optimization | 51e7a9575619e0232595be18ed4b02e2fcd48bc8 | 575471ea5ae392d60365508bf84d58ad4d32764a | refs/heads/master | 2020-04-21T06:22:14.980063 | 2018-12-26T09:51:02 | 2018-12-26T09:51:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 519 | sci | generate_schema.sci | function generate_schema()
MAX_DISTANCE = 5;
MIN_DISTANCE = 1;
AREA=MAX_DISTANCE^2;
//10% ~ 80%
//AVERAGE_DISTANCE=20;
//STD_DISTANCE=AVERAGE_DISTANCE*0.3;
//10%, 30%, 60%, 80%
NODES_DENSITY=0.1;
//40,120,240,320
NUM_NODES = round(AREA*NODES_DENSITY);
//Initializes the nodes location.
//Uniform distribution
nodeLocation = grand(2,NUM_NODES,"unf",MIN_DISTANCE,MAX_DISTANCE);
write_csv(nodeLocation, 'NodeLocation_StdOrder01.csv');
endfunction |
c885a22d2dbb440b1620067fefb766d3b566300e | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_Machines_-_1_T._Singh_704.zip/Electrical_Machines_-_1_T._Singh_704/CH2/EX2.45/ex2_45.sce | c1497cbb5e6382737457769b004c3b02841aa271 | [] | 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 | 1,317 | sce | ex2_45.sce | errcatch(-1,"stop");mode(2);//Caption:Calculate the motor output, H.P. and efficiency when the total current taken from the mains is 35 Amp
//Exam:2.45
;
;
V=230;//applied voltage(in V)
R_sh=230;//field resistance (in Ohm)
R_a=0.3;//armature resistance(in Ohm)
I_o=2.5;//no load current (in Amp)
I_sh=V/R_sh;//field current(in Amp)
I_a=I_o-I_sh;//armature current(in Amp)
L_cf=V*I_sh;//copper losses in field(in watts)
L_ca=(I_a^2)*R_a;//copper losses in armature(in watts)
L_tc=L_cf+L_ca;//total copper losses
L_t=V*I_o;//input power to motor on no load(in watts)
L_m=L_t-L_tc;//iron & mechanical losses(in watts)
L_c=L_m+L_cf;//constant losses(in watts)
// when input current is 35 Amp(On load condition)
I_l=35;//input current(in Amp)
I_a1=I_l-I_sh;//armature current when I_l input current(in Amp)
L_ca1=(I_a1^2)*R_a;//copper losses in armature when I_l input current(in watts)
L_T1=L_c+L_ca1;//total losses at this load(in watts)
I_p=V*I_l;//input power(in watts)
O_p=I_p-L_T1;//output power(in watts)
disp(O_p,'output power of motor(in watts)=');
H.p=O_p/746;//the shunt motor H.P
disp(H.p,'the shunt motor H.P.=');
E_1=(O_p/I_p)*100;//efficiency of the shunt motor when input current is 35 Amp
disp(E_1,'efficiency of the shunt motor when input current is 35 Amp(in %)=');
exit();
|
def584a14cbb65db4d04aefd55c9d0240f08767c | e20b143bd16a6a60520c5d3f6c30af9356cc0aa2 | /macros/Cases_Gui.sci | 1bdc4af5ef7d37000f5c0e0a7a1009382d9961a3 | [] | no_license | slevin48/covid | 2c4806c1d1d91b2196f3086e2af7c69c420fb4db | c482d908ae58b82558f338b63020845cefc43742 | refs/heads/master | 2022-05-28T10:40:56.271120 | 2020-04-29T16:08:27 | 2020-04-29T16:08:27 | 258,529,494 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,918 | sci | Cases_Gui.sci | function Cases_Gui()
//App parameters
asean_countries = ['Malaysia'; 'Brunei'; 'Cambodia'; 'Indonesia'; 'Laos'; 'Myanmar'; 'Philippines'; 'Singapore'; 'Thailand'; 'Vietnam'];
eu_countries = ['Germany', 'Italy', 'Spain'];
// Window Parameters initialization
frame_w = 300; frame_h = 550; // Frame width and height
plot_w = 600; plot_h = frame_h; // Plot width and heigh
axes_w = frame_w + plot_w; // axes width
axes_h = frame_h; // axes height (100 => toolbar height)
demo_cases = createWindow(); // Create window with id=100001 and make it the current one
// Background and text
demo_cases.figure_name = gettext("Covid-19 cases");
// Change dimensions of the figure
demo_cases.axes_size = [axes_w axes_h];
demo_cases.resize = "off"
// Frames creation [parameters]
font1 = createBorderFont("", 17, "bold");
b1 = createBorder("titled", createBorder("etched"), "Parameters", "center", "top", font1, "black");
my_frame = uicontrol(demo_cases, ...
"relief","groove", ...
"style","frame", ...
"position",[0 0 frame_w frame_h], ...
"border", b1, ...
"tag","cases_frame_control");
// Adding model parameters
guih1 = frame_w;
guih1o = 180;
// positioning
l1 = 30; l2 = 240;
uicontrol(my_frame, ...
"style","text",...
"string","Country", ...
"position",[l1, guih1-20+guih1o, l2, 20]);
uicontrol(my_frame, ...
"style","popupmenu", ...
"position",[l1,guih1-50+guih1o,l2,30], ...
"value", 1, ...
"string", eu_countries, ...
"callback", "update_country",...
"tag","country");
uicontrol(my_frame, ...
"style","checkbox",...
"position",[l1,guih1-90+guih1o,20,20], ...
"callback", "update_checkbox",...
"tag","compare")
uicontrol(my_frame, ...
"style","text",...
"string","Compare with", ...
"position",[l1+30,guih1-90+guih1o,l2-30,20]);
uicontrol(my_frame, ...
"style","popupmenu", ...
"position",[l1,guih1-130+guih1o,l2,30], ...
"enable","off", ...
"string", eu_countries(eu_countries <> 'Germany'), ...
"tag","country_compared");
// "callback", "update_compared",...
// uicontrol(my_frame, ...
// "style","text",...
// "string","My text", ...
// "position",[l1,guih1-160+guih1o,l2,20]);
//
// uicontrol(my_frame, ...
// "style", "slider", ...
// "position",[l1,guih1-190+guih1o,l2,30], ...
// "value", 1, ...
// "min", 0, ...
// "max", 1.5, ...
// "sliderstep", [0.1, 30], ...
// "callback", "update_Tau2_parameter",...
// "tag","Tau2_slider");
uicontrol(my_frame, ...
"style", "pushbutton", ...
"position",[l1,guih1-260+guih1o,l2,30], ...
"string", "Plot Cases", ...
"callback", "button_plot", ...
"tag", "btn_plot");
// uicontrol(my_frame, ...
// "style", "image", ...
// "position",[l1,guih1-400+guih1o,l2,96], ...
// "string", "images\cases.png", ...
// "tag", "img_model");
ui_cases_plot_frame = uicontrol(demo_cases, ...
"style", "frame", ...
"position",[310 0 plot_w-20 plot_h], ...
"tag", "cases_plot_frame");
// Redraw window
// a = newaxes(ui_cases_plot_frame);
//
// drawlater();
// [header, data] = importdata(covid_getpath()+"\data\time_series_covid19_confirmed_global.csv");
//
// confirmed = strtod(data(:,5:$));
// country = data(:,2);
// state = data(:,1);
// c = get("country");
// my = confirmed(country == c.string(c.value),:);
// x = 1:size(my,'*');
// plot(x,my)
// xticks2string(header(5:$),10)
// xtitle("Covid-19 Confirmed Cases in "+c.string(c.value),"Date","Cases")
// legend(c.string(c.value),"in_upper_left");
// xgrid()
// drawnow();
endfunction
|
1b79f47492dd5943d04021f773fe03a11bccc5f6 | 6195c759c2acc9d65db7cdbadfb078ef93c74591 | /basic/word_count.tst | 6f90e9bbeb80cd6292868504b6d3fed6dc888ce7 | [] | no_license | tzuyichao/python-basic | 7f10df60766fecde1df9e28c0b280aa3f612dcec | cfa82eb6d6acb6a516d856ec3fd7bfc46e28c979 | refs/heads/master | 2023-08-08T19:01:42.339419 | 2023-08-05T06:50:54 | 2023-08-05T06:50:54 | 188,148,902 | 0 | 0 | null | 2023-08-05T06:50:56 | 2019-05-23T02:42:33 | Jupyter Notebook | UTF-8 | Scilab | false | false | 189 | tst | word_count.tst | Python provides a complete set of control flow elements,
including while and for loops, and conditionals.
Python uses the level of indentation to group blocks
of code with control elements. |
2dc33ca384b8843cc62ce30a0c0c00c937875c84 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/svd.man.tst | 61bcd011fc9d40240f0585a73ee59f69e207142d | [
"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 | 62 | tst | svd.man.tst | clear;lines(0);
X=rand(4,2)*rand(2,4)
svd(X)
sqrt(spec(X*X'))
|
4325a1530577e514a757941d9e73eb858bad9e3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH11/EX11.1/77ex1.sce | 33607942684a3ec4485564881fbd3aa5e649d67f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 77ex1.sce |
clear;
clc;
close;
//x-no. of customers. b-the expenses
clf;
cust=[230 240 270 300 350 380];
profit=[0 0.5 2.0 3.5 6.0 7.5];
plot(cust,profit,6);
plot(230,0,'r->.diam');
//profit(y) depends on varying no. of customers(x).
xtitle("the straight line graph","no. of customers","profit");
xgrid();
//ex(1)
mprintf("(1) From graph, if x=230, then y=0");
//ex(2)
mprintf("(2) if no. of customers is <230 then there will be a loss")
|
27f365f0cb533bffcbf304d9dd34de645cfebf77 | 449d555969bfd7befe906877abab098c6e63a0e8 | /75/CH5/EX5.1/ex_1.sce | c1d9ffbeb947542244fae1ecd51ad211b5ab1a13 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 107 | sce | ex_1.sce | // PG (250)
deff('[y]=f(x)','y=(exp(x)-1)/x')
x0=0;
x1=1;
integrate('(exp(x)-1)/x','x',x0,x1)
|
9e0706a866f1aa40b14fe5bfd9862b01340d624b | 449d555969bfd7befe906877abab098c6e63a0e8 | /800/CH3/EX3.5/3_5.sce | 635aa7bab7879839bb5379f0716fd3ba2918abd3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | 3_5.sce | //clear//
clc
clear
exec("3.5data.sci");
CD=CA0*(X/3);
CB=CA0*((CB0/CA0)-(X/3));
CD1=CA0*(X1/3);
CB1=CA0*((CB0/CA0)-(X1/3));
disp("For 20% conversion")
disp("CD =")
disp(CD)
disp ("mol/dm^3")
disp("CB =")
disp(CB)
disp("mol/dm^3")
disp("For 90% conversion")
disp("CD =")
disp(CD1)
disp ("mol/dm^3")
disp("CB =")
disp(CB1)
disp("mol/dm^3")
|
97ac2395815f15cbc2f494b4e175be34bbfe3b5e | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH4/EX4.16/example4_16.sce | 3b2ef6f22120d3caffab6dcc2bbb294c3060ca7a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | sce | example4_16.sce | //Chapter 4
//Example 4_16
//Page 83
clear;clc;
cap_b=17241;
cap_a=50000-cap_b;
y=8760*cap_b/50000;
printf("Capacity of station B = %d kW \n", cap_b);
printf("Capacity of station A = %d kW \n", cap_a);
printf("Number of hours if station B operation = %d hours \n\n", y);
|
f740d009f1c8692e5cebf1e98da4ee3db8b7849b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH25/EX25.16/Ex25_16.sce | 26399632f98cf61fa55365a1423c9cdb00056fd1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 143 | sce | Ex25_16.sce | clear
//Given
a=2*10**12
b=9.0*10**12
T=80
//Calculation
//
c=log(a/b)
t=-(c*T)/0.693
//Result
printf("\n Time required is %0.0f second",t)
|
6c11366b588bef6f9e91c323fb045c680db2b92e | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Manta Aim Map.sce | 9acb5d40ef6fa58fb199c3aac68e453e6eec94bb | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 38,519 | sce | Manta Aim Map.sce | Name=Manta Aim Map
PlayerCharacters=Enemy
BotCharacters=Aim Practise.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Enemy
AddedBots=Aim Practise.bot
PlayerMaxLives=1
BotMaxLives=50
PlayerTeam=1
BotTeams=2
MapName=kroadmm4.map
MapScale=8.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.2
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Apex, Click Timing/Tracking
WeaponHeroTag=Wingman
DifficultyTag=4
AuthorsTag=Ascetic, ikue, KovaaK
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=true
Description=Ascended but with a "Manwing" esque/McCoy type weapon. Speed has been increased and bot size is lowered from AT Air. Changes Tentative.
GameVersion=1.0.8.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=High Skill At Feet
MinReactionTime=0.25
MaxReactionTime=0.35
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=10.0
TrackSpeed=5.0
TrackError=2.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=35.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Aimbot
MinReactionTime=0.1
MaxReactionTime=0.2
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=90.0
FlickSpeed=10.0
FlickError=0.0
TrackSpeed=10.0
TrackError=0.0
MaxTurnAngleFromPadCenter=90.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=90.0
OuterAimPenalty=0.0
MaxError=0.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=Aim Practise
DodgeProfileNames=Manta Dodge Profile
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=2.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=0.0;0.0;0.0;10.0;1.0;1.0;1.0;1.0
AimingProfileNames=High Skill At Feet;Aimbot;Aimbot;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Enemy
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Character Profile]
Name=Enemy
MaxHealth=500.0
WeaponProfileNames=HitScan;Charged Tracking;Havok Charge;Force Movement;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=2.0
MovementType=Base
MaxSpeed=1600.0
MaxCrouchSpeed=2000.0
Acceleration=7000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=900.0
Gravity=3.0
AirControl=0.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=true
EnemyBodyColor=X=1.000 Y=0.212 Z=0.020
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=0.784
TeamHeadColor=X=0.251 Y=0.200 Z=0.165
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=350.0
MainBBRadius=60.0
MainBBHasHead=true
MainBBHeadRadius=40.0
MainBBHeadOffset=-10.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=250.0
ProjBBRadius=40.0
ProjBBHasHead=true
ProjBBHeadRadius=40.0
ProjBBHeadOffset=-10.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=2.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=true
JetpackThrust=7500.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.15
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.3
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=false
BounceOffWalls=true
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=500.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Dodge Profile]
Name=Manta Dodge Profile
MaxTargetDistance=5000.0
MinTargetDistance=3000.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=0.1
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.3
CrouchInAirFrequency=0.5
CrouchOnGroundFrequency=0.05
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.2
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.7
MaxCrouchTime=0.7
MinJumpTime=0.3
MaxJumpTime=0.4
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=HitScan
Type=Hitscan
ShotsPerClick=1
DamagePerShot=360.0
KnockbackFactor=0.1
TimeBetweenShots=0.5
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=1.25
MagazineMax=0
AmmoPerShot=0
ReloadTimeFromEmpty=2.1
ReloadTimeFromPartial=2.1
DamageFalloffStartDistance=5000.0
DamageFalloffStopDistance=5000.0
DamageAtMaxRange=200.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.5
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=0.0
RecoilAutoReset=true
TimeToRecoilPeak=0.025
TimeToRecoilReset=0.29
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Charged Tracking
Type=Hitscan
ShotsPerClick=1
DamagePerShot=16.0
KnockbackFactor=0.0
TimeBetweenShots=1.5
Pierces=false
Category=FullyAuto
BurstShotCount=50
TimeBetweenBursts=0.005
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=150000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=150000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=2.0
HeadshotCapable=true
HeadshotMultiplier=1.5
MagazineMax=0
AmmoPerShot=0
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=12.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=2.0
WallParticleEffect=Flare
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.05
HitSoundCooldown=0.05
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=40.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=false
SpreadStationaryVelocity=100.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=2.0
TaggingDuration=0.0
TaggingMaxFactor=0.1
TaggingHitFactor=0.4
ProjectileTrail=Smoke
RecoilCrouchScale=0.0
RecoilADSScale=0.0
PSRCrouchScale=0.0
PSRADSScale=0.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.25
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.1
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=77.139999
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=0.5,3.0,0.8,3.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=0.5,3.0,0.8,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=0.0
RecoilAutoReset=false
TimeToRecoilPeak=0.1
TimeToRecoilReset=0.1
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=0
PSRViewRecoilTracking=1.0
PSRCapUp=0.0
PSRCapRight=0.0
PSRCapLeft=0.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=1.1
PSR0=0.0,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Havok Charge
Type=Hitscan
ShotsPerClick=1
DamagePerShot=500.0
KnockbackFactor=0.0
TimeBetweenShots=1.0
Pierces=false
Category=Charge
BurstShotCount=1
TimeBetweenBursts=0.01
ChargeStartDamage=0.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=0.7
ChargeTimeToCap=0.7
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=150000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=150000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=2.0
HeadshotCapable=true
HeadshotMultiplier=1.5
MagazineMax=0
AmmoPerShot=0
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=12.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=2.0
WallParticleEffect=Flare
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.05
HitSoundCooldown=0.05
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=40.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=Charged Tracking
ADSShoot=
StunDuration=0.0
CircularSpread=false
SpreadStationaryVelocity=100.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=2.0
TaggingDuration=0.0
TaggingMaxFactor=0.1
TaggingHitFactor=0.4
ProjectileTrail=Smoke
RecoilCrouchScale=0.0
RecoilADSScale=0.0
PSRCrouchScale=0.0
PSRADSScale=0.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.25
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.1
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=77.139999
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=0.5,3.0,0.8,3.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=0.5,3.0,0.8,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=0.0
RecoilAutoReset=false
TimeToRecoilPeak=0.1
TimeToRecoilReset=0.1
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=0
PSRViewRecoilTracking=1.0
PSRCapUp=0.0
PSRCapRight=0.0
PSRCapLeft=0.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=1.1
PSR0=0.0,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Force Movement
Type=Projectile
ShotsPerClick=1
DamagePerShot=500.0
KnockbackFactor=0.0
TimeBetweenShots=0.8
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=5090.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=5090.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=true
Radius=500.0
DamageAtCenter=120.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=180.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.001
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
brush
vertices
-608.000000 512.000000 -832.000000
0.000000 512.000000 -832.000000
0.000000 512.000000 -864.000000
-608.000000 512.000000 -864.000000
-608.000000 0.000000 -832.000000
0.000000 0.000000 -832.000000
0.000000 0.000000 -864.000000
-608.000000 0.000000 -864.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey64
brush
vertices
-288.000000 560.000000 -288.000000
-128.000000 560.000000 -288.000000
-128.000000 560.000000 -352.000000
-288.000000 560.000000 -352.000000
-288.000000 528.000000 -288.000000
-128.000000 528.000000 -288.000000
-128.000000 528.000000 -352.000000
-288.000000 528.000000 -352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_black
brush
vertices
-352.000000 560.000000 -128.000000
-288.000000 560.000000 -128.000000
-288.000000 560.000000 -512.000000
-352.000000 560.000000 -512.000000
-352.000000 528.000000 -128.000000
-288.000000 528.000000 -128.000000
-288.000000 528.000000 -512.000000
-352.000000 528.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_black
brush
vertices
-512.000000 560.000000 -288.000000
-352.000000 560.000000 -288.000000
-352.000000 560.000000 -352.000000
-512.000000 560.000000 -352.000000
-512.000000 528.000000 -288.000000
-352.000000 528.000000 -288.000000
-352.000000 528.000000 -352.000000
-512.000000 528.000000 -352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_black
brush
vertices
-512.000000 544.000000 -128.000000
-352.000000 544.000000 -128.000000
-352.000000 544.000000 -288.000000
-512.000000 544.000000 -288.000000
-512.000000 528.000000 -128.000000
-352.000000 528.000000 -128.000000
-352.000000 528.000000 -288.000000
-512.000000 528.000000 -288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-512.000000 544.000000 -352.000000
-352.000000 544.000000 -352.000000
-352.000000 544.000000 -512.000000
-512.000000 544.000000 -512.000000
-512.000000 528.000000 -352.000000
-352.000000 528.000000 -352.000000
-352.000000 528.000000 -512.000000
-512.000000 528.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-288.000000 544.000000 -352.000000
-128.000000 544.000000 -352.000000
-128.000000 544.000000 -512.000000
-288.000000 544.000000 -512.000000
-288.000000 528.000000 -352.000000
-128.000000 528.000000 -352.000000
-128.000000 528.000000 -512.000000
-288.000000 528.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-288.000000 544.000000 -128.000000
-128.000000 544.000000 -128.000000
-128.000000 544.000000 -288.000000
-288.000000 544.000000 -288.000000
-288.000000 528.000000 -128.000000
-128.000000 528.000000 -128.000000
-128.000000 528.000000 -288.000000
-288.000000 528.000000 -288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-128.000000 576.000000 -128.000000
160.000000 576.000000 -128.000000
160.000000 576.000000 -512.000000
-128.000000 576.000000 -512.000000
-128.000000 512.000000 -128.000000
160.000000 512.000000 -128.000000
160.000000 512.000000 -512.000000
-128.000000 512.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-864.000000 576.000000 -128.000000
-512.000000 576.000000 -128.000000
-512.000000 576.000000 -512.000000
-864.000000 576.000000 -512.000000
-864.000000 512.000000 -128.000000
-512.000000 512.000000 -128.000000
-512.000000 512.000000 -512.000000
-864.000000 512.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-896.000000 512.000000 -192.000000
-864.000000 512.000000 -192.000000
-864.000000 512.000000 -576.000000
-896.000000 512.000000 -576.000000
-896.000000 0.000000 -192.000000
-864.000000 0.000000 -192.000000
-864.000000 0.000000 -576.000000
-896.000000 0.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-608.000000 512.000000 96.000000
-96.000000 512.000000 96.000000
-96.000000 512.000000 64.000000
-608.000000 512.000000 64.000000
-608.000000 0.000000 96.000000
-96.000000 0.000000 96.000000
-96.000000 0.000000 64.000000
-608.000000 0.000000 64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-800.000000 576.000000 64.000000
96.000000 576.000000 64.000000
96.000000 576.000000 -128.000000
-800.000000 576.000000 -128.000000
-800.000000 512.000000 64.000000
96.000000 512.000000 64.000000
96.000000 512.000000 -128.000000
-800.000000 512.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
160.000000 512.000000 -128.000000
192.000000 512.000000 -128.000000
192.000000 512.000000 -576.000000
160.000000 512.000000 -576.000000
160.000000 0.000000 -128.000000
192.000000 0.000000 -128.000000
192.000000 0.000000 -576.000000
160.000000 0.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-864.000000 576.000000 -512.000000
160.000000 576.000000 -512.000000
160.000000 576.000000 -832.000000
-864.000000 576.000000 -832.000000
-864.000000 512.000000 -512.000000
160.000000 512.000000 -512.000000
160.000000 512.000000 -832.000000
-864.000000 512.000000 -832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey64
brush
vertices
160.000000 480.000000 -832.000000
-96.000000 480.000000 -832.000000
-96.000000 0.000000 -832.000000
160.000000 480.000000 -576.000000
160.000000 0.000000 -832.000000
160.000000 0.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 5 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 3 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-864.000000 528.000000 64.000000
-608.000000 528.000000 64.000000
-608.000000 -16.000000 64.000000
-864.000000 528.000000 -192.000000
-864.000000 -16.000000 64.000000
-864.000000 -16.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 5 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 3 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-96.000000 512.000000 64.000000
160.000000 512.000000 64.000000
160.000000 512.000000 -192.000000
-96.000000 0.000000 64.000000
160.000000 0.000000 -192.000000
160.000000 0.000000 64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0x00000000
brush
vertices
-880.000000 0.000000 192.000000
192.000000 0.000000 192.000000
192.000000 0.000000 -832.000000
-880.000000 0.000000 -832.000000
-880.000000 -16.000000 192.000000
192.000000 -16.000000 192.000000
192.000000 -16.000000 -832.000000
-880.000000 -16.000000 -832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-864.000000 512.000000 -576.000000
-864.000000 0.000000 -832.000000
-608.000000 512.000000 -832.000000
-864.000000 0.000000 -576.000000
-608.000000 0.000000 -832.000000
-864.000000 512.000000 -832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
entity
type PlayerSpawn
Vector3 position -304.000000 0.000000 -592.000000
entity
type Effect
Vector3 position -512.000000 1472.000000 -608.000000
Vector3 angles 45.000000 45.000000 0.000000
String64 effectName internal/world/skies/sky_cpm3/sky_cpm3_sun
entity
type CameraPath
UInt32 entityIdAttachedTo 5
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position -304.000000 0.000000 -144.000000
Vector3 angles 180.000000 0.000000 0.000000
|
2916cbd1f8992c2737c49badb592d68e5b6a0751 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1627/CH7/EX7.1/Ex7_1.sce | 9f41ccd3f7f74dc6b03de69b4a156a2d847f9f29 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 140 | sce | Ex7_1.sce | clc
//initialisation of variables
p=3.57//m^2
v=5.14//m
//CALCULATIONS
R=p/v//m
//RESULTS
printf('The hydraulic radius is=% f m',R)
|
0154ca83c0f8bab4e21e6ba0bb14f639b2d2ba6e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH5/EX5.4/Ex5_4.sce | beeb4ad815b6090bc0053a62956800240c0b0295 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 444 | sce | Ex5_4.sce | //Variable declaration:
P = 14.7 //Absolute pressure of air (psia)
MW = 29 //Molecular weight of air (lb/lbmol)
T = 75+460 //Temperature in Rankine scale (°R)
R = 10.73 //Universal gas constant (ft^3.psi/lbmol.°R)
//Calculation:
p = P*MW/R/T //Density of air (lb/ft^3)
//Result:
printf("The density of air at 75°F and 14.7 psia is : %.4f lb/ft^3",p)
|
ae0bb75144a41da0f0faf54df87aee6322a8082f | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electrical_Measurements_And_Measuring_Instruments_N._V._Suryanarayana_1376.zip/Electrical_Measurements_And_Measuring_Instruments_N._V._Suryanarayana_1376/CH3/EX3.3/3_3.sci | 3952b7d191c8961e4ee012b255fd8e65513dec10 | [] | 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 | 153 | sci | 3_3.sci | errcatch(-1,"stop");mode(2);//3.3
;
Is=150*10^-6;
I=50*10^-6;
R=4*10^3;
Rt=R*I/Is;
printf("\nthe value of total resistance=%.2f ohm",Rt)
exit();
|
f2a4d5481d3cd16a8f2a6241063d75b2cb02e876 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3523/CH4/EX4.10.3/Ex4_3.sce | 4fd8ae6e444771cd2f3a24d7f9f7ca32d50c1d62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 196 | sce | Ex4_3.sce | //Example 3// Ch 4
clc;
clear;
close;
// given data
a=4*1e4;
b=15*1e5;
lb=0;
ub=0.0005;
i=integrate('(a-b*sqrt(x))','x',lb,ub)
as=exp(i);//Avalanche size
printf('Avalache size %f',as)
|
24ea89cff5426a2bbb1ccf8634b3c457c3f314a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/DEPENDENCIES/4_22data.sci | 6d8ddb5fa4523ae852da51420f048305680892d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 808 | sci | 4_22data.sci | //consider the combustion chamber condition as reservoir
Po=20*1.01*10^5;//combustion chamber pressure in N/m^2
To=3144;//combustion chamber temperature in Kelvin
R=378;//gas constant for mixture of kerosene and oxygen
y=1.26;//specific heat ratio
Pe=1*1.01*10^5//pressure at exit of rocket Nozzle in N/m^2
At=0.1;//throat area in m^2
Te=To*(Pe/Po)^((y-1)/y) //temperature at exit in degree kelvin
Me=sqrt(2*((To/Te)-1)/(y-1)) //mach no. at the exit
Ae=sqrt(y*R*Te) //speed of sound at exit,m/s
Mt=1;//Mach no. at throat
Pt=Po/(1+(y-1)*Mt^2/2)^(y/(y-1)) //pressure at throatin N/m^2
Tt=To/(1+(y-1)*Mt^2/2) //temperature at throat in Kelvin
Dt=Pt/(R*Tt) //density of gas in throat,Kg/m^3
Vt=sqrt(y*R*Tt) //speed of sount in throat which is equivalent to gas speed as mach no. at throat is 1.
|
17e2e507d43b2fbc925f92fe109fa0aeb17cd3f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH15/EX15.2/Ex15_2.sce | 1013e16be0e5861437f44674617f88c418a4f425 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 414 | sce | Ex15_2.sce | //Example 15_2
clc();
clear;
//To find the force on the center charge
k=9*10^9 //Units in N meter^2/C^2
q1=4*10^-6 //Units in C
q2=5*10^-6 //Units in C
r1=2 //Units in meters
r2=4 //Units in meters
q3=6*10^-6 //Units in C
f1=(k*q1*q2)/r1^2 //Units in N
f2=(k*q2*q3)/r2^2 //Units in N
f=f1-f2 //Units in C
printf("The force on the center charge is=%.5f N",f)
|
d884d6679bc1de42d4a569ffad2e943a07a854bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1217/CH1/EX1.12/Exa1_12.sce | 713987b9e3e09e9b357c8cdc04f0abbbc5d7f9ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 576 | sce | Exa1_12.sce | //Exa 1.12
clc;
clear;
close;
//given data
BETAac=110;//unitless
BETAdc=110;//unitless
VBE=0.7;//in volts
VEE=15;//in volts
VT=25;//in mvolts
R=2.7;//in kohm
Rc=3.3;//in kohm
IR=(VEE-VBE)/R;//in mA
IC3=IR;//in mA
IC1=IC3/2;//in mA
IC2=IC3/2;//in mA
re1=VT/IC1;//in ohm
re2=re1;//in ohm
// part (i)
Ad=(Rc*1000)/re1;//unitless
// part (ii)
Ri1=2*BETAac*re1*10^(-3);//in kohm
Ri2=2*BETAac*re2*10^(-3);//in kohm
disp(Ad,"Differential mode voltage gain is : ")
disp("Input resistances are :")
disp(Ri1,"Ri1 in kohm is : ")
disp(Ri2,"Ri2 in kohm is : ") |
5dea919b2bf4ff54c09932a792826369d417726b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH8/EX8.14/Ex8_14.sce | 231f66bd9109828c5d75a5379b57271254d4b17c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,050 | sce | Ex8_14.sce | // chapter 8
// example 8.14
// Determine duty cycle for motoring, regenerating mode and to achieve regenerating mode and poweer returned
// page-477
clear;
clc;
// given
Edc=220; // in V (dc source)
R=0.1; // in ohm
L=10; // in mH
Eb=100; // in V (back emf)
I0=10; // in A
// calculate
L=L*1E-3; // changing unit from mH to H
// since I0=(E0-Eb)/R therefore we get,
E0=I0*R+Eb; // calculation of average load voltage in motoring mode
// since E0=alpha*Edc, therefore we get
alpha_1=E0/Edc; // calculation of duty cycle for motoring mode
alpha_2=Eb/Edc; // calculation of duty cycle for generating mode
alpha_3=(Eb-I0*R)/Edc; // calculation of duty cycle to achieve regenerating mode
P=Eb*I0-I0^2*R; // calculation of power returned to source during braking
printf("\nThe duty cycle for motoring mode is \t\t %.3f ",alpha_1);
printf("\nThe critical duty cycle for generating mode is \t %.4f ",alpha_2);
printf("\nThe duty cycle to achieve regenerating mode is \t %.2f ",alpha_3);
printf("\nThe power returned to source during braking is \t %.f W",P); |
4d83ab1733b091a8be251091773bc2dd4856eaac | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH1/EX1.3/1_3.sce | acebfe454107441bcfa19c92ce7bef2ff98bf59d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,393 | sce | 1_3.sce | clear;
clc;
//Example - 1.3
//Page number - 13
printf("Example - 1.3 and Page number - 13\n\n");
// Given
P1 = 3;// [bar] - initial pressure
V1 = 0.5;// [m^(3)] - initial volume
V2 = 1.0;// [m^(3)] - final volume
//(a)
n = 1.5;
//Let P*V^(n)=C //Given relation
//W (work done per mole)= (integrate('P','V',V1,V2))
//W = (integrate('(C/V^(n))','V',V1,V2)) = (C*((V2^*(1-n))-(V1^*(1-n))))/(1-n)
//Where C=P*V^(n)=P1*V1^(n)=P2*V2^(n)
//Thus w=((P2*V2^(n)*V2^(1-n))-(P1*V1^(n)*V1^(1-n)))/(1-n)
//w = ((P2*V2^(n))-(P1*V1^(n)))/(1-n)
//and thus W=((P2*V2)-(P1*V1))/(1-n)
//The above expression is valid for all values of n,except n=1.0
P2 = (P1*((V1/V2)^(n)));//[bar] //pressure at state 2
//we have,(V1/V2)=(V1t/(V2t),since the number of moles are constant.Thus
W = ((P2*V2)-(P1*V1))/(1-n)*10^(5);//[J]
W = W/1000;//[kJ]
printf(" (a).The work done (for n=1.5) is %f kJ\n",W);
//(b)
//For n=1.0,we have, PV=C.
// w(wok done per mol)= (integrate('P','V',V1,V2)) = (integrate('C/V','V',V1,V2)) = C*ln(V2/V1)=P1*V1*ln(V2/V1)
W1 = P1*V1*log(V2/V1)*10^(5);//[J]
W1 = W1/1000;//[kJ]
printf(" (b).The work done (for n=1.0) is %f kJ\n",W1);
//(c)
//For n=0,we get P=Constant and thus
P = P1;//[bar]
// w =(integrate('P','V',V1,V2)) = P*(V2-V1)
W2 = P*(V2-V1)*10^(5);//[J]
W2 = W2/1000;//[kJ]
printf(" (c).The work done (for n=0) is %f kJ\n\n",W2);
|
a72365987f1525fc4ed656268413093a10bef532 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2195/CH3/EX3.15.1.c/ex_3_15_1_c.sce | 0755c529c1f8dd693109e797017324335deed652 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 488 | sce | ex_3_15_1_c.sce | //Example 3.15.1.c//voltage
clc;
clear;
close;
format('v',5)
r1=25;// in kilo ohms
r2=5;//in kilo ohms
v=30;//in volts
vr2=(r1/(r1+r2))*v;// voltage in volts across 5 kilo ohms resistance
//case 2
s2=20;//sensivity in kilo ohms/volts
v1=10;// in volts
rm2=v1*s2;//in kilo ohms
req1=((rm2*r2)/(rm2+r2));//equivalent resistance in ohms
vrb2=((req1/(r1+req1)))*v;// voltmeter reading when sensivity is 1 kilo ohms /V
disp(vrb2," voltmeter reading when sensivity is 1 kilo ohms /V in volts")
|
14af42c4215e75e20f9e046a063df96d655e1e8d | eb7eeb04a23a477e06f3c0e3d099889caee468b4 | /src/tools/scilab/iome_toolbox/macros/setparamvec.sci | 9529a0f841ae8a6aa9d4e6580390f482fe963e2b | [] | no_license | mikeg64/iome | 55699b7d7b3d5c1b006d9c82efe5136b8c909dfd | cc1c94433133e32776dcf16704ec4ec337b1b4a0 | refs/heads/master | 2020-03-30T15:57:33.056341 | 2016-04-13T09:24:27 | 2016-04-13T09:24:27 | 151,387,236 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 914 | sci | setparamvec.sci | function [result]=setparamvec(name, vin,elist)
//AddMetadata(name, property, port)
nargin=length(elist);
if nargin>0 then
server=elist(1);
if nargin>1 then
port=elist(2);
if nargin>2 then
id=elist(3);
else
id=0;
end
else
port=8080;
end
else
server='localhost';
port=8080;
id=0;
end
try
[l1,l2]=size(vin);
if l1>l2
len=l1;
nvin=vin';
else
len=l2;
nvin=vin;
end
vecstring=vectostring(nvin, ',');
//put double quotes around the vec string so that it is
//passed into unix shell script as a single variable
//uvecstring=sprintf('""%s""',vecstring);
scommand=sprintf("iogs setparam vec %s %s %d %d %d %s", name, vecstring,len, id,port,server);
unix_g(scommand);
result=0;
catch
disp('SetVecParam!');
result=-1;
end
endfunction
|
d570684dc619971db6cf8b45d9d749cbea95af73 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3647/CH6/EX6.6/ex6_6.sce | f8e48961f99f5b5c815ec7e233b3dd93b5804401 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 359 | sce | ex6_6.sce | //Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
d=4//in
p=2//ft
d1=1/2//in
e=13200//tonf/in^2
f=9.51//tonf/in^2
k=0.0114//tonf/in^2
//CALCULATIONS
E=k*f//in tonf
F=(p/(%pi/d*d^2))//tonf/in^2
//RESULTS
printf('the final stress after oscillation has died aways will load/area=% f tonf/in^2',F)
|
396b485b14fc500c7f03b6719282559e46b37f4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2135/CH1/EX1.21/Exa_1_21.sce | 0afd942e42af5902708b7006096cbadfabed9a47 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 287 | sce | Exa_1_21.sce | //Exa 1.21
clc;
clear;
close;
format('v',7);
//Given Data :
p=10;//bar
T=327+273;//K
M=42.4;
m=1;//Kg
Rdegree=8314.3;//Nm/KgK
R=Rdegree/M;//Nm/KgK
V=m*R*T/p/10^5;//m^3/Kg
disp(V,"Specific volume in m^3/Kg ; ");
rho=m/V;//Kg/m^3
disp(rho,"Density of gas in Kg/m^3 : ");
|
e5f7a51090c5b2825d70b1d27ff6080b7f843c26 | 449d555969bfd7befe906877abab098c6e63a0e8 | /287/CH3/EX3.3/Exa3_3.sci | ea05aa840c353b448c3576f7282d72576f5c69f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 264 | sci | Exa3_3.sci | //Determine the capacity & spectral efficiency of a TDMA system
Nb = 0.9;
u = 2;
Bw = 12.5e+6;
Vf = 1;
R = 16.2e+3;
N = 19;
Nu = ( ((Nb*u)/Vf) * (Bw/(R*N)) );
N1 = ( (Nu*R) / (Bw) );
disp(Nu, 'Nu')
disp(N1, 'Spectral Efficiency (in bits/sec/Hz)')
|
2a83fb0dce711b36c994fa3b3c48dc929cc5bc75 | 449d555969bfd7befe906877abab098c6e63a0e8 | /599/CH6/EX6.16/example6_16.sce | f235578dafb85b4732f2cb0271acd85d27cbeb66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 999 | sce | example6_16.sce |
clear;
clc;
printf("\t Example 6.16\n");
m1=.12; //initial moisture content
dT=85; //product of 85 degree is used in design purpose
U=1700; //overall heat transfer coefficient
m2=.4; //final moisture content
r=20; //production rate
//4 kg of moisture is present in 100 kg product
t=4*20/100; // moisture content in 20 kg moisture
w=20-t; //dry solid weight
i=w*m1/(1-m1); //initial moisture content
j=i-t //water evaporated
ds=2296.1; //latent heat for vaporisation at 85 degree in kj/kg
h=j*ds; //heat required (assuming th esolid mix. enters at 85)
//U*A*dT = j*ds
A=h/(U*dT); //surface area of the roller required to produce aproduction rate of 20 kg product per hour
printf("\n surface area of the roller required to produce aproduction rate of 20 kg product per hour:%f m^2",A/3.600);
//end |
26dc6c2d23d14c4b5a7995b27aa4813e224f30ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /1994/CH3/EX3.5/Example3_5.sce | 980fd1a976674cfc566a10a76a5b73c99d35875c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 122 | sce | Example3_5.sce | //Chapter-3,Example3_5,pg 3_13
F=1*10^6
T=1/F
n=8
Tc=T*(n+1)
printf("converstion time\n")
printf("Tc=%.7f sec",Tc)
|
32553fcac1b357abb042c8b4207f71f60f7a01c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2297/CH4/EX4.9/Ex4_9.sce | 05e9e59c4523c69145465f2d6a88acb34ccb711b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,590 | sce | Ex4_9.sce | // Example 4.9;parameter of primary side ,regulation and efficiency
clc;
close;
clear;
//given
format('v',6)
po=100;//watts
v1=200;//volts
io=1;//amperes
ocpf=po/(v1*io);//open circuit power factor
sinpf=sqrt(1-ocpf^2);//
im=io*sinpf;//in amperes
iw=io*ocpf;//current in amperes
rm=v1/iw;//ohms
xm=v1/im;//in ohms
vs=15;//volts
ia=10;//amperes
zo2=vs/ia;//in ohms
wa=85;//watts
ro2=wa/(ia)^2;//ohms
e2=400;//volts
e1=200;//volts
k=e2/e1;//transformation ratio
zo1=zo2/k^2;//ohms
ro1=ro2/k^2;//ohms
xo1=sqrt(zo1^2-ro1^2);//ohms
disp(" part (a)")
disp(im,"magnetising component of no load current (Im) is,(A)=")
disp(iw,"working component of no load current (Iw) is,(A)=")
disp(rm,"resistance for primary side (Rm) is,(Ohm)=")
disp(xm,"reactance for primary ohms (Xm) is,(Ohm)=")
disp(xo1,"impedence for primary side (X01) is,(Ohm)=")
disp("part (b)")
kva=4000;//kVA
i2=kva/e2;//in amperes
xo2=sqrt(zo2^2-ro2^2);//ohms
pf=0.8;// power factor
vlag=i2*(ro2*pf+xo2*sqrt(1-pf^2));//in volts
prld=(vlag*po)/e2;//
vlag1=i2*(ro2*pf-xo2*sqrt(1-pf^2));//in volts
prld1=(vlag1*po)/e2;//
disp(prld,"percentage regulation on lagging load is,(%)=")
disp(prld1,"percentage regulation on leading load is,(%)=")
disp("part (c)")
cl=85;//copper losses
nloss=100;//no load losses
fll=cl+nloss;//full load losses
pf=0.8;//power factor
flo=kva*pf;//efficiency
effl=flo/(flo+fll);//efficiency
hll=(1/2)^2*cl+nloss;//loss in watts
op=(1/2)*kva*pf;//ouput power in watts
efhl=op/(hll+op);//efficiency at half load
disp(effl*100,"efficiency at full load is,(%)=")
disp(efhl*100,"efficiency at half load is,(%)=")
|
ea7279ae04f17dd4adb1d5747f06e61da9e5f030 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH12/EX12.25/Ex12_25.sce | 46a441937922714615ec4433435d91f0bce255cb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 569 | sce | Ex12_25.sce | //Initilization of variables
theta=linspace(0,360,13)
//Calculations
//Defining everything in terms of matrices
t=(theta*%pi)/(180*6) //s converting degrees to radians
costheta=cosd(theta)
sintheta=sind(theta)
x=2*costheta //ft
v=-12*sintheta //ft/s
a=-72*costheta //ft/s^2
//Plotting
subplot(221)
plot(t,x)
xlabel('t(s)')
ylabel('Displacement x(ft)')
subplot(222)
plot(t,v,t,0)
xlabel('t(s)')
ylabel('Velocity v(ft/s)')
subplot(223)
plot(t,a)
xlabel('t(s)')
ylabel('Acceleration a(ft/s^2)')
//Result
clc
printf('The results are the plots')
|
a49e087b049563d93f459361e8effa6f8ca88529 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2519/CH11/EX11.2/Ex11_2.sce | 2f3a50c7114f08e8c55530052206ccd6927d26b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 251 | sce | Ex11_2.sce | clc
clear
//Initialization of variables
P2=10 //psia
P1=100 //psia
T1=900 //R
w=50 //Btu/lbm
k=1.39
cp=0.2418
//calculations
T2=T1*(P2/P1)^((k-1)/k)
T2=477
KE=-w-cp*(T2-T1)
//results
printf("Change in kinetic energy = %.1f Btu/lbm",KE)
|
ebfca5830820cb757f4b2b5530f6777509cdeefc | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH1/EX1.4/Example_1_4.sce | 42bbba832b61aa9d913f2608469b01c844237348 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 420 | sce | Example_1_4.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 1
//Introduction and Basic Concepts
//Example 4
clear;
clc;
//Given
F = 600; //weight in N
t = 120; //time in sec
h = 0.18; //height of stairs in m
//To determine the power developed in man
S = 20*h; //total vertical displacement in m
W = F*S; //work done in J
P = W/t; //power developed
mprintf('Power developed is %i W',P);
//end |
8778d08d7c480cb581f59b6255845402d0ad1180 | fce47a4c482ae622563fc72d7643d824cc572edc | /_scilabTP/tp4/marcheBernoulliCentree.sce | d1c3906485c8befaa2d0b9946d657786e3aebb07 | [] | no_license | ece2lr/ece2lr.github.io | a57ff8852ef06b7cef1c734106f1badd668ebcb1 | 13479dc224e39521c6c387401b889e62a90a8d0b | refs/heads/master | 2021-01-12T12:07:37.196408 | 2017-12-16T19:25:16 | 2017-12-16T19:25:16 | 72,310,248 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 539 | sce | marcheBernoulliCentree.sce | // tracer une ou plusieurs trajectoires de la marche de Bernoulli centree
// Paramètres :
N = 1 // nombre de trajectoires
T = 10^1 // longueur des trajectoires
p =.5 // probabilité de succès
q = 1-p // probabilité d'échec
echBer = grand(N,T,"bin",1,p) // sauts vers le haut
sautsCentres = 2 * echBer - 1 // on centre
marche = cumsum(sautsCentres, "c") // trajectoires
clf()
plot2d2(1:T,marche') // tracer les trajectoires
// cosmetique : toutes les trajectoires en bleu
e = gce()
e.children.foreground=2
|
99dfc701e2ba30dabc02ff2c05106089e4f02102 | f81f2aca21a9a22746300d097acd62205d34fb61 | /numberDays.sce | ab9588b4456e9657629c8dc1eb96ce09d2b9c315 | [] | no_license | br3688/SunPosition | e695d9f69e6ab8a6b1394ffe0e8c24b42f849d17 | 5169ba7e5374f617487c95c34e0c2410b08d2573 | refs/heads/master | 2020-07-01T04:57:25.732520 | 2016-11-22T18:51:29 | 2016-11-22T18:51:29 | 74,095,307 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 707 | sce | numberDays.sce | function [days] = numberDays(month,day)
days = 0;
for i = 1:month-1
if pmodulo(i,2) == 1 then
isEven = %F;
else
isEven = %T;
end,
if i <= 7 then
if isEven == %T;
if i == 2 then
days = days + 28;
else
days = days + 30;
end,
else
days = days + 31;
end,
end,
if i >7 then
if isEven == %T;
days = days + 31;
else
days = days+30;
end,
end,
end
days = days + day;
endfunction
//1 31
//2 28 59
//3 31 90
//4 30 120
//5 31 151
//6 30 181
//7 31 212
//8 31 243
//9 30 273
//10 31 304
//11 30 334
//12 31 365
|
ea81b5a6d4ef630be58346376e7b88f015b8ebc6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /593/CH8/EX8.3/ex8_3.sce | 876c3bec4be7d25db76a8949620592241006b434 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,636 | sce | ex8_3.sce | clear;
//clc();
// Example 8.3
// Page: 167
printf("Example-8.3 Page no.-167\n\n");
//***Data***//
x_a = 0.05;// mole fraction of acetone in liquid phase
x_w = (1-x_a);// mole fraction of the water in the liquid phase
P = 1.00;//[atm] Total pressure in vapor phase
// Let us assume that the solution is ideal
// We will take the help of trial and error methad and find a temperature at which sum of the computed ideal solution vapor phase mole fraction is 1.00
// For our first try let the temperatute is
T_1 = 80;//[C]
// Now from Table A.2( page 418), the Antoine equation constant for acetone are
A_a = 7.02447;
B_a = 1161;
C_a = 224;
// and that for water
A_w = 7.94917;
B_w = 1657.462;
C_w = 227.02;
// Now from Antoine equation
// log10(p) = A - B/(T+C)
// So, vapor pressure for pure acetone at 80 C (in atm)is
p_a_1 = (1/760)*10^(A_a - B_a/(T_1+C_a));//[atm]
// and that of water is
p_w_1 = (1/760)*10^(A_w - B_w/(T_1+C_w));//[atm]
// Now from Raoult's law
// y_i*P = x_i*p_i
// so, vapor phase composition at this temperature is
y_a_1 = (x_a*p_a_1)/P;
y_w_1 = (x_w*p_w_1)/P;
// Sum of these two compostion is
y_1 = (y_a_1 + y_w_1);
// Since, y_1 is not equal to 1.00, so assumed temperature is wrong
// Now we will assume our temperature as
T_2 = 96.4060;//[C]
// Again, from Antoine equation
// log10(p) = A - B/(T+C)
// So, vapor pressure for pure acetone at 80 C (in atm)is
p_a_2 = (1/760)*10^(A_a - B_a/(T_2+C_a));//[atm]
// and that of water is
p_w_2 = (1/760)*10^(A_w - B_w/(T_2+C_w));//[atm]
// Now from Raoult's law
// y_i*P = x_i*p_i
// so, vapor phase composition at this temperature is
y_a_2 = (x_a*p_a_2)/P;
y_w_2 = (x_w*p_w_2)/P;
// Sum of these two compostion is
y_2 = (y_a_2 + y_w_2);
// Value of y_2 is equal to 1.00, so our assumption is right
// These are the values when the solution would behave as ideal, but this is not the actual scene
// The experimental values of the boiling point and vapor phase composition are listed in the table 8.1(page 162) given in book, which are
T_e = 74.8;//[C] Boiling temperature
y_a_e = 0.6381;// vapor phase composition of acetone
printf(" Comparison of experimental values to those computed by the ideal solution assumption, x_acetone = 0.05 and P = 1.00 atm\n\n");
printf(" \t\t\t Experimental Values from Table 8.1 \t\t\t\tValues calculated assuming idea solution\n\n");
printf(" Equilibrium(boiling) \t\t%0.1f \t\t\t\t\t\t\t\t\t %0.1f \n temperature T deg C\n\n",T_e,T_2);
printf(" Mole fraction acetone \t\t%f \t\t\t\t\t\t\t\t %f \n in the vapor phase (y_a)",y_a_e,y_a_2);
|
0b7a265ded98579bf1c87c27dd11d75cb7cdc592 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH10/EX10.11/Ex10_11.sce | 70e926ccb1e03a694d23bea79e6f4007992c6161 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 772 | sce | Ex10_11.sce | //CHAPTER 10- THREE-PHASE INDUCTION MACHINES
//Example 11
clc;
disp("CHAPTER 10");
disp("EXAMPLE 11");
//VARIABLE INITIALIZATION
P1=4; //number of poles
s=5/100; //slip
f=60; //frequency of synchronous generator in Hertz
//SOLUTION
//solution (a)
N_s=(120*f)/P1; //synchronous speed of generator in rpm with four poles
N_r=N_s*(1-s); //rotor or motor speed in rpm
N_r=round(N_r); //to round off the value
disp(sprintf("(a) The speed of the motor is %d rpm",N_r));
//solution (b)
P2=6;
N_s=(120*f)/P2; //synchronous speed of generator in rpm with six poles
disp(sprintf("(b) The speed of the generator is %d rpm",N_s));
//END
|
100f9923257e7dba3c24d8803f08b9dd622d7326 | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/CH2/EX2.3/2_3.sce | fc01eb298f012221ce4d9fe94de4330cad6f79d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 520 | sce | 2_3.sce | pathname=get_absolute_file_path('2_3.sce')
filename=pathname+filesep()+'2_3_data.sci'
exec(filename)
//For N2
p1=(m1*RN2*T)/V
//For O2
p2=(m2*RO2*T)/V
//For CO2
p3=(m3*RCO2*T)/V
//Total pressure of the mixture
p=p1+p2+p3
//Gas constant of the mixture
R=(m1*RN2+m2*RO2+m3*RCO2)/(m1+m2+m3)
printf("\n\nRESULTS\n\n")
printf("\npressure for N2:%f\n",p1)
printf("\npressure for O2:%f\n",p2)
printf("\npressure for CO2:%f\n",p3)
printf("\ntotal pressure:%f\n",p)
printf("\ngas consant of the mixture:%f\n",R) |
2c38f33f48f8249e2bc747ba172f719b297e08b5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH8/EX8.17/ex8_17.sce | d598cfccad8a63b4cfa7e7bc0d8c850636c86600 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,177 | sce | ex8_17.sce | // Exa 8.17
clc;
clear;
close;
// Given data
V_H2= 0.15;// in m^3
V_CH4= 0.02;// in m^3
V_CO= 0.20;// in m^3
V_CO2= 0.06;// in m^3
V_O2= 0.03;// in m^3
V_N2= 0.54;// in m^3
V1= 0.5*V_H2;// quantity of O2 required for complete combustion of H2
V2= 2*V_CH4;// in m^3
V3= 0.5*V_CO;// in m^3
V= V1+V2+V3;// total oxygen required in m^3
O2_supp= V-V_O2;// O2 to be supplied by air in m^3
Air_req_min= O2_supp/0.21;// minimum quantity of air required in m^3
Actual_Air_Supp= 1.5*Air_req_min;// m^3 of air
disp(Actual_Air_Supp,"The volume of air supplied in m^3")
Vol_Carbondioxide_inFlue= V_CO2+V_CH4+V_CO;//total volume of carbon dioxide
Vol_O2_inFlue= (Actual_Air_Supp-Air_req_min)*0.21;// in m^3
N2_from_air_Supp= 0.79*Actual_Air_Supp;// in m^3
Vol_N2_inFlue= N2_from_air_Supp+V_N2;// in m^3
total= Vol_Carbondioxide_inFlue+Vol_O2_inFlue+Vol_N2_inFlue;// in m^3
Per_CarbonDioxide= Vol_Carbondioxide_inFlue/total*100;// in %
Per_Oxygen= Vol_O2_inFlue/total*100;// in %
Per_Nitrogen= Vol_N2_inFlue/total*100;// in %
disp(Per_CarbonDioxide,"% Carbon dioxide is : ")
disp(Per_Oxygen,"% Carbon dioxide is : ")
disp(Per_Nitrogen,"% Carbon dioxide is : ")
|
f12c11f25edb79dc2fada868f12c05a7a04e8bc5 | 39c5c468df5e2bde0147a30cf092fc8da3e7ed3e | /UFRGS/calcNumerico/area1/t6.sce | b236513881785a25571325ef7060af4dc7280e82 | [] | no_license | andredxc/Files | 9dffc9fe5f7e923b83035d794dfa15c930cdb898 | e32309b9ab548b829b04be66c2776cf9c9c6656e | refs/heads/master | 2021-06-03T10:44:01.606242 | 2020-09-21T15:39:48 | 2020-09-21T15:39:48 | 107,410,076 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 565 | sce | t6.sce | // Questao 8
A8 = [2 1 0 0 0 0 0 0
1 2 1 0 0 0 0 0
0 1 2 1 0 0 0 0
0 0 1 2 1 0 0 0
0 0 0 1 2 1 0 0
0 0 0 0 1 2 1 0
0 0 0 0 0 1 2 1
0 0 0 0 0 0 1 2]
b8 = [1 1 1 1 1 1 1 1]'
x18 = [0 0 0 0 0 0 0 0]'
//[x8, deltax8] = gauss_seidel(A8, b8, x18, 10^(-4), 25)
//disp(norm(x8,%inf))
// Questao 9
A9 = A8
b9 = b8
x19 = x18
[x9, deltax9] = jacobi(A9, b9, x19, 10^(-3), 100)
disp(norm(b9-A9*x9, 2)) // Norma 2 do residuo
// Questao 10
A10 = A9
b10 = b9
x110 = x19
//[x10, deltax10] = gauss_seidel_diff(A10, b10, x110, 10^(-20), 240)
|
ca981954f2640bf0f0fec71c1bd40b8d0fb45f87 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH1/EX1.5/Ex1_5.sce | 7c323e56acc66d2de741e1db93b0303b9aef9609 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 468 | sce | Ex1_5.sce | // Exa 1.5
//Data taken from Exa 1.4 as stated
clc;
clear all;
// Given data
x1= 49.7;
x2= 50.1;
x3= 50.2;
x4= 49.6;
x5= 49.7;
n= 5; // number of x values
// 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_av= (abs(d1)+abs(d2)+abs(d3)+abs(d4)+abs(d5))/n; //Average deviation
printf('The average deviation = %.3f \n',D_av);
|
c9e2143e2a223e4f18bcb9ac3203687e08e997eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH16/EX16.2/ex16_2.sce | a0a1452f16e2d7c5ba96404fe8a3cafe2cb55464 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 426 | sce | ex16_2.sce | clc;
clear all;
m = 9.11e-31; // Mass of electron in Kg
e = 1.6e-19; // charge of an electron
r = 1.85e-10; // Radius of sodium atom in meters
tr = 3e-14; //Mean free time of sodium in meters/sec
a = (4*r)/sqrt(3); // Lattice constant of a BCC structure
ne = 2/(a^3);
rho = (m)/(ne*e^2*tr); // Resistivity of copper
disp('Ohm.m',rho,'Resistivity of copper is')
//Slight variation in answer as compared to textbook
|
9eaf6acea445577b99fcb2d82807dd91c74a2539 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1016/CH10/EX10.1/ex10_1.sce | b24e947cdd2086f74a3310468168698544473134 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 366 | sce | ex10_1.sce | clc;clear;
//Example 10.1
//given data
R=1.2*10^-15;//radius in A^(1/3)-m *A is mass number
mp=1.008;
mn=mp;//mass of proton and neutron in a.m.u
pi=3.14;//const
Dw=1000;///density of water in kg/m^3
//calculation
Vn=4/3*pi*R^3;
mp=mp*1.66*10^-27;//conversion in kg
mn=mp;
m=mn;//m is combined mass in A-kg
Dn=m/Vn;
R=Dn/Dw;
disp(R,'the ratio is') |
2ac74e68f0f25a1ace8a4e48b000e25c5361488c | 2708521297efb1172e3ed77ee9499fa770ece3dd | /me.sce | 0497aad3fac35d635a4b44232e7ef9a6cbe2a296 | [
"MIT"
] | permissive | airbilal/Regeneratively-Cooled-Liquid-Rocket-Engine-Design-Tool | 2b0659fdd527da225ca864b6a094571491f91868 | 6c44670db50d0ba3ffaec11eb8c5f7141fcaf52f | refs/heads/master | 2020-12-24T05:40:21.515294 | 2017-06-03T01:21:23 | 2017-06-03T01:21:23 | 92,975,517 | 6 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 3,409 | sce | me.sce | clc;close all;clear;fclose('all');
// //
// A code developed for
// Regeneratively cooled Liquid Rocket Engine Design
// by Dr. Bilal A. Siddiqui,
// Mechanical Engineering Department,
// DHA Suffa University
// Copyrights, Bilal Siddiqui @ 2017 under MIT Liscence
////
addpath('./fcea2');
requirements.F=convforce(250,'lbf','N');//newtons, required thrust
requirements.tb=10;//seconds, required burn time
requirements.pinj=20.4;//injection pressure (into combustor) in bars
requirements.pexit=1;//nozzle exit pressure (design point) in bars
requirements.Lstar=60*25.4/1000;//characteristic length of combustion chamer
requirements.acat=9;//contraction ratio, Ac/At
requirements.halfangle_con=45;//half angle of convergent side
requirements.halfangle_div=15;//half angle of divergent side
requirements.throatcurv=1;//ratio of curvature at throat to throat radius [0.5-1.5]
materials.wall.grade='SS 316-L';////SS 316-L
materials.wall.servtemp=1100;//1100 K for 316L//service temp, K, i.e. around 525C
materials.wall.strength=120E6;//120E6 for 316L//yield strength, Pascals, at 525C
materials.wall.fos=4.5;//factor of safety
materials.wall.cond=20;//20 for 316L//Thermal Conductivity, W/m2/K
oxidizer.name='O2';
oxidizer.carbon=0;
oxidizer.oxygen=2;
oxidizer.nitrogen=0;
oxidizer.hydrogen=0;
oxidizer.formula='O2';
oxidizer.composition=[oxidizer.carbon oxidizer.oxygen oxidizer.nitrogen oxidizer.hydrogen]';
oxidizer.molecularmass=oxidizer.carbon*12+oxidizer.oxygen*16+oxidizer.nitrogen*12+...
oxidizer.hydrogen*1;
oxidizer.gamma=1.4;// ratio of specific heats
oxidizer.hf=0;// ratio of specific heats
fuel(1).name='n-octane';
fuel(1).carbon=8;
fuel(1).oxygen=0;
fuel(1).nitrogen=0;
fuel(1).hydrogen=2+2*fuel(1).carbon;
fuel(1).formula=['C' num2str(fuel(1).carbon) 'H' num2str(fuel(1).hydrogen)];
fuel(1).composition=[fuel(1).carbon fuel(1).oxygen fuel(1).nitrogen fuel(1).hydrogen]';
fuel(1).fraction=1;
fuel(1).molecularmass=fuel(1).carbon*12+fuel(1).oxygen*16+fuel(1).nitrogen*12+...
fuel(1).hydrogen*1;
fuel(1).hf=-250.5;//heat of formation, kJ/mol
combustionproduct(1).carbon=1;
combustionproduct(1).oxygen=2;
combustionproduct(1).nitrogen=0;
combustionproduct(1).hydrogen=0;
combustionproduct(1).formula='CO2';
combustionproduct(2).carbon=0;
combustionproduct(2).oxygen=1;
combustionproduct(2).nitrogen=0;
combustionproduct(2).hydrogen=2;
combustionproduct(2).formula='H20';
////
//Perform stoichiometric calculations for ideal oxidizer/fuel ratio
stoich=stoichometry(fuel,oxidizer,combustionproduct);
////
//Optimize the fuel air ratio for the best specific impulse at given Pc
[engine.OF,nozzle.aeat,comb_chamb_st,comb_chamb_end,...
throat,exitplane,optim]=ofr_optim(stoich,requirements,fuel,oxidizer);
////
//Sizing the engine
[engine.cf,engine.cstar,engine.isp,propellants,tanks,geom]=...
sizing_LRE(engine,nozzle,materials,requirements,...
comb_chamb_st,exitplane);
////
// Axial variation of parameters
axialvariations=...
isentrpy(geom,comb_chamb_st,comb_chamb_end,throat,exitplane);
////
//Heat Transfer Calculations
[axialvariations.Taw,axialvariations.Twg,axialvariations.Two,...
axialvariations.q,axialvariations.hg]=heat_transfer(materials,...
geom,engine,comb_chamb_st,axialvariations);
////
//Plot results
plotresults(geom,axialvariations,optim);
////
save regenLREdata;
|
95529c3e7f6bb3dd6599e17b6339784fef3bbf9f | 81a7e7bbbdadf675a70f5ac7dd91aabafd748348 | /Assignment 2/colSpan.sce | c0bc98399be38a73720081174f44332921ad03f8 | [] | no_license | SreejeshSaya/LinearAlgrabra-SciLab | 089cef88d83e9bea68b3df0c20386957c7b7dcb0 | 0b0c22e2775b998701d2f8e44aa178d9dbc43d19 | refs/heads/master | 2020-12-29T20:38:17.084259 | 2020-04-06T06:50:12 | 2020-04-06T06:50:12 | 238,723,714 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 635 | sce | colSpan.sce | rows = 3;
cols = 4;
a = zeros(rows,cols);
disp("Inputs to all matrices to be sequential left to right, top to bottom");
disp("Inputs to A begin");
for i = 1:rows
for j = 1:cols
a(i,j) = input("value for a:")
end
end
disp('The given matrix is ')
//a=[4 5 9 -2; 6 5 1 12; 3 4 8 -3]
//a = [1, 3, 3, 2; 2, 6, 9, 7; -1, -3, 3, 4];
a(2,:)= a(2,:) - (a(2,1)/a(1,1))*a(1,:)
a(3,:)= a(3,:) - (a(3,1)/a(1,1))*a(1,:)
disp(a)
a(3,:)= a(3,:) - (a(3,2)/a(2,2))*a(2,:)
disp(a)
a(1,:)=a(1,:)/a(1,1)
a(2,:)=a(2,:)/a(2,2)
disp(a)
for i=1:3
for j=i:4
if(a(i,j)<>0)
disp('is a pivot column', j,'column')
break;
end
end
end
|
224af08b8d2cb09436e59f06d9d9c1f2203df03a | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH9/EX9.27/example_9_27.sce | 7eebb552fe7533bca69795ca3bf132e01304ad0f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 110 | sce | example_9_27.sce | //when |a|<|b| then system is stable. hence let a=2 and b=3
s=%s
sys=syslin('c',k/((s-2)*(s+3)))
evans(sys) |
41d78bf14dcc5823f4833d933ec7aeef53b97ca4 | 9e64cece1e64279fe69a44cb1bddd1246a53b903 | /helseCTF/maldoc/emo/powershell.tst | e191dad46638eb34920abd03687316b7e0020c22 | [] | no_license | mostbye/CTF | 7df2aba0c5c612f9b639bfa32169b1214dcb691d | d3ab9afe2c41d2ae7fbaffa8812be9104792be80 | refs/heads/main | 2023-03-30T04:48:50.745914 | 2021-04-02T08:28:59 | 2021-04-02T08:28:59 | 351,514,361 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,611 | tst | powershell.tst | $HUE6EF3qJ = $loO35 + $XA6KSLfs;
$G83nbt55u = ('8.8.8.8').rePlAcE('=',"eVil.Com");
$L22z0D = $dmP5ubAHG + $eE3C9kXk;
$HOV9pCZ6 = $fowcrXGu + $wHTOx;
sV ('mMfcSZy9T3') (SysTEm.IO.DIrecToRy);
$vizvGvv = $ho0GPRxaj + $tY75r;
$S2x7DYv9Q = ('https://helsectf.no/bilder/1_17178dd7h59fa2e8970c573fb9e19fd71.jpg@https://helsectf.no/bilder/2_596b32a0810862cce7367229919b9f6f.jpg@https://helsectf.no/bilder/3_31f7e7f712f50e0834c8f238c09ae.jpg@https://helsectf.no/bilder/4_7e3e1aa2c4b222a143ad3429c4842305.jpg@https://helsectf.no/bilder/5_29638154b8c2b437f59c005364d076cc.jpg')
Sv ('bgoqpZ') ('SysTEm.IO.File'));
$ahBEmWpJ = $PrCur9lya + $OuRqb;
$psM0ETe = $AMlYB + $gVHW8YHNBv;
$cT2La = (($HOME +"ILsC3MxUjZvsvILs04LeWqYUCqILsUG5AgxvK6ILsNrjJbCsuILslYnmhyVNAz" ).REplACE( "ILs",[stRiNg][cHaR]92));
cT2La = $HOME\C3MxUjZvsv\04LeWqYUCq\UG5AgxvK6\NrjJbCsu\lYnmhyVNAz
$SvVBimVNU = $Y1yXgq + $OAMLdZY;
$rQid5 = $cT2La+"yM2eomx.jpg";
$W5IFVGlB = $296HWw + $KGneW2Vs9;
IF(test-coNnEction -qUiet $G83nbt55u) {$mMfcSZy9T3::"crEAtEdIRECToRy"( $cT2La);
try{fOReaCh
($sorYf0zoo in $S2x7DYv9Q.ReplACE('GramMaRly','.exE').splIT("@".Split([chAR]124).rEPlace($BoI5Q,$vMQxk))
{if($bgoqpZ::Exists($rQid5))
{break}Invoke-WebRequest -Uri $sorYf0zoo -OutFile $rQid5}
start $rQid5;
Start-Sleep -s 1;
rEMoVE-iTeM -RecURSe -path ($HoMe+"\"+$cT2La.replace($Home+"\",$utlLEl).split([string][char]92)[0]);}
catch{clear-history;echo "Do or do not, there is no try."};
}else{= aDd-TYPE -aSsEmbLYNamE 'PrEsentatIoNFRaMEWorK';
[SySTEM.wiNDoWS.mesSaGebOX]::ShoW("D blir ittj fest og fart, uten internett og bart...");
|
5b0b9909e2dff7d89fdc3aa3070fbd680aa594c0 | be07c1e346737e6e38bb958d9a66f52f6da2180a | /Regression/DISHWASHER/DISHWASHER_W.tst | c0c05eb94b7c8528ea0d7e65fb537696246c4e59 | [] | no_license | dpreisser/Training | 1bc8840d646306d861f4c7610a28bb23667f06e5 | 97eb58c7963e4725d6a2ad9e8200ca9367c84061 | refs/heads/master | 2021-01-10T13:03:12.508795 | 2016-04-11T12:49:06 | 2016-04-11T12:49:06 | 54,963,561 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,205 | tst | DISHWASHER_W.tst | -- VectorCAST 6.4d (02/29/16)
-- Test Case Script
--
-- Environment : DISHWASHER_W
-- Unit(s) Under Test: dishwasher_fsm
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STANDARD_SPACING_R2
TEST.SCRIPT_FEATURE:OVERLOADED_CONST_SUPPORT
TEST.SCRIPT_FEATURE:UNDERSCORE_NULLPTR
TEST.SCRIPT_FEATURE:FULL_PARAMETER_TYPES
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
--
-- Subprogram: <<INIT>>
-- Test Case: PowerOn
TEST.SUBPROGRAM:<<INIT>>
TEST.NEW
TEST.NAME:PowerOn
TEST.AUTOMATIC_INITIALIZATION
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.<<GLOBAL>>.powerOn:1
TEST.END
-- Subprogram: processDryCycle
-- Test Case: processDryCycle.001
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processDryCycle
TEST.NEW
TEST.NAME:processDryCycle.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.processDryCycle.event:EVENT_STOP
TEST.EXPECTED:dishwasher_fsm.processDryCycle.return:STS_ALL_GOOD
TEST.END
-- Subprogram: processIdleState
-- Test Case: processIdleState.001
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processIdleState
TEST.NEW
TEST.NAME:processIdleState.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.processIdleState.event:EVENT_START_WASH
TEST.EXPECTED:dishwasher_fsm.processIdleState.return:STS_ALL_GOOD
TEST.END
-- Subprogram: processRinseCycle
-- Test Case: processRinseCycle.001
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processRinseCycle
TEST.NEW
TEST.NAME:processRinseCycle.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.processRinseCycle.event:EVENT_START_DRY
TEST.EXPECTED:dishwasher_fsm.processRinseCycle.return:STS_ALL_GOOD
TEST.END
-- Test Case: processRinseCycle.002
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processRinseCycle
TEST.NEW
TEST.NAME:processRinseCycle.002
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.STUB:dishwasher_fsm.checkHeatingElement
TEST.VALUE:dishwasher_fsm.checkHeatingElement.return:STS_NO_HEAT
TEST.VALUE:dishwasher_fsm.processRinseCycle.event:EVENT_START_DRY
TEST.EXPECTED:dishwasher_fsm.processRinseCycle.return:STS_NO_HEAT
TEST.END
-- Subprogram: processWashCycle
-- Test Case: processWashCycle.001
TEST.UNIT:dishwasher_fsm
TEST.SUBPROGRAM:processWashCycle
TEST.NEW
TEST.NAME:processWashCycle.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.VALUE:dishwasher_fsm.processWashCycle.event:EVENT_START_RINSE
TEST.EXPECTED:dishwasher_fsm.processWashCycle.return:STS_ALL_GOOD
TEST.END
-- COMPOUND TESTS
TEST.SUBPROGRAM:<<COMPOUND>>
TEST.NEW
TEST.NAME:<<COMPOUND>>.001
TEST.NOTES:
Author:
Date:
Version:
Requirement:
TEST.END_NOTES:
TEST.SLOT: "1", "dishwasher_fsm", "processIdleState", "1", "processIdleState.001"
TEST.SLOT: "2", "dishwasher_fsm", "processWashCycle", "1", "processWashCycle.001"
TEST.SLOT: "3", "dishwasher_fsm", "processRinseCycle", "1", "processRinseCycle.001"
TEST.SLOT: "4", "dishwasher_fsm", "processDryCycle", "1", "processDryCycle.001"
TEST.END
--
|
cadf8924fa8c7a990c9beed7fa174e11bb9765f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH9/EX9.9/ex_9_9.sce | 7c8aafe3152512ecd1c24475c2cdfb2af92b45a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,491 | sce | ex_9_9.sce |
clc
//soltuion
//given
D=1250//mm
P=2.5//N/mm^2
ftu=420//N/mm^2
fcu=650//N/mm^2
Tu=300//N/mm^2
eff=0.8
Fs=5//factor of safety
pi=3.14
ft=ftu/Fs
fc=fcu/Fs
T=Tu/Fs
t=P*D/(2*ft*eff)//mm//thickness of plate
d=6*sqrt(t)//mm//DIA
//Pt=(p-d)*t*ft=(p-31.5)*2100//N//tearing resistance of plate
Ps=4*1.875*(pi/4)*d^2*T+(pi/4)*d^2*T//=8.5*(pi/4)*d^2*T//N//shearing resistance of rivet//N//shearing resistance of rivet
//Pt=Ps
//p-31.5=(397500/2100)
//p=31.5+(397500/2100)//mm
//pmax=C*t+41.28//mm=196mm
//since p>pmax,therefore
//p=pmax
p=196//mm
p'=196/2//mm
d1=0.2*p+1.15*d//mm//diatnce between outtr and row and next row
d2=0.165*p+0.67*d//mm//distance ebtween inner row for zigzag riveting
t1=0.75*t//mm//thickness of wide strap
t2=0.625*t//mm//thickness of narrow strap
m=1.5*d//mm//margin
Pt=(p-d)*t*ft//(p-31.5)*2100//N
Pc=5*d*t*fc//N//crushing resistance of rivet
P=p*t*ft//N//strength of the unriveted
//joint may also fail due to combine teARING AND shearing reistance
Pts=(p-2*d)*t*ft+(pi/4)*d^2*T//N
printf("the value of forces calculted are,%f N\n,%f N\n,%f N\n",Pt,Pc,Pts)
//eff=(least of Pt,Pc,Pts)/P
eff=Pts/P//least is Ps
printf("the eff is,%f\n",eff)
printf("the pitch is,%f mm\n",p)
printf("the thickness of wide strap is,%f mm\n",t1)
printf("the thickness of narrow strap is,%f mm\n",t2)
printf("the diameter of rivets is,%f mm",d)
printf("the margine s,%f mm\n",m)
printf("the distance btw outer and next row is,%f mm\n",d1)
printf("the distance btw inner rows is,%f mm\n",d2) |
2dcccd3f5a5bab758c02d12a32f0212d1e549a1e | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/macros/mlink_connect.sci | e8c9f74fcfa4ef6e28b86de17cc8e67405686112 | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 1,653 | sci | mlink_connect.sci | function [link_fd, hwid] = mlink_connect(ip, port)
[link_fd, result] = call("sci_mlink_connect",..
ip, 1, "c",..
port, 2, "i",..
"out",..
[1, 1], 3, "i",..
[1, 1], 4, "i");
if result > -1 then
[hwid, result] = call("sci_mlink_hwid",..
link_fd, 1, "i",..
"out",..
[5, 1], 2, "i",..
[1, 1], 3, "i");
if result > -1 then
global %microdaq;
if isequal(%microdaq.private.mdaq_hwid, hwid) == %F then
%microdaq.private.mdaq_hwid = hwid;
%microdaq.model = 'MicroDAQ E' + string(hwid(1))..
+ '-ADC0' + string(hwid(2))..
+ '-DAC0' + string(hwid(3))..
+ '-' + string(hwid(4))..
+ string(hwid(5));
mdaq_hwid = hwid;
adc_info = get_adc_info(hwid);
dac_info = get_dac_info(hwid);
save(mdaqToolboxPath() + "etc"+filesep()+"mlink"+filesep()+"hwid", 'mdaq_hwid','adc_info','dac_info');
%microdaq.private.adc_info = adc_info;
%microdaq.private.dac_info = dac_info;
end
end
else
if result == -3 then
error(mdaq_error2(result), 10000 + abs(result));
end
end
endfunction
|
b3151a557ffc77c6c54ab63da8b2708ddf795738 | 449d555969bfd7befe906877abab098c6e63a0e8 | /587/CH12/EX12.6/example12_6.sce | dde18ae6ef16a134410a40f53e974a9aa124d0dc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,200 | sce | example12_6.sce | clear;
clc;
//Example12.6[Installing Reflective Films on Windows]
//Given:-
A_glazing=40;//[m^2]
SHGC_wof=0.766,SHGC_wf=0.261;//[kWh/year]
unit_c_e=0.08;//[$/kWh]
unit_c_f=0.5;//[$/therm]
COP=2.5,neta=0.80;
//Solution:-
//For the months of June,July,August and Sepetember
Q_summer=5.31*30+4.31*31+3.93*31+3.28*30;//[kWh/year]
//For the months oct,Nov,Dec,Jan,Feb,Mar,Apr
Q_winter=2.80*31+1.84*30+1.54*31+1.86*31+2.66*28+3.43*31+4.00*30;//[kWh/year]
c_l_d=Q_summer*A_glazing*(SHGC_wof-SHGC_wf);//[kWh/year]
disp("kWh/year",c_l_d,"The decrease in the annual cooling load is")
h_l_i=Q_winter*A_glazing*(SHGC_wof-SHGC_wf);//[kWh/year]
disp("kWh/year",h_l_i,"The increase in annual heating load is")
d_c_c=c_l_d*(unit_c_e)/COP;//[$/year]
i_h_c=h_l_i*(unit_c_f/29.31)/neta;//[$/year]
disp("per year",i_h_c,"and $",d_c_c,"The corresponding decrease in cooling costs and the increase in heating costs are $")
Cost_s=d_c_c-i_h_c;//[$/year]
disp("per year",Cost_s,"The net annual cost savings due to the reflective film is $")
I_cost=20*A_glazing;//[$]
disp(I_cost,"The implementation Cost of installing films is $")
pp=I_cost/Cost_s;//[years]
disp("years",pp,"Payback Period is")
|
dc90c2623997ba292385d02c990fe855e8ff209c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH5/EX5.18/5_18.sce | 1f07a1a1fbf1388a4d6c3d078d3601064752fd5d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 5_18.sce | //ques-5.18
//Calculating solubility of Strontium fluoride
clc
K=8;//solubility product (x10^-12)
c=0.1;//content of NaF (in M)
S=K/c^2;//solubility (x10^-12)
printf("The required solubility is %.0f*10^-10 mol/L.",S/100);
|
1b96f705e90d14c71a824a921d15b8b0d8dc8544 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.9_7.tst | 77b15b110ce7426c6f0c04db29bc93dee6f5013a | [] | 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 | 43,739 | tst | bow.9_7.tst | 9 4:0.1111111111111111 13:0.6666666666666666 18:0.16666666666666666 28:1.0 30:1.0 44:2.0 48:0.0625 51:0.3333333333333333 65:0.2857142857142857 68:1.0 89:0.5 106:0.5 120:2.0 164:0.08333333333333333 217:1.0 270:0.6666666666666666 273:0.5 335:0.3333333333333333 362:0.3333333333333333 520:1.0 612:2.0 644:2.0 759:0.5 777:1.0 795:1.0 832:0.5 842:1.0 895:1.0 945:1.0 1069:0.09090909090909091 1117:1.0 1145:1.0 1558:1.0 1611:1.0 1622:0.5 1827:1.0 1995:1.0 2081:0.5 2181:1.0 2316:1.0 2321:0.06666666666666667 2452:1.0 2454:2.0 2493:1.0 3113:1.0 3163:1.0 3527:2.0 3602:1.0 3649:1.0 3746:1.0 3862:1.0 3927:1.0 3957:1.0 3991:1.0 4064:1.0 4092:1.0 4777:1.0 4836:1.0 5824:1.0 6526:1.0 6661:1.0
9 3:1.0 4:0.2222222222222222 8:1.0 13:0.6666666666666666 18:0.16666666666666666 21:1.0 22:0.75 28:1.0 44:1.0 46:0.043478260869565216 49:0.16666666666666666 65:0.2857142857142857 83:0.3333333333333333 89:0.5 92:0.5 114:0.2 131:1.0 164:0.08333333333333333 175:0.5 177:0.5 178:1.0 198:1.0 206:0.5 207:1.0 208:0.5 249:0.75 270:0.3333333333333333 284:1.0 296:0.0625 430:1.0 492:1.0 514:0.3333333333333333 560:1.0 639:2.0 644:2.0 788:1.0 796:1.0 936:1.0 944:0.3333333333333333 974:1.0 1058:0.25 1395:1.0 1490:1.0 1804:1.0 2017:1.0 2235:1.0 2528:1.0 2568:1.0 2934:1.0 2991:1.0 3063:1.0 3519:1.0 3639:1.0 3749:1.0 3806:1.0 3864:1.0 4024:1.0 4385:1.0 4539:0.5 5105:1.0 5209:1.0 5349:1.0 6306:1.0 6480:1.0
9 3:1.0 4:0.7777777777777778 8:1.0 15:0.3333333333333333 18:0.16666666666666666 22:0.25 30:1.0 32:0.3333333333333333 44:1.0 46:0.021739130434782608 49:0.16666666666666666 65:0.14285714285714285 78:0.2 88:1.0 89:0.5 120:1.0 131:1.0 160:1.0 177:0.5 208:0.5 209:0.5 273:0.5 283:0.4 335:0.3333333333333333 362:0.3333333333333333 422:1.0 514:0.6666666666666666 638:0.6666666666666666 644:3.0 645:1.0 652:0.25 680:0.5 683:1.0 795:1.0 1081:1.0 1658:0.2 1832:1.0 2252:1.0 2321:0.06666666666666667 2362:1.0 3163:1.0 3518:1.0 3527:2.0 3539:1.0 3540:1.0 3611:1.0 3815:1.0 3841:1.0 3998:1.0 5150:1.0 5300:1.0 5620:1.0 6279:1.0 6526:1.0
9 3:1.0 4:0.1111111111111111 18:0.16666666666666666 22:0.25 36:2.0 44:1.0 46:0.021739130434782608 65:0.7142857142857143 71:1.0 86:0.5 114:0.2 178:1.0 234:0.5 249:0.25 335:0.3333333333333333 351:1.0 365:1.0 526:1.0 606:1.0 637:0.5 936:0.5 949:1.0 1081:1.0 1397:0.5 1572:1.0 1621:1.0 1651:1.0 3543:1.0 3566:1.0 3569:1.0 3611:1.0 3733:1.0 3876:1.0 3950:1.0 4224:1.0 4570:1.0 4765:1.0 4911:1.0 5209:1.0
9 8:1.0 12:0.5 13:0.6666666666666666 18:0.6666666666666666 22:0.25 44:1.0 49:0.08333333333333333 51:0.3333333333333333 61:1.0 62:0.5 65:0.42857142857142855 72:0.3333333333333333 73:1.0 117:1.0 160:0.3333333333333333 247:0.5 249:0.25 284:1.0 290:0.5 296:0.0625 322:0.1 351:1.0 489:0.5 529:0.25 549:0.14285714285714285 644:1.0 652:0.25 669:0.2 691:1.0 814:1.0 1215:1.0 1427:1.0 1707:1.0 1823:1.0 2278:1.0 2546:1.0 2681:1.0 3527:1.0 3617:1.0 3655:1.0 3822:1.0 4049:1.0 4429:1.0 4610:1.0 5635:1.0 5887:0.5 5928:1.0 6209:1.0
9 3:1.0 4:0.1111111111111111 17:0.2 18:0.16666666666666666 30:1.0 44:1.0 46:0.021739130434782608 49:0.08333333333333333 65:0.14285714285714285 78:0.4 131:2.0 166:1.0 180:1.0 242:0.021739130434782608 270:0.3333333333333333 290:0.16666666666666666 322:0.1 335:1.0 338:1.0 351:1.0 365:1.0 561:1.0 639:1.0 798:1.0 938:1.0 1076:0.5 1303:0.3333333333333333 2092:0.5 2159:1.0 2208:1.0 2373:1.0 2396:1.0 2454:2.0 3161:1.0 3527:1.0 3602:1.0 4246:1.0 4247:1.0 4676:1.0 6293:1.0
9 13:0.6666666666666666 18:0.16666666666666666 30:1.0 32:0.3333333333333333 36:2.0 46:0.021739130434782608 49:0.16666666666666666 64:0.05555555555555555 65:0.5714285714285714 81:1.0 89:0.5 159:1.0 160:0.3333333333333333 166:1.0 217:1.0 249:0.25 290:0.16666666666666666 297:1.0 351:1.0 363:0.5 399:2.0 430:1.0 639:1.0 644:2.0 749:0.5 832:0.5 1093:0.25 1395:1.0 1543:1.0 1995:1.0 2211:1.0 2305:1.0 3173:0.06666666666666667 3519:1.0 3542:2.0 3544:1.0 3590:1.0 3602:1.0 4142:1.0 4143:1.0 4464:1.0 5399:1.0 5971:1.0 6447:1.0
9 3:2.0 4:0.1111111111111111 18:0.5 28:1.0 30:1.0 36:1.0 46:0.043478260869565216 48:0.1875 49:0.08333333333333333 53:2.0 65:0.14285714285714285 81:1.0 84:1.0 186:0.3333333333333333 206:0.5 241:2.0 242:0.021739130434782608 249:0.25 290:0.16666666666666666 296:0.125 335:0.3333333333333333 386:1.0 399:2.0 400:0.3333333333333333 726:1.0 786:2.0 938:1.0 1022:1.0 1069:0.09090909090909091 1079:1.0 1303:0.3333333333333333 1687:1.0 1729:1.0 2321:0.06666666666666667 2533:1.0 3375:1.0 3527:1.0 3585:1.0 3686:1.0 4461:1.0 4500:1.0 4645:1.0 4745:1.0 5181:0.5 6181:1.0 6458:1.0 6487:1.0
9 4:0.1111111111111111 13:0.6666666666666666 21:1.0 28:1.0 30:1.0 36:1.0 46:0.043478260869565216 48:0.0625 49:0.16666666666666666 54:0.5 61:1.0 65:0.42857142857142855 117:1.0 208:0.5 217:1.0 242:0.021739130434782608 284:1.0 290:0.3333333333333333 296:0.0625 322:0.1 335:0.3333333333333333 362:0.3333333333333333 430:1.0 514:0.3333333333333333 520:2.0 575:0.3333333333333333 614:1.0 639:1.0 644:1.0 682:1.0 750:0.5 948:2.0 1075:2.0 1395:1.0 1849:1.0 1957:1.0 1995:1.0 2081:0.5 2159:1.0 2454:1.0 3128:1.0 3131:1.0 3527:1.0 3679:1.0 3837:1.0 4154:0.5 4970:1.0
9 4:0.2222222222222222 13:0.3333333333333333 18:0.3333333333333333 22:0.25 30:1.0 36:2.0 44:1.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.42857142857142855 83:0.3333333333333333 143:0.3333333333333333 166:1.0 175:0.5 178:1.0 206:0.5 247:0.5 268:1.0 270:0.3333333333333333 271:1.0 280:1.0 296:0.0625 322:0.1 335:1.0 351:1.0 520:1.0 544:0.5 644:1.0 691:1.0 733:0.5 786:1.0 896:1.0 1146:1.0 1272:0.14285714285714285 1757:1.0 1967:1.0 2154:1.0 2803:1.0 3519:1.0 3597:1.0 3611:1.0 3617:1.0 3797:1.0 4049:1.0 4506:1.0 4747:1.0 5415:1.0 5961:1.0 6655:1.0
9 3:1.0 13:0.3333333333333333 18:0.3333333333333333 28:1.0 30:1.0 36:1.0 48:0.0625 65:0.5714285714285714 116:1.0 160:0.3333333333333333 175:0.5 178:1.0 247:0.5 270:0.3333333333333333 271:2.0 290:0.16666666666666666 296:0.0625 335:0.3333333333333333 400:0.3333333333333333 520:1.0 544:0.5 589:1.0 644:1.0 726:1.0 735:1.0 749:0.5 945:1.0 1069:0.09090909090909091 1272:0.14285714285714285 1348:1.0 3294:0.5 3374:0.5 3519:1.0 3539:1.0 3540:1.0 3597:1.0 3611:1.0 3783:1.0 3959:1.0 3969:1.0 4506:1.0 4747:1.0 5961:1.0 6449:1.0
9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 22:0.25 30:1.0 44:2.0 46:0.021739130434782608 64:0.05555555555555555 65:0.5714285714285714 117:1.0 143:0.3333333333333333 166:1.0 178:1.0 249:0.5 273:0.5 296:0.0625 352:1.0 382:0.5 526:1.0 529:0.25 531:1.0 579:1.0 750:0.5 967:0.3333333333333333 1149:1.0 1364:0.5 1834:1.0 1936:1.0 2582:1.0 3527:1.0 4142:1.0 4156:1.0 4512:1.0
9 3:2.0 18:0.16666666666666666 65:0.2857142857142857 89:0.5 92:0.5 175:0.5 198:1.0 208:0.5 296:0.0625 297:1.0 335:0.3333333333333333 637:0.5 639:1.0 2100:1.0 3519:1.0 3658:1.0 4765:1.0 5961:1.0
9 4:0.1111111111111111 8:1.0 13:0.3333333333333333 18:0.3333333333333333 22:0.25 32:0.3333333333333333 34:1.0 49:0.08333333333333333 72:0.3333333333333333 73:1.0 160:0.3333333333333333 208:0.5 322:0.1 644:1.0 678:0.5 846:1.0 936:0.5 945:1.0 1069:0.09090909090909091 3493:1.0 3527:1.0 3806:1.0 4246:1.0 4343:1.0 6250:1.0 6527:1.0
9 3:2.0 4:0.3333333333333333 8:1.0 13:0.3333333333333333 17:0.2 18:0.3333333333333333 22:0.25 45:0.08333333333333333 46:0.021739130434782608 65:0.42857142857142855 66:1.0 72:0.3333333333333333 89:0.5 122:1.0 166:1.0 175:0.5 247:0.5 249:0.25 296:0.0625 322:0.1 334:0.3333333333333333 335:0.6666666666666666 387:0.5 492:1.0 577:1.0 639:1.0 686:0.5 796:1.0 957:1.0 1032:1.0 1091:1.0 1485:1.0 1729:1.0 1957:1.0 2100:1.0 3519:1.0 3618:1.0 4349:1.0 5230:1.0 5666:1.0 5900:1.0 5961:1.0
9 3:1.0 8:1.0 30:1.0 44:1.0 48:0.0625 49:0.16666666666666666 65:0.14285714285714285 84:1.0 92:0.5 166:1.0 206:0.5 241:1.0 242:0.021739130434782608 249:0.25 283:0.2 296:0.0625 301:1.0 335:0.6666666666666666 338:1.0 365:1.0 400:0.3333333333333333 561:1.0 719:1.0 948:1.0 1303:0.3333333333333333 2321:0.06666666666666667 2480:1.0 2852:1.0 3519:1.0 3645:1.0 4074:1.0 4378:1.0 5443:1.0 5902:1.0
9 3:1.0 4:0.2222222222222222 22:0.25 28:1.0 30:1.0 34:1.0 44:1.0 49:0.08333333333333333 65:0.2857142857142857 81:1.0 84:1.0 89:0.5 149:1.0 159:1.0 166:1.0 175:0.5 206:0.5 242:0.021739130434782608 296:0.0625 335:0.3333333333333333 351:2.0 352:1.0 366:0.5 520:1.0 549:0.14285714285714285 618:1.0 686:0.5 786:1.0 881:1.0 1303:0.3333333333333333 1757:1.0 1874:1.0 1882:1.0 2444:1.0 3527:1.0 3673:1.0 4143:1.0 4349:1.0 4350:1.0 4653:1.0 4877:1.0 4880:1.0 4991:1.0
9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 18:0.16666666666666666 30:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 62:1.0 64:0.05555555555555555 65:0.2857142857142857 106:0.5 149:1.0 240:0.5 249:0.25 270:0.3333333333333333 297:1.0 335:0.3333333333333333 351:1.0 362:0.3333333333333333 366:0.5 386:1.0 400:0.3333333333333333 526:1.0 606:1.0 612:1.0 656:1.0 680:0.5 880:1.0 881:1.0 903:0.5 936:0.5 1056:1.0 1069:0.09090909090909091 1090:1.0 1427:1.0 1572:1.0 1630:0.6666666666666666 1957:1.0 2353:1.0 3519:1.0 3590:1.0 3602:1.0 3783:1.0 4933:1.0 5051:1.0 5961:1.0
9 4:0.1111111111111111 8:1.0 12:1.0 13:0.3333333333333333 18:0.3333333333333333 30:1.0 36:2.0 46:0.021739130434782608 48:0.25 49:0.16666666666666666 65:0.42857142857142855 78:0.4 164:0.3333333333333333 175:1.0 178:1.0 283:0.4 309:1.0 335:0.6666666666666666 644:1.0 915:1.0 938:2.0 1272:0.14285714285714285 1386:1.0 1995:1.0 2227:1.0 2305:1.0 2321:0.06666666666666667 2831:1.0 3173:0.06666666666666667 3309:1.0 3518:1.0 3527:1.0 3655:1.0 3764:1.0 3803:1.0 4237:1.0 5059:1.0 5614:1.0 5880:2.0 5902:1.0
9 3:1.0 4:0.2222222222222222 18:0.6666666666666666 30:1.0 36:1.0 46:0.06521739130434782 48:0.0625 49:0.16666666666666666 65:0.14285714285714285 66:1.0 68:1.0 69:1.0 72:0.3333333333333333 106:0.5 175:0.5 186:0.3333333333333333 217:1.0 227:1.0 249:0.5 296:0.0625 335:0.6666666666666666 336:1.0 352:1.0 365:1.0 382:1.0 387:0.5 520:1.0 526:1.0 579:1.0 669:0.2 786:2.0 1521:1.0 1630:0.3333333333333333 2273:1.0 2321:0.06666666666666667 3527:1.0 3846:1.0 3939:1.0 4074:1.0 4143:1.0 4196:1.0 5902:1.0 6181:1.0
9 3:2.0 18:0.16666666666666666 22:0.25 31:1.0 44:1.0 46:0.043478260869565216 68:1.0 92:0.5 117:1.0 296:0.0625 335:0.3333333333333333 749:0.5 936:0.5 944:0.3333333333333333 1023:1.0 1075:1.0 1093:0.25 1729:1.0 1752:1.0 2316:1.0 2420:1.0 2621:0.5 3527:1.0 3917:1.0 4302:1.0 4392:1.0 5320:1.0
9 3:1.0 4:0.2222222222222222 8:1.0 13:0.6666666666666666 18:0.16666666666666666 22:0.25 28:1.0 30:1.0 32:0.3333333333333333 45:0.08333333333333333 65:0.42857142857142855 207:1.0 208:1.0 229:1.0 249:0.5 270:0.3333333333333333 290:0.3333333333333333 296:0.0625 322:0.1 351:1.0 366:0.5 529:0.25 549:0.14285714285714285 719:1.0 749:0.5 786:1.0 936:0.5 949:1.0 1081:2.0 1147:1.0 1244:0.5 1281:1.0 1348:1.0 1373:1.0 1515:1.0 1803:1.0 1957:1.0 1970:1.0 2245:1.0 2621:0.5 2918:1.0 2934:1.0 2954:0.5 3527:1.0 3535:1.0 3733:1.0 3987:0.5 4004:1.0 4074:1.0 4354:1.0 4518:1.0 6210:1.0
9 4:0.2222222222222222 18:0.3333333333333333 22:0.5 30:1.0 34:1.0 46:0.043478260869565216 48:0.0625 65:0.14285714285714285 78:0.2 89:0.5 114:0.2 128:1.0 166:1.0 247:0.5 270:0.3333333333333333 302:1.0 322:0.1 492:1.0 549:0.14285714285714285 644:1.0 670:1.0 749:0.5 777:1.0 881:1.0 1056:1.0 1272:0.14285714285714285 1287:1.0 1437:0.3333333333333333 1776:1.0 2100:1.0 2956:1.0 3322:1.0 3527:1.0 3619:1.0 5624:1.0 5961:1.0
9 4:0.1111111111111111 18:0.16666666666666666 30:1.0 36:1.0 86:0.5 160:0.3333333333333333 178:1.0 221:0.5 234:0.5 249:0.25 302:1.0 604:1.0 606:1.0 1069:0.09090909090909091 1979:1.0 2100:1.0 3527:1.0 5961:1.0
9 18:0.16666666666666666 22:0.25 30:1.0 44:1.0 46:0.043478260869565216 72:0.6666666666666666 78:0.2 240:0.5 241:1.0 249:0.25 335:0.3333333333333333 352:1.0 387:0.5 544:0.5 639:1.0 652:0.25 691:1.0 2064:0.5 2176:1.0 2222:1.0 3136:1.0 3493:1.0 3527:1.0 3846:1.0 4049:1.0 4142:1.0 4143:1.0 4204:1.0 4993:1.0 5230:1.0
9 22:0.5 30:1.0 32:0.3333333333333333 36:1.0 44:1.0 45:0.08333333333333333 49:0.08333333333333333 109:1.0 175:0.5 207:1.0 309:0.5 526:1.0 652:0.25 698:1.0 948:1.0 1116:1.0 1131:0.2 3527:1.0
9 3:2.0 4:0.2222222222222222 13:0.3333333333333333 18:0.16666666666666666 22:0.5 30:1.0 44:1.0 48:0.0625 229:1.0 273:0.5 304:1.0 322:0.1 335:0.3333333333333333 336:1.0 500:0.14285714285714285 514:0.3333333333333333 519:1.0 529:0.25 644:1.0 654:1.0 1052:1.0 1074:0.25 1293:1.0 1437:0.3333333333333333 1545:1.0 1630:0.3333333333333333 1687:1.0 2730:1.0 3445:1.0 3527:1.0 3815:1.0 3987:0.5 4001:1.0 4975:1.0 5013:1.0 5413:1.0 5414:1.0 5895:1.0 6557:1.0
9 3:1.0 4:0.1111111111111111 8:2.0 18:0.16666666666666666 26:1.0 45:0.08333333333333333 46:0.021739130434782608 49:0.08333333333333333 54:0.5 68:1.0 78:0.2 160:0.3333333333333333 208:0.5 234:0.5 247:0.5 249:0.5 271:1.0 290:0.16666666666666666 296:0.0625 334:0.3333333333333333 336:1.0 366:0.5 381:1.0 400:0.3333333333333333 529:0.25 846:1.0 855:1.0 936:0.5 945:1.0 1152:1.0 1348:1.0 1515:1.0 2084:1.0 2290:0.3333333333333333 2926:1.0 2934:1.0 3493:1.0 3527:1.0 3614:0.5 3649:1.0 4302:1.0 4593:1.0 4777:1.0 4975:1.0 5230:1.0 5780:1.0 6254:1.0
9 3:1.0 4:0.1111111111111111 8:1.0 18:0.3333333333333333 22:0.25 45:0.16666666666666666 46:0.021739130434782608 64:0.05555555555555555 65:0.14285714285714285 72:0.6666666666666666 136:0.3333333333333333 161:1.0 206:0.5 221:0.5 249:0.25 264:1.0 296:0.0625 322:0.1 386:1.0 400:0.3333333333333333 639:1.0 644:1.0 670:1.0 692:1.0 749:0.5 788:1.0 852:1.0 903:0.5 1093:0.25 1131:0.2 1427:1.0 1533:1.0 1880:1.0 1967:1.0 2290:0.3333333333333333 2757:1.0 3493:2.0 3519:1.0 3541:1.0 3622:1.0 3649:1.0 3867:1.0 4539:0.5
9 3:2.0 4:0.1111111111111111 8:1.0 22:0.5 28:1.0 45:0.08333333333333333 46:0.043478260869565216 61:1.0 65:0.14285714285714285 78:0.2 89:0.5 116:1.0 149:1.0 158:1.0 177:0.5 249:0.25 322:0.1 352:1.0 529:0.25 644:1.0 669:0.2 686:0.5 796:1.0 936:0.5 967:0.3333333333333333 1427:1.0 1850:1.0 1974:1.0 2290:0.6666666666666666 2418:1.0 2528:1.0 2621:0.5 2954:0.5 3519:1.0 3539:1.0 3540:1.0 3541:2.0 3649:1.0 5230:1.0
9 3:1.0 18:0.16666666666666666 30:1.0 46:0.043478260869565216 49:0.08333333333333333 64:0.05555555555555555 65:0.2857142857142857 114:0.2 135:0.5 149:1.0 160:0.3333333333333333 164:0.08333333333333333 175:0.5 241:1.0 242:0.021739130434782608 249:0.5 296:0.125 322:0.1 344:1.0 352:2.0 399:2.0 657:1.0 739:1.0 796:1.0 895:1.0 1348:1.0 1373:1.0 1536:0.3333333333333333 1630:0.3333333333333333 1663:1.0 1729:1.0 2054:1.0 3081:1.0 3519:1.0 3576:1.0 3592:1.0 3803:1.0 3815:1.0
9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 22:0.25 28:1.0 30:1.0 36:2.0 44:2.0 65:0.42857142857142855 175:0.5 217:2.0 229:1.0 241:1.0 283:0.2 296:0.0625 309:0.5 335:1.0 351:1.0 352:1.0 483:1.0 654:1.0 749:0.5 891:0.5 1196:1.0 2321:0.06666666666666667 2353:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3622:1.0 3815:1.0 3939:1.0 4738:1.0 4823:1.0 5868:1.0
9 4:0.1111111111111111 12:0.5 18:0.3333333333333333 28:2.0 30:1.0 36:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 62:0.5 72:0.3333333333333333 78:0.4 143:0.3333333333333333 147:0.5 175:0.5 230:1.0 270:0.3333333333333333 335:1.0 352:1.0 387:0.5 520:1.0 529:0.25 531:1.0 639:2.0 749:0.5 936:0.5 948:1.0 1069:0.09090909090909091 1147:1.0 1272:0.14285714285714285 1506:1.0 1687:1.0 1823:1.0 2003:1.0 2211:1.0 2321:0.06666666666666667 3519:1.0 3590:1.0 3649:1.0 4676:1.0 4696:1.0 6209:1.0
9 3:1.0 4:0.1111111111111111 30:1.0 36:1.0 48:0.0625 49:0.16666666666666666 65:0.14285714285714285 73:1.0 78:0.2 131:1.0 230:1.0 240:0.5 249:0.25 290:0.16666666666666666 301:1.0 335:0.3333333333333333 401:1.0 407:1.0 678:0.5 684:1.0 686:0.5 691:1.0 967:0.3333333333333333 1255:0.5 1650:1.0 2159:1.0 2321:0.06666666666666667 3527:1.0 3578:1.0 3602:2.0 4050:1.0 4139:1.0 4349:1.0 4350:1.0 4880:1.0 5624:1.0
9 3:2.0 13:0.3333333333333333 18:0.3333333333333333 30:2.0 36:1.0 44:1.0 46:0.021739130434782608 49:0.08333333333333333 65:0.14285714285714285 72:0.3333333333333333 78:0.2 84:1.0 114:0.2 124:0.5 164:0.08333333333333333 198:1.0 206:0.5 335:0.3333333333333333 363:0.5 387:0.5 520:1.0 526:1.0 527:1.0 639:1.0 1092:1.0 1303:0.3333333333333333 1395:1.0 1453:1.0 2321:0.06666666666666667 2686:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3590:1.0 3732:1.0 4089:1.0 4364:1.0 4448:1.0 4512:1.0 4991:1.0 5274:1.0 5382:1.0 6533:1.0
9 1:0.05263157894736842 18:0.16666666666666666 22:0.25 30:1.0 32:0.3333333333333333 44:1.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.2857142857142857 68:1.0 71:1.0 73:1.0 105:0.5 120:1.0 143:0.3333333333333333 147:0.5 175:0.5 178:1.0 186:0.3333333333333333 241:1.0 247:0.5 273:0.5 296:0.125 334:0.3333333333333333 381:1.0 438:1.0 529:0.25 676:1.0 678:0.5 749:1.0 1056:1.0 1117:1.0 1173:0.25 1395:1.0 1751:1.0 1967:1.0 2274:2.0 2296:1.0 2757:1.0 2968:1.0 3514:1.0 3519:1.0 3649:1.0 3953:1.0 4047:1.0 5209:1.0
9 13:0.3333333333333333 18:0.3333333333333333 22:0.25 44:2.0 46:0.021739130434782608 59:1.0 65:0.2857142857142857 160:0.3333333333333333 249:0.25 322:0.1 334:0.3333333333333333 366:0.5 400:0.3333333333333333 514:0.3333333333333333 544:0.5 614:1.0 652:0.25 750:0.5 762:1.0 945:2.0 1081:1.0 1289:1.0 1373:1.0 2064:0.5 2453:1.0 2645:0.25 3514:1.0 3519:1.0 3544:1.0 3622:1.0 3649:1.0 3732:1.0 3801:1.0 3951:1.0 4479:1.0 4890:1.0 6055:1.0 6061:1.0 6458:1.0 6526:1.0
9 4:0.1111111111111111 12:0.5 13:0.3333333333333333 18:0.5 22:0.25 28:1.0 30:1.0 32:0.3333333333333333 36:1.0 44:1.0 46:0.043478260869565216 49:0.16666666666666666 65:0.2857142857142857 72:0.3333333333333333 73:1.0 120:2.0 149:1.0 166:1.0 230:1.0 249:0.25 270:0.3333333333333333 290:0.16666666666666666 296:0.125 322:0.1 335:0.6666666666666666 351:1.0 386:1.0 387:0.5 670:1.0 1272:0.14285714285714285 1823:1.0 2092:1.0 2861:1.0 3527:1.0 3539:1.0 3540:1.0 4161:1.0 4378:1.0 4467:1.0 4744:1.0
9 3:1.0 4:0.1111111111111111 18:0.16666666666666666 30:1.0 32:0.6666666666666666 44:1.0 45:0.08333333333333333 46:0.021739130434782608 64:0.05555555555555555 65:0.2857142857142857 68:1.0 81:1.0 249:0.25 284:1.0 514:0.3333333333333333 652:0.25 1131:0.2 1663:1.0 1706:1.0 1729:2.0 1804:1.0 1988:1.0 3519:1.0 4512:1.0 4904:1.0 5864:1.0 5988:1.0
9 4:0.4444444444444444 18:0.5 30:1.0 32:0.3333333333333333 44:2.0 45:0.16666666666666666 46:0.021739130434782608 48:0.0625 65:0.2857142857142857 71:1.0 73:1.0 84:1.0 89:0.5 206:0.5 209:0.5 249:0.25 283:0.2 284:1.0 514:0.6666666666666666 620:0.5 639:1.0 645:1.0 658:0.5 814:1.0 889:1.0 1131:0.2 1663:1.0 1804:1.0 1988:1.0 3519:1.0 3541:1.0 3649:1.0 4247:1.0 4512:1.0 4904:1.0 5413:1.0 5414:1.0 5864:1.0 5988:1.0 6233:1.0
9 1:0.05263157894736842 3:1.0 4:0.1111111111111111 18:0.16666666666666666 22:0.25 28:1.0 30:1.0 32:0.3333333333333333 36:1.0 49:0.08333333333333333 106:0.5 160:0.3333333333333333 206:0.5 290:0.16666666666666666 335:0.3333333333333333 469:0.5 514:0.3333333333333333 1272:0.14285714285714285 1567:1.0 3519:1.0 4918:1.0 5551:1.0 6643:1.0
9 18:0.3333333333333333 30:1.0 65:0.14285714285714285 136:0.3333333333333333 155:0.5 242:0.021739130434782608 249:0.75 270:0.3333333333333333 296:0.125 335:0.3333333333333333 336:1.0 386:1.0 520:1.0 529:0.25 678:0.5 967:0.3333333333333333 1056:1.0 1066:0.5 1515:1.0 1823:1.0 2182:1.0 3163:1.0 3397:0.3333333333333333 3519:1.0 4049:1.0 4200:1.0 4303:1.0 4802:1.0
9 3:1.0 4:0.4444444444444444 18:0.16666666666666666 22:0.5 44:1.0 45:0.08333333333333333 46:0.043478260869565216 49:0.08333333333333333 61:1.0 65:0.2857142857142857 78:0.2 131:1.0 160:0.3333333333333333 177:0.5 249:0.5 270:0.3333333333333333 336:1.0 670:1.0 678:0.5 686:0.5 691:1.0 796:1.0 814:1.0 945:1.0 949:1.0 964:1.0 1515:1.0 1533:1.0 1687:1.0 1751:1.0 2226:1.0 2954:0.5 3163:1.0 3314:1.0 3527:1.0 4133:0.25 4246:1.0 4918:1.0 5013:1.0 5127:1.0
9 3:1.0 4:0.1111111111111111 12:0.5 13:0.3333333333333333 18:0.5 22:0.25 28:1.0 30:1.0 34:1.0 44:1.0 45:0.08333333333333333 46:0.043478260869565216 48:0.0625 64:0.05555555555555555 65:0.14285714285714285 68:1.0 296:0.0625 304:1.0 313:1.0 351:1.0 381:1.0 492:1.0 520:1.0 529:0.25 549:0.14285714285714285 679:1.0 686:1.0 721:1.0 936:0.5 945:1.0 964:1.0 1117:1.0 1237:1.0 1293:1.0 1437:0.3333333333333333 1967:1.0 2054:1.0 2162:1.0 2307:1.0 3418:1.0 3514:1.0 3519:1.0 3617:1.0 3906:1.0 3953:1.0 4022:1.0 4143:1.0 4246:1.0 4349:1.0 4350:1.0 5350:0.5
9 3:1.0 18:0.16666666666666666 22:0.5 30:1.0 32:0.3333333333333333 65:0.5714285714285714 66:1.0 83:0.3333333333333333 131:1.0 175:0.5 177:0.5 249:0.25 284:1.0 290:0.16666666666666666 520:1.0 529:0.25 644:1.0 691:1.0 1190:0.5 1427:1.0 1515:1.0 1748:1.0 1823:1.0 1826:1.0 1829:1.0 2054:1.0 2968:1.0 3343:0.3333333333333333 3639:1.0 3864:1.0 3869:0.5 4116:1.0 4246:1.0 4254:1.0 5243:1.0 5535:1.0
9 13:0.3333333333333333 18:0.16666666666666666 22:0.5 32:0.3333333333333333 131:1.0 164:0.08333333333333333 247:0.5 270:0.3333333333333333 290:0.3333333333333333 296:0.125 749:0.5 777:1.0 1081:1.0 1240:0.16666666666666666 1622:0.5 1967:1.0 2362:1.0 3527:1.0 3560:1.0
9 3:1.0 4:0.2222222222222222 13:0.3333333333333333 18:0.3333333333333333 22:0.25 30:1.0 44:1.0 46:0.043478260869565216 49:0.08333333333333333 65:0.2857142857142857 78:0.4 117:2.0 160:0.3333333333333333 270:0.6666666666666666 290:0.16666666666666666 336:1.0 362:0.3333333333333333 373:1.0 399:3.0 492:1.0 639:1.0 641:1.0 644:3.0 670:2.0 678:0.5 759:0.5 795:1.0 796:1.0 811:1.0 949:1.0 1056:1.0 1680:1.0 1706:1.0 1832:1.0 1849:1.0 2954:0.5 2968:1.0 3527:1.0 3558:1.0 3601:1.0 3649:1.0 3718:1.0 3871:1.0 3951:1.0 4208:0.5 4595:1.0 4975:1.0 6055:1.0 6376:1.0
9 4:0.1111111111111111 18:0.16666666666666666 26:1.0 27:1.0 30:1.0 44:1.0 45:0.08333333333333333 46:0.06521739130434782 48:0.0625 49:0.16666666666666666 65:0.5714285714285714 71:1.0 78:0.4 110:1.0 120:2.0 135:0.5 230:2.0 247:0.5 270:0.3333333333333333 280:1.0 296:0.125 334:0.6666666666666666 352:1.0 363:0.5 400:0.3333333333333333 526:1.0 777:1.0 795:1.0 852:1.0 1303:0.3333333333333333 2054:1.0 2274:1.0 3294:0.5 3527:1.0 3544:1.0 3614:0.5 4246:1.0 4247:1.0 5309:1.0 5613:1.0 6576:1.0
9 3:1.0 22:0.25 30:1.0 32:0.3333333333333333 53:1.0 65:0.14285714285714285 66:1.0 71:1.0 73:1.0 78:0.2 106:0.5 117:1.0 120:1.0 124:0.5 249:0.25 270:0.3333333333333333 284:1.0 296:0.0625 334:0.3333333333333333 335:1.0 336:1.0 492:1.0 520:1.0 529:0.5 644:1.0 684:1.0 691:1.0 785:0.5 795:1.0 845:1.0 936:0.5 1360:1.0 1572:1.0 2316:1.0 2420:1.0 2996:0.1111111111111111 3407:1.0 3527:1.0 3833:1.0 4155:1.0 5765:1.0
9 3:1.0 13:0.6666666666666666 18:0.16666666666666666 22:0.25 30:1.0 44:1.0 46:0.043478260869565216 49:0.08333333333333333 72:0.3333333333333333 78:0.4 81:1.0 114:0.2 120:1.0 131:1.0 160:0.6666666666666666 249:0.5 335:0.3333333333333333 352:1.0 399:3.0 606:1.0 614:1.0 639:1.0 692:1.0 795:1.0 796:1.0 967:0.3333333333333333 1006:1.0 1027:1.0 1258:1.0 1622:0.5 2017:1.0 2054:1.0 2934:1.0 3527:1.0 3566:1.0 3571:1.0 3782:0.3333333333333333 4208:0.5 4395:0.5 4676:1.0 5538:1.0 6254:1.0 6405:1.0
9 17:0.2 18:0.3333333333333333 22:0.25 30:1.0 46:0.06521739130434782 54:0.5 64:0.05555555555555555 68:1.0 78:0.2 83:0.3333333333333333 131:1.0 175:0.5 247:0.5 249:0.25 270:0.6666666666666666 278:0.5 335:1.3333333333333333 336:1.0 362:0.3333333333333333 377:2.0 387:0.5 492:1.0 606:1.0 614:1.0 639:1.0 669:0.4 750:0.5 785:0.5 795:1.0 796:2.0 936:0.5 1051:1.0 1213:1.0 1293:1.0 1316:1.0 1630:0.3333333333333333 1957:1.0 2874:1.0 3121:1.0 3527:1.0 4022:1.0 5433:1.0 6468:1.0 6566:1.0
9 3:1.0 18:0.16666666666666666 22:0.25 30:1.0 32:0.3333333333333333 34:2.0 44:1.0 46:0.021739130434782608 65:0.14285714285714285 73:1.0 117:1.0 224:1.0 283:0.2 334:0.3333333333333333 652:0.25 796:1.0 1131:0.2 1437:0.3333333333333333 1513:1.0 1936:2.0 2013:1.0 2092:0.5 2454:1.0 3566:1.0 3639:1.0 3733:1.0 3864:1.0 3960:1.0 4086:1.0 4206:1.0 4207:1.0 4217:1.0 4224:1.0
9 13:0.3333333333333333 15:0.3333333333333333 18:0.16666666666666666 22:0.25 28:2.0 30:1.0 46:0.021739130434782608 49:0.08333333333333333 64:0.05555555555555555 65:0.14285714285714285 177:0.5 247:0.5 249:0.5 270:0.3333333333333333 639:1.0 1051:1.0 1504:1.0 1687:1.0 1826:1.0 1936:1.0 2054:1.0 2092:0.5 2100:1.0 2274:1.0 2450:1.0 2479:1.0 2621:0.5 3397:0.3333333333333333 3519:1.0 3560:1.0 3691:1.0 3869:0.5 4019:1.0 4155:1.0 4627:1.0 5111:1.0
9 3:2.0 4:0.1111111111111111 18:0.16666666666666666 22:0.5 30:1.0 32:0.3333333333333333 36:1.0 46:0.021739130434782608 49:0.16666666666666666 89:0.5 106:0.5 177:1.0 178:2.0 230:1.0 290:0.16666666666666666 296:0.0625 489:0.5 520:1.0 641:1.0 936:0.5 1173:0.25 1244:0.5 1475:1.0 1687:1.0 2054:1.0 2245:1.0 2528:1.0 2918:1.0 3375:1.0 3493:1.0 3611:1.0 3614:0.5 3637:1.0 3638:1.0 3639:1.0 3733:1.0 4038:1.0 4253:1.0 4319:1.0 4512:1.0 6615:1.0
9 3:1.0 4:0.2222222222222222 46:0.06521739130434782 48:0.0625 49:0.08333333333333333 73:1.0 161:1.0 178:1.0 221:0.5 222:1.0 230:1.0 247:1.0 249:0.25 268:1.0 283:0.2 290:0.16666666666666666 296:0.0625 322:0.2 334:0.3333333333333333 413:1.0 489:0.5 759:0.5 1081:1.0 1215:0.5 1533:1.0 1894:1.0 2321:0.06666666666666667 2501:1.0 2757:1.0 3527:1.0 3601:1.0 3614:0.5 3626:1.0 3649:1.0 5209:1.0
9 4:0.1111111111111111 8:1.0 13:0.3333333333333333 18:0.5 22:0.25 44:1.0 46:0.043478260869565216 49:0.08333333333333333 78:0.2 84:1.0 120:1.0 206:0.5 241:1.0 296:0.125 297:1.0 335:0.6666666666666666 352:1.0 399:1.0 489:0.5 492:1.0 638:0.3333333333333333 644:1.0 842:1.0 1437:0.3333333333333333 1515:1.0 1527:1.0 1627:1.0 1823:1.0 1974:1.0 2222:1.0 2968:1.0 3519:1.0 3602:1.0 3649:2.0 3732:1.0 4512:1.0 5111:1.0 6526:1.0
9 3:1.0 13:0.6666666666666666 22:0.25 45:0.08333333333333333 65:0.14285714285714285 89:0.5 175:0.5 177:0.5 249:0.25 290:0.16666666666666666 352:1.0 400:0.3333333333333333 467:1.0 759:0.5 903:0.5 941:1.0 951:1.0 3134:1.0 3519:1.0 4577:1.0 5047:1.0 5758:1.0 6628:1.0
9 3:1.0 8:1.0 12:0.5 30:1.0 36:1.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.14285714285714285 73:1.0 78:0.2 175:2.0 198:1.0 335:0.3333333333333333 484:1.0 520:1.0 544:0.5 652:0.25 719:1.0 1075:1.0 1081:1.0 1152:1.0 1499:0.5 1503:1.0 2159:1.0 2850:1.0 3527:1.0 3590:1.0 4074:1.0 5336:1.0 5715:1.0 6511:1.0
9 3:1.0 4:0.1111111111111111 8:1.0 18:0.16666666666666666 30:1.0 32:0.6666666666666666 48:0.0625 64:0.05555555555555555 120:1.0 122:1.0 136:0.3333333333333333 175:0.5 249:0.25 273:0.5 400:0.3333333333333333 520:1.0 606:1.0 719:2.0 903:0.5 1380:1.0 2452:1.0 3527:1.0 3602:1.0 3803:1.0 3917:1.0 4057:1.0 4142:1.0
9 4:0.4444444444444444 22:0.25 28:1.0 30:1.0 32:0.3333333333333333 44:2.0 46:0.021739130434782608 49:0.16666666666666666 64:0.05555555555555555 65:0.2857142857142857 97:1.0 105:0.5 120:1.0 131:1.0 166:1.0 206:1.0 208:0.5 242:0.021739130434782608 296:0.0625 297:1.0 301:1.0 335:0.6666666666666666 353:1.0 366:0.5 400:0.3333333333333333 445:1.0 529:0.25 638:0.3333333333333333 644:1.0 652:0.25 658:0.5 814:1.0 889:1.0 911:1.0 948:1.0 1303:0.3333333333333333 1929:1.0 2159:1.0 3519:1.0 3539:1.0 3797:1.0 3815:1.0 5253:1.0 5858:1.0 5905:1.0 5961:1.0
9 4:0.1111111111111111 18:0.16666666666666666 28:1.0 30:1.0 44:1.0 46:0.021739130434782608 48:0.0625 49:0.16666666666666666 65:0.2857142857142857 72:0.3333333333333333 166:1.0 186:0.3333333333333333 230:2.0 296:0.125 335:0.3333333333333333 351:1.0 482:0.5 658:0.5 692:1.0 786:1.0 787:1.0 877:1.0 1093:0.25 1611:1.0 1826:1.0 2159:1.0 2258:1.0 2321:0.13333333333333333 3519:1.0 3710:1.0 4823:1.0 6434:1.0
9 3:1.0 8:1.0 18:0.16666666666666666 22:0.25 36:1.0 44:1.0 65:0.14285714285714285 120:1.0 131:1.0 160:0.3333333333333333 234:0.5 444:1.0 612:1.0 1453:1.0 1533:1.0 1543:1.0 2274:1.0 2321:0.06666666666666667 3519:1.0 3834:1.0 4486:1.0 5010:0.5
9 4:0.1111111111111111 18:0.16666666666666666 30:1.0 48:0.0625 49:0.16666666666666666 65:0.14285714285714285 75:1.0 78:0.2 131:2.0 147:0.5 178:2.0 197:0.2 242:0.021739130434782608 286:1.0 335:0.3333333333333333 352:1.0 399:1.0 400:0.3333333333333333 489:0.5 520:1.0 526:1.0 579:1.0 624:1.0 750:0.5 832:0.5 941:1.0 948:1.0 1069:0.09090909090909091 1533:1.0 3173:0.06666666666666667 3527:1.0 3812:1.0 3941:1.0 4062:0.5 4105:1.0 4920:1.0 5269:1.0 5574:1.0 6094:1.0
9 4:0.1111111111111111 18:0.16666666666666666 21:1.0 22:0.75 28:1.0 32:0.6666666666666666 65:0.2857142857142857 83:0.3333333333333333 89:0.5 117:1.0 166:1.0 178:1.0 249:0.25 387:0.5 410:1.0 1138:0.5 1335:1.0 1364:0.5 1386:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3548:1.0 3683:1.0 3812:1.0 4372:1.0 6055:1.0 6326:1.0
9 18:0.3333333333333333 22:0.5 30:1.0 34:1.0 45:0.08333333333333333 48:0.0625 62:0.5 73:1.0 78:0.2 106:0.5 131:1.0 160:0.3333333333333333 175:0.5 177:0.5 247:0.5 278:0.5 290:0.16666666666666666 296:0.0625 307:0.2 335:1.0 338:1.0 549:0.14285714285714285 579:2.0 726:1.0 749:0.5 1081:1.0 1293:1.0 1411:1.0 1602:1.0 1870:1.0 2013:1.0 2429:1.0 2954:0.5 3263:1.0 3519:1.0 3560:1.0 3732:1.0 3796:0.5 4512:1.0 5027:1.0
9 3:1.0 8:1.0 18:0.3333333333333333 21:1.0 32:0.6666666666666666 46:0.021739130434782608 61:1.0 65:0.14285714285714285 73:1.0 143:0.3333333333333333 175:0.5 247:0.5 249:0.5 270:0.3333333333333333 334:0.3333333333333333 335:0.3333333333333333 484:1.0 544:0.5 652:0.25 670:1.0 777:1.0 1081:1.0 1957:1.0 2092:0.5 2100:1.0 2290:0.3333333333333333 2956:2.0 3493:1.0 3519:1.0 3548:1.0 3871:1.0 4208:0.5 4635:1.0 5210:1.0
9 4:0.1111111111111111 8:1.0 18:1.0 22:0.5 30:1.0 32:0.3333333333333333 34:1.0 45:0.08333333333333333 46:0.021739130434782608 48:0.0625 49:0.16666666666666666 62:0.5 65:0.14285714285714285 78:0.2 92:0.5 206:0.5 230:1.0 241:1.0 242:0.043478260869565216 249:0.25 290:0.16666666666666666 296:0.0625 335:0.6666666666666666 399:1.0 492:1.0 683:1.0 787:1.0 788:1.0 948:1.0 1395:1.0 1622:0.5 1648:1.0 2290:0.3333333333333333 2956:1.0 3013:1.0 3519:1.0 4049:1.0 4153:1.0 5076:1.0
9 3:1.0 4:0.3333333333333333 12:0.5 22:0.25 30:1.0 43:1.0 44:2.0 49:0.08333333333333333 65:0.5714285714285714 84:1.0 89:0.5 175:0.5 197:0.2 206:1.0 270:0.3333333333333333 278:0.5 290:0.16666666666666666 322:0.1 334:0.3333333333333333 335:0.3333333333333333 352:1.0 469:0.5 505:1.0 678:0.5 691:1.0 719:1.0 786:1.0 788:1.0 1081:1.0 1196:1.0 1272:0.14285714285714285 1303:0.3333333333333333 1361:1.0 1757:1.0 3527:1.0 3602:1.0 3803:1.0 4074:1.0 5076:1.0
9 4:0.1111111111111111 18:0.16666666666666666 30:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 146:1.0 160:0.3333333333333333 217:1.0 242:0.021739130434782608 270:0.3333333333333333 335:0.6666666666666666 398:1.0 639:1.0 670:1.0 786:1.0 936:0.5 968:1.0 1074:0.25 1272:0.14285714285714285 1423:1.0 1995:1.0 2193:1.0 2454:1.0 2996:0.1111111111111111 3173:0.06666666666666667 3280:1.0 3493:1.0 3527:1.0 4196:1.0 4755:1.0 6501:1.0
9 8:1.0 18:0.5 22:0.25 30:1.0 36:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 78:0.2 120:1.0 131:1.0 155:0.5 164:0.08333333333333333 175:0.5 206:0.5 242:0.021739130434782608 290:0.16666666666666666 296:0.0625 309:0.5 322:0.1 335:0.3333333333333333 352:1.0 413:1.0 526:1.0 895:1.0 1072:1.0 1533:1.0 1827:1.0 2420:2.0 2621:0.5 2874:1.0 3117:1.0 3280:1.0 3519:1.0 3679:1.0 3911:1.0 4429:1.0 4645:1.0 4718:1.0 6084:1.0
9 4:0.1111111111111111 18:0.3333333333333333 30:1.0 32:0.3333333333333333 44:1.0 49:0.08333333333333333 65:0.42857142857142855 131:1.0 160:0.3333333333333333 186:0.3333333333333333 208:0.5 217:1.0 249:0.5 290:0.16666666666666666 291:1.0 296:0.125 322:0.1 514:0.3333333333333333 589:1.0 644:1.0 652:0.5 1022:1.0 1373:1.0 1521:1.0 1533:1.0 2274:1.0 2321:0.13333333333333333 3084:1.0 3518:1.0 3527:1.0 3732:1.0 4049:1.0 4142:1.0 4595:1.0 5269:1.0 6072:1.0
9 4:0.1111111111111111 18:0.16666666666666666 30:1.0 44:2.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 68:1.0 114:0.2 122:1.0 249:0.25 296:0.0625 335:0.6666666666666666 372:1.0 639:1.0 669:0.2 896:1.0 938:1.0 1092:1.0 1128:1.0 1258:1.0 1957:1.0 1995:1.0 2017:1.0 2235:1.0 2305:1.0 2874:1.0 3081:1.0 3173:0.06666666666666667 3519:1.0 3566:1.0 3748:1.0 4217:1.0 4263:1.0 6449:1.0
9 13:0.3333333333333333 18:0.16666666666666666 22:0.25 44:1.0 49:0.08333333333333333 51:0.3333333333333333 65:0.5714285714285714 83:0.3333333333333333 89:0.5 166:1.0 206:0.5 207:1.0 208:0.5 290:0.3333333333333333 307:0.2 430:1.0 469:0.5 691:1.0 850:1.0 936:0.5 949:1.0 1361:1.0 3493:1.0 3519:1.0 3626:1.0 4203:1.0 5549:1.0
9 3:1.0 8:2.0 12:0.5 13:0.3333333333333333 15:0.3333333333333333 18:0.5 36:2.0 44:3.0 46:0.021739130434782608 65:0.2857142857142857 73:1.0 84:1.0 120:1.0 158:1.0 178:1.0 249:0.25 271:1.0 274:1.0 290:0.3333333333333333 297:1.0 322:0.1 381:1.0 400:0.3333333333333333 484:1.0 579:1.0 620:1.0 638:0.3333333333333333 725:1.0 891:0.5 917:1.0 1289:1.0 2092:0.5 3512:1.0 3519:1.0 3614:0.5 4300:1.0 4317:1.0 4512:1.0 4877:1.0 6213:1.0
9 3:1.0 8:1.0 18:0.16666666666666666 30:1.0 46:0.043478260869565216 48:0.0625 59:1.0 65:0.42857142857142855 72:0.3333333333333333 92:0.5 114:0.2 166:1.0 178:1.0 247:0.5 249:0.5 290:0.16666666666666666 334:0.3333333333333333 335:0.3333333333333333 338:1.0 386:1.0 387:0.5 400:0.3333333333333333 526:1.0 639:1.0 644:3.0 786:2.0 945:1.0 1729:1.0 2159:1.0 2179:1.0 2803:1.0 3519:1.0 3566:1.0 3611:1.0 3792:1.0 3985:1.0 4089:1.0 4464:1.0 4512:1.0 4595:1.0 5194:1.0 5801:1.0 6008:2.0 6061:1.0
9 3:1.0 4:0.3333333333333333 8:2.0 18:0.16666666666666666 22:0.25 30:1.0 36:1.0 44:1.0 48:0.0625 49:0.08333333333333333 64:0.05555555555555555 65:0.2857142857142857 71:1.0 73:1.0 75:1.0 78:0.2 131:1.0 175:1.0 207:1.0 230:1.0 242:0.021739130434782608 270:0.3333333333333333 283:0.2 296:0.0625 335:1.0 372:1.0 469:0.5 484:1.0 514:0.3333333333333333 618:1.0 637:0.5 654:1.0 670:1.0 683:1.0 814:1.0 938:1.0 951:1.0 1272:0.14285714285714285 2159:1.0 2502:1.0 2656:1.0 2774:1.0 3067:1.0 3181:1.0 3519:1.0 3539:1.0 3803:1.0 4137:1.0 4704:1.0 5194:1.0 5413:1.0 5414:1.0 5611:1.0 6573:1.0
9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 28:2.0 30:1.0 44:2.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.14285714285714285 84:1.0 131:1.0 160:0.3333333333333333 206:0.5 217:1.0 270:0.3333333333333333 290:0.16666666666666666 335:1.0 338:1.0 351:1.0 352:1.0 400:0.3333333333333333 579:1.0 644:1.0 656:1.0 938:1.0 1213:1.0 1303:0.3333333333333333 1849:1.0 1995:1.0 2418:1.0 2645:0.25 2730:1.0 3173:0.06666666666666667 3637:1.0 3638:1.0 3639:1.0 3798:1.0 3911:1.0 4943:1.0 6408:1.0
9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 18:0.5 22:0.25 30:2.0 36:1.0 44:1.0 46:0.021739130434782608 49:0.08333333333333333 65:0.2857142857142857 73:2.0 78:0.4 112:0.5 139:0.16666666666666666 166:1.0 226:1.0 249:0.25 264:1.0 270:0.3333333333333333 309:0.5 335:0.3333333333333333 450:1.0 514:0.3333333333333333 627:1.0 644:1.0 645:1.0 762:1.0 777:1.0 811:1.0 936:0.5 1092:1.0 1213:1.0 1427:1.0 1437:0.3333333333333333 1543:1.0 2787:1.0 3519:1.0 3548:1.0 3797:1.0 3822:1.0 4049:1.0 4196:1.0 4635:1.0 6326:1.0
9 4:0.4444444444444444 13:0.3333333333333333 18:0.3333333333333333 21:1.0 32:0.3333333333333333 36:1.0 61:2.0 64:0.05555555555555555 131:2.0 207:1.0 249:0.25 322:0.1 351:1.0 400:0.3333333333333333 514:0.6666666666666666 529:0.25 855:1.0 917:1.0 1339:0.25 2092:1.0 2525:1.0 2528:1.0 3527:1.0 3539:1.0 3781:1.0 3815:1.0 4210:1.0 4246:1.0 5097:1.0 5717:1.0 5746:1.0 5868:1.0 6008:1.0
9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 18:0.16666666666666666 32:0.3333333333333333 46:0.021739130434782608 65:0.42857142857142855 81:1.0 89:0.5 92:0.5 120:1.0 131:1.0 177:0.5 290:0.16666666666666666 579:1.0 639:1.0 644:1.0 796:1.0 814:1.0 951:1.0 1244:0.5 2100:1.0 2273:1.0 2656:1.0 3067:1.0 3476:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3782:0.3333333333333333 4093:1.0 5131:1.0
9 3:1.0 4:0.1111111111111111 18:0.16666666666666666 22:0.25 32:0.6666666666666666 44:2.0 49:0.08333333333333333 65:0.2857142857142857 72:0.3333333333333333 106:0.5 131:1.0 387:0.5 639:1.0 670:1.0 725:1.0 815:1.0 936:0.5 1287:1.0 1499:0.5 1707:1.0 1729:1.0 1832:1.0 1894:1.0 1936:1.0 2222:1.0 2934:1.0 3527:1.0 3614:0.5 3615:1.0 3696:1.0 5320:1.0
9 3:2.0 4:0.1111111111111111 13:0.6666666666666666 22:0.25 46:0.021739130434782608 48:0.0625 65:0.14285714285714285 68:1.0 143:0.3333333333333333 164:0.08333333333333333 175:0.5 176:1.0 240:0.5 241:1.0 270:0.3333333333333333 278:0.5 290:0.16666666666666666 335:0.3333333333333333 520:1.0 588:0.5 638:0.3333333333333333 644:1.0 654:1.0 826:1.0 895:2.0 1056:1.0 1090:1.0 1293:1.0 1309:1.0 1833:1.0 2100:1.0 2181:1.0 2321:0.06666666666666667 2954:0.5 3519:1.0 3803:1.0 3950:1.0 3998:1.0 4092:1.0 4306:1.0 4577:1.0 5022:1.0 5644:1.0
9 3:1.0 4:0.1111111111111111 30:1.0 32:0.3333333333333333 44:1.0 45:0.08333333333333333 46:0.021739130434782608 48:0.0625 61:1.0 64:0.05555555555555555 65:0.42857142857142855 116:1.0 160:0.3333333333333333 242:0.021739130434782608 322:0.1 335:1.0 465:1.0 492:1.0 658:0.5 691:1.0 938:1.0 967:0.3333333333333333 1146:1.0 1572:1.0 1757:1.0 2326:1.0 3281:1.0 3523:1.0 3527:1.0 3539:1.0 3589:1.0 3602:1.0 3764:1.0 4092:1.0 4139:1.0 4615:1.0 5496:1.0 5717:1.0
9 3:3.0 18:0.16666666666666666 22:0.25 30:1.0 36:1.0 44:2.0 46:0.021739130434782608 48:0.0625 49:0.08333333333333333 65:0.42857142857142855 78:0.4 143:0.3333333333333333 166:2.0 177:0.5 234:0.5 296:0.25 334:0.3333333333333333 335:0.6666666666666666 338:1.0 352:1.0 529:0.25 684:1.0 948:2.0 1194:1.0 2154:1.0 2321:0.2 3280:1.0 3493:1.0 3519:1.0 3614:0.5 3615:1.0 4364:1.0 6483:1.0
9 3:1.0 8:1.0 18:0.16666666666666666 28:1.0 30:1.0 46:0.043478260869565216 48:0.0625 49:0.08333333333333333 65:0.2857142857142857 73:1.0 117:1.0 131:1.0 234:0.5 240:0.5 242:0.021739130434782608 283:0.2 296:0.125 335:0.6666666666666666 338:1.0 352:1.0 407:1.0 469:0.5 520:1.0 612:1.0 627:1.0 719:1.0 798:1.0 925:0.5 1395:1.0 1849:1.0 2159:1.0 2161:1.0 3230:1.0 3493:1.0 3602:1.0 3691:1.0 3798:1.0 4049:1.0 4512:1.0 5194:1.0 5927:1.0 6408:1.0 6434:1.0
9 3:1.0 18:0.16666666666666666 30:1.0 44:2.0 45:0.08333333333333333 65:0.2857142857142857 78:0.2 81:1.0 84:1.0 143:0.3333333333333333 160:0.3333333333333333 175:0.5 242:0.021739130434782608 278:0.5 290:0.16666666666666666 322:0.1 334:0.3333333333333333 335:0.6666666666666666 351:1.0 352:1.0 561:1.0 592:1.0 926:1.0 1213:1.0 1293:1.0 2454:1.0 3519:1.0 3919:1.0 4197:1.0 5973:1.0
9 3:1.0 4:0.1111111111111111 8:1.0 18:0.16666666666666666 22:0.25 28:1.0 30:1.0 46:0.021739130434782608 48:0.1875 49:0.08333333333333333 55:1.0 65:0.14285714285714285 72:0.3333333333333333 131:2.0 159:1.0 164:0.08333333333333333 178:1.0 242:0.021739130434782608 249:0.25 296:0.1875 306:1.0 335:0.3333333333333333 365:1.0 379:1.0 387:0.5 400:0.3333333333333333 485:1.0 612:1.0 644:1.0 832:1.0 936:0.5 938:1.0 948:1.0 1069:0.09090909090909091 1075:1.0 1162:1.0 1228:1.0 1395:1.0 1880:1.0 6072:1.0
9 3:1.0 4:0.1111111111111111 8:1.0 32:0.3333333333333333 48:0.0625 65:0.2857142857142857 89:1.0 131:1.0 249:0.25 335:0.3333333333333333 366:0.5 430:1.0 520:1.0 796:1.0 814:1.0 832:0.5 1395:1.0 1693:1.0 3385:1.0 3493:1.0 3515:0.25 3518:1.0 3527:1.0 4049:1.0 4204:1.0 5509:1.0
9 8:2.0 32:0.3333333333333333 36:1.0 65:0.14285714285714285 208:0.5 226:1.0 290:0.16666666666666666 335:0.3333333333333333 489:0.5 520:1.0 652:0.25 2703:1.0 3527:1.0 3550:1.0 5194:1.0 6037:1.0
9 3:1.0 13:0.3333333333333333 18:0.3333333333333333 46:0.08695652173913043 48:0.0625 65:0.14285714285714285 106:0.5 128:1.0 131:1.0 217:1.0 230:1.0 234:0.5 249:0.25 270:0.6666666666666666 296:0.1875 297:1.0 309:0.5 335:0.3333333333333333 338:1.0 579:2.0 612:1.0 637:0.5 639:1.0 652:0.25 749:0.5 785:0.5 826:1.0 1092:1.0 1147:1.0 1437:0.3333333333333333 1533:1.0 1572:1.0 1592:1.0 1957:1.0 2290:0.3333333333333333 2317:1.0 2321:0.06666666666666667 3527:1.0 3539:1.0 3540:1.0 3590:1.0 3622:1.0 3696:1.0 4406:1.0 5010:0.5 5033:1.0 5209:1.0
9 4:0.1111111111111111 13:0.3333333333333333 18:0.3333333333333333 48:0.125 60:1.0 73:1.0 120:1.0 335:0.3333333333333333 352:1.0 489:0.5 529:0.5 644:1.0 811:1.0 1081:1.0 1660:1.0 2501:1.0 3294:0.5 3527:1.0 3590:1.0 3622:1.0 3720:1.0 3782:0.3333333333333333 3958:1.0 4312:1.0 4317:1.0 5209:1.0
9 3:1.0 8:1.0 28:1.0 30:1.0 32:0.3333333333333333 36:2.0 45:0.08333333333333333 48:0.125 81:1.0 146:1.0 175:0.5 178:1.0 242:0.021739130434782608 271:1.0 296:0.0625 335:1.0 749:0.5 811:1.0 891:0.5 966:1.0 1294:2.0 1387:1.0 2645:0.25 3527:1.0 3602:1.0 3645:1.0 3911:1.0 3917:1.0 4406:1.0 4431:1.0
9 3:1.0 4:0.1111111111111111 13:0.3333333333333333 21:1.0 30:1.0 44:2.0 46:0.021739130434782608 61:1.0 62:0.5 65:0.2857142857142857 84:1.0 206:1.0 208:0.5 242:0.021739130434782608 290:0.16666666666666666 335:0.6666666666666666 351:1.0 352:1.0 514:0.3333333333333333 638:0.3333333333333333 683:1.0 765:1.0 787:1.0 1272:0.14285714285714285 1303:0.3333333333333333 1967:1.0 2454:1.0 2523:1.0 3147:1.0 3280:1.0 3294:0.5 3566:1.0 3639:1.0 3733:1.0 3864:1.0 4049:1.0 4086:1.0 4203:1.0 4206:1.0 4207:1.0 4224:1.0 4364:1.0 5605:1.0
9 3:1.0 4:0.1111111111111111 8:1.0 18:0.16666666666666666 28:1.0 30:1.0 44:1.0 46:0.021739130434782608 48:0.125 65:0.14285714285714285 71:1.0 78:0.2 81:1.0 83:0.3333333333333333 120:1.0 166:1.0 178:1.0 234:0.5 242:0.021739130434782608 290:0.16666666666666666 291:1.0 296:0.0625 335:0.6666666666666666 469:0.5 484:1.0 529:0.25 627:1.0 691:1.0 811:1.0 832:0.5 1173:0.25 1174:1.0 1294:1.0 1471:1.0 1572:1.0 1882:1.0 2092:0.5 2321:0.06666666666666667 2480:1.0 2803:1.0 3397:0.3333333333333333 3527:1.0 3590:1.0 3772:1.0 3861:1.0
9 1:0.05263157894736842 4:0.3333333333333333 13:0.3333333333333333 15:0.3333333333333333 18:0.16666666666666666 22:0.25 30:1.0 32:0.3333333333333333 44:1.0 46:0.06521739130434782 48:0.0625 65:0.14285714285714285 71:1.0 139:0.16666666666666666 155:0.5 158:1.0 175:0.5 296:0.125 322:0.1 335:0.6666666666666666 352:1.0 469:0.5 583:1.0 639:1.0 644:3.0 652:0.25 814:1.0 842:1.0 891:0.5 917:2.0 968:1.0 987:1.0 1262:1.0 1572:1.0 2013:1.0 2159:1.0 2181:1.0 2395:0.5 2401:0.5 2811:1.0 2948:1.0 3260:1.0 3519:1.0 3602:1.0 3777:1.0 3808:1.0 3974:1.0 3991:1.0 4093:1.0 4429:1.0
9 3:1.0 8:1.0 13:0.3333333333333333 18:0.5 34:2.0 44:1.0 45:0.08333333333333333 46:0.021739130434782608 49:0.08333333333333333 65:0.14285714285714285 78:0.2 109:1.0 120:1.0 131:1.0 175:0.5 249:0.5 290:0.16666666666666666 296:0.0625 297:1.0 334:0.3333333333333333 335:0.3333333333333333 489:0.5 549:0.14285714285714285 638:0.3333333333333333 639:1.0 641:1.0 658:0.5 811:1.0 891:0.5 936:1.0 1120:0.5 1196:1.0 1213:1.0 1348:1.0 1437:0.3333333333333333 1894:1.0 2208:1.0 2493:1.0 3140:1.0 3527:1.0 3664:1.0 3671:1.0 4314:1.0 4702:1.0 5174:1.0 6604:1.0
9 3:1.0 4:0.2222222222222222 18:0.8333333333333334 36:1.0 44:1.0 46:0.021739130434782608 53:1.0 65:0.2857142857142857 78:0.4 81:2.0 92:0.5 114:0.4 117:1.0 175:0.5 222:1.0 249:0.25 334:0.3333333333333333 514:0.3333333333333333 639:1.0 749:0.5 759:0.5 765:1.0 1293:1.0 1427:1.0 1592:1.0 1729:1.0 1832:1.0 1929:1.0 1957:1.0 2092:0.5 3134:1.0 3527:1.0 3566:1.0 3622:1.0 3639:1.0 3733:1.0 3864:1.0 3878:1.0 3891:1.0 4049:1.0 4086:1.0 4087:1.0 4203:1.0 4206:1.0 4207:1.0 4354:1.0 4975:1.0 5605:1.0
9 3:3.0 8:1.0 13:0.3333333333333333 15:0.3333333333333333 18:0.16666666666666666 22:0.25 28:1.0 32:0.3333333333333333 44:2.0 45:0.08333333333333333 46:0.043478260869565216 49:0.25 65:0.42857142857142855 72:0.3333333333333333 78:0.2 106:0.5 117:1.0 249:0.25 271:1.0 296:0.0625 322:0.1 335:0.3333333333333333 351:1.0 352:2.0 387:0.5 469:0.5 520:1.0 526:1.0 639:2.0 652:0.25 750:0.5 1056:1.0 1069:0.09090909090909091 1081:1.0 1092:1.0 1093:0.25 1131:0.2 1213:1.0 1244:0.5 3132:1.0 3519:1.0 3527:1.0 3560:1.0 3649:1.0 3679:1.0 3953:1.0 4139:1.0 4539:0.5 6449:1.0
9 3:1.0 4:0.1111111111111111 12:0.5 30:1.0 34:1.0 44:1.0 46:0.021739130434782608 48:0.1875 53:1.0 62:0.5 66:1.0 73:1.0 89:0.5 92:0.5 149:1.0 270:0.3333333333333333 297:1.0 322:0.1 335:0.3333333333333333 344:1.0 352:1.0 400:0.3333333333333333 529:0.5 938:1.0 1056:1.0 1081:1.0 1152:1.0 1268:1.0 1929:1.0 1951:0.5 3519:1.0 3527:1.0 3539:1.0 3540:1.0 3541:1.0 3554:1.0 3602:1.0 3959:1.0 3998:1.0 4021:1.0 4578:1.0
9 8:1.0 18:0.3333333333333333 28:1.0 30:1.0 46:0.043478260869565216 53:1.0 139:0.16666666666666666 155:0.5 175:0.5 229:1.0 249:0.25 296:0.0625 445:1.0 470:1.0 489:0.5 529:0.25 684:1.0 873:1.0 929:1.0 938:1.0 1074:0.25 1075:1.0 1536:0.3333333333333333 1630:0.3333333333333333 1823:1.0 2219:0.5 2317:1.0 3081:1.0 3330:1.0 3519:1.0 3527:1.0 3691:1.0 4021:1.0
|
d70a8731e7ba6591f4e56e0737bee01004ba82a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1673/CH8/EX8.7/8_7.sce | d3110afee3c2e8a485575ad5715487a32ab160c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 597 | sce | 8_7.sce | //example 8.7
//modified euler's method
//page 310
clc;clear;close;
h=0.05;
f=1;
deff('z=f1(x,y)','z=x^2+y');
x=0:0.05:0.1
y1=0;
y1(1)=f+h*f1(x(1),f);
y1(2)=f+h*(f1(x(1),f)+f1(x(2),y1(1)))/2;
y1(3)=f+h*(f1(x(1),f)+f1(x(3),y1(2)))/2;
y2(1)=y1(2)+h*f1(x(2),y1(2));
y2(2)=y1(2)+h*(f1(x(2),y1(2))+f1(x(3),y2(1)))/2;
y2(3)=y1(2)+h*(f1(x(2),y1(2))+f1(x(3),y2(2)))/2;
printf(' y1(0)\t y1(1)\t y1(2)\t y2(0)\t y2(1)\t y3(2)\n\n' );
printf(' %f\t %f\t %f\t %f\t %f\t %f\n',y1(1),y1(2),y1(3),y2(1),y2(2),y2(3))
printf('\n\n the value of y at %0.2f is : %0.4f',x(3),y2(3));
|
2f2f741f347f1ddd3fecce77877dc3f7a04bffbc | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/shiftdata/shiftdata14.sce | af7fb68331e45ace1ac93576b9f1e63cd14fef44 | [] | 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 | 251 | sce | shiftdata14.sce | //check o/p when the dim arg is imaginary
x=[12 3 4 5 6 7 8];
dim=2*%i;
[x,perm,nshifts]=shiftdata(x,dim);
disp(perm);
//output
//!--error 21
//Invalid index.
//at line 72 of function shiftdata called by :
//[x,perm,nshifts]=shiftdata(x,dim);
|
96863651f4b7b371834f18627e9e1596cd61454e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3860/CH2/EX2.3/EX2_3.sce | f2196b7875e6811eb8bdbcce3672c33f87d54734 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sce | EX2_3.sce | //Example 2.3: Reduce a given expression
clc; //clears the console
clear; //clears all existing variables
//the given expression is as follows//
disp(' Given Expression- A''B''C''+ A''BC''+ A''BC + AB''C''')
disp('A''C''+ A''BC + AB''C''')
disp('A''C''+ A''B + AB''C''')
disp('A''C''+ A''B + B''C''')
disp('The reduced expression is = ')
disp('B''C''+ A''B') //final reduced expression is displayed//
|
2f128a14f28e307fd500c171daa453e03d834171 | b513eb49824ff62ddd2289a920c92cfcb362d5f2 | /magister/course_1/litvinov/lab_2/scilab/model.sce | dda675ad1923a4d8ab1471f84036f236684022e0 | [] | no_license | kirillin/ifmo | 6264ac42ec2031777145b39d4930f2f645e1d316 | 633919ba09d43814298c3a2145d5d6f72b5b068e | refs/heads/master | 2021-01-12T09:32:27.270130 | 2018-11-18T12:17:46 | 2018-11-18T12:17:46 | 76,181,268 | 3 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 765 | sce | model.sce | T = 0.5;
A = [0, 1; 0, 0];
B = [0; 1];
A = [0, 1; 0, -1.0526]
B = [0; 0.5263]
C = [1, 0];
Ad = expm(A*T);
Bd = [0; 0];
for i=1:10
Bd = Bd + (A^(i-1) * T^i) / prod(1:i) * B;
end
z1 = [0.9, -0.9, 0, imult(0.1), complex(-0.2, 0.8), complex(0.8,0.2)];
z2 = [1, -1, 0.2, imult(-0.1), complex(-0.2, -0.8), complex(0.8,-0.2)];
a1 = [];
a0 = [];
k2 = [];
k1 = [];
Fb = [
1/5, 1/50;
-1/5, 1/50
];
for i=1:6
Z = [
z1(i), 1;
z2(i), 1
]
Z2 = [
-z1(i)^2;
-z2(i)^2
]
a = Z^-1 * Z2;
a1(i) = a(1);
a0(i) = a(2);
Fb2 = [
a(1) + 2;
a(2) - 1
];
k = Fb^-1 * Fb2;
k2(i) = k(1);
k1(i) = k(2);
end
init = 3;
i = 6;
K2 = k2(i);
K1 = k1(i);
Kd = [K1, K2]
|
ef55f2a2000cc598cb827816c19ab6e8635c0885 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2175/CH1/EX1.2/1_2.sce | 4659bddfd41228d4d5046f97d078d6dc01d0d829 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 286 | sce | 1_2.sce | clc;
p1=20;//bar
v1=0.05;//m^3
v2=0.1;//m^3
p2=p1*[(v1/v2)^2];//bar
W_12=-10^5*p1*(v1^2)*((1/v1)-(1/v2));
W_23=10^5*p2*(v2-v1);
//work done from 3-1 is zero as the piston is locked in position.
disp("The net work done by the fluid is:");
W=-(W_12+W_23)
disp("N m",W)
|
974382027b341dc25c6442d5a39ff930126c8ead | 449d555969bfd7befe906877abab098c6e63a0e8 | /2465/CH17/EX17.7/Example_7.sce | 870f634e3e0d20a79ffce363663288b33b4cef00 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 315 | sce | Example_7.sce | //Chapter-17,Example 7,Page 371
clc();
close();
v= 150 //volume of NaCl
conc = 150 //concentration of NaCl
amnt =v*conc *100/117 //amnt of NaCl
hard = 600 //hardness of water
vol= amnt*1000/hard
printf("the volume of water is = %.2f litres",vol)
//calculation mistake in textbook
|
c8c32775bb97d083cdb933096c78393a9249e7f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2273/CH5/EX5.10/ex5_10.sce | 77f788bdc0e556cf5076010de047cefcadc7b7dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,178 | sce | ex5_10.sce | //Find regulation and charging current using nominal T method
clear;
clc;
//soltion
//FUNCTIONS
function [z]=rxr(A,B)//Function for the multiplication of rectangular
z(1)=A(1)*B(1)
z(2)=A(2)+B(2)
endfunction
function [a]=r2p(z)//Function for rectangular to polar
a=z(1)*complex(cosd(z(2)),sind(z(2)))
endfunction
//given
P=50*10^6;//M watts
Vrl=132*1000;//V
pf=0.8//power factir
Vr=[floor(Vrl/sqrt(3)) 0];
Ir=[floor(P/(sqrt(3)*Vrl*pf)) -acosd(pf)];
A=[0.95 1.4];
B=[96 78];
C=[0.0015 90];
D=A;
Z1=rxr(A,Vr);
Z2=rxr(B,Ir);
AV=r2p(Z1);
BI=r2p(Z2);
Vs=AV+BI;
theta1=atand((imag(Vs)/real(Vs)));
printf("Sending end voltage= %.0f∠%.2f° Volts\n",abs(Vs),theta1);
Y1=rxr(C,Vr);
Y2=rxr(D,Ir);
CV=r2p(Y1);
DI=r2p(Y2);
Is=CV+DI;
Ira=r2p(Ir);
Ic=Is-Ira;
theta2=atand(imag(Ic)/real(Ic));
Ic_=sqrt(round(imag(Ic))^2+round(real(Ic))^2);
printf("Charging current= %.1f∠%f° A\n",Ic_,theta2);
Pr=((abs(Vs)/A(1)-Vr)*100)/Vr;
printf("Percentage regulation= %.0f percent\n",Pr);
//1. The Magnitude of Sending end voltage is 94066, it is due to rounding some of the values
//2. The angle in the book is 93.1° in charging current
|
fea7d50adae9d1117dd113a3233d4b6f192f7960 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH1/EX1.4/Ex1_4.sce | d5698999388ddb0674b9b020a5b0b5854f543252 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 385 | sce | Ex1_4.sce | clc;
clear;
omega=500 //frequency in radian/s
L=0.08 //inductance in H
R=15 //resistance in ohm
C=30*10^-6 //capacity in F
//calculation
L_omega=L*omega //in ohm
C_omega=1/(C*omega) //in ohm
tan_phi=(L_omega-C_omega)/R //in degrees
phi=atand(tan_phi)
mprintf("The current leads the applied voltage by = %2.2f degree",-phi)
//The answers vary due to round off error
|
55ed2bad81c0dd3108c6a147d72946d50c6ca2be | 58f8869b2dcd9296bbe82d9923d1d7d801937351 | /11/m_euler.sce | d86040c9637fa6efbb83646d1dce0460436f1a59 | [
"MIT"
] | permissive | keivalya/2ME01 | f325d38ea7adace9a10bc3d83e7868d59dbc4066 | 3147e0d7319ddeb6e79fde5d0851dcc423a7e23d | refs/heads/master | 2023-02-10T20:15:29.593282 | 2021-01-09T02:39:20 | 2021-01-09T02:39:20 | 282,954,965 | 0 | 0 | MIT | 2020-10-04T02:22:40 | 2020-07-27T16:33:06 | Scilab | UTF-8 | Scilab | false | false | 701 | sce | m_euler.sce | //deff('z=f(x,y)','z=y*(x^2) - 1.1*y')
deff('z=f(x,y)','z=(1+4*x)*sqrt(y)')
x0=0//input('\n Enter initial value of x i.e. x0: '); //example x0=0
y0=1//input('\n Enter initial value of y i.e. y0: '); //example y0=0.5
xn=1//input('\n Enter the final value of x: ');// where we need to find the value of y
//example x=2
h=0.25//input('\n Enter the step length h: '); //example h=0.2
//Formula: y1=y0+h/2*[f(x0,y0)+f(x1,y1*)] where y1*=y0+h*f(x0,y0);
printf('\n x y ');
while x0<=xn
printf('\n%4.2f %4f ',x0,y0);//values of x and y
k=y0+h*f(x0,y0);
x1=x0+h;
y1=y0+h/2*(f(x0,y0)+f(x1,k));
x0=x1;
y0=y1;
end
|
e3e70d89f933d36c9171801d3a7cd08f89cf2f4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1976/CH7/EX7.12/Ex7_12.sce | 83845182da2b7a67fb549d82794d2653247adb3b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,529 | sce | Ex7_12.sce |
//To Determine the tractive effort shared by the two locomotives
//Page 388
clc;
clear;
Da=1.27; //Loco A wheel diameter
Db=1.244; //Loco B wheel diameter
S=5; //Slip of both the Locomotives in Case 1
Sa=S; //Slip of Loco A in Case 2
Sb=4; //Slip of Loco B in Case 2
Ftta=11325; //Total Tractive Effort in Case 1
Fttb=1309; //Total Tractive Effort in Case 2
Ft=5227; //Full Load Tractive Effort of Loco
x=poly(0,'x'); //Variable for Tractive Effort Exerted by Loco A
//Slips are same
//For 11325 kg
//% Speed
NA=100-(S*x/Ft);
NB=100-(S*(Ftta-x)/Ft);
Rna=NB/NA; //Speed Ratio
Y1=Rna-(Da/Db); //Polynomial to find out 'x'
x=roots(Y1(2)); //Numerical Value of Tractive Effort shared by A
//Tractive Efforts Shared by A Loco and B Loco
FtAas=x;
FtBas=Ftta-x;
//For 1309 kg
//% Speed
x=poly(0,'x'); //Variable for Tractive Effort Exerted by Loco A
NA=100-(S*x/Ft);
NB=100-(S*(Fttb-x)/Ft);
Rn1=NB/NA; //Speed Ratio
Y2=Rn1-(Da/Db); //Polynomial to find out 'x'
x=roots(Y2(2)); //Numerical Value of Tractive Effort shared by A
//Tractive Efforts Shared by A Loco and B Loco
FtAbs=x;
FtBbs=Fttb-x;
//Different Slips
//For 11325 kg
//% Speed
x=poly(0,'x'); //Variable for Tractive Effort Exerted by Loco A
NA=100-(Sa*x/Ft);
NB=100-(Sb*(Ftta-x)/Ft);
Rna=NB/NA; //Speed Ratio
Y3=Rna-(Da/Db); //Polynomial to find out 'x'
x=roots(Y3(2)); //Numerical Value of Tractive Effort shared by A
//Tractive Efforts Shared by A Loco and B Loco
FtAad=x;
FtBad=Ftta-x;
//For 1309 kg
//% Speed
x=poly(0,'x'); //Variable for Tractive Effort Exerted by Loco A
NA=100-(Sa*x/Ft);
NB=100-(Sb*(Fttb-x)/Ft);
Rn2=NB/NA; //Speed Ratio
Y4=Rn2-(Da/Db); //Polynomial to find out 'x'
x=roots(Y4(2)); //Numerical Value of Tractive Effort shared by A
//Tractive Efforts Shared by A Loco and B Loco
FtAbd=x;
FtBbd=Fttb-x;
printf('The Tractive Effort shared A and B for:\n \n')
printf('i) Slips are %g percent for both the Locomotives for a Tractive effort of:\n',S)
printf('a) %g kg : %g kg by A and %g kg by B respectively\n',Ftta,FtAas,FtBas)
printf('b) %g kg : %g kg by A and %g kg by B respectively\n\n',Fttb,FtAbs,FtBbs)
printf('i) Slips are %g percent for A and %g percent for B for a Tractive effort of:\n',Sa,Sb)
printf('a) %g kg : %g kg by A and %g kg by B respectively\n',Ftta,FtAad,FtBad)
printf('b) %g kg : %g kg by A and %g kg by B respectively\n\n',Fttb,FtAbd,FtBbd)
//Please Note there is caluculation mistake calculation in the TextBook for the First Case
|
0f63503fa2d3363cc047fa5abae8082f65fea689 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH7/EX7.2/example_7_2.sce | 39caa5eddd543a8a8837531272c0e5205159b878 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 464 | sce | example_7_2.sce | p=poly([6 5 1],'s','coeff');
q=poly([0 20 29 10 1],'s','coeff');
G=10*p/q //gain FACTOR=10
H=1
y=G*H //type 1
syms s
Kp=limit(s*y/s,s,0) //Kp= position error coefficient
Kv=limit(s*G*H,s,0) //Kv= velocity error coefficient
Ka=limit(s^2*G*H,s,0) //Ka= accelaration error coefficient
disp(Ka ,"Ka = ")
disp(Kv ,"Kv = ")
disp(Kp ,"Kp = ")
Ess1=3/(1+Kp)
disp(Ess1, "Ess1 = ")
Ess2=1/(Kv)
disp(Ess2, "Ess2 = ")
disp("Ess3=2/(Ka) = infinity")
|
01ed8cd9dd3b92d3b3600bb3f8a23a782a10ee1d | 67ba0a56bc27380e6e12782a5fb279adfc456bad | /STAMPER_PROG_8.0/bin/toolpathLib/BuildOffsetMatrix.sci | 52872e3e8ff98667c7113b39702523429bfd9a08 | [] | 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 | 1,444 | sci | BuildOffsetMatrix.sci | function vOffsets = BuildOffsetMatrix(vPoints, mOffsetRegimeBoundaries, mOffsetComponents)
for i=1:size(vPoints, 1) - 1
vA = [vPoints(i + 1, 1) - vPoints(i, 1), vPoints(i + 1,2) - vPoints(i,2)];
if norm(vA) == 0 then
disp("Zero Length Segment Detected")
pause
end
vA_N = ([0 -1; 1 0] * vA')' / norm(vA);
//flip for always positive Z component
if sign(vA_N(2)) == -1 then
vA_N = -vA_N;
end
vA_N_N = -vA / norm(vA); //norm part is new 4/21/16
fTheta(i) = modulo(atan(vA(2) , vA(1)) + %pi, %pi);
for j = 1:size(mOffsetRegimeBoundaries, 1)
if fTheta(i) >= mOffsetRegimeBoundaries(j, 1) & fTheta(i) < mOffsetRegimeBoundaries(j, 2) | ...
fTheta(i) + %pi >= mOffsetRegimeBoundaries(j, 1) & fTheta(i) + %pi < mOffsetRegimeBoundaries(j, 2) | ...
fTheta(i) - %pi >= mOffsetRegimeBoundaries(j, 1) & fTheta(i) - %pi < mOffsetRegimeBoundaries(j, 2) then
vOffsetComponents = mOffsetComponents(j, :);
vOffsets(i, :) = vA_N * vOffsetComponents(1) + vA_N_N * vOffsetComponents(2) + vOffsetComponents(3:4);
////////////////////////////////
// if vOffsets(i, 2) < -0.9 then
// pause;
// end
////////////////////////////////
break;
end
end
end
endfunction
|
a44f0c7ba620901f0a246cfc73d457fdcf1bee0b | 186d48379ce1c88031450d1fc05aad87599e1647 | /AP186_activity4_ADELINO.sce | 74e9976d75b98118665e1f39101caa1ba6dfcaf2 | [] | no_license | jbadelino/AP-186-Activity-4-Measuring-Area-from-Images | cd281d043be6b6d4e15bd6da62db651828d85f3e | a6d4b6f1bacbae6403845c29929d370c6545fc1e | refs/heads/master | 2020-07-07T23:30:58.660421 | 2019-08-22T09:24:45 | 2019-08-22T09:24:45 | 203,506,291 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,709 | sce | AP186_activity4_ADELINO.sce | //rectangle = imread("C:\Users\Asus\Documents\Applied Physics 186\act 4\rectangle_1.bmp")
//rec_edge_canny = edge(rectangle, "canny");
//rec_edge_sobel = edge(rectangle, "sobel");
//rec_edge_prewitt = edge(rectangle, "prewitt");
//imwrite(rec_edge_sobel, "rec_sobel.png");
//imwrite(rec_edge_canny, "rec_canny.png");
//imwrite(rec_edge_prewitt, "rec_prewitt.png");
//square = imread("C:\Users\Asus\Documents\Applied Physics 186\act 4\square.bmp");
//sq_edge_canny = edge(square, "canny");
//sq_edge_sobel = edge(square, "sobel");
//sq_edge_prewitt = edge(square, "prewitt");
//imwrite(sq_edge_sobel, "sq_sobel.png");
//imwrite(sq_edge_canny, "sq_canny.png");
//imwrite(sq_edge_prewitt, "sq_prewitt.png");
//circle = imread("C:\Users\Asus\Documents\Applied Physics 186\act 4\circle_1.bmp");
//circ_edge_sobel = edge(circle, "sobel");
//circ_edge_canny = edge(circle, "canny");
//circ_edge_prewitt = edge(circle, "prewitt");
//imwrite(circ_edge_sobel, "circ_sobel.png");
//imwrite(circ_edge_canny, "circ_canny.png");
//imwrite(circ_edge_prewitt, "circ_prewitt.png");
//triangle = imread("C:\Users\Asus\Documents\Applied Physics 186\act 4\triangle.bmp");
//tri_edge_canny = edge(triangle, "canny");
//tri_edge_sobel = edge(triangle, "sobel");
//tri_edge_prewitt = edge(triangle, "prewitt");
//imwrite(tri_edge_sobel, "tri_sobel.png");
//imwrite(tri_edge_canny, "tri_canny.png");
//imwrite(tri_edge_prewitt, "tri_prewitt.png");
iesm = imread("C:\Users\Asus\Documents\Applied Physics 186\act 4\iesm_gray_1.bmp");
//iesm_edge_canny = edge(iesm, "canny");
//iesm_edge_sobel = edge(iesm, "sobel");
iesm_edge_prewitt = edge(iesm, "prewitt");
//imwrite(iesm_edge_sobel, "iesm_sobel.png");
//imwrite(iesm_edge_canny, "iesm_canny.png");
imwrite(iesm_edge_prewitt, "iesm_prewitt.png");
[len,wid]=size(iesm); //image dimensions
[x,y] = find(iesm_edge_prewitt); //finds the coordinates of the detected edges
coords = []; // will contain the cartesian and polar corrdinates
N = length(x); //number of edge points
//polar and cartesian coordinates
for i=1:N
x_p=x(i)-wid/2;
y_p=y(i)-len/2;
theta=atan(y_p,x_p);
r=sqrt(x_p^2+y_p^2);
coords=cat(dims=1,coords,[theta,r,x_p,y_p]);
end
[sorted,k]=gsort(coords,"lr", "i"); //sorts the edge points by increasing angle
xys=sorted(:,3:4); //sorted Cartesian coordinates
px_area =0; //total image area in unit pixels
//Green's theorem implementation
for i=1:N
if i<N then
px_area=px_area+0.5*(xys(i,1)*xys(i+1,2)-xys(i+1,1)*xys(i,2));
else
px_area=px_area+0.5*(xys(i,1)*xys(1,2)-xys(1,1)*xys(i,2));
end
end
//displays the computed area
disp(px_area)
|
3ae185aa89f586f096c5d3d99812a8759c8dbb9b | 5887829f5a0a005033807cf7dc4fb7231eb280ec | /Listing/chapter 6/Listing6216.sce | b9901cce1d564e77a67ced0b4ddecd1d0c3c09a1 | [] | no_license | joaolrneto/learning_scilab | 78ecc0019f167b57bc35647c4ac785ece01e443e | 9624c9a6736860a8a836b0f801256b6224756585 | refs/heads/main | 2023-03-17T22:17:51.853368 | 2021-03-15T20:58:34 | 2021-03-15T20:58:34 | 344,478,059 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 81 | sce | Listing6216.sce | clc
clear
clf()
S = imread("DSC_0172.JPG");
J = imcropm(S);
figure(); imshow(J);
|
69305f5030241a9f1daff4131b078996cb3ca4b5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /509/CH7/EX7.3/7_3.sci | 67ba83091cdd7d5381010e5f0f0a9e7cc0e9d1f3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 783 | sci | 7_3.sci | //Chapter 7 Example 3//
clc
clear
// useful energy=e1,energy in terms of joules=e//
e1=190;// in MeV//
e=e1*10^6*1.6*10^-19;
printf("\n Energy in terms of joules = %.15f J\n",e);
// number of fisions required to produce one joule=n//
n=1/e;
printf("\n No of fissions required = %.3f \n",n);
// number of nuclei burnt during 1 hr per MW of power=n1,percent of neutrons absorbed=p //
p=80;// in percent//
n1=10^6*n*3600/(p/100);
printf("\n Number of nuclei burnt during 1hr per MW of power = %.3f absorption/hr \n",n1);
// Mass of U-235 consumed to produce 1MW of power=m,Avagadro number=A//
A=6.023*10^23;
m=235;// Atomic mass of uranium//
m=n1*m/A;// this is for 1MW//
m1=m*100// for 100MW//
printf("\n Fuel Consumption to produce 100MW = %.4f g/hr\n",m1);
|
e02b5cef6c56fc49e3d02d7800f01c398d5c69e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH11/EX11.11/11Ex11.sce | 1d95fad03a31ad9d99e186acf63326c3b56df4a5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 167 | sce | 11Ex11.sce | //Ex 11
clc;
clear;
close;
cp_3=1;
sp_3=(150/100)*cp_3;
t_sold=3;
n=t_sold/sp_3; //Number of toffees sold
printf("The number of toffees sold are %d",n);
|
c1dbac682b991fc29549904935be5d6d2bb4f274 | 449d555969bfd7befe906877abab098c6e63a0e8 | /26/CH5/EX5.1.1/5_1_1.sce | 4f00e19dd5df13e45b6b9e0af4134403494d0b62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | 5_1_1.sce | disp('to check if 2 is an eigenvalue of matrix A')
a=[3 2;3 8]
disp(a,'A=')
disp('A-2I=')
b=a-2*eye(2,2)
disp(b)
disp('The columns of A are clearly independent,')
disp('hence (A-2I)x=0 has a non trivial solution and 2 is an eigenvalue of matrix A') |
c59ead608e67d7e5456da216298cd4f6e6a4bc95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /998/CH29/EX29.46/Ex46.sce | 66422d3241b47ccf1b0f540d0219043d21850a66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | sce | Ex46.sce | //Ex:46
clc;
clear;
close;
p_ts=10*log(20)/log(10);//saturated transponder power in dbw
b=2;//back_off in db
p_b=p_ts-b;//power becomes with back_off in db
p_B=floor(p_b);
P_b=10^(p_B/10);//Power becomes with back_off
n_c=P_b/1;//no. of channels
n_cs=floor(n_c);
printf("The max no. of VSAT channels=%f",n_cs); |
5464117b4817df20b7846b673da5f7dbf5e4acf7 | d767ce938c9ad9e84d93ca5b546398697a68c98d | /sailib/dmath.tst | 7b038a14e5058b9057325d04782fe8d7382da6a8 | [] | no_license | TYMCOM-X/169273.tape | bf29533d87921ea3a22eef2f1f1cc770c33d13b7 | abc68e373db6be0104efe986d23624462ef691b9 | refs/heads/master | 2023-03-30T17:14:45.498822 | 2021-03-18T00:28:29 | 2021-03-18T00:28:29 | 347,852,049 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,420 | tst | dmath.tst | begin "tst"
require "dmath.hdr" source!file;
define !="comment", crlf="('15&'12)";
require "{}{}" delimiters;
integer expon,low,up,i;
print("dfix/dfloat");
for expon_ 0 step 1 until 34
do begin
up_1 lsh expon + 20;
low_-up;
for i_ up-40 step 1 until up, low+40 step -1 until low
do if i neq dfix(dfloat(i))
then begin
print(crlf& "dfix(dfloat(", i, "))=dfix(", dfloat(i),
")= ", dfix(dfloat(i)) );
done;
end;
end;
define ipart(fint,fract,ran,type)={
print(" fint/fract ");
for i_0 step 1 until 500
do begin type v,fr,fi;
if i>30
then begin
expon_ran*127;
v_ran*2.^expon;
if ran>.5 then v_-v;
end
else v_(i-10)/6@@0;
fr_fract(v);fi_fint(v);
if fr+fi=v
and ((v leq 0 and -1 < fr leq 0)
or (v>0 and 1 > fr geq 0))
then else print(crlf, v,"=",fi, "+", fr );
end
};
ipart(fint,fract,ran,real);
ipart(dfint,dfract,dran,long real);
defIne minmax(fint,fract,floor,ceiling,ran,type)={
print(" floor/ceiling ");
for i_0 step 1 until 500
do begin type v,fr,fi, fl,cl;
expon_ran*127;
v_ran * 2.^expon; if ran>.5 then v_-v;
fr_ fract(v); fi_ fint(v); fl_floor(v); cl_ceiling(v);
if (cl=fi or fl=fi) and (fl leq v leq cl)
then else print(crlf, fl," leq ", v, " leq ", cl );
end
};
minmax(fint,fract,floor,ceil,ran,real);
minmax(dfint,dfract,dfloor,dceil,dran,long real);
end $
|
1145da90803470f82dfc45f2adb210890873f81b | 92f5993eb05f0a027cc98c0304337a20d2d9da2e | /gradientev.sce | 88595cb9e4a8ce02c252e3baa19def41adf992c7 | [] | no_license | LuhJunior/Teoria-dos-Grafos | 664d034c857199d75e8a513cd0aaa12364347c89 | 22168992af086a2a03442701bcc26abe99d26aaa | refs/heads/master | 2020-03-28T02:39:12.681260 | 2018-12-06T06:29:07 | 2018-12-06T06:29:07 | 147,586,961 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,098 | sce | gradientev.sce | // erro minimo vetorial
function eminimov()
clf();clc
p=[7;9]
[p,g] = gradiente(p)
disp(p, 'ponto')
disp(f(p(1),p(2)), 'valor minimo')
disp(g(1),g(2), 'gradiente')
endfunction
function z = f(x, y)
z = x.^2 + y.^2 + sin(x).*(x+y) + 10
endfunction
function dp = dz(p)
d=0.0000001
dp = [ f(p(1)+d,p(2))-f(p(1),p(2));...
f(p(1),p(2)+d)-f(p(1),p(2))]/d
endfunction
function [p,dp] = gradiente(p)
p0=p
pxh=p(1); pyh=p(2);
for al=0.1:0.05:0.5
p=p0
cont=0;dp=[1;1]
while norm(dp)> 1e-9&&cont<100
cont=cont+1
dp = dz(p)
p = p - al*dp
pxh=[pxh,p(1)]
pyh=[pyh,p(2)]
end
disp(al, 'alpha')
disp(cont,'cont')
param3d(pxh,pyh,f(pxh,pyh))
grafico
end
endfunction
function grafico
x=-10:10
y=-10:10
z=x'.^2*ones(y)+ones(x')*y.^2 //
z = z + sin(x').*x'*ones(y); //disp(size(z1), 'z1')
z = z + sin(x')*y; //disp(size(z2), 'z2')
z = z + 10*ones(x')*ones(y)
plot3d(x,y,z)
endfunction
eminimov
|
52a2c82555779cbe4559dfdffce9716373cc771f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH7/EX7.25/7_25.sce | 2d58ce7247851ba0c634bdbc1b38df002ac55f62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 7_25.sce | clc
//initialisation of variables
V= -0.658 //volt
V1= -0.3363 //volt
n= 1 //electron
F= 96438 //coloumb
R= 8.314 //j/mol K
T= 25 //C
//CLACULATIONS
V2= V-V1
Ksp= 10^(V2*n*F/(2.303*R*(273.2+T)))
//RESULTS
printf (' Solubility constant = %.1e volt',Ksp)
|
a668ad48d15c8b01dee639d7ad190829a926e5f2 | 60a8a4ce793d26ce86d35bcc0f2d58bd428855f1 | /1(C) Program to solve Mathematical Induction..sce | 737773d3bfa964595406bd75f661e99966fb6f3e | [] | no_license | muitnet/DM-Practicals-Exam | 194328e084450c7f06d2847eacb9cad170193197 | a9ad7a06e8fc28ffcbcde231b53c1de716fb97a3 | refs/heads/master | 2020-06-11T19:51:30.232988 | 2016-12-05T13:04:59 | 2016-12-05T13:04:59 | 75,625,333 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 199 | sce | 1(C) Program to solve Mathematical Induction..sce | U1 =1; // g i v e n
U2 =5; // g i v e n
P =[];
for i =1:2
P(i)=3^i -2^ i;
disp (P(i))
end
disp ( 'P( 1 )=U( 1 ) and P( 2 )=U( 2 ) ' );
disp ( ' hence Un=3^n-2^n for all n belonging to N' );
|
4fa0a4ce8aa0bba13bbc6d4b27ffe4be455c9f28 | ec88dd764b3e2758b770e58d61504ea3b1b2b10c | /Step3(2)/2解負負.sce | a4fe626ec7d95f103b0d2d5b2b769a7997bf6011 | [] | no_license | ryoegu/SUscilabPractice | 639afb42aef40b930f9ea4739cd0fec8969c93b5 | 032d2a00d3b6781cde115aa22729482ea9f353fb | refs/heads/master | 2021-01-10T03:55:08.294672 | 2015-05-28T07:40:55 | 2015-05-28T07:40:55 | 36,417,454 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 480 | sce | 2解負負.sce | //impulse response
s=%s;
// Variable
tau1=10; tau2=10; w0=1;
w11=1; w12=2; w21=2; w22=4;
G11=w0*(s+w22+1/tau2);
G12=(s-w11+1/tau1)*(s+w22+1/tau2)+w12*w21;
roots(G12)
G1=G11/G12;
sys1=syslin('c',G1);
G21=w0*w12;
G22=(s-w11-1/tau1)*(s+w22+1/tau2)+w12*w21;
G2=G21/G12;
sys2=syslin('c',G2);
t=0:0.1:10;
x1=csim('impulse',t,sys1);
x2=csim('impulse',t,sys2);
plot2d(x1',x2')
xtitle('State transition in the state space','x1(t)','x2(t)');
|
5abc4adcf11362267369a7fb939dbbf77b00dcc8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /758/CH6/EX6.20/Ex_6_20.sce | b3268a041ae5075a8a61aa998eead644f4b0794c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 98 | sce | Ex_6_20.sce | //Example 6.20
clc;clear;
n=0:7;
x=2^n;
X=clean(fft(x));
disp(x,'x(n)=');
disp(X,'X(k)='); |
9db791a430af653b843332f6a201d48a58608412 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.19_5.tst | afcb712dfb711446bd779c6e4880bfbf26a8641a | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 3,781 | tst | bow.19_5.tst | 19 55:1.0 253:0.125 343:1.0 1195:1.0
19 1:0.0625 3:0.018867924528301886 1205:1.0
19 43:0.25 55:1.0 122:1.0 1482:1.0
19 1:0.0625 3:0.018867924528301886 109:1.0 1125:1.0 1205:1.0
19 55:1.0 57:0.125
19 1:0.0625 3:0.018867924528301886 57:0.125 154:1.0 253:0.125
19 55:1.0 57:0.125
19 1:0.0625 3:0.018867924528301886 253:0.125 1190:1.0
19 14:0.1111111111111111 55:1.0 290:1.0
19 1:0.0625 3:0.018867924528301886 14:0.1111111111111111 253:0.125
19 55:1.0 299:0.3333333333333333 677:1.0
19 1:0.0625 3:0.018867924528301886 14:0.1111111111111111 253:0.125
19 55:1.0 1482:1.0
19 109:1.0 175:0.16666666666666666 264:1.0 447:1.0 485:1.0 985:1.0
19 14:0.1111111111111111 32:0.09090909090909091 118:1.0
19 14:0.1111111111111111 307:0.5 677:1.0 867:1.0
19 3:0.03773584905660377 43:0.25 57:0.375 142:1.0 166:0.3333333333333333 175:0.3333333333333333 217:1.0 281:0.5 406:1.0 450:1.0 461:0.25 485:1.0 559:1.0 588:1.0 769:1.0 1425:1.0 1543:1.0
19 1:0.0625 14:0.3333333333333333 64:0.09090909090909091 134:0.3333333333333333 162:0.3333333333333333 253:0.25 264:1.0 307:0.5 333:1.0 485:1.0 593:0.5 1198:1.0 1340:1.0 1488:1.0
19 3:0.018867924528301886 46:1.0 124:1.0 165:0.3333333333333333 175:0.3333333333333333 436:0.5 614:1.0 828:1.0 1005:0.25
19 3:0.018867924528301886 32:0.09090909090909091 33:1.0 43:0.25 44:0.1 50:0.2 57:0.125 142:1.0 281:0.5 333:1.0 406:1.0 1056:1.0 1151:0.5 1281:1.0 1543:1.0
19 8:0.5 14:0.1111111111111111 32:0.09090909090909091 43:0.25 51:0.25 96:0.2 173:2.0 308:0.3333333333333333 333:1.0 406:2.0 461:0.25 816:1.0 1023:1.0 1302:0.3333333333333333 1422:1.0 1434:1.0 1531:1.0
19 3:0.018867924528301886 57:0.125 64:0.09090909090909091 114:1.0 175:0.16666666666666666 264:1.0 341:1.0 406:3.0 461:0.25 677:1.0 1285:1.0 1307:1.0
19 16:1.0 32:0.09090909090909091 461:0.5 603:1.0 971:1.0
19 1:0.0625 3:0.03773584905660377 43:0.25 50:0.4 57:0.25 64:0.09090909090909091 90:1.0 108:1.0 173:2.0 282:0.2 341:1.0 406:4.0 461:0.25 917:0.3333333333333333 1163:1.0 1197:1.0 1392:1.0 1399:0.3333333333333333
19 264:1.0 416:0.2 1232:1.0
19 3:0.03773584905660377 32:0.09090909090909091 43:0.25 50:0.2 166:0.3333333333333333 264:1.0 291:1.0 292:1.0 377:1.0 406:1.0 408:1.0 410:0.5 416:0.2 461:0.25 1271:1.0
19 5:1.0 44:0.1 64:0.09090909090909091 341:1.0 406:1.0 408:1.0 676:0.5 802:1.0
19 14:0.2222222222222222 47:1.0 162:0.3333333333333333 261:0.2 677:1.0 1252:1.0
19 57:0.125 387:1.0
19 1:0.1875 3:0.05660377358490566 8:2.0 25:2.0 57:0.625 83:1.0 96:0.2 99:1.0 119:0.16666666666666666 124:1.0 161:0.3333333333333333 173:1.0 286:0.5 408:1.0 444:0.3333333333333333 485:1.0 518:1.0 520:2.0 603:1.0 712:0.3333333333333333 800:1.0 978:1.0 1146:0.5 1163:1.0 1164:1.0 1190:1.0 1313:1.0 1319:1.0 1320:1.0 1520:1.0 1521:1.0 1529:1.0 1543:1.0
19 1:0.25 14:0.2222222222222222 25:1.0 46:1.0 57:0.125 96:0.2 119:0.3333333333333333 124:1.0 175:0.5 282:0.2 304:0.5 381:1.0 385:1.0 408:1.0 436:0.5 493:0.5 518:1.0 520:1.0 655:1.0 1155:1.0 1164:1.0 1310:1.0 1319:1.0 1529:1.0
19 1:0.0625 57:0.125 119:0.16666666666666666 124:1.0 175:0.16666666666666666 406:1.0 442:1.0 444:0.3333333333333333 461:0.25 613:1.0
19 1:0.0625 16:0.5 25:1.0 119:0.16666666666666666 264:1.0 300:1.0 406:1.0 873:1.0 1263:1.0 1468:1.0
19 57:0.125 406:1.0 971:1.0 1183:1.0
19 1:0.0625 14:0.1111111111111111 25:2.0 43:0.25 64:0.09090909090909091 119:0.16666666666666666 161:0.3333333333333333 182:1.0 334:1.0 392:1.0 406:1.0 408:1.0 442:1.0 448:1.0 518:1.0 1150:1.0 1163:1.0 1285:1.0 1385:1.0 1434:1.0
19 64:0.09090909090909091 406:1.0
19 3:0.018867924528301886 14:0.1111111111111111 16:0.5 408:1.0
19 7:1.0 32:0.09090909090909091 406:1.0 520:1.0 1106:1.0 1164:1.0 1303:1.0
19 3:0.018867924528301886 25:1.0 44:0.1 89:0.5 175:0.16666666666666666 605:1.0 971:1.0 1252:1.0 1397:1.0
19 3:0.018867924528301886 105:1.0 448:1.0 1147:1.0 1188:1.0
|
67cb039829a7d8b5c94aba1825a7f942203b3746 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3825/CH7/EX7.20/Ex7_20.sce | b230708bb0c7ba5af53c12d00530fd6c12928e2b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 373 | sce | Ex7_20.sce | clc
h1=3025
v1=0.1255
s1=6.7696
h2=2875.4
v2=2.172
s2=7.8349
P1=20*10^5
PO=10^5
u1=h1-(P1*10^-3*v1)
u2=h2-(PO*10^-3*v2)
mprintf("u1=%fkJ/kg\n",u1)//ans vary due to roundoff error
mprintf("u2=%fkJ/kg\n",u2)//ans vary due to roundoff error
TO=298
mprintf("phi1-phi2=%fkJ/kg",(u1+(PO*v1*10^-3)-(TO*s1))-(u2+(PO*v2*10^-3)-(TO*s2)))//ans in textbook is wrong
|
62ef4fcef6477197227009b078493d13399275fa | c28130b62911f5891f14826350089c73c907d3b5 | /exo6_laplacien.sci | 0e520da7e6e4cfc82b954f0116e970b76804080b | [
"MIT"
] | permissive | zyron92/Simulation_of_Cardiac_Excitation | f1709d032613f49427a72716b4e258c3b578b739 | 66813dc24128d9cb171e77d4f780b6bf54011d15 | refs/heads/master | 2021-01-19T10:25:43.810588 | 2017-02-16T12:58:38 | 2017-02-16T12:58:38 | 82,180,177 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,267 | sci | exo6_laplacien.sci | function[res]=laplacien(D,n)
if n>1 then
h=1/(n-1)
//Définir T1 & Tn
T1=-3*eye(n,n)+diag(ones(n-1,1),1)+diag(ones(n-1,1),-1)
T1(1,1)=T1(1,1)+1
T1(n,n)=T1(n,n)+1
T1=(1/(h*h))*T1
//Définir Tk
Tk=-4*eye(n,n)+diag(ones(n-1,1),1)+diag(ones(n-1,1),-1)
Tk(1,1)=Tk(1,1)+1
Tk(n,n)=Tk(n,n)+1
Tk=(1/(h*h))*Tk
//Définir A
A=zeros(n*n,n*n)+(1/(h*h))*diag(ones(n*(n-1),1),n)+(1/(h*h))*diag(ones(n*(n-1),1),-n)
k=1
//Affecter les T1
i= indice_i(k,n)
j= indice_j(k,n)
A([ i : j ],[ i : j ])=T1
k=k+1
//Affecter les Tk
while(k<=n-1),
i= indice_i(k,n)
j= indice_j(k,n)
A([ i : j ],[ i : j ])=Tk
k=k+1
end
//Affecter les T1 au bout de k=n => Tn
if k==n then
i= indice_i(k,n)
j= indice_j(k,n)
A([ i : j ],[ i : j ])=T1
end
//Renvoyer la matrice résultante de (n*n ; n*n)
res=D.*A
else
res=0
end
endfunction
//Calcul de l'indice i de sous-matrice
function[res]=indice_i(k,n)
res=(n*(k-1))+1
endfunction
//Calcul de l'indice j de sous-matrice
function[res]=indice_j(k,n)
res=k*n
endfunction
//-- L'Exemple --//
//n=3
//D=2
//res=laplacien(D,n)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.