blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7485b5ba2c37f9df97ed3449350860a2f8b2339f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1627/CH6/EX6.1/Ex6_1.sce | 9d2a124061e6cdb354c0e23d481bbd751cd78f58 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 494 | sce | Ex6_1.sce | clc
//initialisation of variables
sg=0.85
v=7*10^-3//N.s/m^2
v1=1.46*10^-4//lbf.sec/ft^2
f=0.05//m
r=400*10^-3//m^3/min
t=1/60//min/sec
s=5*10^-2//m
g=9.8//m/s^2
q=9802//N/m^3
h=7*10^-3//N.s/m^2
p=0.000046//m
f1=0.027
f2=200//m
t1=448//f
//CALCULATIONS
V=(4*r*t)/((%pi)*(s)^2)//m/s
P=(q*sg)/(g)//N.s^2/m^4
NR=(V*s*P)/(h)
R=(p/f)
hf=(f1*f2*(V)^2)/(s*2*g)//m
H=q*hf*sg//bars
FHP=H*f2/t1//hp
//RESULTS
printf('The pressure drop and horsepower friction loss =% f hp',FHP)
|
1082bb0013fdf181e2ba7b983a11ce5acc6e9ee1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /980/CH9/EX9.13/9_13.sce | 24a4a4e042631acae89590ad55608ae0237b9a31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 331 | sce | 9_13.sce | clc;
clear;
format('e',11);
d=0.01;
l=0.0254;
N=20;
A=3.14*(d^2)/4; //A=cross section area.
L=4*3.14*10^-7*N^2*A/l;
disp(L,"The inductance of the coil by the first method, L(in H)=");
L=A*4*3.14*10^-7*N^2/(2*sqrt((l/2)^2+A/3.14));
disp(L,"The inductance of the coil by the second method, L(in H)=");
|
8133269d8a65b445abe2be618a2d41eecea3ceed | 6e8de6b748e1c43c2730c5888c09816c97a8aa6c | /ni/scilab_01.sce | 4b3cc2650fb5702e8fa0abba64feefc6b478d02f | [] | no_license | maxadamski/wiwiwi | 3f35e9c91430a69a8ad50c6b20efef2fb3cfbb9b | c0545dca29dc37f6e9b65920d8c36174e4b23793 | refs/heads/master | 2023-04-13T10:09:07.440602 | 2023-04-03T20:28:10 | 2023-04-03T20:28:10 | 115,282,771 | 38 | 18 | null | null | null | null | UTF-8 | Scilab | false | false | 1,471 | sce | scilab_01.sce | // UWAGA: wszystkie funkcje sa napisane w stylu imperatywnym na potrzeby
// zadan. Do efektywnej pracy w scilab uzywaj tablic!
disp('Zadanie 3')
function R = parzysta(n)
if modulo(n, 2) == 0 then
R = %t
else
R = %f
end
endfunction
disp('ok')
disp('Zadanie 4')
function R = fibonacci(n)
if n == 0 then
R = 0
elseif n == 1 then
R = 1
else
R = fibonacci(n - 1) + fibonacci(n - 2)
end
endfunction
fibsum = 0
for i = 0:9
fibsum = fibsum + fibonacci(i)
end
disp(fibsum)
disp('Zadanie 5')
function R = pierwsza(n)
if n <= 1 then
R = %f
return
elseif n == 2 || n == 3 then
R = %t
return
end
for i = 2:sqrt(n)
if modulo(n, i) == 0 then
R = %f
return
end
end
R = %t
endfunction
disp('ok')
disp('Zadanie 6')
primesum = 0
for i = 1:99
if pierwsza(i) then
primesum = primesum + i
end
end
disp(primesum)
disp('Zadanie 7')
function R = Silnia(n)
if ~naturalna(n) then
disp('nie spelnia warunku')
return
end
if n == 0 | n == 1 then
R = 1
else
R = n * silnia(n - 1)
end
endfunction
disp('ok')
disp('Zadanie 8')
function R = naturalna(n)
if round(n) == n && n >= 0 then
R = %t
else
R = %f
end
endfunction
function R = newton(n, k)
if ~(n >= k && naturalna(n) && naturalna(k)) then
disp('nie spelnia warunku')
return
end
R = silnia(n) / (silnia(k) * silnia(n - k))
endfunction
disp('ok')
|
1d22fb15c11ca43f53542040ae9e099225c0366f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1061/CH2/EX2.11/Ex2_11.sce | 0a295d4802789860a3e2c527866d97e1f95afb62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | Ex2_11.sce | //Ex:2.11
clc;
clear;
close;
n1=1.50;// core refractive index
n2=1.45;// cladding refractive index
n_m=sqrt(n1^2-n2^2);// numerical aperture
dl=(n1-n2)/n1;// fractional difference
printf("numerical aperture = %f",n_m);
printf("\n fractional difference = %f",dl); |
d8edb9b269e73bbfb80955f0121e9ca7b2d745cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3834/CH5/EX5.2.1/Ex5_2_1.sce | 38606322b9c579a05a3bd4e59e3b939219188c55 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 413 | sce | Ex5_2_1.sce | //Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner
//Windows 8
//Scilab version- 6.0.0
//Example 5.2.1
clc;
clear;
//given
A=0.2;//Attenuation in dB/km
Pin=0.029E-3; //Power launched in mW
Pout=0.001E-3; //Receiver sensitivity in mW
e=Pin/Pout;
s=10/A;
d=log10(e);
L=s*d;//maximum transistion distance in km
mprintf("Maximum transistion distance = %.2f Km",L);
|
6e58eefdba643f9e08672d4f094b00019216ff4e | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set11/s_Fundamentals_Of_Engineering_Electromagnetics_S._Bhooshan_980.zip/Fundamentals_Of_Engineering_Electromagnetics_S._Bhooshan_980/CH15/EX15.6/15_6.sce | e9f1b7fef3884a8ac09c15b7931749821ce908fc | [] | 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 | 107 | sce | 15_6.sce | errcatch(-1,"stop");mode(2);;
;
format('v',6);
f=10;
d=1.6*50/f^(1/3);
disp(d,"d(in km)=");
exit();
|
1744bf5f56ec907f0df28d546bef823d67f98e31 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/rc2poly/rc2poly6.sce | 76ec32604108159ea2a932b429bfba66dcc322dd | [] | 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 | 130 | sce | rc2poly6.sce | //check o/p when matrix containiig single element is passed
t=[2];
z=[5];
[k] = rc2poly(t);
disp(k);
//output
//1. 2.
|
4e757dbef1e991668a5ca082c9bafc4f27d88a4c | 7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2 | /Scilab/local/2dof_controller/dc/pid/scilab/miller.sce | ed4951710db50d90ca3624faa2d98846215ba987 | [] | no_license | advait23/sbhs-manual | e2c380051117e3a36398bb5ad046781f7b379cb9 | d65043acd98334c44a0f0dbf480473c4c4451834 | refs/heads/master | 2021-01-16T19:50:40.218314 | 2012-11-16T04:11:12 | 2012-11-16T04:11:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 353 | sce | miller.sce | // Updated(18-7-07)
// 11.15
// GMVC PID tuning of example given by Miller et al.
// Model
A = [1 -1.95 0.935]; B = -0.015; k = 1; Ts = 1;
// Transient specifications
N = 15; epsilon = 0.1;
T = ch_pol(N,epsilon);
// Controller Design
getf gmvc_pid.sci;
[Kc,tau_i,tau_d,L] = gmvc_pid(A,B,k,T,Ts);
L1 = filtval(L,1);
zk = zpowk(k);
|
2ee239f47b09300f08f1b26936b01b10d34b4064 | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH12/EX12.13/12_13.sce | f754bfb586f0413a9a0aa8a5298bac775da399e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 525 | sce | 12_13.sce | //Problem 12.13:
//initializing the variables:
//calculation:
printf("\n\nResult\n\n")
printf("\n Combining the curves generated from both methods into one figure (see Fig. 12.14), \n it can be observed that the plot generated using Raoult’s law gives lower values \n of pressure at the same xm values that the NRTL method gives for higher values. Also the \n bubble point curve from Raoult’s law is (as expected) a straight line compared to the curve generated \n by the NRTL method, which is concave down.")
|
9fbbb69ea516010f360f15a28cf8390eea7bc639 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.1_8.tst | 401610a1b3c58342b40200cea390df816a24d8bc | [] | 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,666 | tst | bow.1_8.tst | 1 10:0.5 19:0.045454545454545456 30:0.1111111111111111 66:0.3333333333333333 149:1.0 203:0.5 1593:1.0
1 4:0.1 11:1.0 49:0.1111111111111111 249:0.14285714285714285 345:1.0 1667:1.0
1 3:1.0 13:0.5 14:0.07142857142857142 17:0.02 28:1.0 30:0.1111111111111111 84:0.16666666666666666 187:1.0 298:1.0 883:1.0
1 4:0.1 6:0.5 10:0.5 14:0.07142857142857142 17:0.04 25:1.0 74:0.25 84:0.16666666666666666 665:1.0 721:1.0 1059:1.0
1 4:0.1 84:0.16666666666666666 150:1.0 156:1.0 542:1.0 1314:1.0
1 6:0.5 13:0.5 14:0.03571428571428571 19:0.045454545454545456
1 6:0.5 10:0.5 13:0.5 14:0.03571428571428571 17:0.04 19:0.045454545454545456 49:0.1111111111111111 68:1.0 69:0.3333333333333333 137:1.0 181:0.5 517:1.0 1477:1.0
1 14:0.03571428571428571 17:0.04 25:1.0 30:0.1111111111111111 72:1.0 121:0.3333333333333333 404:1.0 469:1.0 475:1.0 698:1.0
1 13:0.5 19:0.09090909090909091 20:1.0 55:0.25 74:0.5 159:0.14285714285714285 160:0.5
1 13:0.5 14:0.03571428571428571 17:0.02 30:0.1111111111111111 69:0.16666666666666666 121:0.3333333333333333 149:1.0 160:1.0 183:0.25 226:1.0 249:0.14285714285714285 286:1.0 556:1.0 611:1.0 1012:1.0 1308:1.0 1395:1.0
1 4:0.1 6:0.5 10:0.5 14:0.03571428571428571 54:0.125 84:0.16666666666666666 86:1.0 93:1.0 569:1.0 663:1.0
1 25:1.0 396:1.0 494:1.0 1420:0.3333333333333333
1 25:1.0 30:0.1111111111111111 84:0.16666666666666666 148:1.0 286:1.0 326:1.0 409:1.0
1 3:1.0 6:0.5 13:0.5 14:0.10714285714285714 25:1.0 28:1.0 29:1.0 42:0.25 43:0.25 56:0.3333333333333333 60:0.25 181:0.5 207:0.5 214:0.6666666666666666 236:0.5 237:1.0 409:1.0 480:1.0 556:1.0 581:0.3333333333333333 794:1.0 920:1.0 1292:1.0 1593:1.0
1 54:0.125 69:0.16666666666666666 236:0.5 448:1.0 556:1.0 652:0.5
1 4:0.1 14:0.03571428571428571 54:0.125 64:1.0 171:0.25 598:1.0
1 4:0.1 14:0.03571428571428571 19:0.045454545454545456 25:1.0 69:0.16666666666666666 542:1.0 851:1.0 1312:1.0
1 349:0.3333333333333333
1 10:0.5 13:0.5 25:1.0 69:0.16666666666666666 70:1.0 193:0.5
1 25:1.0 30:0.1111111111111111 64:1.0 67:1.0 70:1.0 183:0.25 1653:1.0
1 279:1.0 1286:1.0
1 14:0.03571428571428571 69:0.16666666666666666 968:1.0
1 6:0.5 14:0.03571428571428571 30:0.1111111111111111 1261:1.0 1692:1.0
1 4:0.1 19:0.045454545454545456 25:1.0 66:0.3333333333333333 679:1.0
1 10:0.5 19:0.045454545454545456 25:1.0 66:0.3333333333333333 199:0.3333333333333333 237:1.0 394:1.0 1066:1.0 1218:1.0 1593:1.0
1 19:0.045454545454545456 69:0.16666666666666666 84:0.16666666666666666 121:0.3333333333333333 189:0.2 249:0.14285714285714285 355:1.0 489:1.0 511:1.0 992:1.0
1 3:1.0 6:0.5 14:0.07142857142857142 17:0.04 19:0.09090909090909091 20:1.0 21:1.0 74:0.25 91:1.0 181:0.5 226:1.0 249:0.14285714285714285 274:1.0 602:1.0 705:1.0 856:1.0 911:1.0
1 17:0.04 19:0.045454545454545456 837:1.0 842:1.0
1 6:0.5 14:0.03571428571428571 17:0.04 69:0.3333333333333333 381:1.0 486:1.0 611:1.0 837:1.0 1060:1.0
1 14:0.03571428571428571 17:0.02 20:1.0 30:0.1111111111111111 184:0.5 250:1.0 349:0.3333333333333333 625:1.0 924:1.0 1531:1.0
1 3:1.0 4:0.2 349:0.3333333333333333
1 6:0.5 14:0.07142857142857142 17:0.02 30:0.1111111111111111 133:1.0 226:1.0 377:1.0 465:1.0
1 25:1.0 167:1.0 901:1.0
1 6:0.5 13:1.0 14:0.10714285714285714 17:0.04 19:0.045454545454545456 49:0.1111111111111111 74:0.25 84:0.16666666666666666 256:1.0 442:1.0 553:1.0 837:1.0 1287:1.0
1 17:0.02 20:1.0 25:1.0 147:1.0 171:0.5 284:1.0 828:1.0 1429:1.0
1 13:0.5 127:1.0 249:0.14285714285714285 441:1.0 1484:1.0
1 14:0.03571428571428571 17:0.02 475:1.0 883:1.0
1 4:0.1 13:0.5 202:0.16666666666666666
1 19:0.045454545454545456 20:1.0 21:1.0 43:0.25
1 3:1.0 14:0.07142857142857142 17:0.02 25:2.0 28:1.0 84:0.16666666666666666 298:1.0 326:1.0 462:1.0 716:1.0 1446:1.0
|
30c75ab632bf77bb121dc8d5ed14ac324e8a2ef0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3411/CH6/EX6.1.u1/Ex6_1_u1.sce | 0892939b05e88da46b601a752641a6922c433cf6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sce | Ex6_1_u1.sce | //Example 6_1_u1
clc();
clear;
//To calculate the Electric field of a laser beam
power=1 //units in milli Watts
power=power*10^-3 //units in Watts
area=3 //units in milli meter^2
area=area*10^-6 //units in meter^2
i=power/area // units in Watts/meter^2
c=3*10^8 //units in meter/sec
u=4*10^-7 //units in SI
n=1
E0=sqrt((i*2*c*u)/n) //units in V/meters
printf("The electric field is E0=%.2f V/m",E0)
//In text book answer is given E0=501 V/m but the correct answer is E0=282.84 V/m
|
9174bda058fd2336b59a101e69995f4330e53fe1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH16/EX16.18/ex16_18.sce | 01e9ad7e3a7a53ee4fa4c00564ecfac2191e48f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 138 | sce | ex16_18.sce | clc;
l=0.1; //l=(v/c)
f=sqrt((1-l)/(1+l)); //ratio of frquencies f=(f/fs)
disp(f*100,"Percent shift = "); //diplaying result |
05f211a656bac8fdb805d3885de45a48a49781bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3513/CH9/EX9.5/ch9_5.sce | ca13118e5ec59b9255fec82050673af5bc208871 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 380 | sce | ch9_5.sce | //Determine the probability of survival for an operating period of 800 hrs
//page no 219
clear
clc;
SSA = 12500;
SSC = 11000;
SSE = 15550;
SSB = 2830;
SSD = 9850;
t=800;
MTBFA=12500;
MTBFB=2830;
MTBFC=11000;
MTBFD=9850;
MTBFE=15550;
dA=1/MTBFA;
dB=1/MTBFB;
dC=1/MTBFC;
dD=1/MTBFD;
dE=1/MTBFE;
dS=dA+dB+dC+dD+dE;
RS =%e^(-dS*t);
mprintf("\Rs = %.4f \n",RS);
|
53f52d57e6fcb0651f1f77a753584d9b31d766d7 | 95a91e0c642afba8090e47bd70e3efb36da36e43 | /UP.eps/old_files/2.sce | dbbaafc316b9011e0e6e4d786efa2e74308b1af9 | [] | no_license | Varvara08/myrepo | f4f2d4e0da09b9eea225deab49d3dfd49d861266 | 588458d7d92407761cc9cd7cc3273e70aa9f84b0 | refs/heads/master | 2021-01-20T17:20:40.176769 | 2016-08-17T13:10:46 | 2016-08-18T10:38:17 | 63,784,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 307 | sce | 2.sce | s = 'test.dat';
u=file('open',s,'unknown');
n=800;
s=2;
f=3;
nst=1000;
for i=1:nst
theta_n=1*i;
s=s+1;
f=f+1;
t = 'msig' + string(s) +' ='+string (f) ;
// write(u,t);
// t = 'start';
// write(u,t);
// t = ' ';
write(u,t);
end // for
file('close',u);
//b(4,j)=a(msig2,10);
|
916581b68921538c9de299f80d06511dab5c0ad1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /196/CH3/EX3.8/example_3_8.sce | 07b9e410afe07a5b54d6981aef6e988f234f322c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sce | example_3_8.sce | //Chapter 3
//Example 3-8
//ProbOnO/Pvoltage
//Page 52,Figure 3-4
clear;clc;
//Given
E1=2;E2=3;E3=1;//input voltage
R=10*10^3;//in ohm
Vout=-(E1+E2+E3);
printf("\n\n Value of o/p voltage = %.4f V \n\n",Vout) |
43c13900d285b57f1716445fae880a6c77414513 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2657/CH2/EX2.21/Ex2_21.sce | dd5caa3d67d7dffd329d3015bc177109a168c49c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 615 | sce | Ex2_21.sce | //Calculations for comparison of Atkinson and Otto cycle
clc,clear
//Given:
r=6 //Compression ratio
P1=1,P3=20 //Pressure at 1, 3 in bar
T1=27+273 //Temperature at 1 in K
g=1.4 //Specific heat ratio(gamma)
//Solution:
//Refer fig 2.34
eta_otto=1-1/r^(g-1) //Efficiency of Otto cycle (printing error)
//For Atkinson cycle
e=(P3/P1)^g //Expansion ratio
eta_atk=1-g*(e-r)/(e^g-r^g) //Efficiency of Atkinson cycle
//Results:
printf("\n Efficiency of Otto cycle = %.2f percent",eta_otto*100)
printf("\n Efficiency of Atkinson cycle = %.1f percent\n\n",eta_atk*100)
//Answer in the book is printed wrong
|
649eebb414e1f797845391d433fa83718487f1ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /884/CH12/EX12.2/Example12_2.sce | bd77aa07f862517269de7296022319ac84ed27f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 337 | sce | Example12_2.sce | //computation of concentration of a solution
clear;
clc;
printf("\t Example 12.2\n");
msolute=0.892;//mass of solute, g
msolvent=54.6;//mass of solvent, g
percent=msolute/(msolute+msolvent)*100;//concentration, percent by mass
printf("\t the concentration of KCl solution is : %4.2f percent by mass\n",percent);
//End
|
45e46dedba95b38540857837bc1db9428af4718b | 6b85d1958ff11075634ed9e0f6dbef2de9548f1b | /ANN_Toolbox/macros/buildmacros.sce | 4fd1abdac18af61a04760166aa567f7f1b67eac7 | [
"Unlicense"
] | permissive | ademarazn/REDES_NEURAIS | 8a048c13aab33daa4068f52e18b263cc8325884f | a9a35744476d1f7e8405df04d5e4a9f8e4ed4595 | refs/heads/master | 2021-05-06T13:09:56.514632 | 2018-04-25T18:49:30 | 2018-04-25T18:49:30 | 113,248,743 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 302 | sce | buildmacros.sce | // ====================================================================
// Allan CORNET
// DIGITEO 2010
// INRIA 2008
// ANN Toolbox
// ====================================================================
tbx_build_macros(TOOLBOX_NAME,get_absolute_file_path("buildmacros.sce"));
clear tbx_build_macros; |
7e45fe00ad526a00ae511f1ffddf7176f34c0e34 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH5/EX5.2/Chapter5_Example2.sce | eeab0eeabe20e2e9797bfa0a08afa044dcd04d1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 942 | sce | Chapter5_Example2.sce | //Chapter-5, Example 5.2, Page 164
//=============================================================================
clc
clear
//INPUT DATA
A=(0.4*0.4);//Area of copper slab in m^2
t=0.005;//Thickness of copper slab in m
T=250;//Uniform teperature in degree c
Ts=30;//Surface temperature in degree C
Tsl=90;//Slab temperature in degree C
p=9000;//Density in kg/m^3
c=380;//Specific heat in J/kg.K
k=370;//Thermal conductivity in W/m.K
h=90;//Heat transfer coefficient in W/m^2.K
//CALCULATIONS
A1=(2*A);//Area of two sides in m^2
V=(A*t);//Volume of the slab in m^3
Lc=(V/A1);//Corrected length in m
Bi=((h*Lc)/k);//Biot number
t=-log((Tsl-Ts)/(T-Ts))/((h*A1)/(p*c*V));//Time at which slab temperature becomes 90 degree C in s
y=(h*A1)/(p*c*V);
//OUTPUT
mprintf('Time at which slab temperature becomes 90 degree C is %3.2f s',t)
//=================================END OF PROGRAM==============================
|
35018bd2854a2f02391d613d8336e0c7635681e4 | b2675f983fedb79e5e6f1940962373bda0570ec4 | /Cars v9/Tests/cars-baseline-rest-test.tst | e841ba26240b25a31270fa79791954c0458d1449 | [] | no_license | Meena92/Projects | b854c40b91515bb429c9e13fb0cbc95c03e0a9d6 | 06361e24bf51883ff4140db5c37c3f40836a5752 | refs/heads/master | 2020-03-29T01:45:03.726432 | 2019-06-11T05:26:08 | 2019-06-11T05:26:08 | 149,404,524 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 42,890 | tst | cars-baseline-rest-test.tst | <?xml version="1.0" ?>
<TestCase name="cars-baseline-rest-test" version="5">
<meta>
<create version="9.1.0" buildNumber="9.1.0.261" author="admin" date="01/08/2016" host="admin" />
<lastEdited version="9.1.0" buildNumber="9.1.0.261" author="admin" date="01/08/2016" host="admin" />
</meta>
<id>97686DA1B61511E5A26B406C8F055978</id>
<IsInProject>true</IsInProject>
<sig>ZWQ9NSZ0Y3Y9NSZsaXNhdj05LjEuMCAoOS4xLjAuMjYxKSZub2Rlcz0xNjI4MDU0OTI=</sig>
<subprocess>false</subprocess>
<initState>
</initState>
<resultState>
</resultState>
<deletedProps>
</deletedProps>
<Companion type="com.itko.lisa.test.FailTestCaseCompanion" >
</Companion>
<Node name="cars" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="97686DA2B61511E5A26B406C8F055978"
think="500-1s"
useFilters="true"
quiet="false"
next="index.json" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Assert Response Code Equals" type="com.itko.lisa.test.CheckResultHTTPResponseCode">
<log>Assertion name: Assert Response Code Equals checks for: false is of type: HTTP Response Code.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<param>200</param>
</CheckResult>
<CheckResult assertTrue="false" name="Assert Response Equals" type="com.ca.lisa.apptest.json.AssertJSONEquals2">
<log>Actual response does not match expected response.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<jsonPath>$</jsonPath>
<expectedValue>[{"class":"com.ca.lisa.demo.CarInventory","id":1,"carTrim":"Premium Plus","color":"Silver","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":2,"address":"3800 Motor City Dr","city":"Denver","name":"Mountain Motors Inc","state":"CO","telephone":"303-222-8766","website":"www.mmdenver.com","zip":"80202"},"engine":"2.7 V6","image1":"inventory1.jpg","image2":"cars/interior1.jpg","makeid":2,"milage":138560,"model":{"class":"com.ca.lisa.demo.CarModel","id":10,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":2,"name":"Audi"},"modelYear":1996,"name":"A4-B","subName":"Base","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2011,"modelid":10,"options":"Leather, Navigation, Rear Air","owners":6,"price":3995.0,"stockNumber":"NAD8989","transmission":"Auto","vin":"2T1KR32E37C639014"},{"class":"com.ca.lisa.demo.CarInventory","id":2,"carTrim":"Technology","color":"Black","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":2,"address":"3800 Motor City Dr","city":"Denver","name":"Mountain Motors Inc","state":"CO","telephone":"303-222-8766","website":"www.mmdenver.com","zip":"80202"},"engine":"3.2 V6","image1":"inventory2.jpg","image2":"cars/interior2.jpg","makeid":1,"milage":30650,"model":{"class":"com.ca.lisa.demo.CarModel","id":2,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2013,"name":"RLX-AWD","subName":"AWD","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2013,"modelid":2,"options":"Leather, Navigation, Ski/BikeRack","owners":2,"price":30995.0,"stockNumber":"RA2356/1","transmission":"Auto","vin":"1ZVBP8AM1D5256900"},{"class":"com.ca.lisa.demo.CarInventory","id":3,"carTrim":"Premium","color":"Black","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":4,"address":"1673 Blake Rd","city":"Aurora","name":"Aurora Acura","state":"CO","telephone":"303-955-0134","website":"www.aurora_acura.com","zip":"80203"},"engine":"3.5 V6","image1":"inventory3.jpg","image2":"cars/interior3.jpg","makeid":1,"milage":54650,"model":{"class":"com.ca.lisa.demo.CarModel","id":2,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2013,"name":"RLX-AWD","subName":"AWD","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2012,"modelid":2,"options":"Leather, Navigation, Backup Camera","owners":2,"price":30995.0,"stockNumber":"BN12560","transmission":"Auto","vin":"3N1CB51D35l458771"},{"class":"com.ca.lisa.demo.CarInventory","id":4,"carTrim":"Sport","color":"Silver","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":4,"address":"1673 Blake Rd","city":"Aurora","name":"Aurora Acura","state":"CO","telephone":"303-955-0134","website":"www.aurora_acura.com","zip":"80203"},"engine":"3.5 V6","image1":"inventory4.jpg","image2":"cars/interior4.jpg","makeid":1,"milage":78400,"model":{"class":"com.ca.lisa.demo.CarModel","id":2,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2013,"name":"RLX-AWD","subName":"AWD","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2010,"modelid":2,"options":"Ski Rack, Tow kit","owners":4,"price":21405.0,"stockNumber":"BN13456","transmission":"Auto","vin":"2T1KR32E37C639012"},{"class":"com.ca.lisa.demo.CarInventory","id":5,"carTrim":"Sport","color":"Red","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":4,"address":"1673 Blake Rd","city":"Aurora","name":"Aurora Acura","state":"CO","telephone":"303-955-0134","website":"www.aurora_acura.com","zip":"80203"},"engine":"1.8T","image1":"inventory5.jpg","image2":"cars/interior5.jpg","makeid":2,"milage":98145,"model":{"class":"com.ca.lisa.demo.CarModel","id":11,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":2,"name":"Audi"},"modelYear":1996,"name":"S4-S","subName":"Sport","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2008,"modelid":11,"options":"Leather, Dual Air, 6 Speed","owners":4,"price":7800.0,"stockNumber":"BN13467","transmission":"Manual","vin":"3N1CB51D35l458773"},{"class":"com.ca.lisa.demo.CarInventory","id":6,"carTrim":"xDrivePlus","color":"Black","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":5,"address":"126 Rte 76","city":"Fort Collins","name":"Hilton Honda","state":"CO","telephone":"303-123-6789","website":"www.hiltonhonda.com","zip":"80503"},"engine":"3.5L","image1":"inventory6.jpg","image2":"cars/interior6.jpg","makeid":3,"milage":75350,"model":{"class":"com.ca.lisa.demo.CarModel","id":27,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":3,"name":"BMW"},"modelYear":1990,"name":"7-Series-P","subName":"Premium","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2010,"modelid":27,"options":"Leather, Navigation, Rear Air","owners":1,"price":34500.0,"stockNumber":"N2367J6","transmission":"Auto","vin":"3N1CB51D35l458774"},{"class":"com.ca.lisa.demo.CarInventory","id":7,"carTrim":"Base","color":"Blue","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":6,"address":"570 Lane St","city":"Englewood","name":"Terrys VW","state":"CO","telephone":"303- 560-3412","website":"www.terry_vag.com","zip":"80205"},"engine":"2.0T","image1":"inventory7.jpg","image2":"cars/interior7.jpg","makeid":2,"milage":104300,"model":{"class":"com.ca.lisa.demo.CarModel","id":10,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":2,"name":"Audi"},"modelYear":1996,"name":"A4-B","subName":"Base","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2008,"modelid":10,"options":"Premium Audio Upgrade","owners":1,"price":10750.0,"stockNumber":"ASN29001","transmission":"Auto","vin":"2T1KR32E37C639015"},{"class":"com.ca.lisa.demo.CarInventory","id":8,"carTrim":"Premium","color":"Silver","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":6,"address":"570 Lane St","city":"Englewood","name":"Terrys VW","state":"CO","telephone":"303- 560-3412","website":"www.terry_vag.com","zip":"80205"},"engine":"2.0T","image1":"inventory8.jpg","image2":"cars/interior8.jpg","makeid":2,"milage":62000,"model":{"class":"com.ca.lisa.demo.CarModel","id":10,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":2,"name":"Audi"},"modelYear":1996,"name":"A4-B","subName":"Base","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2012,"modelid":10,"options":"Leather, Navigation, Bluetooth","owners":3,"price":20400.0,"stockNumber":"ASN34501","transmission":"Auto","vin":"1ZVBP8AM1D5256906"},{"class":"com.ca.lisa.demo.CarInventory","id":9,"carTrim":"Base","color":"Silver","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":6,"address":"570 Lane St","city":"Englewood","name":"Terrys VW","state":"CO","telephone":"303- 560-3412","website":"www.terry_vag.com","zip":"80205"},"engine":"3.0L","image1":"inventory9.jpg","image2":"cars/interior9.jpg","makeid":3,"milage":58900,"model":{"class":"com.ca.lisa.demo.CarModel","id":27,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":3,"name":"BMW"},"modelYear":1990,"name":"7-Series-P","subName":"Premium","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2009,"modelid":27,"options":"Leather, Navigation, Rear Air","owners":2,"price":32295.0,"stockNumber":"ASN90845","transmission":"Auto","vin":"1ZVBP8AM1D5256907"},{"class":"com.ca.lisa.demo.CarInventory","id":10,"carTrim":"Technology Plus","color":"Black","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":5,"address":"126 Rte 76","city":"Fort Collins","name":"Hilton Honda","state":"CO","telephone":"303-123-6789","website":"www.hiltonhonda.com","zip":"80503"},"engine":"3.5 V6","image1":"inventory10.jpg","image2":"cars/interior10.jpg","makeid":1,"milage":54650,"model":{"class":"com.ca.lisa.demo.CarModel","id":1,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2013,"name":"RLX-B","subName":"Base","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2012,"modelid":1,"options":"Leather, Navigation, Backup Camera","owners":2,"price":30995.0,"stockNumber":"245980A","transmission":"Auto","vin":"3N1CB51D35l458778"},{"class":"com.ca.lisa.demo.CarInventory","id":11,"carTrim":"Technology Plus","color":"Green","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":5,"address":"126 Rte 76","city":"Fort Collins","name":"Hilton Honda","state":"CO","telephone":"303-123-6789","website":"www.hiltonhonda.com","zip":"80503"},"engine":"3.5 V8","image1":"inventory11.jpg","image2":"cars/interior11.jpg","makeid":1,"milage":74850,"model":{"class":"com.ca.lisa.demo.CarModel","id":1,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2013,"name":"RLX-B","subName":"Base","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2011,"modelid":1,"options":"Leather, Navigation","owners":1,"price":20995.0,"stockNumber":"245180A","transmission":"Auto","vin":"3N1CB41D32l458778"},{"class":"com.ca.lisa.demo.CarInventory","id":12,"carTrim":"Luxury","color":"Black","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":5,"address":"126 Rte 76","city":"Fort Collins","name":"Hilton Honda","state":"CO","telephone":"303-123-6789","website":"www.hiltonhonda.com","zip":"80503"},"engine":"3.0 V6","image1":"inventory22.jpg","image2":"cars/interior21.jpg","makeid":2,"milage":24650,"model":{"class":"com.ca.lisa.demo.CarModel","id":12,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":2,"name":"Audi"},"modelYear":1996,"name":"A4-C","subName":"Convertible","type":{"class":"com.ca.lisa.demo.CarType","id":1,"name":"Convertible"}},"modelYear":2012,"modelid":12,"options":"Leather","owners":2,"price":11995.0,"stockNumber":"246987A","transmission":"Auto","vin":"3H1CB51D35l453773"},{"class":"com.ca.lisa.demo.CarInventory","id":13,"carTrim":"Base","color":"Black","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":6,"address":"570 Lane St","city":"Englewood","name":"Terrys VW","state":"CO","telephone":"303- 560-3412","website":"www.terry_vag.com","zip":"80205"},"engine":"3.0L","image1":"inventory23.jpg","image2":"cars/interior23.jpg","makeid":3,"milage":58900,"model":{"class":"com.ca.lisa.demo.CarModel","id":23,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":3,"name":"BMW"},"modelYear":1990,"name":"3-Series-S","subName":"Sedan","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2011,"modelid":23,"options":"Leather, Navigation","owners":2,"price":12295.0,"stockNumber":"ASN90856","transmission":"Auto","vin":"1XCBP8AM1D5256909"},{"class":"com.ca.lisa.demo.CarInventory","id":14,"carTrim":"Base","color":"Black","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":6,"address":"570 Lane St","city":"Englewood","name":"Terrys VW","state":"CO","telephone":"303- 560-3412","website":"www.terry_vag.com","zip":"80205"},"engine":"3.5L","image1":"inventory24.jpg","image2":"cars/interior24.jpg","makeid":3,"milage":68900,"model":{"class":"com.ca.lisa.demo.CarModel","id":26,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":3,"name":"BMW"},"modelYear":1990,"name":"5-Series-S","subName":"Sedan","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2009,"modelid":26,"options":"Leather, Navigation","owners":1,"price":35295.0,"stockNumber":"ASN70851","transmission":"Auto","vin":"7XCBP8AM1D5256910"}]</expectedValue>
<ignoreArrayOrder>true</ignoreArrayOrder>
</CheckResult>
<url>http://{{WSSERVER}}:{{WSPORT}}/inventory/cars</url>
<data-type>text</data-type>
<header field="User-Agent" value="Java/1.8.0_60" />
<header field="Host" value="10.139.4.217:7001" />
<header field="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="index.json" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="97686DA3B61511E5A26B406C8F055978"
think="500-1s"
useFilters="true"
quiet="false"
next="index" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Assert Response Code Equals" type="com.itko.lisa.test.CheckResultHTTPResponseCode">
<log>Assertion name: Assert Response Code Equals checks for: false is of type: HTTP Response Code.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<param>200</param>
</CheckResult>
<CheckResult assertTrue="false" name="Assert Response Equals" type="com.ca.lisa.apptest.json.AssertJSONEquals2">
<log>Actual response does not match expected response.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<jsonPath>$</jsonPath>
<expectedValue>[{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},{"class":"com.ca.lisa.demo.CarMake","id":2,"name":"Audi"},{"class":"com.ca.lisa.demo.CarMake","id":3,"name":"BMW"},{"class":"com.ca.lisa.demo.CarMake","id":4,"name":"Buick"},{"class":"com.ca.lisa.demo.CarMake","id":5,"name":"Infiniti"},{"class":"com.ca.lisa.demo.CarMake","id":6,"name":"Land Rover"},{"class":"com.ca.lisa.demo.CarMake","id":7,"name":"Lexus"},{"class":"com.ca.lisa.demo.CarMake","id":8,"name":"Lincoln"},{"class":"com.ca.lisa.demo.CarMake","id":9,"name":"Volvo"}]</expectedValue>
<ignoreArrayOrder>true</ignoreArrayOrder>
</CheckResult>
<url>http://{{WSSERVER}}:{{WSPORT}}/inventory/carMake/index.json</url>
<data-type>text</data-type>
<header field="User-Agent" value="Java/1.8.0_60" />
<header field="Host" value="10.139.4.217:7001" />
<header field="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="index" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="97686DA4B61511E5A26B406C8F055978"
think="500-1s"
useFilters="true"
quiet="false"
next="2T1KR32E37C639014" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Assert Response Code Equals" type="com.itko.lisa.test.CheckResultHTTPResponseCode">
<log>Assertion name: Assert Response Code Equals checks for: false is of type: HTTP Response Code.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<param>200</param>
</CheckResult>
<CheckResult assertTrue="false" name="Assert Response Equals" type="com.ca.lisa.apptest.json.AssertJSONEquals2">
<log>Actual response does not match expected response.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<jsonPath>$</jsonPath>
<expectedValue>[{"class":"com.ca.lisa.demo.CarDealer","id":1,"address":"1070 Corzon St","city":"Longmont","name":"XYZ Motors Inc","state":"CO","telephone":"303-555-1234","website":"www.xyzmotorsco.com","zip":"80501"},{"class":"com.ca.lisa.demo.CarDealer","id":2,"address":"3800 Motor City Dr","city":"Denver","name":"Mountain Motors Inc","state":"CO","telephone":"303-222-8766","website":"www.mmdenver.com","zip":"80202"},{"class":"com.ca.lisa.demo.CarDealer","id":3,"address":"235 Spine Rd","city":"Boulder","name":"Blanes GMC","state":"CO","telephone":"303-456-9090","website":"www.blanemotors.com","zip":"80202"},{"class":"com.ca.lisa.demo.CarDealer","id":4,"address":"1673 Blake Rd","city":"Aurora","name":"Aurora Acura","state":"CO","telephone":"303-955-0134","website":"www.aurora_acura.com","zip":"80203"},{"class":"com.ca.lisa.demo.CarDealer","id":5,"address":"126 Rte 76","city":"Fort Collins","name":"Hilton Honda","state":"CO","telephone":"303-123-6789","website":"www.hiltonhonda.com","zip":"80503"},{"class":"com.ca.lisa.demo.CarDealer","id":6,"address":"570 Lane St","city":"Englewood","name":"Terrys VW","state":"CO","telephone":"303- 560-3412","website":"www.terry_vag.com","zip":"80205"},{"class":"com.ca.lisa.demo.CarDealer","id":7,"address":"3556 Motor City Dr","city":"Denver","name":"Blanes Toyota","state":"CO","telephone":"303-100-2310","website":"www.blanemotors.com","zip":"80201"},{"class":"com.ca.lisa.demo.CarDealer","id":8,"address":"4100 Motor City Dr","city":"Denver","name":"Denver Subaru","state":"CO","telephone":"303-670-1402","website":"www.milehighsubaru.com","zip":"80201"},{"class":"com.ca.lisa.demo.CarDealer","id":9,"address":"100 Lisle Ave","city":"Aurora","name":"Capital Ford","state":"CO","telephone":"303-555-1200","website":"www.capitalford.com","zip":"80503"},{"class":"com.ca.lisa.demo.CarDealer","id":10,"address":"1050 University Dr","city":"Boulder","name":"Boulder Chrysler Group","state":"CO","telephone":"303-204-8720","website":"www.jeep_boulder.com","zip":"80503"}]</expectedValue>
<ignoreArrayOrder>true</ignoreArrayOrder>
</CheckResult>
<url>http://{{WSSERVER}}:{{WSPORT}}/inventory/carDealer/index</url>
<data-type>text</data-type>
<header field="User-Agent" value="Java/1.8.0_60" />
<header field="Host" value="10.139.4.217:7001" />
<header field="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="2T1KR32E37C639014" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="97686DA5B61511E5A26B406C8F055978"
think="500-1s"
useFilters="true"
quiet="false"
next="models.json" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Assert Response Code Equals" type="com.itko.lisa.test.CheckResultHTTPResponseCode">
<log>Assertion name: Assert Response Code Equals checks for: false is of type: HTTP Response Code.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<param>200</param>
</CheckResult>
<CheckResult assertTrue="false" name="Assert Response Equals" type="com.ca.lisa.apptest.json.AssertJSONEquals2">
<log>Actual response does not match expected response.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<jsonPath>$</jsonPath>
<expectedValue>{"class":"com.ca.lisa.demo.CarInventory","id":1,"carTrim":"Premium Plus","color":"Silver","dealer":{"class":"com.ca.lisa.demo.CarDealer","id":2,"address":"3800 Motor City Dr","city":"Denver","name":"Mountain Motors Inc","state":"CO","telephone":"303-222-8766","website":"www.mmdenver.com","zip":"80202"},"engine":"2.7 V6","image1":"inventory1.jpg","image2":"cars/interior1.jpg","makeid":2,"milage":138560,"model":{"class":"com.ca.lisa.demo.CarModel","id":10,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":2,"name":"Audi"},"modelYear":1996,"name":"A4-B","subName":"Base","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},"modelYear":2011,"modelid":10,"options":"Leather, Navigation, Rear Air","owners":6,"price":3995.0,"stockNumber":"NAD8989","transmission":"Auto","vin":"2T1KR32E37C639014"}</expectedValue>
<ignoreArrayOrder>true</ignoreArrayOrder>
</CheckResult>
<url>http://{{WSSERVER}}:{{WSPORT}}/inventory/carInventory/2T1KR32E37C639014</url>
<data-type>text</data-type>
<header field="User-Agent" value="Java/1.8.0_60" />
<header field="Host" value="10.139.4.217:7001" />
<header field="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="models.json" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="97686DA6B61511E5A26B406C8F055978"
think="500-1s"
useFilters="true"
quiet="false"
next="10.139.4.217:7001/loan" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Assert Response Code Equals" type="com.itko.lisa.test.CheckResultHTTPResponseCode">
<log>Assertion name: Assert Response Code Equals checks for: false is of type: HTTP Response Code.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<param>200</param>
</CheckResult>
<CheckResult assertTrue="false" name="Assert Response Equals" type="com.ca.lisa.apptest.json.AssertJSONEquals2">
<log>Actual response does not match expected response.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<jsonPath>$</jsonPath>
<expectedValue>[{"class":"com.ca.lisa.demo.CarModel","id":1,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2013,"name":"RLX-B","subName":"Base","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},{"class":"com.ca.lisa.demo.CarModel","id":2,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2013,"name":"RLX-AWD","subName":"AWD","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},{"class":"com.ca.lisa.demo.CarModel","id":3,"fuelType":"Hybrid","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2013,"name":"RLX-H","subName":"Hybrid","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},{"class":"com.ca.lisa.demo.CarModel","id":4,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":1996,"name":"TL-B","subName":"Base","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},{"class":"com.ca.lisa.demo.CarModel","id":5,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":1996,"name":"TL-AWD","subName":"SH-AWD","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},{"class":"com.ca.lisa.demo.CarModel","id":6,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":1996,"name":"TL-S","subName":"Sport","type":{"class":"com.ca.lisa.demo.CarType","id":7,"name":"Sedan"}},{"class":"com.ca.lisa.demo.CarModel","id":7,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2000,"name":"MDX-B","subName":"Base","type":{"class":"com.ca.lisa.demo.CarType","id":9,"name":"SUV"}},{"class":"com.ca.lisa.demo.CarModel","id":8,"fuelType":"Gas","make":{"class":"com.ca.lisa.demo.CarMake","id":1,"name":"Acura"},"modelYear":2013,"name":"MDX-AWD","subName":"SH-AWD","type":{"class":"com.ca.lisa.demo.CarType","id":9,"name":"SUV"}}]</expectedValue>
<ignoreArrayOrder>true</ignoreArrayOrder>
</CheckResult>
<url>http://{{WSSERVER}}:{{WSPORT}}/inventory/carMake/1/models.json</url>
<data-type>text</data-type>
<header field="User-Agent" value="Java/1.8.0_60" />
<header field="Host" value="10.139.4.217:7001" />
<header field="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="10.139.4.217:7001/loan" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="97686DA7B61511E5A26B406C8F055978"
think="500-1s"
useFilters="true"
quiet="false"
next="lisa.simpson" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Assert Response Code Equals" type="com.itko.lisa.test.CheckResultHTTPResponseCode">
<log>Assertion name: Assert Response Code Equals checks for: false is of type: HTTP Response Code.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<param>200</param>
</CheckResult>
<CheckResult assertTrue="false" name="Assert Response Equals" type="com.ca.lisa.apptest.json.AssertJSONEquals2">
<log>Actual response does not match expected response.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<jsonPath>$</jsonPath>
<expectedValue>{"status":"accepted"}</expectedValue>
<ignoreArrayOrder>true</ignoreArrayOrder>
</CheckResult>
<url>http://{{WSSERVER}}:{{WSPORT}}/loan</url>
<content>{"username":"lisa.simpson","firstName":"Lisa","lastName":"Simpson","address1":"5465 Legacy Dr","city":"Plano","state":"TX","zip":"75024","country":"US","dob":"01/01/1970","ssn":"111-22-3333","employer":"CA Technologies","phoneNumber":"123-456-7891","durationOfJob":"5 Years","income":"95808","loanTerm":3,"loanAmount":44224.0,"validateAddress":false}</content>
<content-type>application/json; charset=UTF-8</content-type>
<data-type>text</data-type>
<header field="Content-Type" value="application/json; charset=UTF-8" />
<header field="User-Agent" value="Java/1.8.0_60" />
<header field="Host" value="10.139.4.217:7001" />
<header field="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2" />
<httpMethod>POST</httpMethod>
<onError>abort</onError>
</Node>
<Node name="lisa.simpson" log=""
type="com.itko.lisa.ws.rest.RESTNode"
version="3"
uid="97686DA8B61511E5A26B406C8F055978"
think="500-1S"
useFilters="true"
quiet="false"
next="end" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Assert Response Code Equals" type="com.itko.lisa.test.CheckResultHTTPResponseCode">
<log>Assertion name: Assert Response Code Equals checks for: false is of type: HTTP Response Code.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<param>200</param>
</CheckResult>
<CheckResult assertTrue="true" name="Ensure Result Contains" type="com.ca.lisa.apptest.json.AssertJSONContains">
<log></log>
<then>fail</then>
<jsonPath>$</jsonPath>
<AnyOf>false</AnyOf>
<expectedValue>"durationOfJob":"5 Years", ### "firstName":"Lisa", ### "lastName":"Simpson", ### "username":"lisa.simpson", ### "ssn":"111-22-3333", ### "loanTermInMonths":60,</expectedValue>
<ignoreArrayOrder>false</ignoreArrayOrder>
</CheckResult>
<url>http://{{WSSERVER}}:{{WSPORT}}/loan/lisa.simpson</url>
<data-type>text</data-type>
<header field="User-Agent" value="Java/1.8.0_60" />
<header field="Host" value="10.139.4.217:7001" />
<header field="Accept" value="text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2" />
<httpMethod>GET</httpMethod>
<onError>abort</onError>
</Node>
<Node name="abort" log="The test was aborted"
type="com.itko.lisa.test.AbortStep"
version="1"
uid="97686DABB61511E5A26B406C8F055978"
think="0h"
useFilters="true"
quiet="true"
next="fail" >
</Node>
<Node name="fail" log=""
type="com.itko.lisa.test.Abend"
version="1"
uid="97686DAAB61511E5A26B406C8F055978"
think="0h"
useFilters="true"
quiet="true"
next="fail" >
</Node>
<Node name="end" log=""
type="com.itko.lisa.test.NormalEnd"
version="1"
uid="97686DA9B61511E5A26B406C8F055978"
think="0h"
useFilters="true"
quiet="true"
next="fail" >
</Node>
</TestCase>
|
7465273866242f29ff399575d41340587126e7bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2795/CH15/EX15.1/Ex15_01.sce | e70a93b336eea376844fff3613b6c1459892d816 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,175 | sce | Ex15_01.sce | // Scilab Code Ex15.1: Page-562(2014)
clc; clear;
g = 9.8; // Acceleration due to gravity, m/sec^2
H = 10000; // Altitude of the aeroplane above the surface of earth, m
c = 3.00e+008; // Speed of light in free space, m/s
T = 45*3600; // Time taken by the airplane to from eastward to westward trip, s
delta_T_G = g*H*T/(c^2*1e-009); // Time difference in the two clocks due to gravitational redshift, ns
C = 4e+007; // Circumference of the earth, m
v = 300; // Speed of the jet airplane, m/s
T0 = C/v; // Time of flight of jet airplane very near the surface of the earth, s
bita = v/c; // Boost parameter
// As from special relativity time dilation relation, T = T0*sqrt(1-bita^2), solving for T0 - T = delta_T_R, we have
delta_T_R = T0*(1-sqrt(1-bita^2))/1e-009; // Time difference in the two clocks due to special relativity, ns
printf("\nThe gravitational time dilation effect of %d ns is larger than the approximate %4.1f ns of that of special relativity.", ceil(delta_T_G), delta_T_R);
// Result
// The gravitational time dilation effect of 177 ns is larger than the approximate 66.7 ns of that of special relativity. |
ee069c7c4461c6e76a9888e89625d788a7f57891 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH8/EX8.30/ch8_ex_30.sce | 3c80b3dd733cf97a725c591cf4fe0418ae29b8e7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 509 | sce | ch8_ex_30.sce | //CHAPTER 8- DIRECT CURRENT MACHINES
//Example 30
disp("CHAPTER 8");
disp("EXAMPLE 30");
//VARIABLE INITIALIZATION
p=5*735.5; //in Watts (1 metric H.P.=735.5 W)
N=1000; //in rpm
I=30; //in Amperes
I_s=45; //starting current in Amperes
//SOLUTION
T=(p*60)/(2*%pi*1000);
T_s=(T*(I_s^2))/(I^2);
disp(sprintf("The starting torque is %f N-m",T_s));
//The answer is slightly different due to precision of floating point numbers
//END
|
0d0c182419928827cf5d4df18f68dfa65e057a9a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH30/EX30.9/ex30_9.sce | b0763de14bd1dd7e72c6f6f817082a8905a3d431 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 207 | sce | ex30_9.sce | clc;
i=10; //current in Ampere
t=3600; //time in sec
F=96500; //in Coloumb
v=1; //valency
M=(i*t)/(F*v); //calculating moles
disp(M,"No. of moles per hour = "); //displaying result |
2e646988b243e122c58ac2d49126c1f33ab9fa50 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3/examples/intersci-examples/ex2.sce | 451732d607cb0ec9430cbb173a7849b858a9b807 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | 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 | 463 | sce | ex2.sce | //ex2 example
//1-Creating interface source file
// from intex2.desc file by call to intersci
host('../../bin/intersci intex2');
host('./sedprov intex2');
//2-Making object files
// Interface file
host('make /tmp/intex2.o');
ifile='/tmp/intex2.o'
// User's files
host('make /tmp/fsom.o');
ufiles=['/tmp/fsom.o'];
//3-Link object files .o with addinter
//addinter([ifile,ufiles],'intex2',intex2_funs);
exec('intex2.sce');
//Run Scilab functions:
som(1:20,1:10)
|
101114f2f0126d362fce0a78adbbb58cd83407bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH13/EX13.13/13_13.sce | 7759538911c14fafca0d1953da617f6e78833c6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 729 | sce | 13_13.sce | //Problem 13.13: Use Norton’s theorem to determine the current I flowing in the 4 ohm resistance shown in Figure 13.35(a).
//initializing the variables:
V1 = 4; // in volts
V2 = 2; // in volts
R1 = 2; // in ohms
R2 = 1; // in ohms
R3 = 4; // in ohms
//calculation:
//The 4ohm resistance branch is short-circuited as shown in Figure 13.35(b).
//Figure 13.35(b)
Isc = V1/R1 + V2/R2
//the resistance ‘looking-in’ at a break made between A and B is given by
r = R1*R2/(R1 + R2)
//From the Norton equivalent network shown in Figure 13.35(c) the current in the 4ohm resistance is given by:
I = (r/(r + R3))*Isc
printf("\n\n Result \n\n")
printf("\n the current in the 4ohm resistance is given by %.3f A",I) |
668b5db6717005e0d4474540dc75ab4bc6508aaa | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH14/EX14.5.a/14_5_data.sci | 0fd1c07f31cf0cd80e8d755832f82f6a95d0af48 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 253 | sci | 14_5_data.sci | // Aim:Refer Example 14-5 for Problem Description
// Given:
// diameter of suction cup lip outer circle:
Do=6; //in
// diameter of suction cup inner lip circle:
Di=5; //in
// atmospheric pressure:
p_atm=14.7; //psi
// suction pressure:
p_suc=-10; //psi
|
8fead434a80fed3a54a15d8bf96071954f3e6a82 | 449d555969bfd7befe906877abab098c6e63a0e8 | /581/CH1/EX1.1/Example1_1.sci | ef41d5c147ac610b483c6f96ff7308028ccc8ac5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 403 | sci | Example1_1.sci |
clear;
clc;
printf("\t Example 1.1\n");
k=35; //Thermal Conductivity, W/m*K
T1=110;// Temperature of front
T2=50; // Temperature of back,C
A=0.4;//area of slab,m^2
x=0.03; //Thickness of slab,m
q=-k*(T2-T1)/(1000*x); //formula for heat flux
printf("\t heat flux is: %.0f KW/m^2\n",q);
Q=q*A; //formula for heat transfer rate
printf("\t heat transfer rate is: %.0f KW\n",Q);
//End |
609e81458ba791e0c1c1854a0c2a145188d59aae | 449d555969bfd7befe906877abab098c6e63a0e8 | /3731/CH6/EX6.5/Ex6_5.sce | 72969a347343ff18a9c8507fd6d42131093713ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,685 | sce | Ex6_5.sce | //Chapter 6:Induction Motor Drives
//Example 4
clc;
//Variable Initialization
//Ratings of the star connected Induction motor
f=50 // frequency in HZ
Vl=440 // line voltage in V
P=6 // number of poles
Vp=Vl/sqrt(3) //phase voltage in V
//Parameters referred to the stator
Xr_=1.2 // rotor winding reactance in ohm
Xs=Xr_ // stator winding reactance in ohm
Rr_=0.4 // resistance of the rotor windings in ohm
Rs=0.5 // resistance of the stator windings in ohm
Xm=50 // no load reactance in ohms
N=950 // full load speed in rpm
Sm=2 // slip at maximum torque
//Solution
Rr_=Sm*sqrt(Rs**2+(Xs+Xr_)**2) //Since Sm=Rr_/sqrt(Rs**2+(Xs+Xr_)**2)
Ns=120*f/P //synchronous speed in rpm
Wms=2*%pi*Ns/60
s=(Ns-N)/Ns //slip at 950 rpm
x=%i*Xm*(Rr_/s+%i*Xr_)
y=Rr_/s+%i*(Xr_+Xm)
Zp=Rs+%i*Xs+x/y
Ip=Vp/sqrt(3)/Zp
//The value of Ip is wrong which leads to other wrong answers
Irp_=Ip*(%i*Xm)/(Rr_/s+%i*(Xr_+Xm))
Tp=(1/Wms)*3*abs(Irp_)**2*Rr_/s
x=%i*Xm*(Rr_/(2-s)+%i*Xr_)
y=Rr_/(2-s)+%i*(Xr_+Xm)
Zn=Rs+%i*Xs+x/y
In=Vp/sqrt(3)/Zn
Irn_=In*(%i*Xm)/(Rr_/(2-s)+%i*(Xr_+Xm))
Tn=-(1/Wms)*3*abs(Irn_)**2*Rr_/(2-s)
//The value of In is wrong
T=Tp-Tn
I=abs(Ip)+abs(In)
Rr_=0.4 // from the parameters of the motor referred to the stator
x=sqrt((Rs+Rr_/s)**2+(Xs+Xr_)**2)
If=(Vl/sqrt(3))/x //full load current
Tf=(1/Wms)*3*If**2*Rr_/s //full load torque
ratio1=I/If
ratio2=abs(T)/Tf
//Results
mprintf("Ratio of braking current to full load current is:%.3f",ratio1)
mprintf("\nRatio of braking torque to full load torque is:%.3f",ratio2)
//Answer provided in the book is wrong
|
ff877a992e46c3ec40b52f276190acd91cb54e08 | 6813325b126713766d9778d7665c10b5ba67227b | /Chapter6/Ch_6_Eg_6.12.sce | 0507e1397a806b48b82bc5caf45625efdbfd0f84 | [] | no_license | arvindrachna/Introduction_to_Scilab | 955b2063b3faa33a855d18ac41ed7e0e3ab6bd1f | 9ca5d6be99e0536ba1c08a7a1bf4ba64620ec140 | refs/heads/master | 2020-03-15T19:26:52.964755 | 2018-05-31T04:49:57 | 2018-05-31T04:49:57 | 132,308,878 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 453 | sce | Ch_6_Eg_6.12.sce | //An example to print the number of iterations required to find the first occurrence of 5 by the rand function.
i=0;
while %t do //infinite loop
i=i+1;
n=round (10*rand (1,1))
if(n==5)
printf ("5 is found after %d iterations", i)
break;
end
end
//An example to display odd integers
s="Odd Numbers: "
for x=1:10
if(pmodulo(x,2)==0)
continue;
end
s=s+" " +string(x);
end
disp(s);
|
f74723b7b449cd4c4240df071c049d85f1b780a1 | b513eb49824ff62ddd2289a920c92cfcb362d5f2 | /magister/course_2/gerasimov/optimal/Lab1/scilab/plot_first_part.sce | 29c6bdd1773079c4bb2e4346605ea0bca51beff9 | [] | 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 | 898 | sce | plot_first_part.sce | clear;
deff('z=f(x,u)','z= 2*x^2 + u^2 + 2*x*u + 3*x + 5*u - 10');
//deff('z=c(x,u)','z= x+100*u+1');
deff('z=c(x,u)','z= x-2*u^2');
x=-4:1:6;
u=-6:1:3;
fplot3d1(x,u,f,theta=-70,alpha=80);
fplot3d1(x,u,c,theta=-70,alpha=80);
set(gcf(),"color_map",[graycolormap(32)])
zz = f(1,-3.5)+1; // +1 чтобы было видно точку под любыми углами обзора
param3d1(1,-3.5, list(zz, -9)) // глобальный минимум
// минимум в условиях ограничения
p = poly([5,14,12,32], 'u', 'coeff');
rs = roots(p);
uu = rs(3);
xx = 2 * uu**2;
zz = f(xx,uu)+1;
param3d1(xx, uu, list(zz, -3))
legend("$\text{Глобальный минимум}$", "$\text{Минимум в условиях ограничения c(x,u)}$");
a = gca()
a.children(1).font_size = 4
deff('z=q(x,u)','z= 2*x^2 + u^2 + 2*x*u + 3*x + 5*u - 10 + l*(x-2*u^2)');
|
5b0c719c27900b3be031137c30f80726104d1e98 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH3/EX3.5/Ex3_5.sce | a99f0aebac4b5c36c26c832452c9fed7a92d1d5b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 323 | sce | Ex3_5.sce | //Chapter 3: Thermodynamic and Chemical Equilibrium
//Problem: 5
clc;
//Declaration of Variables
wt = 1 // g
delta_h = 149 // joules
// Solution
delta_h_f = delta_h * (10 * 12 + 8 * 1)
delta_h_f_c=delta_h_f * 10 ** -3
mprintf("Enthalpy of fusion of naphthalene:%.3f kJ/mol", delta_h_f_c)
|
b87ed257d1a00cdd4c9e58f8504967cad171d87c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH5/EX5.28/5_28.sce | f2bb0a91ac00a0f1403c5cf43dca653852bb03dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 437 | sce | 5_28.sce | //ques-5.28
//Calculating hydrolysis constant and degree of hydrolysis of sodium acetate solution
clc
c=0.1;//molarity of sodium acetate solution
Kw=1.1*10^-4;//ionic product of water (*10^-10)
Ka=1.8*10^-5;//dissociation constant
Kh=Kw/Ka;//hydrolysis constant (*10^-10)
h=sqrt(Kh/c);//degree of hydrolysis (*10^-5)
printf("Hydrolysis constant of acetate solution is %.2f*10^-10 and degree of hydrolysis is %.2f*10^-5.",Kh,h);
|
82fb8240bcbf4a3376f4fa22c77d1f26ce38dd21 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set4/s_Chemistry_R._Chang_884.zip/Chemistry_R._Chang_884/CH11/EX11.4/Example11_4.sce | 5637f06cb70bbd39580ee5efdf15db8536b39eb8 | [] | 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 | 306 | sce | Example11_4.sce | errcatch(-1,"stop");mode(2);//diffraction
;
;
printf("\t Example 11.4\n");
n=1;
lambda=154;//wavelength, pm
theta=19.3;//angle of reflection, degree
d=n*lambda/(2*sin(theta*%pi/180));//spacing between the planes
printf("\t the spacing between planes is : %4.0f pm\n",d);
//End
exit();
|
40642c9e2a8633a4bf8d123ce603998d51df0a9f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1376/CH16/EX16.11/16_11.sci | 7271c86246aff4ef17a13667138ef0f5255e96c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sci | 16_11.sci | //16.11
clc;
VL=1100;
IL=100;
pf=150*1000/(3^0.5*VL*IL);
E_per_phase=VL/3^0.5;
Zph=E_per_phase/100;
Rph=pf*Zph;
Xc=(Zph^2-Rph^2)^0.5;
C=10^6/(2*%pi*50*Xc);
disp('Circuit Constants are')
printf("\nR=%.2f ohm",Rph)
printf("\nC=%.2f uF",C) |
260a83eea8f8a021cdc869b951fff99286c033d8 | 3a5107b829276ce4530b98283206e13ef2bfff7c | /Solução de EDO_Método_01_ Euler.sce | 7eb5f32888bb327e2a454d912a3b254db919b195 | [] | no_license | daniel1sender/T-picos-de-F-sica-Computacional | 902932aaa0616171ecd7e21650cb41ed4a29ef72 | 755a3b085f2190d579fcac90d562a7668f4f60d1 | refs/heads/main | 2023-04-23T04:15:27.660423 | 2021-05-10T15:57:41 | 2021-05-10T15:57:41 | 339,199,113 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | Solução de EDO_Método_01_ Euler.sce | //Solução de EDO método Euler
//dy/dx=exp(x)
//condição inicial y(0)=1
//h=0.1
//setar as variáveis
x=0:0.1:7;
y(1)=0;
h=0.1;
//criar uma função f com entrada xi,yi
function z=f(x,y)
z=sin(x);
endfunction
//equação de recorrência
for i=1:length(x)-1
y(i+1)=y(i)+h*f(x(i),y(i))
end
plot (x,y)
|
43177b91cbf09cf5113a31ec513620eddf999cb6 | 91bba043768342a4e23ee3a4ff1aa52fe67f7826 | /cs/142/1/tests/test29.tst | 24bb59195fb1a08b1c461605abc239ab2835c88a | [] | no_license | MaxNanasy/old-homework | 6beecc3881c953c93b847f1d0d93a64ec991d6de | 48b7997a49a8f111344f30787c178e1661db04bd | refs/heads/master | 2016-09-08T04:37:44.932977 | 2010-03-02T00:48:59 | 2010-03-02T00:48:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 39 | tst | test29.tst | var i, j : int; main() { i = +j-i*12;} |
d90ff449c2fedcf616d5ba3e6a545917c02141b6 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/PU17QHW/ATWM1_Working_Memory_MRI_PU17QHW/ATWM1_Working_Memory_MRI_Salient_Cued_Run1.sce | a0bfa19b4e9b3c4ca7c83dcac40c96999857eea3 | [] | 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 | 12,442 | sce | ATWM1_Working_Memory_MRI_Salient_Cued_Run1.sce | # ATWM1 MRI Experiment
scenario = "ATWM1_Working_Memory_MRI_salient_cued_run1";
scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
#scenario_type = trials;
scan_period = 2000; # TR
pulses_per_scan = 1;
pulse_code = 1;
#pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
#write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# 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 = 9400;
mri_pulse = 1;
code = "BaselinePre";
#port_code = 1;
};
TEMPLATE "ATWM1_Working_Memory_MRI.tem" {
trigger_volume_encoding trigger_volume_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;
6 11 292 292 399 125 9543 2992 14342 fixation_cross gabor_093 gabor_021 gabor_077 gabor_149 gabor_093_alt gabor_021_alt gabor_077 gabor_149 "1_1_Encoding_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_093_021_077_149_target_position_1_2_retrieval_position_1" gabor_043_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_1_Retrieval_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
20 25 292 292 399 125 9543 2992 12342 fixation_cross gabor_027 gabor_048 gabor_079 gabor_116 gabor_027 gabor_048_alt gabor_079_alt gabor_116 "1_2_Encoding_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_027_048_079_116_target_position_2_3_retrieval_position_2" gabor_circ gabor_048_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_2_Retrieval_Working_Memory_MRI_P3_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;
33 38 292 292 399 125 9543 2992 12342 fixation_cross gabor_180 gabor_047 gabor_022 gabor_074 gabor_180_alt gabor_047 gabor_022_alt gabor_074 "1_3_Encoding_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_180_047_022_074_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_022_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_3_Retrieval_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
46 52 292 292 399 125 11543 2992 14342 fixation_cross gabor_170 gabor_093 gabor_038 gabor_011 gabor_170_alt gabor_093 gabor_038 gabor_011_alt "1_4_Encoding_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_170_093_038_011_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_151_framed blank blank blank blank fixation_cross_target_position_1_4 "1_4_Retrieval_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
61 67 292 292 399 125 11543 2992 12342 fixation_cross gabor_155 gabor_180 gabor_068 gabor_104 gabor_155 gabor_180_alt gabor_068 gabor_104_alt "1_5_Encoding_Working_Memory_MRI_P3_RL_Salient_NoChange_UncuedRetriev_300_300_399_11601_3000_12400_gabor_patch_orientation_155_180_068_104_target_position_2_4_retrieval_position_1" gabor_155_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_5_Retrieval_Working_Memory_MRI_P3_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_155_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
75 80 292 292 399 125 9543 2992 12342 fixation_cross gabor_169 gabor_006 gabor_137 gabor_053 gabor_169 gabor_006 gabor_137_alt gabor_053_alt "1_6_Encoding_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_169_006_137_053_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_137_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_6_Retrieval_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
88 93 292 292 399 125 9543 2992 14342 fixation_cross gabor_053 gabor_179 gabor_005 gabor_160 gabor_053_alt gabor_179_alt gabor_005 gabor_160 "1_7_Encoding_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_053_179_005_160_target_position_1_2_retrieval_position_2" gabor_circ gabor_179_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_7_Retrieval_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
102 108 292 292 399 125 11543 2992 14342 fixation_cross gabor_046 gabor_123 gabor_176 gabor_008 gabor_046_alt gabor_123_alt gabor_176 gabor_008 "1_8_Encoding_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_046_123_176_008_target_position_1_2_retrieval_position_1" gabor_094_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_8_Retrieval_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
117 123 292 292 399 125 11543 2992 12342 fixation_cross gabor_164 gabor_135 gabor_101 gabor_018 gabor_164 gabor_135 gabor_101_alt gabor_018_alt "1_9_Encoding_Working_Memory_MRI_P3_RL_Salient_DoChange_UncuedRetriev_300_300_399_11601_3000_12400_gabor_patch_orientation_164_135_101_018_target_position_3_4_retrieval_position_2" gabor_circ gabor_085_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_9_Retrieval_Working_Memory_MRI_P3_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_085_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
131 137 292 292 399 125 11543 2992 14342 fixation_cross gabor_078 gabor_002 gabor_056 gabor_126 gabor_078_alt gabor_002_alt gabor_056 gabor_126 "1_10_Encoding_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_078_002_056_126_target_position_1_2_retrieval_position_2" gabor_circ gabor_002_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_10_Retrieval_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
146 152 292 292 399 125 11543 2992 14342 fixation_cross gabor_145 gabor_087 gabor_068 gabor_129 gabor_145 gabor_087_alt gabor_068 gabor_129_alt "1_11_Encoding_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_145_087_068_129_target_position_2_4_retrieval_position_2" gabor_circ gabor_039_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_11_Retrieval_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
161 167 292 292 399 125 11543 2992 14342 fixation_cross gabor_051 gabor_174 gabor_092 gabor_109 gabor_051 gabor_174_alt gabor_092_alt gabor_109 "1_12_Encoding_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_051_174_092_109_target_position_2_3_retrieval_position_2" gabor_circ gabor_129_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_12_Retrieval_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
176 181 292 292 399 125 9543 2992 14342 fixation_cross gabor_137 gabor_174 gabor_094 gabor_012 gabor_137_alt gabor_174 gabor_094 gabor_012_alt "1_13_Encoding_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_137_174_094_012_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_012_framed blank blank blank blank fixation_cross_target_position_1_4 "1_13_Retrieval_Working_Memory_MRI_P3_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
190 195 292 292 399 125 9543 2992 12342 fixation_cross gabor_005 gabor_092 gabor_041 gabor_023 gabor_005_alt gabor_092 gabor_041 gabor_023_alt "1_14_Encoding_Working_Memory_MRI_P3_RL_Salient_NoChange_UncuedRetriev_300_300_399_9601_3000_12400_gabor_patch_orientation_005_092_041_023_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_041_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_14_Retrieval_Working_Memory_MRI_P3_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_041_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
203 208 292 292 399 125 9543 2992 12342 fixation_cross gabor_149 gabor_017 gabor_100 gabor_175 gabor_149 gabor_017_alt gabor_100 gabor_175_alt "1_15_Encoding_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_149_017_100_175_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_127_framed blank blank blank blank fixation_cross_target_position_2_4 "1_15_Retrieval_Working_Memory_MRI_P3_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_4" 1 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 = 20600;
code = "BaselinePost";
#port_code = 2;
}; |
03bdce59b024389b9ea970c23ee3cbde46f9affe | 62e6605ab494919b6833bf1a1b158bcb6f9b79df | /residplot.sci | 540192ce5fd53affc892e124fabe2b7587c80f3e | [] | no_license | mani1250/system-identification | c597c26d10bb5dd62b1b4db650b3945afc336e37 | 5db0536c792dfaa4a8f01561315263503ff34d3d | refs/heads/master | 2021-01-12T06:56:00.703593 | 2017-03-07T12:18:15 | 2017-03-07T12:18:15 | 76,865,655 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sci | residplot.sci | function X = residplot(y,u,newdata)
//new data is an idframe object
[lhs,rhs] = argn(0)
if(rhs<2) then
newdata = null;
ek = resid;
elseif(rhs==2)
if(newdata.class~='idframe') then
error('Only Idframe objects allowed')
end
e = newdata.Output - predict(model,newdata)
endfunction
|
f053786c4ed447c25c3174ffb7b93e5bd15e989c | 936c3b35ba232dc3649cc1c6275365a215b2b00d | /conditionStabilite.sce | 38cd31f10d9bd7ded3c307c69ac83d664e2d6473 | [] | no_license | Pierre-Edouard/Projet-modal-sna | 7adb267a560af6286807a0a4330f83898a9fc11c | e73a5361f4b081c7c5c019fc48fcab91206db0c3 | refs/heads/master | 2016-09-05T18:30:16.523787 | 2013-05-17T14:15:08 | 2013-05-17T14:15:08 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | Scilab | false | false | 729 | sce | conditionStabilite.sce | //------------------------------------------------------------------------------
// Détermination d'un critère de stabilité du processus par méthode graphique
//------------------------------------------------------------------------------
// Paramètres TEST
lambdaMin = 0.3
lambdaMax = 0.7
step = 0.05
mu = 0.5
tmax = 2000
nbSimulations = 100
// Calcul de l'espérance de l'encombrement en fonction du temps
t = linspace(0, tmax, tmax/5)
E = []
for lambda=lambdaMin:step:lambdaMax
E = [E; esperanceEncombrement(lambda, mu, t, nbSimulations)]
end
// Affichage
T = ones(length(lambda), 1)*t
plot2d(T', E')
str = "lambda = "
leg = []
for i=lambdaMin:step:lambdaMax
leg = [leg, str + string(i)]
end
legend(leg) |
5418762d169320df65e95bf10ca84b531ddc91d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH11/EX11.13/13.sce | 5b34a3206f61be7ec437998ddfd255815e3be7bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 13.sce | clc
// C2H2+xO2---->aCO2+bH2O
// 2C=aC; a=2
// 2H=2bH; b=1
// x=2.5
// C2H2+2.5O2+2.5*(79/21)N2 --> 2CO2+H2O+2.5*(79/21)N2
// 26 kg C2H2 + 80 kg O2 + 263.3 N2 → 88 kg CO2 + 18 kg H2O + 263.3 kg N2
// 1 kg C2H2 + 3.076 kg O2 + 10.12 kg N2 → 3.38 kg CO2 + 0.69 kg H2O + 10.12 kg N2
Amount= 3.076 + 10.12;
disp("Hence amount of theoretical air required for combustion of 1 kg acetylene =")
disp(Amount)
disp("kg") |
7dff43a331f7e409f7744cca0cedbeb81f42cba9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2969/CH10/EX10.5/Ex10_5.sce | b0b8d0d6cb8607d0eb23256d59971f3d614b49ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,016 | sce | Ex10_5.sce | //5(b) is as follows:
clc
clear
//DATA GIVEN
m=6.75; //mass of air in kg/min
p1=1; //pressure in bar
T1=21+273; //temp. in K
p2=1.35; //pressure in bar
T2=43+273; //temp. in K
DTcw=3.3; //temp. rise of cooling water in deg. celsius
Cp=1.003; //Cp for air in kJ/kgK
//gamma for air=1.4
g=1.4;
W=m*Cp*(T2-T1); //work in kJ/min
//If the compression would have been isotropic,
//T_2=T1*(rp)^[(g-1)/g]
rp=p2/p1;
T_2=T1*(rp)^[(g-1)/g];
Qr=m*Cp*(T_2-T2); //heat rejected to cooling water
Mw=Qr/[4.18*(DTcw)]; //mass of cooling water in kg/min
printf(' (i) The Work is: %3.2f kJ/min. \n',W);
printf(' (ii) The Mass of cooling water is: %1.2f kg/min. \n',Mw);
//NOTE:
//in the question compression process is mentioned and p2 is given as 0.35 bar (p2<p1)
//which is wrong and further p2 is given as 1.35 bar which is allowable
//so here value of p2 is taken as 1.35 bar.
|
829003d9ff36df2ba807b9ff321bc8a051877457 | 78734bd8c022a4e6f7ac3c2fac976e66b0d5e3e1 | /plsql编程.tst | 7894b60cbbfe4a01e7046d3b9395fba2e2107e5d | [] | no_license | zhuzhongding/plsql | abcf7dcf29150449a5e008fdb54e748a7e083a6d | 9f7650e71a2e073b4db533a14556eaef7012b51a | refs/heads/master | 2020-07-03T03:41:53.214390 | 2019-08-18T15:10:03 | 2019-08-18T15:10:03 | 201,772,723 | 0 | 0 | null | null | null | null | GB18030 | Scilab | false | false | 2,142 | tst | plsql编程.tst | PL/SQL Developer Test script 3.0
73
-- Created on 2019/8/8 by ZZD19
--1.打印个人信息:姓名、薪水、地址
--2.判断表中的数据量,大于20,10-20,或小于20
--使用游标,类似于JAVA中ResultSet存储查询的一个结果集
declare
--声明游标
--cursor c_emp is select ename, sal from emp;
--声明带参数的游标
cursor c_emp(v_deptno emp.deptno%type) is select ename, sal from emp where deptno = v_deptno;
v_ename emp.ename%type;
v_sal emp.sal%type;
-- Local variables here
-- String vname ='张三'
--普通变量
--v_name varchar2(20) := '张三';
--v_sal NUMBER;
--v_addr varchar2(200);
--引用型变量
--v_name emp.ename%type;
--v_sal emp.sal%type;
--记录型变量
--v_emp emp%rowtype;
--v_count number;
--v_num number :=1;
begin
--打开游标
--open c_emp;
--打开带参游标
open c_emp(10);
--循环
loop
--获取右边中的值
fetch c_emp into v_ename,v_sal;
exit when c_emp%notfound;
dbms_output.put_line('v_ename:'||v_ename||',v_sal:'||v_sal);
--exit when c_emp%notfound;
end loop;
--关闭游标
close c_emp;
-- Test statements here
--直接赋值
--v_sal := 1000;
--语句赋值
--select '传智播客' into v_addr from dual;
--select ename,sal into v_name,v_sal from emp where empno = '7369';
--select * into v_emp from emp where empno = '7499';
--select count(1) into v_count from emp;
--条件分支
--if v_count>20 then
-- dbms_output.put_line('表中数据大于20条:'||v_count);
-- elsif v_count>=10 then
-- dbms_output.put_line('表中数据在10-20之间:'||v_count);
-- else
-- dbms_output.put_line('表中数据小于10条:'||v_count);
-- end if;
--循环
--loop
--exit when v_num >10;
--dbms_output.put_line(v_num);
--v_num := v_num+1;
--end loop;
--打印输出system.out.println()
--dbms_output.put_line('姓名:'||v_emp.ename||',薪资:'||v_emp.sal);
--dbms_output.put_line('姓名:'||v_name||',薪资:'||v_sal||',地址:'||v_addr);
--dbms_output.put_line('hello world');
end;
0
0
|
cd2b3fc7974f953296d946bad9e7b5096b85e368 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH8/EX8.1/8_1.sce | 9207760beb8695f4983e794b05ad3e8875cb571c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | sce | 8_1.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 8.1
//calculation of the work done by the spring force
//given data
k=50//spring constant(in N/m) of the spring
x=1*10^-2//compression(in m) from natural position
//calculation
W=(k*x*x)/2//work done in compressing a spring
printf('the work done by the spring force is %3.1e J',W)
|
fa232973806b3671247a4c9a789c6183473d6c62 | cdc0f097fcdf85f382c271b211a408ebf86e7439 | /bezier_points.sce | 5bd09bb5678061053a106369b10a3692bdd0f12c | [] | no_license | marinelns/spline | 5d905751995408dc2daadef433911a61215671a3 | 04d0ac4b4bb4f3c37b2d0400f8660d4417447ae6 | refs/heads/master | 2021-08-24T00:51:09.316339 | 2017-12-07T09:55:39 | 2017-12-07T09:55:39 | 112,771,948 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 531 | sce | bezier_points.sce | function [bezier_points] = decasteljau(mat, res)
T = mat;
n = size(T,2) - 1;
for (t = 1: res)
T = mat;
for (i = 1: n)
for (j = 1 : n-i+1)
T(1, i, j) = ((t-1)/res)*T(1, i+1, j) + ((1-((t-1)/res))*T(1, i, j));
T(2, i, j) = ((t-1)/res)*T(2, i+1, j) + ((1-((t-1)/res))*T(2, i, j));
end
end
bezier_points(1,t) = T(1,1);
bezier_points(2,t) = T(2,1);
end
endfunction
A = [1, 2, 3; 4, 5, 6];
a = decasteljau(A, 50);
print(a);
|
35f2caae6a3cd120c2be98b7636f53f808f97f33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH17/EX17.3/Ex17_3.sce | 00703a7243cb300c410512eaa27bb4baa9bfc57b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | Ex17_3.sce | // Exa 17.3
clc;
clear all;
// Given data
Vin=5;// Input voltage(Volts)
Rin=2.5;// k Ohms
Rf=1;//k Ohms
// Solution
Iin=Vin/Rin;//Input current(mA)
If=Iin;
Vout=-If*Rf;
printf('The output voltage = %d Volts \n',Vout);
|
dfef347ca7fc463f78dcd29a381529bddbe6e4f2 | 73287d5fea5556b47ad5680f1b3772238b64a508 | /bisection.sci | 13cbe2896dc6bb46de303a82c9194489bb7bbb6d | [] | no_license | loway1673/numerical-methods | fd6f13c102de5c1f1b188d8803f1f7a1b6f40bec | 4cd410579bc9ab955753799bc93574ce8df948f1 | refs/heads/master | 2020-05-19T19:45:53.628462 | 2014-02-10T23:10:08 | 2014-02-10T23:10:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,454 | sci | bisection.sci | ax = "(x^9)-2";
bx = "cos(5+x/15)";
cx = "3*sin(x)-exp(1/x)";
dx = "0.1*x^2+(22/22.5)*x-0.12";
ex = "x^3*x^2+70*x-70";
function[root, err, iter, exectime] = bisect(fx, xu, xl, tol)
tic();
err = 100; //initial error
for iter = 1: 1 : 10000
if err > tol
xr = (xl + xu)/2;
x = xu;
utmp = evstr(fx);
x = xl;
ltmp = evstr(fx);
tmp = utmp * ltmp;
if tmp < 0
xu = xr;
elseif tmp > 0
xl = xr;
else
root = xr;
err = 0;
break;
end
if(iter > 2)
err = abs((xr - root)/xr)*100;
end
root = xr;
else
break;
end
end
exectime = toc();
endfunction
function [root, err, iter, exectime] = falseposition(fx, xu, xl, tol)
tic();
err = 100; //initial error
for iter = 1: 1 : 10000
if err > tol
x = xu;
utmp = evstr(fx);
x = xl;
ltmp = evstr(fx);
xr = xu - ((utmp * (xl - xu))/(ltmp * utmp));
tmp = utmp * ltmp;
if tmp < 0
xu = xr;
elseif tmp > 0
xl = xr;
else
root = xr;
err = 0;
break;
end
if(iter > 2)
err = abs((xr - root)/xr)*100;
end
root = xr;
else
break;
end
end
exectime = toc();
endfunction
function [root, err, iter, exectime] = modfalseposition(fx, xu, xl, tol)
tic();
il = 0;
iu = 0;
err = 100; //initial error
for iter = 1: 1 : 10000
if err > tol
x = xu;
utmp = evstr(fx);
x = xl;
ltmp = evstr(fx);
xr = xu - ((utmp * (xl - xu))/(ltmp * utmp));
tmp = utmp * ltmp;
x = xr;
xrtmp = evstr(fx);
if tmp < 0
xu = xr;
x = xu;
utmp = evstr(fx);
iu = 0;
il = il + 1;
if il >= 2
ltmp = ltmp/2;
end
elseif tmp > 0
xl = xr;
x = xl;
ltmp = evstr(fx);
il = 0;
iu = iu + 1;
if iu >= 2
utmp = utmp/2;
end
else
root = xr;
err = 0;
break;
end
if(iter > 2)
err = abs((xr - root)/xr)*100;
end
root = xr;
else
break;
end
end
exectime = toc();
endfunction
function [root, err, iter, exectime] = secant(fx, x0, x1, tol)
tic();
err = 100; //initial error
for iter = 1 : 10000
if err > tol
x = x0;
fx0 = evstr(fx); //evaluate x0
x = x1;
fx1 = evstr(fx); //evaluate x1
xiplus1 = x1 - ((fx1 - (x1 - x0))/(fx1 - fx0));
if(iter > 2)
err = abs((xiplus1 - x1)/xiplus1) * 100;
end
x0 = x1;
x1 = xiplus1;
else
break;
end
end
root = x1;
exectime = toc();
endfunction
|
0424f49ec1d571d840a6781fd0b2f0dc43548a38 | 449d555969bfd7befe906877abab098c6e63a0e8 | /593/CH7/EX7.7/ex7_7.sce | 9f2b8ab59c2336c0c92ea242259fc73915048d72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 434 | sce | ex7_7.sce | clear;
//clc();
// Example 7.7
// Page: 154
printf("Example-7.7 Page no.-154\n\n");
//***Data***//
T_r = 0.889;
P_r = 1.815;
// Using the properties of n-butane from appendix A.1 and the equation 7.W, we find that
// (f/P) = v = phi = exp((P_r/T_r)*f(T_r,w))
// Say, f(T_r,w) = f_f
f_f = -0.48553;
// so
v = exp((P_r/T_r)*f_f);
phi = v;
printf(" The value of v=phi for n-butane at given condition is %f",v); |
da267f23db8958c35f8b2482c8f7523a9ccc5b95 | f708de8b70d2f3c38b5eb963efe5d71de1a0de49 | /src/goahead/test/stress/upload.tst | 3b28ed20981edfb6c3d4ffa8e7d0564d037dcf45 | [] | no_license | baobao-skl/SmartSDK | 7225208110f223f950477f577947dbbe2577f439 | 7c81b63a66f3c0cf98ff3c2f1330a3a5e226dbe6 | refs/heads/master | 2020-05-28T01:47:07.809576 | 2014-08-12T14:20:21 | 2014-08-12T14:20:21 | 19,645,700 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,297 | tst | upload.tst | /*
upload.tst - Stress test uploads
*/
const HTTP = App.config.uris.http || "127.0.0.1:8080"
const TESTFILE = "upload-" + hashcode(self) + ".tdat"
/* This test requires chunking support */
if (App.config.bit_upload) {
let http: Http = new Http
/* Depths: 0 1 2 3 4 5 6 7 8 9 */
var sizes = [ 1, 2, 4, 8, 16, 32, 64, 128, 256, 512 ]
// Create test data
buf = new ByteArray
for (i in 64) {
for (j in 15) {
buf.writeByte("A".charCodeAt(0) + (j % 26))
}
buf.writeByte("\n".charCodeAt(0))
}
// Create test data file
f = File(TESTFILE).open({mode: "w"})
for (i in (sizes[test.depth] * 1024)) {
f.write(buf)
}
f.close()
try {
if (test.threads == 1) {
size = Path(TESTFILE).size
http.upload(HTTP + "/action/uploadTest", { file: TESTFILE })
assert(http.status == 200)
http.close()
let uploaded = Path("../web/tmp").join(Path(TESTFILE).basename)
assert(uploaded.size == size)
// MOB - remove need for diff
Cmd.sh("diff " + uploaded + " " + TESTFILE)
}
}
finally {
Path(TESTFILE).remove()
}
} else {
test.skip("Upload not enabled")
}
|
887552fb5b50c2f5ffa6b4f8921ccd3cc38ef40f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2579/CH3/EX3.25/Ex3_25.sce | adf15b4dafc26a5fabd4d9c55775abdbc4f659fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 620 | sce | Ex3_25.sce | //Ex:3.25
clc;
clear;
close;
D=30;// directive gain
// D=4L/y=4Nd/y, where L=Nd
// then 30=4L/y
// L=7.5y
L=30/4;
// FNBW=2*sqrt(2y/Nd)=2*sqrt(2y/7.5y)
// =2*sqrt(2/7.5)
FNBW=2*sqrt(2/7.5);// FNBW for end fire array in radian
Fnbw=FNBW*180/%pi;// FNBW for end fire array in degree
// FNBW1=2y/Nd=2y/7.5y=2/7.5
FNBW1=2/7.5;// FNBW for broad side array in radian
Fnbw1=FNBW1*180/%pi;// FNBW for broad side array in degree
printf("The array length= %f*y, where y is wavelength", L);
printf("\n The FNBW for end fire array = %f degree", Fnbw);
printf("\n The FNBW for broad side array = %f degree", Fnbw1); |
233c5e16bfba98063c5e3c7b9ccd69932ddd9da5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3836/CH21/EX21.1/Ex21_1.sce | 8187556cf78b4622d181c8653c66ff7b590b6910 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 263 | sce | Ex21_1.sce | clear
//Initialization
ni=11010 //binary number
//Calculation
deci = 0
i = 0
while ni>0
rem = ni-int(ni/10.)*10
ni = int(ni/10.)
deci = deci + rem*2**i
i = i + 1
end
//Declaration
printf("\n Decimal Equivalent = %f",deci)
|
379cbac696c6c0187144750402fe0edf4e93edbc | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH10/EX10.11/10_11.sce | cc9a71428d68d27eb7daa6ea7b5675c7f342757e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 125 | sce | 10_11.sce | //Eg-10.11
//pg-452
clear
clc
close()
x = [1 2 3];
y = [2.5 3.7 1.7];
exec cubicspline.sci
cubicspline(x,y)
|
c1817d9a2ef8e03288da9c70490c203b939d47d3 | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /TugasBesar2018/poisson3d.sce | 4cf4bc380cb03f3bd93ff038b896daacb376fa60 | [] | no_license | f-fathurrahman/ffr-MetodeNumerik | ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327 | e3a9da224c0fd5b32e671708e890018a3c4104c4 | refs/heads/master | 2023-07-19T22:29:38.810143 | 2023-07-07T10:02:34 | 2023-07-07T10:02:34 | 107,272,110 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 903 | sce | poisson3d.sce | function u = poisson3d(u0, x, y, z, Nx, Ny, Nz, TOL, func)
// func is given as 3d-array
// Nx, Ny: no of nodes in x and y direction
MaxIter = 10000
hx = (x(Nx) - x(1))/(Nx-1)
kx = 1.0/(hx*hx)
hy = (y(Ny) - y(1))/(Nx-1)
ky = 1.0/(hy*hy)
hz = (z(Ny) - z(1))/(Nz-1)
kz = 1.0/(hz*hz)
kxyz = 2.0*(kx + ky + kz)
u = u0
for iter =1:MaxIter
err = 0.0
u_old = u
// loop only for internal nodes
for k = 2:Nz-1
for j = 2:Ny-1
for i = 2:Nx-1
u(i,j,k) = ( kx*( u(i-1,j,k) + u(i+1,j,k) ) + ...
ky*( u(i,j-1,k) + u(i,j+1,k) ) + ...
kz*( u(i,j,k-1) + u(i,j,k+1) ) - func(i,j,k) ) / kxyz
end
end
end
// calculate error
err = sum(abs(u - u_old))
printf("iter = %8d, err = %18.10e\n", iter, err)
if err < TOL
printf("Convergence is achieved\n")
break
end
end
endfunction
|
186d1ac7582e6d25d58b55066c667b5a80cb9b05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH6/EX6.3/example6_3.sce | b426dbc8d42e161bea94b527d01d165c51761378 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 562 | sce | example6_3.sce | // Find the value of Rd
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 6-3 in page 275
clear; clc; close;
// Given data
Ids=12*10^-3; // Drain current in mA
Vp=-4; // Peak voltage in V
Rs=0; // Source resistance in ohms
Vds=0.1; // Drain-source voltage in V
Vgg=0; // Gate voltage in V
// Calculation
id=Ids*(50*10^-3-625*10^-6);
Rd=(15-Vds)/id;
printf("(a)i_d = %0.3e A\n",id);
printf("(b)Rd = %0.3e ohm",Rd);
// Result
// (a) i_d = 592.6 mu-A
// (b) Rd = 25.15 k-ohm |
e5ca85bca3b6409456f133d7f14ab51f9f0d7366 | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/Cutsf2d.sci | fa26b319befaed2a7714b3810c7b61534ec244e7 | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 245 | sci | Cutsf2d.sci | // 08.10.15
function Out=Cutsf2d(Nvec,GL,Flg)
global THETA PHI
Theta=THETA; Phi=PHI;
Tmp=Rotate3data(GL,Nvec,[-1,0,0]);
THETA=%pi/2; PHI=0;
Out=Projpara(Tmp);
if Flg==1
Windisp(Out);
end;
THETA=Theta; PHI=Phi;
endfunction;
|
3c1494a4c1de7772023ccf38de06647348998701 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2615/CH16/EX79.5/79.sce | 5ca9780711b16709e52ba0f93d04e29ed1651cb8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 336 | sce | 79.sce | clc
//initialisation of variables
n=200//rpm
N=1.5//hp
d=400//mm
f=0.15//mm
n2=1000//rpm
m1=71620//mm
p=1074.3//kg-cm
d1=40//kg
q=8/2//kg
//CALCULATIONS
D=d*(n/n2)//mm
M1=m1*(N/n)//kg-cm
P=p/d1//kg
Q=P/f//kg
M2=P*q//kg-cm
M3=M1/5//kg-cm
M=m1*(N/n2)//kg-cm
//RESULTS
printf('the diameter an the torque=% f kg-cm',M)
|
c29cc9ffca4997a93e9076d531f8916431abfc9f | 05cfbd4d2d4d7d89cf5e1815885d2e1ee957265a | /vcast/small/environment/SRC__LIMITED_RESET/SRC__LIMITED_RESET.tst | 80218025a909bdeba9f3ef3960df22d179b11fd4 | [
"MIT"
] | permissive | VectorSoftwareRI/atg_small_demo_vcast | 187f0ebebe72e4e9536ef35edb98d1343b6137a1 | 0d947a0012a4de77976c06796dae13ea63b67600 | refs/heads/master | 2023-03-03T16:24:44.015491 | 2021-02-16T10:52:47 | 2021-02-16T10:52:47 | 259,935,211 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 778 | tst | SRC__LIMITED_RESET.tst | -- VectorCAST 20 (%H%)
-- Test Case Script
--
-- Environment : SRC__LIMITED_RESET
-- Unit(s) Under Test: limited_reset
--
-- 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:REMOVED_CL_PREFIX
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
TEST.SCRIPT_FEATURE:VCAST_MAIN_NOT_RENAMED
--
-- Unit: limited_reset
-- Subprogram: limited_reset
-- Test Case: TEST_RESET
TEST.UNIT:limited_reset
TEST.SUBPROGRAM:limited_reset
TEST.NEW
TEST.NAME:TEST_RESET
TEST.VALUE:limited_reset.limited_reset.out:<<malloc 1>>
TEST.EXPECTED:limited_reset.limited_reset.out[0]:10
TEST.EXPECTED:limited_reset.limited_reset.return:0
TEST.END
|
f949955ea8e9631bd7427155ca6f411fc1293158 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH7/EX7.14/Ex7_14.sce | 1812532d1d5a2f228b25ea7aee2c6c9f33391d71 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,167 | sce | Ex7_14.sce | //Example 7.14
//Analysis of state equations of Tape Drive.
//compute the poles, zeros and transfer function of Tape Drive System.
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
// State space matrices of Tape Drive System
F=[0 2 0 0 0;
-0.1 -0.35 0.1 0.1 0.75;
0 0 0 2 0;
0.4 0.4 -0.4 -1.4 0;
0 -0.03 0 0 -1];
G=[0 0 0 0 1]';
H2=[0 0 1 0 0];
H3=[0.5 0 0.5 0 0];
Ht=[-0.2 -0.2 0.2 0.2 0];
//------------------------------------------------------------------
//Poles (eigen values) of the system
p=clean(spec(F));
disp(p,"P","Poles of Tape Drive System are (for any output)")
disp("************************************************************")
disp("pole and zero polynomials and transfer function...
for a system with output H2")
sys2=syslin('c',F,G,H2,0);
[d2 num2 den2]=ss2tf(sys2);
N2=coeff(num2);
D2=coeff(den2);
disp(D2,"D2",N2,"N2")
// zeros of the system with output H2
[zer2]=trzeros(sys2)
disp(zer2,"ZER2","zeros are")
// transfer function of the system with output H2
G2=clean(num2/den2);
disp(G2,"G2(s)=N2(s)/D2(s)=")
disp("************************************************************")
disp("pole and zero polynomials and transfer function for a...
system with output H3")
sys3=syslin('c',F,G,H3,0);
[d3 num3 den3]=ss2tf(sys3);
N3=coeff(num3);
D3=coeff(den3);
disp(D3,"D3",N3,"N3")
// zeros of the system with output H3
[zer3]=trzeros(sys3)
disp(zer3,"ZER3","zeros are")
// transfer function of the system with output H3
G3=clean(num2/den2);
disp(G3,"G3(s)=N3(s)/D3(s)=")
disp("************************************************************")
disp("pole and zero polynomials and transfer function for a...
system with output Ht")
syst=syslin('c',F,G,Ht,0);
[dt numt dent]=ss2tf(syst);
Nt=coeff(numt);
Dt=coeff(dent);
disp(Dt,"Dt",Nt,"Nt","zeros are")
// zeros of the system with output Ht
[zert]=trzeros(syst)
disp(zert,"ZERT")
// transfer function of the system with output Ht
Gt=clean(numt/dent);
disp(Gt,"G(s)=Nt(s)/Dt(s)=")
disp("************************************************************")
//------------------------------------------------------------------
|
295590036322157d2f0ae886caee11ca8c8315d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.31/EX2_31.sce | a37bbd5ccb519646999f0425bbdacf4bc66b7cf4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 568 | sce | EX2_31.sce | //EXAMPLE 2-31 PG NO=82
Z1=20.15+%i*15.18;
Z2=6.99+%i*17.29;
Z=Z1+Z2; //impedance
V=230+%i*0;
I=V/Z; //Current
PF=0.64; //Power Factotr
S=V*I; //Apparent Power
P=S*PF; //Active Power
disp(' Impedanceis in rectangular form = '+string(Z)+' ohm');
disp(' current is in rectangular form = '+string(I)+' A');
disp(' S is in rectangular form = '+string(S)+' VA');
disp(' POWER is in rectangular form = '+string(P)+' W');
|
e4571704ca653446f79cf98902bb7863cd20eb0a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH6/EX6.10/Ex6_10.sce | d17578965ac1f61b579e50dfe17ccd606a0145b7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 311 | sce | Ex6_10.sce | //Example number 6.10, Page number 120
clc;clear;
close;
//Variable declaration
A=10*10**-6; //area(m**2)
i=100; //current(amp)
n=8.5*10**28; //number of electrons
e=1.6*10**-19; //charge(c)
//Calculation
vd=i/(n*A*e); //drift velocity(m/s)
//Result
printf("drift velocity is %.4e m/s",vd)
|
606cd4b2b5b05b40c5c677da09a8a387b7f6fea5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH4/EX4.5/Ex4_5.sce | 19be2df2d1ca80fc644ab9dea8afefd903cf0fa6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 376 | sce | Ex4_5.sce | clc
mp = 6000 // market price of machine in Rs
d = 0.2*mp // discount in Rs
sp = mp - d // selling price of factory in Rs
mc = 400 // material cost in Rs
lc = 1600 // labour cost in Rs
fo = 800 // factory overheads in Rs
F = mc + lc + fo // factory cost in Rs
se = 0.5*F // selling expenses in Rs
profit = sp - (F + se ) // Rs
printf("\n profit = Rs %d" , profit)
|
eb36c5d6acbb6c479c94d35bfb24466fdc686e02 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2081/CH12/EX12.6/Ex12_6.sce | 2e2d6690eb6b176a9cf2042b45d175f8fbb6aef7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex12_6.sce | Gv=2.5//interfernce reduction factor
Ga=2.5//antenna sectorisation gain factor
a=1.6//interfence increase factor
Pf=(Gv*Ga)/a
PfdB=10*log10(Pf)
disp(PfdB,'perfomance improvement factor Pf in dB')
|
91999c7c4722e579f694ef45c0aea59dbcd075c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2279/CH5/EX5.25/eg_5_25.sce | 350ed73394318cc8ec6870372ce66eea787e4c7c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sce | eg_5_25.sce | // Continuous Time Fourier Transforms of
// Sinusoidal waveforms cos(Wot)
clear;
clc;
close;
// CTFT
T1 = 2;
T = 4*T1;
Wo = 2*%pi/T;
W = [-Wo,0,Wo];
ak = (2*%pi*Wo*T1/%pi);
XW =[ak,0,ak];
plot(W,abs(XW),'.');
xlabel(' W');
xtitle('CTFT of cos(Wot)','W','X(jW)')
|
e55a9ab5fa969e5137a25ff87287ea4a212cea84 | 449d555969bfd7befe906877abab098c6e63a0e8 | /539/CH18/EX18.2/Example_18_2.sce | 968b0865d6ae0e2178464d9d1b9d2ca52e53d3a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 503 | sce | Example_18_2.sce | //Electrical Conductivity Determination for Intrinsic Silicon at 150°C
clear;
clc;
printf("\t Example 18.2\n");
e=1.6*10^-19; //Coulomb Charge on electron
ni=4*10^19; //For Si at 423 K (m^-3)
//Values of m_e and m_h are deduced from graphs at page No.689
m_e=0.06; //m^2/V-s Mobility of electron
m_h=0.022; ////m^2/V-s Mobility of holes
//sigma is electrical conductivity
sigma=ni*e*(m_e+m_h);
printf("\nElectrical Conductivity is : %f (Ohm-m)^-1\n",sigma);
//End |
411263c8b61c400b848014ab9a52675378edfc02 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3863/CH1/EX1.20/Ex1_20.sce | 30b18e069ebe98dfb4b05d4bdbd6597ef55488c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,229 | sce | Ex1_20.sce | clear
//
//Given
//Variable declaration
Di_s=140 //Internal diameter of steel tube in mm
De_s=160 //External diameter of steel tube in mm
Di_b=160 //Internal diameter of brass tube in mm
De_b=180 //External diameter of brass tube in mm
P=900e3 //Axial load in N
L=140 //Length of each tube in mm
Es=2e5 //Youngs modulus for steel in N/sq.mm
Eb=1e5 //Youngs modulus for brass in N/sq.mm
//Calculation
As=(%pi/4*(De_s**2-Di_s**2)) //Area of steel tube in sq.mm
Ab=(%pi/4*(De_b**2-Di_b**2)) //Area of brass tube in sq.mm
sigmab=(P/(2*As+Ab)) //Stress in steel in N/sq.mm
sigmas=2*sigmab //Stress in brass in N/sq.mm
Pb=int(sigmab*Ab)*1e-3 //Load carried by brass tube in kN
Ps=(P*1e-3)-(Pb) //Load carried by steel tube in kN
dL=(sigmab/Eb*(L)) //Decrease in length in mm
//Result
printf("\n Stress in brass = %0.3f N/mm^2",sigmab)
printf("\n Stress in steel = %0.3f N/mm^2",sigmas)
printf("\n Load carried by brass tube = %0.3f kN",Pb)
printf("\n Load carried by stress tube = %0.3f kN",Ps)
printf("\n Decrease in the length of the compound tube= %0.3f mm",dL)
|
789751025bb49937b431b90beea23f04035fd14f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2606/CH11/EX11.9/ex11_9.sce | 1390e7687251a1c3f5c956dd80d4cb2140bd4ba7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | ex11_9.sce | //Page Number: 11.17
//Example 11.9
clc;
//Given
p=0.2;
Px1=0.5;
Px2=0.5;
//P(X) Matrix
PX=[Px1 Px2];
//Given
PYbyX=[(1-p) p 0;0 p (1-p)];
//P(y)=
PY=PX*PYbyX;
disp(PY,'P(y1) P(y2) P(y3):');
|
b1e8e798dbe0c667ce822977404d478b15c69213 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /NFNTS Activate the eyes.sce | e57942a33f2b22eb4a37c6d36afcedf092ad60b5 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 68,979 | sce | NFNTS Activate the eyes.sce | Name=NFNTS Activate the eyes
PlayerCharacters=player_eye_char
BotCharacters=wave_eye_bot.bot
IsChallenge=true
Timelimit=180.0
PlayerProfile=player_eye_char
AddedBots=wave_eye_bot.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=1
BotTeams=2
MapName=wave_eye.map
MapScale=2.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=true
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=0.0
ScorePerDamage=1.0
ScorePerKill=10.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=
WeaponHeroTag=LG
DifficultyTag=3
AuthorsTag=NFNT
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=Don't aim, look.
GameVersion=2.0.2.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
LockFOVRange=true
LockedFOVMin=103.0
LockedFOVMax=103.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=wave_eye_bot
DodgeProfileNames=wave_eye_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=wave_eye_char
SeeThroughWalls=false
NoDodging=false
NoAiming=true
AbilityUseTimer=1.0
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=player_eye_char
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=-250.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=wave_eye_char
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=100.0
CrouchHeightModifier=0.6
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=100000.0
MaxCrouchSpeed=200.0
Acceleration=100000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=1600.0
Gravity=6.0
AirControl=0.1
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=65.0
MainBBHasHead=true
MainBBHeadRadius=55.0
MainBBHeadOffset=-10.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=320.0
ProjBBRadius=65.0
ProjBBHasHead=true
ProjBBHeadRadius=55.0
ProjBBHeadOffset=-10.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.2
JumpSpeedPenaltyPercent=1.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=wave_eye_dodge
MaxTargetDistance=1500.0
MinTargetDistance=1000.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.1
MaxLRTimeChange=0.2
MinFBTimeChange=0.1
MaxFBTimeChange=0.2
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.1
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.05
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.2
MaxCrouchTime=0.3
MinJumpTime=0.2
MaxJumpTime=0.3
LeftStrafeTimeMult=0.8
RightStrafeTimeMult=0.8
StrafeSwapMinPause=0.1
StrafeSwapMaxPause=0.2
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=0.8
BackTimeMult=0.8
DamageReactionChangesFB=false
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-896.000000 576.000000 -880.000000
896.000000 576.000000 -880.000000
896.000000 576.000000 -896.000000
-896.000000 576.000000 -896.000000
-896.000000 -32.000000 -880.000000
896.000000 -32.000000 -880.000000
896.000000 -32.000000 -896.000000
-896.000000 -32.000000 -896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
896.000000 576.000000 896.000000
896.000000 576.000000 -895.999023
880.000000 576.000000 -896.000000
880.000000 576.000000 896.000000
896.000000 -32.000000 896.000000
896.000000 -32.000000 -895.999023
880.000000 -32.000000 -896.000000
880.000000 -32.000000 896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
896.000244 576.000000 879.999878
-895.999756 576.000000 879.999878
-895.999756 576.000000 895.999878
896.000244 576.000000 895.999878
896.000244 -32.000000 879.999878
-895.999756 -32.000000 879.999878
-895.999756 -32.000000 895.999878
896.000244 -32.000000 895.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-31.999998 32.000000 880.000000
31.999998 32.000000 880.000000
31.999998 -32.000000 880.000000
-31.999998 -32.000000 0.000000
-31.999998 -32.000000 880.000000
31.999998 -32.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
-192.000000 96.000000 880.000000
-176.000000 96.000000 880.000000
-176.000000 -32.000000 880.000000
-192.000000 -32.000000 0.000000
-176.000000 -32.000000 0.000000
-192.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
-352.000000 160.000000 880.000000
-336.000000 160.000000 880.000000
-336.000000 -32.000000 880.000000
-352.000000 -32.000000 0.000000
-352.000000 -32.000000 880.000000
-336.000000 -32.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
-512.000000 224.000000 880.000000
-496.000000 224.000000 880.000000
-496.000000 -32.000000 880.000000
-512.000000 -32.000000 0.000000
-496.000000 -32.000000 0.000000
-512.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
-672.000000 288.000000 880.000000
-656.000000 288.000000 880.000000
-656.000000 -32.000000 880.000000
-672.000000 -32.000000 0.000000
-656.000000 -32.000000 0.000000
-672.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
-31.999998 -32.000000 0.000000
-65.166168 -32.000000 0.000000
-31.999998 -32.000000 880.000000
-31.999998 32.000000 880.000000
-65.166168 -32.000000 880.000000
-65.166168 35.545189 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-65.166168 -32.000000 0.000000
-85.737610 -32.000000 0.000000
-65.166168 -32.000000 880.000000
-65.166168 35.545189 880.000000
-85.737610 -32.000000 879.999939
-85.737610 44.688046 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-85.737610 -32.000000 0.000000
-98.752182 -32.000000 0.000000
-85.737610 -32.000000 879.999939
-85.737610 44.688046 879.999939
-98.752182 -32.000000 880.000000
-98.752182 57.189507 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-98.752182 -32.000000 0.000000
-109.247810 -31.999998 0.000000
-98.752182 -32.000000 880.000000
-98.752182 57.189507 880.000000
-109.247810 -31.999998 880.000000
-109.247810 70.810493 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-109.247810 -31.999998 0.000000
-122.262421 -32.000004 0.000000
-109.247810 -31.999998 880.000000
-109.247810 70.810493 880.000000
-122.262421 -32.000004 880.000122
-122.262421 83.311966 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-122.262421 -32.000004 0.000000
-142.833847 -32.000000 0.000000
-122.262421 -32.000004 880.000122
-142.833847 -32.000000 880.000000
-142.833847 92.454819 880.000000
-122.262421 83.311966 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-142.833847 -32.000000 0.000000
-176.000000 -32.000000 0.000000
-142.833847 -32.000000 880.000000
-142.833847 92.454819 880.000000
-176.000000 -32.000000 880.000000
-176.000000 96.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-336.000000 -32.000000 880.000000
-302.833832 -32.000000 880.000000
-336.000000 -32.000000 0.000000
-336.000000 160.000000 880.000000
-302.833832 -32.000000 0.000000
-302.833832 156.454803 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-302.833832 -32.000000 880.000000
-282.262390 -32.000000 879.999939
-302.833832 -32.000000 0.000000
-302.833832 156.454803 880.000000
-282.262390 -32.000000 0.000000
-282.262390 147.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-282.262390 -32.000000 879.999939
-269.247803 -32.000000 880.000000
-282.262390 -32.000000 0.000000
-282.262390 147.311951 879.999939
-269.247803 -32.000000 0.000000
-269.247803 134.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
-269.247803 -32.000000 880.000000
-258.752167 -31.999998 880.000000
-269.247803 -32.000000 0.000000
-269.247803 134.810486 880.000000
-258.752167 -31.999998 0.000000
-258.752167 121.189491 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-258.752167 -31.999998 880.000000
-245.737625 -32.000004 880.000122
-258.752167 -31.999998 0.000000
-258.752167 121.189491 880.000000
-245.737625 -32.000004 0.000000
-245.737625 108.688065 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-245.737625 -32.000004 880.000122
-225.166168 -32.000000 880.000000
-245.737625 -32.000004 0.000000
-245.737625 108.688065 880.000122
-225.166168 -32.000000 0.000000
-225.166168 99.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-225.166168 -32.000000 880.000000
-192.000000 -32.000000 880.000000
-225.166168 -32.000000 0.000000
-225.166168 99.545197 880.000000
-192.000000 -32.000000 0.000000
-192.000000 96.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-496.000000 -32.000000 880.000000
-462.833832 -32.000000 880.000000
-496.000000 -32.000000 0.000000
-496.000000 224.000000 880.000000
-462.833832 -32.000000 0.000000
-462.833832 220.454819 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-462.833832 -32.000000 880.000000
-442.262360 -32.000000 879.999939
-462.833832 -32.000000 0.000000
-462.833832 220.454819 880.000000
-442.262360 -32.000000 0.000000
-442.262360 211.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-442.262360 -32.000000 879.999939
-429.247803 -32.000000 880.000000
-442.262360 -32.000000 0.000000
-442.262360 211.311951 879.999939
-429.247803 -32.000000 0.000000
-429.247803 198.810501 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-429.247803 -32.000000 880.000000
-418.752136 -31.999998 880.000000
-429.247803 -32.000000 0.000000
-429.247803 198.810501 880.000000
-418.752136 -31.999998 0.000000
-418.752136 185.189484 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-418.752136 -31.999998 880.000000
-405.737610 -32.000004 880.000122
-418.752136 -31.999998 0.000000
-418.752136 185.189484 880.000000
-405.737610 -32.000004 0.000000
-405.737610 172.688065 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-405.737610 -32.000004 880.000122
-385.166168 -32.000000 880.000000
-405.737610 -32.000004 0.000000
-385.166168 -32.000000 0.000000
-385.166168 163.545181 880.000000
-405.737610 172.688065 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
-385.166168 -32.000000 880.000000
-352.000000 -32.000000 880.000000
-385.166168 -32.000000 0.000000
-385.166168 163.545181 880.000000
-352.000000 -32.000000 0.000000
-352.000000 160.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-656.000000 -32.000000 880.000000
-622.833801 -32.000000 880.000000
-656.000000 -32.000000 0.000000
-656.000000 288.000000 880.000000
-622.833801 -32.000000 0.000000
-622.833801 284.454834 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-622.833801 -32.000000 880.000000
-602.262390 -32.000000 879.999939
-622.833801 -32.000000 0.000000
-622.833801 284.454834 880.000000
-602.262390 -32.000000 0.000000
-602.262390 275.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-602.262390 -32.000000 879.999939
-589.247803 -32.000000 880.000000
-602.262390 -32.000000 0.000000
-602.262390 275.311951 879.999939
-589.247803 -32.000000 0.000000
-589.247803 262.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
-589.247803 -32.000000 880.000000
-578.752136 -31.999998 880.000000
-589.247803 -32.000000 0.000000
-589.247803 262.810486 880.000000
-578.752136 -31.999998 0.000000
-578.752136 249.189484 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-578.752136 -31.999998 880.000000
-565.737610 -32.000004 880.000122
-578.752136 -31.999998 0.000000
-578.752136 249.189484 880.000000
-565.737610 -32.000004 0.000000
-565.737610 236.688080 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-565.737610 -32.000004 880.000122
-545.166138 -32.000000 880.000000
-565.737610 -32.000004 0.000000
-565.737610 236.688080 880.000122
-545.166138 -32.000000 0.000000
-545.166138 227.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-545.166138 -32.000000 880.000000
-512.000000 -32.000000 880.000000
-545.166138 -32.000000 0.000000
-545.166138 227.545197 880.000000
-512.000000 -32.000000 0.000000
-512.000000 224.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-816.000000 -32.000000 880.000000
-782.833801 -32.000000 880.000000
-816.000000 -32.000000 0.000000
-816.000000 352.000000 880.000000
-782.833801 -32.000000 0.000000
-782.833801 348.454803 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-782.833801 -32.000000 880.000000
-762.262390 -32.000000 879.999939
-782.833801 -32.000000 0.000000
-782.833801 348.454803 880.000000
-762.262390 -32.000000 0.000000
-762.262390 339.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-762.262390 -32.000000 879.999939
-749.247803 -32.000000 880.000000
-762.262390 -32.000000 0.000000
-762.262390 339.311951 879.999939
-749.247803 -32.000000 0.000000
-749.247803 326.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-749.247803 -32.000000 880.000000
-738.752197 -31.999998 880.000000
-749.247803 -32.000000 0.000000
-749.247803 326.810486 880.000000
-738.752197 -31.999998 0.000000
-738.752197 313.189453 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-738.752197 -31.999998 880.000000
-725.737671 -32.000004 880.000122
-738.752197 -31.999998 0.000000
-738.752197 313.189453 880.000000
-725.737671 -32.000004 0.000000
-725.737671 300.688080 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-725.737671 -32.000004 880.000122
-705.166199 -32.000000 880.000000
-725.737671 -32.000004 0.000000
-725.737671 300.688080 880.000122
-705.166199 -32.000000 0.000000
-705.166199 291.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-705.166199 -32.000000 880.000000
-672.000000 -32.000000 880.000000
-705.166199 -32.000000 0.000000
-705.166199 291.545197 880.000000
-672.000000 -32.000000 0.000000
-672.000000 288.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-880.000000 352.000000 880.000000
-816.000000 352.000000 880.000000
-816.000000 -32.000000 880.000000
-880.000000 -32.000000 0.000000
-816.000000 -32.000000 0.000000
-880.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
176.000000 96.000000 880.000000
192.000000 96.000000 880.000000
192.000000 -32.000000 880.000000
176.000000 -32.000000 0.000000
192.000000 -32.000000 0.000000
176.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
336.000000 160.000000 880.000000
352.000000 160.000000 880.000000
352.000000 -32.000000 880.000000
336.000000 -32.000000 0.000000
336.000000 -32.000000 880.000000
352.000000 -32.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
496.000000 224.000000 880.000000
512.000000 224.000000 880.000000
512.000000 -32.000000 880.000000
496.000000 -32.000000 0.000000
512.000000 -32.000000 0.000000
496.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
656.000000 288.000000 880.000000
672.000000 288.000000 880.000000
672.000000 -32.000000 880.000000
656.000000 -32.000000 0.000000
672.000000 -32.000000 0.000000
656.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
816.000000 352.000000 880.000000
880.000000 352.000000 880.000000
880.000000 -32.000000 880.000000
816.000000 -32.000000 0.000000
880.000000 -32.000000 0.000000
816.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
176.000000 -32.000000 0.000000
142.833832 -32.000000 0.000000
176.000000 -32.000000 880.000000
176.000000 96.000000 880.000000
142.833832 -32.000000 880.000000
142.833832 92.454819 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
142.833832 -32.000000 0.000000
122.262390 -32.000000 0.000000
142.833832 -32.000000 880.000000
142.833832 92.454819 880.000000
122.262390 -32.000000 879.999939
122.262390 83.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
122.262390 -32.000000 0.000000
109.247810 -32.000000 0.000000
122.262390 -32.000000 879.999939
122.262390 83.311951 879.999939
109.247810 -32.000000 880.000000
109.247810 70.810493 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
109.247810 -32.000000 0.000000
98.752167 -31.999998 0.000000
109.247810 -32.000000 880.000000
109.247810 70.810493 880.000000
98.752167 -31.999998 880.000000
98.752167 57.189499 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
98.752167 -31.999998 0.000000
85.737595 -32.000004 0.000000
98.752167 -31.999998 880.000000
98.752167 57.189499 880.000000
85.737595 -32.000004 880.000122
85.737595 44.688053 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
85.737595 -32.000004 0.000000
65.166153 -32.000000 0.000000
85.737595 -32.000004 880.000122
65.166153 -32.000000 880.000000
65.166153 35.545189 880.000000
85.737595 44.688053 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
65.166153 -32.000000 0.000000
31.999998 -32.000000 0.000000
65.166153 -32.000000 880.000000
65.166153 35.545189 880.000000
31.999998 -32.000000 880.000000
31.999998 32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
192.000000 -32.000000 880.000000
225.166183 -32.000000 880.000000
192.000000 -32.000000 0.000000
192.000000 96.000000 880.000000
225.166183 -32.000000 0.000000
225.166183 99.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
225.166183 -32.000000 880.000000
245.737610 -32.000000 879.999939
225.166183 -32.000000 0.000000
225.166183 99.545197 880.000000
245.737610 -32.000000 0.000000
245.737610 108.688049 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
245.737610 -32.000000 879.999939
258.752197 -32.000000 880.000000
245.737610 -32.000000 0.000000
245.737610 108.688049 879.999939
258.752197 -32.000000 0.000000
258.752197 121.189507 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
258.752197 -32.000000 880.000000
269.247833 -31.999998 880.000000
258.752197 -32.000000 0.000000
258.752197 121.189507 880.000000
269.247833 -31.999998 0.000000
269.247833 134.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
269.247833 -31.999998 880.000000
282.262451 -32.000004 880.000122
269.247833 -31.999998 0.000000
269.247833 134.810486 880.000000
282.262451 -32.000004 0.000000
282.262451 147.311966 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
282.262451 -32.000004 880.000122
302.833832 -32.000000 880.000000
282.262451 -32.000004 0.000000
302.833832 -32.000000 0.000000
302.833832 156.454803 880.000000
282.262451 147.311966 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
302.833832 -32.000000 880.000000
336.000000 -32.000000 880.000000
302.833832 -32.000000 0.000000
302.833832 156.454803 880.000000
336.000000 -32.000000 0.000000
336.000000 160.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
352.000000 -32.000000 880.000000
385.166168 -32.000000 880.000000
352.000000 -32.000000 0.000000
352.000000 160.000000 880.000000
385.166168 -32.000000 0.000000
385.166168 163.545181 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
385.166168 -32.000000 880.000000
405.737610 -32.000000 879.999939
385.166168 -32.000000 0.000000
385.166168 163.545181 880.000000
405.737610 -32.000000 0.000000
405.737610 172.688049 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
405.737610 -32.000000 879.999939
418.752197 -32.000000 880.000000
405.737610 -32.000000 0.000000
405.737610 172.688049 879.999939
418.752197 -32.000000 0.000000
418.752197 185.189499 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
418.752197 -32.000000 880.000000
429.247772 -31.999998 880.000000
418.752197 -32.000000 0.000000
429.247772 -31.999998 0.000000
429.247772 198.810486 880.000000
418.752197 185.189499 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
429.247772 -31.999998 880.000000
442.262451 -32.000004 880.000122
429.247772 -31.999998 0.000000
442.262451 -32.000004 0.000000
442.262451 211.311981 880.000122
429.247772 198.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
442.262451 -32.000004 880.000122
462.833832 -32.000000 880.000000
442.262451 -32.000004 0.000000
462.833832 -32.000000 0.000000
462.833832 220.454819 880.000000
442.262451 211.311981 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
462.833832 -32.000000 880.000000
496.000000 -32.000000 880.000000
462.833832 -32.000000 0.000000
462.833832 220.454819 880.000000
496.000000 -32.000000 0.000000
496.000000 224.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
512.000000 -32.000000 880.000000
545.166199 -32.000000 880.000000
512.000000 -32.000000 0.000000
512.000000 224.000000 880.000000
545.166199 -32.000000 0.000000
545.166199 227.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
545.166199 -32.000000 880.000000
565.737610 -32.000000 879.999939
545.166199 -32.000000 0.000000
545.166199 227.545197 880.000000
565.737610 -32.000000 0.000000
565.737610 236.688049 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
565.737610 -32.000000 879.999939
578.752197 -32.000000 880.000000
565.737610 -32.000000 0.000000
565.737610 236.688049 879.999939
578.752197 -32.000000 0.000000
578.752197 249.189514 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
578.752197 -32.000000 880.000000
589.247742 -31.999998 880.000000
578.752197 -32.000000 0.000000
578.752197 249.189514 880.000000
589.247742 -31.999998 0.000000
589.247742 262.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
589.247742 -31.999998 880.000000
602.262512 -32.000004 880.000122
589.247742 -31.999998 0.000000
589.247742 262.810486 880.000000
602.262512 -32.000004 0.000000
602.262512 275.311981 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
602.262512 -32.000004 880.000122
622.833801 -32.000000 880.000000
602.262512 -32.000004 0.000000
602.262512 275.311981 880.000122
622.833801 -32.000000 0.000000
622.833801 284.454834 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
622.833801 -32.000000 880.000000
656.000000 -32.000000 880.000000
622.833801 -32.000000 0.000000
622.833801 284.454834 880.000000
656.000000 -32.000000 0.000000
656.000000 288.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
672.000000 -32.000000 880.000000
705.166199 -32.000000 880.000000
672.000000 -32.000000 0.000000
672.000000 288.000000 880.000000
705.166199 -32.000000 0.000000
705.166199 291.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
705.166199 -32.000000 880.000000
725.737549 -32.000000 879.999939
705.166199 -32.000000 0.000000
705.166199 291.545197 880.000000
725.737549 -32.000000 0.000000
725.737549 300.688049 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
725.737549 -32.000000 879.999939
738.752197 -32.000000 880.000000
725.737549 -32.000000 0.000000
725.737549 300.688049 879.999939
738.752197 -32.000000 0.000000
738.752197 313.189514 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
738.752197 -32.000000 880.000000
749.247803 -31.999998 880.000000
738.752197 -32.000000 0.000000
738.752197 313.189514 880.000000
749.247803 -31.999998 0.000000
749.247803 326.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
749.247803 -31.999998 880.000000
762.262512 -32.000004 880.000122
749.247803 -31.999998 0.000000
749.247803 326.810486 880.000000
762.262512 -32.000004 0.000000
762.262512 339.311981 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
762.262512 -32.000004 880.000122
782.833862 -32.000000 880.000000
762.262512 -32.000004 0.000000
782.833862 -32.000000 0.000000
782.833862 348.454803 880.000000
762.262512 339.311981 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
782.833862 -32.000000 880.000000
816.000000 -32.000000 880.000000
782.833862 -32.000000 0.000000
782.833862 348.454803 880.000000
816.000000 -32.000000 0.000000
816.000000 352.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-896.000000 -32.000000 896.000000
896.000000 -32.000000 896.000000
896.000000 -32.000000 -896.000000
-896.000000 -32.000000 -896.000000
-896.000000 -48.000000 896.000000
896.000000 -48.000000 896.000000
896.000000 -48.000000 -896.000000
-896.000000 -48.000000 -896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-896.000000 576.000000 -897.000000
-896.000366 576.000000 894.999573
-880.000366 576.000000 894.999634
-880.000183 576.000000 -897.000000
-896.000000 -32.000000 -897.000000
-896.000366 -32.000000 894.999573
-880.000366 -32.000000 894.999634
-880.000183 -32.000000 -897.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-880.000000 575.999939 -32.000000
880.000000 575.999939 -32.000000
880.000000 575.999939 -48.000000
-880.000000 575.999939 -48.000000
-880.000000 -32.000000 -32.000000
880.000000 -32.000000 -32.000000
880.000000 -32.000000 -48.000000
-880.000000 -32.000000 -48.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
64.000000 576.000000 -48.000000
928.293213 576.000000 451.000366
936.793213 576.000000 436.277893
72.500008 576.000000 -62.722431
64.000000 -32.000000 -48.000000
928.293213 -32.000000 451.000366
936.793213 -32.000000 436.277893
72.500008 -32.000000 -62.722431
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
-927.824219 576.000000 450.510956
-64.397751 576.000000 -47.990326
-72.897774 576.000000 -62.712749
-936.324219 576.000000 435.788513
-927.824219 -32.000000 450.510956
-64.397751 -32.000000 -47.990326
-72.897774 -32.000000 -62.712749
-936.324219 -32.000000 435.788513
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
-880.000000 592.000000 896.000000
896.000000 592.000000 896.000000
896.000000 592.000000 -48.000000
-880.000000 592.000000 -48.000000
-880.000000 576.000000 896.000000
896.000000 576.000000 896.000000
896.000000 576.000000 -48.000000
-880.000000 576.000000 -48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 -400.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
4adbf6f095c94a0f2e8548ef1f865f92de6bdfee | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH7/EX7.3f/eg7_3f.sce | 715900e0b8bb7dbc9b7d9ee82f88374a6b8f1779 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 519 | sce | eg7_3f.sce | X = [54 63 58 72 49 92 70 73 69 104 48 66 80 64 77];
num = 15;
meanX= mean(X);
X2 = X^2;
s2= (sum(X2)- (num*(meanX^2)))/(num-1);
s= sqrt(s2);
tval = cdft("T", num-1, 0.975, 0.025);
//disp(tval)
upperlim = meanX + (tval*s)/sqrt(num);
lowerlim = meanX - (tval*s)/sqrt(num);
disp(upperlim, "to ",lowerlim,"The 95% confidence interval is ", )
alpha = 0.05;
tval = cdft("T", num-1, 1-alpha, alpha);
lim = meanX + (tval*s)/sqrt(num);
disp(lim, "The 95% lower confidence interval is from minus infinity to ") |
5ec7e52fe2012499ea184cf0c5315c80825b6098 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH21/EX21.8/Ex21_8.sce | 05fd27851e1b5ebec2067e17500adaa94a41056e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 545 | sce | Ex21_8.sce | clc;
VCC=10;
R1=800;
R2=200;
R3=600;
R4=200;
R5=100;
R6=1*10**3;
B=100;
B2=B;
VBE=0.7;
RE=200;
VR2=VCC*(R2/(R1+R2));
IE1=(VR2-VBE)/RE;
IC1=IE1;
disp('mA',IC1*10**3,"IC1=");
VC1=VCC-IC1*R3;
VE1=IE1*R4;
VCE1=VC1-VE1;
disp('V',VCE1*1,"VCE1=");
VE2=VC1-(-VBE);
IE2=(VCC-VE2)/R6;
IC2=IE2;
VC2=IC2*R5;
VCE2=VC2-VE2;
disp('V',VCE2*1,"VCE2=");
re1=25/IE1*10**-3;
re2=25/IE2*10**-3;
Ri2=B2*(re2+R6);
R01=(R3*Ri2)/(R3+Ri2);
Av1=R01/(re1+R4);
disp(Av1*1,"Av1=");
Av2=1;
disp(Av2*1,"Av2=");
Av=Av1*Av2;
disp(Av*1,"Av=");
|
3a5c76e9107031e46b829d216e4254be578ffece | 67a252961f6616fc6db89eb11c1c83abf4d41468 | /CS4110Design3/CS16B032Register32.tst | fb5c5f3891891cacf38d78a5b341b9728565738c | [] | no_license | ramyavelaga9/CS4110 | 5a45497cd7ef28d4472a57a257dad8e5f4a3d17b | 4a3cd82916820e4f7a4930a0efce14def8268dfc | refs/heads/master | 2020-07-17T23:41:12.196500 | 2019-11-20T04:24:32 | 2019-11-20T04:24:32 | 203,223,619 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 531 | tst | CS16B032Register32.tst | load CS16B032Register32.hdl,
output-file CS16B032Register32.out,
compare-to CS16B032Register32.cmp,
output-list time%S1.4.1 in1%D1.6.1 in2%D1.6.1 load%B2.1.2 out1%D1.6.1 out2%D1.6.1;
set in1 0,
set in2 0,
set load 0,
tick,
output;
tock,
output;
set in1 0,
set in2 0,
set load 1,
tick,
output;
tock,
output;
set in1 -32123,
set in2 -32123,
set load 0,
tick,
output;
tock,
output;
set in1 11111,
set in2 11111,
set load 0,
tick,
output;
tock,
output;
set in1 -32123,
set in2 -32123,
set load 1,
tick,
output;
tock,
output; |
6a128114d63b41e86b8f8db0ab3dbc3b551d290f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2705/CH17/EX17.1/Ex17_1.sce | 1222d2ae49317b95122daec87275e2c6b7d05754 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,274 | sce | Ex17_1.sce | clear;
clc;
disp('Example 17.1');
// aim : To determine
// the indicated and brake output and the mechanicl efficiency
// draw up an overall energy balance and as % age
// given values
h = 21;// height of indicator diagram, [mm]
ic = 27;// indicator calibration, [kN/m^2 per mm]
sv = 14*10^-3;// swept volume of the cylinder;,[m^3]
N = 6.6;// speed of engine, [rev/s]
ebl = 77;// effective brake load, [kg]
ebr = .7;// effective brake radious, [m]
fc = .002;// fuel consumption, [kg/s]
CV = 44000;// calorific value of fuel, [kJ/kg]
cwc = .15;// cooling water circulation, [kg/s]
Ti = 38;// cooling water inlet temperature, [C]
To = 71;// cooling water outlet temperature, [C]
c = 4.18;// specific heat capacity of water, [kJ/kg]
eeg = 33.6;// energy to exhaust gases, [kJ/s]
g = 9.81;// gravitational acceleration, [m/s^2]
// solution
PM = ic*h;// mean effective pressure, [kN/m^2]
LA = sv;// swept volume of the cylinder, [m^3]
ip = PM*LA*N/2;// indicated power,[kW]
T = ebl*g*ebr;// torque, [N*m]
bp = 2*%pi*N*T;// brake power, [W]
n_mech = bp/ip*10^-3;// mechanical efficiency
mprintf('\n The Indicated power is = %f kW\n',ip);
mprintf('\n The Brake power is = %f kW\n',bp*10^-3);
mprintf('\n The mechanical efficiency is = %f percent\n',n_mech);
ef = CV*fc;// energy from fuel, [kJ/s]
eb = bp*10^-3;// energy to brake power,[kJ/s]
ec = cwc*c*(To-Ti);// energy to coolant,[kJ/s]
es = ef-(eb+ec+eeg);// energy to surrounding,[kJ/s]
disp('Energy can be tabulated as :-');
disp('----------------------------------------------------------------------------------------------------');
disp(' kJ/s Percentage ')
disp('----------------------------------------------------------------------------------------------------');
mprintf('\n Energy from fuel %f %f\n Energy to brake power %f %f\n Energy to coolant %f %f\n Energy to exhaust %f %f\n Energy to suroundings,etc. %f %f\n',ef,ef/ef*100,eb,eb/ef*100,ec,ec/ef*100,eeg,eeg/ef*100,es,es/ef*100);
// End
|
deee8a1e63845974e60b59fc355017c6ccddd2c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2015/CH8/EX8.12/8_12.sce | da60b8448e6fcaa4d72f9f2605c6d4838b1f0dc2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sce | 8_12.sce | clc
//initialisation of variables
h1=178.73 //under -20 degrees in kj/kg
h5=185.66 //under 5 degrees in kj/kg
h3=79.71 //under 10.84 degrees in kj/kg
h6=79.71 //under 10.84 degrees in kj/kg
h4=79.71 //under 10.84 degrees in kj/kg
h2=219.33 //kj/kg
//CALCULATIONS
m1=(7*211)/(h1-h4)
mh=(5*211)/(h5-h4)
h8=((m1*h1)+(mh*h5))/(m1+mh)
poc=(m1+mh)*(h2-h8)
cop=(12*211)/poc
//RESULTS
printf('power of compressor is %2fkj/min',poc)
printf('\nrefrigerant flow rate is %2fkg/min',mh)
printf('\ncoefficient of performance is %2f',cop)
|
ef01faadc5c2a5ce8de698fd06effef865e88bea | 449d555969bfd7befe906877abab098c6e63a0e8 | /2195/CH2/EX2.3.6/ex_2_3_6.sce | 56c79611165328855c962aa713866dcc7cbc21ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 178 | sce | ex_2_3_6.sce | //Example 2.3.6: resolution
clc;
clear;
close;
//given data :
V=9.999;// full scale read out in volt
c=9999;// range from 0 to 9999
R=(1/c)*V*10^3;
disp(R,"resolution,R(mV) = ")
|
0b3a755c91a9d232e24f7b653c89f77fa3a67045 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH3/EX3.18/ex3_18.sce | c2d6c72d0224b294ee7f197cb51490de098182f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sce | ex3_18.sce | // Exa 3.18
clc;
clear;
close;
// Given data
C_P = 1.005;// in kJ/kg-K
C_V = 0.718;// in kJ/kg-K
R = C_P - C_V;// in kJ/kg-K
R= R*10^3;//in J/kg-K
P1 = 3*10^5;//in N/m^2
V1 = 1.5;// m^3
T1 = 15;// in degree C
T1 = T1 +273;// in K
m1 = (P1*V1)/(R* T1);// in kg
m2 = m1+2;//final mass of air in kg
P2 = P1 * (m2/m1);// in kN/m^2
T1 = T1 - 273;// in degree C
T2 = 0;// in degree C
m = 1;// in kg
del_U = m * C_P * (T1-T2);// kJ
disp(del_U,"Total enthapy of air in kJ is");
|
ecaac3ea28af48442dcbfc61c0f9fde31c0475eb | fcd4bce0080771389b4a69338ed6443153942183 | /cores/n64/mupen64plus-rsp-paraLLEl/lightning/check/all.tst | ac4fc9755514c7033cca408709cd2577ff1d6f45 | [
"GPL-2.0-only",
"MIT",
"LGPL-2.1-only",
"MPL-1.1",
"LicenseRef-scancode-mame",
"GPL-1.0-or-later",
"Zlib",
"LGPL-2.1-or-later",
"MPL-2.0",
"CC-PDDC",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-proprietary-license",
"LicenseRef-scancode-brian-gladman-3-clause",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"LGPL-3.0-only",
"GPL-3.0-only",
"GFDL-1.1-or-later",
"LicenseRef-scancode-other-copyleft",
"GFDL-1.1-only"
] | permissive | wulfebw/retro | d4fcf9229b257b3c495f54b1aeb3ea36004ae4aa | dad4b509e99e729e39a2f27e9ee4120e3b607f58 | refs/heads/master | 2022-10-23T07:17:55.320585 | 2020-06-12T01:38:06 | 2020-06-12T01:38:06 | 260,832,205 | 8 | 1 | MIT | 2020-06-12T01:38:08 | 2020-05-03T05:06:17 | C | UTF-8 | Scilab | false | false | 7,517 | tst | all.tst | .disasm // only disassemble
.code
prolog
allocai 32 $buf
arg $c
arg $uc
arg $s
arg $us
arg $i
#if __WORDSIZE == 64
arg $ui
arg $l
#endif
getarg_c %r0 $c
getarg_uc %r0 $uc
getarg_s %r0 $s
getarg_us %r0 $us
getarg_i %r0 $i
#if __WORDSIZE == 64
getarg_ui %r0 $ui
getarg_l %r0 $l
#endif
addr %r0 %r1 %r2
addi %r0 %r1 2
addcr %r0 %r1 %r2
addci %r0 %r1 2
addxr %r0 %r1 %r2
addxi %r0 %r1 2
subr %r0 %r1 %r2
subi %r0 %r1 2
subcr %r0 %r1 %r2
subci %r0 %r1 2
subxr %r0 %r1 %r2
subxi %r0 %r1 2
mulr %r0 %r1 %r2
muli %r0 %r1 2
qmulr %r0 %r1 %r2 %v0
qmuli %r0 %r1 %r2 3
qmulr_u %r0 %r1 %r2 %v0
qmuli_u %r0 %r1 %r2 3
divr %r0 %r1 %r2
divi %r0 %r1 2
divr_u %r0 %r1 %r2
divi_u %r0 %r1 2
qdivr %r0 %r1 %r2 %v0
qdivi %r0 %r1 %r2 3
qdivr_u %r0 %r1 %r2 %v0
qdivi_u %r0 %r1 %r2 3
remr %r0 %r1 %r2
remi %r0 %r1 2
remr_u %r0 %r1 %r2
remi_u %r0 %r1 2
andr %r0 %r1 %r2
andi %r0 %r1 2
orr %r0 %r1 %r2
ori %r0 %r1 2
xorr %r0 %r1 %r2
xori %r0 %r1 2
lshr %r0 %r1 %r2
lshi %r0 %r1 2
rshr %r0 %r1 %r2
rshi %r0 %r1 2
rshr_u %r0 %r1 %r2
rshi_u %r0 %r1 2
negr %r0 %r1
comr %r0 %r1
ltr %r0 %r1 %r2
lti %r0 %r1 2
ltr_u %r0 %r1 %r2
lti_u %r0 %r1 2
ler %r0 %r1 %r2
lei %r0 %r1 2
ler_u %r0 %r1 %r2
lei_u %r0 %r1 2
eqr %r0 %r1 %r2
eqi %r0 %r1 2
ger %r0 %r1 %r2
gei %r0 %r1 2
ger_u %r0 %r1 %r2
gei_u %r0 %r1 2
gtr %r0 %r1 %r2
gti %r0 %r1 2
gtr_u %r0 %r1 %r2
gti_u %r0 %r1 2
ner %r0 %r1 %r2
nei %r0 %r1 2
movr %r0 %r1
movi %r0 1
extr_c %r0 %r1
extr_uc %r0 %r1
extr_s %r0 %r1
extr_us %r0 %r1
#if __WORDSIZE == 64
extr_i %r0 %r1
extr_ui %r0 %r1
#endif
htonr %r0 %r1
ntohr %r0 %r1
ldr_c %r0 %r1
ldi_c %r0 0x80000000
ldr_uc %r0 %r1
ldi_uc %r0 0x80000000
ldr_s %r0 %r1
ldi_s %r0 0x80000000
ldr_us %r0 %r1
ldi_us %r0 0x80000000
ldr_i %r0 %r1
ldi_i %r0 0x80000000
#if __WORDSIZE == 64
ldr_ui %r0 %r1
ldi_ui %r0 0x80000000
ldr_l %r0 %r1
ldi_l %r0 0x80000000
#endif
ldxr_c %r0 %r1 %r2
ldxi_c %r0 %r1 1
ldxr_uc %r0 %r1 %r2
ldxi_uc %r0 %r1 1
ldxr_s %r0 %r1 %r2
ldxi_s %r0 %r1 2
ldxr_us %r0 %r1 %r2
ldxi_us %r0 %r1 2
ldxr_i %r0 %r1 %r2
ldxi_i %r0 %r1 4
#if __WORDSIZE == 64
ldxr_ui %r0 %r1 %r2
ldxi_ui %r0 %r1 4
ldxr_l %r0 %r1 %r2
ldxi_l %r0 %r1 8
#endif
str_c %r1 %r0
sti_c 0x80000000 %r1
str_s %r1 %r0
sti_s 0x80000000 %r1
str_i %r1 %r0
sti_i 0x80000000 %r1
#if __WORDSIZE == 64
str_l %r1 %r0
sti_l 0x80000000 %r1
#endif
stxr_c %r2 %r1 %r0
stxi_c 1 %r1 %r0
stxr_s %r2 %r1 %r0
stxi_s 2 %r1 %r0
stxr_i %r2 %r1 %r0
stxi_i 4 %r1 %r0
#if __WORDSIZE == 64
stxr_l %r2 %r1 %r0
stxi_l 8 %r1 %r0
#endif
cond:
bltr cond %r0 %r1
condi:
blti condi %r0 1
condu:
bltr_u condu %r0 %r1
condiu:
blti_u condiu %r0 1
bler cond %r0 %r1
blei condi %r0 1
bler_u condu %r0 %r1
blei_u condiu %r0 1
bool:
beqr bool %r0 %r1
booli:
beqi booli %r0 1
bger cond %r0 %r1
bgei condi %r0 1
bger_u condu %r0 %r1
bgei_u condiu %r0 1
bgtr cond %r0 %r1
bgti condi %r0 1
bgtr_u condu %r0 %r1
bgti_u condiu %r0 1
bner bool %r0 %r1
bnei booli %r0 1
mask:
bmsr mask %r0 %r1
maski:
bmsi maski %r0 1
bmcr mask %r0 %r1
bmci maski %r0 1
as:
boaddr as %r0 %r1
asi:
boaddi asi %r0 1
asu:
boaddr_u as %r0 %r1
boaddi_u asi %r0 1
bxaddr as %r0 %r1
bxaddi asi %r0 1
bxaddr_u as %r0 %r1
bxaddi_u asi %r0 1
bosubr as %r0 %r1
bosubi asi %r0 1
bosubr_u as %r0 %r1
bosubi_u asi %r0 1
bxsubr as %r0 %r1
bxsubi asi %r0 1
bxsubr_u as %r0 %r1
bxsubi_u asi %r0 1
label:
jmpr %r0
jmpi label
callr %r0
calli label
prepare
pushargr %r0
finishr %r0
prepare
pushargi 1
ellipsis
finishi 0x80000000
ret
retr %r1
reti 2
retval_c %r1
retval_uc %r1
retval_s %r1
retval_us %r1
retval_i %r1
#if __WORDSIZE == 64
retval_ui %r1
retval_l %r1
#endif
arg_f $f
getarg_f %f1 $f
addr_f %f0 %f1 %f2
addi_f %f0 %f1 0.5
subr_f %f0 %f1 %f2
subi_f %f0 %f1 0.5
mulr_f %f0 %f1 %f2
muli_f %f0 %f1 0.5
divr_f %f0 %f1 %f2
divi_f %f0 %f1 0.5
negr_f %f0 %f1
absr_f %f0 %f1
sqrtr_f %f0 %f1
ltr_f %r0 %f0 %f1
lti_f %r0 %f0 0.5
ler_f %r0 %f0 %f1
lei_f %r0 %f0 0.5
eqr_f %r0 %f0 %f1
eqi_f %r0 %f0 0.5
ger_f %r0 %f0 %f1
gei_f %r0 %f0 0.5
gtr_f %r0 %f0 %f1
gti_f %r0 %f0 0.5
ner_f %r0 %f0 %f1
nei_f %r0 %f0 0.5
unltr_f %r0 %f0 %f1
unlti_f %r0 %f0 0.5
unler_f %r0 %f0 %f1
unlei_f %r0 %f0 0.5
uneqr_f %r0 %f0 %f1
uneqi_f %r0 %f0 0.5
unger_f %r0 %f0 %f1
ungei_f %r0 %f0 0.5
ungtr_f %r0 %f0 %f1
ungti_f %r0 %f0 0.5
ltgtr_f %r0 %f0 %f1
ltgti_f %r0 %f0 0.5
ordr_f %r0 %f0 %f1
ordi_f %r0 %f0 0.5
unordr_f %r0 %f0 %f1
unordi_f %r0 %f0 0.5
truncr_f_i %r0 %f0
#if __WORDSIZE == 64
truncr_f_l %r0 %f0
#endif
extr_f %f0 %r0
extr_d_f %f0 %f1
movr_f %f0 %f1
movi_f %f0 1.5
ldr_f %f0 %r0
ldi_f %f0 0x80000000
ldxr_f %f0 %r0 %r1
ldxi_f %f0 %r0 4
str_f %r0 %f0
sti_f 0x80000000 %f0
stxr_f %r1 %r0 %f0
stxi_f 4 %r0 %f0
/* FIXME the bordr_d at the end will cause an assertion on riscv due to
* too distant jump (does not fit in a 12 bit signed int) */
ord:
bltr_f ord %f0 %f1
ordi:
blti_f ordi %f0 0.5
bler_f ord %f0 %f1
blei_f ordi %f0 0.5
beqr_f ord %f0 %f1
beqi_f ordi %f0 0.5
bger_f ord %f0 %f1
bgei_f ordi %f0 0.5
bgtr_f ord %f0 %f1
bgti_f ordi %f0 0.5
bner_f ord %f0 %f1
bnei_f ordi %f0 0.5
unord:
bunltr_f unord %f0 %f1
unordi:
bunlti_f unordi %f0 0.5
bunler_f unord %f0 %f1
bunlei_f unordi %f0 0.5
buneqr_f unord %f0 %f1
buneqi_f unordi %f0 0.5
bunger_f unord %f0 %f1
bungei_f unordi %f0 0.5
bungtr_f unord %f0 %f1
bungti_f unordi %f0 0.5
bltgtr_f unord %f0 %f1
bltgti_f unordi %f0 0.5
bordr_f unord %f0 %f1
bordi_f unordi %f0 0.5
bunordr_f unord %f0 %f1
bunordi_f unordi %f0 0.5
prepare
pushargr_f %f1
pushargi_f 0.5
finishi 0x80000000
retr_f %f1
reti_f 0.5
retval_f %f1
arg_d $f
getarg_d %f1 $f
addr_d %f0 %f1 %f2
addi_d %f0 %f1 0.5
subr_d %f0 %f1 %f2
subi_d %f0 %f1 0.5
mulr_d %f0 %f1 %f2
muli_d %f0 %f1 0.5
divr_d %f0 %f1 %f2
divi_d %f0 %f1 0.5
negr_d %f0 %f1
absr_d %f0 %f1
sqrtr_d %f0 %f1
ltr_d %r0 %f0 %f1
lti_d %r0 %f0 0.5
ler_d %r0 %f0 %f1
lei_d %r0 %f0 0.5
eqr_d %r0 %f0 %f1
eqi_d %r0 %f0 0.5
ger_d %r0 %f0 %f1
gei_d %r0 %f0 0.5
gtr_d %r0 %f0 %f1
gti_d %r0 %f0 0.5
ner_d %r0 %f0 %f1
nei_d %r0 %f0 0.5
unltr_d %r0 %f0 %f1
unlti_d %r0 %f0 0.5
unler_d %r0 %f0 %f1
unlei_d %r0 %f0 0.5
uneqr_d %r0 %f0 %f1
uneqi_d %r0 %f0 0.5
unger_d %r0 %f0 %f1
ungei_d %r0 %f0 0.5
ungtr_d %r0 %f0 %f1
ungti_d %r0 %f0 0.5
ltgtr_d %r0 %f0 %f1
ltgti_d %r0 %f0 0.5
ordr_d %r0 %f0 %f1
ordi_d %r0 %f0 0.5
unordr_d %r0 %f0 %f1
unordi_d %r0 %f0 0.5
truncr_d_i %r0 %f0
#if __WORDSIZE == 64
truncr_d_l %r0 %f0
#endif
extr_d %f0 %r0
extr_f_d %f0 %f1
movr_d %f0 %f1
movi_d %f0 1.5
ldr_d %f0 %r0
ldi_d %f0 0x80000000
ldxr_d %f0 %r0 %r1
ldxi_d %f0 %r0 8
str_d %r0 %f0
sti_d 0x80000000 %f0
stxr_d %r1 %r0 %f0
stxi_d 8 %r0 %f0
bltr_d ord %f0 %f1
blti_d ordi %f0 0.5
bler_d ord %f0 %f1
blei_d ordi %f0 0.5
beqr_d ord %f0 %f1
beqi_d ordi %f0 0.5
bger_d ord %f0 %f1
bgei_d ordi %f0 0.5
bgtr_d ord %f0 %f1
bgti_d ordi %f0 0.5
bner_d ord %f0 %f1
bnei_d ordi %f0 0.5
bunltr_d unord %f0 %f1
bunlti_d unordi %f0 0.5
bunler_d unord %f0 %f1
bunlei_d unordi %f0 0.5
buneqr_d unord %f0 %f1
buneqi_d unordi %f0 0.5
bunger_d unord %f0 %f1
bungei_d unordi %f0 0.5
bungtr_d unord %f0 %f1
bungti_d unordi %f0 0.5
bltgtr_d unord %f0 %f1
bltgti_d unordi %f0 0.5
bordr_d unord %f0 %f1
bordi_d unordi %f0 0.5
bunordr_d unord %f0 %f1
bunordi_d unordi %f0 0.5
prepare
pushargr_d %f1
pushargi_d 0.5
finishi 0x80000000
retr_d %f1
reti_d 0.5
retval_d %f1
|
d284c809d203334e67ca78c45db2e326f823b8c1 | 91bba043768342a4e23ee3a4ff1aa52fe67f7826 | /cs/142/1/tests/test22.tst | 8beca00200d700bef72aad4479bc1ffb4383e27c | [] | no_license | MaxNanasy/old-homework | 6beecc3881c953c93b847f1d0d93a64ec991d6de | 48b7997a49a8f111344f30787c178e1661db04bd | refs/heads/master | 2016-09-08T04:37:44.932977 | 2010-03-02T00:48:59 | 2010-03-02T00:48:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 83 | tst | test22.tst | main() { x = x + (y - 15) * y + ((((z + v[((x * v)-12)+z]) * 764) * q + 12) / w);} |
f730abd5515235eb6cb34f912f4d4f9c75ffd5ea | 3a5171d74daf18bde7e1bcb671ddc3f5ee81c4e9 | /RDBMS/ORACLE/PLSQL/copy_table.tst | 29a73917420a9c1b22e47e54c4bfd095b0b64f70 | [] | no_license | GradedJestRisk/db-training | 03a142d49cfadebe114da2b90cc7480bca25c74f | 2a2398f98665a990a1ab37e58be105f92a1d721c | refs/heads/master | 2023-01-19T11:07:47.065313 | 2022-02-28T08:39:36 | 2022-02-28T08:39:36 | 161,371,886 | 2 | 1 | null | 2023-01-11T03:15:40 | 2018-12-11T17:47:49 | PLpgSQL | UTF-8 | Scilab | false | false | 307 | tst | copy_table.tst | PL/SQL Developer Test script 3.0
6
begin
-- Call the procedure
pkg_ddl_tools.copy_table(from_table => :from_table,
from_schema => :from_schema,
to_table => :to_table);
end;
3
from_table
1
tbl_test
5
from_schema
1
fap
5
to_table
1
tbl_test_cible
5
0
|
1d8db69ad2cb7a2436481566e098e39b94e57548 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2891/CH6/EX6.3/Ex6_3.sce | 7ab286f5364c3681bce82fe3130ea9d166e2eb68 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,462 | sce | Ex6_3.sce | //Exa 6.3
clc;
clear;
close;
//given :
f=30 //frequency in MHz
f=30*10^6 //frequency in Hz
c=3*10^8 //speed of light in m/s
lambda=c/f //wavelength in meter
disp("for Delta=10 degrees")
Delta1=10 // angle of elevation in Degrees
H1=lambda/(4*sind(Delta1)) // Rhombic height in m
phi1=90-Delta1 // tilt angle in Degrees
l1=lambda/(2*(cosd(phi1)^2)) // wire length in m
disp(H1," Rhombic height in m:")
disp(phi1,"Tilt angle in Degrees:")
disp(l1,"length of wire in meter:")
disp("for Delta=15 degrees")
Delta2=15 // angle of elevation in Degrees
H2=lambda/(4*sind(Delta2)) // Rhombic height in m
phi2=90-Delta2 // tilt angle in Degrees
l2=lambda/(2*(cosd(phi2)^2)) // wire length in m
disp(H2," Rhombic height in m:")
disp(phi2,"Tilt angle in Degrees:")
disp(l2,"length of wire in meter:")
disp("for Delta=20 degrees")
Delta3=20 // angle of elevation in Degrees
H3=lambda/(4*sind(Delta3)) // Rhombic height in m
phi3=90-Delta3 // tilt angle in Degrees
l3=lambda/(2*(cosd(phi3)^2)) // wire length in m
disp(H3," Rhombic height in m:")
disp(phi3,"Tilt angle in Degrees:")
disp(l3,"length of wire in meter:")
disp("for Delta=25 degrees")
Delta4=25 // angle of elevation in Degrees
H4=lambda/(4*sind(Delta4)) // Rhombic height in m
phi4=90-Delta4 // tilt angle in Degrees
l4=lambda/(2*(cosd(phi4)^2)) // wire length in m
disp(H4," Rhombic height in m:")
disp(phi4,"Tilt angle in Degrees:")
disp(l4,"length of wire in meter:")
disp("for Delta=30 degrees")
Delta5=30 // angle of elevation in Degrees
H5=lambda/(4*sind(Delta5)) // Rhombic height in m
phi5=90-Delta5 // tilt angle in Degrees
l5=lambda/(2*(cosd(phi5)^2)) // wire length in m
disp(H5," Rhombic height in m:")
disp(phi5,"Tilt angle in Degrees:")
disp(l5,"length of wire in meter:")
disp("for Delta=35 degrees")
Delta6=35 // angle of elevation in Degrees
H6=lambda/(4*sind(Delta6)) // Rhombic height in m
phi6=90-Delta6 // tilt angle in Degrees
l6=lambda/(2*(cosd(phi6)^2)) // wire length in m
disp(H6," Rhombic height in m:")
disp(phi6,"Tilt angle in Degrees:")
disp(l6,"length of wire in meter:")
disp("for Delta=40 degrees")
Delta7=40 // angle of elevation in Degrees
H7=lambda/(4*sind(Delta7)) // Rhombic height in m
phi7=90-Delta7 // tilt angle in Degrees
l7=lambda/(2*(cosd(phi7)^2)) // wire length in m
disp(H7," Rhombic height in m:")
disp(phi7,"Tilt angle in Degrees:")
disp(l7,"length of wire in meter:")
|
595fed64bb87ffcefa614d025f890bfc44b19624 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testiscell.sce | 1004c77acd629eba94d46db9a130ea6c49aa25a6 | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 128 | sce | testiscell.sce | L=cell(2,2) // tableau-liste de taille 2x2
L(1,1).entries="Scilab"
iscell(L)
iscell(L(1,1))
iscell(L(1,1).entries)
|
2c3f8bef27ed83549ed66de85314995da3a95af9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2975/CH29/EX29.7w/Ex29_7w.sce | 3b67e222461eb3af251f4fc2c44de1b17f0f4cc8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 454 | sce | Ex29_7w.sce | //developed in windows 8 operating system 64bit
//platform Scilab 5.4.1
//example 29_7w
clc;clear;
//Given Data
elec_field=4*10^5; //Value of Electric field (Unit:N/C)
mass=1*10^-4; //Mass of the water droplet (Unit:kg)
gravity=9.8; //Value of gravity (Unit:m/s^2)
//Calculation
charge=mass*gravity/elec_field; //Calculation of the charge (Unit:C)
disp(charge,"The charge on the droplet is (Unit: C)");
|
e1b67ba9ff11aa24babd11679e609ab92e537752 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1241/CH6/EX6.2/exa6_2.sce | c472e95b466320d5db644ad9a101d627d8fdc2a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 375 | sce | exa6_2.sce | //Example 6-2//
//find minterms for A+BC//
clc
//clears the console//
clear
//clears all existing variables//
//conversion to minterms//
disp('Given expression- A+BC ')
disp(' on solving ')
disp(' A(B+B'')(C+C'')+BC(A+A'') ')
disp(' (AB+AB'')(C+C'')+BCA+BCA'' ')
disp('multiplying')
disp(' C''AB+AB''C+AB''C+AB''C''+BCA+BCA'' ')
//final result is displayed//
|
dd1aeff7f90c88ae87b435b0f7c10812cbbb125f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1430/CH11/EX11.9/exa11_9.sce | 50e513a1006981c239a631145410eb5599e77b6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 201 | sce | exa11_9.sce | // Example 11.9
// Frequency Response of a Bandpass Amplifier
s=poly(0,'s');
num=20000*s;
den=(s+100)*(s+400);
H_s=num/den; // Bandpass amplifier transfer function
h1=syslin('c',H_s);
bode(h1)
|
2d413f31febf60fe635cb71057dc185d0a274396 | 8ea401b354e99fe129b2961e8ee6f780dedb12bd | /macros/corrwith().sci | f629f9e6bcc1b4af852c0f64de7df6914bf50ec6 | [
"BSD-2-Clause"
] | permissive | adityadhinavahi/SciPandas | 91340ca30e7b4a0d76102a6622c97733a28923eb | b78b7571652acf527f877d9f1ce18115f327fa18 | refs/heads/master | 2022-12-20T04:04:35.984747 | 2020-08-19T16:10:51 | 2020-08-19T16:10:51 | 288,765,541 | 0 | 1 | null | 2020-08-19T15:35:04 | 2020-08-19T15:14:46 | Python | UTF-8 | Scilab | false | false | 525 | sci | corrwith().sci | function corrwith()
//Compute pairwise correlation.
// Syntax
//df.isna()
//
// Parameters
// other: DataFrame, Series
//method:{‘pearson’, ‘kendall’, ‘spearman’} or callable
//dropbool: default False
// For additional information on parameters, See https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.corrwith.html
// Returns : series
//
// Examples
//
//
// Authors
// Aditya Dhinavahi
// Sundeep Akella
endfunction
|
fd959c96ad7d2b7871d1a6d29d148c4e8152951e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1484/CH7/EX7.4/7_4.sce | 63b5055652c307c5b46592b3cd2283a46d0d94b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 324 | sce | 7_4.sce |
clc
//initialisation of variables
clear
Q= 400 //cuses
V= 2 //ft/sec
d= 3 //ft
n= 1
g= 32.2 //ft/sec^2
//CALCULATIONS
A= Q/V
w= A/d
W= w-d
P= W+2*d*sqrt(n^2+1)
m= A/P
f= 0.006*(1+(4/m))
C= sqrt(2*g/f)
i= (V/C)^2/m
//RESULTS
printf (' slope = %.5f ',i)
//ANSWER IN TEXTBOOK IS NOT GIVEN IN DECIMALS
|
4af2f2b4769e45f5dbf82387886073151934ed19 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3637/CH1/EX1.5/Ex1_5.sce | b23eebe22f7c3898236fe14fac992ccd7beb14d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 243 | sce | Ex1_5.sce | //Example 5 Page No: 1.84
//given
clear
sr=0.5e6;//volt/sec
freq1=40e3;//hz
a=10;format(6);
//determine max peak to peak input signal
vm=sr/(2*3.14*freq1);
vm=2*vm;
v1=vm/a;
disp('Max peak to peak input signal = '+string(v1)+' V');
|
ba74047cc8941064c1acf7435702a42b56ee8281 | 449d555969bfd7befe906877abab098c6e63a0e8 | /839/CH26/EX26.5/Example_26_5.sce | 4656b61de4d867bc495368704e74672043613dbf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 845 | sce | Example_26_5.sce | //clear//
clear;
clc;
//Example 26.5
//Given (from Example 26.4)
F = 10; //[gal/day-ft^2], based on external area
Do = 300*10^-6; //[m]
Di = 200*10^-6; //[m]
vi = 0.5; //[cm/s]
rho = 1; //[g/cm^3]
mu = 10^-3; //[Pa-s], assumed
f = 0.97;
L = 3; //[m]
//Solution
//(a)
//Jw based on area
Jw = 4.72*10^-4*Do/Di*10^-2; //[m/s]
dt = 200*10^-6; //[m]
D = dt; //[m]
//From Eq.(26.53)
Vbar = 4*(Jw)*L/Di; //[m/s]
//From Eq.(26.56)
delta_ps = (Vbar*32*mu*L)/(D)^2*(1/2)/10^5; //[atm]
disp('atm',delta_ps,'pressure drop = ','m/s',Vbar,'exit velocity = ');
//(b)
//If the fibres are open at both ends, the effective length is 1.5m and
//the exit velocity is half as great. The pressure drop is one-fourth as
//large as it was:
deltaP = delta_ps/4; //[atm]
disp('atm',deltaP,'pressure drop (if both ends are open) = ')
|
0a71fac73ecc19349aa33bc01ea22ef6f7107f21 | 63d888492eb5760997d28f7e464620ab560589cc | /DataStoreTest/Src/C#/Level_1A/Level_1A/DataStore.tst | b8500ff82f800c73b5bcf4d10752fcb7255aa7e8 | [] | no_license | Samraksh/TestSuite | ef4ea58b7bf844d6263d52ad2a4fe2d91852bf48 | 5a2ad0157ff878e9460fc85d222191ce7dcd595f | refs/heads/master | 2022-10-28T22:51:33.354774 | 2020-03-10T18:29:06 | 2020-03-10T18:29:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 147 | tst | DataStore.tst | COM_receive file enable testTemp\test_results.txt
sleep 1000
COM_send string start
sleep 50000
COM_receive file disable testTemp\test_results.txt
|
331d831d376fe3ce7ed8e7d185df20b68ad71689 | 449d555969bfd7befe906877abab098c6e63a0e8 | /83/CH6/EX6.8/example_6_8.sce | 23a8c850eb04fa1a01058790e5f771eb06c0c19c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,232 | sce | example_6_8.sce | //Chapter 6
//Example 6.8
//page 226
//To find load flow solution using the decoupled NR method and FDLF method
clear;clc;
/////////////////////////////////////////////////////////////////////////
//Pd Qd Pg Qg V Bus Type/////
/////////////////////////////////////////////////////////////////////////
Pd1=2.0; Qd1=1.0; Pg1=0; Qg1=0; V1=1.04; //1 slack bus
Pd2=0; Qd2=0; Pg2=0.5; Qg2=1; V2=1; //2 PQ bus
Pd3=1.5; Qd3=0.6; Pg3=0.0; Qg3=0; V3=1.04; //3 PV bus
/////////////////////////////////////////////////////////////////////////
[V1_mag,V1_ang]=polar(V1);
[V2_mag,V2_ang]=polar(V2);
[V3_mag,V3_ang]=polar(V3);
y_series=1/(0.02+%i*0.08);
y_self=2*y_series;
y_off=-1*y_series;
Ybus=[y_self y_off y_off;y_off y_self y_off;y_off y_off y_self];
[y_bus_mag_21,y_bus_ang_21]=polar(Ybus(2,1));
[y_bus_mag_22,y_bus_ang_22]=polar(Ybus(2,2));
[y_bus_mag_23,y_bus_ang_23]=polar(Ybus(2,3));
[y_bus_mag_31,y_bus_ang_31]=polar(Ybus(3,1));
[y_bus_mag_32,y_bus_ang_32]=polar(Ybus(3,2));
[y_bus_mag_33,y_bus_ang_33]=polar(Ybus(3,3));
[y_bus_mag_11,y_bus_ang_11]=polar(Ybus(1,1));
//case(a) Decoupled NR method :
printf('\ncase(a) Decoupled NR method :\n') ;
H22=0.96+23.508;
H23=-1.04*11.764;
H33=25.89;
L22=1+23.508;
H=[H22 H23;H23 H33];
delta_P=[0.73;-1.62];
delta_V_ang=inv(H)*delta_P;
delta_V2_ang=delta_V_ang(1,1);
delta_V3_ang=delta_V_ang(2,1);
printf('\ndelta_Angle_V2=');disp(real(delta_V2_ang));
printf('\ndelta_Angle_V3=');disp(real(delta_V3_ang));
V2_ang=V2_ang-delta_V2_ang;
V3_ang=V3_ang-delta_V3_ang;
Q2=-V2_mag*V1_mag*y_bus_mag_21*sin(y_bus_ang_21+V1_ang-V2_ang)-(V2_mag^2)*y_bus_mag_22*sin(y_bus_ang_22)-V2_mag*V3_mag*y_bus_mag_23*sin(y_bus_ang_23-V3_ang+V2_ang);
printf('\nQ2=');disp(real(Q2));
delta_Q2=(Qg2-Qd2)-(Q2);
printf('\ndelta_Q2=');disp(real(delta_Q2));
L=[L22];
delta_v=inv(L)*delta_Q2;
delta_V2=delta_v*V2_mag;
printf('\ndelta_V2=%0.3f',delta_V2);
V2_mag=V2_mag+delta_V2;
printf('\n\nV2=%0.3f pu',V2_mag);
Q3=-V3_mag*V1_mag*y_bus_mag_31*sin(y_bus_ang_31+V1_ang-V3_ang)-(V3_mag^2)*y_bus_mag_33*sin(y_bus_ang_33)-V2_mag*V3_mag*y_bus_mag_32*sin(y_bus_ang_32+V2_ang-V3_ang);
printf('\n\nQ3=');disp(real(Q3));
//case(b) FDLF method:
printf('\n\n\ncase(b) FDLF method :\n') ;
/////////////////////////////////////////////////////////////////////////
//Pd Qd Pg Qg V Bus Type/////
/////////////////////////////////////////////////////////////////////////
Pd1=2.0; Qd1=1.0; Pg1=0; Qg1=0; V1=1.04; //1 slack bus
Pd2=0; Qd2=0; Pg2=0.5; Qg2=1; V2=1; //2 PQ bus
Pd3=1.5; Qd3=0.6; Pg3=0.0; Qg3=0; V3=1.04; //3 PV bus
/////////////////////////////////////////////////////////////////////////
[V1_mag,V1_ang]=polar(V1);
[V2_mag,V2_ang]=polar(V2);
[V3_mag,V3_ang]=polar(V3);
y_series=1/(0.02+%i*0.08);
y_self=2*y_series;
y_off=-1*y_series;
Ybus=[y_self y_off y_off;y_off y_self y_off;y_off y_off y_self];
[y_bus_mag_21,y_bus_ang_21]=polar(Ybus(2,1));
[y_bus_mag_22,y_bus_ang_22]=polar(Ybus(2,2));
[y_bus_mag_23,y_bus_ang_23]=polar(Ybus(2,3));
[y_bus_mag_31,y_bus_ang_31]=polar(Ybus(3,1));
[y_bus_mag_32,y_bus_ang_32]=polar(Ybus(3,2));
[y_bus_mag_33,y_bus_ang_33]=polar(Ybus(3,3));
[y_bus_mag_11,y_bus_ang_11]=polar(Ybus(1,1));
B22=-23.508;
B23=11.764;
B32=B23;
B33=B22;
B=[-B22 -B23;-B32 -B33];
delta_P=[0.73;-1.557];
delta_V_ang=inv(B)*delta_P;
delta_V2_ang=delta_V_ang(1,1);
delta_V3_ang=delta_V_ang(2,1);
printf('\ndelta_Angle_V2=');disp(real(delta_V2_ang));
printf('\ndelta_Angle_V3=');disp(real(delta_V3_ang));
V2_ang=V2_ang-delta_V2_ang;
V3_ang=V3_ang-delta_V3_ang;
Q2=-V2_mag*V1_mag*y_bus_mag_21*sin(y_bus_ang_21+V1_ang-V2_ang)-(V2_mag^2)*y_bus_mag_22*sin(y_bus_ang_22)-V2_mag*V3_mag*y_bus_mag_23*sin(y_bus_ang_23-V3_ang+V2_ang);
delta_Q2=(Qg2-Qd2)-(Q2);
delta_v=inv([-B22])*delta_Q2;
delta_V2=delta_v*V2_mag;
printf('\ndelta_V2=%0.3f',delta_V2);
V2_mag=V2_mag+delta_V2;
printf('\n\nV2=%0.3f pu',V2_mag);
Q3=-V3_mag*V1_mag*y_bus_mag_31*sin(y_bus_ang_31+V1_ang-V3_ang)-(V3_mag^2)*y_bus_mag_33*sin(y_bus_ang_33)-V2_mag*V3_mag*y_bus_mag_32*sin(y_bus_ang_32+V2_ang-V3_ang);
printf('\n\nQ3=');disp(real(Q3));
|
ac06ece4f4b8e5d6191a2e4128bf8636445b8a4b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1358/CH2/EX2.9/Example29.sce | 0e95022ee867e70b22ae89343dd59361b363c1e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 661 | sce | Example29.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 2, Example 9")
disp("The Given Data")
disp("The Following Data D2 is diameter in m, U2 and Cr2 in m/s, alpha1 and beta2 in degrees, Q is i9n m3/s")
D2 = 1
U2 = 11
alpha1 = 90
Cr2 = 2.5
beta2 = 32
Q = 5.5
rho = 1000;
disp("Outlet Velocity Cw2 in m/s is :")
Cw2 = U2 - (Cr2/tan(32*%pi/180))
disp("Power in pump in kilowatts is :")
P = rho*Q*Cw2*U2/(1000*60)
//H.P. = 2*pi*N*T/60
disp("Rpm and Torque T in Nm/s are :")
N = 60*U2/(%pi * D2)
T= P*1000*60/(2*%pi*N)
|
b8cab69e4db318eaa3560707d33f67b3af46248c | 06a62d768e69fd9dda11b30011c252807e301813 | /function1.sci | 8457e8e36de8725ca0fb814c43c010210de0393c | [] | no_license | vikram-niit/matlab | 36ce3d9539629128251eab060164ce81c03aa690 | da8aeb4d727c47474d37676650664bd028d7e41d | refs/heads/master | 2020-03-18T13:40:37.068765 | 2018-05-25T03:51:55 | 2018-05-25T03:51:55 | 134,800,217 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 66 | sci | function1.sci | function[result] = function1(i)
result = i*i;
endfunction
|
9d42a44092b2dae965fb321a6e5d26ae6d0dc9e5 | 381be712cd10ab88d51ef144b1781befee729ab9 | /Project1/Not.tst | 8376602f3a0ff9c4fa4cf7b89cc20efe273e8767 | [] | no_license | ryoua/OS | 125846d9c121124f6487ea043db43c22e6aafd79 | 1b6de0cc2fbf2e432a552b9c99b0be63a4fdb6c9 | refs/heads/master | 2020-03-26T21:40:05.884264 | 2018-11-19T12:37:00 | 2018-11-19T12:37:00 | 145,401,691 | 14 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 117 | tst | Not.tst | load Not.hdl,
output-file Not.out,
output-list in%B3.1.3 out%B3.1.3;
set in 0,
eval,
output;
set in 1,
eval,
output; |
3de7639ffe6ac45164d5851703e27b1df936e472 | 449d555969bfd7befe906877abab098c6e63a0e8 | /647/CH12/EX12.9/Example12_9.sce | 0cdd2d1e7d6d225db020517af010b669b31ecbd6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,374 | sce | Example12_9.sce | clear;
clc;
// Example: 12.9
// Page: 486
printf("Example: 12.9 - Page: 486\n\n");
// Solution
//*****Data******//
// Reaction: CO(g) + H2O(g) ----> CO2(g) + H2(g)
T1 = 298;// [K]
T2 = 1000;// [K]
deltaH_298 = -41450;// [J/mol]
deltaGf_298 = -28888;// [J/mol]
alpha_CO2 = 45.369;// [kJ/kmol K]
alpha_H2 = 27.012;// [kJ/kmol K]
alpha_CO = 28.068;// [kJ/kmol K]
alpha_H2O = 28.850;// [kJ/kmol K]
beeta_CO2 = 8.688*10^(-3);// [kJ/kmol square K]
beeta_H2 = 3.509*10^(-3);// [kJ/kmol square K]
beeta_CO = 4.631*10^(-3);// [kJ/kmol square K]
beeta_H2O = 12.055*10^(-3);// [kJ/kmol square K]
R = 8.314;// [J/mol K]
//*************//
delta_alpha = alpha_CO2 + alpha_H2 - (alpha_CO + alpha_H2O);
delta_beeta = beeta_CO2 + beeta_H2 - (beeta_CO + beeta_H2O);
// To obtain the standard heat of reaction:
deltaH_0 = deltaH_298 - (delta_alpha*T1 + (delta_beeta*T1^2)/2);// [kJ/mol]
// From Eqn. 12.52:
IR = (deltaH_0 - delta_alpha*T1*log(T1) - (delta_beeta*T1^2)/2 - deltaGf_298)/T1;// [kJ/mol K]
// Substituting T = T2 and IR in Eqn. 12.51:
deltaG_1000 = deltaH_0 - delta_alpha*T2*log(T2) - (delta_beeta*T2^2)/2 - IR*T2;// [kJ/mol]
printf("Standard Gibbs free energy at 1000 K %.3f kJ\n",deltaG_1000/1000);
// Standard Equilibrium Constant at 1000 K
K_1000 = exp(-(deltaG_1000)/(R*T2));
printf("Standard Equilibrium Constant is %.1f",K_1000); |
07a174cc7a07512c2ee89b64930425b98a5dc83e | 20392bee9b9ba080dc86418049e09f82be683a14 | /Design_Experiment_1/OR8.tst | d86a0077866e16f6d2760eecb900cc1716e2d47f | [] | no_license | Liveitabhi/CSD-LAB | 698645e3fee27fadc70979c6c64d7de13c58ffbd | e91c386c9d575fcced2f5163eea958033ca1e245 | refs/heads/master | 2023-01-23T05:31:42.301079 | 2020-12-09T08:52:58 | 2020-12-09T08:52:58 | 298,178,775 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 400 | tst | OR8.tst | load OR8.hdl,
output-file OR8.out,
compare-to OR8.cmp,
output-list x%B1.8.1 y%B1.8.1 z%B1.8.1;
set x %B00000000,
set y %B00000000,
eval,
output;
set x %B00000000,
set y %B11111111,
eval,
output;
set x %B11111111,
set y %B11111111,
eval,
output;
set x %B10101010,
set y %B01010101,
eval,
output;
set x %B00111100,
set y %B00001111,
eval,
output;
set x %B00010010,
set y %B10011000,
eval,
output; |
bf1de75992fbf7ec7f96bb7405d1ad90c2eb3b10 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH1/EX1.12/example1_12.sce | 70e1340274a7ad977beca3cfe2cb371db4d582d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 955 | sce | example1_12.sce | // Calculate drift velocity
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 1-12 in page 46
clear; clc; close;
// Data given
m_c=0.067*0.91*10^-30; // Effective electron mass in Kg
e=1.6*10^-19; // Charge on an electron in C
E_0=10^5; // External electric field in KV/m
tou1=10^-13; // First Brillouin zone time in s
tou2=10^-12; // Second Brillouin zone time in s
tou3=10^-11; // Third Brillouin zone time in s
// Calculation
v_01=(e*tou1*E_0)/m_c;
v_02=(e*tou2*E_0)/m_c;
v_03=(e*tou3*E_0)/m_c;
printf("(a)Drift velocity in first case is %0.2e m/s\n",v_01);
printf("(b)Drift velocity in second case is %0.2e m/s\n",v_02);
printf("(c)Drift velocity in third case is %0.2e m/s",v_03);
// Result
// (a) Drift velocity in first case is 2.62*10^4 cm/s
// (b) Drift velocity in second case is 2.62*10^5 cm/s
// (c) Drift velocity in third case is 2.62*10^6 cm/s
|
85a7f031384b6876f2473f5faf7dae8759bc7066 | 717ddeb7e700373742c617a95e25a2376565112c | /1766/CH2/EX2.8/EX2_8.sce | 5d7261dcae97e91a2707fbdd56752db7f057d1f2 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 873 | sce | EX2_8.sce | clc;funcprot(0);//Example 2.8
//Initilisation of Variables
R=15*10^(-6);....//electrical resistance of a copper rod in ohm*m^-1
I=900;....//current condiucted by the copper resistance in A
r1=1;....//Radius of copper rod in cm
t1=5;.....//thickness of material in mm
K1=0.05;....//Thermal conductivity of a material in W/m*k
t2=1.8;...//thickness of plastic material in cm
K2=0.5;....//Thermal conductivity of plastic material in W/m*k
Ta=30;....//surrounding temparature in degrees celcius
h=15;...//convective heat transfer coeficient in W/m^2*k
L=1;...//length of the rod in m
//calculatons
Qg=I^2*R;.....//Heat generated in the copper rod due to flow of current in W/m
r3=0.33;...//
Rg=1/(2*%pi*r3*L*h);....//resistance for stady state condition in ohm*m^-1
Ts=(Qg*Rg)+Ta
disp(Ts,"Outer surface temparature of plastic insulation in degrees celcius:")
|
b3569f77e4d9be0f3e12c306a09f30ef00d58401 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2420/CH9/EX9.9/9_9.sce | 609fb1725943c6a94398d8e8c6ea97dfb827699f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | sce | 9_9.sce | clc
clear
//Initialization of variables
z=12 //ft
gam1=62.4 //lb/ft^3
sg=0.8
P2=100 //psia
P1=-10 //psia
mm=10000 //lb/min
//calculations
gam2=sg*gam1
p2g=P2*144/(gam2) +z
p1g=P1*144*0.491/(gam2)
ht=p2g-p1g
Hhp=mm*ht/33000
//results
printf("Total dynamic head = %.1f ft of oil",ht)
printf("\n Hydraulic hp = %.1f hp",Hhp)
|
52befb1b09500d638fb6444da69a26a149f2bdb0 | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/badattrib.tst | 9e9f88ea931b3c28dd2db7ae2f22d9e8a401d8c1 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | dougsong/reposurgeon | 394001c0da4c3503bc8bae14935808ffd6f45657 | ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b | refs/heads/master | 2023-03-09T15:22:45.041046 | 2023-02-25T08:33:06 | 2023-02-25T08:33:06 | 280,299,498 | 1 | 0 | NOASSERTION | 2023-02-25T08:33:08 | 2020-07-17T01:45:32 | Go | UTF-8 | Scilab | false | false | 131 | tst | badattrib.tst | ## Test for attribution not being incorrectly carried to a branch
read <badattrib.svn
sourcetype svn
prefer git
changelogs
write -
|
44cfe7c5a08592a4e44b1586294d547ccc00a18e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH24/EX24.9/Ex24_9.sce | c5456cc3f170e56dce808fe284ba58479931429c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,202 | sce | Ex24_9.sce | // Example 24_9
clc;funcprot(0);
//Given data
W=2;// Work done in MW
p_1=1;// bar
p_r=5;// Pressure ratio in bar
p_i=2.5;// bar
T_1=27+273;// K
r=1.4;// Specific heat ratio
CV=40000;// kJ/kg
n_c=85/100;// The isentropic efficiency of the compressor
n_t=85/100;// The isentropic efficiency of the turbine
Q_a=80;// Heat absorbed in kJ/kg of air
m_f=0.01;// kg per kg of air
m_a=1;// kg
r=1.4;// Spcific heat ratio for air and gases
C_p=1;// kJ/kg-k for air and gases
C_pg=C_p;
C_pa=C_p
//Calculation
T_2a=T_1*(p_r)^((r-1)/r);// K
T_2=((T_2a-T_1)/n_c)+T_1;// K
T_3=T_2+(Q_a/(C_pa*m_a));// K
T_4=((m_f*CV)/((1+m_f)*C_p))+T_3;// K
T_5a=T_4*(1/p_r)^((r-1)/r);// K
T_5=T_4-(n_t*(T_4-T_5a));// K
n_th=(((T_4-T_5)-(T_2-T_1))/(T_4-T_3))*100;// Thermal efficiency in %
Q=(W*10^3)/(n_th/100);//Heat supplied in kJ/sec
F=(Q/CV)*3600;// Fuel required per hour in kg/hr
n_cp=(1-(1/(p_r)^((r-1)/r)))*100;//Efficiency of normal constant pressure cycle
printf('\nThe thermal efficiency of the plant=%0.1f percentage \nEfficiency of normal constant pressure cycle=%0.0f percentage \nFuel consumption per hour=%0.0f kg/hr',n_th,n_cp,F);
// The answer provided in the textbook is wrong
|
f76a24302af38b0149f3d3ae2c3360286430d110 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH13/EX13.8/94ex.sce | 224b29d58357083e0e795943176718211cdbb605 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 214 | sce | 94ex.sce |
clc;
close;
clear;
x=poly(0,'x');
p=(x+1)^2
p1=(x-1)^2
a=poly(0,'a');
p2=(a+9)^2
p3=string('(1-5xy)^2=1-10xy+25x^2y^2')
p4=string('(2x+7y)^2=4x^2 +28xy +49y^2')
p5=string('(3a-10b)^2=9a^2-60ab+100b^2')
|
e397f8229bc2eb6600d1172ab987130eb02c6f03 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3547/CH2/EX2.3/Ex2_3.sce | f6d55641087923e588ebf8e344c4d0c816e60956 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,104 | sce | Ex2_3.sce | // Example no.2.3
// To compare deltaT for step index fiber with parabolic-index fiber
// Page no. 43
clc;
clear;
// Given data
n1=1.47; // Refractive index of core
n2=1.45; // Refractive index of cladding
L=1*10^3; // Length of medium in meter
c=3*10^8; // speedof ligth in (m/s)
delta=(n1-n2)/n1;
// The deltaT for step index fiber
deltaTSIF=((n1^2*L*delta)/(c*n2))*10^9; //Pulse width for step index fiber
// deltaT for parabolic-index fiber
deltaTPIF=((n1^2*delta^2*L)/(8*c))*10^9; // Pulse width for parabolic-index fiber
// Displaying the result in command window
printf('\n Pulse width for step index fiber = %0.2f ns',deltaTSIF);
printf('\n Pulse width for parabolic index fiber = %0.4f ns',deltaTPIF);
// The answer of pulse width for parabolic index fiber is wrong in book
disp('Thus, the intermodal dispersion can be significantly reduced by using parabolic-index fiber');
|
691dbe4ac5ae5d6d64874dc6f731efb87582b6e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /48/CH3/EX3.2/eg_3_2.sce | a1dee09999a17efbe5196294cbd6d6105e256745 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 512 | sce | eg_3_2.sce | clear
clc
disp("T(x,y,z)=(x+y)[x^(y^+z^)]^+x^y^+x^z^");
disp("From the properties 1. (ab)^=a^+b^ 2. (a+b)^=a^b^");
disp("T(x,y,z)=((x+y)(x+yz))+x^y^+x^z^");
disp("Multipliying the first 2 terms");
disp("T(x,y,z)=(x+xyz+xy+yz)+x^y^+x^z^");
disp("T(x,y,z)=(x(1+y+yz)+yz)+x^y^+x^z^");
disp("T(x,y,z)=x+yz+x^y^+x^z^");
disp("we know a+a^b=a+b");
disp("T(x,y,z)=x+y^+yz+x^z^");
disp("T(x,y,z)=x+z^+y^+yz");
disp("T(x,y,z)=x+z^+y^+z");
disp("since z+z^=1");
disp("T(x,y,z)=x+1+y^");
disp("T(x,y,z)=1")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.