blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
6
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
87
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
15 values
visit_date
timestamp[us]date
2016-08-04 09:00:04
2023-09-05 17:18:33
revision_date
timestamp[us]date
1998-12-11 00:15:10
2023-09-02 05:42:40
committer_date
timestamp[us]date
2005-04-26 09:58:02
2023-09-02 05:42:40
github_id
int64
436k
586M
star_events_count
int64
0
12.3k
fork_events_count
int64
0
6.3k
gha_license_id
stringclasses
7 values
gha_event_created_at
timestamp[us]date
2012-11-16 11:45:07
2023-09-14 20:45:37
gha_created_at
timestamp[us]date
2010-03-22 23:34:58
2023-01-07 03:47:44
gha_language
stringclasses
36 values
src_encoding
stringclasses
17 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
15 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
7b8f6aeb6299ce0cb1e3ba87fa4a79b6d89ee74f
449d555969bfd7befe906877abab098c6e63a0e8
/1106/CH3/EX3.29/ex3_29.sce
f171170a7079b334c00db877cb07e223a8a54fd7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
408
sce
ex3_29.sce
// Example 3.29, page no-168 clear clc R1=560 R3=560 Rf=5.6*10^3 R2=Rf Vo1=-2 Ri=2*10^6 Vo2=-1 // Part 1 Ad=1+Rf/R1 printf('\nAd= %d', Ad) // Part 2 A=200000 Ri1=Ri*(1+ (A*R2)/(R2+R3)) Ri1=Ri1/10^9 printf('\nRi1=%.1f Gohm', Ri1) Ri2=Ri*(1+ (A*R1)/(R1+Rf)) Ri2=Ri2/10^9 printf('\nRi2=%.2f Gohm', Ri2) // Part 3 Vid=Vo2-Vo1 Vo=(1+Rf/R1)*Vid Vo=Vo printf('\nVo=%d V',Vo)
4b1f97f21ead15f2b332eb786eaaca449755c3c5
449d555969bfd7befe906877abab098c6e63a0e8
/3871/CH16/EX16.5/Ex16_5.sce
b3e3bef3028721cc1a3b20515438e1f53e769a71
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
553
sce
Ex16_5.sce
//===================================================================================== //Chapter 16 example 5 clc;clear all; //variable declaration l = 0.02; //length of plates in m d = 0.005; //distance between plates in m S = 0.2; //the distance between the screen and centre of plates in m Va = 2500; //accelerating voltage in V //calculations Sd = (l*S)/(2*d*Va); //deflection sensitivity of the tube in mm/V //result mprintf("deflection sensitivity of the tube %3.2f mm/V",(Sd*10^3));
e1694e317f5e97d8406771e76404c39d1f348628
1db0a7f58e484c067efa384b541cecee64d190ab
/macros/polystab.sci
84e42d4712fde3abf8ef6841fefbd9afd5edba29
[]
no_license
sonusharma55/Signal-Toolbox
3eff678d177633ee8aadca7fb9782b8bd7c2f1ce
89bfeffefc89137fe3c266d3a3e746a749bbc1e9
refs/heads/master
2020-03-22T21:37:22.593805
2018-07-12T12:35:54
2018-07-12T12:35:54
140,701,211
2
0
null
null
null
null
UTF-8
Scilab
false
false
531
sci
polystab.sci
function b = polystab(a) //This function stabilizes the polynomial transfer function. //Calling Sequence //b = polystab(a) //Parameters //a: //Description //This is an Octave function. //This function stabilizes the polynomial transfer function by replacing all roots outside the unit circle with their reflection inside the unit circle. //Examples //polystab([1,3,5]) //ans = // 1. 0.6 0.2 funcprot(0); rhs = argn(2) if(rhs~=1) error("Wrong number of input arguments.") end b = callOctave("polystab",a) endfunction
c78825711188172340705514b78940aedc7c37dd
449d555969bfd7befe906877abab098c6e63a0e8
/1595/CH1/EX1.9/ex1_9.sce
a66783be85c318d213714c7cbf759cdf7c6ed456
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
358
sce
ex1_9.sce
//Introductory Topics :example 1-9 : (pg no. 25) x=7*10^-3; y=0.18*10^-3; z=10*log10(x/y); // o/p power measured 400-Hz audio signal modulates a carrier printf("\nS+N+D = %.3f W",x); // o/p power measured when a filter cancels 400-Hz portion of the o/p printf("\nN+D = %.5f W",y); printf("\nSINAD = 10log(S+N+D/N+D)"); printf("\nSINAD = %.1f dB",z);
680df18cb9e3c60298bae6016591976302836ba2
caafd05eb866a2bd249681ceeb5734ca2df71833
/TP3/calcg.sci
6ac1bce1db0e2b70611ed70401c933f9061482c1
[ "MIT" ]
permissive
mmewen/MT09-numerical-analysis
5fb1f251e86f9d43d7eeb23ce7bcc91d6ca3fa8b
cde3871aa885811bc31166e778b2a4f052e74b64
refs/heads/master
2021-01-11T22:11:18.631204
2017-01-14T10:59:23
2017-01-14T10:59:23
78,934,966
0
0
null
null
null
null
UTF-8
Scilab
false
false
256
sci
calcg.sci
function [z] = calcg(t, T, cc) exec("place.sci", -1); i = place(T, t); dti = t - T(i) z = cc(i, 1) + ... cc(i, 2) * dti + .. cc(i, 3) * dti * dti + ... cc(i, 4) * dti * dti * (t - T(i+1)); endfunction
315aafb7c88874c4074605ee8ae671a9eddb9fbc
449d555969bfd7befe906877abab098c6e63a0e8
/36/DEPENDENCIES/prob9_15data.sci
e425fa9db9e8e425499e688fcec7e80abcffe3c8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
210
sci
prob9_15data.sci
//problem 9-15 data //defining blank arrays blank = part(emptystr(),1:3); blank6=[blank,blank,blank,blank,blank,blank]; blank5=[blank,blank,blank,blank,blank]; blank2=[blank,blank]; blank3=[blank,blank,blank];
5b901dff903e7f0d956aa417af01032b08579a90
449d555969bfd7befe906877abab098c6e63a0e8
/1970/CH18/EX18.16/CH18Exa16.sce
f456d5e3ce55cb09d0c52bdb04de9a5340b7864c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
255
sce
CH18Exa16.sce
// Scilab code Exa18.16 : : Page-768 (2011) clc; clear; phi = 45*%pi/180; // Phase difference Cross_sec_ratio = 1/4*(5+4*cos(phi))/(1-cos(phi)); // Cross section ratio printf("\nThe cross section ratio : %4.2f", Cross_sec_ratio); // Result
57a5b00d1c0f4a838a12da24c9d3b2656640bf2d
449d555969bfd7befe906877abab098c6e63a0e8
/659/CH9/EX1.cs/Casestudy1.sci
60baca1161117015284c98fd6e78786f298e2e89
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,328
sci
Casestudy1.sci
// Case Study:Chapter-9[page no:310] // 1.Calculation of Area under a Curve funcprot(0); //global variables global start_point global end_point; global total_area; global numtraps; function[]=input1() global start_point; global end_point; global total_area; global numtraps; total_area=0; start_point=input("Enter lower limit:"); end_point=input("Enter upper limit:"); numtraps=input("Enter number of trapezoids:"); endfunction function[total_area]=find_area(a,b,n) global total_area; base=(b-1)/n; //base is local variable lower=a; //lower is local variable for lower=a:(lower+base):(b-base) h1=function_x(lower); h2=function_x(lower+base); total_area=total_area+trap_area(h1,h2,base); //total area is calculated end endfunction function[area]=trap_area(height_1,height_2,base) area =0.5*(height_1+height_2)*base; //area is local variable endfunction function[x] =function_x(x) x=(x^2)+1; endfunction //calling functions disp("AREA UNDER CURVE"); input1(); //calling input1() function total_area=find_area(start_point,end_point,numtraps);//calling find_area() function printf("TOTAL AREA = %f",total_area);
3d263a05bf5b1b692799081c2298c758c7e45036
e3cbbc5e7d85ad8e75f34314755eeb32e59f221f
/TEST/bin.tst
4da6867495b77773f8f8c30ca673a70846eac0fa
[ "Apache-2.0" ]
permissive
ihgazni2/neggen
25f624b8008728e8f60140559770b4c8bec56a62
9bb88606cc8c7a470b1023a5dcad2c9929cd8dfc
refs/heads/master
2021-06-13T08:11:24.919179
2021-04-02T14:10:14
2021-04-02T14:10:14
166,251,568
0
0
null
null
null
null
UTF-8
Scilab
false
false
936
tst
bin.tst
var neggen = require("./neggen") neggen.showAllTems() neggen.srchTem("4tl3") neggen.printTem("4tl3tr2bl") neggen.config.template = "4tl3tr2bl" neggen.config neggen.getTemCfg() neggen.creat() tar -cvf 4tl3tr2bl.tar 4tl3tr2bl rm -r 4tl3tr2bl pscp root@192.168.152.128://opt/JS/APPS/4tl3tr2bl.tar 4tl3tr2bl.tar rm 4tl3tr2bl.tar neggen.getAllTemNames() neggen --mode creat --tem 4tl3tr2bl ls -l 4tl3tr2bl cli.creat.tem.0.png cli.creat.tem.1.png cli.creat.tem.2.png #open the 4tl3tr2bl.html with firefox cli.creat.tem.3.png rm -r 4tl3tr2bl neggen --mode creat --tem 4tl3tr2bl --styleInline true ls -l 4tl3tr2bl cli.creat.tem.inline.0.png cli.creat.tem.inline.1.png #open the 4tl3tr2bl.html with firefox cli.creat.tem.inline.2.png neggen --mode creat --tem 4tl3tr2bl --height 500 --width 500 --iheight 1/5 --iwidth 1/5 --itop 2/5 --ileft 2/5 ls -l 4tl3tr2bl #open the 4tl3tr2bl.html with firefox cli.creat.tem.params.0.png
ded8c3b0b4e956c949584aece3ed3f57b1202f4b
449d555969bfd7befe906877abab098c6e63a0e8
/1682/CH5/EX5.5/Exa5_5.sce
fbe6108fbe5b2267707cdd11c42183a05c7308b1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
871
sce
Exa5_5.sce
//Exa 5.5 clc; clear; close; //Machine A : disp("Machine A: "); P=400000;//in Rs A=40000;//in Rs S=200000;//in Rs i=12;//in % per annum n=4;//in years //Formula : (F/P,i,n) : (1+i/100)^n //Formula : (F/A,i,n) : (((1+i/100)^n)-1)/(i/100) FW_A=(P*(1+i/100)^n)+(A*(((1+i/100)^n)-1)/(i/100))-S;//in RS disp(FW_A,"The future worth amount of Machine A in RS. : "); //Machine B : disp("Machine AB: "); P=800000;//in Rs A=0;//in Rs S=550000;//in Rs i=12;//in % per annum n=4;//in years //Formula : (F/P,i,n) : (1+i/100)^n //Formula : (F/A,i,n) : (((1+i/100)^n)-1)/(i/100) FW_B=(P*(1+i/100)^n)+(A*(((1+i/100)^n)-1)/(i/100))-S;//in RS disp(FW_B,"The future worth amount of Machine B in RS. : "); disp("The future worth of Machine A is less than that of Machine B. Thus, Machine A should be selected."); //Note : Calculation in the book is not accurate.
942d9d68ccffccbb85c91cdfc1ff08d5e08ca53f
564beb66e232557765505973f93cc322a394133a
/KOED/code/runmyfunction.sce
95fc2bdfeed2a54302cbc55a52aaff71a69afec9
[]
no_license
KeithEvanSchubert/Keith_On
2442bb74b9d531c96d9f10da8df1dede54423094
fe8dd1e90e695957346aa176b7e0d0fea30171e3
refs/heads/master
2021-01-18T22:08:18.862471
2019-09-04T17:39:58
2019-09-04T17:39:58
51,767,267
0
0
null
null
null
null
UTF-8
Scilab
false
false
143
sce
runmyfunction.sce
exec("quadratic.sci"); x=-5:.01:5; y=quadratic(x,1,0,-1); plot(x,y,'r-') plot([min(x);max(x)],[0;0],'k-') plot([0;0],[min(y)-4;max(y)+1],'k-')
51d483e9ece5e13e43967c19f1fc7ed9e179f1c4
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH16/EX16.7/PS_7.sce
5c37bf1cb4765d4eef4b7e44543e9c69f57cf341
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
PS_7.sce
// sum 16-7 clc; clear; alpha=atan(2*0.2/(%pi*0.9)); u1=0.15; phi=atan(u1); P=200; L=250; Tt=P*L; W=10*10^3; u2=0.15; x=Tt/W; d=x/0.1716; d=30; p=6; dr=0.8*d; d=24; p=5; dr=d-p; dm=d-(p/2); // printing data in scilab o/p window printf("d is %0.0f mm ",d); printf("\n p is %0.0f mm ",p);
f1eb91f60529461017fd3fe3c90e62e2d3523370
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/1.1/Unix/scilab-1.1/macros/percent/%smlss.sci
e955482129ad6f3d7795821b6445466dc233bc89
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference" ]
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
236
sci
%smlss.sci
//<s>=%smlss(d1,s2) // s=d1*s2 //! // origine s. steer inria 1987 // [a2,b2,c2,d2,x2,dom2]=s2(2:7); if prod(size(s2))==1 then s=%lssms(s2,d1);return; //transpose end D=D1*D2; [A2;D1*C2]; s=list('lss',a2,b2,d1*c2,D,x2,dom2) //end
99ec4bc6a98af7e3fa410eeafeca875b2f56270a
449d555969bfd7befe906877abab098c6e63a0e8
/2138/CH5/EX5.3/EX_5_3.sce
37a5941677fdca190b20b5514c734ece83436983
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
351
sce
EX_5_3.sce
//Example 5.3 // resistance of the heater element clc; clear; close; w=15;// in kg t1=15;// in degree celsius t2=100;//in degree celsius t=25;// time in minutes I=10;// in ampere n=85;//efficiency of conversion in percentage ho=w*(t2-t1);//output heat required in kcal R=((ho*4187*100)/(I^2*t*60*n));// resistance in ohms disp(R,"resistance in ohms")
9c2dc8ee631b6cb3b09d16a3efcbe6bafbf4c414
449d555969bfd7befe906877abab098c6e63a0e8
/1535/CH2/EX2.2/Ch02Ex2.sci
7c16ba606e11338280f7e6b00862f179b768a2df
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
540
sci
Ch02Ex2.sci
// Scilab Code Ex2.2 : Page-46 (2010) function E = fn(t) E = sin(120*%pi*t); endfunction epsilon_r = 1; // Relative electrical permittivity of free space epsilon_0 = 8.854e-012; // Absolute electrical permittivity of free space, farad per metre t = 0; // Time when peak value of current occurs J2 = epsilon_0*epsilon_r*derivative(fn,t); printf("\nThe peak value of displacement current = %4.2e ampere per metre square", J2); // Result // The peak value of displacement current = 3.34e-009 ampere per metre square
a42ab5dda977544b05e4d48a49aa61ee1783cb3f
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH10/EX10.8/Ex10_8.sce
b85bcbaa75eaa6882366cb1126db7c03e57c919d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,607
sce
Ex10_8.sce
clc mn = 3 // Mass of nitrogen in kg mc = 5 // mass of CO2 in kg an = 28 // Atomic weight of nitrogen ac = 44 // Atomic weight of CO2 // Part (a) xn = (mn/an)/((mn/an)+(mc/ac)) // mole fraction of nitrogen xc = (mc/ac)/((mn/an)+(mc/ac)) // mole fraction of carbon printf("\n Example 10.8") printf("\n\n Mole fraction of N2 is %f ",xn) printf("\n Mole fraction of CO2 is %f" ,xc) //The answers vary due to round off error // Part (b) M = xn*an+xc*ac // Equivalent molecular weight printf("\n\n Equivalent molecular weight of mixture is %fkg/kg mol" ,M) // Part (c) R = 8.314 // Gas constant Req = ((mn*R/an)+(mc*R/ac))/(mn+mc) printf("\n\n The equivalent gas constant of the mixture is %f kJ/kg K" ,Req) // Part (d) P = 300 // Initial pressure in kPa T = 20 // Initial temperature in degree Celsius Pn = xn*P // Partial pressure of Nitrogen Pc = xc*P // Partial pressure of CO2 Vn = (mn*R*(T+273))/(P*an) // Volume of nitrogen Vc = (mc*R*(T+273))/(P*ac) // Volume of CO2 printf("\n\n Partial pressures of nitrogen and CO2 are \n %f kPa and %f kPa respectively",Pn,Pc) printf("\n Partial volume of nitrogen and CO2 are \n %f kPa and %f kPa respectively",Vn,Vc) // Part (e) V = (mn+mc)*Req*(T+273)/P // Total volume rho = (mn+mc)/V // mass density printf("\n\n Total volume of mixture is %f m^3" ,V) printf("\n Density of mixture is %f kg/m^3" ,rho) // Part (f) gn = 1.4 // Heat capacity ratio for nitrogen gc = 1.286 // Heat capacity ratio for carbon dioxide cvn = R/((gn-1)*an) // cp and cv of N2 cpn = gn*cvn // Constant pressure heat capacity of nitrogen cvc = R/((gc-1)*ac) // cp and cv of CO2 cpc = gc*cvc// COnstant pressure heat capacity of carbon dioxide cp = (mn*cpn+mc*cpc)/(mn+mc) // Constant pressure heat capacity ratio of mixture cv = (mn*cvn+mc*cvc)/(mn+mc) // Constant volume Heat capacity ratio of mixture printf("\n\n Cp and Cv of mixture are \n %fkJ/kg K and %fkJ/kg K respectively" ,cp,cv) T1 = T T2 = 40 U21 = (mn+mc)*cv*(T2-T1) H21 = (mn+mc)*cp*(T2-T1) S21v = (mn+mc)*cv*log((T2+273)/(T1+273)) // If heated at constant volume S21p = (mn+mc)*cp*log((T2+273)/(T1+273)) // If heated at constant Pressure printf("\n\n Change in internal energy of the system heated at constant volume is %fkJ" ,U21) printf("\n Change in enthalpy of the system heated at constant volume is %fkJ" ,H21) printf("\n Change in entropy of the system heated at constant volume is %f kJ/kg K",S21v) printf("\n\n Change in entropy of the system heated at constant Pressure is %fkJ/kgK" ,S21p) //The answers vary due to round off error
d44f2300fdcf43544ed09f93ddba026d9c0e7d16
449d555969bfd7befe906877abab098c6e63a0e8
/291/CH2/EX2.3a/eg2_3a.sce
636998c8a85b87ec9d19afdfbb6c96c35a66fa7a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
141
sce
eg2_3a.sce
scores=[284, 280, 277, 282, 279, 285, 281, 283, 278, 277]; new_scores = scores - 280; final_mean = mean(new_scores)+ 280; disp(final_mean)
89c1e981cd01c314f0243acb6205d70f4e005293
f6134e0a162a059c42ec3ef8de2a63941d73936c
/Scilab_code/RLG/Geometry/rectBbox2DAxisAligned.sci
f522409271c30d72d80bd251bd40be6d571dfad5
[]
no_license
mxch18/SRL-WRT_pathPlanning
38a1701934a4a0e919a6c1c7990092b242df72da
6992febbbe103814d2cef5351a0e8917b183a2b0
refs/heads/master
2020-03-23T06:43:54.155192
2018-09-26T17:26:56
2018-09-26T17:26:56
141,226,032
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,026
sci
rectBbox2DAxisAligned.sci
function [rectOrigin,rectL,rectW] = rectBbox2DAxisAligned(points) //Author : Maxens ACHIEPI //Space Robotics Laboratory - Tohoku University //Description: //Computes the minimal rectangular planar bounding box of the set of points. //The bounding box is axis-aligned with the projection of x0 on the plane(or //y0 if x0 is perpendicular) //INPUT //points: the set of points. We assume that the point have already been //projected and transformed into the plane's frame. Therefore points are 2D. //OUTPUT //rectOrigin: the bottom left corner of the bounding box //rectL: the bounding box dimension along first axis //rectW: the bounding box dimension along second axis //----------------------------------------------------------------------------// mx = max(points(:,1)); lx = min(points(:,1)); my = max(points(:,2)); ly = min(points(:,2)); rectOrigin = [lx,ly]; rectL = mx-lx; rectW = my-ly; endfunction
bf537bca0596f47bd3b329918184291c07d22dc6
33f77c32fb16283501d950b6fc6b43a07914f32e
/scilab_autopilot/lib/math/vect/vect_dotProd.sce
a18a79b4cf320d7381f7c8796e652a810bc77ea7
[]
no_license
CLUBMODELISMECEADSTOULOUSE/autopilot
26b79d6a2a632f08989a5528e82f553616617646
a6ffae2f8a86fbc79e636ddd5173af104e1af9cd
refs/heads/master
2021-01-21T00:59:06.271128
2015-10-25T09:31:54
2015-10-25T09:31:54
34,409,237
1
0
null
null
null
null
UTF-8
Scilab
false
false
455
sce
vect_dotProd.sce
// Dot product // // Computed as the sum of the product of each coordinate. // // INTPUT // - v1: a vector // - v2: another vector // // OUTPUT // - res: the dot product // // USAGE // res = vect_dotProd(v1,v2); // // HISTORY // 28/03/2014: T. Pareaud - Creation function [res] = vect_dotProd(v1, v2) nRow = size(v1,1); nCol = max(size(v1,2),size(v2,2)); res = zeros(1,nCol); for iRow = 1:nRow res = res + v1(iRow,:).*v2(iRow,:); end endfunction
50a78b28f820c6c02a66ce80f494809f20d09ae2
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH25/EX25.7/Ex25_7.sce
926ad1d41583f5fffc5bcaa57f4ef74e4901bd88
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex25_7.sce
//Example 25.7 d_o=7.5*10^-2;//Object distance (m) f=10*10^-2;//Focal distance (m) d_i=1/(1/f-1/d_o);//Image distance (m) m=-d_i/d_o;//Magnification printf('Magnification produced by magnifying glass = %0.2f',m) //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
c6a92c45303977fa9d09cf5993fbb381edb3231f
449d555969bfd7befe906877abab098c6e63a0e8
/1439/CH6/EX6.3/6_3.sce
b62b93bb023669e718531bca642a36f3296f60cf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
231
sce
6_3.sce
clc //initialisation of variables T= 0 //C H= 79.7 //cal g^-1 vd= -9.06*10^-5 //l g^-1 R= 0.04129 //l-atm cal^-1 //CALCULATIONS r= H*R/((273.15+T)*vd) //RESULTS printf ('change in pressure per degree= %.f atm deg^-1',r)
d4dc760a3705c8a8027201de0eaa28f5fef61de3
449d555969bfd7befe906877abab098c6e63a0e8
/842/CH2/EX2.7/Example2_7.sce
b9c8370aa1efc03a71088ef436b7a9c66388c303
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
589
sce
Example2_7.sce
//clear// //Example 2.7:Convolution Integral of fintie duration signals //page99 clear; close; clc; T = 10; x = ones(1,T); //Input Response for t = 1:2*T h(t) = t-1; //Impulse Response end N1 = 0:length(x)-1; N2 = 0:length(h)-1; y = convol(x,h); N = 0:length(x)+length(h)-2; figure a=gca(); a.x_location="origin"; plot2d(N2,h) xtitle('Impulse Response','t','h(t)'); a.thickness = 2; figure a=gca(); plot2d(N1,x) xtitle('Input Response','t','x(t)'); a.thickness = 2; figure a=gca(); plot2d(N,y) xtitle('Output Response','t','y(t)'); a.thickness = 2;
ff19cda89cea9c54097dbdec8d27fac2b08904cb
449d555969bfd7befe906877abab098c6e63a0e8
/1820/CH8/EX8.2/Example8_2.sce
e188f128ba313eaa2ef9da04e55686a8e8efddaa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,289
sce
Example8_2.sce
// ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN // TURAN GONEN // CRC PRESS // SECOND EDITION // CHAPTER : 8 : LIMITING FACTORS FOR EXTRA-HIGH AND ULTRAHIGH VOLTAGE TRANSMISSION // EXAMPLE : 8.2 : clear ; clc ; close ; // Clear the work space and console // GIVEN DATA f = 60 ; // freq in Hz d = 3 ; // overall diameter in cm D = 550 ; // Equilateral spacing b/w conductors in cm V1 = 345 ; // operating line voltage in kV V_0 = 172.4 ; // disruptive critical voltage in kV L = 50 ; // line length in mi p = 74 ; // Atmospheric pressure in Hg t = 10 ; // temperature in degree celsius m_0 = 0.90 ; // Irregularity factor // CALCULATIONS r = d/2 ; delta = 3.9211 * p/( 273 + t ) ; // air density factor V_0 = 21.1 * delta * m_0 * r * log(D/r) ; // disruptive critical rms line voltage in kV/phase V =V1/sqrt(3) ; // Line to neutral operating voltage in kV P_c = (390/delta)*(f+25)*sqrt(r/D)*(V - V_0)^2 * 10^-5 ; // Fair weather corona loss per phase in kW/mi/phase P_cT = P_c * L ; // For total line length corona loss in kW/phase T_P_c = 3 * P_cT ; // Total corona loss of line in kW // DISPLAY RESULTS disp("EXAMPLE : 8.2 : SOLUTION :-") ; printf("\n (a) Total fair weather corona loss of the line , P_c = %.1f kW \n",T_P_c) ;
aeff08d1dc296d00a262ffda13a6dfda11638f30
449d555969bfd7befe906877abab098c6e63a0e8
/1286/CH14/EX14.12/14_12.sce
62029aa1eb962f3a0a0770bbcfb3d0b098f6ba84
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
154
sce
14_12.sce
clc //initialisation s=1.5//cal cm^-2 min^-1 k=0.0027 //CALCULATIONS td=-(s/(k*60)) //results printf(' \n temperature gradient= % 1f c cm^-1',td)
b9866ea60afb90cd2729513c14d7b51704431d07
449d555969bfd7befe906877abab098c6e63a0e8
/1109/CH5/EX5.4/5_4.sce
7994fd8c2f035b9d6ae512fa92ae74705ad06adf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
563
sce
5_4.sce
clear; clc; R=10;C=0.04*(10^-6);L=0;G=0;f=1000;l=100*(10^-3);r=12;d=0.9; w=2*%pi*f; a=sqrt(w*C*R/2); b=sqrt(w*C*R/2); Vp=(w/b)*10^-5; printf("-Phase velocity before loading = %f * 10^5 km/sec\n",fix(Vp*10)/10); Rc=R+(r/d); Lc=L+(l/d); al=((Rc/2)*sqrt(C/Lc))+((G/2)*sqrt(Lc/C)); Vpl=(1/(sqrt(Lc*C)))*10^-4; printf("-Phase velocity after loading = %f * 10^4 km/sec\n",Vpl); A=a-al; printf("-Decrease in attenuation = %f neper/km\n",round(A*10000)/10000); Fc=1/(%pi*(sqrt(Lc*C*d))); printf("-Cutoff frequency = %f kHz",round(Fc*(10^-3)*1000)/1000);
22f55a1605178fc092a2a54a250424bfb64a9855
449d555969bfd7befe906877abab098c6e63a0e8
/965/CH2/EX2.13/13.sci
5cc2a4ccf12366552e98643345402402d0d6050e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
481
sci
13.sci
clc; clear all; disp("pipe location distance") L=1.2;//m thickness of wall // temperature of wall surfaces t1= 200;// degree C t2=60;// degree C t= 120;// degree C //k= 0.28*(1+0.036*t);// thermal conductivity relation // rate of heat transfer Q= km*(A/L)*(t1-t2) // 0.28*(1+(0.036/2)*(200+60))*(A/1.2)*(200-60)=0.28*(1+(0.036/2)*(200+120))*(A/x)*(200-120) x=151.42/185.54;//m disp("m",x,"the distance at which the pipe should be imbedded from hot surface = ")
033220cbaecf550bcbd5509fb336d3a113fc6788
449d555969bfd7befe906877abab098c6e63a0e8
/2621/CH4/EX4.12/Ex4_12.sce
9dcfe9cd7d800c4249659b2b4285d782c7716f21
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
812
sce
Ex4_12.sce
// Example 4.12 clc; clear; close; format('v',7); // Given data fa= 1;// in kHz fa= fa*10^3;// in Hz Vp= 1.5;// in V f= 200;// in Hz C= 0.1*10^-6;// in F t= poly(0,'t'); R= 1/(2*%pi*fa*C);// in Ω R= 1.5;// in kΩ (standard value) fb= 20*fa;// in Hz R_desh= 1/(2*%pi*fb*C);// in Ω R_desh= 82;// in Ω (standard value), so R_OM= R;// in kΩ // Vin= Vp*sin(omega*t)= Vp*sin(2*%pi*f)*t disp("The input votage : Vin = "+string(Vp)+ " sin(400*%pi*t)") RC= R*10^3*C;// in ΩF V= -RC*Vp*400*%pi; //Vout= -RC*dVin/dt= -RC*Vp*400*%pi*cos(400*%pi*t) disp("The output voltage : Vout = "+string(V)+" cos(400*%pi*t)") x=[0:0.1:5*%pi/2]; plot(V*cos(x)) title("output Waveform"); xlabel("---- Time ---->"); ylabel("---- output voltage ---->"); disp("output Waveform is shown in figure.")
d91193817730aaaff3e5d8b7714e61bb003786ab
3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc
/Área 2/Aula 10 - Quadratura Gaussiana/Quadratura Gaussiana com n intervalos e 4 nós.sce
5f94d336995eea8fabc4f22eee06f206e6180696
[ "MIT" ]
permissive
JPedroSilveira/numerical-calculus-with-scilab
32e04e9b1234a0a82275f86aa2d6416198fa6c81
190bc816dfaa73ec2efe289c34baf21191944a53
refs/heads/master
2023-05-10T22:39:02.550321
2021-05-11T17:17:09
2021-05-11T17:17:09
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
736
sce
Quadratura Gaussiana com n intervalos e 4 nós.sce
function S=gaussiana(f,a,b,n) h=(b-a)/n // n intervalos x=linspace(a,b,n+1) w = [((18 + sqrt(30))/36) ((18 + sqrt(30))/36) ((18 - sqrt(30))/36) ((18 - sqrt(30))/36)]' t = [sqrt((3 - 2*sqrt(6/5))/7) -sqrt((3 - 2*sqrt(6/5))/7) sqrt((3 + 2*sqrt(6/5))/7) -sqrt((3 + 2*sqrt(6/5))/7)]' S=0 for i=1:n alpha=(x(i+1)-x(i))/2 bet =(x(i+1)+x(i))/2 x1=alpha*t(1)+bet; x2=alpha*t(2)+bet; x3=alpha*t(3)+bet; x4=alpha*t(4)+bet; A =(w(1)*f(x1)+w(2)*f(x2)+w(3)*f(x3)+w(4)*f(x4))*h/2 S=S+A end endfunction function y=f(x) y = sin(8*x) endfunction
ec4de47dbd0b6626664fed715d0300295beb2eaa
449d555969bfd7befe906877abab098c6e63a0e8
/1994/CH7/EX7.26/Example7_26.sce
2a90b631718a51ba40339e4d4bbfb0bddd2175ad
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
167
sce
Example7_26.sce
//Chapter-7,Example7_26,pg 7-79 I1=250 I2=5 I=I1/I2 //as ammeter is in secondary I2=2.7 I1=I*2.7//line current printf("line current\n") printf("I1=%.2f A",I1)
48a1002f5ee242fc44cefb91c58d0c8dd26b0e6e
449d555969bfd7befe906877abab098c6e63a0e8
/32/CH12/EX12.09/12_09.sce
8686fadf44b828567e886911799c80aa9b68544c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,479
sce
12_09.sce
//pathname=get_absolute_file_path('12.09.sce') //filename=pathname+filesep()+'12.09-data.sci' //exec(filename) //Point of sut-off: r1=0.3 //Pressure at state 4(in bar): p4=4 //Volume at state 4(in m^3): V4=0.15 //Pressure at state 1(in m^3): p1=12 //Pressure at release(in bar): p2=5 //Indicated volume at release(in m^3): V2=0.5 //Bore diameter(in m): d=0.6 //Stroke length(in m): L=1.20 //Clearance volume ratio: c=0.10 //Mass of steam admitted(in kg/stroke): ms=1.5 //Number of working strokes(per second): nw=180*60 //From steam tables: vg4=0.4625 //m^3/kg vg12=0.16333 //m^3/kg vg5=0.3749 //m^3/kg //Stroke volume(in m^3): Vs=%pi*d^2/4*L //Clearance volume(in m^3): V5=c*Vs //Total volume of cylinder(in m^3): V3=V5+Vs //Volume at cut-off point(in m^3): V1=V5+r1*Vs //Mass of steam at state 4(in kg): m4=V4/vg4 //Total mass during steam expansion(in kg): m=m4+ms //Dryness fraction at cut-off point: x1=V1/(m*vg12) //Missing quantity per hour(in kg): mq1=(m-m*x1)*nw //Dryness fraction at point of release: x2=V2/(m*vg5) //Missing quantity per hour(in kg): mq2=(m-m*x2)*nw //Percentage re-evaporation during expansion: P=(mq1-mq2)/mq1*100 printf("\n RESULT \n") printf("\nDryness fraction at cut-off = %f",x1) printf("\nDryness fraction at release = %f",x2) printf("\nMissing quanity at cut off = %f kg/hr",mq1) printf("\nMissing quanity at release = %f kg/hr",mq2) printf("\nPercentage re-evaporation = %f percent",P)
aadd8dc850bf6a16c92451afbad07bb421c685f2
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH7/EX7.09/7_09.sce
c42a9b292f5915a4e759ffe5b53dfb63b3b6ce2c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
483
sce
7_09.sce
//Problem 7.09: Determine the reluctance of a piece of mumetal of length 150 mm and cross-sectional area 1800 mm2 when the relative permeability is 4000. Find also the absolute permeability of the mumetal. //initializing the variables: A = 18E-4; // in m2 l = 0.15; // in m u0 = 4*%pi*1E-7; ur = 4000; //calculation: S = l/(u0*ur*A) u = u0*ur printf("\n\nResult\n\n") printf("\n (a)Reluctance S = %.0f /H",S) printf("\n (b)Absolute permeability, μ = %.2E H/m\n",u)
897d5e13f40f0e76e263ef677254bd1357e7005d
13d93c2922005af35056d015f1ae3ebebe05ee31
/scilab/physique/autom/fonction2.sci
8e3b54dfbe79cd6abb17ecc0f100e3f1bdc11ab0
[]
no_license
scls19fr/openphysic
647cc2cdadbdafd050d178e02bc3873bd2b07445
67bdb548574f4feecb99b60995238f12f4ef26da
refs/heads/master
2021-04-30T23:16:26.197961
2020-11-16T20:21:17
2020-11-16T20:21:17
32,207,155
1
1
null
null
null
null
UTF-8
Scilab
false
false
457
sci
fonction2.sci
//fonction : parametres du systeme //depassement function D = depassement(y) ypermanent=y(length(y)-1); D=100*(max(y)-ypermanent)/ypermanent; //temps de montee function Tm = tempsdemontee(t,y) ypermanent=y(length(y)-1); ym=0.95*ypermanent; Tm=t(min(find(y>=ym))); //temps de reponse function Tr = tempsdereponse(t,y) ypermanent=y(length(y)-1); ym1=0.95*ypermanent; ym2=1.05*ypermanent; ind=find((y<ym1) | (y>ym2)); Tr=t(max(ind));
6dfe1e06450f08730ed8f79117018491ed31fc0a
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH5/EX5.30/EX_5_30.SCE
95c2a1e56a919a9402fa2b9dbe1aec86185981a4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
772
sce
EX_5_30.SCE
// Example 5.29:Avm,Fh,Cc clc; clear; close; mu=70;// rd=44;//resistance in killo ohms gm= mu/(rd);//transconductane in milli ampere per volt Rd2=50;//resistance in killo ohms x=(rd*Rd2)/(rd+Rd2);// Av2m= gm*x;//mid frequency gain of second stage Rg=1;//gate resisatnce in mega ohms y= (x*Rg*10^3)/(x+Rg*10^3);// Av1m= -gm*y;//mid frequency gain of first stage Av= Av1m*Av2m;//total gain Req=y;// Csh=200;//capacitance in pico farad fh=(1/(2*%pi*Req*10^3*Csh*10^-9));//upper cut off frequency in killo hertz Ro1=x;// fl=50;// Cc=(1/(2*%pi*fl*(Ro1*10^3+Rg*10^6)))*10^9;//coupling capacitance in nano farad disp(Av2m,"mid frequency gain of second stage") disp(fh,"upper cut off frequency in killo hertz") disp(Cc,"coupling capacitance in nano farad")
061037ed791058f349f380ceb5800665ecf856bc
8b9a8f57e173e7b4f3e0697bb8fa4391992830c1
/Assignment_2/Assignment 2/PriorityMUX2bit4to1/PriorityMUX2bit4to1B.tst
61aeacae5d17ba82c2cd7bdb7bb8ad5f48086a84
[]
no_license
AtharvaC1511/ComputerSystemDesign
9bdcdd5178e55f21c9c23cc105feb6f1cdf47cf6
e3d9bdcb961aa6d2f13c58532bb89908dda70d3b
refs/heads/main
2023-06-25T19:04:51.971391
2021-07-19T14:24:00
2021-07-19T14:24:00
387,486,807
0
0
null
null
null
null
UTF-8
Scilab
false
false
637
tst
PriorityMUX2bit4to1B.tst
load PriorityMUX2bit4to1.hdl, output-file PriorityMUX2bit4to1B.out, compare-to PriorityMUX2bit4to1B.cmp, output-list R0%B3.1.3 R1%B3.1.3 R2%B3.1.3 R3%B3.1.3 X0%B3.2.3 X1%B3.2.3 X2%B3.2.3 X3%B3.2.3 Y0%B3.2.3; set R0 1, set R1 0, set R2 0, set R3 1, set X0 %B10, set X1 %B01, set X2 %B00, set X3 %B11, eval, output; set R0 0, set R1 1, set R2 1, set R3 0, set X0 %B10, set X1 %B01, set X2 %B00, set X3 %B11, eval, output; set R0 1, set R1 0, set R2 1, set R3 0, set X0 %B10, set X1 %B01, set X2 %B00, set X3 %B11, eval, output; set R0 0, set R1 1, set R2 0, set R3 1, set X0 %B10, set X1 %B01, set X2 %B00, set X3 %B11, eval, output;
ae692c291988ff141ba5a2f0abafc5f669bb06cc
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set14/s_Material_Science_S._L._Kakani_And_A._Kakani_1085.zip/Material_Science_S._L._Kakani_And_A._Kakani_1085/CH8/EX8.5/ex8_5.sce
2c4d69609a206e829b791c3cf5fd8bf58a0dbb91
[]
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
249
sce
ex8_5.sce
errcatch(-1,"stop");mode(2);//Exam:8.5 ; ; T_stress=415;//True stress (in Megapascal) T_strain=0.10;//True strain K=1035;//(in Megapascal) n=(log(T_stress)-log(K))/log(T_strain);// disp(n,'Strain hardening exponent for an alloy=') exit();
71f1849449487bee5fe4981124501714a4ce843f
449d555969bfd7befe906877abab098c6e63a0e8
/3415/CH10/EX10.1/Ex10_1.sce
833231a61e86a3460e75048e1a44c6ca5e653dfa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
403
sce
Ex10_1.sce
//fiber optic communications by joseph c. palais //example 10.1 //OS=Windows XP sp3 //Scilab version 5.4.1 clc clear all //given clc; clear all; Vdc=5;//Power supply across transistor in V R=45//Resistancein ohm vd=1.4//forward bias voltage drop in V vce=0.3//cut-off voltage in V //to find ic=(Vdc-vce-vd)/R//diode current when fully on in A mprintf("Collector current=%fmA",ic*1000)
3e9e460b8373811237ad7353e6a1e42532bde610
5d546194d838993b19721a5041c3386c71f4e0eb
/Module-1_bash-jupyter-git/data/art/artists_random.tst
afe2d0b6f1f31360277d4c2d318b2a0625d204ff
[]
no_license
acpandey/Applied-Bioinformatics-HW
0d922c44bfee116770f4159bdff1ed6b2ec3e540
f09ac3bc33338b872a18ef6c0ec0eb3164d832e8
refs/heads/master
2020-03-28T16:11:16.893913
2018-09-13T16:40:42
2018-09-13T16:40:42
148,668,202
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,301
tst
artists_random.tst
TESTA, Pietro (1611-1650) Baroque Italian painter (Rome) TARAVAL, Louis-Gustave (1738-1794) Neoclassicism French graphic artist KOBELL, Jan I (1755-1833) Rococo Dutch graphic artist (Rotterdam) TAUNAY, Nicolas Antoine (1755-1830) Rococo French painter TERBRUGGHEN, Hendrick (1588-1629) Baroque Dutch painter (Utrecht) AGUADO LÓPEZ, Antonio (1764-1831) Neoclassicism Spanish architect (Madrid) KNOBELSDORFF, Georg Wenceslaus von (1699-1753) Baroque German architect (Berlin) TASSEL, Jean (1608-1667) Baroque French painter (Langres) KOLUNIĆ, Martin (see ROTA, Martino) (c. 1520-1583) Mannerism Other painter (Vienna) TENERANI, Pietro (1789-1869) Neoclassicism Italian sculptor ADEMOLLO, Luigi (1764-1849) Neoclassicism Italian painter (Florence) TADDEO DI BARTOLO (1362/63-1422) Medieval Italian painter (Siena) KONINCK, Salomon (1609-1656) Baroque Dutch painter (Amsterdam) KNIP, Josephus Augustus (1777-1847) Romanticism Dutch painter AACHEN, Hans von (1552-1615) Mannerism German painter ABILDGAARD, Nicolai (1743-1809) Romanticism Danish painter TELEPY, Károly (1828-1906) Romanticism Hungarian painter ACERO Y AREBO, Vicente (c. 1677-1739) Baroque Spanish architect TACCA, Pietro (1577-1640) Baroque Italian sculptor (Florence) TASSAERT, Jean-Pierre-Antoine (1727-1788) Rococo Flemish sculptor
018e305210441db8859bd7e3b4a824f27ca776f7
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH3/EX3.4/4.sce
6c275a32be1b53cf7e36e9753933c157456291c0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
4.sce
clc m_w=2; //kg t_w=25; //0C p=5; //bar x=0.9; c_pw=4.18; // at 5 bar; from steam tables h_f=640.1; //kJ/kg h_fg=2107.4; //kJ/kg h=h_f+x*h_fg; disp("Sensible heat associated with 1kg of water, Qw=") Qw=c_pw*(t_w-0); disp(Qw) disp("kJ") disp("Net quantity of heat to be supplies per kg of water, Q=") Q=h-Qw; disp(Q) disp("kJ") disp("Total amount of heat supplied, Q_total=") Q_total=m_w*Q; disp(Q_total) disp("kJ")
c545c62a06c37469de581b4707a24f9928909390
449d555969bfd7befe906877abab098c6e63a0e8
/539/CH6/EX6.4.b/Example_6_4b.sce
af3869f2c6159a0851499e4bebe42164cac23df3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
357
sce
Example_6_4b.sce
//True-Stress-At-Fracture Computations clear; clc; printf("\tExample 6.4\n"); di=12.8; //Initial dia in mm df=10.7; //Final dia in mm printf("\n\tPart B"); Ao=%pi*di^2*10^-6/4; sig=460*10^6; //Tensile strength F=sig*Ao; printf("\nF = %d N",F); Af=%pi*df^2/4; sig_t=F/Af; printf("\nTrue stress is %d MPa",sig_t); //End
288f583479a88cbb1f95173ab2ac72a0b3fb1db2
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set12/s_Higher_Engineering_Mathematics_B._S._Grewal_149.zip/Higher_Engineering_Mathematics_B._S._Grewal_149/CH34/EX34.15.3/ex15_3.sce
acc9f890ec12efaa4075ba3b2a5dac882501571c
[]
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
96
sce
ex15_3.sce
errcatch(-1,"stop");mode(2); disp('probability of getting 7 twice=1/6*1/6') 1/6*1/6 exit();
11284651cbf214bdbd754ed026a7cd990d14c407
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH10/EX10.32/example10_32.sce
11f853273dfd91c53f9168f678d82f966434eb02
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
390
sce
example10_32.sce
clc // Given that k = 81 // relative permittivity of water c = 3e8 // speed of light in meter/sec // Sample Problem 32 on page no. 10.49 printf("\n # PROBLEM 32 # \n") printf(" Standard formula used \n") printf(" mu_ = ( mu*epsilon /(mu_0/*psilon_0))^1/2 \n \n" ) mu = sqrt(k) v = c / mu printf(" Refractive index of distilled water is %d .\n Speed of light in water is %e m/sec.",mu,v)
eeda253e5c53ab11d17e8bed62c69ef61c5a0edd
449d555969bfd7befe906877abab098c6e63a0e8
/2657/CH18/EX18.1/Ex18_1.sce
f8f724e9f6cdda66daaf88b3d3744537b5ac5dac
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,368
sce
Ex18_1.sce
//Calculations on petrol engine clc,clear //Given: n=4 //Number of cylinders d_o=7.5 //Diameter of orifice in cm Cd=0.6 //Coefficient of discharge for orifice d=11,l=13 //Bore and stroke in cm N=2250 //Engine speed in rpm bp=36 //Brake power in kW m_f=10.5 //Fuel consumption in kg/hr CV=42000 //Calorific value in kJ/kg deltaP_o=4.1 //Pressure drop across orifice in cm of water P=1.013 //Atmospheric pressure in bar T=15+273 //Atmospheric temperature in K g=9.81 //Accelaration due to gravity in m/s^2 //Solution: //(a) eta_bt=bp*3600/(m_f*CV) //Brake thermal efficiency //(b) A=%pi/4*d^2*10^-4 //Area of cylinder in m^2 bmep=bp*1000/(n*l/100*A*N/(2*60)) //Brake mean effective pressure in Pascal //(c) rho_w=1000 //Mass density of water in kg/m^3 deltaP_o=rho_w*g*deltaP_o/100 //Pressure drop across orifice in N/m^2 R=0.287 //Specific gas constant in kJ/kgK rho_a=P*10^5/(R*10^3*T) //Mass density of air in kg/m^3 A_o=%pi/4*d_o^2*10^-4 //Area of orifice in m^2 m_a=Cd*A_o*sqrt(2*deltaP_o*rho_a) //Air inhaled in kg/s V_s=(%pi/4)*d^2*l*n*N/(2*60)*10^-6 //Swept volume in m^3/s eta_vol=m_a/V_s //Volumetric efficiency //Results: printf("\n (a)Brake thermal efficiency, eta_bt = %.3f",eta_bt) printf("\n (b)Brake mean effective pressure, bmep = %.3f bar",bmep*10^-5) printf("\n (c)Volumetric efficiency, eta_vol = %.3f\n\n",eta_vol)
3c1146ac91a4ad7cf4de27c06d19cac400faa673
449d555969bfd7befe906877abab098c6e63a0e8
/1694/CH3/EX3.19/EX3_19.sce
3ece1bacd7b9feb1b694df0553c598df6bb1293f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
sce
EX3_19.sce
clear; clc; printf("\nEx3.19\n"); //page no.-135 //given m=9.1*10^-31;.......//mass of electron in kg a=4*10^-10;........//length in m E=(h^2)/(8*m*a^2)..........//lowest energy in joules printf("\nlowest energy is 0.376*10^-18 J\n");
492584ed37a57060e5640ad531c328b03268da44
449d555969bfd7befe906877abab098c6e63a0e8
/3871/CH6/EX6.21/Ex6_21.sce
a2ab474e84215978a1d959043be0f40edfc8c654
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,214
sce
Ex6_21.sce
//============================================================================ //Chapter 6 Example 21 clc; clear all; //variable declaration R = 25; //rate burden in VA Is = 5; //current in A r = 6; //Rs/Es ratio of resistance to reactance IL = 0.2; //iron loss in W Im = 1.5; //magnetising compnent of current in A //calculations KT = 100/5; //turn ratio Es = R/Is; // Secondary rated voltage in V Zs = Es/Is; //total secondary impedance in Ω theta = (atan(1/r))*180/%pi; //angle in ° Zs1 = (Zs*cos(theta*%pi/180))+(Zs*sin(theta*%pi/180))*%i; Ie = KT*0.04; //energy component of exciting current on primary side r = (((Im*sin(theta*%pi/180))+(Ie*cos(theta*%pi/180)))/((KT*Is)+(Ie*cos(theta*%pi/180))+(Im*sin(theta*%pi/180))))*100; //percentage ratio error in % beta = (180/%pi)*(((Im*cos(theta*%pi/180))-(Ie*sin(theta*%pi/180)))/(KT*Is)); //phase angle erro in ° //result mprintf("percentage ratio error = -%3.1f percentage",r); mprintf("\nphase angle error = %3.4f °",beta);
516d163d0bb9e9e31e2628efbb3e6cc0b7df348e
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH18/EX18.7/Ex18_7.sce
579f116c03a47d6143a9d63d093d1d8ac3b60742
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
428
sce
Ex18_7.sce
clc; //e.g 18.7 Vcc=30; Rb=1.5*10**6; Rc=5*10**3; beta=100; Ic=Vcc/Rc;//saturation current disp('mA',Ic*10**3,"Ic="); Vce=Vcc;//cut-off voltage disp('V',Vce*1,"Vce="); Ib=Vcc/Rb;//base current disp('microA',Ib*10**6,"Ib="); Ic=beta*Ib; disp('mA',Ic*10**3,"Ic="); Vce=Vcc-Ic*Rc; disp('V',Vce*1,"Vce="); i=6:-0.2:0; plot2d(i); a=gca() //get the current axes a.box="off"; xlabel("VCE"); ylabel( "IC");
e6bf65669d2b8d95cf6c193fa14134830e1914ad
449d555969bfd7befe906877abab098c6e63a0e8
/405/CH8/EX8.23/8_23.sce
b31ec392297f5a1cad4c8b8a5438bf5670f6374b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
670
sce
8_23.sce
clear; clc; printf("\t\t\tExample Number 8.23\n\n\n"); // temperature measurement error caused by radiation // Example 8.23 (page no.-460) // solution E = 0.9;// emissivity of mercury-in-glass thermometer Tt = 20+273;// [K] temperature indicated by thermometer Ts = 5+273;// [K] temperature of walls sigma = 5.669*10^(-8);// [W/square meter K^(4)] h = 8.3;// [W/square meter] heat transfer coefficient for thermometer // we employ equation(8-113) for the solution: h*(Tinf-Tt) = sigma*E*(Tt^4-Ts^4) // inserting the values in above equation Tinf = sigma*E*(Tt^4-Ts^4)/h+Tt;// [K] printf("the true air temperature is %f degree celsius",Tinf-273);
ed0dff2245ed7b9dbd956278f56cd9238ffea0da
449d555969bfd7befe906877abab098c6e63a0e8
/1514/CH16/EX16.1/16_1.sce
591295bcfa2a3ff638aff3eede7d2b90b033df82
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
591
sce
16_1.sce
//chapter 16 //example 16.1 //page 473 clear all; clc ; //given Eo=20;//supply voltage Rl=500;//load resistance in ohm Vr=10/100*Eo;//ripple voltage fin=60;//ip frequency Hz Eomin=Eo-1; Eomax=Eo+1; theta1=asin(Eomin/Eomax);//in radians theta=(theta1*180)/%pi;//in degrees T=1000/60;//in ms //for 360 degree,T //for 180=> T1=T *180/360; T2=T1/2;//time for 90 degrees T3=T*theta/360;//time for theta t1=T1+T2+T3;//total time Il=1000*Eo/Rl;//current in mA c=Il*t1/Vr; printf("\nReservoir capacitor is %d microF,use standard value 330 microF",ceil(c))
f3ba2a8c4d699970aa000e68535f407e7e7254fe
449d555969bfd7befe906877abab098c6e63a0e8
/1952/CH10/EX10.2/Ex10_2.sce
2ac0d3b8da9cc58e9553d87aebb0549b0c2f3297
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
283
sce
Ex10_2.sce
// chapter 10 , Example10 2 , pg 290 Er=1.0024 //Dielectric constant N=2.7*10^25 //(in atoms/m^3) E0=8.85*10^-12 //permittivity of free space (in F/m) Alpha_e=(E0*(Er-1))/N //electronic polarization printf("Electronic polarization (in F*m^2)\n") disp(Alpha_e)
10c3a26f71c34c4e555311b5790e5cbbe7582669
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH3/EX3.11/example3_11.sce
2666f687bf09b9931e67f9a82c4240229eb7507e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
305
sce
example3_11.sce
disp("Part a"); v=120; i=20; p=v*i; disp("the maximum power (in W) that can be delivered is"); disp(p); disp("Part b"); p1=3.3*10^3; i1=15; v1=p1/i1; disp("the voltage applied (in V) must be"); disp(v1); disp("Part c"); p2=40; v2=120; i2=p2/v2; disp("The current (in A) drawn is"); disp(i2);
08259779fd65496f79a23178873f1b2e7d78ba7d
449d555969bfd7befe906877abab098c6e63a0e8
/3720/CH10/EX10.2/Ex10_2.sce
78f68fd39a582b9a3c99140ebea7ad4aed170aa7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
498
sce
Ex10_2.sce
// Example 10_2 clc;clear;funcprot(0); //Given data D=50*10^-6;// Diameter of spherical ash particle in m T=-50;// °C P=55;// kPa rho_p=1240;// The density of the particle in kg/m^3 //Properties mu=1.474*10^-5;// kg/m.s rho_air=0.8588;// kg/m^3 g=9.81;// The acceleration due to gravity in m/s^2 //Calculation V=(D^2/(18*mu))*(rho_p-rho_air)*g;//The terminal velocity of this particle in m/s printf('\nThe terminal velocity of this particle,V=%0.3f m/s',V); Re=(rho_air*V*D)/mu;
323a96affc5d49f67a95d961afd45dbb6c8fe2ef
449d555969bfd7befe906877abab098c6e63a0e8
/2300/CH5/EX5.7.9/Ex5_9.sce
e95682590825c80b1d7f4a074190af0367044a16
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
747
sce
Ex5_9.sce
//scilab 5.4.1 //windows 7 operating system //chapter 5:Semiconductor Junction Diodes clc clear V=15//V=supply voltage Vz=12//Vz=Zener voltage P=0.36//P=power of Zener diode //P=Vz*I I=(P/Vz)//I=maximum allowable Zener current disp("A",I,"I=") Iz=2*10^(-3)//Iz=minimum value attained by the zener current Rl=1000//Rl=load resistance i=Vz/Rl//i=load current disp("A",i,"i=") Imin=Iz+i//Imin=minimum allowable value of current R=100//R=series resistance Vr=Imin*R//Vr=voltage drop across R disp("V",Vr,"Vr=") Vmin=Vz+Vr//Vmin=minimum value of V disp("V",Vmin,"Vmin=") I1=I+i disp("A",I1,"I1=") VR=I1*R disp("V",VR,"VR=") Vmax=Vz+VR//Vmax=maximum value of V disp("V",Vmax,"Vmax=") disp("V can vary between Vmin & Vmax")
18731d820306f2fb295f017d1ce14e2dbaa8e102
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH3/EX3.29/Ch03Ex29.sce
077fa9b6bf000b89ac96dd9327ecd82da2dd1f8f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
880
sce
Ch03Ex29.sce
// Scilab Code Ex3.29:: Page-3.48 (2009) clc; clear; lambda = 6328e-008; // Wavelength of He-Laser, cm a_plus_b = 1/6000; // Grating element, cm n = 1; // First order of diffraction for given wavelength // As (a+b)*sin(theta1) = n*lambda, solving for theta1 theta1 = asind(n*lambda/a_plus_b); // Angle at which first order maximum is observed, degrees n = 2; // second order of diffraction for given wavelength theta2 = asind(n*lambda/a_plus_b); // Angle at which second order maximum is observed, degrees printf("\nThe angle at which first order maximum is observed = %4.1f degrees", theta1); printf("\nThe angle at which second order maximum is observed = %4.1f degrees", theta2); // Result // The angle at which first order maximum is observed = 22.3 degrees // The angle at which second order maximum is observed = 49.4 degrees
41ee86dca190c855e7ffc490ecee378d92eeef43
2cf3f0dc5bb5a14ec847e254aa03ceca8d54ca8e
/Similarity/ESL (Case Conflict).tst
fd2320f91d61096cd39cf07aee2d743a437829d1
[]
no_license
manishc1/Security_Word_Similarity_Model
f2966c20290b1d4be841265dbf98a875301d8e46
6b9171bb7c7fa503662cca103b237bea19f36fdf
refs/heads/master
2021-01-01T20:00:40.011537
2014-06-07T23:38:12
2014-06-07T23:38:12
20,576,010
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,152
tst
ESL (Case Conflict).tst
hinder_VB relieve_VB yield_VB block_VB assist_VB block_VB brass_NN metal_NN plastic_NN stone_NN wood_NN metal_NN steep_JJ stone_JJ bare_JJ sheer_JJ rugged_JJ sheer_JJ passage_NN hallway_NN ticket_NN entrance_NN room_NN hallway_NN envious_JJ jealous_JJ relieved_JJ hurt_JJ enthusiastic_JJ jealous_JJ twist_VB fasten_VB curl_VB interwine_VB clip_VB interwine_VB deserve_VB merit_VB need_VB expect_VB want_VB merit_VB tap_VB knock_VB boil_VB drain_VB rap_VB drain_VB split_VB bruised_VB grated_VB crushed_VB divided_VB divided_VB pad_NN cushion_NN tablet_NN block_NN board_NN cushion_NN outline_NN contour_NN blend_NN pair_NN block_NN contour_NN verse_NN weed_NN branch_NN twig_NN section_NN section_NN sore_JJ painful_JJ red_JJ hot_JJ rough_JJ painful_JJ scrape_VB mince_VB chop_VB grate_VB slice_VB grate_VB boast_VB brag_VB yell_VB complain_VB explain_VB brag_VB haste_NN anger_NN ear_NN hurry_NN spite_NN hurry_NN lean_VB scrape_VB refer_VB grate_VB rest_VB rest_VB applause_NN approval_NN fear_NN shame_NN friends_NN approval_NN sheet_NN block_NN book_NN tap_NN leaf_NN leaf_NN stiff_JJ firm_JJ dark_JJ cooked_JJ drunk_JJ firm_JJ
25d5a7b02b80cfd937969a37d763fb5e0ce0e101
449d555969bfd7befe906877abab098c6e63a0e8
/695/CH3/EX3.27/Ex3_27.sce
ae19a0ef021266fef940d282040959447c178147
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
625
sce
Ex3_27.sce
//Caption:Calculate the percentage resistance and reactance drops and the percentage of full load at which max efficiency will occur //Exa:3.27 clc; clear; close; KVA=20; V1=1100;//in volts V2=220;//in volts a=V1/V2; P_i=175;//in watts R1=0.25;//in ohms R2=0.012;//in ohms X1=1.1;//in ohms X2=0.055;//in ohms R_O2=R2+R1/a^2; X_O2=X2+X1/a^2; I2=KVA*1000/V2; V_r=I2*R_O2*100/V2; disp(V_r,'Percentage Resistance drop (in %)='); V_re=I2*X_O2*100/V2; disp(V_re,'Percentage Reactance drop (in %)='); P_cu=I2^2*R_O2; x=sqrt(P_i/P_cu); disp(x*100,'Max Efficiency will occur at'); disp('percent of full load');
fadc57198a907cef007deb612e3d40f893da666a
449d555969bfd7befe906877abab098c6e63a0e8
/291/CH7/EX7.2g/eg7_2g.sce
f234318d7756b85029f8b32a0c244daf25a5ec67
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
64
sce
eg7_2g.sce
function result= unif(X, n) result = max(X)/2; endfunction
6b5e80a3a192e5c50bcd0b126e6887e2da90d183
449d555969bfd7befe906877abab098c6e63a0e8
/2777/CH4/EX4.3/Ex4_3.sce
d1848ac01b587f1073664965530193f2b9d70d9a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
799
sce
Ex4_3.sce
// ELECTRICAL MACHINES // R.K.Srivastava // First Impression 2011 // CENGAGE LEARNING INDIA PVT. LTD // CHAPTER : 4 : DIRECT CURRENT MACHINES // EXAMPLE : 4.3 clear ; clc ; close ; // Clear the work space and console // GIVEN DATA E = 420; // EMF induced in Volts N = 900; // Rotation speed in RPM phi = 0.06; // Flux per pole in Weber per pole Two_p = 4; // Total number of poles // CALCULATIONS n = N/60; // Revolution Per second Zc = E/(Two_p*phi*n); // Number of the Conductor in Parallel Path // DISPLAY RESULTS disp("EXAMPLE : 4.3 : SOLUTION :-") ; printf("\n (a) Number of the Conductor in Parallel Path , Zc = %.2f Conductors nearly 117 conductors \n ",Zc);
abf0216d0c770b5b84b600fc8bc79593ab017eb4
0fc15a84891f89cb4ea12e22ef6c99e720ac1ecb
/HuffmanCoding.sce
5ee360a1f70b5a2e576600525018812ba9eba734
[]
no_license
ShubhamShirsekar/Huffman-coding
b78f035015a0b83821dff3c3146493c4cd9bb1a6
715e0ad2c34f2a871a6e6ba184ce106bb2ca7c26
refs/heads/main
2023-06-20T16:35:09.205890
2021-07-27T18:20:56
2021-07-27T18:20:56
390,078,467
0
0
null
null
null
null
UTF-8
Scilab
false
false
548
sce
HuffmanCoding.sce
clear all; clc; printf("example"); P_x1 = .4 P_x2 = .19 P_x3 = .16 P_x4 = .15 P_x5 = .1 n1 = 1 n2 = 2 n3 = 2 n4 = 3 n5 = 3 I_x1 = -log2(P_x1); I_x2 = -log2(P_x2); I_x3 = -log2(P_x3); I_x4 = -log2(P_x4); I_x5 = -log2 ( P_x5 ) ; H_x = P_x1*I_x1 + P_x2*I_x2 + P_x3*I_x3 + P_x4*I_x4 + P_x5* I_x5; L1 = P_x1 * 1 + P_x2 * 2 + P_x3 * 2 + P_x4*3 + P_x5 * 3 ; printf("\nlength=%f" ,L1 ) printf("\nEntropy=%f",H_x) eff = H_x/L1; P_eff= eff * 100 printf("\nEffeciency=%2f percent",P_eff)
0573c634dc7bab208e83a039217a482f61d642cc
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/ismaxphase/ismaxphase5.sce
ecf316f6f4f9642afa5660210aa60c06d89e4df2
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
251
sce
ismaxphase5.sce
//no i/p args are passed to the function b=[1.0000 -0.9999]; a=[1.0000 0.4500]; flag2=ismaxphase(); disp(flag2); //output //!--error 10000 //no. of inputs not matching //at line 48 of function ismaxphase called by : //flag2=ismaxphase();
cb390de1b18022f13bd7241fa85e1722d8e76d72
449d555969bfd7befe906877abab098c6e63a0e8
/896/CH6/EX6.5/5.sce
0d6847b9466e742775dfa5f34614d6576649ccff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
448
sce
5.sce
clc //Example 6.5 //Calculate volumetric flow rate of gasoline through a pipe d=0.1//m internal diameter of pipe A=%pi*d^2/4//m^2 dx=100//m length of pipe f=0.005//dimentionless fanning friction factor dz=10//m difference in water level g=9.81//m/s^2 v=((2*g*dz/4/f)*d/dx)^0.5//m/s printf("The velocity of gasoline through pipe is %f m/s\n",v); q=A*v//m^3/s printf("The volumteric flow arte od gasoline through the pipe is %f m^3/s",q);
324a4236d02704ba75f6a2bee79d1f4660bcf30b
449d555969bfd7befe906877abab098c6e63a0e8
/2863/CH2/EX2.35/ex2_35.sce
b8827396477dc7ed4deafb8415a5d60c39d3245d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
170
sce
ex2_35.sce
//chapter 2 printf("\n"); Gt=1.5; Gr=1.5; d=10; Pt=15; f=10^9; c=3*10^8; lamda=c/f; Pr=Pt*Gt*Gr*(lamda/(4*(%pi)*d))^2; printf("the radiated power is %gW",Pr);
0b173ef93b518340abc78e56df18d0162ea9971a
449d555969bfd7befe906877abab098c6e63a0e8
/503/CH8/EX8.16/ch8_16.sci
7a6b480209630dbe23d06400967f2a9c5b982817
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
338
sci
ch8_16.sci
//to find power angle,field current clc; j=sqrt(-1); V=400; Vt=V/sqrt(3); pf=1; Ia=50; Xs=1.3; Ef=Vt-j*Ia*Xs; disp(-atand(imag(Ef)/real(Ef)),'power angle'); Pm=Vt*Ia*pf; pff=.8; Ia=Pm/(Vt*pff); ang=acosd(pff); Eff=sqrt((Vt*cosd(ang))^2+(Vt*sind(ang)+Ia*Xs)^2); If=.9; Iff=If*Eff/abs(Ef); disp(Iff,'field current(A)');
2f24a674d7faaedff296085aefa5392bce34cc43
e4fb5d5b74926250f6730bfa3995e52ea55e4dc4
/examples/dc_motor/dci.tst
b303a0ec4703564bbe707354c4caa0d3b97f9109
[ "BSD-2-Clause" ]
permissive
maxvonhippel/S3CAMX
7629225410eaae455148e7ec0512c9575829b17c
03f63f84e6e1e18598edff52a901f669c2fee342
refs/heads/master
2022-12-07T09:44:14.519479
2016-06-21T05:21:27
2016-06-21T05:21:27
292,167,603
0
0
null
2020-09-02T03:20:25
2020-09-02T03:20:24
null
UTF-8
Scilab
false
false
2,069
tst
dci.tst
delta_t = 0.02 plant_pvt_init_data = None #error_set = [[0.9, 5.5], [1.2, 10.5]] #error_set = [[1.0, 5.5], [1.4, 10.5]] #easy #error_set = [[0.9, 8.0], [1.4, 14.0]] # # P1 # vio = #error_set = [[1.50, 8.0], [2.0, 20.0]] # grid settings: # P2 # vio = 4/1000 # error_set = [[1.5, 8.0], [2.0, 16.0]] # grid settings: # P3: few mins, 1 iter # vio = 7/1000 # error_set = [[1.45, 8.0], [2.0, 16.0]] # grid settings: #tmp prop P4, T = 0.8 [time with plotting = 22m] # grid_eps = 0.01, 0.01 #vio = 132/1000 [time without plotting = 2m] #T = 1.0 #initial_set = [[-0.0, -0.0], [0.0, 0.0]] #error_set = [[1.5, -100], [2.0, 100]] #####tmp prop P4, T = 0.8 [time with plotting = 22m] ###### grid_eps = 0.01, 0.01 #######vio = /1000 [time without plotting = 2m] #######T = 1.0 #######initial_set = [[-0.0, -0.0], [0.0, 0.0]] #######error_set = [[1.5, -100], [2.0, 100]] ######## ci = [[-0.5], [-0.0]] # took 10 mins to violate with plotting on # but 96/100 vio :( # P5 T = 1.0 initial_set = [[-0.0, -0.0], [0.0, 0.0]] ci = [[-0.5], [-0.0]] error_set = [[1.0, 10.0], [1.2, 11.0]] # vio = 0/100k took 45 mins without plotting # symex: falsified in ~2m with/without plotting # took only one iter # needs 2 samples! takes around 92s with and 51s w/o plotting and logging grid_eps = [0.1, 0.1] ci_grid_eps = [0.5] pi_grid_eps = [] min_smt_sample_dist = 0.05 #num_samples = 2 #symex num_samples = 2 #concrete # ss: pending... # error_set = [[1.2, 10], [1.3, 11]] #nahi ho raha! BUT random testing results havent #confirmed if falsification exist initial_discrete_state = [0] initial_controller_integer_state = [] initial_controller_float_state = [0.0] num_control_inputs = 1 # Reference signal \in [0.0, 4.0] # Disturbances ... add later #ci = [[-0.5], [-0.0]] #.65 #.6 pi = [[],[]] MAX_ITER = 6 ################ # Simulators ################ # Plant plant_description = 'python' plant_path = 'dc_motor.py' # Controller controller_path = './dc_motor_controller.so' controller_path_dir_path = './paths' # Conversion CONVERSION_FACTOR = 1.0 refinement_factor = 2.0
7d566172a1057f11830bd7bfc1628ffac4257848
c02a5183ecb8b32e87391dc92c7592fd218b55f0
/02/ZeroNeg16.tst
b1edb336fe1a740f396ac8baea421bc4c11bcc46
[]
no_license
feel-think/nand2tetris
386ad8065c401a5995dbf3a38025417d2ad8125b
819e4efa4aa523a7805c453ddab24c2c16924eee
refs/heads/master
2022-02-11T17:24:01.814746
2019-09-17T08:00:10
2019-09-17T08:00:10
198,190,700
0
0
null
null
null
null
UTF-8
Scilab
false
false
287
tst
ZeroNeg16.tst
load ZeroNeg16.hdl, output-file ZeroNeg16.out, compare-to ZeroNeg16.cmp, output-list in%B1.16.1 z%B2.1.2 n%B2.1.2 out%B1.16.1; set in %B0000000000000101, set z 0, set n 0, eval, output; set z 0, set n 1, eval, output; set z 1, set n 0, eval, output; set z 1, set n 1, eval, output;
474e9a57dbc4c99796db09b0a4d835c7320a93b4
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Target Switch Thin.sce
76f0fc035e61e776a390ee67668dd1dea0104a43
[]
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
59,834
sce
Target Switch Thin.sce
Name=Target Switch Thin PlayerCharacters=Ascended Tracking;TrackPlayer BotCharacters=Bot thin fast.bot IsChallenge=true Timelimit=40.0 PlayerProfile=TrackPlayer AddedBots=Bot thin fast.bot;Bot thin fast.bot;Bot thin fast.bot PlayerMaxLives=0 BotMaxLives=0;0;0 PlayerTeam=1 BotTeams=2;2;2 MapName=boxer2.map MapScale=3.5 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=1.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=true ScoreMultKillEfficiency=false GameTag=Target Switching WeaponHeroTag= DifficultyTag=2 AuthorsTag=R0N BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=true Description=Track 3 thin Targets GameVersion=1.0.8.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=Bot thin fast DodgeProfileNames=Long Strafes 2 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=Thin 2 SeeThroughWalls=false NoDodging=false NoAiming=false [Character Profile] Name=Ascended Tracking MaxHealth=500.0 WeaponProfileNames=;ADSable Hitscan Cone;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1300.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=TrackPlayer MaxHealth=100.0 WeaponProfileNames=LG Strong;Rampart;;;;;; 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=1000.0 MaxCrouchSpeed=500.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.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=false 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=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Thin 2 MaxHealth=300.0 WeaponProfileNames=Railgun;Rocket Launcher;LG;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1300.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=6.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=300.0 MainBBRadius=20.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=300.0 ProjBBRadius=20.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Dodge Profile] Name=Long Strafes 2 MaxTargetDistance=1750.0 MinTargetDistance=500.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.5 MaxLRTimeChange=1.5 MinFBTimeChange=0.5 MaxFBTimeChange=1.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.2 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Weapon Profile] Name=ADSable Hitscan Cone Type=Hitscan ShotsPerClick=10 DamagePerShot=1.0 KnockbackFactor=0.0 TimeBetweenShots=0.02 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=250000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=0.1 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=10.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.0001 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.15 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.05 HitSoundCooldown=0.05 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=4.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot=Alcove Tracking Effect Helper ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.01 HitscanVisualRadius=0.04 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=70.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=true PBS0=0.0,0.0 PBS1=0.0,0.0 PBS2=0.5,45.0 PBS3=0.5,90.0 PBS4=0.5,135.0 PBS5=0.5,180.0 PBS6=0.5,225.0 PBS7=0.5,270.0 PBS8=0.5,315.0 PBS9=0.5,0.0 [Weapon Profile] Name=LG Strong Type=Hitscan ShotsPerClick=1 DamagePerShot=7.0 KnockbackFactor=2.0 TimeBetweenShots=0.03 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=7.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.05 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Rampart Type=Hitscan ShotsPerClick=1 DamagePerShot=70.0 KnockbackFactor=0.1 TimeBetweenShots=0.16 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=3000.0 DamageFalloffStopDistance=5500.0 DamageAtMaxRange=6.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=4.0,15.0,-9.0,2.5 SpreadSCA=4.0,15.0,-9.0,2.5 SpreadMSA=4.0,15.0,-9.0,2.5 SpreadMCA=4.0,15.0,-9.0,2.5 SpreadSSH=4.0,15.0,-9.0,2.5 SpreadSCH=4.0,15.0,-9.0,2.5 SpreadMSH=4.0,15.0,-9.0,2.5 SpreadMCH=4.0,15.0,-9.0,2.5 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.45 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=5.0 AADeadZone=0.0 AAFOV=10.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Railgun Type=Hitscan ShotsPerClick=1 DamagePerShot=80.0 KnockbackFactor=9.0 TimeBetweenShots=1.0 Pierces=true Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Beam ProjectileGraphic=Ball VisualLifetime=0.5 WallParticleEffect=None HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=9.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=1.0,1.0,-1.0,5.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-1.0,5.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.01 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Weapon Profile] Name=Rocket Launcher Type=Projectile ShotsPerClick=1 DamagePerShot=120.0 KnockbackFactor=4.0 TimeBetweenShots=0.8 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=5090.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=5090.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=100.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Rocket VisualLifetime=0.1 WallParticleEffect=Flare HitParticleEffect=Flare BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=2.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 Explosive=true Radius=500.0 DamageAtCenter=120.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=true SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.1 AAMaxSpeed=1.5 AADeadZone=0.0 AAFOV=180.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.001 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=-25.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Weapon Profile] Name=LG Type=Hitscan ShotsPerClick=1 DamagePerShot=6.0 KnockbackFactor=2.0 TimeBetweenShots=0.046 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=7.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.05 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Weapon Profile] Name=Alcove Tracking Effect Helper Type=Projectile ShotsPerClick=1 DamagePerShot=0.0 KnockbackFactor=0.0 TimeBetweenShots=0.12 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=100000.000 Y=-1000.000 Z=-1000.000 MuzzleVelocityMax=X=100000.000 Y=1000.000 Z=1000.000 InheritOwnerVelocity=1.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=0.025 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=0.1 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=0.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=999.0 HitSoundCooldown=999.0 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=2.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=4.0,0.5,2.0,8.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=4.0,0.5,2.0,8.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -576.000000 0.000000 256.000000 448.000000 0.000000 256.000000 448.000000 0.000000 -768.000000 -576.000000 0.000000 -768.000000 -576.000000 -16.000000 256.000000 448.000000 -16.000000 256.000000 448.000000 -16.000000 -768.000000 -576.000000 -16.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 -576.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 448.000000 0.000000 -784.000000 -576.000000 0.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 0.000000 272.000000 448.000000 0.000000 272.000000 448.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 0.000000 256.000000 464.000000 0.000000 256.000000 464.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 -592.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 -576.000000 0.000000 -768.000000 -592.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 704.000000 -768.000000 -592.000000 704.000000 -768.000000 -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 448.000000 704.000000 256.000000 464.000000 704.000000 256.000000 464.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 704.000000 -784.000000 -576.000000 704.000000 -784.000000 -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 272.000000 448.000000 704.000000 272.000000 448.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 720.000000 256.000000 448.000000 720.000000 256.000000 448.000000 720.000000 -768.000000 -576.000000 720.000000 -768.000000 -576.000000 704.000000 256.000000 448.000000 704.000000 256.000000 448.000000 704.000000 -768.000000 -576.000000 704.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -128.000000 16.000000 -320.000000 0.000000 16.000000 -320.000000 0.000000 16.000000 -336.000000 -128.000000 16.000000 -336.000000 -128.000000 0.000000 -320.000000 0.000000 0.000000 -320.000000 0.000000 0.000000 -336.000000 -128.000000 0.000000 -336.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 0.000000 16.000000 -192.000000 16.000000 16.000000 -192.000000 16.000000 16.000000 -320.000000 0.000000 16.000000 -320.000000 0.000000 0.000000 -192.000000 16.000000 0.000000 -192.000000 16.000000 0.000000 -320.000000 0.000000 0.000000 -320.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 -144.000000 16.000000 -192.000000 -128.000000 16.000000 -192.000000 -128.000000 16.000000 -320.000000 -144.000000 16.000000 -320.000000 -144.000000 0.000000 -192.000000 -128.000000 0.000000 -192.000000 -128.000000 0.000000 -320.000000 -144.000000 0.000000 -320.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 -128.000000 16.000000 -176.000000 0.000000 16.000000 -176.000000 0.000000 16.000000 -192.000000 -128.000000 16.000000 -192.000000 -128.000000 0.000000 -176.000000 0.000000 0.000000 -176.000000 0.000000 0.000000 -192.000000 -128.000000 0.000000 -192.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 0.000000 16.000000 -176.000000 0.000000 0.000000 -192.000000 16.000000 16.000000 -192.000000 0.000000 0.000000 -176.000000 16.000000 0.000000 -192.000000 0.000000 16.000000 -192.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000 brush vertices -128.000000 0.000000 -176.000000 -128.000000 16.000000 -176.000000 -128.000000 16.000000 -192.000000 -144.000000 0.000000 -192.000000 -128.000000 0.000000 -192.000000 -144.000000 16.000000 -192.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 -144.000000 16.000000 -320.000000 -128.000000 16.000000 -320.000000 -128.000000 16.000000 -336.000000 -144.000000 0.000000 -320.000000 -128.000000 0.000000 -336.000000 -128.000000 0.000000 -320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0x00000000 brush vertices 0.000000 16.000000 -320.000000 16.000000 16.000000 -320.000000 0.000000 0.000000 -336.000000 0.000000 0.000000 -320.000000 16.000000 0.000000 -320.000000 0.000000 16.000000 -336.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 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000 brush vertices 0.000000 704.000000 -192.000000 16.000000 704.000000 -192.000000 16.000000 704.000000 -320.000000 0.000000 704.000000 -320.000000 0.000000 16.000000 -192.000000 16.000000 16.000000 -192.000000 16.000000 16.000000 -320.000000 0.000000 16.000000 -320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip brush vertices -144.000000 704.000000 -192.000000 -128.000000 704.000000 -192.000000 -128.000000 704.000000 -320.000000 -144.000000 704.000000 -320.000000 -144.000000 16.000000 -192.000000 -128.000000 16.000000 -192.000000 -128.000000 16.000000 -320.000000 -144.000000 16.000000 -320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip brush vertices -128.000000 704.000000 -320.000000 0.000000 704.000000 -320.000000 0.000000 704.000000 -336.000000 -128.000000 704.000000 -336.000000 -128.000000 16.000000 -320.000000 0.000000 16.000000 -320.000000 0.000000 16.000000 -336.000000 -128.000000 16.000000 -336.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip brush vertices -128.000000 704.000000 -176.000000 0.000000 704.000000 -176.000000 0.000000 704.000000 -192.000000 -128.000000 704.000000 -192.000000 -128.000000 16.000000 -176.000000 0.000000 16.000000 -176.000000 0.000000 16.000000 -192.000000 -128.000000 16.000000 -192.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip brush vertices 0.000000 704.000000 -176.000000 0.000000 16.000000 -192.000000 16.000000 704.000000 -192.000000 0.000000 16.000000 -176.000000 16.000000 16.000000 -192.000000 0.000000 704.000000 -192.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0xff8f7d6a internal/editor/textures/editor_clip brush vertices -128.000000 16.000000 -176.000000 -128.000000 704.000000 -176.000000 -128.000000 704.000000 -192.000000 -144.000000 16.000000 -192.000000 -128.000000 16.000000 -192.000000 -144.000000 704.000000 -192.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0xff8f7d6a internal/editor/textures/editor_clip brush vertices -144.000000 704.000000 -320.000000 -128.000000 704.000000 -320.000000 -128.000000 704.000000 -336.000000 -144.000000 16.000000 -320.000000 -128.000000 16.000000 -336.000000 -128.000000 16.000000 -320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0xff8f7d6a internal/editor/textures/editor_clip brush vertices 0.000000 704.000000 -320.000000 16.000000 704.000000 -320.000000 0.000000 16.000000 -336.000000 0.000000 16.000000 -320.000000 16.000000 16.000000 -320.000000 0.000000 704.000000 -336.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0xff8f7d6a internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0xff8f7d6a internal/editor/textures/editor_clip brush vertices -576.000000 272.000000 -704.000000 -576.000000 0.000000 -768.000000 -512.000000 272.000000 -768.000000 -576.000000 0.000000 -704.000000 -512.000000 0.000000 -768.000000 -576.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000 brush vertices 384.000000 0.000000 -768.000000 448.000000 272.000000 -704.000000 448.000000 272.000000 -768.000000 448.000000 0.000000 -704.000000 448.000000 0.000000 -768.000000 384.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 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 3 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000 brush vertices -576.000000 272.000000 256.000000 -512.000000 272.000000 256.000000 -576.000000 -16.000000 192.000000 -576.000000 -16.000000 256.000000 -512.000000 -16.000000 256.000000 -576.000000 272.000000 192.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 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000 brush vertices 384.000000 272.000000 256.000000 448.000000 272.000000 256.000000 448.000000 272.000000 192.000000 384.000000 -16.000000 256.000000 448.000000 -16.000000 192.000000 448.000000 -16.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0x00000000 entity type PlayerSpawn Vector3 position -64.000000 0.000000 -736.000000 Bool8 teamA 0 entity type CameraPath UInt32 entityIdAttachedTo 5 UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 352.000000 256.000000 224.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -64.000000 0.000000 224.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 416.000000 0.000000 -256.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -544.000000 0.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -64.000000 0.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamB 0
540699966c09e43d8a30de3ea1d652d12d705568
449d555969bfd7befe906877abab098c6e63a0e8
/331/CH3/EX3.9/Example_3_9.sce
ec6abb533348aa974c234a6556d55399f4307eca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
452
sce
Example_3_9.sce
//Caption: Mode of ungrouped data //Example3.9 //Page47 clear; clc; X = input('Number of Defects ='); f = input('Number of samples ='); [Mode,i]= max(f); disp(X(i),'The mode of No. of Defects ='); disp(f(i),'because it has maximum frequency of =') //Result //Number of Defects =[5,8,9,10,12,15,17] //Number of samples =[1,1,2,1,3,1,1] // // The mode of No. of Defects = // // 12. // // because it has maximum frequency of = // // 3.
18e069842e2b535a88b3e3812717256e11f0967d
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.2/Unix/scilab-2.2/macros/percent/%srp.sci
733b207478c9be6a6e7297467e6d01c497c5e48a
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
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
168
sci
%srp.sci
function [f]=%srp(m,p) //f=M/p M:scalar matrix p=polynomial //! if prod(size(p)) <> 1 then f=m*invr(p),return,end [l,c]=size(m) f=simp(tlist('r',m,p*ones(l,c),[]))
5a2afa45c408702a0dce1a51f789cb1ea2b1e324
449d555969bfd7befe906877abab098c6e63a0e8
/2150/CH3/EX3.9/ex3_9.sce
9a281174b142c2d262cd94a0a497d965b0f02ac7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
391
sce
ex3_9.sce
// Exa 3.9 clc; clear; close; // Given data V_Z = 20;// in V R_L = 1.2;// in K ohm R_L = R_L * 10^3;// in ohm R = 220;// in ohm I_ZM = 60;// in mA I_ZM= I_ZM*10^-3;// in A Vi_min = (R_L + R)/R_L*V_Z;// in V disp(Vi_min,"The minimum value of Vi in V is"); V_L= V_Z;// in V I_L= V_L/R_L;// in A Vi_max= (I_ZM+I_L)*R+V_Z;// in V disp(Vi_max,"The maximum value of Vi in V is");
30f9911305f3a0090028f030fc5e4aef04aa0b24
ac1f8441b0319b4a391cd5a959bd3bb7988edfa7
/data/news2015/news2015/SplitsNEWS15/EnBa/enba.1.tst
4f1e320221a4450f5b78857dcf16767849ff1de9
[ "MIT" ]
permissive
SaeedNajafi/transliterator
4d58b8604fa31f52ee2dce7845e002a18214fd5e
523a087b777a5d6eec041165dabb43848f6222e6
refs/heads/master
2021-09-18T17:02:59.083727
2018-07-17T06:01:21
2018-07-17T06:01:21
129,796,130
0
0
null
null
null
null
UTF-8
Scilab
false
false
53,862
tst
enba.1.tst
a a t i s h আ ত ী শ a b a n i k u m a r অ ব ন ী ক ু ম া র a b d u l r a h i m আ ব দ ু ল র হ ি ম a b h a আ ভ া a b h i r u p অ ভ ি র ূ প a b i n g t o n আ ব ি ং ট ন a b u l h o s e n আ ব ু ল হ ো স ে ন a b u n d a n t আ ব ু ন ড া ন ্ ট a c h a l d a অ চ ল দ া a c k l a n d আ ক ল ্ য া ন ্ ড a c t i n i u m অ ্ য া ক ট ি ন ি য় া ম a d a r i আ দ র ি a d d i s আ দ ্ দ ি স a d r i a t i c অ ্ য া ড ্ র ি য় া ট ি ক a e r o b i c s আ র ো ব ি ক ্ স a f j a l আ ফ জ ল a f r o j a আ ফ র ো জ া a f s a r i আ ফ স া র ী a g a m e m n o n আ গ া ম ে ম ো ন a g a r k a r অ গ র ক া র a g a r k a r আ গ র ক র a h a m e d আ হ ম ে দ a h a n a অ হ ন া a h a n n a n আ ঃ হ া ন ্ ন া ন a i r m a n s এ য় া র ম ্ য া ন স a j a a d আ জ া দ a j i m a b e g a m আ জ ি ম া ব ে গ ম a j i t e s h অ জ ি ত ে শ a j i t k u m a r অ জ ি ত ক ু ম া র a k a d e m i এ ক া ড ে ম ি a k b a r আ ক ব র a k h i l r a n j a n অ খ ি ল র ঞ ্ জ ন a k i আ ক ি a k r a m a l i আ ক ্ র া ম আ ল ি a k r o n আ ক র ন a k t a r i b e g a m আ ক ত া র ি ব ে গ ম a k t i e n g e s e l l s c h a f t অ ্ য া ক ত ি য় ে ন জ ে স ে ল স চ ্ য া ফ ট a l আ ল a l a m o আ ল ম ো a l a z u d d i n আ ল া ঊ দ ্ দ ি ন a l d e r m a n আ ল ্ ড ্ র ে ম ্ য া ন a l e g r i a s অ ্ য া ল ে গ ্ র ি য় া স a l i a k b a r আ ল ি আ ক ব র a l i f আ ল ি ফ a l i m আ ল ি ম a l l a r a k h a আ ল ্ ল া র া খ া a l u a b a r i আ ল ু য় া ব া র ী a l u m i n i u অ ্ য া ল ু ম ি ন ি য় া ম a l w o r k অ ল ও য় া র ্ ক a m a n d a আ ম া ন ্ ড া a m a n u l l a আ ম া ন উ ল ্ ল া a m a r d i p অ ম র দ ী প a m a r e n d u অ ম র ে ন ্ দ ু a m b a l a p u z h a আ ম ব া ল া প ু জ হ া a m b i k a অ ম ্ ব ি ক া a m i n a k h a t u n আ ম ি ন া খ া ত ু ন a m i r আ ম ি র a m i r u l l a আ ম ি র ু ল ্ ল া a m l i অ ম ল ি a m r i t s a r অ ম ৃ ত স র a m u r আ ম ু র a m y অ ্ য া ম ি a n a m a t আ ন া ম ত a n a n t a d e b i অ ন ন ্ ত দ ে ব a n a n t l a l অ ন ন ্ ত ল া ল a n a p a r t i আ ন া প া ট ি a n g a m a l i অ ঙ ্ গ ম া ল ি a n g l o অ ্ য া ং ল ো a n i t a r a n i অ ন ি ত া র া ণ ী a n j u s h r e e অ ঞ ্ জ ু শ ্ র ী a n k h i আ ঁ খ ি a n k l e s h w a r আ ঙ ্ ক ে ল ে শ ্ ব র a n n a b a l a অ ন ্ ন ব া ল া a n n a p u r n a অ ন ্ ন প ূ র ্ ণ া a n s e l l অ ্ য া ন স ে ল a n t h o n y আ ন থ ো ন ি a n t i m o n y অ ্ য া ন ি ম ন ি a n u b h a অ ন ু ভ া a n u b h a r a n i অ ন ু ভ া র া ন ী a p s a r a অ প ্ স র া a r a k o n i আ র া ক ো ন ি a r c o l a b আ র ক ো ল ্ য া ব a r f a b i b i আ র ফ া ব ি ব ি a r m a n d আ র ্ ম ন ্ ড a s a d আ স া দ a s a h i আ শ া হ ি a s h a আ শ া a s h r a f u l আ স র া ফ ু ল a s i a এ শ ি য় া a s i t a b h a অ স ি ত া ভ a s n o t i আ স ন ো ত ি a s r a p h u l h a k আ স র া ফ ু ল হ ক a s s a m আ স া ম a s t l e আ স ্ ট ে ল a s t o n আ স ্ ট ো ন a s t r a অ ্ য া স ্ ট ্ র া a t a r r a আ ট া র া a t a s i অ ত স ী a t h a w a l e আ থ য় া ও য় া ল ে a t h e n s আ থ ে ন ্ স a t r u আ ট ্ র ু a t t a l a আ ট ্ ট া ল া a t u l k u m a r অ ত ু ল ক ু ম া র a u g u s t a আ গ া স ্ ত a u r u m অ র া ম a u s t r a l i a n অ স ্ ট ্ র ে ল ি য় া ন a v i n a n d a n অ ভ ি ন ন ্ দ ন a v i z আ ভ ি জ a z m a t আ জ ম া ত b a b a ব া ব া b a b a j i ব া ব া জ ী b a b e l ব া ব ে ল b a b l i ব া ব ল ি b a b l i ব া ব ল ী b a b u i ব া ব ু ই b a b u l c h a n d r a ব া ব ু ল চ ন ্ দ ্ র b a b u n ব া ব ু ন b a b u s w a r ব া ব ু শ ্ ব র b a c c h u s ব া চ ু স b a d a l c h a n d r a ব া দ ল চ ন ্ দ ্ র b a d a m p a h a r ব া দ া ম প া হ া ড় b a d e l ব া দ ে ল b a h a r a ব া হ া র া b a j v a ব া জ ভ া b a k h t ভ ক ্ ত b a k i r ব া ক ি র b a l a i ব ল া ই b a l i l ব া ল ি ল b a l l i ব া ল ্ ল ি b a m h r a u l i ব া ম হ র া ও ল ি b a m l a ব া ম ল া b a n a s k a n t h a ব া ন া স ক া ন ্ থ া b a n d a r a ভ া ন ্ ড া র া b a n d i t a ব ন ্ দ ি ত া b a n d u g a r ব া ন দ ু গ র b a n i p r a s a d ব া ন ী প ্ র স া দ b a n t a w a l a ব ন ত য় া ল া b a n u b e g a m ব া ন ু ব ে গ ম b a p t i s t ব ্ য া প ি স ্ ট b a r a m e s h w a r ব র ম ে শ ্ ব র b a r a n o f ব া র া ন ফ b a r e i l l y ব া র ি ই ল ্ ল ি b a r e i l l y ব া র ে ল ি b a r i d a ব া র ি দ া b a r i d b a r a n ব া র ি দ ব র ণ b a r i l a ব া র ি ল া b a r s h a ব র ্ ষ া b a r s h a n ব র ্ ষ ন b a r t o n ব া র ্ ট ো ন b a s a n a ব া স ন া b a s a r a t a l i ব া স া র ত আ ল ী b a s i r a n ব স ি র া ন b a s u b a l a ব া স ু ব া ল া b a t a l a ব া ত া ল া b a t i l a ব ত ি ল া b a u m g a r t e n ব া উ ম গ া র ্ ট ে ন b a x u r ব ক ্ স া র b a y e r ব া য় ে র b e b i n a ব ে ব ি ন া b e h a r ব ি হ া র b e l e s h u n ব ে ল ে শ ু ন b e l l e v u e ব ে ল ভ ি উ b e l p r e ব ে ল ্ প ে b e n s o n v a l e ব ে ন স ো ন ভ া ল b e n t ব ে ন ্ ট b e o h a r i ব ি ও হ া র ি b e s t ব ে স ্ ট b e t h e l ব ে থ ে ল b e t t i e ব ে ট ি b e v ব ে ভ b h a b a s i n d h u ভ ব স ি ন ্ ধ ু b h a d r a k h ভ দ ্ র ক b h a d r a n ভ া দ র া ন b h a g a b a t i d e v i ভ গ ব ত ী দ ে ব ী b h a i n i ভ ৈ ন ি b h a k t a d a s ভ ক ্ ত দ া স b h a k t a p a d a ভ ক ্ ত প দ b h a m r a ভ া ম র া b h a n d a r i ভ া ন ড া র ি b h a r a t i ভ া র ত ি b h a r a t i b a l a ভ া র ত ী ব া ল া b h a r a t k u m a r ভ র ত ক ু ম া র b h a r a t n a t y a m ভ া র ত ন া ট ্ য ম b h a s w a t i ভ া স ্ ব ত ী b h a t n a g a r ভ া ট ন গ র b h a t p a r ভ া ত প া র b h i m l a ভ ি ম ল া b h r a m r i ভ ্ র ম র ী b h u b a n c h a n d r a ভ ু ব ন চ ন ্ দ ্ র b h u b a n e s w a r i ভ ূ ব ন ে শ ্ ব র ী b h u k h l i ভ ু খ ল ী b h u k h l i ভ ূ খ ল ী b h u n c h ভ ূ ন ্ ছ b h u s h a n ভ ু ষ ণ b h u s h a n ভ ূ ষ ণ b h u t n a t h ভ ু ত ন া থ b i c h i a ব ি ছ ি য় া b i d h a n c h a n d r a ব ি ধ া ন চ ন ্ দ ্ র b i e s b r o e c k ব ি স ব ্ র ো য় ে ক b i j a n b a l a ব ি জ ন ব া ল া b i j a y k r i s h n a ব ি জ য ক ৃ ষ ্ ণ b i j e n d a r ব ি জ ে ন ্ দ র b i k a l a ব ি ক ল া b i k a n e r ব ি ক া ন ে র b i l a s h i ব ি ল া শ ী b i l a s p u r ব ি ল া স প ু র b i n a p a n i ব ি ন া প া ন ি b i n a r a n i ব ী ণ া র া ণ ী b i n d a r a n i ব ি ন ্ দ া র া ন ী b i n d u r a n i ব ি ন ্ দ ু র া ন ী b i n o d k u m a r ব ি ন ো দ ক ু ম া র b i p a t t a r a n ব ি প ত ্ ত া র ণ b i p u l ব ি প ু ল b i r l a ব ি ড় ল া b i r o j a ব ি র ো জ া b i r o l i y a ব ি র ো ল ি য় া b i s h e s w a r ব ি শ ে শ ্ ব র b i s h w a r u p ব ি শ ্ ব র ু প b i s m i l a ব ি স ম ল ্ ল া b l e a c h ব ্ ল ি চ b o b b i l i ব ো ব ্ ব ি ল ি b o d a n i ব ো দ ন ী b o d y ব ড ি b o g o t a ব ো গ ো ট া b o i s a r ব ৈ স া র b o k a r ব ক া র b o k i l ও ক ী ল b o l d a ব ো ল দ া b o m k e s h ব ো ম ক ে শ b o o g i e ব ু গ ি b o o k ব ু ক b o o m p s ব ো ম ্ প স b o s q u e ব স ্ ক ি উ b o s s a ব ো স া b o u n ব ো ন b r a j a ব ্ র জ b r a j a b a s i ব ্ র জ ব া স ী b r a n c h ব ্ র া ঞ ্ চ b r a s i l i a ব ্ র া স ি ল ি য় া b r a y l a ব ্ র ে ল া b r i c k ব ্ র ি ক ্ b r i j a n a t h ব ্ র ি জ ন া থ b r i t i s h ব ্ র ি ট ি শ b r o s s n a n ব ্ র ো স ন ন b u g i b a l a ব ু গ ী ব া ল া b u j u b a l a ব ু জ ু ব া ল া b u k a i ব ু ক া ই b u l a ব ু ল া b u l g a n i ব ু ল গ া ন ি b u l u b a l a ব ু ল ু ব া ল া b u n d y ব া ন ্ ড ি b u r j a n ব ু র জ া ন b u y ব া ই c a b o t ক া ব ো ট c a d d i c k ক া ড ্ ড ি ক c a i m a n ক া ই ম ্ য া ন c a l i f o r n i u m ক ্ য া ল ি ফ ো র ্ ন ি য় া ম c a l i n ক া ল ি ন c a m e r o o n ক ্ য া ম ে র ু ন c a m o e s ক া ম ো স c a n a d a ক া ন া ড া c a n s a u l i m ক ্ য া ন স া উ ল ি ম c a p r i o ক ্ য া প ্ র ি ও c a r b o r u n d u m ক া র ্ ব ো র া ন ্ ড া ম c a r d i f f ক া র ্ ড ি ফ c a r i b e ক ্ য া র ি ব ি c a r r y ক ্ য া র ি c a s c a d e ক ্ য া স ক ে ড c e l e b r a t i o n স ে ল ি ব ্ র ে শ া ন c e l l u l a r স ে ল ু ল া র c e r i u m স ে র ি য় া ম c e r r o স ে র ো c h a k r a v a r t y চ ক ্ র ব র ্ ত ী c h a m b a চ া ম ্ ব া c h a n d e r i y a চ া ন ্ দ ে র ি য় া c h a n d i c h a r a n চ ন ্ ড ী চ র ণ c h a n d i l চ া ন ্ ড ি ল c h a n d i s a r চ া ন ্ দ ি স া র c h a n d r a b h a n চ ন ্ দ ্ র ভ া ন c h a n d r a m a চ ন ্ দ ্ র ম া c h a n d r a n a চ ন ্ দ ্ র ন া c h a r a n চ র ণ c h a r l চ া র ্ ল c h a t e চ া ত ে c h a t t e r g o o n চ া ট ্ ট ে র গ ু ন c h a t t e r j e e চ ্ য া র ্ ট া জ ি c h a t u r b h u j চ ত ু র ্ ভ ূ জ c h a u d u r y চ ৌ ধ ু র ী c h a u n r a h চ ৌ ন র া c h a u r a s i a চ ৌ র া শ ি য় া c h e k o v চ ে ক ো ভ c h e m b u r চ ে ম ্ ব ু র c h e m i c a l ক ে ম ি ক ্ য া ল স c h h i n d w a r a ছ ি ন ্ দ ও য় া র া c h h o t t u ছ ো ট ্ ট ু c h i n t a p a l l i চ ি ন ্ ত া প ল ্ ল ী c h i r a l a চ ি র া ল া c h i t a m a n i চ ি ত া ম ন ি c h i t a p u r চ ি ত া প ু র c h i z a m i চ ি জ া ম ি c h o h t a n চ ো হ ত া ন c h o w k i চ ৌ ক ি c h r i s t m a s ক ্ র ি স ম া স c h r o m i u m ক ্ র ো ম ি য় া ম c h u n e k a r চ ু ন ে ক র c h u n g চ া ঙ ্ গ c h u n n i চ ু ন ্ ন ী c i t y s p i r e স ি ট ি স ্ প া য় র c i v i l স ি ভ ি ল c o b a l t ক ো ব া ল ্ ট c o l l i e r ক ো ল ি য় া র c o m m u n i t y ক ো ম ু ন ি ট ি c o n d e c o r a c i o n ক ো ন ্ ড ে ক ো র া স ি য় া ন c o n s t a n t i n o p l e ক ন ্ স ট ্ য া ন ্ ট ি ন ো প ল c o n s t r u c t i o n ক ন স ্ ট ্ র া ক শ ন c o n t r o l s ক ন ্ ট ্ র ো ল স c o r f u ক ো র ্ ফ ু c o r t l a n d ক ো র ্ ট ল ্ য া ন ্ ড c o t c h e r y ক ো ট চ ে র ি c o t t l e ক ো ট ল ে c o u n t r y w i d e ক া ন ্ ট ্ র ি ও য় া ই ড c o u n t y ক া ন ্ ট ী c r e s c e n t ক ্ র ি স ে ন ্ ট c r e s u d ক ্ র ে স া ড c r i m e a n ক ্ র ি ম ে ন c r o n o s ক ্ র ো ন ো স c r o s b y ক ্ র ো স ব ে c u m m i n g ক ু ম ি ঙ ্ গ c u r l i n g ক া র ল ি ং d a a d দ ্ দ া দ d a b t a r a দ া ব ত া র া d a d e n g g i r i দ া দ ে ঙ ্ গ গ ি র ি d a n o n e দ া ন ো ন ে d a p o l i দ া প ো ল ি d a r t ড া র ্ ট d a r y l l ড া র ি ল ্ ল d a s দ া স d a t a ড ে ট া d a t a g a n j দ া ত া গ ঞ ্ জ d e b i d a s i দ ে ব ী দ া স ী d e b i p r a s a d দ ে ব ী প ্ র স া দ d e b j i t দ ে ব জ ী ত ্ d e b n a r a y a n দ ে ব ন া র া য ণ d e h r a b a d দ ে হ র া ব া দ d e h r a d u n দ ে র া দ ু ন d e l t a ড ে ল ্ ট া d e l u i s e ড ে ল ু ই স ে d e n t a m দ ে ন ্ ত া ম d e o g a r h দ ি ও গ ড় d e s h a b i m a n i দ ে শ ব ি ম া ন ি d e s w e l l ড ে স ও য় ে ল d e t r o i t ড ে ট ্ র ো ই ট d e u t s c h e ড া চ ে স d e v k u m a r দ ে ব ক ু ম া র d h a d h r i a ধ া ধ র ী য় া d h a l a i b i l ধ া ল া ই ব ি ল d h a m i j a ধ া ম ি জ া d h a n a b a t i ধ ন ব ত ী d h a n d a r i ধ া ন দ া র ি d h a n i ধ া ন ি d h a n i r a m ধ ন ী র া ম d h a n s i n g ধ ন স ি ং d h a r ধ র d h a r a m p u r ধ র ম প ু র d h a r a m p u r i ধ র ্ ম প ু র ি d h a r m a n a g a r ধ র ্ ম ন গ র d h a r n a o d a ধ র ন া ও দ া d h o n d i ধ ো ন ্ দ ি d h u n i ধ ু ন ী d i a b l o ড া য় া ব ল ো d i l e s w a r দ ি ল ে শ ্ ব র d i p দ ী প d i s q u e ড ে স ্ ক ু d i v a n ড ি ভ া ন d i x ড ি ক ্ স d o d b a l l a p u r ড ো দ ব া ল ্ ল প ু র d o h a r a দ ো হ া র া d o m i n i o n ড ো ম ি ন ি ও ন d o u l l ড ু ল ্ ল d r u m s ড ্ র ু ম স d u a r দ ু য া র d u b i a দ ু ব ি আ d u k h i দ ু খ ী d u l a l k r i s h n a দ ু ল া ল ক ৃ ষ ্ ণ d u l a l k u m a r দ ু ল া ল ক ু ম া র d u l a r i দ ু ল া র ী d u l l a h a p u r দ ু ল ্ ল া হ প ু র d u r g a n a n d a দ ু র ্ গ া ন ন ্ দ d u r g a r a n i দ ু র ্ গ া র া ণ ী d w i j u দ ্ ব ি জ ু e a s t l a n d ই স ্ ট ল ্ য া ন ্ ড e b a d u l l a এ ব া দ ু ল ্ ল া e c h o এ ক ো e d w a r d এ ড ও য় া র ্ ড e h s a n u l ঈ স া ন ু ল e i s n e r ই জ ন া র e l d e r এ ল ্ ড া র e l e n a এ ল ে ন া e l e p h a n t এ ল ি ফ ্ য া ন ্ ট e l g i এ ল গ ি e l k এ ল ্ ক e q u i p m e n t s ই ক ু ই প ম ে ন ্ ট স e r r o l এ র ো ল e u r o p a ই উ র ো প e u r o t r u s t ই উ র ো ট ্ র া স ্ ট e v a n g e l ই ভ া ঞ ্ জ ে ল e w i n g ঈ উ ই ঙ ্ ক e y e d আ ই ড f a a k h r u d d i n ফ া র ু ক উ দ ্ দ ি ন f a i s a l i a h ফ া য় স া ল ি f a i z a b a d ফ ৈ জ া ব া দ f a k h r a b a d ফ া খ র া ব া দ f a k r u d d i n ফ া র ু ক উ দ ্ দ ি ন f a r h a t ফ া র হ া ত f a s t e n e r s ফ া স ্ ট ন া র স f a t a r f o d ফ া ট া র ফ ো ড f a t h o m ফ ্ য া দ ম f e r d i n a n d ফ া র ্ দ ি ন া ন ্ দ f e r g u s o n ফ া র ্ গ ু স ন f i c t i o n ফ ি ক শ া ন f i l i b e r t o ফ ি ল ি ব া র ্ ত ো f i n a n c i e r o ফ ্ র ্ য া ন ্ স ি য় া র ো f i r j a ফ ি র জ া f i r o j a b i b i ফ ি র ো জ া ব ি ব ি f i s h i n g ফ ি স ি ং f l a m e l ফ ্ ল ে ম ে ল f l a n d r e ফ ্ র া ন ড ্ র ে f l o w e r ফ ্ ল া ও য় া র f l u g e l h o r n ফ ্ ল ু গ ে ল ো র ্ ন f o c h ফ ো চ f o r b e s ফ ো র ্ ব ে স f o r t u m ফ ো র ্ ট া ম f o u d r e ফ ৌ ড র ে f r a n c i u m ফ ্ র া ন স ি য় া ম f r a n k l i n ফ ্ র া ঙ ্ ক ল ি ঙ ্ ক f r a n z ফ ্ র া ঞ ্ জ f r i s s i r a s ফ ্ র ি স ্ স ি র া স f u t k i ফ ু ট ক ী f u t u r e ফ ি উ চ া র g a d a i গ দ া ই g a l l i u m জ ে ল ি য় া ম g a m b i a গ া ম ্ ব ি য় া g a m b l e গ ্ য া ম ্ ব ে ল g a n a d e v গ ন দ ে ব g a n a p a t i গ ন প ত ি g a n d h i গ া ন ্ ধ ী g a n e s h গ ন ে শ g a n s e v o o r t গ া ন স ি ভ ো র ্ ট g a r e t h গ র ে থ g a r h b e t a গ ড় ব ে ত া g a r n e t গ া র ্ ন ে ট g a u l l e গ ল ে g a u r a গ ৌ র া g a u t a m p u r a গ ৌ ত ম প ু র া g a v a s k a r গ া ভ া স ্ ক া র g a y d a গ া ই ড া g e n t i u m জ ে ন ্ ট ি য় া ম g e r a l d i n e জ ি র া ল দ ি ন ে g h a n a ঘ া ন া g h a n e s h y a m ঘ ন ে শ ্ য় া ম g h a n t a s w a r ঘ ন ্ ট ে শ ্ ব র g h a v r i গ া ভ র ি g h e n t u ঘ ে ঁ ট ু g i b s o n গ ি ব স ন g i l a n i গ ি ল া ন ি g i r i j a গ ি র ি জ া g l a c i e r গ ্ ল ে স ি য় া র g l e n v e a g h গ ্ ল ে ন ভ ে ঘ g l o b e গ ্ ল ো ব g o d d a গ ো দ ্ দ া g o d e গ ো ড় ে g o d s e গ ড স ে g o l a গ ো ল া g o l d m a n গ ো ল ্ ড ম ্ য া ন g o l e গ ো ল ি g o m a t i গ ো ম ো ত ি g o m u k h i n a d h i গ ো ম ু খ ি ন া দ হ ি g o o d w i n গ ু ড উ ই ন g o o n a s e k e r a গ ু ন া স ে ক ে র া g o o t y গ ো ট ী g o p a l গ ো প া ল g o p a l i গ ো প া ল ী g o s a i গ ো স া ই g o t e g a o n গ ো ত ি গ া ঁ ও g o u r m o h a n গ ৌ র ম ো হ ন g r a n d গ ্ র া ন ্ ড g r a w e m e y e r গ ্ র া ও য় ে ম া র g r e a v e s গ ্ র ি ভ স g r e e k গ ্ র ী ক g u j a r a t গ ু জ র া ট g u l a o t h i গ ু ল া ও থ ি g u l a r b h o j গ ু ল া র ভ ো জ g u l b a r g a গ ু ল ব া র ্ গ া g u m i a গ ু ম ি য় া g u n a d h a r গ ু ণ ধ র g u r m i t গ ু র ম ি ত g u r u d a s i গ ু র ু দ া স ী g u r u p a d a গ ু র প দ g w a l p a d a গ ো য় া ল প া ড় া g é n é r a l e জ ে ন া র ে ল h a b i b a b i b i হ া ব ি ব া ব ি ব ি h a b i b u l হ া ব ি ব ু ল h a l f হ ফ h a m e d a l i হ া ম ে দ আ ল ি h a m i l t o n হ ্ য া ম ি ল ট ন h a m z a h হ া ম জ হ h a n i f a হ া ন ি ফ া h a n n a n হ া ন ্ ন া ন h a r i b a n s h হ র ি ব ং শ h a r i n a r a y a n হ র ি ন া র া য় ণ h a r u n a l i হ া র ু ন আ ল ি h a y e s হ া য় ে স h e e m s k e r c k হ ে ম স ক ে ক ্ র h e k h m a t a l i হ ে ক ম ত আ ল ি h e l l s হ ে ল স h e s s e l l হ ে স ে ল h e s s e n হ ে স ে ন h i m a t s i n g k a হ ি ম া ত স ি ং ক া h i r e n d r a হ ী র ে ন ্ দ ্ র h i y a t a l i হ ি য া ত আ ল ি h o g a n হ ো গ ন h o g g a r d হ ো গ া র ্ ড h o l s t e i n হ ো ল স ্ ট ে ন h o r e n a t h হ র ে ন া থ h o s e n a হ ো স ে ন া h o t e l হ ো ট ে ল h o u g h t o n হ ো গ ট ো ন h u b b e r s t o n e হ া র ্ ব া র স ্ ট ো ন h u s n e y a r a b i b i হ ু স ন ে আ র া ব ি ব ি i ১ i a l i ল া ল ি i c a h n ই ক া হ ন i c o n আ ই ক ন i d r a n i l ই ন ্ দ ্ র ন ী ল i g n o s h ই গ ন ো স i g u a c u ই গ ু য় া ক ু i j a z ল জ া জ i m a m ই ম া ম i m a x আ ই ম ্ য া ক ্ স i n d e f a t i g a b l e ই ন ্ ড ে ফ ্ য া ট ি জ ে ব ল i n d e m n i t y ই ন ড ে ম ন ি ট ি i n d i a n a p o l i s ই ন ্ ড ি য় া ন া প ো ল ি স i n d r a d e o ই ন ্ দ ্ র দ ে ও i n d u ই ন ্ দ ু i n d u b h u s h a n ই ন ্ দ ু ভ ূ ষ ণ i n d u s t r i e ই ন ্ ড ্ র া স ্ ট ্ র ি i o d i n e আ য় ো ড ি ন i o w a ল ো ও য় া i r f a n ই র ফ া ন i r o n আ য় র ন i s m a t a r a ই স ম া ত া র া i t a n a g a r ই ট া ন গ র j a a m d a r জ া ম দ া র j a c o b জ ্ য া ক ব j a g a n n a t h জ গ ন ্ ন া থ j a g d e o জ গ দ ে ও j a g d i p জ গ দ ী প j a h e r u n জ া হ ে র ু ন j a i d e v জ য় দ ে ব j a i p r a k a s h জ য় প ্ র ক া শ j a m a l u d d i n জ া ম া ল উ দ ্ দ ি ন j a m b h a l e জ া ম ্ ভ া ল ে j a m i l a জ ম ি ল া j a m i r a l i জ া ম ি র আ ল ী j a m n a g a r জ া ম ন গ র j a n g p u r i জ া ঙ ্ গ প ু র ি j e f f e r y জ ে ফ ে র ি j e r s e y জ া র ্ স ি j e r u s a l e m জ ে র ু জ া ল ে ম j e t জ ে ট j h a n t u ঝ ণ ্ ট ু j h a r n a r a n i ঝ র ্ ন া র া ণ ী j h u m k i ঝ ু ম ক ি j h u m r i ঝ ু ম র ী j i n a জ ি ন া j o d h p u r য ো ধ প ু র j o n জ ো ন j o t s n a জ ো ত ্ স ্ ন া j o y a n t a k u m a r জ য ন ্ ত ক ু ম া র j u g u জ ু গ ু j u i n জ ু ঁ ই j u l i u s জ ু ল ি য় া স j u l m a t u n জ ু ল ম া ত ু ন j u n o জ ু ন ো k a i l a s h ক ৈ ল া শ k a i l a s h n a t h ক ৈ ল া শ ন া থ k a j a l r a n i ক া জ ল র া ন ি k a k a d u ক া ক া দ ু k a k a l i ক া ক ল ি k a l a n k i ক া ল া ঙ ্ ক ি k a l e s h w a r ক া ল ে শ ্ ব র k a l g i d h a r ক ল জ ি ধ র k a l i d a s ক া ল ি দ া স k a l i m b a ক া ল ি ম ্ ব া k a m a k s h i ক া ম া ক ্ ষ ী k a m a l ক া ম া ল k a n a k b a l a ক ন ক ব া ল া k a n h a i ক া ন হ া ই k a p a l e e s h w a r a ক প া ল ে শ ্ ব র k a p a l i ক া প া ল ি k a p u r c h a n d ক া প ু র চ া ঁ দ k a r a m ক র ম k a r i m g a n j ক র ি ম গ ঞ ্ জ k a r u n a r a n i ক র ু ন া র া ন ী k a r u p p p a n a d h i দ া র ু প প ্ প া ন া ধ ি k a s h e s w a r i ক া শ ে শ ্ ব র ী k a t h a k a l i ক থ া ক ল ি k a u s h a m b i ক ৌ শ া ম ্ ব ী k a z m a i e r ক া জ ম ি য় া র k e m i j a r v i ক ে ম ি জ া র ্ ভ ি k e n o s h a ক ে ন ো শ া k h a b o r খ প র k h a d a t k a r খ া দ া ত ক া র k h i n d a খ ি ন দ া k h o k a n k u m a r খ ো ক ন ক ু ম া র k i l a ক ি ল া k i n s h a s a ক ি ন শ া স া k i r b y ক ি র ্ ব ি k i r t i n a s h a ক ী র ্ ত ি ন া শ া k i t t y ক ি ট ্ ট ি k n o r r ন র k o b s a ক ো ব স া k o n d r p ক ন ্ দ র ্ প k o n i g ক ো ন ি গ k o r a n n e ক ো র া ন ে k r i s h n a k a n t a ক ৃ ষ ্ ণ ক া ন ্ ত k u h a d ক ু হ া দ k u l a s e k a r a ক ু ল া স ে ক া র া k u m u d i n i ক ু ম ু দ ি ন ী k u r s h i d a খ ু র ্ শ ি দ া k u r t ক ু র ্ ট k u r u s ক ু র ু স k u s h a l ক ু শ ল k u s u m d e v i ক ু স ু ম দ ে ব ী k u w a i t ক ু য় া ট l a c h m a n ল ছ ম ন l a h o r e ল া হ ো র l a k e ল ে ক l a l a i ল া ল া ই l a l b a h a d u r ল া ল ব া হ া দ ু র l a l i t ল ল ি ত l a l m o n i ল া ল ম ন ি l a m b o d a r ল ম ্ ব ো দ র l a m b u ল ম ্ ব ু l a n a u ল ে ন া উ l a n d g u a r d ল ্ য া ন ্ ড গ া র ্ ড l a n e n ল া ন ে ন l a n t i n ল ্ য া ন ্ ট ি ন l a t i k a r a n i ল ত ি ক া র া ন ী l a w r i e ল ্ য র ি l a y a r ল া য় র l e a r ল ি য় া র l e e ল ী l e g a l ল ি গ া ল l e l ল ে l e n a ল ে ন া l e n a w e e ল ে ন া ও য় ে l e n i n ল ে ন ি ন l e w i n s k y ল ি উ য় ি ন স ্ ক ি l i l a ল ী ল া l i n c o l n ল ি ঙ ্ ক ন l i n c o l n ল ি ঙ ্ ক ো ল ্ ক l i n e s ল া ই ন স l i o n s ল ি ও ন স l i p t o n ল ি প ট ন l o h g a d ল ো হ গ া ড l o h i t ল ো হ ি ত l o r e ল ো র ে l o t a n ল ো ট ন l o y o l a ল ো য় ে ল l u c k h u r s t ল া ক হ ্ র ু স ্ ট l u c k n o w ল ক ্ ষ ্ ণ ৌ l u k o i l ল ু ক ো ই ল l y n c h ল ি ঞ ্ চ l y o n ই য় ন m a d e i r a ম া ড ে ই র া m a d h a b i b a l a ম া ধ ব ী ব া ল া m a d h e p u r a ম া ধ ে প ু র া m a d h u d e b i ম ধ ু দ ে ব ী m a d h u m a n g a l ম ধ ু ম ঙ ্ গ ল m a d h u s r e e ম ধ ু স ্ র ী m a f u j a ম া ফ ু জ া m a h a l a x m i ম হ া ল ক ্ ষ ্ ম ী m a h a l e ম া হ া ল ে m a h a m m a d ম হ ম ্ ম দ m a h a s i n ম হ া স ী ন m a h a s w e t a ম হ া শ ্ ব ে ত া m a h b o o b ম া হ ব ু ব m a h e n d r a n a t h ম হ ে ন ্ দ ্ র ন া থ m a h e s h ম হ ে শ m a h i b a ম হ ি ব া m a h i b u l ম হ ি ব ু ল m a h i m a ম হ ি ম া m a h m u d a k h a t u n ম া হ ম ু দ া খ া ত ু ন m a h u n a ম া হ ু ন া m a i d ম ঈ দ m a j i m a ম জ ি ম া m a j i t h a ম া জ ি থ া m a k h a n l a l ম া খ ন ল া ল m a k k h u ম া ক ্ ষ ু m a k s h u d ম ক শ ু দ m a l ম া ল m a l a j k u m a r ম ল য ক ু ম া র m a l a y s i a ম া ল য় ে শ ি য় া m a l i b i b i ম ল ি ব ি ব ি m a l i n g a ম া ল ি ঙ ্ গ m a l k ম ল ্ ক m a m t a r a n i ম ম ত া র া ন ী m a n a b ম া ন ব m a n a b a s a n a ম ন ব া স ন া m a n a g e m e n t ম ্ য া ন ে জ ম ে ন ্ ট m a n a k a ম ন ক ্ ক া m a n a r a n j a n ম ন র ঞ ্ জ ন m a n a s h ম া ন স m a n g a l a b a l a ম ঙ ্ গ ল া ব া ল া m a n g r u ম ং র ু m a n i k k u m a r ম া ন ি ক ক ু ম া র m a n i k r a n j a n ম া ন ি ক র ঞ ্ জ ন m a n i k u n t a l a ম ন ি ক ু ন ্ ত ল া m a n i m a l a ম ণ ি ম া ল া m a n i r a n i ম ন ি র া ণ ী m a n i s h ম ন ী শ m a n j i l ম ঞ ্ জ ি ল m a n j u r a n i ম ঞ ্ জ ু র া ণ ী m a n u b i b i ম ন ু ব ি ব ি m a o l a ম ও ল া m a q s o o d ম া ক স ো দ m a r a n i b a l a ম র ন ী ব া ল া m a r e g w e d e ম া র ে গ ি য় ে ড ে m a r j i m a ম র ্ জ ি ম া m a r j i n a k h a t u n ম র ্ জ ি ন া খ া ত ু ন m a r k q u i c k ম া র ্ ক ক ু ই ক m a r l b o r o u g h ম া ল ব ো র ো জ m a r t e j ম র ্ ত ে জ m a r t i n i e r e ম া র ্ ট ি ন ি ই য় া র m a r u t i ম া র ু ত ি m a r w a h a ম া র ও য় া হ া m a s a n i ম া স া ন ী m a s h a r a f ম শ া র ফ m a s s e n a ম া স ে ন া m a s t e r s ম া স ্ ট া র স m a s u d a n ম স ু দ া ন m a t h u r a ম থ ু র া m a t i a s ম া ত ি য় া স m a t i c h a n d ম ত ি চ া ঁ দ m a t i n ম ত ি ন m a t o n d k a r ম া ত ন ্ ড ক া র m a t s u s h i t a ম া ত স ু শ ি ট া m a u r i t a n i a ম া র ি ত া ন ি য় া m c c a n n ম ্ য া ক ক া ন m e e r u t ম ি র া ট m e h b o o b n a g a r ম ে হ ব ু ব ন গ র m e h e r a ম ে হ ে র া m e i t n e r i u m ম ে ট ি ন ে র ি য় া ম m e l l e t t e ম ে ল ্ ল ে ট m e n a k a r a n i ম ে ন ক া র া ণ ী m e r i t ম ে র ি ট m e r r y ম ে র ি m e t h o d i s t ম ে থ ো ড ি স ্ ট m e t r o p o l i t a n ম ে ট ্ র ো প ো ল ি ট ন m h a l e ম া হ ল ে m h a s k a r ম া হ স ্ ক া র m h m a i n u d d i n ম হ ঃ ম ই ন ু দ ্ দ ি ন m i c h e n e r ম ি ক ে ন া র m i j a r u l ম ি জ া র ু ল m i l a n b a l a ম ি ল ন ব া ল া m i n a k k h i ম ী ন া ক ্ ষ ি m i n a r a n i ম ি ন া র া ণ ী m i r a ম ী র া m i r a j ম ি র া জ m i r z a ম ি র ্ জ া m o d e l ম ড ে ল m o d u l a r ম ড ি উ ল া র m o g a d i s h u ম ো গ া দ ি শ ু m o h i t k u m a r ম ো হ ি ত ক ু ম া র m o h r i r ম ো হ র ি র m o m i n a ম ো ম ি ন া m o n g a ম ো ন গ া m o n i m o h a n ম ণ ি ম ো হ ন m o n o h a r l a l ম ন ো হ র ল া ল m o n o r a m a ম ো ন ো র ম া m o n o r a n j a n ম ন ো র জ ্ ঞ ন m o n r a b i b i ম ন র া ব ি ব ি m o n r o ম ো ন র ো m o r i n d a ম ো র ি ন ্ দ া m o t o r s ম ো ট র স m o u j i ম ৌ উ জ ি m o u l o d a ম ৌ ল দ া m r i d u l a ম ৃ দ ু ল া m u j i b a r ম ু জ ি ব র m u j i b u l ম ু জ ি ব ু ল m u k t a ম ু ক ্ ত া m u k t a b a l a ম ু ক ্ ত ব া ল া m u k t s a r ম ু ক ্ ত স র m u l a ম ু ল া m u l l a h ম ু ল ্ ল া m u n a f ম ু ন া ফ m u n g a l a ম ু ঙ ্ গ ল া m u n i c i p a l i t y ম ি উ ন ি স ি প ্ য া ল ি ট ি m u n s a d ম ু ন স া দ m u n s i f ম ু ন স ি ফ m u r s h a l i n ম ু র শ া ল ি ন m u r t u j ম ু র ত ু জ m u s i d a b e g a m ম ু স ি দ া ব ে গ ম m u t h a ম ু থ া m y s o r e ম হ ি শ ূ র n a b i n ন ব ী ন n a b i n k u m a r ন ব ী ন ক ু ম া র n a d a l ন া ড া ল n a d e r ন া দ ে র n a i m i s h a r a n y a ন ৈ ম ি শ া র ণ ্ য n a i s m i t h ন া ই স ম ি থ n a j i b u l ন া জ ি ব ু ল n a j i m u l ন া জ ি ম ু ল n a j i n a ন া জ ি ন া n a j i r a l i ন জ ি র আ ল ি n a j m i r a ন া জ ম ি র া n a j r i n ন া জ র ি ন n a m i ন ম ী n a m u r ন া ম ু র n a n d i ন ন ্ দ ী n a n k u ন া ন ক ু n a o k i ন া ও ক ি n a q q a s h ন া ক ্ ক া স n a r e n d r a ন র ে ন ্ দ ্ র n a s i b a ন স ি ব া n a s i f a ন স ি ফ া n a s i k a k a r ন স ি ক া ক র n a s i m a ন া স ি ম া n a s i r u l l a ন া স ি র ু ল ্ ল া n a t a b a r ন ট ব র n a t c o ন ্ য া ট ক ো n a t u ন া ট ু n a v n e e t ন ব ন ী ত n a z m u l ন জ ম ু ল n e b u l a l ন ে ব ু ল া ল n e h a r ন ে হ া র n e h e r u l ন ে হ ে র ু ল n e p a l c h a n d r a ন ে প া ল চ ন ্ দ ্ র n e w b e r g ন ি উ ব া র ্ গ n e w h a v e n ন ি উ হ ে ভ ে ন n i e r e n b e r g ন ি র ে ন ব া র ্ গ n i g g l y ন ি জ ্ ঞ ল ি n i h a r i ন ি হ া র ী n i k h i l b a n d h u ন ি খ ি ল ব ন ্ ধ ু n i l a n j a n ন ি ল া ঞ ্ জ ন n i l k a m a l ন ি ল ক ম ল n i l k r i s h n a ন ী ল ক ৃ ষ ্ ণ n i l o p h a ন ি ল ো ফ া n i m o y ন ি ম য় n i r a d b a r a n ন ী র দ ব র ন n i r j h a r ন ি র ্ ঝ র n i r m a l a ন ি র ্ ম ্ ম ল া n i s h i t h ন ি শ ী থ n i t r o g e n ন া ই ট ্ র ো জ ে ন n i z a m u d d i n ন ি জ া ম উ দ ্ দ ি ন n o g a i t ন ো গ ে ট n o j a r a m ন ো য া র া ম n o r t h w o o d ন র ্ থ উ ড n u r j a h a n a ন ু র জ া হ া ন া n u r j a h a n b e g a m ন ু র জ া হ া ন ব ে গ ম n u r m a h a m a d ন ু র ম হ ম দ n u r u l h a k ন ূ র ু ল হ ক o n o ও ন ো o n u y o ও ন ু য় ো o n y a n g o ও ন ্ য া ঙ ্ গ ো o p t o অ প ট ো o r a n g e অ র ে ঞ ্ জ o r m s b y ও ম স ব া ই o s t f r i e s l a n d ও স ্ ট ফ ্ র ি স ল ্ য া ন ্ ড o v e r l a n d ও ভ া র ল ্ য া ন ্ ড p a a t e k a r প া ত ে ক া র p a d i n a প দ ি ন া p a d m a r a n i প দ ্ ম র া ণ ী p a k l u প া ক ল ু p a l l i n g t o n প ্ য া ল ং ট ন p a l t u প ল ্ ট ু p a n k h i প ং খ ী p a n m a t i প া ন ম ত ি p a p a n প া প ন p a r a m a t m a প র ম া ত ্ ম া p a r a m e s h w a r প র ম ে শ ্ ব র p a r a p p a l a r প া র া প ্ প া ল া র p a r a s m a n i প র শ ম ন ি p a r b a t i r a n i প া র ্ ব ত ী র া ন ী p a r c e l প া র ্ স ে ল p a r d e s i প র দ ে শ ি p a r i j a প র ি জ া p a r i m a n প র ি ম ন p a r t h a প া র ্ থ p a t a l প ট ো ল p a t h a r k a r প া থ র ক া র p a t i l a l প ত ি ল া ল p a t l i প ট ল ী p a y n e প ে ন ে p e k i প ে ক ি p e l a n i প ে ল ন ী p e r v e z প া র ভ ে জ p e t e r s o n প ি ট া র স ন p h a l a t u n ফ ল া ত ু ন p h i l o ফ ি ল ো p h n o m ফ ো ম p h o s p h o r u s ফ স ফ র া স p i l t u n প ি ল ত ু ন p i m p l e প ি ম ্ প ল p i n d i প ি ন দ ি p i n g a l e প ি ঙ ্ গ ল ে p i p e s প ি প ে স p i r a t e n p r i s e t প ি র া ট ে ন প ্ র ি স ে ট p i y a r i l a l প ি য া র ী ল া ল p l a i n s প ্ ল ে ন স p o l a n d প ো ল ্ য া ন ্ ড p o l y d e x প ল ি ড ে ক ্ স p o n t i s s e প ন ্ ট ি স ে p o p h a l i k a r প ো ফ া ল ি ক া র p o p h a m প ফ া ম p o r t u g a l প র ্ ত ু গ া ল p o t h o h a r i প থ ো হ া র ি p o w e r d s i n e প া ও য় া র ড স ি ন ে p r a b a t h প ্ র ভ া থ p r a b h a t প ্ র ভ া ত p r a g a t i প ্ র গ ত ি p r a h l a d প ্ র হ ল া দ p r a j a প ্ র জ া p r a m i l a b a l a প ্ র ম ি ল া ব া ল া p r a n a b k u m a r প ্ র ণ ব ক ু ম া র p r a p h u l l a প ্ র ফ ু ল ্ ল p r a t a p g a d প ্ র ত া প গ ড় p r a t h a m প ্ র থ ম p r a t h a m a প ্ র থ ম া p r a t i m a r a n i প ্ র ত ি ম া র া ণ ী p r a v a b a t i d e b i প ্ র ভ া ব ত ী দ ে ব ী p r e m a d e b i প ্ র ে ম া দ ে ব ী p r i c e w a t e r h o u s e প ্ র া ই স ও য় া ট া র হ া উ স p r i n c e t o n প ্ র ি ন ্ স ট ো ন p r o f i l e s প ্ র ো ফ া ই ল স p u r i প ু র ী p u r k a r প ু র ক া র p u s t a m প ু স ্ ত ম p u t k i প ু ট ক ি p u t u l d e v i প ু ত ু ল দ ে ব ী p u v i s প ু ভ ি স p y o n g y a n g প ি য় ং ই য় া ং r a a n e র া ণ ে r a b i a র া ব ি য় া r a b i n d r a n a t h র ব ী ন ্ দ ্ র ন া থ r a d h a k r i s h n a র া ধ া ক ৃ ষ ্ ণ r a f i k a b e g a m র ফ ি ক া ব ে গ ম r a f i k u l র ফ ি ক ু র r a f i q u e র া ফ ি ক r a h i l a র া হ ি ল া r a i l a র া ই ল া r a i s a র া ই স া r a j a b a l i র জ ব আ ল ী r a j b a n s h i র া জ ব ং শ ী r a j e n র া জ ে ন r a j g a d র া জ গ ড় r a j k i s o r e র া জ ক ি শ ো র ী r a j m a n i র া জ ম ন ি r a j n a n d i n i র া জ ন ন ্ দ ি ন ী r a m b a h a d u r র া ম ব া হ া দ ু র r a m i r e z র া ম ি র ে জ r a m p r i t র া ম প ্ র ী ত r a m t a r a n র া ম ত া র ন r a n g a l a t a র ঙ ্ গ ল ত া r a n g n a t h a r র ঙ ্ গ ন া থ র r a n i b a l a র া ন ি ব া ল া r a n i k o t র া ন ী ক ো ট r a n i t a র ন ি ত া r a n t h a m b o r র ণ থ ম ্ ভ ো র r a n u b a l a র া ণ ু ব া ল া r a s h i d a b i b i র স ি দ া ব ি ব ি r a s m a র া শ ম া r a t h a s h w a r র থ ে শ ্ ব র r a t h i n d r a n a t h র থ ী ন ্ দ ্ র ন া থ r a t i r a m র ত ি র া ম r a t n a র ত ্ ন া r e d p a t h র ে ড প থ r e f র ে ফ r e i f e r র ে ই ফ ে র r e n u র ে ন ু r e n u k a b a l a র ে ন ু ক া ব া ল া r e u n i o n s র ে উ ই ন ি ও ন ্ স r e v e l s t o k e র ে ভ ে ল স ্ ট ো ক r e v o l u t i o n র ি ভ ো ল ি উ শ া ন r h o d o p e র ো ড ো প r i c h a r d s o n র ি চ া র ্ ড স ন r i g a র ি গ া r i m j h i m র ি ম ঝ ি ম r i n a b e g a m র ি ন া ব ে গ ম r i n d e l র ি ন ্ ড ল ে r i n g o র ি ং গ ো r i p a n র ি প ন r i s h i ঋ ষ ি r i s h i k e s h হ ৃ ষ ি ক ে শ r i s i n g র া ই জ ি ং r i t h a র ি থ া r i z v i র ি জ ভ ি r o h i n i b a l a র ো হ ি ন ী ব া ল া r o m e র ো ম r o n র া ন r o o p e র ু প r o t a r y র ো ট া র ি r o u s o n a r a b e g a m র ও স ো ন া র া ব ে গ ম r u b a i d a র ু ব া ই দ া r u b e n র ু ব ে ন r u d o l f র ু ড ল ফ r u k h s h a n a র ু খ শ া ন া r u m k i র ু ম ক ী r u n n i n g র া ন ি ং r u p a l i র ু প া ল ি s a a n e শ া ন ে s a a r a n স া র ণ s a b a n a স া ব া ন া s a b a r w a l স া ব া র ও য় া ল s a b i r স া ব ি র s a b u r স া ব ু র s a c h i n d r a n a t h শ চ ী ন ্ দ ্ র ন া থ s a d a v a r t e স া দ া ভ া র ্ ত ে s a d e r স া দ ে র s a d h a n b a l a স া ধ ন ব া ল া s a d i q স া দ ি ক s a f i k স া ফ ি ক s a h a b i r স হ ব ী র s a h a r a b a n u স া হ া র া ব া ন ু s a h a r w a r d y স া হ া র ও য় া র ্ দ ি s a h e r স া হ ে র s a h o t a স া হ ো ট া s a i n a স া ই ন া s a j a l k u m a r স জ ল ক ু ম া র s a j a n স া জ া ন s a j j a t স া জ ্ জ া ত s a j r u l স জ র ু ল s a k i n a b e g a m শ া ক ি ন া ব ে গ ম s a k i n a b i b i স া ক ি ন া ব ি ব ি s a l a m a স া ল া ম s a l a m a t স া ল া ম ত ্ s a l i l k u m a r স ল ি ল ক ু ম া র s a m i d স া ম ি দ s a m l e s h w a r স া ম ল ে শ ্ ব র s a m s a d স ম স া দ s a m t e l স ্ য া ম ট ে ল s a n a k a স ন ক া s a n j a n a স ঞ ্ জ ন া s a n o f i স া ন ো ফ ি s a n t u স ণ ্ ট ু s a n u স ন ু s a o k a t a l i স ও ক ত আ ল ি s a o u k a t a l i স ও ক া ত আ ল ি s a p t a r s h i স প ্ ত র ্ ষ ি s a p u k স া প ু ক s a r a স া র া s a r a h স া র া হ s a r a t h i স া র থ ি s a r i s k a স া র ি স ্ ক া s a t i n d r a স ত ী ন ্ দ ্ র s a v i t a স ব ি ত া s a x o n y স ্ য া ক ্ স ো ন ি s a z স া জ s c r o t s স ্ ক ্ র ট স s c u b a স ্ ক ু ব া s e a স ি s e e m a r a n i স ী ম া র া ণ ী s e f a t u n স ে ফ া ত ু ন s e s a স ে স া s e v i e r স ে ভ ি য় া র s h a b a n a শ া ব ন া s h a h j a h a n p u r শ া হ জ া হ া ন প ু র s h a k e s p e a r e শ ে ক ্ স প ী য় া র s h a k u n n t a l a d e b i শ ক ু ন ্ ত ল া দ ে ব ী s h a m b h u l a l শ ম ্ ভ ু ল া ল s h a m s u l শ া ম স ু ল s h a n k a r i শ ঙ ্ ক র ি s h a n k u শ ঙ ্ ক ু s h a s a n k a s h e k h a r শ শ া ঙ ্ ক শ ে খ র s h a t a r u p a শ ত র ু প া s h a u n a k শ ৌ ন ক s h e e h y শ ি হ ি s h e k h a r k a n t i শ ে খ র ক া ন ্ ত ি s h i b a n শ ি ব ন s h i b a n i শ ি ব া ন ী s h i b e s h শ ি ব ে শ s h i b m a n g a l শ ি ব ম ঙ ্ গ ল s h i b p r a s a d শ ি ব প ্ র স া দ s h i b r a m শ ি ব র া ম s h i b s h a n k a r শ ি ব শ ঙ ্ ক র s h i b u c h a r a n শ ি ব ু চ র ন s h i e l d s শ ি ল ্ ড s h i k a n t a শ ি ক া ন ্ ত s h i l a b a l a শ ৈ ল ব া ল া s h i m a n e শ ি ম া ন s h i m l a স ি ম ল া s h i n d a শ ি ন ্ দ া s h i t u t শ ি ত ু ত s h i v p u r i শ ি ব প ু র ী s h i v s a g a r শ ি ব স া গ র s h o b h a শ ো ভ া s h o b h a n l a l শ ো ভ ন ল া ল s h o b h a r a n i শ ো ভ া র া ণ ী s h o u k a t a শ ৌ ক ত s h r i l a শ ্ র ী ল া s h r i n i b a s শ ্ র ী ন ি ব া স s h r i p a t i শ ্ র ী প ত ি s h u b h a d i p শ ু ভ দ ী প s h u m i শ ু ম ি s h u n স া ং s h u n g a r e শ ু ঙ ্ গ া র ে s h y o m p u r শ া য় ো ম প ু র s i d b i স ি ড ব ি s i d d h a m a l l i স ি দ ্ ধ ম া ল ্ ল ি s i d e স া ই ড s i d h a s w a r স ি ধ ে শ ্ ব র s i d h i স ি দ হ ি s i f y স ি ফ ি s i g m u n d স ি গ ম ন ্ ড s i m o n s স ি ম ন ্ স s i n g h স ি ঙ ্ ঘ s i r a j u l স ি র া জ ু ল s i v a r a m a k r i s h n a n শ ্ র ী ভ া র ম া ক ৃ ষ ্ ণ s k i n n e r স ্ ক ি ন া র s k i r t h স ্ ক ি র ্ থ s l a v e স ্ ল ে ভ s l e d g e স ্ ল ে জ s m i t h স ্ ম ী থ s m o u t a k k e r স ্ ম ৌ ট ে ক ্ ক ে র s o d i u m স ো ড ি য় া ম s o f i a স ো ফ ি য় া s o h a l স ো হ া ল s o l e n t স ো ল ে ন ্ ট s o l u t i o n s স ল ি উ শ া ন s o n a d e v i স ো ন া দ ে ব ী s o n a l i স ো ন া ল ি s o n a l i r a n i স ো ন া ল ী র া ন ী s o r y u স ো র ি য় ু s o w a n i স ো য় া ন ি s p a i n স ্ প ে ন s q u a r e স ্ ক ো য় া র s q u i b b স ্ ক ু ই ব s r i k u m a r i শ ্ র ী ক ু ম া র ী s r i p r a s a d শ ্ র ী প ্ র স া দ s r i v a i k u n t a m শ ্ র ী ভ া ই ক ু ন ্ ত ম s t e a m r u n n e r স ্ ট ি ম র া ন া র s t r o m b o l i স ্ ট ্ র ম ্ ব ো ল ি s t u d i o স ্ ট ু ড ি ও s u b h a s h স ু ভ া ষ s u b h o s h r i শ ু ভ শ ্ র ী s u b i d স ু ব ি দ s u b o d h c h a n d r a স ু ব ো ধ চ ন ্ দ ্ র s u b r a m a n y a m স ু ব ্ র ম ণ ি য় ম s u c h i n t a স ু চ ি ন ্ ত s u d e b i স ু দ ে ব ী s u d h a m a স ু ধ া ম া s u f i স ু ফ ি s u h a s স ু হ া স s u j a t a স ু জ া ত া s u k b a h a r স ু ক ব া হ া র s u k h l a t a স ু খ ল ত া s u k u r স ু ক ু র s u l e k h a স ু ল ে খ া s u m e d a l i স ু ম ে দ আ ল ি s u n i l স ু ন ী ল s u p r a k a s h স ু প ্ র ক া শ s u r e k h a স ু র ে খ া s u r e n d r a n a g a r স ু র ে ন ্ দ ্ র ন গ র s u r f i n g স া র ্ ফ ি ং s u r h a k স ু র হ ক s u r j a m o n i স ূ র ্ য় ম ন ি s u r u স ু র ু s u r u j স ু র জ s u r y a স ু র ্ য় s u r y a স ূ র ্ য s w a n k স ো য় া ঙ ্ ক s w a r u p a স ্ ব র ু প া s w i s s স ু ই স s w o r d স ো য় া র ্ ড t a b l e ট ে ব ল t a h e r a ত া হ ে র া t a i j u d d i n ত া ই জ ু দ ্ দ ি ন t a j i r ত া জ ি র t a j r u d d i n ত া জ র ু দ ্ দ ি ন t a j u d d i n ত া জ ু দ ্ দ ি ন t a k l i ট া ক ল ি t a l a k k a d ত া ল া ক ্ ক া দ t a l i b ত া ল ি ব t a m a l ত ম া ল t a m h a n k a r ত া ম হ া ঙ ্ ক া র t a m p a ট ম ্ প া t a n g a n y i k a ত া ঞ ্ জ ি ন া য় ি ক া t a p a s r a n j a n ত া প স র ঞ ্ জ ন t a r a b a l a ত া র া ব া ল া t a r g e t ট া র ্ গ ে ট t a r k e s w a r ত র ্ ক ে শ ্ ব র t a t e n d a ট া ট ে ন ্ ড া t a t k a r ত া ত ক া র t e d ট ে ড t e k l a l ট ে ক ল া ল t e l ট ে ল t e l s t r a ট ে ল স ্ ট ্ র া t e n g ট ে ং t e n g g e r ট ে ঙ ্ গ া র t h a m b a l a h a l l i থ া ম ব া ল হ া ল ্ ল ি t h a p a r থ া প া র t h e n d a y u t h a p a n i থ ে ন ্ দ া য় ু ঠ া প া ন ি t h e r m o s p h e r e থ া র ্ ম ো স ্ ফ ি য় া র t h i n d থ ি ন ্ দ t h o m p s o n থ ো ম ্ প স ন t i a a ট ি য় া t i d i n g s ট ি ড ি ং স t i d j a n i ট ি ড জ া ন ি t i l a t a m a ত ি ল ত ্ ত ম া t o b o g g a n ট ো ব ো গ া ন t o h o k u ট ো হ ো ক ু t o m ট ো ম t o p ট প t o w n ট া উ ন t r e m l e t t ট ্ র ে ম ল ে ট t r e n t ট ্ র ে ন ্ ট t r e s ট ্ র ে স t r i l o c h o n ত ্ র ি ল ো চ ন t r i p o l i ত ্ র ি প ল ি t r i p t i k o n a ত ৃ প ্ ত ি ক ন া t r u s t ট ্ র া স ্ ট t u k i b a l a ট ু ক ী ব া ল া t u l s i b a l a ত ু ল স ি ব া ল া t u m p a r a n i ট ু ম ্ প া র া ন ী t u n g s t e n ট া ং স ্ ট ে ন t u n i s i a ত ু ন ি স ি য় া t u r u b a l a ট ু র ু ব া ল া t u s h a r ত ু ষ া র t w i s t ট ু ই স ্ ট t é l é c o m ট ে ল ি ক ম u d a y s h a n k a r উ দ য় শ ং ক র u g i n e ই উ জ ি ন u l a n g i n i উ ল া ঙ ্ গ ি ন ী u m a b a l a উ ম া ব া ল া u n u n t r i u m উ ন উ ন ট ্ র ি য় া ম u p a d h y e উ প া ধ ্ য া য় u s h a উ ষ া u t t a r উ ত ্ ত র u t t a r a n c h a l উ ত ্ ত র া ঞ ্ চ ল v a a d d e k a r ভ া দ ্ দ ে ক া র v a l o u r ভ ে ল ু র v a n a v i l ব ন ব ি ল v a n d u l ভ ন ্ ড ু ল v a p a r a i s o ভ ে প ে র া ই স ো v a r n a ভ া র ্ ন া v e n e r i o l o g y ভ ে ন ে র ি ও ল জ ি v e n e z i a ভ ে ন ে জ ি য় া v e t t o r i ভ ি ট ্ র ি v i d y a ব ি দ ্ য া v i k h e ভ ি খ ে v i v i a n ভ ি ভ ি য় া ন w a k e f i e l d ও য় ে ক ফ ি ল ্ ড w a r d ও য় া র ্ ড w a r r i o r ও য় া র ি ও র w a s s a n ও স স া ন w a s t e ও য় ে ষ ্ ট w a t k i n ও য় া ক ি ং w a y n e ও য় া ই ন w e d d e l l ও য় ে দ ্ দ ে ল w e e r a r a t n e ও য় া র ত ্ ন ে w e l l h a m ও য় ে ল হ া ম w e l l m a n ও য় ে ল ম ্ য া ন w e l l s ও য় ে ল স w h i t e হ ো য় া ই ট w i l l i a m s উ ই ল ি য় া ম w i l l i a m s b u r g উ ই ল ি য় া ম ব া র ্ গ w i l l i e উ ই ল ি w i l m i n g t o n উ ই ল ম ি ং ট ন w i n n i p e g উ ই ন ি প ে গ w i s m a উ ই স ম া w i t t e l s b a c h উ ই ত ্ ত ে ল স ব া চ w o l v e r i n e উ ই ভ ে র ি ন w o o d h a m উ ধ া ম w o r c e s t e r ও র ক ে স ্ ট ্ র া w o r k s t r e a m ও য় া র ্ ক স ্ ট ি ম x a v i e r এ ক ্ স া ভ ি য় ে র x y r a t e x জ ি র া ট ে ক ্ স y a g a r e d d y য গ া র ে ড ্ ড ি y a s i r ই য় া স ি র y o g r a j য ু গ র া জ y o m i u r i ও ম ি উ র ি y o r k s h i r e ই য় র ্ ক শ া য় া র z a f f e r জ া ফ র z a h e d জ া হ ে দ z r i n y i জ ্ র ি ন ি য় ি
5e97303fb53c2597d18034f93fe51f07afc665cf
449d555969bfd7befe906877abab098c6e63a0e8
/1865/CH3/EX3.3/prob_3.sce
f03a1e35c57427d2e565c3edee2613fb96815e71
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
527
sce
prob_3.sce
//Problem 3 //calculate the energy falling on the target material per second and also calculate the cutoff wavelength of the X-rays clear clc V=20*10^3// potential difference in V e=1.6*10^(-19)//charge on an electron in C h=6.6*10^(-34)//planck's constant in J-s c=3*10^(8)//velocity of light in m/s i=1//current in mA E=i*V*10^(-3)//energy in j/s w=(h*c)/(e*V)//wavelength in nm printf('energy falling on the target material per second = %.1f j/s \n',E) printf('cutoff wavelength of the X-rays = %.3f nm',w*10^9)
217f5b22598dcd9a254a61ff1769529eb03f594b
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set6/s_Electrical_Measurements_And_Measuring_Instruments_N._V._Suryanarayana_1376.zip/Electrical_Measurements_And_Measuring_Instruments_N._V._Suryanarayana_1376/CH3/EX3.11/3_11.sci
63af49792a8b5d45bd6f9c67a506d1e1b451fcd6
[]
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
202
sci
3_11.sci
errcatch(-1,"stop");mode(2);//3.11 ; phi=acosd(0.8); alpha_actual=85-phi; alpha_true=90-phi; er=(alpha_true-alpha_actual)/(alpha_true)*100; printf("percentage error at full load=%.2f",er) exit();
a6626ac86ebf28c509b9a40cf790961aae481b31
623a9dd972dc78dbde5d5b8dc187acd6a1eb5910
/TP7/CrankNicolson.sci
6b83c9362bdd0d80a3da52a2f9d6b19c6936051b
[]
no_license
gtessi/CN2012-FICH
0daad054ceb6c36636ee5e8b174a676b9e0acb9b
4024384653b61b5af9e1c11ffb575e154025ee47
refs/heads/master
2020-03-27T05:53:04.684505
2018-08-25T03:03:15
2018-08-25T03:03:15
146,059,800
0
0
null
null
null
null
UTF-8
Scilab
false
false
310
sci
CrankNicolson.sci
function [t,w,e] = CrankNicolson(f,a,b,h,alfa,yex) N=(b-a)/h; t=(a:h:b); w(1,:)=alfa; for (i=1:N) //predictor w(i+1,:)=w(i,:)+h.*f(t(i),w(i)); //corrector w(i+1,:)=w(i,:)+(h/2).*(f(t(i),w(i))+f(t(i+1),w(i+1))); end e=abs(yex(t)-w); endfunction
3c84f7a52fc9b62cfe97663c551dd203a33494f7
449d555969bfd7befe906877abab098c6e63a0e8
/172/CH5/EX5.1/ex1.sce
ff728fe3b7b2eb48671bf9bab4f266399458ec16
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
428
sce
ex1.sce
//example 1 //calculating height clear clc m=1100 //mass of car in kg ke=400 //kinetic energy of car in kJ V=(2*ke*1000/m)^0.5 //velocity of car in m/s g=9.807 //acc. due to gravity in m/s^2 H=ke*1000/(m*g) //height to which the car should be lifted so that its potential energy equals its kinetic energy disp('hence,the car should be raised to a height of 37.1 m to make its potential energy equal to kinetic energy')
0618314f5af3b855985899e587caab6c4dac2baa
449d555969bfd7befe906877abab098c6e63a0e8
/174/CH4/EX4.2/example4_2.sce
bf2a5ce0b82cb60b7407d28d3ae73cfa33f3ffd4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,691
sce
example4_2.sce
// To design Ayrton shunt // Modern Electronic Instrumentation And Measurement Techniques // By Albert D. Helfrick, William D. Cooper // First Edition Second Impression, 2009 // Dorling Kindersly Pvt. Ltd. India // Example 4-2 in Page 57 clear; clc; close; // Given data I_1 = 1; //Full scale currents of the ammeter in amp I_2 = 5; I_3 = 10; R_m = 50; //Internal resistance of the movement(the coil) in ohm I_m = 1*(10^-3); //Full scale deflection of the movement in ampere //Calculations // On the 1-A range: I_s1 = I_1 - I_m; // calculating current through shunt //Using the eq. R_s = I_m * R_m/ I_s //1 R_a +R_b +R_c = I_m * R_m/ I_s; // As (R_a +R_b +R_c) are parallel with R_m // On the 5-A range I_s2 = I_2 - I_m; //2 R_a +R_b = I_m * (R_c +R_m)/ I_s; // As (R_a+R_b) in parallel with (R_c+R_m) // On the 10-A range I_s3 = I_3 - I_m; //3 R_a = I_m * (R_b +R_c +R_m)/ I_s; // As R_a is parallel with (R_b +R_c +R_m) //Solving the 3 simultaneous linear equations function y = rr(R); y(1)= R(1) +R(2) +R(3) - (I_m * R_m/ I_s1); y(2)= R(1) +R(2) -(I_m * (R(3) +R_m)/ I_s2); y(3)= R(1) -(I_m * (R(2) +R(3) +R_m)/ I_s3); endfunction answer = fsolve([0.1;0.1;0.1],rr); R_a = answer([1]); R_b = answer([2]); R_c = answer([3]); disp('The different resistors used for the ayrton shunt for different ranges are:'); printf("R_a = %f ohm\n",R_a); printf("R_b = %f ohm\n",R_b); printf("R_c = %f ohm",R_c); //Result // The different resistors used for the ayrton shunt for different ranges are: // R_a = 0.005005 ohm // R_b = 0.005005 ohm // R_c = 0.040040 ohm
07e9708c909ed64d6e7d53f8a637231c565f4e00
33a08c8218e274bd88f35e08b6d5ec267a13c103
/2_Sorptivity_cp.sci
073ed08d196a4a1dc3313c92846796df42588967
[]
no_license
llassabatere/Scilab-script-for-sorptivity
86b7823cdf3df291fd6795ada4a0bd600901c65f
68465d8fe6f43949571eb438f3c798258b12d5bd
refs/heads/main
2023-03-18T03:02:16.856245
2021-03-17T06:36:44
2021-03-17T06:36:44
348,604,657
0
0
null
null
null
null
UTF-8
Scilab
false
false
7,756
sci
2_Sorptivity_cp.sci
// description tic(); // clock // Computation of sorptivity and c_p parameter by L. Lassabatere et al. (2021) /// long computations --> please wait!! // Initialization clear mode(0); ieee(1); clearglobal; i_fig = 1; // Working repertory and loading functions T_wd = pwd(); T_rep = T_wd + "\0_functions"; chdir(T_rep); exec('0_general_tool_functions.sci',-1); exec('1_WRCHCF_func.sci',-1); close_windows(20); chdir(T_wd); //// Entries: xh and Se, and shape index /////////////////////////////// xSe0 = 0; xSef = 1; xR = linspace(0.01,0.99,99)'+10^-4; // values of m or parameter between 0 and 1 // 10^-4 was added to avoid the numerical indetermination for m = 1/2 //// Hydraulic shape parameters /////////////////////////////// // BC xlambda_BC = 2*xR./(1-xR); eta_BC = 2./xlambda_BC+3; // vGB xn_vGB = floor(2./(1-xR)*100)/100; xm_vGB = 1-2./xn_vGB; eta_vGB = 2./(xn_vGB-2)+3; // vGM xn_vGM = floor(1./(1-xR)*100)/100; xm_vGM = 1-1./xn_vGM; l_vGM = 0.5*ones(xn_vGM); // KG xsigma_KG = 1./xR-1; l_KG = 0.5*ones(xsigma_KG); /// Computation of dimensionless sorptivity^2 (c_p) // BC for i = 1:size(xlambda_BC,1) // equation S2_BC(psi) of the paper psi_bc(i) = xlambda_BC(i)/(xlambda_BC(i)+2); yS2_BC(i) = cp_function_BC_psi(psi_bc(i)); end // vGB for i = 1:size(xm_vGB,1) yS2_vGB(i) = cp_function_vGB_m(xm_vGB(i)); end // vGM for i = 1:size(xn_vGM,1) xm_vGM(i) = 1-1/xn_vGM(i); yS2_vGM(i) = cp_function_vGM_m(xm_vGM(i),l_vGM(i)); end // KG for i = 17:size(xsigma_KG,1) yS2_KG(i) = abs(S_etoile_2_KG_comb(xSe0,xSef,xsigma_KG(i),l_KG(i))); end /// Computation of dimensionless sorptivity (c_p^1/2) for i = 1:size(yS2_vGB,1) yS_vGB(i) = sqrt(yS2_vGB(i)); end for i = 1:size(yS2_vGM,1) yS_vGM(i) = sqrt(yS2_vGM(i)); end for i = 1:size(yS2_BC,1) yS_BC(i) = sqrt(yS2_BC(i)); end for i = 1:size(yS2_KG,1) yS_KG(i) = sqrt(yS2_KG(i)); end ///////////////////////////// Figure 3 of the paper ///////////////////////////////////////////////////////////// // fig. options xf1 = 3; // font_size xf2 = 4; // font_size xleg = 4; xth = 1.; xx_bounds = [0,0;1,4]; // subfigures legends x_abt = 0.02; y_abt = 3.55; alphabet = "$\bf {\large {("+["a" "b" "c" "d" "e" "f" "g" .. "h" "i" "j" "k" "l" "m" "n" .. "o" "p" "q" "r" "s" "t" "u" .. "v" "w" "x" "y" "z"]+")}}$"; ii = 1; // fig. axes ticks x_t_location=[0:0.1:1]; x_t_label='$'+string(x_t_location)+'$'; ticks_x = tlist(["ticks","locations","labels"], x_t_location, x_t_label); y_t_location=[0:0.5:4]; y_t_label='$'+string(y_t_location)+'$'; ticks_y = tlist(["ticks","locations","labels"], y_t_location, y_t_label); // figs clf(i_fig); scf(i_fig); fig = gcf(); fig.figure_size = [1050,900]; i_fig = i_fig+1; subplot(221) plot([0;xR;1],[2;yS_BC;sqrt(2)].^2,"red -"); plot(xR,2*ones(xR),"--"); leg = legend("$c_p\left( x \right)$","$c_{p,d}=2$"); leg.font_size = xleg; leg.line_mode = "off"; leg.fill_mode = "off"; xlabel("$x=\frac{\lambda_{BC}}{2+\lambda_{BC}}$","fontsize",xf2); ylabel("$c_{p,BC}\left( x \right)$","fontsize",xf2); a = gca(); a.data_bounds = xx_bounds; a.axes_reverse = ["off","off","off"]; a.axes_visible = ["on","on","on"]; a.log_flags = "nnn"; a.font_size = xf1; a.auto_ticks=['off' 'off' 'on']; a.x_ticks=ticks_x; a.y_ticks=ticks_y; xstring(x_abt,y_abt,alphabet(ii)); ii = ii + 1; subplot(222) plot([0;xR;1],[0;yS_KG;sqrt(2)].^2,"red -"); plot(xR,2*ones(xR),"--"); xlabel("$x=\frac{1}{1+\sigma_{KG}}$","fontsize",xf2); ylabel("$c_{p,KG}\left( x \right)$","fontsize",xf2); a = gca(); a.data_bounds = xx_bounds; a.axes_reverse = ["off","off","off"]; a.axes_visible = ["on","on","on"]; a.log_flags = "nnn"; a.font_size = xf1; a.auto_ticks=['off' 'off' 'on']; a.x_ticks=ticks_x; a.y_ticks=ticks_y; xstring(x_abt,y_abt,alphabet(ii)); ii = ii + 1; subplot(223) plot([0;xm_vGB;1],[gamma(1/2);yS_vGB;sqrt(2)].^2,"red -"); plot(xm_vGB,2*ones(xm_vGB),"--"); xlabel("$x=m_{vGB}$","fontsize",xf2); ylabel("$c_{p,vGB}\left( x \right)$","fontsize",xf2); a = gca(); a.data_bounds = xx_bounds; a.axes_reverse = ["off","off","off"]; a.axes_visible = ["on","on","on"]; a.log_flags = "nnn"; a.font_size = xf1; a.auto_ticks=['off' 'off' 'on']; a.x_ticks=ticks_x; a.y_ticks=ticks_y; xstring(x_abt,y_abt,alphabet(ii)); ii = ii + 1; subplot(224) plot([0;xm_vGM;1],[0;yS_vGM;sqrt(2)].^2,"red -"); plot(xm_vGM,2*ones(xm_vGM),"--"); xlabel("$x=m_{vGM}$","fontsize",xf2); ylabel("$c_{p,vGM}\left( x \right)$","fontsize",xf2); a = gca(); a.data_bounds = xx_bounds; a.axes_reverse = ["off","off","off"]; a.axes_visible = ["on","on","on"]; a.log_flags = "nnn"; a.font_size = xf1; a.auto_ticks=['off' 'off' 'on']; a.x_ticks=ticks_x; a.y_ticks=ticks_y; xstring(x_abt,y_abt,alphabet(ii)); ii = ii + 1; //////// Saving pictures ////////////////////////////////// // name_pict = "parameter_cp.pdf"; // name_pict_2 = "parameter_cp.svg"; // // names = dir()(2); // ltxt = length(strstr(names,name_pict)); // ltxt2 = length(strstr(names,name_pict_2)); // // if max(ltxt) > 0 then, // to refresh files // deletefile(name_pict); // end // // if max(ltxt) > 0 then, // to refresh files // deletefile(name_pict_2); // end // // xs2pdf(1,name_pict); // xs2svg(1,name_pict_2); //////// SAVINGS ////////////////////////////////// nc = [2:2:98]; xR_res = [0;xR(nc);1]; xlambda_BC_res = [0;xlambda_BC(nc);max(xlambda_BC)]; xn_vGB_res = [2;xn_vGB(nc);max(xn_vGB)]; xn_vGM_res = [1;xn_vGM(nc);max(xn_vGM)]; xsigma_KG_res = [max(xsigma_KG);xsigma_KG(nc);min(xsigma_KG)]; yS_BC_res = [2;yS_BC(nc);sqrt(2)].^2; yS_vGB_res = [gamma(1/2);yS_vGB(nc);sqrt(2)].^2; yS_vGM_res = [0;yS_vGM(nc);sqrt(2)].^2; yS_KG_res = [0;yS_KG(nc);sqrt(2)].^2; M1 = [xR_res xlambda_BC_res xn_vGB_res xn_vGM_res xsigma_KG_res]; M1 = [xR_res]; M2 = [yS_BC_res yS_vGB_res yS_vGM_res yS_KG_res]; Mtot = [M1 M2]; // values of cp // for Table 1 disp("Computation time: " + string(floor(toc()/60*100)/100)+ " min");
7feb62c63d6c6c31a2fc858740fe4f0dd769bafc
1db0a7f58e484c067efa384b541cecee64d190ab
/macros/cconv.sci
c7560eff9fce17657be46164e979da95effb1cb7
[]
no_license
sonusharma55/Signal-Toolbox
3eff678d177633ee8aadca7fb9782b8bd7c2f1ce
89bfeffefc89137fe3c266d3a3e746a749bbc1e9
refs/heads/master
2020-03-22T21:37:22.593805
2018-07-12T12:35:54
2018-07-12T12:35:54
140,701,211
2
0
null
null
null
null
UTF-8
Scilab
false
false
1,407
sci
cconv.sci
//Author: Parthasarathi Panda //parthasarathipanda314@gmail.com function o=cconv(a,b,n) [nargout,nargin]=argn(); if nargin==2 then n=length(a)+length(b)-1; end if type(a)~=1 | type(b)~=1 | type(n)~=1 then error('check the data type of input'); //to check if the inputs are real/complex arrays end if size(n)~=[1,1] then error('check the data type of input'); //to check that n is single dimensional end if floor(n)~=n | imag(n)~=0 then error('check that n is an integer');//to check if n is an integer end //checking if a is a 1d vector(row or column) and turning it into row vector [i,j]=size(a); if j~=1 & i~=1 then error('a should be a vector'); elseif j==1 a=a'; end //checking if b is a 1d vector(row or column) and turning it into row vector [i,j]=size(b); if j~=1 & i~=1 then error('b should be a vector'); elseif j==1 b=b'; end //adjusting length of a if n<=length(a) then a=a(1:n); else a=[a,zeros(1,n-length(a))] end //adjusting length of b if n<=length(b) then b=b(1:n); else b=[b,zeros(1,n-length(b))] end //computing ffts (for speed) aft=fft(a); bft=fft(b); //circular convolution dft is the product of dft of the 2 oft=aft.*bft; o=ifft(oft); endfunction
c18840b5d22a2ba75c56f11248b804d33258ad98
348b83f2cd32e6616b86e704a374661890d58cda
/sin vs cos graph.sce
527335186480175336e91bd1ab0d125b117e1aca
[]
no_license
YashGandhi17/Scilab
012b35caad56d0c7600b9a207956e25774339c66
6d509dc17afe2ca32376df795693c84f94e3f360
refs/heads/master
2020-04-07T03:13:24.046967
2018-11-17T17:24:44
2018-11-17T17:24:44
157,837,866
0
0
null
null
null
null
UTF-8
Scilab
false
false
300
sce
sin vs cos graph.sce
n=0:%pi/16:2*%pi; r=1; x=r*(cos(n)); y=r*(sin(n)); figure(1); clf(1); subplot(2,2,1); plot(x,y); subplot(2,2,2); plot(x,y,'o'); xlabel('x'); ylabel('y'); title("plot the graoh of cosx->sinn"); subplot(2,2,3); plot(2,2,3); plot2d3(x,y); subplot(2,2,4); plot(x,y,'o'); plot2d3(x,y);
fea546634a83b416eb7dab1d30e8a7b4eb439aba
449d555969bfd7befe906877abab098c6e63a0e8
/3763/CH10/EX10.8/Ex10_8.sce
cc54592233248d05035820ab8515bf2a53cabd0e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
377
sce
Ex10_8.sce
clear // // // //Variable declaration d=5*10**-6 //diameter(m) n2=1.447 //refractive index of cladding n1=1.45 //refractive index of core lamda=1*10**-6 //wavelength(m) //Calculation NA=sqrt(n1**2-n2**2) //numerical aperture N=4.9*(d*NA/lamda)**2 //total number of guided modes //Result printf("\n total number of guided modes is %0.3f ",N)
fdb9df309e8a5a395868a2252649c771e736c50d
449d555969bfd7befe906877abab098c6e63a0e8
/2216/CH3/EX3.2/ex_3_2.sce
98e08717fd08b79fd51393d2141b1150593e7400
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
274
sce
ex_3_2.sce
//Example 3.2 // thickness clc; clear; close; format('v',6) n1=3.6;//core refractive index n2=3.56;//cladding refrative index h=0.85;//wavelength in µm a=((h/(2*sqrt(n1^2-n2^2))));//thickness in µm disp("thicknes of the slab should not be greater than "+string(a)+" µm")
bffb35723e5b59bd6ddc6edf3a776bc12050bb80
449d555969bfd7befe906877abab098c6e63a0e8
/710/CH9/EX9.1/9_1.sci
96f1a69e141c36837d165b960fbe171b9e939600
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
511
sci
9_1.sci
clc(); clear; //To calculate the power radiated by the filament r=0.05; //radius of the wire in mm l=4; //length of the wire in cm A=2*%pi*r*l*10^-5; //in m^2 //According to Stephen-Boltzmann law R=e*s*(T^4) //P=R*A e=1; T=3000; //temperature in K s=5.6703*10^-8; //s is stepfan's constant p=s*(T)^4*A*e printf("The power radiated by the filament is %f W",p);
3aafdbf532f3084398675944f77539f5bf1f0775
449d555969bfd7befe906877abab098c6e63a0e8
/3843/CH6/EX6.3/Ex6_3.sce
52fb49911e40b8e2e80398679b5476b89f2fad03
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
504
sce
Ex6_3.sce
// Example 6_3 clc;funcprot(0); // Given data T_1=20;// °C P_1=200;// kPa W=720;// kJ V_1=2;// m^3 R=0.287;// kJ/kg.K c_v=0.717;// kJ/kg.K // Calculation m=(P_1*V_1)/(R*(T_1+273));// The mass in kg u_1=209.1;// kJ/kg u_2=-(W/m)+u_1;// kJ/kg T_2=501.2;// K phi_2=2.222;// The relative humidity at state 2 phi_1=1.678;// The relative humidity at state 1 P_2=P_1*(T_2/(T_1+273));// kPa delS=m*(phi_2-phi_1-(R*log(P_2/P_1)));// kJ/K printf("\nThe entropy change,delS=%1.3f kJ/K",delS);
8ffe71c397f43a51e6bb67c3b97e304ab885b113
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.3/macros/metanet/min_qcost_flow.sci
6afede07290fa437ed7dfdd1c1f5f4004edf8304
[ "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
1,351
sci
min_qcost_flow.sci
function [c,phi,flag]=min_qcost_flow(eps,g) [lhs,rhs]=argn(0) if rhs<>2 then error(39), end // check eps if prod(size(eps))<>1 then error('First argument must be a scalar') end if eps<=0 then error('First argument must be strictly positive') end p=-log(eps)/log(2) // check g check_graph(g) // check capacities ma=prod(size(g('tail'))) n=g('node_number') mincap=g('edge_min_cap') maxcap=g('edge_max_cap') if mincap==[] then mincap=zeros(1,ma) end if maxcap==[] then maxcap=zeros(1,ma) end verif=find(mincap>maxcap) if verif<>[] then error('Maximum capacities must be greater than minimal capacities') end verif=find(mincap<>maxcap) if verif==[] then error('Maximum capacities must not be all equal to minimal capacities') end // check quadratic costs qorig=g('edge_q_orig') qweight=g('edge_q_weight') if qorig==[] then qorig=zeros(1,ma) end if qweight==[] then qweight=zeros(1,ma) end // check demand demand=g('node_demand') if demand==[] then demand=zeros(1,ma) end verif=find(demand<>0) if verif<>[] then error('Demands must be equal to zero') end // compute lp, la and ls // always consider the graph as undirected! [lp,la,ls]=m6ta2lpu(g('tail'),g('head'),n+1,n,2*ma) // compute min quadratic cost flow [phi,flag]=m6floqua(p,mincap,maxcap,g('head'),g('tail'),la,lp,n,qorig,qweight) c=sum(qweight.*(phi-qorig).*(phi-qorig))/2
1bde0b61aa803537c02d5bc223597c2ceeeefdbb
33f77c32fb16283501d950b6fc6b43a07914f32e
/scilab_autopilot/lib/math/quat/quat2rot.sce
7b663cd10aad22988fa21ce79d295a426bc2f6cd
[]
no_license
CLUBMODELISMECEADSTOULOUSE/autopilot
26b79d6a2a632f08989a5528e82f553616617646
a6ffae2f8a86fbc79e636ddd5173af104e1af9cd
refs/heads/master
2021-01-21T00:59:06.271128
2015-10-25T09:31:54
2015-10-25T09:31:54
34,409,237
1
0
null
null
null
null
UTF-8
Scilab
false
false
412
sce
quat2rot.sce
// Get rotation encoded by the quaternion // // INTPUT // - q: input quaternion // // OUTPUT // - ang: rotation angle (rad) // - vectDir: unit vector around which the rotation is applied // // USAGE // [ang, vectDir] = quat2rot(q); // // HISTORY // 28/03/2014: T. Pareaud - Creation function [ang, vectDir] = quat2rot(q) ang=2*acos(quat_getScal(q)); vectDir = vect_unitary(quat_getVect(q)); endfunction
2fd93fcf69ecbdad40e1f18b856a898be2f98862
449d555969bfd7befe906877abab098c6e63a0e8
/2168/CH3/EX3.10/Chapter3_example10.sce
891dd46187f3d08b1562affaaec77035fd2d7a5e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
959
sce
Chapter3_example10.sce
clc clear //Input data p1=1//Pressure at the beginning of compression in kg/cm^2 T1=80+273//Temperature at the beginning of compression in K r=14//Compression ratio p4=2.7//Pressure at the end of expansion in kg/cm^2 Cp=0.24//Specific heat at constant pressure in kJ/kg.K g=1.4//Ratio of specific heats //Calculations p2=p1*r^g//Pressure at the end of compression in kg/cm^2 s=(((r*(p4/p2)^(1/g))-1)/(r-1))*100//Percentage of stroke when the fuel is cut off in percent T2=(T1*(p2/p1))/r//Temperature at the end of compression in K T3=(T2*r*(p4/p2)^(1/g))//Temperature at the end of adiabatic expansion in K q=(Cp*(T3-T2))//Heat supplied in kcal/kg //Output printf('(a) The maximum pressure attained during the cycle is %3.1f kg/cm^2 \n (b) The percentage of working stroke at which the heat supply to the working fluid ceases is %3.2f percent \n (c) The heat received per kg of woring substance during the cycle is %3.0f kcal/kg',p2,s,q)
ff2f71fee767a1f33ae19ce6f67ac1c40175b262
39d212a1aaf3f1dfc8993d47aef9f7b8d4c34008
/5.sce
bb80c5648fe9819498cd677834eeba0177d0a9e2
[]
no_license
majsterkovic/ni-scilab
25e6ef2c46c0973a48f651b7dfaafed5dbffb5c6
05d98042fb4bc424638f0832d1a14bdfce625d53
refs/heads/master
2023-03-12T09:50:27.944550
2021-03-01T22:35:17
2021-03-01T22:35:17
343,575,544
0
0
null
null
null
null
UTF-8
Scilab
false
false
50
sce
5.sce
X=[-5 9 12 -1 0 -12 9 6 1] X(modulo(X,3)==0)=-2
24435f343540b1b028a5e32e4de455e3f2cc559c
449d555969bfd7befe906877abab098c6e63a0e8
/587/CH9/EX9.4/example9_4.sce
7113df50b31d35c19c7e87456c792db15298c02c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
714
sce
example9_4.sce
clear; clc; //Example9.4[Heat Loss through a Double Pane Window] //Given:- H=0.8;//Height[m] L=0.02;//Air gap[m] w=2;//Width[m] T1=12,T2=2;//Glass Surface temperatures across the air gap Tavg=(T1+T2)/2;//[degree Celcius] k=0.02416;//[W/m.degree Celcius] Pr=0.7344;//Prandtl Number nu=1.4*10^(-5);//Kinematic Viscosity[m^2/s] g=9.81;//[m/s^2] //Solution:- Lc=L;//Characteristic length b=1/(Tavg+273);//[K^-1] Ra_L=g*b*(T1-T2)*Pr*(Lc^3)/(nu^2); disp(Ra_L,"The Rayleigh Number is") Nu=0.42*(Ra_L^(1/4))*(Pr^(0.012))*((H/L)^(-0.3)); disp(Nu,"The Nusselt Number is") As=H*w;//[m^2] h=k*Nu/L;//[W/m^2.degree Celcius] Q=h*As*(T1-T2); disp("W",Q,"Rate at which Heat is Lost through the window is")
fc1c2572fd7b8633305840d0776a0abcfd48f146
449d555969bfd7befe906877abab098c6e63a0e8
/3751/CH2/EX2.25/Ex2_25.sce
58169444a2fc5e1db169f780a4ddb860ff4b25e6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,786
sce
Ex2_25.sce
//Fluid system - By - Shiv Kumar //Chapter 2 - Impact of Jet //Example 2.25 clc clear //Given Data:- Vi=32; //Absolute velocity of Jet at inlet, m/s N=250; //Speed of the wheel, rpm alpha_i=20; //angle of Jet at inlet, degrees Vo=6; //Absolute velocity of Jet at outlet, m/s alpha=132; //Angle made by Jet at outlet with tangent to wheel, degrees alpha_o=180-alpha; //degrees Do=1.2; //outer Diameter of wheel, m Di=0.75; //Inner diameter of wheel, m //Data Used:- g=9.81; //Acceleration due to gravity, m/s^2 //Computations:- ui=%pi*Do*N/60; //m/s uo=%pi*Di*N/60; //m/s //(a) Vfi=Vi*sind(alpha_i); //m/s Vwi=Vi*cosd(alpha_i); //m/s Vrwi=Vwi-ui; //m/s Vwo=Vo*cosd(alpha_o); //m/s Vrwo=uo+Vwo; //m/s Vfo=Vo*sind(alpha_o); //m/s beta_i=atand(Vfi/Vrwi); //degrees beta_o=atand(Vfo/Vrwo); //degrees //(b) W=(Vwi*ui+Vwo*uo)/g; //N-m/N //(c) eta=2*(Vwi*ui+Vwo*uo)/Vi^2*100; //in percentage //Results:- printf("(a)Vane angle at Inlet, beta_i=%.2f degrees \n", beta_i) //The answer vary due to round off error printf(" Vane angle at Outlet, beta_o=%.2f degrees \n", beta_o) //The answer vary due to round off error printf("(b)Work done per second per unit weight of water strikes on vane per second=%.2f N-m/N \n", W) //The answer vary due to round off error printf("(c)Efficiency of the wheel, eta=%.2f percent",eta) //The answer vary due to round off error
03a5ba3db937c43e3f651580df04cc77c48da785
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/bow/bow.14_5.tst
9bae44af4ffb7cc2af21921dc0d78f579f5456f2
[]
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
6,287
tst
bow.14_5.tst
14 227:1.0 14 1:0.09090909090909091 3:0.03333333333333333 14:0.16666666666666666 16:0.5 42:1.0 43:0.6666666666666666 44:0.125 56:0.5 92:1.0 114:1.0 119:0.2 246:2.0 253:0.25 264:0.2 304:1.0 320:1.0 357:1.0 436:0.3333333333333333 463:1.0 512:1.0 1194:1.0 1237:1.0 1671:1.0 14 3:0.016666666666666666 5:1.0 43:0.3333333333333333 57:0.07692307692307693 175:0.3333333333333333 246:1.0 253:0.25 632:1.0 851:0.5 978:1.0 982:1.0 1340:1.0 1655:1.0 14 1:0.18181818181818182 44:0.25 50:0.1 56:0.5 84:0.5 92:1.0 162:1.0 168:0.5 175:0.3333333333333333 246:1.0 253:0.25 361:1.0 485:1.0 512:1.0 895:1.0 1012:1.0 1322:1.0 1323:1.0 1416:1.0 1655:1.0 1671:1.0 1687:1.0 1855:1.0 14 308:0.3333333333333333 1145:0.3333333333333333 14 1:0.18181818181818182 3:0.05 14:0.5 16:0.5 42:1.0 43:0.6666666666666666 44:0.125 50:0.2 55:2.0 57:0.07692307692307693 61:1.0 84:0.5 96:1.3333333333333333 124:1.0 162:1.0 165:1.0 175:1.6666666666666667 182:1.0 197:1.0 252:1.0 253:0.5 261:0.3333333333333333 307:0.5 324:1.0 343:1.0 351:1.0 368:1.0 435:1.0 451:1.0 591:1.0 645:1.0 904:1.0 1029:1.0 1048:1.0 1145:0.3333333333333333 1152:2.0 1292:1.0 1336:1.0 1461:1.0 1466:1.0 1725:1.0 1808:1.0 1818:1.0 14 3:0.016666666666666666 43:0.3333333333333333 51:0.5 114:1.0 295:1.0 917:0.5 1053:1.0 1725:1.0 14 1:0.09090909090909091 3:0.016666666666666666 8:0.25 14:0.16666666666666666 16:1.5 43:0.3333333333333333 50:0.2 55:2.0 56:0.5 57:0.15384615384615385 73:0.2 84:0.5 99:1.0 105:1.0 217:1.0 232:1.0 246:2.0 253:0.25 281:1.0 304:3.0 308:0.3333333333333333 381:0.5 512:1.0 517:1.0 737:1.0 895:2.0 917:0.5 1208:1.0 1276:1.0 1414:1.0 1427:1.0 1517:1.0 1709:1.0 1765:1.0 1865:1.0 14 53:1.0 57:0.07692307692307693 217:0.5 299:0.3333333333333333 917:0.5 1341:1.0 14 7:1.0 14 44:0.25 127:1.0 162:1.0 246:1.0 253:0.25 308:0.3333333333333333 416:0.125 14 1:0.09090909090909091 3:0.03333333333333333 44:0.125 50:0.1 141:1.0 162:1.0 368:1.0 468:1.0 1012:1.0 1385:1.0 14 1:0.2727272727272727 3:0.016666666666666666 50:0.2 57:0.15384615384615385 162:1.0 165:1.0 175:1.0 371:1.0 381:0.5 413:1.0 463:1.0 899:1.0 1000:1.0 1110:1.0 1237:1.0 1487:1.0 1542:1.0 1721:1.0 14 3:0.016666666666666666 50:0.1 175:0.3333333333333333 246:1.0 442:1.0 1175:1.0 1316:1.0 1376:1.0 1663:1.0 1788:1.0 14 16:0.5 105:1.0 162:1.0 175:0.3333333333333333 917:0.5 1461:1.0 1809:1.0 14 1:0.09090909090909091 3:0.016666666666666666 14:0.16666666666666666 16:1.0 44:0.25 50:0.3 51:0.5 55:1.0 57:0.15384615384615385 102:1.0 105:1.0 175:1.0 264:0.2 291:1.0 307:0.5 320:1.0 410:1.0 419:1.0 442:1.0 463:1.0 475:1.0 485:1.0 851:0.5 1107:1.0 1222:1.0 1484:2.0 1502:1.0 1855:1.0 14 1:0.2727272727272727 3:0.016666666666666666 14:0.16666666666666666 16:1.5 25:1.0 46:1.0 50:0.1 57:0.15384615384615385 102:1.0 280:1.0 895:2.0 917:0.5 1427:1.0 1429:2.0 1687:1.0 1758:1.0 1866:1.0 14 25:1.0 43:0.3333333333333333 55:1.0 57:0.3076923076923077 60:1.0 99:2.0 106:1.0 107:1.0 162:1.0 304:1.0 466:1.0 851:0.5 1117:1.0 1341:1.0 1353:1.0 1431:0.5 1464:1.0 14 1:0.09090909090909091 57:0.07692307692307693 99:3.0 102:1.0 112:1.0 131:1.0 175:0.6666666666666666 222:1.0 241:0.5 282:0.3333333333333333 371:1.0 473:1.0 481:1.0 844:1.0 851:0.5 873:0.3333333333333333 1641:1.0 1642:1.0 14 1:0.09090909090909091 57:0.07692307692307693 60:1.0 106:1.0 107:1.0 162:1.0 224:1.0 304:2.0 419:1.0 1779:1.0 14 1:0.2727272727272727 3:0.1 14:0.5 44:0.125 50:0.2 57:0.23076923076923078 99:1.0 109:0.2 123:1.0 141:2.0 165:2.0 173:0.2 175:1.3333333333333333 246:1.0 261:0.16666666666666666 276:0.5 286:0.3333333333333333 409:1.0 425:0.5 436:0.3333333333333333 448:0.5 466:1.0 501:1.0 553:1.0 674:1.0 856:1.0 913:1.0 1176:1.0 1192:1.0 1194:1.0 1237:1.0 1296:1.0 1384:1.0 1640:1.0 1671:1.0 14 44:0.25 57:0.07692307692307693 165:1.0 175:0.6666666666666666 290:1.0 419:1.0 485:1.0 676:0.5 1311:1.0 1461:1.0 14 3:0.016666666666666666 14:0.16666666666666666 25:1.0 32:0.2 42:1.0 44:0.125 96:0.3333333333333333 175:0.3333333333333333 259:1.0 1051:1.0 1480:1.0 14 92:1.0 217:0.5 253:0.25 381:0.5 1744:1.0 14 3:0.03333333333333333 11:0.5 14:0.16666666666666666 43:0.3333333333333333 51:0.5 92:1.0 127:1.0 141:1.0 165:1.0 253:0.25 895:1.0 1186:1.0 1392:1.0 14 3:0.06666666666666667 5:1.0 14:0.16666666666666666 32:0.2 43:0.3333333333333333 50:0.1 55:1.0 64:0.1111111111111111 73:0.2 96:0.3333333333333333 114:1.0 162:1.0 175:0.3333333333333333 241:0.5 246:1.0 408:1.0 410:1.0 448:0.5 602:1.0 982:1.0 1787:1.0 14 3:0.03333333333333333 43:0.6666666666666666 51:0.5 57:0.07692307692307693 141:1.0 162:1.0 305:1.0 308:0.3333333333333333 961:1.0 14 1:0.09090909090909091 3:0.016666666666666666 25:1.0 44:0.125 56:0.5 175:0.3333333333333333 252:1.0 253:0.5 276:0.5 828:1.0 874:1.0 1237:1.0 1725:1.0 14 3:0.03333333333333333 42:1.0 44:0.25 50:0.1 51:1.0 80:0.14285714285714285 156:1.0 162:1.0 175:0.6666666666666666 246:1.0 281:0.5 290:1.0 465:1.0 485:1.0 1300:1.0 1461:1.0 1787:1.0 1855:1.0 14 6:1.0 42:1.0 175:0.3333333333333333 304:1.0 333:1.0 877:1.0 14 3:0.016666666666666666 8:0.25 14:0.16666666666666666 217:0.5 406:1.0 14 1:0.18181818181818182 14:0.3333333333333333 16:0.5 44:0.25 46:1.0 50:0.1 57:0.07692307692307693 107:1.0 276:0.5 381:0.5 406:1.0 427:1.0 442:1.0 704:1.0 917:0.5 1251:1.0 1605:1.0 14 1:0.18181818181818182 3:0.016666666666666666 14:0.3333333333333333 44:0.125 50:0.2 57:0.07692307692307693 175:0.3333333333333333 179:1.0 304:1.0 326:1.0 406:1.0 501:1.0 917:0.5 14 1:0.09090909090909091 57:0.15384615384615385 175:0.3333333333333333 406:1.0 979:1.0 14 3:0.016666666666666666 51:0.5 175:0.3333333333333333 14 1:0.09090909090909091 3:0.03333333333333333 14:0.16666666666666666 16:0.5 44:0.125 50:0.1 64:0.1111111111111111 175:0.3333333333333333 371:1.0 406:1.0 408:1.0 419:1.0 440:1.0 448:0.5 810:1.0 1316:1.0 14 3:0.03333333333333333 14:0.16666666666666666 16:0.5 50:0.2 57:0.07692307692307693 351:1.0 382:1.0 673:1.0 959:1.0 1048:1.0 14 1:0.09090909090909091 3:0.03333333333333333 14:0.16666666666666666 32:0.2 50:0.1 57:0.15384615384615385 62:0.5 64:0.1111111111111111 124:1.0 406:2.0 559:0.5 1060:1.0 1107:1.0 1172:0.3333333333333333 1176:1.0 14 3:0.016666666666666666 43:0.3333333333333333 1024:1.0 1237:1.0 14 1:0.18181818181818182 3:0.016666666666666666 14:0.3333333333333333 16:0.5 25:1.0 43:0.6666666666666666 50:0.1 65:1.0 99:1.0 108:1.0 295:1.0 307:0.5 419:1.0 917:0.5 1051:1.0 1140:1.0 1294:1.0
598faf93e9315cdfa05b7b15138eaf6f461bf623
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/ATWM1_Working_Memory_MEG_DJ32GUZ_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce
8dfcd7eb6f09e718355d50ff73b1c56c84f2d70e
[]
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
49,600
sce
ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 43 61 292 292 399 125 1742 2992 1942 fixation_cross gabor_121 gabor_179 gabor_100 gabor_032 gabor_121_alt gabor_179_alt gabor_100 gabor_032 "1_1_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1950_gabor_patch_orientation_121_179_100_032_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_150_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_1_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2192 2992 2242 fixation_cross gabor_098 gabor_178 gabor_056 gabor_123 gabor_098 gabor_178 gabor_056_alt gabor_123_alt "1_2_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_098_178_056_123_target_position_1_2_retrieval_position_2" gabor_circ gabor_178_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_2_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_087 gabor_138 gabor_104 gabor_169 gabor_087 gabor_138_alt gabor_104_alt gabor_169 "1_3_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_087_138_104_169_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_169_framed blank blank blank blank fixation_cross_target_position_1_4 "1_3_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_016 gabor_077 gabor_037 gabor_094 gabor_016_alt gabor_077 gabor_037_alt gabor_094 "1_4_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_016_077_037_094_target_position_2_4_retrieval_position_2" gabor_circ gabor_122_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_4_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1792 2992 2192 fixation_cross gabor_131 gabor_001 gabor_167 gabor_048 gabor_131 gabor_001 gabor_167_alt gabor_048_alt "1_5_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_131_001_167_048_target_position_1_2_retrieval_position_1" gabor_083_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_5_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2192 2992 1892 fixation_cross gabor_110 gabor_060 gabor_002 gabor_166 gabor_110_alt gabor_060_alt gabor_002 gabor_166 "1_6_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_110_060_002_166_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_139_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_6_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 2092 2992 2192 fixation_cross gabor_062 gabor_044 gabor_023 gabor_105 gabor_062_alt gabor_044_alt gabor_023 gabor_105 "1_7_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_062_044_023_105_target_position_3_4_retrieval_position_2" gabor_circ gabor_044_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_7_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_044_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_113 gabor_030 gabor_098 gabor_008 gabor_113_alt gabor_030_alt gabor_098 gabor_008 "1_8_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_113_030_098_008_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_008_framed blank blank blank blank fixation_cross_target_position_3_4 "1_8_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2142 2992 2492 fixation_cross gabor_149 gabor_042 gabor_009 gabor_116 gabor_149 gabor_042_alt gabor_009 gabor_116_alt "1_9_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_149_042_009_116_target_position_1_3_retrieval_position_1" gabor_149_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_9_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1792 2992 2042 fixation_cross gabor_060 gabor_093 gabor_040 gabor_123 gabor_060_alt gabor_093_alt gabor_040 gabor_123 "1_10_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_060_093_040_123_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_171_framed blank blank blank blank fixation_cross_target_position_3_4 "1_10_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2092 2992 2192 fixation_cross gabor_082 gabor_143 gabor_108 gabor_125 gabor_082_alt gabor_143_alt gabor_108 gabor_125 "1_11_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_082_143_108_125_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_059_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_11_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_033 gabor_076 gabor_154 gabor_018 gabor_033 gabor_076_alt gabor_154 gabor_018_alt "1_12_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_033_076_154_018_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_154_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_12_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_154_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 1742 2992 1992 fixation_cross gabor_045 gabor_074 gabor_091 gabor_109 gabor_045 gabor_074_alt gabor_091_alt gabor_109 "1_13_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_045_074_091_109_target_position_1_4_retrieval_position_2" gabor_circ gabor_029_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_13_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_029_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_067 gabor_052 gabor_139 gabor_174 gabor_067 gabor_052_alt gabor_139 gabor_174_alt "1_14_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_067_052_139_174_target_position_1_3_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_14_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1992 2992 2192 fixation_cross gabor_162 gabor_040 gabor_104 gabor_128 gabor_162 gabor_040_alt gabor_104 gabor_128_alt "1_15_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_162_040_104_128_target_position_1_3_retrieval_position_1" gabor_162_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_15_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1942 2992 2292 fixation_cross gabor_124 gabor_006 gabor_042 gabor_170 gabor_124_alt gabor_006 gabor_042 gabor_170_alt "1_16_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_124_006_042_170_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_042_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_16_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1792 2992 2592 fixation_cross gabor_073 gabor_003 gabor_021 gabor_051 gabor_073_alt gabor_003 gabor_021 gabor_051_alt "1_17_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_073_003_021_051_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_161_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_17_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 1842 2992 2442 fixation_cross gabor_052 gabor_073 gabor_121 gabor_158 gabor_052_alt gabor_073 gabor_121 gabor_158_alt "1_18_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2450_gabor_patch_orientation_052_073_121_158_target_position_2_3_retrieval_position_1" gabor_100_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_18_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_100_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_036 gabor_058 gabor_090 gabor_163 gabor_036_alt gabor_058_alt gabor_090 gabor_163 "1_19_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_036_058_090_163_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_116_framed blank blank blank blank fixation_cross_target_position_3_4 "1_19_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_130 gabor_113 gabor_146 gabor_096 gabor_130 gabor_113_alt gabor_146_alt gabor_096 "1_20_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_130_113_146_096_target_position_1_4_retrieval_position_1" gabor_130_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_20_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_130_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_132 gabor_173 gabor_002 gabor_116 gabor_132_alt gabor_173 gabor_002 gabor_116_alt "1_21_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_132_173_002_116_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_048_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_21_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 1742 2992 2292 fixation_cross gabor_136 gabor_031 gabor_052 gabor_072 gabor_136_alt gabor_031_alt gabor_052 gabor_072 "1_22_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_136_031_052_072_target_position_3_4_retrieval_position_1" gabor_090_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_22_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_090_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2092 2992 2442 fixation_cross gabor_034 gabor_177 gabor_066 gabor_090 gabor_034 gabor_177_alt gabor_066 gabor_090_alt "1_23_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_034_177_066_090_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_066_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_23_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_101 gabor_162 gabor_073 gabor_011 gabor_101_alt gabor_162 gabor_073 gabor_011_alt "1_24_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_101_162_073_011_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_073_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_24_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_137 gabor_006 gabor_158 gabor_081 gabor_137_alt gabor_006 gabor_158_alt gabor_081 "1_25_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_137_006_158_081_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_031_framed blank blank blank blank fixation_cross_target_position_2_4 "1_25_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 1842 2992 2392 fixation_cross gabor_067 gabor_123 gabor_157 gabor_141 gabor_067 gabor_123_alt gabor_157 gabor_141_alt "1_26_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2400_gabor_patch_orientation_067_123_157_141_target_position_1_3_retrieval_position_2" gabor_circ gabor_123_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_26_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_123_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2042 2992 2592 fixation_cross gabor_006 gabor_158 gabor_140 gabor_122 gabor_006_alt gabor_158 gabor_140_alt gabor_122 "1_27_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_006_158_140_122_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_122_framed blank blank blank blank fixation_cross_target_position_2_4 "1_27_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2242 2992 2442 fixation_cross gabor_012 gabor_088 gabor_137 gabor_167 gabor_012 gabor_088 gabor_137_alt gabor_167_alt "1_28_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_012_088_137_167_target_position_1_2_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_28_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_037 gabor_124 gabor_096 gabor_015 gabor_037 gabor_124 gabor_096_alt gabor_015_alt "1_29_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_037_124_096_015_target_position_1_2_retrieval_position_1" gabor_037_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_29_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 1742 2992 1992 fixation_cross gabor_056 gabor_006 gabor_166 gabor_135 gabor_056_alt gabor_006 gabor_166 gabor_135_alt "1_30_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_056_006_166_135_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_135_framed blank blank blank blank fixation_cross_target_position_2_3 "1_30_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_135_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_092 gabor_179 gabor_152 gabor_028 gabor_092 gabor_179_alt gabor_152 gabor_028_alt "1_31_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_092_179_152_028_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_152_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_31_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_013 gabor_168 gabor_099 gabor_143 gabor_013 gabor_168_alt gabor_099 gabor_143_alt "1_32_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_013_168_099_143_target_position_1_3_retrieval_position_1" gabor_013_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_32_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1742 2992 2342 fixation_cross gabor_098 gabor_041 gabor_128 gabor_162 gabor_098_alt gabor_041 gabor_128 gabor_162_alt "1_33_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_098_041_128_162_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_128_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_33_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2192 2992 2542 fixation_cross gabor_120 gabor_003 gabor_154 gabor_175 gabor_120_alt gabor_003 gabor_154 gabor_175_alt "1_34_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_120_003_154_175_target_position_2_3_retrieval_position_2" gabor_circ gabor_003_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_34_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_131 gabor_014 gabor_065 gabor_103 gabor_131_alt gabor_014 gabor_065_alt gabor_103 "1_35_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_131_014_065_103_target_position_2_4_retrieval_position_2" gabor_circ gabor_014_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_35_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 1842 2992 2192 fixation_cross gabor_133 gabor_110 gabor_177 gabor_048 gabor_133_alt gabor_110 gabor_177 gabor_048_alt "1_36_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2200_gabor_patch_orientation_133_110_177_048_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_048_framed blank blank blank blank fixation_cross_target_position_2_3 "1_36_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_048_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_019 gabor_107 gabor_075 gabor_144 gabor_019_alt gabor_107 gabor_075 gabor_144_alt "1_37_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_019_107_075_144_target_position_2_3_retrieval_position_2" gabor_circ gabor_057_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_37_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1892 2992 1942 fixation_cross gabor_176 gabor_024 gabor_129 gabor_060 gabor_176 gabor_024 gabor_129_alt gabor_060_alt "1_38_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_176_024_129_060_target_position_1_2_retrieval_position_1" gabor_041_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_38_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_045 gabor_170 gabor_155 gabor_119 gabor_045 gabor_170_alt gabor_155_alt gabor_119 "1_39_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_045_170_155_119_target_position_1_4_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_39_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1992 2992 2092 fixation_cross gabor_123 gabor_033 gabor_168 gabor_055 gabor_123 gabor_033_alt gabor_168 gabor_055_alt "1_40_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_123_033_168_055_target_position_1_3_retrieval_position_1" gabor_078_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_40_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 1792 2992 2542 fixation_cross gabor_134 gabor_115 gabor_073 gabor_090 gabor_134 gabor_115_alt gabor_073_alt gabor_090 "1_41_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2550_gabor_patch_orientation_134_115_073_090_target_position_1_4_retrieval_position_2" gabor_circ gabor_161_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_41_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_161_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1842 2992 2042 fixation_cross gabor_047 gabor_176 gabor_127 gabor_152 gabor_047_alt gabor_176 gabor_127_alt gabor_152 "1_42_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_047_176_127_152_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_152_framed blank blank blank blank fixation_cross_target_position_2_4 "1_42_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_089 gabor_031 gabor_162 gabor_005 gabor_089 gabor_031 gabor_162_alt gabor_005_alt "1_43_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_089_031_162_005_target_position_1_2_retrieval_position_1" gabor_137_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_43_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_089 gabor_123 gabor_006 gabor_148 gabor_089_alt gabor_123 gabor_006 gabor_148_alt "1_44_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_089_123_006_148_target_position_2_3_retrieval_position_2" gabor_circ gabor_073_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_44_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_075 gabor_127 gabor_046 gabor_015 gabor_075 gabor_127_alt gabor_046 gabor_015_alt "1_45_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_075_127_046_015_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_046_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_45_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1792 2992 2492 fixation_cross gabor_074 gabor_053 gabor_005 gabor_036 gabor_074 gabor_053_alt gabor_005_alt gabor_036 "1_46_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2500_gabor_patch_orientation_074_053_005_036_target_position_1_4_retrieval_position_1" gabor_074_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_46_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 1892 2992 2342 fixation_cross gabor_157 gabor_128 gabor_096 gabor_076 gabor_157 gabor_128 gabor_096_alt gabor_076_alt "1_47_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2350_gabor_patch_orientation_157_128_096_076_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_096_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_47_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_096_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1942 2992 2392 fixation_cross gabor_085 gabor_108 gabor_044 gabor_161 gabor_085 gabor_108_alt gabor_044_alt gabor_161 "1_48_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_085_108_044_161_target_position_1_4_retrieval_position_1" gabor_134_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_48_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_090 gabor_123 gabor_036 gabor_013 gabor_090_alt gabor_123_alt gabor_036 gabor_013 "1_49_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_090_123_036_013_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_013_framed blank blank blank blank fixation_cross_target_position_3_4 "1_49_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_137 gabor_097 gabor_178 gabor_007 gabor_137 gabor_097 gabor_178_alt gabor_007_alt "1_50_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_137_097_178_007_target_position_1_2_retrieval_position_2" gabor_circ gabor_051_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_50_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 1842 2992 2342 fixation_cross gabor_017 gabor_107 gabor_036 gabor_141 gabor_017_alt gabor_107 gabor_036_alt gabor_141 "1_51_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2350_gabor_patch_orientation_017_107_036_141_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_173_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_51_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_173_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1942 2992 2142 fixation_cross gabor_038 gabor_146 gabor_064 gabor_115 gabor_038_alt gabor_146 gabor_064 gabor_115_alt "1_52_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_038_146_064_115_target_position_2_3_retrieval_position_2" gabor_circ gabor_006_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_52_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1742 2992 2592 fixation_cross gabor_124 gabor_061 gabor_016 gabor_175 gabor_124_alt gabor_061 gabor_016 gabor_175_alt "1_53_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2600_gabor_patch_orientation_124_061_016_175_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_016_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_53_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_018 gabor_170 gabor_126 gabor_053 gabor_018_alt gabor_170 gabor_126_alt gabor_053 "1_54_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_018_170_126_053_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_103_framed blank blank blank blank fixation_cross_target_position_2_4 "1_54_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2142 2992 2042 fixation_cross gabor_116 gabor_057 gabor_007 gabor_163 gabor_116_alt gabor_057_alt gabor_007 gabor_163 "1_55_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_116_057_007_163_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_028_framed blank blank blank blank fixation_cross_target_position_3_4 "1_55_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_168 gabor_153 gabor_082 gabor_001 gabor_168_alt gabor_153 gabor_082 gabor_001_alt "1_56_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_168_153_082_001_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_132_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_56_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1992 2992 2492 fixation_cross gabor_084 gabor_125 gabor_107 gabor_149 gabor_084_alt gabor_125_alt gabor_107 gabor_149 "1_57_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2500_gabor_patch_orientation_084_125_107_149_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_059_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_57_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 2142 2992 2292 fixation_cross gabor_002 gabor_122 gabor_050 gabor_179 gabor_002_alt gabor_122_alt gabor_050 gabor_179 "1_58_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2300_gabor_patch_orientation_002_122_050_179_target_position_3_4_retrieval_position_1" gabor_140_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_58_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_140_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2192 2992 1992 fixation_cross gabor_161 gabor_029 gabor_001 gabor_080 gabor_161_alt gabor_029_alt gabor_001 gabor_080 "1_59_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_161_029_001_080_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_59_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_139 gabor_113 gabor_050 gabor_161 gabor_139 gabor_113_alt gabor_050 gabor_161_alt "1_60_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_139_113_050_161_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_050_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_60_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 2092 2992 1992 fixation_cross gabor_179 gabor_043 gabor_094 gabor_121 gabor_179 gabor_043 gabor_094_alt gabor_121_alt "1_61_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_179_043_094_121_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_target_position_1_2 "1_61_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_173 gabor_005 gabor_093 gabor_125 gabor_173 gabor_005_alt gabor_093_alt gabor_125 "1_62_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_173_005_093_125_target_position_1_4_retrieval_position_1" gabor_173_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_62_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_157 gabor_046 gabor_067 gabor_178 gabor_157 gabor_046 gabor_067_alt gabor_178_alt "1_63_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_157_046_067_178_target_position_1_2_retrieval_position_1" gabor_019_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_63_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 2142 2992 2342 fixation_cross gabor_134 gabor_150 gabor_165 gabor_117 gabor_134 gabor_150_alt gabor_165 gabor_117_alt "1_64_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2350_gabor_patch_orientation_134_150_165_117_target_position_1_3_retrieval_position_2" gabor_circ gabor_010_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_64_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_010_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2042 2992 2592 fixation_cross gabor_007 gabor_088 gabor_173 gabor_153 gabor_007 gabor_088 gabor_173_alt gabor_153_alt "1_65_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_007_088_173_153_target_position_1_2_retrieval_position_2" gabor_circ gabor_040_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_65_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2142 2992 2492 fixation_cross gabor_081 gabor_138 gabor_050 gabor_155 gabor_081_alt gabor_138 gabor_050_alt gabor_155 "1_66_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_081_138_050_155_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_107_framed blank blank blank blank fixation_cross_target_position_2_4 "1_66_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2042 2992 1892 fixation_cross gabor_006 gabor_160 gabor_121 gabor_144 gabor_006_alt gabor_160_alt gabor_121 gabor_144 "1_67_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_006_160_121_144_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_121_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_67_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1942 2992 1892 fixation_cross gabor_099 gabor_055 gabor_035 gabor_125 gabor_099_alt gabor_055 gabor_035_alt gabor_125 "1_68_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_099_055_035_125_target_position_2_4_retrieval_position_2" gabor_circ gabor_009_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_68_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 1892 2992 2542 fixation_cross gabor_094 gabor_056 gabor_162 gabor_121 gabor_094_alt gabor_056 gabor_162 gabor_121_alt "1_69_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2550_gabor_patch_orientation_094_056_162_121_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_target_position_2_3 "1_69_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2242 2992 2392 fixation_cross gabor_082 gabor_106 gabor_154 gabor_041 gabor_082 gabor_106_alt gabor_154 gabor_041_alt "1_70_Encoding_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_082_106_154_041_target_position_1_3_retrieval_position_1" gabor_082_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_70_Retrieval_Working_Memory_MEG_P8_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
dc53d6959933e5d6977b2735862399bd90d7f47f
85fe3541d4988b676b5ab7c8ed719a26fe38e3c8
/Examples/deformation.sce
e5f60abac904c826b90a442cb4d097033b706279
[ "Unlicense" ]
permissive
UnknowableCoder/SimCampEl
c115105b2b5837b3a1eb012d1acb89015eade17f
9bd83c6316e16a161d19393ad79a4e3bdcb30679
refs/heads/main
2023-03-13T23:07:25.000479
2021-03-12T13:38:35
2021-03-12T13:38:35
347,071,759
1
0
null
null
null
null
UTF-8
Scilab
false
false
238
sce
deformation.sce
3 0 0 0 0 0 0 0 0 0 1 0 0.5 Charge 0 -1.10000002384185791015625 0 0 0 0 0 0 0 0 1 0 0.5 Charge - 1.10000002384185791015625 0 0 0 0 0 0 0 0 1 0 0.5 Charge + -20 -20 -20 20 20 20 0 2*cos(t) 0 0 0 0 299792448 4 0
da2fbd6b4fe7f64e98f48170d111ff1a9917ea83
449d555969bfd7befe906877abab098c6e63a0e8
/2381/CH1/EX1.4/ex_4.sce
3c2f067d7097567146c327d3cc58e4e214f60bf9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
304
sce
ex_4.sce
//Example 4 // peroid ,maximum velocity and acceleration clc; clear; close; a=3;//cm b=4;//cm A=sqrt(a^2+b^2);//cm w=2;//sec^-1 T=(2*%pi)/w;//seconds um=w*A;//cm/s am=w^2*A;//cm/s^2 disp(T,"time period is ,(seconds)=") disp(um,"maximum velocity is,(cm/s)=") disp(am,"maximum acceleration is,(cm/s^2)=")
bd0a73394c1303b07fe90b2fbb03b4d3187c2d83
449d555969bfd7befe906877abab098c6e63a0e8
/416/CH4/EX4.16/exp4_16pp.sce
3071a595011c30fcae1e8df648542bd459e2499f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,208
sce
exp4_16pp.sce
clc clear disp("example 4 16") po=666.66 //power f=50 //frequency v=400 //voltage pf=0.8 ;p=-1//power factor pf2=0.95;p2=-1//improved power factor vc=2200 //capacitor voltage rc=vc il=po*1000/(v*pf*sqrt(3)) il1=il*(complex(pf,p*sind(acosd(pf)))) i2c=il*pf tad=tand(acosd(pf2)) i2=complex(i2c,i2c*tad*p2) printf(" load current i1 %.2f%.2fA \n load current current on improved power factor %.2f%.2fjA",il1,imag(il1),i2,imag(i2)) disp("(a)") ic=abs(il1-i2) ilc=ic*v/vc pic=ilc/sqrt(3) xc=vc/pic ca=10^6/(2*%pi*f*xc) printf(" line current of %dV capacitor bank %.2fA\n line current of %d capacitor bank %.2fA \n phase current of capacitor bank %.2fA \n reactance %.2f \n capacitance %.2fF*10^(-6)",v,ic,vc,ilc,pic,xc,ca) disp("(b)") kr=3*vc*pic/1000 printf(" kVA rating %.1fkVA \n kVA rating of transformer to convert %dV to %dV will be the same as the kVA rating of capacitor bank",kr,v,vc) pl=100*(abs(il1)^2-abs(i2)^2)/abs(il1)^2 printf("percentage reduction in losses %d percent",pl) disp("(d)") pi=ic/sqrt(3) xcc=v/pi cc=1*10^6/(2*%pi*f*xcc) roc=ca/cc printf(" phase current %.1fA \n reactance %.2fohm \n capasitance %.2f*10^-6F \n ratio of capacitance %.3f",pi,xcc,cc,roc)
31e62017125dd36c6dcfc87742b92be7c7dcf3e5
449d555969bfd7befe906877abab098c6e63a0e8
/689/CH3/EX3.5/5.sce
95c64eeb7f6fa109fc71a58dd591e901132033c2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
308
sce
5.sce
clc; funcprot(0); //Example 3.5 Speed of sound // Initialisation of variables gma = 1.4; P = 2116.2; rho = 0.002378; // Calculations a = sqrt(gma*P/rho); //Results disp(a , "Speed of sound in standard pressure 2116.2 lbper sq ft, and standard density 0.002378slug per cu ft. (in ft/sec):");
12808677eba29db9833a50694a384a5f4397c42d
e89f13aeb12cb1a597ab81dc55d09fc6b88ff529
/speed_test_scilab_optim_ga.sci
f7642b5f32fd3c59fa7925c59e45c260bb001afa
[]
no_license
tmeits/jga
e9028dae364b21d0c3e109f0a8f14f705b651d27
5d932a924203a361b49650c7ccc84cb1f0002112
refs/heads/master
2021-01-22T04:40:41.320933
2014-03-25T08:39:59
2014-03-25T08:39:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,824
sci
speed_test_scilab_optim_ga.sci
//deff('y=f2(x)','y = sum(x.^2)'); function y = f2(x) y=sum(x.^2) endfunction // function y= f36(x) pi=3.14 y=-1.*21.5+x(1)*sin(4.0*pi*x(1))+x(2)*sin(20.0*pi*x(2)) endfunction function y= fdj1(xs); l=length(xs); s=0.; for i=1:l s=s+xs(i)*xs(i) end y= s endfunction // End of function PopSize = 800; Proba_cross = 0.7; Proba_mut = 0.1; NbGen = 100; NbCouples = 110; Log = %T; nb_disp = 10; // Nb point to display from the optimal population pressure = 0.05; ga_params = init_param(); // Parameters to adapt to the shape of the optimization problem //ga_params = add_param(ga_params,'minbound',[-5.12; -5.12]); //ga_params = add_param(ga_params,'maxbound',[5.12; 5.12]); ga_params = add_param(ga_params,'dimension',800); ga_params = add_param(ga_params,'beta',0); ga_params = add_param(ga_params,'delta',0.1); // Parameters to fine tune the Genetic algorithm. All these parameters are optional for continuous optimization // If you need to adapt the GA to a special problem, you ga_params = add_param(ga_params,'init_func',init_ga_default); ga_params = add_param(ga_params,'crossover_func',crossover_ga_default); ga_params = add_param(ga_params,'mutation_func',mutation_ga_default); //ga_params = add_param(ga_params,'codage_func',codage_ga_identity); ga_params = add_param(ga_params,'selection_func',selection_ga_elitist); //ga_params = add_param(ga_params,'selection_func',selection_ga_random); ga_params = add_param(ga_params,'nb_couples',NbCouples); ga_params = add_param(ga_params,'pressure',pressure); Min = get_param(ga_params,'minbound'); Max = get_param(ga_params,'maxbound'); x0 = (Max - Min) .* rand(size(Min,1),size(Min,2)) + Min; [pop_opt, fobj_pop_opt, pop_init, fobj_pop_init] = optim_ga(fdj1, PopSize, NbGen, Proba_mut, Proba_cross, Log, ga_params);
5bcafbdf631a72cae004fdbf64e8e499aa0bdbec
449d555969bfd7befe906877abab098c6e63a0e8
/2840/CH7/EX7.2/ex7_2.sce
6fb613c0f831253ade5a2f37a4d21f752512034d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
296
sce
ex7_2.sce
clc; clear all; n1 = 1.49; // Refractive index of first medium n2 = 1.44; // Refractive index of second medium delta = (n1-n2)/n1; // Index difference NA = n1* sqrt(2*delta); disp('',NA,'Numerical Aperture of fiber is'); thetaa = asind(NA); disp('degree',thetaa,'Acceptance angle is ');
b6fcfddac91e98ea8b6e39e9852cce6e21133eea
449d555969bfd7befe906877abab098c6e63a0e8
/1439/CH2/EX2.2/2_2.sce
912658c32afc03abf96591002c18a0f475190b95
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
240
sce
2_2.sce
clc //initialisation of variables G= 0.110 //gram R= 0.08205 //l-atm /mole K T= 26.1 //C P= 743 //mm V= 0.0270 //l //CALCULATIONS M= G*R*(273.15+T)*760/(P*V) //RESULTS printf ('molecular weight of hydrocarbon= %.f g mole^-1',M)
22211797fa4b7219a172aba355161e581a83ae87
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/midcross/midcross1.sce
3dbaf80d1feb4426ee473c48a51c80cc63af52c3
[]
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
262
sce
midcross1.sce
//check o/p for single element matrix input x=[1]; midcross(x); //output //!--error 10000 //X must be a vector with more than one element. //at line 45 of function midcross called by : //midcross(x); //at line 3 of exec file called by :
efbfcb69b831d00b0af50f5d288276352452bd1e
8781912fe931b72e88f06cb03f2a6e1e617f37fe
/scilab/diffuse_rel/convert.sce
c68fb4f0f8e12fee4c5e7a0ec739747456f541c1
[]
no_license
mikeg2105/matlab-old
fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e
eac168097f9060b4787ee17e3a97f2099f8182c1
refs/heads/master
2021-05-01T07:58:19.274277
2018-02-11T22:09:18
2018-02-11T22:09:18
121,167,118
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,181
sce
convert.sce
jobname='mrdifrun2_4'; exec("../mrdifrun1/diffuse/diffuse_utils.sce"); exec("../mrdifrun1/diffuse/mymultireactdiffuse.sce"); exec("../mrdifrun1/diffuse/newtempmultireactconc.sce"); exec("../mrdifrun1/diffuse/mconcupdate.sce"); exec("../mrdifrun1/diffuse/getconcsub.sce"); exec("../mrdifrun1/diffuse/lap3d.sce"); exec("../mrdifrun1/diffuse/cmdott.sce"); exec("../mrdifrun1/diffuse/compfunc.sce"); stacksize(64000000); dt=0.002000; h=0.100000; ralpha=80.8000; rbeta=.400000; dif(1)=0.400000; dif(2)=0.010000; dif(3)=0.600000; inconsts(1)=ralpha; inconsts(2)=rbeta; rootdirectory='/scratch/cs1mkg/results/diffuse_rel'; nspec=3; nsteps=100;nsubsteps=1;n1=20;n2=20;n3=1; in(1)=n1; in(2)=n2; in(3)=n3;in(4)=h; in(5)=nspec; //concsin=0.05*ones(n1,n2,n3,nspec); //concsin(10,10,1,3)=0.00000001;concsin(14,14,1,1)=0.00000001; concsin(8,8,1,2)=0.000000001; //sources=zeros(n1,n2,n3,nspec);sinks=zeros(n1,n2,n3,nspec); allconcs=difreadmat(rootdirectory+'/'+jobname+'.dat'); for i=1:nsteps concs=matrix(allconcs(i,:,:,:,:),n1,n2,n3,nspec); savemconcs(rootdirectory,jobname+'mod',i,n1,n2,n3,nspec,concs); end mgendxgenmod(rootdirectory,jobname+'mod',nsteps,n1,n2,n3,nspec); //exit;
9a26bf1f6718b2766fb0e993d90f2e1760fd614b
449d555969bfd7befe906877abab098c6e63a0e8
/2621/CH3/EX3.4/Ex3_4.sce
ef10a78ec9eb3041687684f695f38254914360dd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
571
sce
Ex3_4.sce
// Example 3.4 clc; clear; close; // Given data format('v',9); Rin= 2*10^6;// in Ω Rout= 75;// in Ω f0= 5;// in Hz A= 2*10^5;//unit less B=1;// for voltage follower Rf= 0; Af= 1;// voltage gain (since Rf=0) Rin_f= A*Rin;// input resistance in Ω Rin_f= Rin_f*10^-9;// in GΩ Rout_f= Rout/A;//output resistance in Ω f_f= f0*A;// bandwidth in Hz f_f= f_f*10^-6;// in MHz disp(Af,"The voltage gain is : "); disp(Rin_f,"The input resistance in GΩ is : "); disp(Rout_f,"The output resistance in Ω is : ") disp(f_f,"The bandwidth in MHz is : ");
ba4e9ffdc4a2398c2193fec26326c862f7b329bb
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.1.1/macros/percent/%sdp.sci
194d558ad46afc3a0e0af8da973ced1f41912a54
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
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
186
sci
%sdp.sci
//<f>=%sdp(p1,p2) // %sdp(M,p) calcule le resultat de la division element par element de //la matrice de scalaire M par la matrice de polynome p. (M./P) //! f=list('r',p1,p2,[]) //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)