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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a8dabcfa6f761c7806eb98f0705d7b2ba081f345 | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH16/EX16.05/16_05.sce | fcb964042af861b0c949f78281d43d6f0277e37c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,070 | sce | 16_05.sce | //pathname=get_absolute_file_path('16.05.sce')
//filename=pathname+filesep()+'16.05-data.sci'
//exec(filename)
//Atmospheric pressure(in kPa):
p=10^2
p1=1
p3=8
//Temperature(in K):
Ta=300
T1=Ta
T2a=273+30
Va=4
V1=Va
//Gas constant(in kJ/kg.K):
R=0.287
//Index of compression:
n=1.2
//Mass of air compressed(in kg/min):
m=p*Va/(R*Ta)
//Work input(in hp):
Wi=n/(n-1)*p1*10^2*Va*((p3/p1)^((n-1)/n)-1)/(60*0.7457)
//Optimum intercooling pressure(in bar):
p2=sqrt(p1*p3)
//Work input for 2nd stage compression(in hp):
Wii=2*n/(n-1)*p1*10^2*Va*((p3/p1)^((n-1)/(2*n))-1)/(60*0.7457)
Wii=20.29
//Volume of air inlet of HP cylinder(in m^3/min):
V2a=p1*V1/T1*T2a/p2
//Work required(in hp):
W2=n/(n-1)*p1*10^2*V1*((p2/p1)^((n-1)/n)-1)/(60*0.7457)+n/(n-1)*p2*10^2*V2a*((p3/p2)^((n-1)/n)-1)/(60*0.7457)
W2=20.42
//Percentage saving in work:
ps=(Wi-Wii)/Wi*100
printf("\n RESULT \n")
printf("\nPercentage saving in work = %f percent",ps)
//% excess work to be done:
pe=(W2-Wii)/W2*100
printf("\nPercentage excess work to be done = %f percent",pe) |
c64b78e41129fe89ae4ddaaa16c5f4cd4d368026 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH11/EX11.10/example_11_10.sce | bb07bfd75aade92d2f893d89ea268a162995972e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 532 | sce | example_11_10.sce | //there is a pole at the origin and contribution of gain k
k=10^(14/20) //20*log(k)=14
disp("equation of starting line is y=-20*log(w)+14")
wc1=10^(0)
disp(wc1,"hence at wc1, 14=-20*log(wc1)+14. that is wc1 = ")
y1=poly([1 1/wc1],'s','coeff')
disp("equation of next line is y=-40*log(w)+14")
wc2=10^(40/40) //-40*log(wc2)=-40
disp(wc2,"wc2=")
y2=poly([1 1/wc2],'s','coeff')
wc3=50 //given
y3=poly([1 1/wc3],'s','coeff')
TF= k*(y2)/((y1)*(y3))
disp(TF,"transfer function = ")
|
9ade73d67acea48bcdead0c4cb6590f6e3da5fce | 449d555969bfd7befe906877abab098c6e63a0e8 | /2741/CH5/EX5.23/Chapter5_Example23.sce | b42d9daf954ab2a384ce4371a9f5f610d3e0d3b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | Chapter5_Example23.sce | clc
clear
//Input data
d=2*10^-8;//The molecular diameter in cm
n=3*10^19;//The number of molecules per cc
pi=3.14;//Mathematical constant of pi
//Calculations
L=1/((pi*(d)^2*n));//The mean free path of a gas molecule in cm
//Output
printf('The mean free path of a gas molecule is %3.0g cm ',L)
|
33afcbf3bfaae12589f490093cfc0737cf29408d | 8b478a8f9c9ebc5420d79a115b278c7aea7308af | /3rdparty/hdf4-4.2.14-win64/HDF4Examples/hdf/examples/VG/testfiles/h4ex_VG_get_vgroup_info.tst | 63e3e5e21507fe2b9ee801f3547125114ac9652c | [
"LicenseRef-scancode-hdf4"
] | permissive | gzliyu/GF2 | 85e71cf298e8365b2f6a94a11ed664aa3f59a4c0 | f0edd69e47022d1d16fc5b0c370d6e607ac594b0 | refs/heads/master | 2023-02-21T11:03:55.830515 | 2021-01-08T06:13:33 | 2021-01-21T12:11:55 | 331,960,655 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 143 | tst | h4ex_VG_get_vgroup_info.tst | Lone vgroups in this file are:
Vgroup name SD Vgroup and class Common Vgroups
Vgroup name h4ex_VG_add_sds_to_vgroup.hdf and class CDF0.0
|
3d439ff1fa8f1d2448324f9f1adc77f8f5bf3e3e | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH5/EX5.11/ch5_11.sci | 6b7603dea8c1b19d48f416dee7c1a9efd0fdf341 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 432 | sci | ch5_11.sci | // to find fundamental mmf wave,speed and its peak value
clc;
p=4;
f = 50;
S=60;
g=180*p/S;
ph=3;
m=S/(p*ph); //slots/pole/phase
K_b=sind(m*g/2)/(m*sind(g/2)); //breadth factor
I_L=48;
I_P=I_L/sqrt(3);
I_Pmax=I_P*sqrt(2);
c=24; //conductors
N_ph=S*c/(ph*2); //turns/phase
F_m=(4/%pi)*K_b*(N_ph/p)*I_Pmax;
disp(F_m,'F_m(AT/pole)');
F_peak=(3/2)*F_m;
disp(F_peak,'F_peak(AT/pole)');
n=120*f/p;
disp(n,'speed(rpm)'); |
77310e2b4177c46a008afba390d8c749b65a344c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH7/EX7.4/ex7_4.sce | e2c487a147a74edf295a824fed0e31f8580a78ea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 296 | sce | ex7_4.sce | // Exa 7.4
clc;
clear;
close;
// Given data
H1 = 2800;// in kJ/kg
H2 = 2600;// in kJ/kg
C2 = sqrt(2*(H1-H2)*1000);// in m/s
disp(C2,"Exit velocity in m/s is ");
m_f = 25;// mass flow rate in kg/sec
V = 0.154;// in m^3/kg
A = (m_f*V)/C2;// in m^2
disp(A,"Total exit area in m^2 is");
|
cc7e5be626142d19bf7a32d0815f100d0fd5f4bb | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set12/s_Industrial_Instrumentation_K._Krishnaswamy_And_S._Vijayachitra_1436.zip/Industrial_Instrumentation_K._Krishnaswamy_And_S._Vijayachitra_1436/CH6/EX6.7/ex6_7.sce | 1a95b029a7ab3db84b176361e783c85d0f549d41 | [] | 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 | 146 | sce | ex6_7.sce | errcatch(-1,"stop");mode(2);// Example 6.7, page no-374
rho=1000
h=10
P=rho*h
printf("P = %d kg/m^2 = %d kg/cm^2 ",P,P/10000)
exit();
|
839381be580ea85606ea3de0543374fdf91d50f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3516/CH12/EX12.6/Ex12_6.sce | cc414e96b68c2ddf23225a47fe6da01d9bddbb4f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,609 | sce | Ex12_6.sce | printf("\t example 12.6 \n");
printf("\t approximate values are mentioned in the book \n");
T1=176; // inlet hot fluid,F
T2=176; // outlet hot fluid,F
t1=85; // inlet cold fluid,F
t2=120; // outlet cold fluid,F
W=30000; // lb/hr
w=120000; // lb/hr
printf("\t 1.for heat balance \n");
printf("\t for carbon disulfide \n");
l=140; // Btu/(lb)
Q=((W)*l); // Btu/hr
printf("\t total heat required for carbon disulfide is : %.1e Btu/hr \n",Q);
printf("\t for water \n");
c=1; // Btu/(lb)*(F)
Q=((w)*(c)*(t2-t1)); // Btu/hr
printf("\t total heat required for water is : %.0f Btu/hr \n",Q);
delt1=T2-t1; //F
delt2=T1-t2; // F
printf("\t delt1 is : %.0f F \n",delt1);
printf("\t delt2 is : %.0f F \n",delt2);
LMTD=((delt2-delt1)/((2.3)*(log10(delt2/delt1))));
printf("\t LMTD is :%.1f F \n",LMTD);
Tc=((T2)+T1)/2; // caloric temperature of hot fluid,F
printf("\t caloric temperature of hot fluid is : %.0f F \n",Tc);
tc=((t1)+(t2))/2; // caloric temperature of cold fluid,F
printf("\t caloric temperature of cold fluid is : %.1f F \n",tc);
printf("\t hot fluid:inner tube side,carbon disulfide \n");
hio=300; // Btu/(hr)*(ft^2)*(F)
printf("\t cold fluid:shell side,water \n");
ID=17.25; // in
C=0.25; // clearance
B=6; // baffle spacing,in
PT=1;
as=((ID*C*B)/(144*PT)); // flow area,ft^2
printf("\t flow area is : %.2f ft^2 \n",as);
Gs=(w/as); // mass velocity,lb/(hr)*(ft^2)
printf("\t mass velocity is : %.2e lb/(hr)*(ft^2) \n",Gs);
mu1=1.7; // at 280F,lb/(ft)*(hr), from fig.14
De=0.0792; // from fig.28,ft
Res=((De)*(Gs)/mu1); // reynolds number
printf("\t reynolds number is : %.1e \n",Res);
jH=103; // from fig.28
k=0.36; // Btu/(hr)*(ft^2)*(F/ft), from fig.1
Z=1.68; // Z=((c)*(mu1)/k)^(1/3); // prandelt number
ho=((jH)*(k/De)*(Z)); // using eq.6.15,Btu/(hr)*(ft^2)*(F)
printf("\t individual heat transfer coefficient is : %.0f Btu/(hr)*(ft^2)*(F) \n",ho);
tw=(tc)+(((hio)/(hio+ho))*(Tc-tc)); // from eq.5.31
printf("\t tw is : %.1f F \n",tw);
tf=(Tc+tw)/(2); // from eq 12.19
printf("\t tf is : %.1f F \n",tf);
printf("\t hot fluid:inner tube side,carbon disulfide \n");
kf=0.09; // Btu/(hr)*(ft^2)*(F/ft), from fig 14
sf=1.26; // from table 6
rowf=78.8; // lb/ft^3
muf=0.68; // cp, from fig 24
Nt=177;
D=0.0517; // ft
G1=(W/(3.14*Nt*D));
printf("\t G1 is : %.f lb/(hr)*(lin ft) \n",G1);
Ret=((4)*(G1)/muf); // reynolds number
printf("\t reynolds number is : %.0f \n",Ret);
hi=(0.251*(((kf^3)*(rowf^2)*(4.17*10^8))/(muf^2))^(1/3)); // hi*(((kf^3)*(rowf^2)*(4.17*10^8))/(muf^2))^(-1)=0.251, from fig 12.12
printf("\t hi is : %.0e Btu/(hr)*(ft^2)*(F) \n",hi);
ID=0.62; // ft
OD=.75; //ft
hio1=((hi)*(ID/OD)); //Hio=(hio/phyp), using eq.6.5
printf("\t Correct hio1 to the surface at the OD is : %.0f Btu/(hr)*(ft^2)*(F) \n",hio1);
Uc=((hio1)*(ho)/(hio1+ho)); // clean overall coefficient,Btu/(hr)*(ft^2)*(F)
printf("\t clean overall coefficient is : %.0f Btu/(hr)*(ft^2)*(F) \n",Uc);
A2=0.1963; // actual surface supplied for each tube,ft^2,from table 10
L=16;
A=(Nt*L*A2); // ft^2
printf("\t total surface area is : %.0f ft^2 \n",A);
UD=((Q)/((A)*(LMTD)));
printf("\t actual design overall coefficient is : %.0f Btu/(hr)*(ft^2)*(F) \n",UD);
Rd=((Uc-UD)/((UD)*(Uc))); // (hr)*(ft^2)*(F)/Btu
printf("\t actual Rd is : %.5f (hr)*(ft^2)*(F)/Btu \n",Rd);
printf("\t pressure drop for inner pipe \n");
n=1; // number of passes
at1=0.302; // flow area, in^2
at=((Nt*at1)/(144*n)); // total area,ft^2,from eq.7.48
printf("\t flow area is : %.3f ft^2 \n",at);
Gt=(30000/(0.372)); // mass velocity,lb/(hr)*(ft^2)
printf("\t mass velocity is : %.2e lb/(hr)*(ft^2) \n",Gt);
mu2=0.029; // at inlet,lb/(ft)*(hr)
Ret=((D)*(Gt)/mu2); // reynolds number
printf("\t reynolds number is : %.2e \n",Ret);
row=(76.1/((359)*(636/492)*(14.7/39.7)));
printf("\t row is %.3f ld/ft^3 \n",row);
s=(row/62.5);
printf("\t s is %.4f \n",s);
f=0.000138; // friction factor for reynolds number 143000, using fig.26
delPt=((f*(Gt^2)*(16)*(1))/(5.22*(10^10)*(0.0517)*(s)))/(2); // using eq.7.45,psi
printf("\t delPt is : %.1f psi \n",delPt);
printf("\t allowable delPa is negligible psi \n");
printf("\t pressure drop for annulus \n");
f=0.0017; // friction factor for reynolds number 31000, using fig.29
s=1; // for reynolds number 31000,using fig.6
Ds=17.25/12; // ft
B=6;
N=(12*L/B); // number of crosses,using eq.7.43
printf("\t number of crosses are : %.0f \n",N);
delPs=((f*(Gs^2)*(Ds)*(N))/(5.22*(10^10)*(De)*(s))); // using eq.7.44,psi
printf("\t delPs is : %.1f psi \n",delPs);
printf("\t allowable delPT is 10 psi \n");
//end
|
7a8d9d3a687776f8f1c535c270e616bdb6209e09 | 08fe4df45181e37cb84ba1610cdfb219b4142434 | /macros/GenSciHelpXml.sci | 9ea0386227315823ff49495a7e6e2b4cfdace30b | [] | no_license | gzq763199198/AutoGenHelpToolBox | 17c7db64547e0e196806464f47b788d6ae33bf2e | c85275e8a7a1cd2ab3e19db5b283e9d1e9502843 | refs/heads/master | 2021-02-17T04:02:18.470172 | 2020-03-05T04:35:44 | 2020-03-05T04:35:44 | 245,069,411 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,882 | sci | GenSciHelpXml.sci | function GenSciHelpXml()
global sciobj;
global AutoGenHelpToolbox_root;
//file operation
parentdir = sciobj.Destdir + filesep();
//copy sce script file to dest dir
scriptfile_path = AutoGenHelpToolbox_root + "examples"+filesep()+"tmpFile"+filesep()+"xml2jar_script.sce";
copyfile(parentdir, scriptfile_path);
//New FileDir to save Xml File
xmlpath = parentdir + "HelpSourceFile" + filesep() + "XmlFiles" + filesep();
mkdir(parentdir + "HelpSourceFile" + filesep(), "XmlFiles");
savefilepath = xmlpath + sciobj.FunctionName + ".xml";
//copy chapter file to Genxmlfile
copyfile(AutoGenHelpToolbox_root+"examples"+filesep()+"tmpFile"+filesep()+"CHAPTER", xmlpath + "CHAPTER");
// Build xml_doc file
functionname = sciobj.FunctionName;
s = "<?xml version=""1.0"" encoding=""UTF-8""?>"+...
"<refentry xml:id="""+functionname+""" xml:lang=""zh"">"+...//1
"<refnamediv>"+...//1-1
"<refname>"+sciobj.FunctionName+"</refname>"+...//1-1-1
"<refpurpose>"+sciobj.Overview+"</refpurpose>"+...//1-1-2
"</refnamediv>"+...
"<refsynopsisdiv>"+...//1-2
"<title>调用格式</title>"+...
"<synopsis>"+sciobj.Syntax+"</synopsis>"+...
"</refsynopsisdiv>"+...
"<refsection>"+...//1-3
"<title>参数说明</title>"+...//1-3-1
"<variablelist>"+...//1-3-2 1-3-2-1
"</variablelist>"+...
"</refsection>"+...
"<refsection>"+...//1-4
"<title>详细描述</title>"+...
"<para>"+sciobj.Detailed+"</para>"+...
"</refsection>"+...
"<refsection role=""see also"">"+...
"<title>参见</title>"+...
"<simplelist type=""inline"">"+...
"<member>"+...
"<link linkend="""+sciobj.SeeAlso+""">"+sciobj.SeeAlso+"</link>"+...
"</member>"+...
"</simplelist>"+...
"</refsection>"+...
"</refentry>";
doc = xmlReadStr(s);
if sciobj.Input == "0" && sciobj.Output == "0" then //无输入输出
inNode = xmlElement(doc,"varlistentry");
inNodeChild1 = xmlElement(doc,"listitem");
inNodeChild1Child1 = xmlElement(doc,"para");
inNodeChild1Child1.content = "无";
doc.root.children(3).children(2).children(1) = inNode;
doc.root.children(3).children(2).children(1).children(1) = inNodeChild1;
doc.root.children(3).children(2).children(1).children(1).children(1) = inNodeChild1Child1;
else
for i = 1:strtod(sciobj.Input)
inNode = xmlElement(doc,"varlistentry");
inNodeChild1 = xmlElement(doc,"term");
inNodeChild1.content = sciobj.ParamsData.Name(i);
inNodeChild2 = xmlElement(doc,"listitem");
inNodeChild2Child1 = xmlElement(doc,"para");
inNodeChild2Child1.content = sciobj.ParamsData.Dim1(i)+"×"+sciobj.ParamsData.Dim2(i)+" "+...
sciobj.ParamsData.Type(i)+" "+sciobj.ParamsData.Details(i);
doc.root.children(3).children(2).children(i) = inNode;
doc.root.children(3).children(2).children(i).children(1) = inNodeChild1;
doc.root.children(3).children(2).children(i).children(2) = inNodeChild2;
doc.root.children(3).children(2).children(i).children(2).children(1) = inNodeChild2Child1;
end
for i = 1:strtod(sciobj.Output)
inNode = xmlElement(doc,"varlistentry");
inNodeChild1 = xmlElement(doc,"term");
inNodeChild1.content = sciobj.ParamsData.Name(strtod(sciobj.Input)+i);
inNodeChild2 = xmlElement(doc,"listitem");
inNodeChild2Child1 = xmlElement(doc,"para");
inNodeChild2Child1.content = sciobj.ParamsData.Dim1(strtod(sciobj.Input)+i)+"×"+...
sciobj.ParamsData.Dim2(strtod(sciobj.Input)+i)+" "+...
sciobj.ParamsData.Type(strtod(sciobj.Input)+i)+" "+...
sciobj.ParamsData.Details(strtod(sciobj.Input)+i);
doc.root.children(3).children(2).children(strtod(sciobj.Input)+i) = inNode;
doc.root.children(3).children(2).children(strtod(sciobj.Input)+i).children(1) = inNodeChild1;
doc.root.children(3).children(2).children(strtod(sciobj.Input)+i).children(2) = inNodeChild2;
doc.root.children(3).children(2).children(strtod(sciobj.Input)+i).children(2).children(1) = inNodeChild2Child1;
end
end
xmlDump(doc);
xmlWrite(doc,savefilepath,%t);
if sciobj.DemofileContent <> "0" then
details = fileinfo(savefilepath);
[fd, err] = mopen(savefilepath,"r");
source_str = mgetl(fd);
mclose(fd);
dest_str = source_str;
for i = 1:9
dest_str(size(source_str,1)-i+1) = [];
end
format_str_before = ["<refsection>";"<title>示例</title>";"<programlisting role=""example""><![CDATA["];
format_str_after = ["]]></programlisting>";"</refsection>"];
dest_str = [dest_str; format_str_before];
dest_str = [dest_str; sciobj.DemofileContent'];
dest_str = [dest_str; format_str_after];
for i = 1:9
dest_str = [dest_str;source_str(size(source_str,1)-9+i)];
end
[fd, err] = mopen(savefilepath,"w");
mputl(dest_str, fd);
mclose(fd);
end
disp("生成sci函数帮助文档成功!");
disp(sciobj.FunctionName + ".xml" + "文件保存位置为:");
disp(" " + xmlpath);
//TODO:善后操作
xmlDelete(doc);
clearglobal sciobj;
clearglobal bOK;
clearglobal Stop;
endfunction
|
4741d02b2d4a25d35ce9653a2781632a2781a678 | 449d555969bfd7befe906877abab098c6e63a0e8 | /55/CH15/EX15.2/15ex2.sci | d2fc690ff13df0f4c014e175baefcd1c90863a4c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 230 | sci | 15ex2.sci | D=[1,2,5,7,10,14,35,70];
a = 2; //a and b belong to D
b = 14;
V=int32([a,b]);
thelcm=lcm(V)
V=int32([a,b]);
thegcd=gcd(V)
abar=70/a
bbar=70/b
j=[abar,b];
h=[a,bbar];
V=int32([j])
lcm1=lcm(V)
K=int32([h])
lcm2=lcm(K) |
c31559348f238304e312df5e78010cba3c5fc909 | 449d555969bfd7befe906877abab098c6e63a0e8 | /710/CH4/EX4.13/4_13.sci | 4f41cbfc63bf8ee8a51c18cdfee85db248ac1797 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sci | 4_13.sci | clc();
clear;
//To determine the wavelength which has high transmission
mew=1.38; //refractiveindex of magnesium floride
t=175; //thickness of coating of magnesium fluoride in nm
lambda=4*t*mew //wavelength
printf("The wavelength which has high transmission is %f nm",lambda); |
d5d97bc7f23fd81c4faf9691ac01ffbc06f19e69 | 449d555969bfd7befe906877abab098c6e63a0e8 | /710/CH11/EX11.1/11_1.sci | 9d6a8769164345ac602bb2fd0dbebe27d70c518f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 216 | sci | 11_1.sci | clc();
clear;
//To calculate the radius of Li(mass no.7)
r0=1.2; //in fm
A=7; //mass number
//r=r0*(A)^1/3
r=r0*(A)^(1/3)
printf("The radius of Li with mass number 7 is %f fm",r); |
679de037bb26f9bee5a16415cb4fe24c24918de3 | b9602336613b26d0b9c22a09d219c0ed8e158b4e | /Examples/Examples_VecFunc/sum.sce | f3d62cd8a09b0baa773809ec39d439c4322c9536 | [
"BSD-2-Clause"
] | permissive | CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox | d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd | 70c97cda4e0dd54df0a638e9b99f380c09ffa37e | refs/heads/master | 2022-12-11T01:28:28.742041 | 2020-08-26T12:24:27 | 2020-08-26T12:24:27 | 290,481,428 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 478 | sce | sum.sce | // Function Name: sum
// Return the sum of of all elements in array
// Calculating the sum.
inputvec1 = [5, 4, 3];
result = armaVec("sum",inputvec1)
// Function Name: trapz
// Compute the trapezoidal integral of Y with respect to spacing in X, in each column (dim=0) or each row (dim=1) of Y
// Calculating the trapz.
inputvec1 = [5, 4, 3];
inputvec1 = [1, 2, 3];
result = armaVec("trapz",inputvec1,inputvec2)
result = armaVec("trapz",inputvec1,inputvec2,1)
|
7cc33609f07078ad37688af17f338b1c58fbe64b | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/BV27.prev.tst | ef75258c4d50c7a2d7d46ac0b32b54b469673f13 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,416 | tst | BV27.prev.tst | [1,2,3,4,5] >> 6 =
shift by -6
icol=0 sum= 0 + this(0)=1 * dipows(0)=1 * binoms(0)=1
icol=1 sum= 1 + this(1)=2 * dipows(1)=-6 * binoms(1)=1
icol=2 sum= -11 + this(2)=3 * dipows(2)=36 * binoms(2)=1
icol=3 sum= 97 + this(3)=4 * dipows(3)=-216 * binoms(3)=1
icol=4 sum= -767 + this(4)=5 * dipows(4)=1296 * binoms(4)=1
row 0 dipows=[1,-6,36,-216,1296] binoms=[1,1,1,1,1] result=[5713,0,0,0,0]
icol=1 sum= 0 + this(1)=2 * dipows(0)=1 * binoms(0)=1
icol=2 sum= 2 + this(2)=3 * dipows(1)=-6 * binoms(1)=2
icol=3 sum= -34 + this(3)=4 * dipows(2)=36 * binoms(2)=3
icol=4 sum= 398 + this(4)=5 * dipows(3)=-216 * binoms(3)=4
row 1 dipows=[1,-6,36,-216,1296] binoms=[1,2,3,4,5] result=[5713,-3922,0,0,0]
icol=2 sum= 0 + this(2)=3 * dipows(0)=1 * binoms(0)=1
icol=3 sum= 3 + this(3)=4 * dipows(1)=-6 * binoms(1)=3
icol=4 sum= -69 + this(4)=5 * dipows(2)=36 * binoms(2)=6
row 2 dipows=[1,-6,36,-216,1296] binoms=[1,3,6,10,15] result=[5713,-3922,1011,0,0]
icol=3 sum= 0 + this(3)=4 * dipows(0)=1 * binoms(0)=1
icol=4 sum= 4 + this(4)=5 * dipows(1)=-6 * binoms(1)=4
row 3 dipows=[1,-6,36,-216,1296] binoms=[1,4,10,20,35] result=[5713,-3922,1011,-116,0]
icol=4 sum= 0 + this(4)=5 * dipows(0)=1 * binoms(0)=1
row 4 dipows=[1,-6,36,-216,1296] binoms=[1,5,15,35,70] result=[5713,-3922,1011,-116,5]
[5713,-3922,1011,-116,5]
|
9a09d9250cecae5048f5a98e4084bc7823bbc04d | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH9/EX9.12/ch9_12.sci | 92d922b75166914bf53c1f21f72c95112bf468cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 769 | sci | ch9_12.sci | //find line current and starting torque with direct switching, stator resistance starting, autotransformer starting, star delta starting, autotransformer ratio give 1 pu
clc;
//I_s/I_fl=6;
s_fl=0.05;
disp('by direct switching');
Is=6;disp(Is,'line current(pu)');
T=Is^2*s_fl;disp(T,'torque(pu)');
disp('by stator resistance starting');
Is=2;disp(Is,'line current(pu)'); //given
T=Is^2*s_fl;disp(T,'torque(pu)');
disp('by autotransformer starting');
x=2/6;
Is_motor=2;
Is=Is_motor*x;disp(Is,'line current(pu)');
T=Is^2*s_fl;disp(T,'torque(pu)');
disp('by star delta starting');
Is=(1/3)*6;disp(Is,'line current(pu)');
T=Is^2*s_fl*3;disp(T,'torque(pu)');
disp('by autotransformer starting');
Ts=1;
x=sqrt(Ts/((6^2)*s_fl));disp(x,'x'); |
2ce34d4034cdbd3d008b996741d1b85bda872a4b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3116/CH16/EX16.2/Ex16_2.sce | b6c3085bcb5eb71be1bf07abe1584701317746ee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 649 | sce | Ex16_2.sce |
clc
// given that
VH_H2=0 // half cell voltage
VZn_Zn2=-0.763 // half cell voltage
iZn=10^-7 // current density in A/cm^2
iH2=10^-10 // current density in A/cm^2
beta_Zn=0.09
beta_H2=-0.08
n=2 //Exchange of 2 electrons
F=96500//Faradays constant
printf(" Example 16.2\n")
printf("\n Part A")
i_c=10^[(VH_H2-VZn_Zn2-(beta_H2*log10(iH2))+(beta_Zn*log10(iZn)))/(beta_Zn-beta_H2)]
printf("\n Rate of oxidation with zinc is %.2e A/cm^2",i_c)
r=i_c/(n*F)
printf("\n Rate of oxidation is %.2e mol/cm^2-s\n",floor(r*1e12)/1e12)
printf("\n Part B")
Vc=VH_H2+(beta_H2*log10(i_c/iH2))
printf("\n Corrosion potential is %.3f V\n",Vc)
|
fbf7594bd38f009478984a9dc3116db8b8e0ea05 | 4ba406c1422fd1f3462feb6c2f378b17ea9175c2 | /src/functions/positioners/GoldenSpiralPositioner.tst | 916646216b9e35893a2486dce39a53e0e85c1000 | [] | no_license | dwjohnston/geoplanets-model | 236670178c456a0537ee31cfb3ab931ea46c7edf | 06ff2b0ec83272f56ffe02b9ee38f1e169b41a51 | refs/heads/master | 2021-07-12T23:00:17.411355 | 2018-09-02T08:08:22 | 2018-09-02T08:08:22 | 144,376,835 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,465 | tst | GoldenSpiralPositioner.tst |
import {pointOnCircle, Position} from "../../../../../blacksheep-geometry/lib";
import { GoldenRectanglePositioner } from './GoldenRectanglePositioner';
class GoldenSpiralPositioner {
goldenRectanglePositioner: GoldenRectanglePositioner;
curvePointQueue: Position[];
currentCurvePoint: Position;
currentCurvePosition: Position;
previousCurvePosition: Position;
currentCurveRadius: number;
currentCurveLength: number;
currentSize: number;
curvePhaseAdjust: number;
constructor(goldenRectanglePositioner : GoldenRectanglePositioner) {
this.goldenRectanglePositioner = goldenRectanglePositioner;
this.curvePointQueue = [];
this.currentCurvePoint = null;
this.currentCurvePosition = null;
this.previousCurvePosition =null;
this.currentCurveRadius= 0;
this.currentSize = 0;
this.curvePhaseAdjust = 0;
this.currentCurveLength = 0;
}
reset() {
this.goldenRectanglePositioner.reset();
this.curvePointQueue = [];
this.currentCurvePoint = null;
this.currentCurvePosition = null;
this.currentCurveRadius= null;
//TODO
//There's an OO confusion here. Is it the responsibility of the GoldenSpiralPositioner to reset (and also tick) the GoldenRectanglePositioner?
//I'm saying yes for now.
}
tick() {
this.goldenRectanglePositioner.tick();
let myPhi =this.goldenRectanglePositioner.getMyPhi();
let subPhase = this.goldenRectanglePositioner.stagePhaser.getSubPhase();
let previousSubPhase = this.goldenRectanglePositioner.stagePhaser.getPreviousSubPhase();
let invertMyPhi = 1 - (1/myPhi);
/**
On corner:
Just add the curve point
*/
if (this.goldenRectanglePositioner.stagePhaser.isOnCorner()){
this.curvePointQueue.push(this.goldenRectanglePositioner.getPreviousPosition().copy());
}
/**
Moving from 1/myPhi of the curve phase:
Change the curve point
*/
if (previousSubPhase < invertMyPhi && subPhase > invertMyPhi ) {
if (this.curvePointQueue.length > 3 ) {
this.currentCurvePoint = this.curvePointQueue.shift();
this.currentCurvePosition = pointOnCircle(
this.currentCurvePoint,
this.currentSize/(myPhi),
(this.goldenRectanglePositioner.stagePhaser.getPhase()) * (Math.PI / 2)
);
this.currentCurveLength = this.goldenRectanglePositioner.currentSize / (myPhi * myPhi);
this.curvePhaseAdjust = (this.goldenRectanglePositioner.stagePhaser.getStage() -1) * (Math.PI / 2);
}
}
/**
If there's a curve point:
Draw the curve
*/
if (this.currentCurvePoint) {
//Curve phase:
//If subphase is 0 - 1/myPhi = 0.5-1 of curvePhase
// subphase is 1/myPhi to 1 = 0.0 to 0.5 of curvePhase.
let curvePhase = ( subPhase < invertMyPhi) ? 0.5 + 0.5 * (subPhase / ( invertMyPhi)) : 0.5 * ((subPhase - invertMyPhi)/(1/myPhi )) ; //0-1
let center = this.currentCurvePoint;
this.previousCurvePosition = this.currentCurvePosition.copy();
this.currentCurvePosition = pointOnCircle(
center,
this.currentCurveLength,
this.curvePhaseAdjust + curvePhase * (Math.PI /2)
);
}
}
getPosition() : Position{
return this.currentCurvePosition;
}
getPreviousPosition() : Position {
return this.previousCurvePosition;
}
}
export default GoldenSpiralPositioner;
|
3b59073453f55d3da46ae3091890d15c0953f279 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1895/CH5/EX5.43/EXAMPLE5_43.SCE | 2f4bdc03cae84fd613f421a56af80009f0e2f13f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 642 | sce | EXAMPLE5_43.SCE | //ANALOG AND DIGITAL COMMUNICATION
//BY Dr.SANJAY SHARMA
//CHAPTER 5
//ANGLE MODULATION
clear all;
clc;
printf("EXAMPLE 5.43(PAGENO 263)");
//given
//x_c(t) = 10*cos(2*%pi*10^8*t + 200*cos (2*%pi*10^3*t))
//instantaneous frequecy w_i = 2*%pi*10^8 - 4*%pi*10^6*sin(2*%pi*10^3)
delta_w = 4*%pi*10^5//angular frequency deviation
w_m = 2*%pi*10^3//angulat modulating frequency
//calculations
beeta = delta_w/w_m;
W_B1 = 2*(beeta + 1)*w_m;//angular bandwidth
//since beeta >>1,therefore
W_B1 = 2*delta_w//angular bandwidth
//W_B==W_B1
f_B = W_B1/(2*%pi)//bandwidth in Hz
//result
printf("\n\nBandwidth = %.2f Hz",f_B);
|
e9a64b49905a85bd0037f35d6d6dbfa38a1f65ae | 262ac6443426f24d5d9b13945d080affb0bd6d9b | /opgaves/faculteit/edit-me.sce | 1e56782d81e4bc38d15cc1d2563f3df3d992f851 | [] | no_license | slegers/Scilab | 9ebd1d486f28cf66e04b1552ad6e94ea4bc98a0b | 1b5dc3434def66355dafeb97c01916736a936301 | refs/heads/master | 2021-01-12T01:42:01.493578 | 2017-01-09T10:54:09 | 2017-01-09T10:54:09 | 78,420,343 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 223 | sce | edit-me.sce | function [faculteit] = solve(n)
if n < 0 then
error("the variable should be positive.")
end
if n==1 | n==0 then
faculteit = 1
else
faculteit = n * solve(n-1)
end
endfunction
|
abd3c43e3027f14b978ff0051cb17da88f0c1186 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH9/EX9.4/9_4.sce | e52b0ced8ad9f200865a1162a55b0e2f11dd6977 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 496 | sce | 9_4.sce | clear
clc
data=[ 1 2 .2+%i*.8 %i*.02
2 3 .3+%i*.9 %i*.03
2 4 .25+%i*1 %i*.04
3 4 .2+%i*.8 %i*.02
1 3 .1+%i*.4 %i*.01
]
n=4
e=5
Y=zeros(n,n)
for i=1:e
ynew = 1/(data(i,3))
y0=data(i,4)
n1=real(data(i,1))
n2=real(data(i,2))
if(n1==0)
Y(n2,n2)=Y(n2,n2)+ynew+y0
else
Y(n1,n1)= Y(n1,n1)+ynew+y0
Y(n1,n2)= Y(n1,n2)-ynew
Y(n2,n1)= Y(n2,n1)-ynew
Y(n2,n2)= Y(n2,n2)+ynew+y0
end
end
disp(fix(Y*1e3)/1e3)
|
37e0b98c345fa4cd78f9c9beb27dadbb6b0b38fa | 449d555969bfd7befe906877abab098c6e63a0e8 | /172/CH9/EX9.8/ex8.sce | 52f626ab7f92b5f8f67104d28d9c53ec85c1a97d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 327 | sce | ex8.sce | //example 8
//Velocity in exit flow
clear
clc
disp('From Steam Tables, for liquid water at 20 C')
vf=0.001002 //in m^3/kg
v=vf
Pi=300 //Line pressure in kPa
Po=100 //in kPa
Ve=(2*v*(Pi-Po)*1000)^0.5 //velocity in the exit flow
printf(" \n Hence, an ideal nozzle can generate upto Ve=%.0f m/s in the exit flow. \n",Ve) |
d4a5cfb4f43fa66791efbda56169db6b497be57e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH13/EX13.2/Ex13_2.sce | 1218f5be1121fdf6dfdea6e406238575ce8776e5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 152 | sce | Ex13_2.sce | //Example 13-2, Page No- 484
clear
clc
lamda = 2.19
len = (3/8)*lamda
printf('The pyhsical length of the transmission line %.2f feet',len)
|
1bcbb7b8dbcb0f8ffff087e2fd36df33f7ffa200 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /eneways bots.sce | 1d888bd42df6ba85c5e5a5533ca76705f4612fd9 | [] | 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 | 61,025 | sce | eneways bots.sce | Name=eneways bots
PlayerCharacters=EGODEATH
BotCharacters=soar.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=EGODEATH
AddedBots=soar.bot
PlayerMaxLives=0
BotMaxLives=1
PlayerTeam=1
BotTeams=2
MapName=kovdmm4b.map
MapScale=3.8125
BlockProjectilePredictors=false
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=10.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=overwatch
WeaponHeroTag=tracking
DifficultyTag=1
AuthorsTag=gli
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=kind of like a winston jumping over you, vertical/horizontal crossup practice
GameVersion=0.99.5
[Aim Profile]
Name=At Feet
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=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Medium Skill At Feet
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=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Medium Skill
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
[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=soar
DodgeProfileNames=ADAD
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.5;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Medium Skill At Feet;Medium Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=soaring bot
SeeThroughWalls=true
[Character Profile]
Name=EGODEATH
MaxHealth=100.0
WeaponProfileNames=Track_fullsound;track_earlove;track_earlove2;pistol;QWRL;;;
MinRespawnDelay=1.0
MaxRespawnDelay=1.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=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=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=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
[Character Profile]
Name=soaring bot
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=1.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1500.0
MaxCrouchSpeed=500.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=0.0
Gravity=4.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=0.212 Z=0.020
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=50.0
MainBBHasHead=false
MainBBHeadRadius=20.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=300.0
ProjBBRadius=50.0
ProjBBHasHead=false
ProjBBHeadRadius=20.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=soaring.abilmov;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
[Dodge Profile]
Name=ADAD
MaxTargetDistance=5500.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.05
MaxLRTimeChange=0.3
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.9
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=2.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.3
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.1
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=Track_fullsound
Type=Hitscan
ShotsPerClick=1
DamagePerShot=1.0
KnockbackFactor=1.0
TimeBetweenShots=0.01
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=1000000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=1.0
RecoilNegatable=false
DecalType=0
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.01
TaggingMaxFactor=0.5
TaggingHitFactor=0.001
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
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=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.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
[Weapon Profile]
Name=track_earlove
Type=Hitscan
ShotsPerClick=1
DamagePerShot=1.0
KnockbackFactor=0.0
TimeBetweenShots=0.01
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=1000000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.05
HitSoundCooldown=0.05
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=0.0
TaggingHitFactor=0.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
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=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.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=1.0
AAMaxSpeed=1000.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
[Weapon Profile]
Name=track_earlove2
Type=Hitscan
ShotsPerClick=1
DamagePerShot=1.0
KnockbackFactor=0.0
TimeBetweenShots=0.01
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=1000000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.1
HitSoundCooldown=0.1
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=0.0
TaggingHitFactor=0.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
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=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.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=1.0
AAMaxSpeed=1000.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
[Weapon Profile]
Name=pistol
Type=Hitscan
ShotsPerClick=1
DamagePerShot=100.0
KnockbackFactor=4.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.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=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=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=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.1
MinRecoilUp=0.1
MinRecoilHoriz=0.1
MaxRecoilHoriz=0.1
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.05
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.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
[Weapon Profile]
Name=QWRL
Type=Projectile
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=5.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=6000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=6000.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
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
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
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=5.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
Explosive=true
Radius=500.0
DamageAtCenter=120.0
DamageAtEdge=40.0
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.25
AAMaxSpeed=3.0
AADeadZone=0.0
AAFOV=90.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=-50.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
[Movement Ability Profile]
Name=soaring
MaxCharges=1.0
ChargeTimer=1.0
ChargesRefundedOnKill=0.0
DelayAfterUse=1.0
FullyAuto=false
AbilityDuration=0.15
LockDirectionForDuration=false
NegateGravityForDuration=false
MainVelocity=3500.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=false
UpVelocity=100.0
EndVelocityFactor=1.0
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=false
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=true
AIUseOnGround=true
AIUseInAir=false
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=10.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.0
AIDamageReactionMaxDelay=0.0
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
brush
vertices
-608.000000 512.000000 -832.000000
0.000000 512.000000 -832.000000
0.000000 512.000000 -864.000000
-608.000000 512.000000 -864.000000
-608.000000 0.000000 -832.000000
0.000000 0.000000 -832.000000
0.000000 0.000000 -864.000000
-608.000000 0.000000 -864.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey64
brush
vertices
-288.000000 560.000000 -288.000000
-128.000000 560.000000 -288.000000
-128.000000 560.000000 -352.000000
-288.000000 560.000000 -352.000000
-288.000000 528.000000 -288.000000
-128.000000 528.000000 -288.000000
-128.000000 528.000000 -352.000000
-288.000000 528.000000 -352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_black
brush
vertices
-352.000000 560.000000 -128.000000
-288.000000 560.000000 -128.000000
-288.000000 560.000000 -512.000000
-352.000000 560.000000 -512.000000
-352.000000 528.000000 -128.000000
-288.000000 528.000000 -128.000000
-288.000000 528.000000 -512.000000
-352.000000 528.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_black
brush
vertices
-512.000000 560.000000 -288.000000
-352.000000 560.000000 -288.000000
-352.000000 560.000000 -352.000000
-512.000000 560.000000 -352.000000
-512.000000 528.000000 -288.000000
-352.000000 528.000000 -288.000000
-352.000000 528.000000 -352.000000
-512.000000 528.000000 -352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_black
brush
vertices
-512.000000 544.000000 -128.000000
-352.000000 544.000000 -128.000000
-352.000000 544.000000 -288.000000
-512.000000 544.000000 -288.000000
-512.000000 528.000000 -128.000000
-352.000000 528.000000 -128.000000
-352.000000 528.000000 -288.000000
-512.000000 528.000000 -288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-512.000000 544.000000 -352.000000
-352.000000 544.000000 -352.000000
-352.000000 544.000000 -512.000000
-512.000000 544.000000 -512.000000
-512.000000 528.000000 -352.000000
-352.000000 528.000000 -352.000000
-352.000000 528.000000 -512.000000
-512.000000 528.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-288.000000 544.000000 -352.000000
-128.000000 544.000000 -352.000000
-128.000000 544.000000 -512.000000
-288.000000 544.000000 -512.000000
-288.000000 528.000000 -352.000000
-128.000000 528.000000 -352.000000
-128.000000 528.000000 -512.000000
-288.000000 528.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-288.000000 544.000000 -128.000000
-128.000000 544.000000 -128.000000
-128.000000 544.000000 -288.000000
-288.000000 544.000000 -288.000000
-288.000000 528.000000 -128.000000
-128.000000 528.000000 -128.000000
-128.000000 528.000000 -288.000000
-288.000000 528.000000 -288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-688.000000 80.000000 -560.000000
-672.000000 80.000000 -560.000000
-672.000000 80.000000 -576.000000
-688.000000 80.000000 -576.000000
-688.000000 48.000000 -560.000000
-672.000000 48.000000 -560.000000
-672.000000 48.000000 -576.000000
-688.000000 48.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_orangedark
brush
vertices
-32.000000 80.000000 -192.000000
-16.000000 80.000000 -192.000000
-16.000000 80.000000 -208.000000
-32.000000 80.000000 -208.000000
-32.000000 48.000000 -192.000000
-16.000000 48.000000 -192.000000
-16.000000 48.000000 -208.000000
-32.000000 48.000000 -208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_orangedark
brush
vertices
-160.000000 16.000000 64.000000
-96.000000 16.000000 64.000000
-96.000000 16.000000 -128.000000
-160.000000 16.000000 -128.000000
-160.000000 0.000000 64.000000
-96.000000 0.000000 64.000000
-96.000000 0.000000 -128.000000
-160.000000 0.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-96.000000 32.000000 -128.000000
-96.000000 32.000000 64.000000
160.000000 32.000000 -192.000000
-96.000000 0.000000 64.000000
-32.000000 32.000000 -192.000000
-32.000000 0.000000 -192.000000
-96.000000 0.000000 -128.000000
160.000000 0.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-608.000000 16.000000 -640.000000
-544.000000 16.000000 -640.000000
-544.000000 16.000000 -832.000000
-608.000000 16.000000 -832.000000
-608.000000 0.000000 -640.000000
-544.000000 0.000000 -640.000000
-544.000000 0.000000 -832.000000
-608.000000 0.000000 -832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey64
brush
vertices
-864.000000 32.000000 -576.000000
-672.000000 32.000000 -576.000000
-608.000000 32.000000 -640.000000
-608.000000 0.000000 -832.000000
-608.000000 32.000000 -832.000000
-672.000000 0.000000 -576.000000
-608.000000 0.000000 -640.000000
-864.000000 0.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-128.000000 576.000000 -128.000000
160.000000 576.000000 -128.000000
160.000000 576.000000 -512.000000
-128.000000 576.000000 -512.000000
-128.000000 512.000000 -128.000000
160.000000 512.000000 -128.000000
160.000000 512.000000 -512.000000
-128.000000 512.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-864.000000 576.000000 -128.000000
-512.000000 576.000000 -128.000000
-512.000000 576.000000 -512.000000
-864.000000 576.000000 -512.000000
-864.000000 512.000000 -128.000000
-512.000000 512.000000 -128.000000
-512.000000 512.000000 -512.000000
-864.000000 512.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-832.000000 0.000000 192.000000
192.000000 0.000000 192.000000
192.000000 0.000000 -832.000000
-832.000000 0.000000 -832.000000
-832.000000 -16.000000 192.000000
192.000000 -16.000000 192.000000
192.000000 -16.000000 -832.000000
-832.000000 -16.000000 -832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-688.000000 80.000000 -208.000000
-672.000000 80.000000 -208.000000
-672.000000 80.000000 -560.000000
-688.000000 80.000000 -560.000000
-688.000000 64.000000 -208.000000
-672.000000 64.000000 -208.000000
-672.000000 64.000000 -560.000000
-688.000000 64.000000 -560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_orangedark
brush
vertices
-688.000000 80.000000 -192.000000
-672.000000 80.000000 -192.000000
-672.000000 80.000000 -208.000000
-688.000000 80.000000 -208.000000
-688.000000 48.000000 -192.000000
-672.000000 48.000000 -192.000000
-672.000000 48.000000 -208.000000
-688.000000 48.000000 -208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_orangedark
brush
vertices
-896.000000 512.000000 -192.000000
-864.000000 512.000000 -192.000000
-864.000000 512.000000 -576.000000
-896.000000 512.000000 -576.000000
-896.000000 0.000000 -192.000000
-864.000000 0.000000 -192.000000
-864.000000 0.000000 -576.000000
-896.000000 0.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-608.000000 512.000000 96.000000
-96.000000 512.000000 96.000000
-96.000000 512.000000 64.000000
-608.000000 512.000000 64.000000
-608.000000 0.000000 96.000000
-96.000000 0.000000 96.000000
-96.000000 0.000000 64.000000
-608.000000 0.000000 64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-864.000000 512.000000 64.000000
-608.000000 512.000000 64.000000
-608.000000 32.000000 64.000000
-864.000000 512.000000 -192.000000
-864.000000 32.000000 64.000000
-864.000000 32.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 5 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 3 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-800.000000 576.000000 64.000000
96.000000 576.000000 64.000000
96.000000 576.000000 -128.000000
-800.000000 576.000000 -128.000000
-800.000000 512.000000 64.000000
96.000000 512.000000 64.000000
96.000000 512.000000 -128.000000
-800.000000 512.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-864.000000 48.000000 -192.000000
-672.000000 48.000000 -192.000000
-672.000000 48.000000 -576.000000
-864.000000 48.000000 -576.000000
-864.000000 0.000000 -192.000000
-672.000000 0.000000 -192.000000
-672.000000 0.000000 -576.000000
-864.000000 0.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey64
brush
vertices
-608.000000 16.000000 64.000000
-544.000000 16.000000 64.000000
-544.000000 16.000000 -128.000000
-608.000000 16.000000 -128.000000
-608.000000 0.000000 64.000000
-544.000000 0.000000 64.000000
-544.000000 0.000000 -128.000000
-608.000000 0.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey64
brush
vertices
-864.000000 32.000000 -192.000000
-608.000000 32.000000 64.000000
-608.000000 32.000000 -128.000000
-608.000000 0.000000 64.000000
-672.000000 32.000000 -192.000000
-672.000000 0.000000 -192.000000
-864.000000 0.000000 -192.000000
-608.000000 0.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 structural/dev/dev_orangedark
brush
vertices
160.000000 32.000000 -576.000000
-96.000000 32.000000 -832.000000
-96.000000 32.000000 -640.000000
-96.000000 0.000000 -832.000000
-32.000000 32.000000 -576.000000
-32.000000 0.000000 -576.000000
160.000000 0.000000 -576.000000
-96.000000 0.000000 -640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 structural/dev/dev_orangedark
brush
vertices
160.000000 512.000000 -832.000000
-96.000000 512.000000 -832.000000
-96.000000 32.000000 -832.000000
160.000000 512.000000 -576.000000
160.000000 32.000000 -832.000000
160.000000 32.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 5 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 3 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-96.000000 16.000000 -832.000000
-160.000000 16.000000 -832.000000
-160.000000 16.000000 -640.000000
-96.000000 16.000000 -640.000000
-96.000000 0.000000 -832.000000
-160.000000 0.000000 -832.000000
-160.000000 0.000000 -640.000000
-96.000000 0.000000 -640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey64
brush
vertices
-32.000000 48.000000 -192.000000
160.000000 48.000000 -192.000000
160.000000 48.000000 -576.000000
-32.000000 48.000000 -576.000000
-32.000000 0.000000 -192.000000
160.000000 0.000000 -192.000000
160.000000 0.000000 -576.000000
-32.000000 0.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_orangedark
brush
vertices
-32.000000 80.000000 -208.000000
-16.000000 80.000000 -208.000000
-16.000000 80.000000 -560.000000
-32.000000 80.000000 -560.000000
-32.000000 64.000000 -208.000000
-16.000000 64.000000 -208.000000
-16.000000 64.000000 -560.000000
-32.000000 64.000000 -560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_orangedark
brush
vertices
-32.000000 80.000000 -560.000000
-16.000000 80.000000 -560.000000
-16.000000 80.000000 -576.000000
-32.000000 80.000000 -576.000000
-32.000000 48.000000 -560.000000
-16.000000 48.000000 -560.000000
-16.000000 48.000000 -576.000000
-32.000000 48.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_orangedark
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_nogrid_orangedark
brush
vertices
160.000000 512.000000 -128.000000
192.000000 512.000000 -128.000000
192.000000 512.000000 -576.000000
160.000000 512.000000 -576.000000
160.000000 0.000000 -128.000000
192.000000 0.000000 -128.000000
192.000000 0.000000 -576.000000
160.000000 0.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_nolight
brush
vertices
-864.000000 576.000000 -512.000000
160.000000 576.000000 -512.000000
160.000000 576.000000 -832.000000
-864.000000 576.000000 -832.000000
-864.000000 512.000000 -512.000000
160.000000 512.000000 -512.000000
160.000000 512.000000 -832.000000
-864.000000 512.000000 -832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_black
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_nolight
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey64
brush
vertices
-96.000000 512.000000 64.000000
160.000000 512.000000 64.000000
160.000000 512.000000 -192.000000
-96.000000 32.000000 64.000000
160.000000 32.000000 -192.000000
160.000000 32.000000 64.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0x00000000
brush
vertices
-864.000000 512.000000 -576.000000
-864.000000 32.000000 -832.000000
-608.000000 512.000000 -832.000000
-864.000000 32.000000 -576.000000
-608.000000 32.000000 -832.000000
-864.000000 512.000000 -832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000 structural/dev/dev_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
entity
type PlayerSpawn
Vector3 position -256.000000 0.000000 -704.000000
entity
type Effect
Vector3 position -512.000000 1472.000000 -608.000000
Vector3 angles 45.000000 45.000000 0.000000
String64 effectName internal/world/skies/sky_cpm3/sky_cpm3_sun
entity
type CameraPath
UInt32 entityIdAttachedTo 7
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position -256.000000 0.000000 -64.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position -800.000000 48.000000 -512.000000
Vector3 angles 90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 96.000000 48.000000 -256.000000
Vector3 angles -90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 96.000000 48.000000 -512.000000
Vector3 angles -90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position -800.000000 48.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position -448.000000 0.000000 -64.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position -448.000000 0.000000 -704.000000
|
ec197f68d1b232cfc5484cb5d782905bf5b6416d | 127061b879bebda7ce03f6910c80d0702ad1a713 | /bin/PIL_hop_mat.sci | c51b3f53e1a73121a8e0f6b09ecc90a19fd008b5 | [] | no_license | pipidog/PiLib-Scilab | 961df791bb59b9a16b3a32288f54316c6954f128 | 125ffa71b0752bfdcef922a0b898263e726db533 | refs/heads/master | 2021-01-18T20:30:43.364412 | 2017-08-17T00:58:50 | 2017-08-17T00:58:50 | 100,546,695 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 8,107 | sci | PIL_hop_mat.sci | // **** Purpose ****
// This function generates the hopping matrix of a given crystal
// structure and
// Slaster-Koster parameters
// **** Variables ****
// [surr_site]: list(m) -> n x 9, real
// <= this is the output variable of PIL_uc_nb
// [site_orb]: n x 3, integer
// <= the variable specify the orbital of each site.
// [SK_parameter]: n x 7, real
// <= the SK_parameter [orb1, orb2, nn_order, ts, tp, td, tf]
// [hop_fliter]: 1x1, positive real, default=10^-6
// <= the fliter of small matrix elements in H_hop
// [state_info]: n x 5, integer
// => tells how the states are ordered
// [state_label, site, n(principle), L(angular), sub-orbital]
// [H_hop]: list(tot_sublatt) x tot_suborb x tot_suborb x tot_surr_site, real
// => the hopping matrix of each nearest neighbor order
// **** Version ****
// 05/15/2014 first built
// 05/24/2014 modify output to include r-vector
// 06/03/2014 fix surr_site becomes list problem
// 06/06/2014 full rewirte, each bond has its own H_hop
// **** Comment ****
// 1.site_orb:
// e.g: [1,1,0; 3,1,2] means sublattice 1 / 2, has an atomic orbital set with
// prinipal (or type) quantum number n=1/1 and angular momentum L=0 / 2
// Note: the principal number n will not have any esseitial function. This is
// just a number for you to dinguish two orbitals on the same site.
// So, when print state info, it will be shown.
// 2.SK_parameter:
// e.g: [1,2,ts,tp,td,tf] means orb1 (i.e the orbital defined in site_orb(1,:))
// and orb2 has SK_parameter: ts,tp,td,tf
// to prevent from double assign, this function require SK_parameter(1,n) <=
// SK_parameter(2,n).
// Note: The way we label SK_paramater will not use the information of principal
// number n in [site_orb].
// 3.more infomation:
// the hop matrix doen't correspond to real Hamiltonian, it just tells you the coupling
// between two negibhbor sites. The real Hamiltoina has to consider their position vectors
// and impose periodic boundary condiition.
// 4.About the H_hop
// H_hop means tij(ra,rb)\sum{i,j}C_{i}^{+}(ra)C_{j}(rb), so all the H_hop are just
// upper or lower triangle.
function [state_info,H_hop]=PIL_hop_mat(surr_site,site_orb,SK_parameter...
,basis_out,hop_order,hop_fliter)
// make surr_site integers
[lhs,rhs]=argn();
select rhs
case 4
hop_order=2; // default set to 2nd order
hop_fliter=10^-3; // default
case 5
hop_fliter=10^-3; // default
end
// check input
if length(site_orb(:,1)) > 1 then
for n=2:length(site_orb(:,1))
if prod(site_orb(n,:)==site_orb(n-1,:))==1 then
disp('Error: PIL_hop_mat, two the same orbitals on the same site is not allowed!');
abort
end
end
end
for n=1:length(SK_parameter(:,1))
if round(real(SK_parameter(n,1))) > round(real(SK_parameter(n,2))) then
disp('Error: PIL_hop_mat, just specify SK_parameter(n,1) smaller than SK_parameter(n,2) terms !');
abort;
end
end
// label how user define the orbital before sort
site_orb=gsort(cat(2,site_orb,[1:length(site_orb(:,1))]'),'lr','i');
// define necessary parameters
tot_sublatt=size(surr_site);
tot_suborb=2*sum(2*site_orb(:,3)+1);
// sort complex SK_parameter
SK_sort_tmp=gsort(round(real(SK_parameter(:,1:3))),'lr','i');
SK_par_tmp=zeros(SK_parameter);
for n=1:length(SK_sort_tmp(:,1))
tmp_ind=find(round(real(SK_parameter(:,1)))==SK_sort_tmp(n,1)...
& round(real(SK_parameter(:,2)))==SK_sort_tmp(n,2) ...
& round(real(SK_parameter(:,3)))==SK_sort_tmp(n,3))
SK_par_tmp(n,:)=SK_parameter(tmp_ind,:);
end
SK_parameter=SK_par_tmp;
// generate all SubOrb table, site_suborb -->
// [site, n, L, suborb_index, UserOrb_index]
// the orders of site_suborb is also the state_index
site_suborb=[];
for n=1:length(site_orb(:,1))
//suborb index (defined by PIL_basis_trans),
//Orb_index (order of the orbital)
select site_orb(n,3)
case 0 // suborb=1~2 ; SK checker=1,1
site_suborb=cat(1,site_suborb,cat(2,repmat(site_orb(n,:),2,1)...
,[1,2]'));
case 1 // suborb=3~8 ; SK checker=2~4,2~4
site_suborb=cat(1,site_suborb,cat(2,repmat(site_orb(n,:),6,1)...
,[3:8]'));
case 2 // suborb=9~18 ; SK checker=5~9,5~9
site_suborb=cat(1,site_suborb,cat(2,repmat(site_orb(n,:),10,1)...
,[9:18]'));
case 3 // subob=19~32 ; SK checker=10~16,10~16
site_suborb=cat(1,site_suborb,cat(2,repmat(site_orb(n,:),14,1)...
,[19:32]'));
else
disp('Error: PIL_hop_mat, site_orb(n,3) can only ranges 0 to 3 !');
abort
end
end
site_suborb(:,[4:5])=site_suborb(:,[5,4]);
site_suborb=gsort(site_suborb,'lr','i');
// site_range is also the state_index of the SurOrb of each site
site_range=zeros(tot_sublatt,2);
for n=1:tot_sublatt
tmp=find(site_suborb(:,1)==n);
site_range(n,1)=min(tmp);
site_range(n,2)=max(tmp);
end
// basis transformation matrix
U=[];
for n=1:length(site_orb(:,1))
select site_orb(n,3)
case 0
[M_out,U_in_out]=PIL_basis_trans(eye(2,2),'s','c',basis_out);
case 1
[M_out,U_in_out]=PIL_basis_trans(eye(6,6),'p','c',basis_out);
case 2
[M_out,U_in_out]=PIL_basis_trans(eye(10,10),'d','c',basis_out);
case 3
[M_out,U_in_out]=PIL_basis_trans(eye(14,14),'f','c',basis_out);
end
U=PIL_dirsum(U,U_in_out);
end
// key part=========================================================
H_hop=list();
for n=1:tot_sublatt // run total sublattice
H_hop(n)=zeros(tot_suborb,tot_suborb,length(surr_site(n)(:,1))-1);
s1=round(surr_site(n)(1,3));
for m=2:length(surr_site(n)(:,1)) // run all its neighbor sites
s2=round(surr_site(n)(m,3));
r=surr_site(n)(m,7:9)-surr_site(n)(1,7:9);
order=round(surr_site(n)(m,1));
if order <= hop_order then
for p=site_range(s1,1):site_range(s1,2) // run matrix range
for q=site_range(s2,1):site_range(s2,2)
suborb1=site_suborb(p,4);
suborb2=site_suborb(q,4);
SK_index=find(round(real(SK_parameter(:,1)))...
==site_suborb(p,5)...
& round(real(SK_parameter(:,2)))==site_suborb(q,5)...
& round(real(SK_parameter(:,3)))==order);
if length(SK_index)==0 then
SK_index=find(round(real(SK_parameter(:,1)))...
==site_suborb(q,5)...
& round(real(SK_parameter(:,2)))==site_suborb(p,5)...
& round(real(SK_parameter(:,3)))==order);
end
select length(SK_index)
case 0 // no assign case
H_hop(n)(p,q,m-1)=PIL_SK_int(suborb1,suborb2...
,r,[0,0,0,0]);
case 1 // normal case
H_hop(n)(p,q,m-1)=PIL_SK_int(suborb1,suborb2...
,r,SK_parameter(SK_index,4:7));
else // conflict assign case
disp('Error: PIL_hop_mat, SK_parameter has conflict assignments!');
abort;
end
end
end
H_hop(n)(:,:,m-1)=clean(U*H_hop(n)(:,:,m-1)*U');
else
// exit calculate higher order hopping.
break
end
end
end
// =================================================================
state_info=cat(2,[1:tot_suborb]',site_suborb(:,1:4));
endfunction
|
45cf53b1c4b22eefe8b780b225b45e3f07285037 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH19/EX19.1/example19_1.sce | 6aae35149ea0fa86bbdd65cb1930245a4252047d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example19_1.sce | //Chapter 19
//Example 19_1
//Page 483
clear;clc;
i=1500;
mva=1000;
v=33*1e3;
t=3;
printf("(i) Rated normal current = %.0f A \n\n", i);
printf("(ii) Breaking capacity = %.0f MVA \n\n", mva);
rsbc=mva*1e6/sqrt(3)/v;
printf("(iii) Rated symmetrical breaking capacity = %.0f A \n\n", rsbc);
rmc=2.55*rsbc;
printf("(iv) Rated making current = %.0f A \n\n", rmc);
printf("(v) Rated short time rating = %.0f A for %.0f sec \n\n", rsbc, t);
printf("(vi) Rated service voltage = %.0f kV \n\n", v/1000);
|
e54a1569dff8781ef5de27a267d7892685beccfb | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfi_n_hrz_col/~BivLCM-SR-bfi_n_hrz_col-PLin-VLin.tst | 93ca179f3be699d219df0fc1e582367b63871e7e | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,974 | tst | ~BivLCM-SR-bfi_n_hrz_col-PLin-VLin.tst |
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.482328D+00
2 -0.684036D-02 0.383718D-02
3 -0.943371D-01 0.264342D-02 0.277254D+00
4 0.262622D-02 -0.615175D-03 -0.583655D-02 0.205752D-02
5 -0.862332D-03 0.126702D-03 -0.185974D-02 0.977635D-04 0.229473D-02
6 0.288460D-03 0.242491D-05 0.306182D-03 0.694397D-05 -0.429529D-03
7 -0.153537D-03 -0.158405D-04 0.174634D-02 -0.268341D-04 -0.681924D-03
8 -0.228608D-02 -0.147254D-03 0.189002D-02 -0.900534D-05 0.267429D-03
9 -0.727956D+00 -0.508252D-02 0.783658D+00 -0.319696D-02 0.334907D-01
10 -0.201822D-01 0.116871D-01 -0.832756D-01 0.745659D-02 0.165904D+00
11 0.270236D-02 0.404259D-02 -0.172535D+00 0.961519D-02 -0.363005D-01
12 0.318561D+00 0.165564D-01 -0.635507D+00 0.245367D-01 0.440387D-03
13 -0.407275D-01 0.570969D-02 0.147021D-01 0.720090D-02 -0.574434D-01
14 0.452778D-01 -0.272195D-02 -0.296104D+00 0.130234D-01 0.314780D-01
15 -0.551892D+00 0.496531D-01 -0.332100D+00 -0.219423D-01 -0.106258D+00
16 0.623869D-01 -0.902618D-03 0.198899D-03 -0.338859D-02 -0.865054D-03
17 0.115381D-02 0.551891D-03 -0.127455D-02 -0.332114D-05 -0.579015D-03
18 -0.554307D+00 -0.211539D-01 0.916442D+00 -0.195341D-01 0.122242D-01
19 -0.550452D-01 0.342341D-02 -0.302699D-01 0.547462D-02 -0.526140D-02
20 0.924742D+00 -0.190211D-01 -0.259092D+01 0.643620D-01 -0.105989D-01
21 0.353309D-01 -0.760631D-02 0.607695D-01 -0.526769D-02 0.563637D-02
22 0.114154D-02 -0.656102D-04 -0.354584D-02 0.371025D-03 0.258639D-03
23 0.263078D-01 0.714019D-03 0.456369D-01 -0.885769D-02 -0.318744D-03
24 -0.450461D-02 0.322652D-03 0.112379D-02 0.181854D-03 -0.560136D-04
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.183177D-02
7 0.696010D-03 0.142213D-02
8 -0.416308D-03 -0.266153D-03 0.280152D-02
9 -0.446300D-01 0.246486D-01 0.358000D-01 0.127463D+03
10 -0.553287D-01 -0.686052D-01 0.173430D-01 0.310185D+01 0.332846D+02
11 0.228988D-01 0.170834D-01 -0.312494D-01 -0.193502D+02 -0.442994D+01
12 -0.136613D+00 -0.448330D-01 -0.215118D-01 0.137118D+02 0.466555D+01
13 0.897245D-01 0.804575D-01 -0.352164D-01 -0.273757D+01 -0.946472D+01
14 -0.403628D-01 -0.341663D-01 0.107392D+00 0.415902D+01 0.410780D+01
15 0.107529D+00 0.730699D-01 -0.573907D-01 -0.285384D+01 -0.208267D+02
16 0.335162D-04 -0.643171D-03 -0.356862D-02 0.152096D+01 -0.280093D+00
17 -0.289523D-03 -0.239860D-04 0.490968D-03 -0.265004D+00 -0.455972D-01
18 -0.117612D+00 -0.693454D-01 0.106096D+00 0.124957D+02 0.320743D+01
19 -0.102703D-01 0.137430D-01 0.148314D-01 -0.260041D+00 -0.232384D+00
20 0.950610D-01 0.407124D-01 -0.218321D+00 -0.130500D+02 0.379577D+01
21 0.877091D-02 -0.120791D-01 -0.109397D-01 -0.249512D+00 0.597210D+00
22 0.322285D-03 -0.136738D-03 -0.452913D-03 -0.194740D-01 0.403737D-03
23 -0.109519D-02 0.989512D-03 -0.508166D-02 0.511607D+00 -0.117513D+00
24 -0.446175D-04 -0.144691D-03 0.796043D-03 -0.238493D-01 -0.150629D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.459429D+02
12 0.166027D+02 0.122662D+03
13 0.130861D+01 -0.306352D+01 0.139203D+02
14 -0.142571D+01 0.131545D+01 -0.581410D+01 0.268606D+02
15 0.100980D+02 -0.117400D+02 0.898127D+01 -0.354628D+01 0.560584D+03
16 -0.183889D+00 0.800385D-01 0.113010D+00 -0.114951D+00 0.420149D+01
17 0.266303D-01 -0.493184D-01 -0.312477D-01 0.132963D-01 -0.263934D+01
18 -0.339649D+01 0.319197D+01 -0.915186D+01 0.536200D+01 -0.138988D+03
19 0.183786D+01 0.180086D+00 0.469190D+00 0.184553D+01 -0.225808D+01
20 -0.164156D+01 -0.165553D+02 0.901687D+01 -0.151313D+02 0.549392D+02
21 -0.121406D+01 -0.583488D+00 -0.728767D+00 -0.149784D+01 0.204897D+01
22 -0.819181D-01 0.188774D-01 0.255684D-01 -0.336832D-01 0.701794D+00
23 -0.351879D-01 0.912156D+00 0.152137D+00 -0.383650D+00 -0.480537D+00
24 0.220440D-01 -0.115662D+00 -0.452012D-01 0.662640D-01 -0.256245D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.791792D+00
17 -0.638892D-01 0.274306D-01
18 -0.176356D+00 0.728030D+00 0.241129D+03
19 -0.237061D+00 0.318503D-01 0.326062D+01 0.502644D+01
20 0.455690D+00 -0.335899D+00 -0.996400D+02 0.239544D+00 0.243145D+03
21 0.359635D-01 -0.176415D-01 -0.232194D+00 -0.430607D+01 0.194290D+00
22 0.718806D-02 -0.675201D-02 -0.115964D+01 -0.542257D-01 0.422995D+00
23 0.122336D+00 -0.456289D-02 0.392759D+00 -0.973847D-01 0.888148D+00
24 -0.758221D-02 0.454178D-02 0.386057D+00 0.477407D-02 -0.933479D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.540551D+01
22 -0.195248D-01 0.140431D-01
23 -0.114803D+00 0.136235D-02 0.577394D+00
24 -0.164643D-02 -0.436015D-02 -0.544024D-01 0.123831D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.159 1.000
3 -0.258 0.081 1.000
4 0.083 -0.219 -0.244 1.000
5 -0.026 0.043 -0.074 0.045 1.000
6 0.010 0.001 0.014 0.004 -0.210
7 -0.006 -0.007 0.088 -0.016 -0.377
8 -0.062 -0.045 0.068 -0.004 0.105
9 -0.093 -0.007 0.132 -0.006 0.062
10 -0.005 0.033 -0.027 0.028 0.600
11 0.001 0.010 -0.048 0.031 -0.112
12 0.041 0.024 -0.109 0.049 0.001
13 -0.016 0.025 0.007 0.043 -0.321
14 0.013 -0.008 -0.109 0.055 0.127
15 -0.034 0.034 -0.027 -0.020 -0.094
16 0.101 -0.016 0.000 -0.084 -0.020
17 0.010 0.054 -0.015 0.000 -0.073
18 -0.051 -0.022 0.112 -0.028 0.016
19 -0.035 0.025 -0.026 0.054 -0.049
20 0.085 -0.020 -0.316 0.091 -0.014
21 0.022 -0.053 0.050 -0.050 0.051
22 0.014 -0.009 -0.057 0.069 0.046
23 0.050 0.015 0.114 -0.257 -0.009
24 -0.058 0.047 0.019 0.036 -0.011
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.431 1.000
8 -0.184 -0.133 1.000
9 -0.092 0.058 0.060 1.000
10 -0.224 -0.315 0.057 0.048 1.000
11 0.079 0.067 -0.087 -0.253 -0.113
12 -0.288 -0.107 -0.037 0.110 0.073
13 0.562 0.572 -0.178 -0.065 -0.440
14 -0.182 -0.175 0.391 0.071 0.137
15 0.106 0.082 -0.046 -0.011 -0.152
16 0.001 -0.019 -0.076 0.151 -0.055
17 -0.041 -0.004 0.056 -0.142 -0.048
18 -0.177 -0.118 0.129 0.071 0.036
19 -0.107 0.163 0.125 -0.010 -0.018
20 0.142 0.069 -0.265 -0.074 0.042
21 0.088 -0.138 -0.089 -0.010 0.045
22 0.064 -0.031 -0.072 -0.015 0.001
23 -0.034 0.035 -0.126 0.060 -0.027
24 -0.009 -0.034 0.135 -0.019 -0.023
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 0.221 1.000
13 0.052 -0.074 1.000
14 -0.041 0.023 -0.301 1.000
15 0.063 -0.045 0.102 -0.029 1.000
16 -0.030 0.008 0.034 -0.025 0.199
17 0.024 -0.027 -0.051 0.015 -0.673
18 -0.032 0.019 -0.158 0.067 -0.378
19 0.121 0.007 0.056 0.159 -0.043
20 -0.016 -0.096 0.155 -0.187 0.149
21 -0.077 -0.023 -0.084 -0.124 0.037
22 -0.102 0.014 0.058 -0.055 0.250
23 -0.007 0.108 0.054 -0.097 -0.027
24 0.029 -0.094 -0.109 0.115 -0.097
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.434 1.000
18 -0.013 0.283 1.000
19 -0.119 0.086 0.094 1.000
20 0.033 -0.130 -0.412 0.007 1.000
21 0.017 -0.046 -0.006 -0.826 0.005
22 0.068 -0.344 -0.630 -0.204 0.229
23 0.181 -0.036 0.033 -0.057 0.075
24 -0.077 0.246 0.223 0.019 -0.538
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.071 1.000
23 -0.065 0.015 1.000
24 -0.006 -0.331 -0.643 1.000
|
ea2ff6695cb17737b308e2176132c6696857dfe6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH5/EX5.7/ex5_7.sce | 2bd0776910011aaa05204fe953b0ee7699e76d6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | ex5_7.sce | clc;
clear all;
f = 7e6; // Ultrasonic frquency in hertz
theta = 45;
v = 1.5; // Blood velocity in m/s
U = 1500; // Ultrasonic velocity in m/s
deltaf = (2*f*v*cosd(45))/U
disp('Hz',deltaf,'The frequency of the doppler flowmeter is')
//Variation in anser as compared to textbook..checked in calculator also.. there is mistake in the book..
|
3b319c3ae16c7ad035acebbc6f361e1640256310 | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/DEPENDENCIES/16_2data.sci | 97adbac5b91321f6ddbf2e3eb27747e034dc2861 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 247 | sci | 16_2data.sci | a=200;//leangth of cross section along x-axis,given in mm
b=300;//leangth of cross section along y-axis,given in mm
tx=25;//thickness along x-axis,given in mm
ty=20;//thickness along y-axis,given in mm
M=100*10^6;//bending moment,given in N.mm |
e59d5aa9ee11fd7815ae487bc48356134b7f957b | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Scope Snipe.sce | 2bbeabeea784a6b86cd787f037050df3b11964b9 | [] | 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 | 51,166 | sce | Scope Snipe.sce | Name=Scope Snipe
PlayerCharacters=player_char
BotCharacters=scope.rot
IsChallenge=true
Timelimit=60.0
PlayerProfile=player_char
AddedBots=scope.rot;scope.rot
PlayerMaxLives=0
BotMaxLives=0;0
PlayerTeam=1
BotTeams=2;2
MapName=scope_snipe.map
MapScale=10.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=0.0
ScorePerDamage=5.0
ScorePerKill=10.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Scope Snipe
WeaponHeroTag=Sniper Rifle
DifficultyTag=3
AuthorsTag=NFNT
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=true
Description=Stand, walk, run Sniping targets of various speeds
GameVersion=2.0.0.2
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
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=scope_walk
DodgeProfileNames=scope_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=scope_char_walk
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=scope_run
DodgeProfileNames=scope_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=scope_char_run
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=scope_stand
DodgeProfileNames=scope_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=scope_char_stand
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Rotation Profile]
Name=scope
ProfileNames=scope_walk;scope_run;scope_stand
ProfileWeights=1.0;1.0;1.0
Randomized=false
[Character Profile]
Name=player_char
MaxHealth=100.0
WeaponProfileNames=SNIPER;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=scope_char_walk
MaxHealth=5.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=300.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
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=Spheroid
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Spheroid
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=0.1
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=scope_char_run
MaxHealth=5.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
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=Spheroid
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Spheroid
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=0.1
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=scope_char_stand
MaxHealth=5.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
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=Spheroid
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Spheroid
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=0.1
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=scope_dodge
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=10.0
MaxLRTimeChange=10.0
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.02
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.25
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
[Weapon Profile]
Name=SNIPER
Type=Hitscan
ShotsPerClick=1
DamagePerShot=5.0
KnockbackFactor=0.0
TimeBetweenShots=0.01
Pierces=false
Category=SemiAuto
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.1
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=SNIPER
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.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
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=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=75
ADSFOVOverride=7.5
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.1
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.1
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=
ParticleWallImpact=
ParticleBodyImpact=
ParticleProjectileTrail=
ParticleHitscanTrace=
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.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=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,360.0,360.0
SpreadSCH=0.0,0.1,360.0,360.0
SpreadMSH=0.0,0.1,360.0,360.0
SpreadMCH=0.0,0.1,360.0,360.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
-256.000000 0.000000 168.000000
256.000000 0.000000 168.000000
256.000000 0.000000 -256.000000
-256.000000 0.000000 -256.000000
-256.000000 -16.000000 168.000000
256.000000 -16.000000 168.000000
256.000000 -16.000000 -256.000000
-256.000000 -16.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
239.999969 512.000000 171.535919
678.000732 512.000000 930.174072
691.856689 512.000000 922.174316
253.856567 512.000000 163.535645
239.999969 0.000000 171.535919
678.000732 0.000000 930.174072
691.856689 0.000000 922.174316
253.856567 0.000000 163.535645
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
-256.000000 0.000000 1192.000000
256.000000 0.000000 1192.000000
256.000000 0.000000 168.000000
-256.000000 0.000000 168.000000
-256.000000 -16.000000 1192.000000
256.000000 -16.000000 1192.000000
256.000000 -16.000000 168.000000
-256.000000 -16.000000 168.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
256.000000 0.000000 1192.000000
699.404907 0.000000 936.000183
256.000000 0.000000 168.000000
256.000000 -16.000000 168.000000
699.404907 -16.000000 936.000183
256.000000 -16.000000 1192.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 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 0 5 0x00000000
brush
vertices
-699.000000 0.000000 936.000000
-255.594971 0.000000 1191.999512
-256.000000 -16.000000 168.000000
-256.000000 0.000000 168.000000
-699.000000 -16.000000 936.000000
-255.594971 -16.000000 1191.999512
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 528.000000 1192.000000
699.404907 528.000000 936.000183
256.000000 528.000000 168.000000
256.000000 512.000000 168.000000
699.404907 512.000000 936.000183
256.000000 512.000000 1192.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 2 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 0 5 0x00000000
brush
vertices
-256.000000 528.000000 1192.000000
256.000000 528.000000 1192.000000
256.000000 528.000000 168.000000
-256.000000 528.000000 168.000000
-256.000000 512.000000 1192.000000
256.000000 512.000000 1192.000000
256.000000 512.000000 168.000000
-256.000000 512.000000 168.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
-699.000000 528.000000 936.000000
-255.594971 528.000000 1191.999512
-256.000000 512.000000 168.000000
-256.000000 528.000000 168.000000
-699.000000 512.000000 936.000000
-255.594971 512.000000 1191.999512
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 512.000000 1192.000000
256.000000 512.000000 1192.000000
256.000000 512.000000 1176.000000
-256.000000 512.000000 1176.000000
-256.000000 0.000000 1192.000000
256.000000 0.000000 1192.000000
256.000000 0.000000 1176.000000
-256.000000 0.000000 1176.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
-256.000000 528.000000 168.000000
256.000000 528.000000 168.000000
256.000000 528.000000 -256.000000
-256.000000 528.000000 -256.000000
-256.000000 512.000000 168.000000
256.000000 512.000000 168.000000
256.000000 512.000000 -256.000000
-256.000000 512.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
-248.000000 512.000000 -240.000000
248.000000 512.000000 -240.000000
248.000000 512.000000 -256.000000
-248.000000 512.000000 -256.000000
-248.000000 0.000000 -240.000000
248.000000 0.000000 -240.000000
248.000000 0.000000 -256.000000
-248.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
240.000000 512.000000 171.000000
256.000000 512.000000 171.000000
256.000000 512.000000 -256.000000
240.000000 512.000000 -256.000000
240.000000 0.000000 171.000000
256.000000 0.000000 171.000000
256.000000 0.000000 -256.000000
240.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
-256.000000 512.000000 171.000000
-240.000000 512.000000 171.000000
-240.000000 512.000000 -256.000000
-256.000000 512.000000 -256.000000
-256.000000 0.000000 171.000000
-240.000000 0.000000 171.000000
-240.000000 0.000000 -256.000000
-256.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
-253.000061 512.000000 163.535858
-690.999878 512.000000 922.174377
-677.143555 512.000000 930.174316
-239.143799 512.000000 171.535522
-253.000061 0.000000 163.535858
-690.999878 0.000000 922.174377
-677.143555 0.000000 930.174316
-239.143799 0.000000 171.535522
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
-699.000000 512.000000 936.000000
-255.595093 512.000000 1192.000610
-247.595215 512.000000 1178.144409
-691.000671 512.000000 922.144104
-699.000000 0.000000 936.000000
-255.595093 0.000000 1192.000610
-247.595215 0.000000 1178.144409
-691.000671 0.000000 922.144104
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
256.000000 512.000000 1192.000000
699.404907 512.000000 935.999634
691.405396 512.000000 922.143311
247.999969 512.000000 1178.143921
256.000000 0.000000 1192.000000
699.404907 0.000000 935.999634
691.405396 0.000000 922.143311
247.999969 0.000000 1178.143921
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
entity
type PlayerSpawn
Vector3 position 0.000000 220.000000 0.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 0.000000 20.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 100.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 180.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 260.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 340.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 420.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 420.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 340.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 260.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 180.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 100.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 20.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 420.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 340.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 420.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 340.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 260.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 260.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 180.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 180.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 100.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 100.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 20.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 20.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 420.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 340.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 260.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 180.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 100.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 20.000000 1158.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -558.397400 100.000000 977.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -558.397400 180.000000 977.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -558.397400 260.000000 977.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -558.397400 340.000000 977.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -471.794830 420.000000 1027.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -471.794830 340.000000 1027.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -471.794830 260.000000 1027.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -471.794830 180.000000 1027.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -471.794830 100.000000 1027.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -471.794830 20.000000 1027.999756
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -385.192383 20.000000 1078.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -385.192383 100.000000 1078.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -385.192383 180.000000 1078.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -385.192383 260.000000 1078.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -385.192383 340.000000 1078.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -385.192383 420.000000 1078.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -298.589783 420.000000 1128.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -298.589783 340.000000 1128.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -298.589783 260.000000 1128.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -298.589783 180.000000 1128.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -298.589783 100.000000 1128.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -298.589783 20.000000 1128.000000
Vector3 angles -210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 299.000000 20.000000 1128.000000
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 385.602417 20.000000 1077.999512
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 472.205170 20.000000 1027.999756
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 558.807617 100.000000 977.999817
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 472.205170 100.000000 1027.999756
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 385.602417 100.000000 1077.999512
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 299.000000 100.000000 1128.000000
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 299.000000 180.000000 1128.000000
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 385.602417 180.000000 1077.999512
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 472.205170 180.000000 1027.999756
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 558.807617 180.000000 977.999817
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 558.807617 260.000000 977.999817
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 472.205170 260.000000 1027.999756
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 385.602417 260.000000 1077.999512
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 299.000000 260.000000 1128.000000
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 299.000000 340.000000 1128.000000
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 299.000000 420.000000 1128.000000
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 385.602417 420.000000 1077.999512
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 385.602417 340.000000 1077.999512
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 472.205170 340.000000 1027.999756
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 472.205170 420.000000 1027.999756
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 558.807617 340.000000 977.999817
Vector3 angles -150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
8f71661b29ac3573da9f46561e19178e438c495e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2621/CH3/EX3.9/Ex3_9.sce | a13f2e3df80b39e6e175386b9d3a9bd8fc208510 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 434 | sce | Ex3_9.sce | // Example 3.9
clc;
clear;
close;
// Given data
format('v',8);
Rf= 1*10^6;// in Ω
Rin= 1*10^6;// in Ω
Vout_by_Vin= -Rf/Rin;// (since Vout= -Rf/Rin*Vin)
Av= Vout_by_Vin;// voltage gain
disp(Av,"The voltage gain is : ");
// I_in= Iout (As it is a unity gain inverter)
Ain= 1;//input impedance (since I_in= Iout)
disp(Ain,"The input impedance is : ");
Ap= abs(Av*Ain);// power gain
disp(Ap,"The power gain is : ");
|
ad637b08c4179b0fb3a5035ef756c9f6862f5163 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3487/CH6/EX6.3/Ex6_3.sce | a9ac4ddbb20196ffb04c6d4dfa56b21c8ba1a15b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex6_3.sce | //Chapter 6,Example 6.3 Page 199
clc
clear
Cs = 500*10^-12 // F
R1 = 800 // ohm
R2 = 180 // ohm
C2 = 0.15 // micro F
w = 314
V = 33*10^3
Cp = Cs*(R2/R1)
Rp = R1/(w^2*C2*Cs*10^-6*R2^2)
tang = 1/(w*Rp*Cp)
pl = V^2/Rp
printf (" Rp = %e ohm \n ",Rp)
printf (" Cp = %e F \n ",Cp)
printf (" tan δ = %f \n ",tang)
printf (" Power loss = %f watts \n ",pl)
//Answer may vary due to round off error
|
4fae86afdfa935656539d855c9d55362fd247888 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2522/CH7/EX7.5/exm7_5.sce | d5b8b41b36463d521a2ce13060e47b6be10ce465 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | exm7_5.sce | //page no 224
//example no 7.5
// INCREMENT A NUMBER.
clc;
disp('LXI B,2050H'); //loads the data 2050H in BC register pair.
disp('B=20H C=50H');
B=20;
C=50;
disp('INX B');
C=C+1;
printf('B= %d C= %d \n',B,C);
disp('The contents of BC register pair will be 2051H');
disp('INR B');
B=B+1;
printf('B= %d \n',B);
disp('INR C');
C=50;
C=C+1;
printf('C= %d \n',C);
disp('The contents of BC register pair will be 2151H');
|
6123c4a103b14941d323c0594fd69da0be2e42b0 | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/jintgen/redef_ot_02.tst | 1a82be28d3f1d5385440af427caba024e1f17516 | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 206 | tst | redef_ot_02.tst | // @Harness: verifier
// @Purpose: "Test for redefinitions of operand types"
// @Result: "RedefinedUserType @ 8:16"
architecture redef_ot_02 {
operand-type A[5]: int [0, 7];
operand-type A {
}
} |
2394d1d534d8ee49ed1dba204acf5f796c022c67 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH8/EX8.5/8_5.sce | 2f54d934c68822fe543122a94f1dbe30cfc41f0b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 254 | sce | 8_5.sce | clc
//Initialization of variables\
sf=0.00007
n=0.013
gam=9.81*1000
V=0.45 //m/s
Q=1.4 //m^3/s
//calculations
by=Q/V
x=poly(0,"x")
y=roots(x^2 -2.66*x +1.55)
b=by ./y
//results
printf("y = ")
disp( y )
printf("corresponding b=")
disp(b)
|
d86ba9397a9489c953ffcb203993fb78224a3e9c | 0f6ed5bf53ef2307a106f2ad288829fb51f2f377 | /rotE.sci | cbb190aec5447599d04503e3e7851dc41ac381ad | [] | no_license | otreblan/TAP-2 | 9bca51bc7cda86a5c764d5325c7ab917483243be | 7d7e49d9b55f0448e03813462f48c0fdc28092d7 | refs/heads/master | 2022-06-01T00:26:00.256412 | 2020-05-01T14:15:56 | 2020-05-01T14:15:56 | 260,449,614 | 0 | 0 | null | 2020-05-01T12:05:29 | 2020-05-01T12:05:28 | null | UTF-8 | Scilab | false | false | 238 | sci | rotE.sci | exec("projection.sci")
exec("Rmat.sci")
// theta debe estar en grados
function [A, B, C, D] = rotE(u, theta, d)
[_A _B _C _D] = projection(d)
[R] = Rmat(u, theta)
A=R*_A
B=R*_B
C=R*_C
D=R*_D
endfunction
|
8d804e2258b3d5aa00587a15ef38a125dc7d4574 | 98efda43218be3d9e665771c28742517fd4f334f | /Toolbox Test/cummin/cummin.sci | 1d02c924ea13d3b1dcf90401e94b52f851c2641c | [] | no_license | ankurmallick/Scilab_spt | bded5b3ed7c5618770ef4bb997b5f61aa7732cd9 | e35c986f70147ee773796c839153ed7adbda3941 | refs/heads/master | 2021-01-17T06:48:24.162281 | 2016-12-05T12:54:24 | 2016-12-05T12:54:24 | 43,445,584 | 0 | 2 | null | 2015-12-10T05:15:44 | 2015-09-30T16:47:57 | Scilab | UTF-8 | Scilab | false | false | 2,024 | sci | cummin.sci | function [output] = cummin(A, dim, direction)
funcprot(0);
[rows, cols] = size(A);
if(~exists('dim','local') & ~exists('direction','local')) then
if(rows==1 | cols==1) then
output = zeros(rows, cols);
minim = 999999;
for iter = 1:max(size(A))
if(A(iter)<minim) then
minim = A(iter);
end
output(iter) = minim;
end
else
output = zeros(rows, cols);
for i = 1:cols
minim = 99999;
for j = 1:rows
if(A(j, i)<minim) then
minim = A(j,i);
end
output(j,i) = minim;
end
end
end
elseif (~exists('direction','local') & exists('dim','local')) then
// 2 means along rows
// 1 means along columns
if(dim==1) then
output = zeros(rows, cols);
for i = 1:cols
minim = 99999;
for j = 1:rows
if(A(j, i)<minim) then
minim = A(j,i);
end
output(j,i) = minim;
end
end
elseif(dim==2) then
output = zeros(rows, cols);
for i = 1:rows
minim = 99999;
for j = 1:cols
if(A(i, j)<minim) then
minim = A(i, j);
end
output(i, j) = minim;
end
end
end
elseif(exists('direction','local') & ~exists('dim','local')) then
output = zeros(rows, cols);
if(direction == "reverse") then
for i = cols:-1:1
minim = 99999;
for j = rows:-1:1
if(A(j, i)<minim) then
minim = A(j,i);
end
output(j,i) = minim;
end
end
end
elseif(exists('direction','local') & exists('dim','local'))
output = zeros(rows, cols);
if(dim==1) then
if(direction=="reverse") then
output = zeros(rows, cols);
for i = cols:-1:1
minim = 99999;
for j = rows:-1:1
if(A(j, i)<minim) then
minim = A(j,i);
end
output(j,i) = minim;
end
end
end
elseif(dim==2) then
output = zeros(rows, cols);
for i = rows:-1:1
minim = 99999;
for j = cols:-1:1
if(A(i, j)<minim) then
minim = A(i, j);
end
output(i, j) = minim;
end
end
end
end
endfunction
|
1a38cccdfd5137aa42ddda2eee5a68b56ee3e67b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3293/CH8/EX8.28/Ex8_28.sce | f9d076267600f862815c447c4e23c3adac62d788 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 562 | sce | Ex8_28.sce | //page 307
//Example 8.28
clc;
clear;
close;
disp('x1 and x2 are two real nos. i.e., x1^2 + x2^2 = 1');
x1 = rand();
x2 = sqrt(1 - x1^2);
disp(x1,'x1 = ');
disp(x2,'x2 = ');
B = [x1 x2 0;0 1 0;0 0 1];
disp(B,'B = ');
disp('Applying Gram-Schmidt process to B:')
a1 = [x1 x2 0];
a2 = [0 1 0] - x2 * [x1 x2 0];
a3 = [0 0 1];
disp(a1,'a1 = ');
disp(a2,'a2 = ');
disp(a3,'a3 = ');
U = [a1;a2/x1;a3];
disp(U,'U = ');
M = [1 0 0;-x2/x1 1/x1 0;0 0 1];
disp(M,'M = ')
disp(inv(M) * U,'inverse(M) * U = ');
disp('So, B = inverse(M) * U');
//end
|
3152214737729613d76d699474b14facdb8dfda8 | cb412970af67cd342235f1ad29668c7ac9a2dfed | /function_test/chi2dist.sci | fb1be8a599a72cf3dd1a2983dceb27d8704ddafc | [] | no_license | dowaiko/mt_tutorial41 | cdab43af761897afc940ae64deb7df423bdd5776 | d21788c424e2c1df2ecc46ca6ae270e393433e85 | refs/heads/master | 2020-04-10T13:25:27.584350 | 2019-05-31T13:37:08 | 2019-05-31T13:37:08 | 161,050,504 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 504 | sci | chi2dist.sci | clear;
printf('************** Chi-square Distribution Function ****************');
printf('\n');
df = input('Enter a Degree of Freedom : ');
for x = 1: 20,
Total( x, 1) = cdfchi( "PQ", x, df);
if x==1 then
Dist( x, 1) = Total( x, 1);
else
Dist( x, 1) = Total( x, 1) - Total( x-1, 1);
end,
end
printf('Total =');
disp(string(Total));
printf('\n');
printf('Dist =');
disp(string(Dist));
printf('\n');
clf; // clear
//scf; // add
plot2d(Dist);
|
e1732287e8ddd8b5c8200b21bc5b2e48d2ee9a25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH1/EX1.35/35.sce | 0fea0a9e517aa632abb59c5088d590528e40fe27 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 532 | sce | 35.sce | clc
clear
//Input data
W=20000 //Power developed in kW
m=12 //Mass flow rate in kg/s
C1=50 //Velocity of air entering in m/s
T1=700+273 //Temperature of air entering in K
T2=298 //Temperature of air leaving in K
C2=125 //Velocity of air leaving in m/s
Cp=1.005 //Specific heat capacity at constant pressure in kJ/kg-K
//Calculation
dh=Cp*(T2-T1) //Change in enthalpy in kJ/kg
Q=((m*dh)+W-(m*(1/2000)*(C2^2-C1^2))) //The rate of heat transfer in kJ/s
//Output
printf('The rate of heat transfer is %3.2f kJ/s',Q)
|
49748fa73d2ed76f15984348dea0cba16c6fba82 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2753/CH4/EX4.8/Ex4_8.sce | a11c4bc643dad772cd32814ad30132609387de0f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 299 | sce | Ex4_8.sce | //Example 4.8:
clc;
clear;
close;
//given data :
R2=4;// in k-ohm
R1=40;// in k-ohm
Vcc=22;// in V
Rc=10;// in k-ohm
Re=1.5;// in k-ohm
Vbe=0.5;// in V
Voc=R2*10^3*Vcc/((R1+R2)*10^3);
Ic=(Voc-Vbe)/(Re*10^3);
Vce=Vcc-(Rc+Re)*Ic*10^3;
format('v',5)
disp(Vce,"Collector to emitter voltage,Vce(V) = ")
|
a5cf45738bbe09595f4affe7a0c60dc4d2f23790 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1631/CH9/EX9.18/Ex9_18.sce | d83ae2bc1591f72004d389b576edde96d0f04187 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 476 | sce | Ex9_18.sce |
//Caption: entropy ,information rate
//Example 9.18
//page no 405
//determine entropy ,information rate
clc;
clear;
px1=1/4;
px2=1/5;
px3=1/5;
px4=1/10;
px5=1/10;
px6=1/20;
px7=1/20;
px8=1/20;
f=10*10^3;
fs=10*2*10^3;
HX=px1*log2(1/px1)+px2*log2(1/px2)+px3*log2(1/px3)+px4*log2(1/px4)+px5*log2(1/px5)+px6*log2(1/px6)+px7*log2(1/px7)+px8*log2(1/px8);//entropy
disp("bits/message",HX,"H(X) = ");
r=fs;
R=r*HX;//information rate
disp("bits/sec",R,"R = ");
|
2277ab97d4b835c02a3c668bd4649758bf1f9ea8 | 218307820851c017df48930a4607586b000dc01d | /Project7-8/PointerTest/PointerTest.tst | 9346129cd0ab32d89f258d24bae99f5043eae700 | [] | no_license | catiecook/nand2tetris | 8e51a09488b46ba1b8fd996e32ad45004bb47037 | 4d70f9683ab51283317ff194eece12e52a7901f8 | refs/heads/master | 2021-01-10T13:30:52.798712 | 2016-05-05T15:34:11 | 2016-05-05T15:34:11 | 53,958,856 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | tst | PointerTest.tst | //PointerTest.tst
load PointerTest.asm,
output-file PointerTest.out,
compare-to PointerTest.cmp,
output-list RAM[256]%D1.6.1 RAM[3]%D1.6.1
RAM[4]%D1.6.1 RAM[3032]%D1.6.1 RAM[3046]%D1.6.1;
set RAM[0] 256,
repeat 450 {
vmstep;
}
output;
|
62e18370d834c8882b55b544b003f867f071205c | 449d555969bfd7befe906877abab098c6e63a0e8 | /52/CH9/EX9.8.a/Example9_8_a.sce | 9a5bf6dd1392db5efd10a484edf7f11447107f54 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 292 | sce | Example9_8_a.sce | //Example 9.8 (a)
//Program To Determine Smallest Record Length of Bartlett Method
clear;
clc;
close;
//Data
fr=0.01;//Frequency Resolution
N=2400; //Samples
//RECORD LENGTH CALCULATION
lb=0.89/fr;
//Display the result in command window
disp(lb,"Record Length of Bartlett Method"); |
d4486962f247d65001b04f4e5f38cfbf7d4aa5df | 449d555969bfd7befe906877abab098c6e63a0e8 | /3850/CH41/EX41.2/Ex41_2.sce | e780b3bac3819756e35f010d1b569e08fa5ee496 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 495 | sce | Ex41_2.sce |
//To Calculate the Dynamic Plate Resistance at the operating condition
//Example 41.2
clear;
clc;
V1=40;//Initial Plate Voltage in Volts
V2=42;//Final Plate Voltage in Volts
delVp=V2-V1;//Change in Plate Voltage in Volts
I1=50*10^-3;//Initial Plate Current in Amperes
I2=60*10^-3;//Final Plate Current in Amperes
delIp=I2-I1;//Change in Plate Current in Amperes
Rp=delVp/delIp;//Dynamic Plate Resistance in ohms
printf("Dynamic Plate Resistance = %d ohm",Rp);
|
0e985c4c3c2ba4a5ea0b44287028cb9faca6af15 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3041/CH4/EX4.11/Ex4_11.sce | 96793536966b9760bfe37062326199e6e6308827 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,002 | sce | Ex4_11.sce |
//Variable declaration
fo = 50 //output frequency(KHz)
L = 10^-3 //inductance(H)
ro = 100 //output resistance(k ohms)
Q = 80 //coil inductance
Ri = 10 //input resistance(k ohms)
beta = 125 //common emitter current gain
//Calculations
//Part a
C = 1/(((2*(%pi)*fo)^2)*L) //tunning capacitance(nF)
r = (2*(%pi)*fo*L)/Q //internal resistance(k ohms)
req = (Q^2)*r //equivalent resistance(k ohms)
R = (ro*req)/(ro+req) //ro||req(k ohms)
Avo = -(beta*R)/Ri //voltage gain
//Part b
Qcircuit = R/(2*(%pi)*fo*L) //circuit inductance
BW = fo/Qcircuit //bandwidth
//Results
printf ("a)value of capacitance is %.f nF",C/1E-3)
printf (" gain is %.1f",Avo)
printf ("b)bandwidth is %.f Hz",BW/1E-3)
printf ("Note : value used for beta in texbook is wrong in the solution")
|
a6a50d7bb526030c347645c8cfec0557757fdff2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1040/CH6/EX6.1.a/Chapter6_Ex1_a.sce | 6a4e827c1a33ab8f25a8c78576a7da4d135bdcd7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,221 | sce | Chapter6_Ex1_a.sce | //Harriot P., 2003, Chemical Reactor Design (I-Edition), Marcel Dekker, Inc., USA, pp 436.
//Chapter-6 Ex6.1.a Pg No.236
//Title:Power Consumption per unit volume at 300rpm
//====================================================================================================================
clear
clc
//INPUT
D_a=0.1;
D_t=0.3;
H=0.3;
N_P=5.5;
rho=1000;
n=5;
S_f=6;//Scale up factor in diameter
//CALCULATION
P_unit_vol=(N_P*n^3*D_a^5)/(%pi*(1/4)*D_t^2*H);
P_thousand_gal=P_unit_vol*5.067;
t=(4/n)*(D_t/D_a)^2*(H/D_t);
P_unit_vol_new=S_f^2*P_thousand_gal;
//OUTPUT
//Console Output
mprintf('\n The Power consumption per unit volume at 300rpm = %.2f HP/1000 gal',P_thousand_gal);
mprintf('\n\ The Power consumption scaling up sixfold in diameter = %.0f HP/1000 gal',P_unit_vol_new);
//File Output
fid= mopen('.\Chapter6_Ex1_a_Output.txt','w');
mfprintf(fid,'\n The Power consumption per unit volume at 300rpm = %.2f HP/1000 gal',P_thousand_gal);
mfprintf(fid,'\n\ The Power consumption scaling up sixfold in diameter = %.0f HP/1000 gal',P_unit_vol_new);
mclose(fid);
//======================================================END OF PROGRAM=================================================
|
4866e8c61a105de36f22fa3244dec6697ce44e44 | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH5/EX5.7.a/5_7_data.sci | 29591fdc8c5a9d2f5a30bfe3c1449a83bbff5aea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 265 | sci | 5_7_data.sci | // Aim:To Find flow rate of axial piston pump in L/s
// Given:
// speed of pump:
N=1000; //rpm
// number of pistons:
Y=9;
// piston diameter:
d=15; //mm
// piston circle diameter:
D=125; //mm
// offset angle:
theta=10; //deg
// volumetric efficiency:
eta_v=94; //% |
f3dcc07bcdba2768ca5bbff361f2f6b3fc0bb719 | 449d555969bfd7befe906877abab098c6e63a0e8 | /980/CH15/EX15.7/15_7.sce | 87728597400e7a60de716e2bf7134ff6852c793d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 112 | sce | 15_7.sce | clc;
clear;
format('v',11);
h=1000;
T=300;
p=1000*exp(-h/8000);
N=77.6*p/T;
n=1+N*10^-6;
disp(n,"n=");
|
21771fe56c37a7c166896d4c0dfc4830aa0746bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH8/EX8.13/Ex8_13.sce | 7835e6fe688b9c2588ab116d8901a7062489170c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 597 | sce | Ex8_13.sce | clc
//to calculate compton shift and wavelength
h=6.63*10^-34 //planck's constant in J-s
m0=9.11*10^-31 //mass of electron
c=3*10^8 //light speed in m/s
dellambda=h*(1-(1/sqrt(2)))/(m0*c)
lambda0=2*10^-10
lambda=dellambda+lambda0
disp("compton shift is dellambda="+string(dellambda)+"m")
disp("wavelength of the scattered X-rays is lambda="+string(lambda)+"m")
//to calculate fraction of energy lost by the photon in the collision
//energy lost =E0-E/E0=(hc/lambda0)-(hc/lambda)/(ha/lambda0)
//we get,
energylost=dellambda/lambda
disp("energylost ="+string(energylost)+"unitless")
|
74f824f9304f59a19572645cc9954176210a3a8c | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/util/unix_s.sci | 63065699a0394c41dc388231e43eaecd9139da7e | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 972 | sci | unix_s.sci | function unix_s(cmd)
//unix_s - silent shell command execution
//%Syntax
// unix_s(cmd)
//%Parameters
// cmd - a character string
//%Description
// cmd instruction (sh syntax) is passed to shell, the standard output
// is redirected to /dev/null
//%Examples
// unix_s("\rm -f foo")
//%See also
// host unix_g unix_x
//!
// Copyright INRIA
if prod(size(cmd))<>1 then error(55,1),end
if getenv('WIN32','NO')=='OK' & getenv('COMPILER','NO')=='VC++' then
tmp=strsubst(TMPDIR,'/','\')+'\unix.out';
cmd1= cmd + ' > '+ tmp;
else
cmd1='('+cmd+')>/dev/null 2>'+TMPDIR+'/unix.err;';
end
stat=host(cmd1);
if getenv('WIN32','NO')=='OK' & getenv('COMPILER','NO')=='VC++' then
host('del '+tmp);
end
select stat
case 0 then
case -1 then // host failed
error(85)
else //sh failed
if getenv('WIN32','NO')=='OK' & getenv('COMPILER','NO')=='VC++' then
error('unix_s: shell error');
else
msg=read(TMPDIR+'/unix.err',-1,1,'(a)')
error('unix_s: '+msg(1))
end
end
|
366cffbedaecd51996b75a4bde334065f8d3ce3a | 81a7e7bbbdadf675a70f5ac7dd91aabafd748348 | /Assignment 4/EigenValuesVectors.sce | e6553d337fd9208d16f2c003463985bbee6d5f81 | [] | no_license | SreejeshSaya/LinearAlgrabra-SciLab | 089cef88d83e9bea68b3df0c20386957c7b7dcb0 | 0b0c22e2775b998701d2f8e44aa178d9dbc43d19 | refs/heads/master | 2020-12-29T20:38:17.084259 | 2020-04-06T06:50:12 | 2020-04-06T06:50:12 | 238,723,714 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 840 | sce | EigenValuesVectors.sce | //rows = 3;
//cols = 3;
//A = zeros(rows,cols);
//disp("Inputs to all matrices to be sequential left to right, top to bottom");
//disp("Inputs to A begin");
//for i = 1:rows
//for j = 1:cols
//A(i,j) = input("value for A:")
//end
//end
A=[3 -2 5; -2 3 6; 5 6 4];
lam = poly(0, 'lam')
lam = lam
charMat = A-lam*eye(3,3)
disp(charMat, 'The characteristic Matrix is')
charPoly=poly(A, 'lam')
disp(charPoly, 'The characteristic polynomial is')
lam = spec(A)
disp(lam, 'The eigen values of A are')
function [x, lam] = eigenvectors(A);
[n, m] = size(A);
lam = spec(A);
x = [];
for k=1:3
B=A-lam(k)*eye(3,3);
C=B(1:n-1, 1:n-1);
b = -B(1:-n, n);
y=C/b;
y=[y:1];
y = y/norm(y);
x=[x, y];
end
endfunction
get f('eigenvectors')
[x, lam] = eigenvectors(A)
disp(x,'The eigen vectors of A are');
|
5904aff4e930975605f94dddbec97701c36f780b | 449d555969bfd7befe906877abab098c6e63a0e8 | /998/CH29/EX29.58/Ex58.sce | f90a1ca4ef6edadebc9d5aeaa4bc02175810df31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 279 | sce | Ex58.sce | //Ex:58
clc;
clear;
close;
a=20000;//apogee in km
b=16000;//perigee in km
x=2*a;//sum of apogee and perigee
B=-40000;
A=1
C=256000000;
r_a1=(-B+sqrt(B^2-(4*A*C)))/2;
printf("The apogee distance=%d km",r_a1);
r_p1=x-r_a1;
printf("\n The perigee distance=%d km",r_p1); |
18d2cdc466171b11a618cd4980c0fe38ebc9af6c | df82401a4fbb64f37b3ed00aa17d82600996f811 | /raizes - bissecao.sce | 034b692576deddff803a6df1cddf7db28fab49fb | [] | no_license | ItaloOliveiraF/Algoritmos | 9600fa8e95fed942414250e92e93286320548795 | ff32fb26414e14d7b55b39cba7025eb2f844ea5b | refs/heads/master | 2020-04-04T19:11:32.124542 | 2018-10-26T02:59:35 | 2018-10-26T02:59:35 | 156,195,729 | 1 | 0 | null | 2018-11-05T09:56:50 | 2018-11-05T09:56:49 | null | UTF-8 | Scilab | false | false | 540 | sce | raizes - bissecao.sce | clear;
clc;
// Definição da função f(x)
function y = f(x)
y = log(x) - 1
endfunction
// Implementação Bisseção
function [it, x, Er] = bissecao(a, b, p, itMax)
it = 0;
x = a;
Er = 1
while (Er > 10^(-p) & it < itMax)
it = it + 1;
xOld = x;
x = (a + b)/2;
if (f(x)*f(a)) < 0
b = x;
else
a = x;
end
Er = abs((x - xOld)/x);
end
endfunction
// Exemplo de chamada
[it, x, Er] = bissecao(2, 3, 4, 20)
|
afccda77dac104cb8c6e058e3bc37a4eddb918b1 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1.1/tmp/ensta/tp_ensta.sci | 5639c1d0f3b668744561589eb5c1c13ddb6d1c08 | [
"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 | 2,312 | sci | tp_ensta.sci | // Initialisations ...
s = poly(0,'s'); s = syslin('c',s*s/s);
r=[1,1];
load('proc');
frq=0.1:0.001:1;
rep1 = repfreq(proc,frq);
rep3 = repfreq(s/s,frq);
vproc=pfss(tf2ss(proc));
vproc(5)=clean(ss2tf(vproc(5)));
gr=ss2tf(vproc(3)+vproc(5)+vproc(7)+vproc(8));
gr=gr+horner(clean(proc-gr,1e-8),0);
xbasc();xset("window",0);xselect();bode([proc;gr],0.1,1,0.005);
errmul=proc/gr-1;
vigr=pfss(tf2ss(1/gr)); //on recupere les numerateurs-->w3
vigr(1)=ss2tf(vigr(1));
vigr(2)=ss2tf(vigr(2));
vigr(3)=ss2tf(vigr(3));
vigr(4)=ss2tf(vigr(4));
vigr(5)=ss2tf(vigr(5));
vigr(6)=ss2tf(vigr(6));
w31=vigr(1);w31=w31/horner(w31,0);
w32=vigr(2);w32=w32/horner(w32,0);
w33=vigr(3);w33=w33/horner(w33,0);
w33=trfmod(w33);// prendre le pole reflechi (changer - par +)
w341=trfmod(vigr(4)); // prendre le pole reflechi (changer - par +)
w34=w341/trfmod(w341); // multiplier l'amortissement par 3
w35=vigr(5);
w35=w35/trfmod(w35); //multiplier l'amortissement par 3
g=gr/s;
vg=pfss(tf2ss(g)); //nouvelle dec. en elmts simple-->syst. augm.
vg1=ss2tf(vg(1));
vg2=clean(ss2tf(vg(2)));
vg3=ss2tf(vg(3));
vg4=ss2tf(vg(4));
vg0=vg1+vg2;
Ms=s+1;Ns=1/(s+1);
Sys1=sysdiag(1,1,1,1,Ms);Sys2=sysdiag(1,Ns);
w50=0.4; w51= 8; w52 = 29;
Rg=[diag([w50,w51,w52]);[1,1,1]]*[vg(1)+vg(2);vg(3);vg(4)];
U=[0,-1;1,-1];
amin = 0; amax = 2;
while (amax -amin)/amax > 1e-2,
a = (amin + amax)/2; write(%io(2),a,'(f6.4)')
w3=(1/ab)*horner((1+s^3),s/a)*w31*w33*w34*w35;
P=sysdiag(tf2ss(w3),Rg)*U;
Ptmp=Sys1*P*Sys2;
[sk,mu]=H_inf(Ptmp,r,0.8,1.2,1);
if mu == [] then amin = a; else amax = a; end
end
w3=(1/ab)*horner((1+s^3),s/amin)*w31*w33*w34*w35;
P=sysdiag(tf2ss(w3),Rg)*U;
//xbasc();
xset("window",1);gainplot([w3;errmul],.1,1,0.005);
Ptmp=Sys1*P*Sys2;
[Ktmp,mu]=H_inf(Ptmp,r,0.9,1.1,30);
K=ss2tf(Ktmp)/s;
ks=trfmod(K);
olp=ks*proc;
rep2 = repfreq(ks,frq);
xbasc(2);
xset("window",2);xselect();nyquist(olp,0.03,0.8,0.00015);
m_circle(20*log(2.05)/log(10));xset("dashes",0);
sensit = rep1 ./(rep3 + rep1.*rep2);
xbasc(3);
xset("window",3);xselect();gainplot(frq,[sensit;rep1;rep2],['G/(1+KG)';'G';'K']);
www=lft(Ptmp,Ktmp);
xbasc(5);xset("window",5);xselect();
gainplot(www,0.01,10);
www1=lft(ss2tf(P),r,ks);
xbasc(6);xset("window",6);xselect();
gainplot(www1,0.01,10,['W3G/(1+KG)';'W50G0/(1+KG)';'W51G1/(1+KG)';'W52G2/(1+KG)']);
|
61ab960a7bdf6e8e323267e4c724a74456af45b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH3/EX3.13/example3_13.sce | 7b2c8df0053b0a3655c3aea433d281aec3f6fb04 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 104 | sce | example3_13.sce | v=120;
n=75/100;
p=1.5*746;
i=p/(n*v);
disp("the current (in A) that must be supplied is"); disp(i); |
5a224e2bb170a4be23e24aea9314e10a2aed3831 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2921/CH10/EX10.1/Ex10_1.sce | 201aa19dcfed52109c1b9d980bbc305f9e54b548 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,105 | sce | Ex10_1.sce | clc;
clear;
mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-10.1 Page No.195\n');
P=100; //[lb/in^2] Hydraulic pressure
F=450; //[lb] Extension force
Fr=400; //[lb] Retraction force
A=F/P; //[in^2] Cross section area
D=sqrt(4*A/%pi); //[in] Bore of cylinder
mprintf('\n The bore of cylinder is %f in.',D);
//Use 2.5in bore cylinder
Dm=2.5; //[in] Bore of cylinder
Dr=1; //[in] Diameter of rod
A2=%pi*Dm^2/4-%pi*Dr^2/4; //[in^2]
F2=P*A2; //[lb] Force
if F2>=Fr then
mprintf('\n The diameter of rod is %f in.',Dr);
else
mprintf('\n This would not meet requirement');
end
//This would meet requirement
Ab=%pi*Dm^2/4; //[in^2] Cross section area
//Note-In the book V=180.7 is used instead of V=180.64158
d=20; //[in] stroke
V=Ab*d+A2*d; //[in^3] Volume per cycle
t=2; //[s] Cycle time
FR=V/t; //[in^3/s] Flowrate
FR=FR*7.48*60/1728; //[gal/min] Flowrate
mprintf('\n Flow rate required is %f gal/min.',FR);
|
e9a05103c866c9174e4f0933bd310a1de80646f9 | 97135f725c599527ba0fd95a5289373c755daf3b | /Examples/test-suite/scilab/enums_runme.sci | 610bd7e84bc1f9569ab933d6b559b9da4035b8ac | [] | no_license | maqalaqil/swag-c- | b8880cfc92424d5bbca1fe15ed98663a41063f27 | 6fd1ba2bf1d353f24c116a3c89a8540292b86a7d | refs/heads/master | 2020-07-06T21:02:08.949652 | 2019-09-01T07:56:55 | 2019-09-01T07:56:55 | 203,137,066 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,102 | sci | enums_runme.sci | exec("alaqiltest.start", -1);
if typeof(CSP_ITERATION_FWD_get()) <> "constant" then alaqiltesterror(); end
if typeof(CSP_ITERATION_BWD_get()) <> "constant" then alaqiltesterror(); end
if typeof(ABCDE_get()) <> "constant" then alaqiltesterror(); end
if typeof(FGHJI_get()) <> "constant" then alaqiltesterror(); end
try
bar1(CSP_ITERATION_FWD_get())
bar1(CSP_ITERATION_BWD_get())
bar1(1)
bar1(int32(1))
bar2(ABCDE_get())
bar2(FGHJI_get())
bar2(1)
bar2(int32(1))
bar3(ABCDE_get())
bar3(FGHJI_get())
bar3(1)
bar3(int32(1))
catch
alaqiltesterror()
end
if typeof(enumInstance_get()) <> "constant" then alaqiltesterror(); end
if enumInstance_get() <> 2 then alaqiltesterror(); end
if typeof(Slap_get()) <> "constant" then alaqiltesterror(); end
if Slap_get() <> 10 then alaqiltesterror(); end
if typeof(Mine_get()) <> "constant" then alaqiltesterror(); end
if Mine_get() <> 11 then alaqiltesterror(); end
if typeof(Thigh_get()) <> "constant" then alaqiltesterror(); end
if Thigh_get() <> 12 then alaqiltesterror(); end
exec("alaqiltest.quit", -1);
|
67d33fd355b1703ba76877a9c648e65e9a0200cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH14/EX14.14/example14_14.sce | 8f2215a1e86399135856adde4517fd305dcfa1ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 663 | sce | example14_14.sce | clc
// Given that
lambda = 5.893e-7 // wavelength of light in meter
V = 0.36 // stopping potential for emitted electron in eV
h = 6.62e-34 // Planck constant in J-sec
c = 3e8 // speed of light in m/sec
e = 1.6e-19 // charge on an electron in C
m = 9.1e-31 // mass of an electron in kg
// Sample Problem 14 on page no. 14.25
printf("\n # PROBLEM 14 # \n")
printf("Standard formula used \n ")
printf(" E_k = h*mu - phi \n")
E = h * c / lambda
w = ((h * c) / lambda) * (1 / e) - V
f = w * e / h
printf("\n Maximum energy is %f eV.\n Work function is %f eV.\n Threshold frequency is %e Hz. ",E/e,w,f)
|
11ac53c9c4e39e2112e8a7f8376664f16369f949 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/C45-C/results/C45-C.led7digit-10-1tra/result0.tst | 1ca61a7bd67e348eeef32da19d71c774d852c647 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 535 | tst | result0.tst | @relation led7digit
@attribute Led1 real[0.0,1.0]
@attribute Led2 real[0.0,1.0]
@attribute Led3 real[0.0,1.0]
@attribute Led4 real[0.0,1.0]
@attribute Led5 real[0.0,1.0]
@attribute Led6 real[0.0,1.0]
@attribute Led7 real[0.0,1.0]
@attribute number{0,1,2,3,4,5,6,7,8,9}
@inputs Led1,Led2,Led3,Led4,Led5,Led6,Led7
@outputs number
@data
2 8
6 6
6 6
7 7
9 7
0 7
0 0
1 1
2 8
3 3
4 4
5 5
7 7
9 5
9 9
0 0
0 0
3 7
5 5
6 8
0 7
2 2
3 9
4 4
1 7
5 5
5 5
6 6
7 7
9 9
1 1
1 7
4 4
6 6
7 7
2 2
4 4
9 9
9 9
2 2
3 3
3 9
8 0
8 8
9 9
9 9
4 4
5 5
4 9
8 8
|
0c682d72d72de1544f2a4737dacea9fcab111128 | 178822612bcd418dc12ba7a649304a24ab618d60 | /Numerical Analysis/descenteCorr.sci | 97fd886b24220afb103ec7aaffefc4958181f057 | [] | no_license | engom/Math_Problem_Solving | b56c6cbfbff6c416c519795b9ab8f0c0bbba5ea3 | 6538c476681ae4ee803ea9b3a8944c5f370e1961 | refs/heads/master | 2022-05-25T01:13:16.123161 | 2016-02-13T11:32:28 | 2016-02-13T11:32:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 136 | sci | descenteCorr.sci | function [x]=descente(A,b,n)
x(1)=b(1)/A(1,1);
for k=2:n,
s=0;
for i=1:(k-1),
s=s+A(k,i)*x(i);
end
x(k)=(b(k)-s)/A(k,k);
end
endfunction |
0bcecc8ecb52090e36e207983144fa1577a1c09e | 669f52463d792f1d4933d95acd31792e2e47b056 | /testcases.sce | 89fa820cb151780da41673d4c2cdb2638b4cdc20 | [] | no_license | larrybolt/wisk2hitori | ce39473d7a49fa32bdfea46f0fc8c8a8acc71163 | 5f01b9c13fa50cf7d4d865c5a34c95b20d195d4c | refs/heads/master | 2021-01-22T15:01:16.856691 | 2016-05-17T10:28:17 | 2016-05-17T10:28:17 | 33,406,015 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,801 | sce | testcases.sce | mode(-1);
warning('off');
z=0
w=1
leeg=-1
//6*6 eenvoudig (iOs "hitori")
N1=[5 2 1 5 4 6
5 4 3 2 5 4
1 5 4 4 6 2
4 4 5 1 5 1
4 3 5 5 2 1
2 4 6 4 5 5]
C1=[z w w w w w
w z w w z w
w w w z w w
z w z w w z
w w w z w w
w z w w z w]
//9*9 eenvoudig (iOs "Real Hitori")
N2=[1 8 2 4 3 9 4 1 5
6 5 5 1 1 4 9 3 3
8 4 6 9 5 3 2 6 7
4 8 3 8 7 8 8 2 9
1 6 4 2 3 6 5 9 1
9 5 8 3 5 2 7 6 1
2 5 3 1 6 4 4 2 8
5 4 4 2 9 3 7 7 6
7 9 1 5 1 6 3 8 8]
C2=[z w w w z w z w w
w z w z w w w w z
w w w w w z w z w
w z w z w w z w w
w w z w w z w w z
w z w w z w w w w
w w z w w z w z w
w z w z w w z w w
w w w w z w w w z]
// 5*5 gemakkelijk (hitoriconquest.com)
N3=[5 5 1 5 3
5 4 1 2 1
5 3 4 3 5
3 4 5 4 2
1 2 3 3 4]
C3=[z w w z w
w w z w w
z w w z w
w z w w w
w w w z w]
// 5*5 iets moeilijker (hitoriconquest.com)
N4=[5 3 3 2 2
3 3 2 5 4
1 2 3 1 5
4 2 1 3 5
1 5 4 1 3]
C4=[w w z w z
w z w w w
w w w z w
w z w w z
z w w w w]
// 8*8 iets moeilijker (muren) (hitoriconquest.com)
N5=[5 2 4 5 6 1 6 7
5 5 2 7 8 1 4 1
1 2 8 6 4 7 3 1
3 4 7 7 5 2 7 6
1 6 7 3 8 5 2 8
2 2 3 5 7 1 6 7
6 7 3 1 5 3 8 4
5 8 5 2 1 6 5 3]
C5=[w w w z w w z w
z w w w w z w w
w z w w w w w z
w w w z w w z w
z w z w z w w w
w z w w w z w z
w w z w z w w w
z w w w w w z w]
//5*5 gemakkelijk (brainbashers)
N6=[3 1 5 5 1
1 5 2 3 4
2 5 3 2 5
5 1 2 2 3
4 1 1 5 5]
C6=[w z w z w
w w w w w
w z w z w
w w z w w
w z w w z]
//7*7 gemakkelijk (brainbashers)
N7=[4 2 1 2 6 6 5
7 2 6 2 1 5 3
7 7 2 5 5 2 6
1 1 7 5 2 6 6
2 6 5 6 3 5 1
4 5 2 1 4 2 7
5 1 4 6 4 3 5]
C7=[w w w z w z w
w z w w w w w
z w w z w z w
w z w w w w z
w w w z w z w
z w z w w w w
w w w w z w z]
//9*9 gemakkelijk (brainbashers)
N8=[4 2 3 8 1 2 5 4 6
8 2 6 6 9 2 7 8 3
6 7 5 4 2 8 9 2 6
5 9 1 6 2 1 4 6 8
1 7 2 4 4 1 6 7 5
1 5 9 2 9 3 1 6 2
2 1 8 9 6 6 3 8 7
3 6 8 9 7 4 2 4 9
4 1 1 7 4 6 9 9 2]
C8=[z w w w w z w w w
w z w z w w w z w
w w w w z w w w z
w w z w w w w z w
w z w z w z w w w
z w w w z w w w z
w w z w w z w w w
w w w z w w w z w
w z w w z w z w w()]
//6*6 medium (muren!) (brainbashers)
N9=[5 2 2 1 6 6
2 6 5 4 4 3
1 6 4 2 3 6
1 4 5 5 4 1
3 2 1 6 4 5
3 1 1 3 1 2]
C9=[w z w w w z
w w w w z w
w z w w w w
z w z w z w
w w w w w w
z w z w z w]
//12*12 gemakkelijk (brainbashers)
N10=[2 11 1 12 7 1 10 6 3 6 12 2
4 11 7 10 9 2 11 5 8 8 6 9
11 7 9 1 4 6 12 3 9 11 8 7
4 4 6 5 10 12 9 1 6 9 11 10
9 2 4 8 10 9 7 6 2 7 5 6
2 8 5 7 1 10 12 4 5 12 3 7
10 8 9 6 5 1 5 1 12 4 9 8
11 10 12 10 11 12 3 8 5 9 9 8
12 2 10 7 5 3 9 10 9 11 1 6
5 5 3 4 11 9 4 12 8 2 8 11
5 6 6 3 9 4 8 2 12 7 12 1
12 9 10 6 12 10 4 7 6 2 2 9]
C10=[z w w w w z w z w w z w
w z w w z w w w z w w w
w w z w w w w w w z w z
z w w w z w z w z w w w
w z w w w z w w w z w z
w w w z w w z w z w w w
w z w w z w w z w w z w
z w w z w z w w w z w z
w w z w w w w w z w w w
z w w w z w z w w w z w
w w z w w w w w z w w w
z w w z w z w w w z w z]
//6*6 medium (brainbashers)
N11=[5 2 2 1 6 6
2 6 5 4 4 3
1 6 4 2 3 6
1 4 5 5 4 1
3 2 1 6 4 5
3 1 1 3 1 2]
C11=[w z w w w z
w w w w z w
w z w w w w
z w z w z w
w w w w w w
z w z w z w]
// speciaal geval: alle 2 in laatste kolom zwart
N12=[3 4 2 5 2
4 2 4 1 4
2 2 1 4 2
1 5 4 2 3
4 5 5 3 3]
C12=[w w w w z
z w z w w
w z w w z
w w w w w
w z w w z]
|
335f5d072ed217d7b5a32820e09361ca13b0e1a5 | de14a6897d4397228a52bacb8905b8807370ef4b | /chaleur1.sce | 9a9f4e63020f649fed8f1a529332e8c8a71eda77 | [] | no_license | JustineMarlow/MT94-RapportLaTeX | 20b670965a47ce85beecc15865d14ec9cc4d305b | 3dfaa665b5691621410f8eafdf76ecaf081b92d1 | refs/heads/master | 2021-09-06T17:54:58.174773 | 2018-02-09T09:57:52 | 2018-02-09T09:57:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 430 | sce | chaleur1.sce | function out=a(n)
if (n==0) out=2*lambda/%pi;
else out=-2/(n*%pi)*sin(n*(%pi-lambda));
end
endfunction
N=1000;
t=linspace(0.01,5,4);
lambda=%pi/2;
theta=linspace(0,2*%pi,1000);
p=100;
for i=1:N
somme=a(0)/2;
for n=1:p
somme=somme+a(n)*cos(n*theta)*exp(-n^2*t(i));
end
drawlater;
subplot(2,2,i);
plot(theta,somme,'b');
set(gca(),'data_bounds',[0 2*%pi -0.2 1.2]);
drawnow;
end
|
50df833f78e153285bb38f8acc33118c9c4f2c8f | 475a9e3173cbf116c786e8a60b1323f29f10a134 | /askmod.sci | dff54b153845c417d6aea01086d0c874a844d50d | [] | no_license | jatinmandav/Sci-Lab-Implementations | bee5e375735ca0ebee9fd7afa69ddddbdadb5e3c | d1f65da040022b785763fe74d4b49468dc6078f3 | refs/heads/master | 2020-03-10T06:35:07.107772 | 2018-04-12T19:13:37 | 2018-04-12T19:13:37 | 129,242,875 | 4 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 683 | sci | askmod.sci | /*
* By: Jatin Kumar Mandav
*
* ASK Modulation
*
* Inputs: Data or Digital Information Signal.
* Carrier Signal Frequency, Carrier Frequency Amplitude
*
*/
function [] = ask_mod(data, freq_carrier, amp_carrier)
t = [0:0.001:1]
carrier_signal = amp_carrier*sin(2*%pi*freq_carrier*t)
zeroes = 0*t
modulated_signal = []
for i = 1:length(data)
if data(i) == 1 then
modulated_signal = [modulated_signal, carrier_signal]
else
modulated_signal = [modulated_signal, zeroes]
end
end
plot(modulated_signal)
title("Modulated Signal")
endfunction
|
72b2809596039dbe6b0ff349d0b1f7275595f3dd | 2ac3595ed7f1ea89f95169caefd85f9a1c52a6d9 | /base/Applications/Eventing/EvStress/EvStress.tst | abb5b6111c996450085f9b8c09663ad524a0de1d | [] | no_license | lastweek/source-singularity | bc61bdac3047ef02cc017841d7621831b5413fe8 | d37047d36f26f7543224905ae35a369448be904e | refs/heads/master | 2021-10-13T01:19:54.646849 | 2021-09-26T18:58:14 | 2021-09-26T18:58:14 | 210,944,019 | 86 | 8 | null | null | null | null | UTF-8 | Scilab | false | false | 165 | tst | EvStress.tst |
<Profile Name="ProfileEvStress">
<Module Name="EvStress">
<Suite Name="EvStress">
<Test Name="TestAll"/>
</Suite>
</Module>
</Profile>
|
820884a94125e224706008cf88e1aec2cd48aec0 | ebd6f68d47e192da7f81c528312358cfe8052c8d | /swig/Examples/test-suite/scilab/null_pointer_runme.sci | dab59acf85275f3e21dfe5961a216917bae4e4fd | [
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only",
"Apache-2.0"
] | permissive | inishchith/DeepSpeech | 965ad34d69eb4d150ddf996d30d02a1b29c97d25 | dcb7c716bc794d7690d96ed40179ed1996968a41 | refs/heads/master | 2021-01-16T16:16:05.282278 | 2020-05-19T08:00:33 | 2020-05-19T08:00:33 | 243,180,319 | 1 | 0 | Apache-2.0 | 2020-02-26T05:54:51 | 2020-02-26T05:54:50 | null | UTF-8 | Scilab | false | false | 153 | sci | null_pointer_runme.sci | exec("swigtest.start", -1);
p = getnull();
checkequal(SWIG_this(p), 0, "SWIG_this(p)");
checkequal(funk(p), %T, "funk(p)");
exec("swigtest.quit", -1);
|
e073a6d5defa6e0c0529a4af9e615ae8b0748595 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1026/CH13/EX13.2/Example13_2.sce | b8f3bc3ade13e881e5a2ae4f2f3bd4b555cb9c64 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 300 | sce | Example13_2.sce | //chapter13,Example13_2,pg 391
M235U=235//at.mass of 235U
m=10^-3
N=6.023*10^23
Eperfi=200*10^6//energy per fission
E=Eperfi*1.6*10^-19//energy per fission (in joules)
T=10^-6
A=M235U
P=((m*N)/A)*(E/T)//power output
printf("power of explosion\n")
printf("P=%.2f watt",P) |
976a521dfa2c8bc8bd040ea20a6a5e2c047f65e3 | 92f5993eb05f0a027cc98c0304337a20d2d9da2e | /dfs.sce | 953c53d14218ba6a0ea632fa18efe458923ecb67 | [] | no_license | LuhJunior/Teoria-dos-Grafos | 664d034c857199d75e8a513cd0aaa12364347c89 | 22168992af086a2a03442701bcc26abe99d26aaa | refs/heads/master | 2020-03-28T02:39:12.681260 | 2018-12-06T06:29:07 | 2018-12-06T06:29:07 | 147,586,961 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,295 | sce | dfs.sce | function graph()
a = [0 1 0 0 0 0 0 0;
0 0 1 1 0 0 0 0;
0 0 0 0 1 0 0 0;
0 0 0 0 0 1 0 0;
0 0 0 0 0 0 1 0;
0 0 0 0 0 0 1 0;
0 0 0 0 0 0 0 1;
0 0 0 0 0 0 0 0]
disp(a, 'a')
a = a + a'
disp(a, 'a')
[nl, nc] = size(a)
n = nl
teta = [0 : 2*%pi/n :(n-1)* 2*%pi/n]
x = cos(teta)
y = sin(teta)
plot2d(x, y, -9)
plot2d(-2, -2, 0)
plot2d(2, 2, 0)
for i = 1 : n
xstring(x(i), y(i), string(i))
end
k = 0
for i = 1 : n
for j = i : n
if a(i, j) == 1
k = k+1
b(k, 1) = i
b(k, 2) = j
end
end
end
m = k
for k = 1: m
plot2d([x(b(k, 1)), x(b(k, 2))], [y(b(k, 1)), y(b(k, 2))], 1)
end
global('pre', 'pos', 'npre', 'npos', 'ordemdfs', 'ordem')
pre = zeros(1, n)
pos = zeros(1, n)
ordem = zeros(1, n)
npre = 1
npos = 1
dfs(a, 1)
disp(ordem, 'ordem')
endfunction
function dfs(a, v)
global('pre', 'pos', 'npre', 'npos', 'ordem')
pre(v) = npre;
ordem(npre) = v
npre = npre+1
for i = 1: n
if a(v, i) == 1 && pre(i) == 0
dfs(a, i)
end
end
pos(v) = npos;
npos = npos+1
endfunction
|
3d555caa9391e3b97f041129b8a506c49621bb3d | df924acfdd5b043da9336a2276726dbfb655735a | /test_suite/gnrcerr.tst | 2cb681f27ebe8eab5eddebaa719b58d81bb6cf76 | [] | no_license | noxdafox/clips | b8fb280223b5aae615e427bf1f31c03cb932b09d | a2c548b69394f0e2cf7c6d583810b6a29a662ae1 | refs/heads/master | 2023-09-01T18:52:07.614807 | 2021-12-14T20:10:21 | 2021-12-14T20:10:21 | 95,596,886 | 11 | 10 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | tst | gnrcerr.tst | (unwatch all)
(clear)
(dribble-on "Actual//gnrcerr.out")
(batch "gnrcerr.bat")
(dribble-off)
(clear)
(open "Results//gnrcerr.rsl" gnrcerr "w")
(load "compline.clp")
(printout gnrcerr "gnrcerr.bat differences are as follows:" crlf)
(compare-files "Expected//gnrcerr.out" "Actual//gnrcerr.out" gnrcerr)
(close gnrcerr)
|
cbb34f468c8bd7da2b0beef24f0815f26632b1ef | 449d555969bfd7befe906877abab098c6e63a0e8 | /2855/CH11/EX11.1/Ex11_1.sce | 27ec66f266ef2858fa54a21b3cf19c8a2d519a60 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 371 | sce | Ex11_1.sce | //Chapter 11
//page no 386
//given
clc;
clear all;
q=4.9*10^-18; //in m/W.GHz raman gain slope
f=100; //in GHz
A=50*10^-6; //cross sectional area in micro meter square
P0=3.5; //in mW
Le=10*10^3;
G=q*f*10^6/2/A;
N=20;
mprintf("\n G = %e ",G);
CT=N*(N-1)*(P0*10^-3*G*Le)/2;
printf("\n CT(L) = %0.2f ",CT);
|
727203b48f03d7ab9a806a51d5f626372e8ae762 | aaf4b47c862ed2d0095735a8359cf26d35618188 | /chips/Gates/DMux/DMux.tst | dcfde6f03947659420c567151ff7d5b65c88aee7 | [] | no_license | DevCoop-code/ElementsOfComputingSystems | c838acd695ea84000a2f63d227ba8f5c979a1178 | 98e8a5b21371cb0c4b513445b3c27dd74692caa6 | refs/heads/master | 2023-06-11T19:07:36.378129 | 2021-07-07T16:12:56 | 2021-07-07T16:12:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 182 | tst | DMux.tst | load DMux.hdl,
output-file DMux.out,
output-list in sel a b;
set in 0, set sel 0, eval, output;
set sel 1, eval, output;
set in 1, set sel 0, eval, output;
set sel 1, eval, output; |
53fa447927447eccde4b1b909784748a8a197fa3 | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /system/kiks_gui_staticbtn.sci | f691b7a74ef04a96450023e81755e51ac62a9664 | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,060 | sci | kiks_gui_staticbtn.sci | function [] = kiks_gui_staticbtn()
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// -----------------------------------------------------
// (c) 2000-2004 Theodor Storm <theodor@tstorm.se>
// http://www.tstorm.se
// -----------------------------------------------------
global("KIKS_GUI_HDL","KIKS_TIMESCALE","KIKS_updatelmp");
KIKS_updatelmp = -1;
KIKS_TIMESCALE = -1;
// !! L.12: Matlab function findobj not yet converted, original calling sequence used
// L.12: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","update_frame");
// !! L.13: Matlab function set not yet converted, original calling sequence used
// L.13: Name conflict: function name changed from set to %set
set(H,"BackgroundColor",[0.3,0.3,0.3]);
// !! L.14: Matlab function findobj not yet converted, original calling sequence used
// L.14: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","update_text");
// !! L.15: Matlab function set not yet converted, original calling sequence used
// L.15: Name conflict: function name changed from set to %set
set(H,"BackgroundColor",[0.3,0.3,0.3]);
// !! L.17: Matlab function findobj not yet converted, original calling sequence used
// L.17: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","button_dynamic");
// !! L.18: Matlab function set not yet converted, original calling sequence used
// L.18: Name conflict: function name changed from set to %set
set(H,"Value",0);
// !! L.19: Matlab function findobj not yet converted, original calling sequence used
// L.19: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","button_real");
// !! L.20: Matlab function set not yet converted, original calling sequence used
// L.20: Name conflict: function name changed from set to %set
set(H,"Value",0);
// !! L.21: Matlab function findobj not yet converted, original calling sequence used
// L.21: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","button_static");
// !! L.22: Matlab function set not yet converted, original calling sequence used
// L.22: Name conflict: function name changed from set to %set
set(H,"Value",1);
// !! L.24: Matlab function findobj not yet converted, original calling sequence used
// L.24: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","step_popup");
// !! L.25: Matlab function set not yet converted, original calling sequence used
// L.25: Name conflict: function name changed from set to %set
set(H,"Enable","on");
// !! L.26: Matlab function findobj not yet converted, original calling sequence used
// L.26: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","stat_popup");
// !! L.27: Matlab function set not yet converted, original calling sequence used
// L.27: Name conflict: function name changed from set to %set
set(H,"Enable","on");
// !! L.29: Matlab function findobj not yet converted, original calling sequence used
// L.29: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","acc_popup");
// !! L.30: Matlab function set not yet converted, original calling sequence used
// L.30: Name conflict: function name changed from set to %set
set(H,"Enable","off");
// !! L.31: Matlab function findobj not yet converted, original calling sequence used
// L.31: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","limit_popup");
// !! L.32: Matlab function set not yet converted, original calling sequence used
// L.32: Name conflict: function name changed from set to %set
set(H,"Enable","on");
// !! L.33: Matlab function findobj not yet converted, original calling sequence used
// L.33: Name conflict: function name changed from findobj to %findobj
H = findobj("Tag","int_check");
// !! L.34: Matlab function set not yet converted, original calling sequence used
// L.34: Name conflict: function name changed from set to %set
set(H,"Enable","on");
kiks_gui_getstatlistbox;
endfunction
|
0e9b9a4aa64fc85824e2d41e26eb528bf5f60510 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH3/EX3.11/ex3_11.sce | 62afc8c7c828603d716f0e33fe5ba1072fb93ef5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 417 | sce | ex3_11.sce | // Exa 3.11
clc;
clear;
close;
format('v',6)
// Given data
I_Z = 0.2;// in A
R = 10;// in ohm
V_Z = 8 + (R*I_Z);// in V
I_Lmin = V_Z/R;// in A
I_Zmax = 0.2;//in A
Vimax = 15;// in V
// The minimum value of R
Rimin = (Vimax-V_Z)/(I_Zmax+I_Lmin);// in ohm
disp(Rimin,"The minimum value of R in ohm is");
// Note: The calculation in the book is not accurate, So the answer in the book is not accurate.
|
482bc4133e819c1d44b9c371b1af9a647752d986 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH19/EX19.2/Ex19_2.sce | 6e3b0283040a8690369c91bb65379c417c192923 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 733 | sce | Ex19_2.sce | // Initilization of variables
v_A=5 // m/s // speed of ship A
v_B=2.5 // m/s // speed of ship B
theta=135 // degree // angle between the two ships
// Calculations
// Here,
OA=v_A // m/s
OB=v_B // m/s
// The magnitude of relative velocity is given by cosine law as,
AB=sqrt((OA^2)+(OB^2)-(2*OA*OB*cosd(theta))) // m/s
// where AB gives the relative velocity of ship B with respect to ship A
// Applying sine law to find the direction, Let alpha be the direction of the reative velocity, then
alpha=asind((OB*sind(theta))/(AB)) // degree
// Results
clc
printf('The magnitude of relative velocity of ship B with respect to ship A is %f m/s \n',AB)
printf('The direction of the relative velocity is %f degree \n',alpha)
|
fb20fd43bf6bbd9539fd0d09e5a537999f0de5e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /845/CH6/EX6.22/Ex6_22.sce | e1bf6e2bbf5f1aacbdbed49dcd29f0c652da1911 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 768 | sce | Ex6_22.sce | //Example 6.22
clc
clear
x = 3:8;
y = [0.205 0.24 0.259 0.262 0.25 0.224];
n = length(x);
del = %nan*ones(n,5);
del(:,1) = y';
for j = 2:5
for i = 1:n-j+1
del(i,j) = del(i+1,j-1) - del(i,j-1);
end
end
X = poly(0, "X");
x0 = x(1);
y0 = y(1);
h = x(2) - x(1);
p = (X-x0)/h;
del0 = del(1,:);
del0 = round(del0*10^4)/10^4;
del0 = del0(1:find(del0==0)-1);
Y = 0;
for i = 0:length(del0)-1
t = 1;
for j = 1:i
t = t * (p-j+1);
end
Y = Y + t*del0(i+1)/factorial(i);
end
disp(Y,"y = ")
dydx = derivat(Y);
minx = roots(dydx);
miny = round(horner(Y,minx)*10^5)/10^5;
disp(minx,"min_x = ")
disp(miny,"min_y = ")
//min_y value is incorrectly displayed in textbook as 0.25425 instead of 0.26278
|
ee3d3890ceb482a7cd328dfd9d6c12b4173b6379 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH4/EX4.1/example4_1.sce | aad6ae195a8350d20206615216ee70a1d7085c49 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sce | example4_1.sce | disp("Part a");
l=100;
d=2*10^(-3);
ro=1.72*10^(-8);
a=%pi*(d^2)/4;
r=ro*l/a;
disp("the resistance (in Ω) of copper wire is"); disp(r);
disp("Part b");
ro1=2.63*10^(-8);
r1=r*ro1/ro;
disp("the resistance (in Ω) of aluminium wire is"); disp(r1); |
7e28639218ad0156f7b1c235bccb9c143349a6e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH7/EX7.9/Ex7_9.sce | 91759e4493f839a73527deb849a01e65d6304f98 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 132 | sce | Ex7_9.sce | clear;
clc;
//Example 7.9
r=2600;
C1=2*10^-6;
C2=0.1*10^-6;
fB=1/(2*%pi*r*(C1+C2));
printf('\n3dB frequency=%.2f MHz\n',fB)
|
9683dde767f4c38b40bbe6def84f535711035b03 | 717ddeb7e700373742c617a95e25a2376565112c | /2474/CH5/EX5.3/Ch05Ex03.sce | 534c27703cd71670633d350e1ae26dd8715600c9 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 849 | sce | Ch05Ex03.sce | // Scilab code Ex5.3: Pg.196-197 (2008)
clc; clear;
E_k = 150; // Kinetic energy of a cosmic ray proton, GeV
h = 6.63e-034; // Plank's constant, J-s
m = 1.67e-027; // Mass of proton, kg
c = 3e+08; // Velocity of light, m/s
E_0 = 0.938; // Rest energy of the proton, GeV
lamda_c = h/(m*c); // Compton wavelength of proton, m
r = E_k/E_0; // Ratio of kinetic energy to rest energy of proton
// Since this value on the curve corresponds to about 6e-03 on the axis, therefore
r_w = 6e-03; // Ratio of de broglie wavelength of proton to its compton wavelength
lamda = r_w*lamda_c; // de Broglie wavelength of the proton, m
printf("\nThe de-Broglie wavelength of cosmic ray proton = %3.1e m = %3.1e fm",lamda, lamda*1e+15);
// Result
// The de-Broglie wavelength of cosmic ray proton = 7.9e-018 m = 7.9e-003 fm |
56eb200e195fdebfc4c12cea18eabb4208df61a2 | 1f57c25951e0b065ae60f388372d92fb44f41e5c | /Practica 1/Hibrido.sci | ae9760532e09ca61bc27bc9f043ac82f7dd40b88 | [] | no_license | javilag/metodosNumericos | 1d93774d87a1bef50002089a51c5bfe961eb26de | 06dbc373351ff56c465896d47c89d5f896f249d8 | refs/heads/master | 2021-01-01T19:43:18.598387 | 2015-10-28T19:01:13 | 2015-10-28T19:01:13 | 42,838,717 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,855 | sci | Hibrido.sci | //el algoritmo fue interpretado de la pagina http://www.mat.ucm.es/~fmacia/Docencia/MN/Matlab/root/hibrido.pdf
function Hibrido(f,a,b,itx,e)
//f es la función que se ingresara entre comillas
//a es un punto
//b es un punto
//e es la tolerancia
//itx es el numero maximo de iteraciones
k=2;
o(1)=a;
o(2)=b;
A(1)=0;
A(2)=a;
printf('+-----------+----------------------+----------------------+\n');
printf('| Iteracion | r | error |\n');
printf('+-----------+----------------------+----------------------+\n');
printf('| %9d | %20.15f | %20.15f |\n',1,o(1),e);
while k<itx
xn=o(k);
x=xn
fx=evstr(f);
an=A(k);
x=an
fa=evstr(f);
et=abs(an-xn);
if(et>=e)
xnm=o(k-1);
x=xnm
fmx=evstr(f);
deltaB=(an-xn)/2;
difdiv=(fx-fmx)/(xn-xnm)
if (difdiv~=0)//aca va un ~=
deltaS=-(fx/difdiv);
if((deltaS*deltaB)>0)&(abs(deltaS)<abs(deltaB))
o(k+1)=xn+deltaS;
printf('| %9d | %20.15f | %20.15f |\n',k,o(k+1),et);
else
o(k+1)=xn+deltaB;
printf('| %9d | %20.15f | %20.15f |\n',k,o(k+1),et);
end
else
o(k+1)=xn+deltaB;
printf('| %9d | %20.15f | %20.15f |\n',k,o(k+1),et);
end
xmm=o(k+1);//esto es un x+1 segun el pseudo algoritmo
x=xmm
fxm=evstr(f);
if(fa*fxm)<0
A(k+1)=an;
else
A(k+1)=xn;
end
k=k+1;
Y(k)=k;
else
printf('no hay raiz, perdon');
k=itx;
end
end
plot(Y,o);
endfunction
|
14c94109ae95fb006a6eb2fd12d7bb7e5796d9ef | 449d555969bfd7befe906877abab098c6e63a0e8 | /1004/CH2/EX2.14/Ch02Ex14.sci | 2eed699c14409a4a6ae90354a6aee53211d408b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 467 | sci | Ch02Ex14.sci | // Scilab Code Ex2.14 Ratio of masses of a proton and an electron: Pg:54 (2008)
RH = 1.09678e+07; // Rydberg constant for hydrogen, per metre
RHe = 1.09722e+07; // Rydberg constant for helium, per metre
MH_m_ratio = (RH - 1/4*RHe)/(RHe - RH); // Ratio of mass of a proton to that of an electron
printf("\nThe ratio of mass of a proton to that of an electron = %4d", MH_m_ratio);
// Result
// The ratio of mass of a proton to that of an electron = 1869 |
195eccb0f5e5956255da763899fd1031d415aa57 | 81edb62eb260102a7f9e6db9065204b5aa0333e0 | /ACSO/complemento.tst | 1b2868133f1a9cf0d078d7049db45bb655fd024f | [] | no_license | Stilink/ACSO | e6531e16b8400b147764887698d732ff4269d9fe | 17eea5288f395bf202f3c1c28c9003df3c78dc81 | refs/heads/master | 2020-04-16T19:57:14.333374 | 2019-05-17T02:18:27 | 2019-05-17T02:18:27 | 165,880,362 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 869 | tst | complemento.tst | load complemento.hdl,
output-file complemento.out,
compare-to complemento.cmp,
output-list ah%B1.16.1 al%B1.16.1 sh%B1.16.1 sl%B1.16.1;
set ah %B0000000000000000,
set al %B0101101111101101,
eval,
output;
set ah %B0000000000000000,
set al %B1011011000110010,
eval,
output;
set ah %B0000000000000000,
set al %B0010111011110001,
eval,
output;
set ah %B1111111111111111,
set al %B1011011011010000,
eval,
output;
set ah %B0000000000000000,
set al %B0001011000010010,
eval,
output;
set ah %B0000000000000000,
set al %B0001110001011110,
eval,
output;
set ah %B1111111111111111,
set al %B0111011011001000,
eval,
output;
set ah %B1111111111111111,
set al %B1101011110111100,
eval,
output;
set ah %B0000000000000000,
set al %B1000111111100011,
eval,
output;
set ah %B1111111111111111,
set al %B0111001001011101,
eval,
output;
|
e3db391172a46c34d422d238b061e39249309ab4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3176/CH6/EX6.10/Ex6_10.sce | e7eb7278756f965fd3f80a4aec66cdfa99a54435 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,155 | sce | Ex6_10.sce | //Ex6_10 :
//Color Balancing.
// Version : Scilab 5.4.1
// Operating System : Window-xp, Window-7
//Toolbox: Image Processing Design 8.3.1-1
//Toolbox: SIVP 0.5.3.1-2
//Reference book name : Digital Image Processing
//book author: Rafael C. Gonzalez and Richard E. Woods
clc;
close;
clear;
xdel(winsid())//to close all currently open figure(s).
////////////////// Tonal Correction for the Flat Image ////////////////////////
Color=imread("Ex6_10.tif");
Color=imresize(Color,0.25);
[nr nc]=size(Color);
figure,ShowColorImage(Color,'Gray Image');
title('Original Image','color','blue','fontsize',4);
C=255-Color(:,:,1);
M=255-Color(:,:,2);
Y=255-Color(:,:,3);
///////////////////// Color Balance Correction in Cyan Component //////////////////////
D=0:1/256:1;
H1=1*D^2.5; // Transfer Function (Design from the Gamma Funcetion).
H2=1*D^0.5; // Transfer Function (Design from the Gamma Funcetion).
figure,subplot(211),plot(H1);
xlabel('Intensity');
ylabel('Magnitude');
title('HSI Intensity Transformation Function(Heavy in Cyan)');
subplot(212),plot(H2);
xlabel('Intensity');
ylabel('Magnitude');
title('HSI Intensity Transformation Function (Weak in Cyan)','color','blue','fontsize',4);
C_Modify=[];
for i=1:nr
for j=1:nc
C_Modify1(i,j,1)=H1(uint16(C(i,j,1))+1);
C_Modify2(i,j,1)=H2(uint16(C(i,j,1))+1);
end
end
Balance_Image1(:,:,1)=C_Modify1;
Balance_Image1(:,:,2)=M;
Balance_Image1(:,:,3)=Y;
figure,ShowColorImage(Balance_Image1,'RGB Image');
title('Color Balanced image','color','blue','fontsize',4);
Balance_Image2(:,:,1)=C_Modify2;
Balance_Image2(:,:,2)=M;
Balance_Image2(:,:,3)=Y;
figure,ShowColorImage(Balance_Image2,'RGB Image');
title('Color Balanced image','color','blue','fontsize',4);
///////////////////// Color Balance Correction in Megenta Component //////////////////////
D=0:1/256:1;
H1=1*D^2.5; // Transfer Function (Design from the Gamma Funcetion).
H2=1*D^0.5; // Transfer Function (Design from the Gamma Funcetion).
figure,subplot(211),plot(H1);
xlabel('Intensity');
ylabel('Magnitude');
title('HSI Intensity Transformation Function(Heavy in Megenta)','color','blue','fontsize',4);
subplot(212),plot(H2);
xlabel('Intensity');
ylabel('Magnitude');
title('HSI Intensity Transformation Function (Weak in Megenta)','color','blue','fontsize',4);
for i=1:nr
for j=1:nc
Y_Modify1(i,j,1)=H1(uint16(Y(i,j,1))+1);
Y_Modify2(i,j,1)=H2(uint16(Y(i,j,1))+1);
end
end
Balance_Image1(:,:,1)=255-C;
Balance_Image1(:,:,2)=255-M;
Balance_Image1(:,:,3)=255-Y_Modify1;
figure,ShowColorImage(Balance_Image1,'RGB Image');
title('Color Balanced image','color','blue','fontsize',4);
Balance_Image2(:,:,1)=255-C;
Balance_Image2(:,:,2)=255-M;
Balance_Image2(:,:,3)=255-Y_Modify2;
figure,ShowColorImage(Balance_Image2,'RGB Image');
title('Color Balanced image','color','blue','fontsize',4);
///////////////////// Color Balance Correction in Yellow Component //////////////////////
D=0:1/256:1;
H1=1*D^2.5; // Transfer Function (Design from the Gamma Funcetion).
H2=1*D^0.5; // Transfer Function (Design from the Gamma Funcetion).
figure,subplot(211),plot(H1);
xlabel('Intensity');
ylabel('Magnitude');
title('HSI Intensity Transformation Function(Heavy in Yellow)','color','blue','fontsize',4);
subplot(212),plot(H2);
xlabel('Intensity');
ylabel('Magnitude');
title('HSI Intensity Transformation Function (Weak in Yellow)','color','blue','fontsize',4);
for i=1:nr
for j=1:nc
M_Modify1(i,j,1)=H1(uint16(M(i,j,1))+1);
M_Modify2(i,j,1)=H2(uint16(M(i,j,1))+1);
end
end
Balance_Image1(:,:,1)=255-C;
Balance_Image1(:,:,2)=255-M_Modify1;
Balance_Image1(:,:,3)=255-Y;
figure,ShowColorImage(Balance_Image1,'RGB Image');
title('Color Balanced image','color','blue','fontsize',4);
Balance_Image2(:,:,1)=255-C;
Balance_Image2(:,:,2)=255-M_Modify2;
Balance_Image2(:,:,3)=255-Y;
figure,ShowColorImage(Balance_Image2,'RGB Image');
title('Color Balanced image','color','blue','fontsize',4);
|
d17ee27ff336cd0eaf1f727243a876bd50bc7c54 | 449d555969bfd7befe906877abab098c6e63a0e8 | /530/CH7/EX7.4.b/example_7_4b.sce | 40873abec7bb7e11384aabcd4db6e7332179befa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,453 | sce | example_7_4b.sce | clear;
clc;
// A Textbook on HEAT TRANSFER by S P SUKHATME
// Chapter 7
// Heat Exchangers
// Example 7.4(b)
// Page 302
printf("Example 7.4(b), Page 302 \n \n");
// Using Mean Temperature Difference approach
m_hot = 10 ; // [kg/min]
m_cold = 25 ; // [kg/min]
hh = 1600 ; // [W/m^2 K], Heat transfer coefficient on hot side
hc = 1600 ; // [W/m^2 K], Heat transfer coefficient on cold side
Thi = 70 ; // [C]
Tci = 25 ; // [C]
The = 50 ; // [C]
// Heat Transfer Rate, q
q = m_hot/60*4179*(Thi-The); // [W]
// Heat gained by cold water = heat lost by the hot water
Tce = 25 + q*1/(m_cold/60*4174); // [C]
// Using equation 7.5.13
Tm = ((Thi-Tci)-(The-Tce))/log((Thi-Tci)/(The-Tce)); // [C]
U = 1/(1/hh + 1/hc); // [W/m^2 K]
A = q/(U*Tm); // Area, [m^2]
m_hot = 20 ; // [kg/min]
// Flow rate on hot side i.e. 'hh' is doubled
hh = 1600*2^0.8 ; // [W/m^2 K]
U = 1/(1/hh + 1/hc); // [W/m^2 K]
m_hC_ph = m_hot/60*4179 ; // [W/K]
m_cC_pc = m_cold/60*4174 ; // [W/K]
// Therefore
C = m_hC_ph/m_cC_pc ;
NTU = U*A/m_hC_ph ;
printf("NTU = %f \n",NTU);
// From equation 7.6.8
e = [1 - exp(-(1+C)*NTU)]/(1+C) ;
// Therefore (Thi - The)/(Thi - Tci) = e , we get
The = Thi - e*(Thi - Tci); // [C]
// Equating the heat lost by water to heat gained by cold water , we get
Tce = Tci + [m_hC_ph*(Thi-The)]/m_cC_pc;
printf("Exit temperature of cold and hot stream are %f C and %f C respectively.",Tce,The);
|
a7f5c425fadca0e7030fc2839d954cb00f6dfcd3 | 72ed3a953673247d1012d70ee21960621067598f | /projects/01/Decoder4Way.tst | 8dea140d006494d886d8ca8f6621041097fe1c68 | [] | no_license | arkss/randtotetris | 5e916af300a71de0dd3809ebe1ae80b7f527a8e9 | 5c07bc42542a341dabc055c20a5bda5c7b5c1cfb | refs/heads/master | 2020-05-14T00:31:54.323391 | 2019-06-22T14:56:29 | 2019-06-22T14:56:29 | 181,679,852 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 288 | tst | Decoder4Way.tst | // Modified by Minho Kim (9 Oct 2014)
load Decoder4Way.hdl,
output-file Decoder4Way.out,
compare-to Decoder4Way.cmp,
output-list in%B2.2.2 out%B1.4.1;
set in %B00,
eval,
output;
set in %B01,
eval,
output;
set in %B10,
eval,
output;
set in %B11,
eval,
output;
|
22cb8f7dd7fc42e37418de83747c2112e358bd0f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH9/EX9.6/9_06.sce | ed008023c0611e2def2d71ab6e9ce3e1518ff75c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 635 | sce | 9_06.sce | //Chapter 9, Problem 6
clc;
B=1.4; //flux density
l=12*10^-2; //length
N=80; //no of turns
n=1200/60; //rotation in sec
E1=90; //emf
r=(8*10^-2)/2;
Q90=%pi/2;
//calculating velocity
v=2*%pi*n*r;
//calculating maximum emf
E=2*N*B*v*l*sin(Q90);
//calculating velocity with emf 90V
v=E1/(2*N*B*l*sin(Q90));
//calculating speed of coil
w=v/r;
w1=(w*60)/(2*%pi);
disp("(a)");
printf("Maximum emf induced = %f V",E);
disp("(b)");
printf("Speed of coil in rev/min = %d rev/min",w1);
|
b98e48cbc3f1518c3f0869ff37c0a4d92440ed29 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1844/CH3/EX3.9/3Q9.sce | 345b1c1f7fbb2fff242d89ba1f3584859d488bf6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 142 | sce | 3Q9.sce | clc
e=1/10 // in link
k= sqrt (100*e/1.5)
printf('a)The slope in degrees is = %f\n',k)
n=sqrt(50/e)
printf(' b)Max slope is 1 in %f',n)
|
e8d23bead3415b486f6985ee7cbd2c9951a7fd34 | 98efda43218be3d9e665771c28742517fd4f334f | /Toolbox Test/rc2is/rc2is3.sce | 0de47ff0b0268bdff8ba9be485f5fb3b52072dea | [] | no_license | ankurmallick/Scilab_spt | bded5b3ed7c5618770ef4bb997b5f61aa7732cd9 | e35c986f70147ee773796c839153ed7adbda3941 | refs/heads/master | 2021-01-17T06:48:24.162281 | 2016-12-05T12:54:24 | 2016-12-05T12:54:24 | 43,445,584 | 0 | 2 | null | 2015-12-10T05:15:44 | 2015-09-30T16:47:57 | Scilab | UTF-8 | Scilab | false | false | 203 | sce | rc2is3.sce | //Testing for complex inputs(exception handling)
a=2+1*%i;
rc2is(a);
//Output
//--error 10000
//Input reflection coefficients are not real
//at line 33 of function rc2is called by :
//rc2is(a);
|
cd048d753eac0ee30bbfed73494b791c3d8f0959 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH9/EX9.5/9_5.sce | a9032b2e54f5bca52a4044432eb8d4e905901378 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 110 | sce | 9_5.sce | clear; clc; close;
Gdb = 100;
Ratio_V2_by_V1 = 10^(Gdb/20);
disp(Ratio_V2_by_V1,'Magnitude gain = ');
|
439c60d2f6beb3bdfc0b3fb6c293ece3039ae6fa | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH2/EX2.6/6.sce | 1d4285147470e2f8e75bd2248e11568aa02668b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 6.sce |
//Variable declaration
n=8; //number of atoms
a=5.62*10**-10; //lattice constant(m)
M=72.59; //atomic weight(kg)
Na=6.02*10**26; //avagadro number
//Calculation
rho=n*M/(a**3*Na); //density(kg/m**3)
//Result
printf('density is %0.3f kg/m**3 \n',(rho)) |
af16bb40bfd7f2f331e2beecb5f95ac5badf6ae5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH5/EX5.3/Ex5_3.sce | 330bdb58814b1782f8b8ce8866ce938fce848e62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,644 | sce | Ex5_3.sce | // chapter 5
// example 5.3
// Determine series resistance and safe highest frequency
// page-175
clear;
clc;
// given
I_T=120; // in A (total current)
C_gs1=2200; // in pF (gate to source capacitance of MOSFET 1)
C_gd1=390; // in pF (gate to drain capacitance of MOSFET 1)
L_g1=2; // in nH (stray inductance of MOSFET 1)
C_gs2=2700; // in pF (gate to source capacitance of MOSFET 2)
C_gd2=330; // in pF (gate to drain capacitance of MOSFET 2)
L_g2=2.3; // in nH (stray inductance of MOSFET 2)
// calculate
C_gs1=C_gs1*1E-12; // changing unit from pF to F
C_gd1=C_gd1*1E-12; // changing unit from pF to F
L_g1=L_g1*1E-9; // changing unit from nF to F
C_gs2=C_gs2*1E-12; // changing unit from pF to F
C_gd2=C_gd2*1E-12; // changing unit from pF to F
L_g2=L_g2*1E-9; // changing unit from nF to F
f1=1/(2*%pi*sqrt(L_g1*(C_gs1+C_gd1))); // calculation of oscillating frequency of MOSFET 1
f2=1/(2*%pi*sqrt(L_g2*(C_gs2+C_gd2))); // calculation of oscillating frequency of MOSFET 1
f_h=min(f1,f2)/10; // calculation of safe highest frequency
Rg=1/(2*%pi*(C_gs1+C_gd1)*f_h); // calculation of series resistance in the gate
f_h=f_h*1E-6; // changing unit from Hz to MHz
printf("\nThe oscillating frequency of MOSFET 1 is \t f1=%.2E Hz",f1);
printf("\nThe oscillating frequency of MOSFET 2 is \t f2=%.2E Hz",f2);
printf("\n\n Since the safe highest frequency should be at least 1 decade lower than oscillating frequency, therefore the safe highest frequency is \t %.f MHz",f_h);
printf("\n\nThe series resistance in the gate terminal of both MOSFET is \t Rg=%.2f ohm",Rg);
// Note: The answer for the series resistance varies due to precise calculation |
3a7e0a2273686b8c1fa01667770a13ec07f7b13a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3293/CH5/EX5.8/Ex5_8.sce | 09f3ae417bb8c0ea948c40c86b53c5e9fe882a69 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 535 | sce | Ex5_8.sce | //page 161
//Example 5.8
clc;
clear;
close;
A = [1 2;3 4];
disp(A,'A = ');
d = det(A);
disp(d,'det A = ','Determinant of A is:');
ad = (det(A) * eye(2,2)) / A;
disp(ad,'adj A = ','Adjoint of A is:');
disp('Thus, A is not invertible as a matrix over the ring of integers.');
disp('But, A can be regarded as a matrix over field of rational numbers.');
in = inv(A);
//The A inverse matrix given in book has a wrong entry of 1/2. It should be -1/2.
disp(in,'inv(A) = ','Then, A is invertible and Inverse of A is:');
//end
|
8f92a257227a52453ed436db1b01872c325d54e5 | 623a9dd972dc78dbde5d5b8dc187acd6a1eb5910 | /TP6/simp_comp.sci | b0762c16a0f32ab47b6cceb7edefdf3190675e28 | [] | 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 | 482 | sci | simp_comp.sci | function s = simp_comp(f,a,b,M)
//intervalos equiespaciados
h=(b-a)/M;
sump=0;
sumi=0;
//sumatorias
for (i=1:M-1)
//calculamos el valor de f(xi)
y=f(a+(i*h));
//verificamos si i es par o impar
r=modulo(i,2);
if (r==0) then
//par
sump=sump+y;
else
//impar
sumi=sumi+y;
end
end
s=(h/3)*(f(a)+f(b)+2*(sump)+4*(sumi));
endfunction |
bd1ca17e401f6b5f15c6f64674a53447bd1631aa | 5f48beee3dc825617c83ba20a7c82c544061af65 | /tests/s/23.tst | de217fe17671736b406f321e6c8f554303f436e9 | [] | no_license | grenkin/compiler | bed06cd6dac49c1ca89d2723174210cd3dc8efea | 30634ec46fba10333cf284399f577be7fb8e5b61 | refs/heads/master | 2020-06-20T12:44:17.903582 | 2016-11-27T03:08:20 | 2016-11-27T03:08:20 | 74,863,612 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 9 | tst | 23.tst | int x[1]; |
5c835afc138f32a3be1df5b34ecf17321cb682b3 | cfadc8057fba63a7793bcee7ce8e2e8c3e5dc359 | /solvers/APESolver/Tests/APE_2DPulseAdv_WeakDG_MODIFIED.tst | 8fed15db78efc5751c05307117f6cf168dc06d51 | [
"MIT"
] | permissive | DarkOfTheMoon/nektar | a5132b836f9fb0894ec54c1f373c08df947dd5ca | b36f4214c0907f877fed8dfc08e53bd607eaea24 | refs/heads/master | 2021-01-20T03:59:10.430634 | 2017-04-27T11:50:26 | 2017-04-27T11:50:26 | 89,609,337 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 843 | tst | APE_2DPulseAdv_WeakDG_MODIFIED.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>desc P=10</description>
<executable>APESolver</executable>
<parameters>APE_2DPulseAdv_WeakDG_MODIFIED.xml</parameters>
<files>
<file description="Session File">APE_2DPulseAdv_WeakDG_MODIFIED.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="p" tolerance="1e-4">6.77218</value>
<value variable="u" tolerance="1e-7">0.00160109</value>
<value variable="v" tolerance="1e-7">0.00163104</value>
</metric>
<metric type="Linf" id="2">
<value variable="p" tolerance="1e-4">30.1206</value>
<value variable="u" tolerance="1e-7">0.00609606</value>
<value variable="v" tolerance="1e-7">0.00607659</value>
</metric>
</metrics>
</test>
|
084e32a67fca74d9f84c8a04a834bc1cd0b45f6a | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH9/EX9.13/9_13.sci | 15be5c65061607b497381b2a2f7045fd5a7df2f9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 694 | sci | 9_13.sci | // calculate damping factor, time constant, error and time lag
// calculate damping factor, natural frequency, time constant, error and time lag
clc;
Mp1=20/40;
Mp2=10/40;
Mp3=5/40;
Eta=0.225;
disp(Eta,'damping factor')
Td=1.2;
wd=2*%pi/Td;
wn=wd/[(1-Eta^2)^0.5];
tc=1/wn;
disp(tc,'time constant(s)')
ess=2*Eta/wn;
ess5=5*ess;
disp(ess5,'error for 5mm/s ramp(mm)')
Tlag=2*Eta*tc;
disp(Tlag,'time lag(s)')
Eta1=Eta*(0.5)^0.5;
disp(Eta1,'New damping factor')
Td=1.2;
wn1 = wn*(0.5)^0.5;
disp(wn1,'New natural frequency(rad/s)')
tc1=1/wn;
disp(tc1,'New time constant(s)')
ess51=ess5;
disp(ess51,'new error for 5mm/s ramp(mm)')
Tlag1=Tlag;
disp(Tlag1,'new time lag(s)'); |
fe00ad23084ea36c6e2fe0a36710ca7bb9719a0f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH15/EX15.3/Ex15_3.sce | 61d6e514127e17847fb2b5224d56dcbc9b6bd977 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 476 | sce | Ex15_3.sce | // Iintilization of variables
r=250 // m // radius of the curved road
a_t=0.6 // m/s^2 // tangential acceleration
a=0.75 // m/s^2 // total acceleration attained by the car
// Calculations
a_n=sqrt(a^2-a_t^2) // m/s^2
v=sqrt(a_n*r) // m/s
// Using v=u+a*t
u=0
t=v/a_t // seconds
// Now using v^2-u^2=2*a*s
s=v^2/(2*a_t) // m
// Results
clc
printf('The distance traveled by the car is %f m \n',s)
printf('The time for which the car travels is %f seconds \n',t)
|
feec443a561c46df3d31b3f48a0e228c606fbc4e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2708/CH5/EX5.4/ex_5_4.sce | f257f0872fa829f3be575a5b21bc4ba4c9d78261 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 345 | sce | ex_5_4.sce | //Example 8.2 // Numerical Aperture & acceptance angle
clc;
//given data :
u1=1.62;//refractive index of core
u2=1.52;// refractive index of clad
A=asin(sqrt(u1^2-u2^2));// acceptance angle in radian
NA=sin(A);// numerical aperture
A=A*180/%pi;// to convert in degree
disp(A,"Acceptance angle in degree")
disp(NA,"Numerical Aperture")
|
fcc8221fea6240f797e679138e756af54eb1a497 | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH1/EX1.6/example_6.sce | 9b978ffd43b571219a48d5b12e2f4e069409f550 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 566 | sce | example_6.sce | clc
clear
printf('example 1.6 page number 27 \n\n')
//to find vapor pressre of ethyl alchohal
pa1 = 23.6; //VP of ethyl alchohal at 10 degree C
pa3=760 //VP of ethyl alchohal at 78.3 degree C in mm Hg
pb1 = 9.2 //VP of ethyl water at 10 degree C in mm Hg
pb3=332 //VP of ethyl water at 78.3 degree C in mm Hg
C=(log10(pa1/pa3)/(log10(pb1/pb3)));
pb2=149 //VP of water at 60 degree C in mm Hg
pas=(pb3/pb2);
pa=C*log10(pas);
pa2=pa3/(10^pa);
printf("vapor pressure of ethyl alcholoh at 60 degree C = %f mm Hg",pa2)
|
6a70d60c5d5daf46235464c4a5e5ee9ca05722ff | 5c99f90e816244fbea65c73357432fb54ac25d09 | /Hata.sce | 2e11b4997ab729e2485dc6c37973891695a4b3cb | [] | no_license | varunkamble/story_book | 6301153ce6898a4275f99017facd814ea1df1633 | 0bc1f9d059b9cc718e36ea0b8da4a53dd24812d3 | refs/heads/master | 2020-03-26T05:27:21.794874 | 2018-10-21T17:15:34 | 2018-10-21T17:15:34 | 144,558,147 | 0 | 1 | null | 2018-09-18T13:33:23 | 2018-08-13T09:31:05 | Python | UTF-8 | Scilab | false | false | 1,524 | sce | Hata.sce | clc;
clear all;
hb=input("Enter the height of base station antenna:")
hm=input("Enter the height of mobile station antenna:")
Gt=input("Gain of the transmitting antenna:")
Gr=input("Gain of the receiving antenna:")
dist=input("Enter the distance between transmitting and receiving antenna:")
Amu=24
f1=input("Enter the first frequency value:")
f2=input("Enter the second frequency value:")
f3=input("Enter the third frequency value:")
f4=input("Enter the fourth frequency value:")
f5=input("Enter the fifth frequency value:")
d=[1:1:dist]'
//////OUTDOOR PROPAGATION MODEL HATA MODEL///////
d=[1:1:dist]'
Ch=0.8 + (1.1*log10(f1)-0.7)*hm - 1.56*log10(f1)
Lp1 = 69.55 + 26.16*log10(f1) - 13.82*log10(hb) - Ch + [44.9 - 6.55*log10(hb)]*log10(d)
Ch=0.8 + (1.1*log10(f2)-0.7)*hm - 1.56*log10(f2)
Lp2 = 69.55 + 26.16*log10(f2) - 13.82*log10(hb) - Ch + [44.9 - 6.55*log10(hb)]*log10(d)
Ch=0.8 + (1.1*log10(f3)-0.7)*hm - 1.56*log10(f3)
Lp3 = 69.55 + 26.16*log10(f3) - 13.82*log10(hb) - Ch + [44.9 - 6.55*log10(hb)]*log10(d)
Ch=0.8 + (1.1*log10(f4)-0.7)*hm - 1.56*log10(f4)
Lp4 = 69.55 + 26.16*log10(f4) - 13.82*log10(hb) - Ch + [44.9 - 6.55*log10(hb)]*log10(d)
Ch=0.8 + (1.1*log10(f5)-0.7)*hm - 1.56*log10(f5)
Lp5 = 69.55 + 26.16*log10(f5) - 13.82*log10(hb) - Ch + [44.9 - 6.55*log10(hb)]*log10(d)
figure;
plot(d,[Lp1 Lp2 Lp3 Lp4 Lp5]);
xlabel('x--> D (distance in Km)','fontsize',4);
ylabel('y--> Lp (path loss)','fontsize',4);
title('Hata model','fontsize',7);
hl=legend(["200MHZ","400MHZ","600MHZ","800MHZ","1000MHZ"],4);
|
9aeb5ae24ea1178e636413b26f1ea960f560971c | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpic2escifiles6/Bezier.sci | 7d1993eb56de4d1925abad3898a533958a8197b2 | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 666 | sci | Bezier.sci | // 15.01.01
function Out=Bezier(varargin)
Nargs=length(varargin);
Ptlist=varargin(1);
Ctrlist=varargin(2);
Num=10;
for J=3:Nargs
Tmp=varargin(J);
K=mtlb_findstr(Tmp,'=');
Tmp1=strsplit(Tmp,[K-1,K]);
Tmp2=ascii(Tmp1(1,1));
Lhs=char(Tmp2(1));
if Lhs=="N" then
Num=evstr(Tmp1(3,1));
end;
end;
if length(Num)==1
Num=Num*ones(1:length(Ctrlist))
end;
Out=[];
for ii=1:length(Ctrlist)
Tmp1=[Ptlist(ii),Ptlist(ii+1)];
Tmp2=Ctrlist(ii);
if ii==1 then
St=0
else
St=1
end;
for J=St:Num(ii)
Tmp=Bezierpt(J/Num(ii),Tmp1,Tmp2);
Out=[Out;Tmp];
end;
end;
endfunction;
|
17b054cdae1cf7d741347b866ee25aafd71cd30c | 449d555969bfd7befe906877abab098c6e63a0e8 | /371/CH12/EX12.5/12_5.sci | a1f9ccc12af3eb21b5a8f02136b69836d1ad62d1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 836 | sci | 12_5.sci | //Controllers and Their Optimisation//
//Example 12.5//
G=6;//smaller time constant in ms//
T1=80;//bigger time constant in ms//
Tn=T1;//time constant of the controller in ms//
printf('Time constant of the controller=Tn=%fms',Tn);
V=T1/(2*G);//gain of the control system//
printf('\nGain of the control system=V=%f',V);
Wn=1/(sqrt(2)*G);//Natural frequency of the system in rad/ms//
printf('\nNatural frequency of the system=Wn=%frad/ms',Wn);
Tf=4.7*G;//time taken by the system to achiecve its desired output for firsttime//
printf('\ntime taken by the system to achieve its desired value=Tf=%fms',Tf);
printf('\nMaximum overshoot for a symmetrically optimised system is 4.3 percent');
Tmax=6.24*G;//time at which maximum overload will occur in ms//
printf('\nTime at which maximum overload will occur=Tmax=%fms',Tmax);
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.