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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
21b839fc9ce440d4d55155e8ef59f79fb5f20bb2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH2/EX2.1/ex2_1.sce | 607361c8f8c41045e9ff900bd6cdebe8f4ae7bde | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 760 | sce | ex2_1.sce | //Chapter-2, Example 2.1, Page 89
//=============================================================================
clc;
clear;
//INPUT DATA
N=2000;//no of turns
I=10;//current in A
Rm=25;//mean radius in cm
d=6;//diameter of each turn in cm
//CALCULATIONS
MMF=N*I;//magneto motive force in A
l=2*%pi*(Rm/100);//circumference of coli in m
u=(4*%pi*10^-7);//permeability (U=Ur*U0)
a=(%pi*d*d*10^-4)/4;
reluctance=(l/(a*u));//reluctance in At/Wb
flux=(MMF)/(reluctance);//flux in Wb
fluxdensity=(flux/a);//flux density in Wb/m^2 or tesla
//OUTPUT
mprintf("Thus MMF,flux,flux density are %d A, %g Wb ,%g Wb/m^2 or Tesla respectively ",MMF,flux,fluxdensity);
//=================================END OF PROGRAM==============================
|
ad2b49c781250c80b8bd10aa91241d7de97cecb5 | 0d85aad5237f1842799753cb32481a4e00ca63d1 | /price1.sci | c2df510d3fb8885b535afeff17c91aa8c5495060 | [] | no_license | ghassenjlassi/projectstat | fc951e46f4202c36bc0ce059ce3e7204461daca4 | 4dc3fd3797782f3cfbb2d76ca6656d1c7f77a6a3 | refs/heads/master | 2020-03-14T10:31:09.397372 | 2018-05-02T09:39:11 | 2018-05-02T09:39:11 | 131,568,916 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sci | price1.sci | function b=fact(n)
if n<=1 then //si n=0 ou 1 alors n!=1
b=1
else //si n>1 alors n!=n*(n-1)!
b=n*fact(n-1)
end
endfunction
function max1=f(x)
max1=max(100-x,0)
endfunction
function p=price1(N, Rn, Hn, Bn, s,f,fact)
g=0
q=(Rn-Bn)/(Hn-Bn)
for i =[0,N]
g=g+(fact(N)/(fact(i)*fact(N-i)))*(q^i)*((1-q)^(N-i))*f(s*((1+Hn)^i)*((1+Bn)^(N-i)))
end
p= g/((1+Rn)^N)
endfunction
|
204eae353e971032e0e2b02536d723dc9745b9d6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH7/EX7.5/ex5.sce | e8146ae63215c8abc459c96fd19207a83244c5df | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 484 | sce | ex5.sce | //ques5
//Isentropic Expansion of Steam in a Turbine
clear
clc
//state 1
P1=5//pressure in MPa
T1=450//temperature in C
h1=3317.2//heat of system in kJ/kg from table
s1=6.8210//entropy of system in kJ/kg.K from table
//state 2
P2=1.4//pressure in MPa
s2=6.8210//entropy of system remains same ie s2=s1
h2=2967.4//heat of system in kJ/Kg from table
w=h1-h2;//work output of turbine in kJ/kg
printf('The work output of the turbine per unit mass is = %.1f kJ/kg',w); |
e7fde1479a112e7fa9ef943c4d3d4603031a4144 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1309/CH1/EX1.2/ch1_2.sce | 83cb01171f1b2871a61daa92b0d35b55e6031f27 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 475 | sce | ch1_2.sce | clear;
clc;
printf("\t\t\tchapter1_example2\n\n\n");
// determination of thermal conductivity of aluminium
k_ss=14.4; // thermal conductivity of stainless steel in [W/m.K]
printf("\nThe thermal conductivity of stainless steel is %.1f W/m.K",k_ss);
dt_ss=40; // [K]
dt_al=8.65; // [K]
dz_ss=1; // [cm]
dz_al=3; // [cm]
k_al=k_ss*dt_ss*dz_al/(dt_al*dz_ss);// thermal conductivity of Al in [W/m.K]
printf("\nThe thermal conductivity of aluminium is %d W/m.K",k_al);
|
0032606b34c2e86bd27ae04ceaf006c554f9941a | 8409f47affbce56ae5b00d9f697b52364fdcec7e | /boolean-logic/HalfAdder.tst | f3cc8d1ba2a1b63aad10237ed212fc990e28157a | [] | no_license | oleiade/Bam | 1609eca5f6247c10cef17375704547282537d1e0 | 84fcab3751b5b344afacdd3647e8071616f9f0b6 | refs/heads/master | 2021-01-19T22:33:50.345657 | 2013-10-26T16:05:22 | 2013-10-26T16:05:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 206 | tst | HalfAdder.tst | load HalfAdder.hdl,
output-file HalfAdder.out,
output-list a b sum carry;
set a 0,
set b 0,
eval,
output;
set a 0,
set b 1,
eval,
output;
set a 1,
set b 0,
eval,
output;
set a 1,
set b 1,
eval,
output;
|
e94540875b86ad50e0f1134606af50efa1dff4c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH13/EX13.37/Ex13_37.sce | eba1f6d87dadfd5ce22aa4c22f5bc6d01ee4f91a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sce | Ex13_37.sce | //EX13_37 Pg-21
clc
clear
printf("2''s complement 10100011 is : ")
x=['10100011'];
y=bin2dec(x);//binary to decimal conversion//
z=bitcmp(y,8);//one's complement of the number//
z=z+1;
z2=dec2bin(z)//2's complement of the number//
printf("0%s",z2)
|
e9585456a1c35ec7a934a0f5ed7266e3f1d58562 | 54ec7978b285c41cc02aec8197e1d57dd5dbc31e | /arquivos professor/basicLlevit.sce | ac0ca2a43c5b12d8e39b0949a5e363c8bd5ab451 | [] | no_license | Xx220xX/Projeto-Controle-digital | a6c95ac67e3cc16ea0a659b7df526e08b2fb7716 | 188ca2e55b1c11d2d5736077549406bc30352314 | refs/heads/main | 2023-06-19T22:00:48.607530 | 2021-06-16T00:03:41 | 2021-06-16T00:03:41 | 376,072,300 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,772 | sce | basicLlevit.sce | //Controle de Posição de um sistema de levitação pneumática
clc;
clear;
s = %s;
//Configurações básicas para a simulação
m = 0.1;
C = 0.5;
rho = 1;
r = 0.1;
A = %pi*r^2;
alfa = C*rho*A/2*m;
//Calculando a velocidade do ar para o equilibrio
g = 9.81;
vo = sqrt(g/alfa)
//FT do movimento da bolinha
Gb = syslin('c',(2*alfa*vo)/(s^2));
//Constantes da Ventoinha
k_v = 0.02;
tal = 0.01;
//FT da ventoinha
Gv = syslin('c',k_v/(tal*s+1));
//FT equivalente da malha direta
Gs = Gv * Gb;
[Gs_z Gs_p Gs_k] = tf2zp(Gs);
//Compensador com cancelamento de polos e zeros
Mp = .01;//Sobressinal em %
//Mp=exp(-pi*(zeta/sqrt(1-zeta^2)))
zetamf = abs(log(Mp/100))/((%pi^2)+(log(Mp/100))^2)^(1/2);
T5 = 0.4;//Tempo de acomodação de 5%
//T5 = 3/(wn*zeta)
wnmf = 3/(T5*zetamf);//wn
//Polos malha fechada Smf = -(zeta*wn)+/- i(wn*sqrt(1-zeta^2))
wdmf = (wnmf*sqrt(1-zetamf^2));
sigmamf = zetamf*wnmf;
smf = -sigmamf + wdmf*%i;//Raizes de Malha Fechada
//Determinando os polos do compensador
C1 = 1;
for i=1:length(Gs_z)
C1 = C1*(s-Gs_z(i));
end
C1=1/C1;
//Determinando os zeros do compensador
for i=1:length(Gs_p)
C1 = C1*(s-Gs_p(i));
end
//Determinando Kc
ppid = -2*sigmamf;
kc = -(smf*(smf-ppid))/Gs_k;
//Controlador PID em S
Gc = (kc/(s*(s-ppid)))*C1;
//FT equivalente do sistema realimentado
Gt = Gc*Gv*Gb/(1+Gc*Gv*Gb);//O mesmo que Gt = feedback(Gd, 1)
//Simulação
dT = 1e-1;//Tempo de amostragem da simulação
t = 0:dT:60;//tempo de simulação
//Entrada em degrau (amplitude 1) + onda quadrada com período de 20 [s]
//(Amplitude .25)
Tsq = 20;//período da onda quadrada
u = 1*ones(1,length(t)) - 0.25*squarewave((2*%pi*t)/Tsq);
y=csim(u,t,Gt);
plot(t,u,'-g',t,y,'-r');
title('Controle de posição vertical')
xlabel('Tempo [s]')
ylabel('Altura [m]')
|
7e571dc6558645e8e9c89aebb0041c3ada188b18 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH25/EX25.02/25_02.sce | 40de96e7992eb6fe1b4eea9daecf48db76bda77d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 658 | sce | 25_02.sce | //Problem 25.02: Determine expressions for the impedance of the following admittances: (a)0.004/_30°S (b) (0.001-i0.002)S (c)(0.05 + i0.08)S
//initializing the variables:
Y2 = 0.001 - %i*0.002; // in S
Y3 = 0.05 + %i*0.08; // in S
r1 = 0.004; // in S
theta1 = 30; // in degrees
//calculation:
//impedance, Z
Z2 = 1/Y2
Z3 = 1/Y3
Y1 = r1*cos(theta1*%pi/180) + %i*r1*sin(theta1*%pi/180)
Z1 = 1/Y1
printf("\n\n Result \n\n")
printf("\n (a)Impedance,Z is (%.1f + (%.0f)i) ohm ",real(Z1), imag(Z1))
printf("\n (b)Impedance,Z is (%.0f + (%.0f)i) ohm ",real(Z2), imag(Z2))
printf("\n (c)Impedance,Z is (%.2f + (%.2f)i) ohm ",real(Z3), imag(Z3)) |
3b1ba9d83bacc1df6e8c68a7dd94435a842b3dd7 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/m2sci/%j2sci.sci | 8fdcf1b0bca672afaa723532abb631a71c3271db | [
"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 | 294 | sci | %j2sci.sci | function [stk,txt,top]=%j2sci()
//
//!
// Copyright INRIA
s2=stk(top);s1=stk(top-1);
txt=[]
[s1,te1]=s1(1:2);
[s2,te2]=s2(1:2);
//
if te2=='2' then s2='('+s2+')',end
if te1=='2' then s1='('+s1+')',end
if part(s2,1)=='-' then s2='('+s2+')',end
stk=list(s1+'.^'+s2,'1','?','?','?')
top=top-1
|
f55b11f761b7c00f9a875c5dfacdb8993d04b82e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1073/CH5/EX5.17/5_17.sce | fa3b4376635044a10d4d3ff996aa0c6b74dd03c1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,166 | sce | 5_17.sce | clc;
clear;
//Example 5.17
mb_dot=1.25 //Benzene in [kg/s]
Cpb=1.9*10^3 //For benzene in [J/kg.K]
Cpw=4.187*10^3 //in [J/kg.K]
T1=350 //[K]
T2=300 //[K]
Q=mb_dot*Cpb*(T1-T2) //[W]
t1=290 //[K]
t2=320 //[K]
dT1=T1-t2 //[K]
dT2=T2-t1 //[K]
dTlm=(dT1-dT2)/log(dT1/dT2) //[K]
mw_dot=Q/(Cpw*(t2-t1)) //Minimum flow rate of water in [kg/s]
hi=850 //[W/sq m.K]
ho=1700 //[W/sq m.K]
Do=0.025 //[m]
Di=0.022 //[m]
x=(Do-Di) /2 //Thickness in [m]
hio=hi*(Di/Do) //[W/sq m.K]
Dw=(Do-Di)/log(Do/Di) //[m]
k=45 //[W/m.K]
Uo=1/((1/ho)+(1/hio)+(x/k)*(Do/Dw)) //[W/sq m.K]
Ao=Q/(Uo*dTlm) //[sq m]
L=1 //Length in [m]
area=%pi*Do*L // Outside surface area of tube per i m length
Tl=Ao/area //Total length of tubing required in [m]
printf("\nTotal length of tubing required=%d m",round(Tl));
|
7bdef219edbdc6ba994386c3a17c9f2b8fd18509 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3574/CH8/EX8.4/EX8_4.sce | 30001d1e57856c2f28c9367e8fa52756671ccac4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,646 | sce | EX8_4.sce | // Example 8.4
// Determine (a) Developed torque if the field current is adjusted so that the
// excitation voltage is equal to two times the applied stator voltage, and the
// power angle is -18 degrees (b) Developed torque in percent of rated torque,
// if the load is increased until maximum reluctance torque occurs.
// Page No. 328
clc;
clear;
close;
// Given data
Vt1ph=2300/sqrt(3); // Applied voltage/phase
Ef1ph=2300/sqrt(3); // Excitation voltage/phase
Xd=36.66; // Direct axis reactance/phase
delta=-18; // Power angle
Xq=23.33; // Quadrature-axis reactance/phase
n=900; // Speed of motor
deltanew=-45;
RatTor=200; // Rated torque of motor
// (a) Developed torque
Pmag1ph=-((Vt1ph*2*Ef1ph)/Xd)*sind(delta); // Power
Prel1ph=-Vt1ph^2*( (Xd-Xq) / (2*Xd*Xq)) *sind(2*delta); // Reluctance power
Psal3ph=3*(Pmag1ph+Prel1ph); // Salient power of motor
Psal3phHP=Psal3ph/746;
T=(5252*Psal3phHP)/n; // Developed torque
// (b) Developed torque in percent of rated torque
// The reluctance torque has its maximum value at delta= -45 degrees
Pmag1phnew=-((Vt1ph*2*Ef1ph)/Xd)*sind(deltanew); // Power
Prel1phnew=-Vt1ph^2*( (Xd-Xq) / (2*Xd*Xq)) *sind(2*deltanew); // Reluctance power
Psal3phnew=3*(Pmag1phnew+Prel1phnew); // Salient power of motor
Psal3phHPnew=Psal3phnew/746;
PerRatTorq=Psal3phHPnew*100/RatTor;
// Display result on command window
printf("\n Developed torque = %0.0f lb-ft ",T);
printf("\n Developed torque in percent of rated torque = %0.0f Percent ",PerRatTorq);
|
8849f38298617b96128ae07ae8404bdb4b23c142 | dd081178a01e5263b083753afad51a784e175786 | /src/Presentation Files/scripts/ASSR_test.sce | 983b9b4d6a228c8181ab7b5c2fb6566f583771b9 | [
"MIT"
] | permissive | CognitiveNeuroLab/ASSR | 1cd096e49dee171d3a17ea69f0f5096f66b1e39c | 52f4b8903dfad22f83b0235cba9e13d280d52c88 | refs/heads/main | 2023-07-11T00:26:53.158049 | 2021-08-09T18:03:22 | 2021-08-09T18:03:22 | 394,374,527 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,326 | sce | ASSR_test.sce | scenario = "tone_oddball_450SOA";
no_logfile = false;
scenario_type = trials;
active_buttons = 1;
button_codes = 255;
default_background_color = 0, 0, 0;
default_text_color = 255, 0, 255;
default_font_size = 18;
write_codes = true;
pulse_width = 10;
pcl_file = "tone_oddball_450SOA.pcl";
begin;
# port codes:
# 3 = 100 ms as a standard.
# 5 = 180 ms as a deviant.
#Load the auditory stimuli:
sound { wavefile { filename = "1000Hz_100ms.wav"; preload = true; }; } standard_tone;
sound { wavefile { filename = "1000Hz_180ms.wav"; preload = true; }; } deviant_tone;
picture {
} default;
picture {
text {
caption = "End of Block";
font_size = 30;
text_align = align_center;
font_color = 255, 0, 255;
} end_block_txt;
x = 0; y = 0;
} end_block_pic;
trial {
trial_duration = 2000;
stimulus_event {
picture default;
code = "450 ISI";
port_code = 45;
time = 0;
};
} nothing_trial;
trial {
trial_duration = 350;
stimulus_event {
picture default;
time = 0;
}event_isi;
} isi_trial;
trial {
stimulus_event {
sound standard_tone;
time = 0;
code = "standard";
port_code = 3;
} event_standard;
}standard_trial;
trial {
stimulus_event {
sound deviant_tone;
time = 0;
code = "deviant";
port_code = 5;
} event_deviant;
}deviant_trial;
trial {
trial_duration = forever;
trial_type = first_response;
terminator_button = 1;
stimulus_event {
picture end_block_pic;
} event_end_block;
} end_block_trial;
#Randomly generate ISI order
#Use 8ms under ISI preferred to make sure screen refresh rate (60Hz) is always within this time and a delay in trial presentation doesn't happen - same for visual stimulus also
array <int> ISIs_1[num_stim] = { 4000, 6000, 8000, 10000, 5000, 7000, 9000, 11000, 12000 };
#array <int> ISIs_1[num_stim] = { 3995, 5995, 7995, 9995, 4995, 6995, 8995, 10995, 11995 };
#array <int> ISIs_2[num_stim] = { 4992, 6992, 8992, 10992 };
array <int> ISI_order[num_trials];
loop int i = 1 until i > num_trials begin
ISIs_1.shuffle();
loop int j = 1 until j > num_stim begin
ISI_order[i+j-1] = ISIs_1[j];
j = j + 1;
end;
# ISIs_2.shuffle();
# loop int j = 1 until j > num_stim begin
# ISI_order[i+j+3] = ISIs_2[j];
# j = j + 1;
# end;
# i = i + num_stim*2;
i = i + num_stim;
end;
|
f5e6149d76f1f23b8469d18ee95b7c0b2efbe513 | 717ddeb7e700373742c617a95e25a2376565112c | /40/CH8/EX8.8/Exa_8_8.sce | 7fad7f114998d44249d66b3d6c7a5d57acccc7bf | [] | 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 | 194 | sce | Exa_8_8.sce | //Relating DFT and DTFT
xn=[1 2 1 0];
XDFT=dft(xn,-1);
//for F=k/4,k=0,1,2,3
for k=1:4
XF(k)=1+2*%e^(-%i*%pi*(k-1)/2)+%e^(-%i*%pi*(k-1));
end
XF,XDFT
disp(XF,'The DFT of x[n] is');
|
f6bf5f3f689e8365f506d96d71dd4f08cfe6a6b0 | c49cfb0568cc47def2bab58998cf7a2745deeb75 | /lw1.sce | a077fce19eb52e4cefbff831be59a99d209d3707 | [] | no_license | mirgayazov/Computational-mathematics | 7be950e9c54231943912aa8cc0eba9484b8613ee | 97eb92557308d51709101ba1922ed2bb39a0e08f | refs/heads/master | 2023-05-31T18:16:04.774709 | 2021-07-08T09:18:58 | 2021-07-08T09:18:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 608 | sce | lw1.sce | clc
x_=0:0.01:2
function y = f(x)
y=0.8*x^3-2*x^2+x-2
endfunction
format('v',7)
function [x1, x2, fx1, fx2, fser] = s(a,b,f)
x1=(a+b)/2-0.01
x2=(a+b)/2+0.01
fx1=f(x1)
fx2=f(x2)
fser = f((a+b)/2)
disp((b-a)/2)
disp((a+b)/2)
if fx1 <= fx2 then
disp('fx2 больше либо равно')
end
if fx1 > fx2 then
disp('fx1 больше')
end
endfunction
plot(x_, f, 'black')
function y=gg(x)
y=0.8*x^3-2*x^2+x-2;
endfunction
function [f,g,r]=z(x,r)
f=gg(x)
g=numderivative(gg,x)
endfunction
x0=1.5;
format('v',20)
[fmin,xmin]=optim(z,x0)
disp([fmin,xmin])
|
77834c9199fd29e21afbc93c565b756d3baabdc1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /50/CH4/EX4.37/ex_4_37.sce | 067c73c448dca1bd9d13d16fa5f6683279f77bd6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 920 | sce | ex_4_37.sce | // example 4.37
// method of least squares to fit the data to the curve P(x)=a*%e^(-3*t)+b*%e^(-2*t);
t=[.1 .2 .3 .4];
f=[.76 .58 .44 .35];
// I(c0,c1)= summation of (f(x)-a*%e^(-3*t)+b*%e^(-2*t))
// hence on parcially derivating the summation,
n=length(t);m=length(f);
if m<>n then
error('linreg - Vectors t and f are not of the same length.');
abort;
end;
s1=0; // s1= summation of f(i)*%e^(-3*t(i));
s2=0; // s2= summation of f(i)*%e^(-2*t(i));
for i=1:n
s1=s1+f(i)*%e^(-3*t(i));
s2=s2+f(i)*%e^(-2*t(i));
end
a=det([s1 sum(%e^(-5*t)); s2 sum(%e^(-4*t))])/det([sum(%e^(-6*t)) sum(%e^(-5*t)); sum(%e^(-5*t)) sum(%e^(-4*t))])
b=det([sum(%e^(-6*t)) s1; sum(%e^(-5*t)) s2])/det([sum(%e^(-6*t)) sum(%e^(-5*t)); sum(%e^(-5*t)) sum(%e^(-4*t))])
// hence considering the polinomial P(t)=.06853*%e^(-3*t)+0.3058*%e^(-2*t) |
da466c665ee2a538bbc8ef71f11c52aa50f00679 | 3cbdc2f272df05cfe8c6636d4504e9e3d2e4fe3f | /SciLab/dynamic-maps.sce | cec59199e764a1f9e8060ba1947122a76131c5cc | [] | no_license | bozhink/Code-Chunks | 74355eb4c0d423c2f6484226e564030dff798678 | 860b7b8f53089ed96fd0ebead2e3eec16fa377cb | refs/heads/master | 2020-12-24T06:19:04.343239 | 2019-11-13T14:09:15 | 2019-11-13T14:09:15 | 42,819,484 | 0 | 1 | null | 2019-11-13T14:09:16 | 2015-09-20T16:09:09 | HTML | UTF-8 | Scilab | false | false | 234 | sce | dynamic-maps.sce |
function z=logistic(x,mu)
z=mu*x*(1-x);
endfunction
x0=-0.00001;
m=3;
N=35;
X=zeros(1,N); Y=X;
X(1)=x0;
Y(1)=logistic(x0,m);
for i=2:N
X(i)=Y(i-1);
Y(i)=logistic(X(i),m);
end
clf();plot2d2(X,Y,1,"111","step function");
|
bf18d3850bb5abe0d39f2382853b1f9e77b17258 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH1/EX1.25/ch1_ex_25.sce | e1c250c68786f6e04dd40ef509643bcd1a1d4037 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 644 | sce | ch1_ex_25.sce | //CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
//Example 25
disp("CHAPTER 1");
disp("EXAMPLE 25");
//SOLUTION
//(1)I1+(0)I2+(0)I3=5.............eq (1)
//(-20)I1+(50)I2+(-20)I3=0........eq (2)
//(0)I1+(1)I2+(-1)I3=5............eq (3)
//solving the equations by matrix mehod
A=[1 0 0;-20 50 -20;0 1 -1];
b=[5;0;5];
x=inv(A)*b;
I1=x(1,:); //to access the 1st element of 3X1 matrix
I2=x(2,:); //to access the 2nd element of 3X1 matrix
I3=x(3,:); //to access the 3rd element of 3X1 matrix
I=I2;
disp(sprintf("By Mesh analysis, the value of I is %d A",I));
//END
|
71d3f34d0896398a28bd9ba6e8e2966f90a95201 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3647/CH12/EX12.2/ex12_2.sce | 40f5897eaecb1660d5fe6904559bb2e59ffea468 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex12_2.sce | //Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
p=1.23//ft^2
t=0.197//ft^2
u=1.595//ft^2
g=13.56//ft^2
w=9.2//in
m=0.97//in
//CALCULATIONS
H=(g-1)*w/12//ft^2
Q=m*u*sqrt(H)//ft^3
S=Q*60*62.4/10//gallons/min
//RESULTS
printf('the head difference in feet of water=% f gallons/min',S)
|
d479e37c14e3162899764fb227fda228f14b55f2 | 3953ee8faa83677c4470242adc45315acd353eff | /examples/heli/heli.tst | 59ce9f5bc713e8b0d7a9f20439f2ffb3fa77ae79 | [
"BSD-2-Clause"
] | permissive | zutshi/S3CAMR | 83be6ba820207273e6f4b81c55d737b48b097e2a | e7a354137729fcc1f87e647efc8d91e5cd40c83d | refs/heads/master | 2021-05-04T11:52:09.707263 | 2019-06-25T00:37:11 | 2019-06-25T00:37:11 | 51,499,986 | 4 | 0 | null | 2016-03-29T22:01:38 | 2016-02-11T07:22:38 | Python | UTF-8 | Scilab | false | false | 898 | tst | heli.tst | inf = float('inf')
plant_pvt_init_data = None
# 28 state vars + absolute time
nd = 28 + 1
# x_i \in [0, 0.1] if i = {1..8}
# \in [0, 0] else
initial_set = [[0.]*nd,
[0.1]*8 + [0]*21]
# generic set
error_set = [[-inf]*nd, [inf]*nd]
# -0.1 <= x5 <= 0.25 /\ 7 <= t <= 9
error_set[0][5], error_set[1][5] = -0.1, 0.25
error_set[0][28], error_set[1][28] = 7, 9
#error_set[0][28], error_set[1][28] = 7.231, 8.853
grid_eps = [2.1]*nd
grid_eps[-1] = 0.01
delta_t = 5
num_samples = 10
T = 10.0
#T = 30.0
MAX_ITER = 2
plant_description = 'python'
plant_path = 'heli.py'
#############################################
initial_controller_integer_state = []
initial_controller_float_state = []
num_control_inputs = 0
min_smt_sample_dist = 0
ci = [[], []]
pi = [[],[]]
controller_path = None
controller_path_dir_path = None
initial_discrete_state = []
initial_private_state = []
|
50b8494caca9ec9a0ad608b0889eb217ca427200 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1775/CH7/EX7.2/Chapter7_Example2.sce | 2bb671d49584928ef5d51c2909f58a94c58109b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,551 | sce | Chapter7_Example2.sce | //Chapter-7, Illustration 2, Page 346
//Title: Air Conditioning
//=============================================================================
clc
clear
//INPUT DATA
S=60;//No. of staff
DBTo=30;//Out door Dry bulb temperature in oC
RHo=0.7;//Re-Heat factor at out-door
a=0.4;//amount of air circulated in (m^3)/min/person
DBTi=20;//In door Dry bulb temperature in oC
RHi=0.6;//Re-Heat factor at indoor
Td=25;//Heating coil surface temperature in oC
ha=82.5;//Enthalpy at point a from Psychrometric chart shown in Page 347 in kJ/kg
hb=34.5;//Enthalpy at point b from Psychrometric chart shown in Page 347 in kJ/kg
hc=42.5;//Enthalpy at point c from Psychrometric chart shown in Page 347 in kJ/kg
Wa=0.020;//Specific humidity at point a from Psychrometric chart shown in Page 347 in kg/kg dry air
Wb=0.009;//Specific humidity at point b from Psychrometric chart shown in Page 347 in kg/kg dry air
Tb=12;//Temperature at point b in oC
na=0.89;//Specific Volume from Psychrometric chart shown in page 346 in (m^3)/kg
//CALCULATIONS
ma=(a*S)/(na*60);//mass of air circulated per second in kg/s
Hc=(ma*(ha-hb))/3.5;//Heating capacity of cooling coil in tonnes
Hh=ma*(hc-hb);//Heating capacity of heating coil in kW
W=(ma*3600)*(Wa-Wb);//Amount of water vapour removed per hour in kg/hr
BPF=(Td-DBTi)/(Td-Tb);//By-Pass factor
//OUTPUT
mprintf('Capacity of cooling coil is %3.2f tonnes \n Capacity of heating coil is %3.1f kW \n Amount of water vapour removed per hour is %3.2f kg/hr \n Bypass factor is %3.3f',Hc,Hh,W,BPF)
|
88b9a00a5c648c72dea18c8dd9c9af8946017215 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH5/EX5.15/Ex5_15.sce | ccb33a8864552b6f4166050fcdf172fd5a11c080 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 286 | sce | Ex5_15.sce |
R=.5+40+15//total resistance
L=1//total inductance
T=L/R
V=12//emf of battery
I=V/R//final steady current in the circuit
i=.04//current at time t after closing the circuit
t=-T*log(1-i/I)
mprintf("The relay will begin to operate %f sec after the relay circuit is closed\n",t)
|
3fc0364255e55a680298b0c46ab415795b6c8ddd | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /MienTommy's Widow FFA Training HS ONLY.sce | f39fe953102a8f039f422119d92c270e9ffa6bc1 | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 178,181 | sce | MienTommy's Widow FFA Training HS ONLY.sce | Name=MienTommy's Widow FFA Training HS ONLY
PlayerCharacters=Windowmaker
BotCharacters=Random Bot Watcher.rot;Shinji Bot.bot;McCoy Bot.bot;Rocket Flyer Bot.bot;Sergeant Bot.bot;Racer Bot.bot;Random Bot Watcher No Flyer.rot;Windowbot.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Windowmaker
AddedBots=Random Bot Watcher.rot;Shinji Bot.bot;McCoy Bot.bot;Rocket Flyer Bot.bot;Sergeant Bot.bot;Racer Bot.bot;Windowbot.bot;Windowbot.bot;Windowbot.bot
PlayerMaxLives=0
BotMaxLives=0;0;0;0;0;0;0;0;0
PlayerTeam=1
BotTeams=2;2;2;2;2;2;2;2;2
MapName=ascendedstrafesmini.map
MapScale=10.0
BlockProjectilePredictors=false
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Overwatch, OW
WeaponHeroTag=Widowmaker
DifficultyTag=3
AuthorsTag=MienTommy, KovaaK
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Kill everything! Knockback abilities are disabled on pharah and soldier so you dont have to worry about getting booped every single second.
GameVersion=1.0.7.2
ScorePerDistance=0.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
[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=-100.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Ignore Spread
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=90.0
MinTolerableSpread=90.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=1.0
[Aim Profile]
Name=Low Spread
MinReactionTime=0.15
MaxReactionTime=0.2
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=1.0
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=0.1
MinTolerableSpread=0.1
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=McCoy Bot
DodgeProfileNames=Mimic;Circle Strafe;Short Strafes Crouch Spam;Long Strafes Crouch Spam;Short Strafes
DodgeProfileWeights=3.0;1.0;1.5;1.5;3.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
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=true
CharacterProfile=McCoy
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=Rocket Flyer Bot
DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping
DodgeProfileWeights=2.0;1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Rocket Flyer
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=Sergeant Bot
DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;Mimic;Circle Strafe;Short Strafes Close;Short Strafes
DodgeProfileWeights=3.0;2.0;1.0;1.0;3.0;3.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
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=true
CharacterProfile=Sergeant 87
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=Shinji Bot
DodgeProfileNames=Short Strafes Close;Short Strafes Far;Short Strafes Jumping Far;Very Short Strafes + Jump
DodgeProfileWeights=1.0;1.0;3.0;3.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=true
CharacterProfile=Shinji
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=Racer Bot
DodgeProfileNames=Short Strafes Crouch Spam;Long Strafes Crouch Spam
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=1.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Ignore Spread;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Racer
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=Windowbot
DodgeProfileNames=Long Strafes Crouch Spam;Short Strafes Crouch Spam
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Low Spread;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Windowbot
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Rotation Profile]
Name=Random Bot Watcher
ProfileNames=McCoy Bot;Rocket Flyer Bot;Sergeant Bot;Shinji Bot;Racer Bot
ProfileWeights=1.0;1.0;1.0;1.0;1.0
Randomized=true
[Bot Rotation Profile]
Name=Random Bot Watcher No Flyer
ProfileNames=McCoy Bot;Sergeant Bot;Shinji Bot;Racer Bot
ProfileWeights=1.0;1.0;1.0;1.0
Randomized=true
[Character Profile]
Name=Windowmaker
MaxHealth=200.0
WeaponProfileNames=Spider Rifle;Spider Rifle Laser;pistol;Spider Rifle One Hit;AK-47;M4A4;Machine Pistols;SCAR
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=true
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=488.888885
MaxCrouchSpeed=270.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.16
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.729 Y=0.537 Z=0.839
TeamBodyColor=X=0.000 Y=0.000 Z=0.774
TeamHeadColor=X=0.729 Y=0.537 Z=0.839
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=124.444443
MainBBRadius=20.0
MainBBHasHead=true
MainBBHeadRadius=12.5
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=124.444443
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;Melee.abilmelee
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=McCoy
MaxHealth=200.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=true
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=488.888885
MaxCrouchSpeed=270.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.16
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.778 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=0.265 Z=0.000
TeamBodyColor=X=0.000 Y=0.000 Z=0.787
TeamHeadColor=X=1.000 Y=0.265 Z=0.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=125.0
MainBBRadius=20.0
MainBBHasHead=true
MainBBHeadRadius=12.5
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=125.0
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Rush.abilmov;Stun Gren.abilwep;;Melee.abilmelee
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Rocket Flyer
MaxHealth=200.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=true
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=488.888885
MaxCrouchSpeed=270.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.16
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=0.000 Y=0.000 Z=0.787
TeamBodyColor=X=0.000 Y=0.000 Z=0.784
TeamHeadColor=X=0.000 Y=0.000 Z=0.787
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=111.111115
MainBBRadius=20.0
MainBBHasHead=true
MainBBHeadRadius=12.5
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=111.111115
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=2.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=true
JetpackThrust=1600.0
JetpackMaxZVelocity=270.0
JetpackAirControlWithThrust=0.16
AbilityProfileNames=Gravity Boost.abilmov;;;Melee.abilmelee
HideWeapon=false
AerialFriction=0.3
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Sergeant 87
MaxHealth=200.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=true
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=488.888885
MaxCrouchSpeed=270.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.16
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.149 Y=0.542 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=0.771
TeamHeadColor=X=0.149 Y=0.542 Z=1.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=128.888885
MainBBRadius=20.0
MainBBHasHead=true
MainBBHeadRadius=12.5
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=128.888885
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Run.abilsprint;;;Melee.abilmelee
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Shinji
MaxHealth=200.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=true
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=533.333313
MaxCrouchSpeed=270.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.16
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.163 Y=0.167 Z=0.166
TeamBodyColor=X=0.000 Y=0.000 Z=0.771
TeamHeadColor=X=0.163 Y=0.167 Z=0.166
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=1
AirJumpVelocity=450.0
MainBBType=Cylindrical
MainBBHeight=101.0
MainBBRadius=20.0
MainBBHasHead=true
MainBBHeadRadius=12.5
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=101.0
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Dash.abilmov;;;Melee.abilmelee
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Racer
MaxHealth=150.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=true
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=533.333313
MaxCrouchSpeed=270.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=270.0
Gravity=1.0
AirControl=0.16
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.691 Y=0.514 Z=0.294
TeamBodyColor=X=0.000 Y=0.000 Z=0.774
TeamHeadColor=X=0.691 Y=0.514 Z=0.294
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=1600.0
MainBBType=Cylindrical
MainBBHeight=105.0
MainBBRadius=20.0
MainBBHasHead=true
MainBBHeadRadius=12.5
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=105.0
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;Unwind.abilrecall;Blink.abilmov;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Windowbot
MaxHealth=200.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=30.0
CrouchHeightModifier=0.69
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=true
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=488.888885
MaxCrouchSpeed=270.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=100.0
BrakingFrictionFactor=0.0
JumpVelocity=488.888885
Gravity=1.877778
AirControl=0.16
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.729 Y=0.537 Z=0.839
TeamBodyColor=X=0.000 Y=0.000 Z=0.774
TeamHeadColor=X=0.729 Y=0.537 Z=0.839
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=124.444443
MainBBRadius=20.0
MainBBHasHead=true
MainBBHeadRadius=12.5
MainBBHeadOffset=-12.5
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=124.444443
ProjBBRadius=20.0
ProjBBHasHead=true
ProjBBHeadRadius=12.5
ProjBBHeadOffset=-12.5
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Walk.abilsprint;;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=Mimic
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Mimic
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Circle Strafe
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Oppose
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes Crouch Spam
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.15
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.6
MaxCrouchTime=1.0
MinJumpTime=0.6
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Long Strafes Crouch Spam
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.15
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.6
MaxCrouchTime=1.0
MinJumpTime=0.6
MaxJumpTime=1.0
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Long Strafes Jumping
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
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.65
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes Jumping
MaxTargetDistance=1245.901611
MinTargetDistance=373.770477
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
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.65
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.5
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes Close
MaxTargetDistance=500.0
MinTargetDistance=100.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
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.5
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.1
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes Far
MaxTargetDistance=5000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
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.5
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.1
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Short Strafes Jumping Far
MaxTargetDistance=5000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
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.65
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.5
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Very Short Strafes + Jump
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.1
MaxLRTimeChange=0.3
MinFBTimeChange=0.1
MaxFBTimeChange=0.3
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.6
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=Spider Rifle
Type=Hitscan
ShotsPerClick=1
DamagePerShot=13.0
KnockbackFactor=0.1
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=0.8
DamageFalloffStartDistance=2500.0
DamageFalloffStopDistance=4000.0
DamageAtMaxRange=6.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.379403
ADSMoveFactor=0.35
ADSStartDelay=0.333333
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=true
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=Spider Bullet
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=51.0
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=2.0,5.5,0.0,3.0
SpreadSCA=2.0,5.5,0.0,3.0
SpreadMSA=2.0,5.5,0.0,3.0
SpreadMCA=2.0,5.5,0.0,3.0
SpreadSSH=2.0,5.5,0.0,3.0
SpreadSCH=2.0,5.5,0.0,3.0
SpreadMSH=2.0,5.5,0.0,3.0
SpreadMCH=2.0,5.5,0.0,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.01
TimeToRecoilReset=0.45
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=1.5
AADeadZone=0.0
AAFOV=75.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=true
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Spider Rifle Laser
Type=Hitscan
ShotsPerClick=1
DamagePerShot=13.0
KnockbackFactor=0.1
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=0.8
DamageFalloffStartDistance=2500.0
DamageFalloffStopDistance=4000.0
DamageAtMaxRange=6.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.379403
ADSMoveFactor=0.35
ADSStartDelay=0.333333
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=true
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=Spider Bullet Laser
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=51.0
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=0.0,0.1,0.0,0.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=0.0,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.01
TimeToRecoilReset=0.45
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=1.5
AADeadZone=0.0
AAFOV=75.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=true
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=pistol
Type=Hitscan
ShotsPerClick=1
DamagePerShot=25.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=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=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
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.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=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
[Weapon Profile]
Name=Spider Rifle One Hit
Type=Hitscan
ShotsPerClick=1
DamagePerShot=13.0
KnockbackFactor=0.1
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=0.8
DamageFalloffStartDistance=2500.0
DamageFalloffStopDistance=4000.0
DamageAtMaxRange=6.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.379403
ADSMoveFactor=0.35
ADSStartDelay=0.333333
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=true
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=Spider Bullet One Hit
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=51.0
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=2.0,5.5,0.0,3.0
SpreadSCA=2.0,5.5,0.0,3.0
SpreadMSA=2.0,5.5,0.0,3.0
SpreadMCA=2.0,5.5,0.0,3.0
SpreadSSH=2.0,5.5,0.0,3.0
SpreadSCH=2.0,5.5,0.0,3.0
SpreadMSH=2.0,5.5,0.0,3.0
SpreadMCH=2.0,5.5,0.0,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.01
TimeToRecoilReset=0.1
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=1.5
AADeadZone=0.0
AAFOV=75.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=true
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=AK-47
Type=Hitscan
ShotsPerClick=1
DamagePerShot=36.0
KnockbackFactor=0.2
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=4000.0
DamageFalloffStopDistance=7500.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.02
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.2
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=390.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=4.0,15.0,-9.0,2.5
SpreadSCA=4.0,15.0,-9.0,2.5
SpreadMSA=4.0,15.0,-9.0,2.5
SpreadMCA=4.0,15.0,-9.0,2.5
SpreadSSH=2.0,27.0,-9.0,1.5
SpreadSCH=2.0,27.0,-9.0,0.0
SpreadMSH=100.0,1000.0,5.0,20.0
SpreadMCH=4.0,15.0,-9.0,1.8
MaxRecoilUp=0.3
MinRecoilUp=0.3
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.3
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.1
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=10.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.45
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.16
PSRResetDegreesPerSec=35.0
PSR0=0.5,0.0
PSR1=1.2,-0.1
PSR2=1.7,0.2
PSR3=1.7,0.2
PSR4=1.7,-0.85
PSR5=1.3,-0.45
PSR6=1.3,-0.75
PSR7=0.9,0.75
PSR8=-0.4,2.55
PSR9=0.75,0.95
PSR10=0.75,0.4
PSR11=-0.6,0.4
PSR12=0.35,1.0
PSR13=0.4,0.25
PSR14=-0.9,-1.5
PSR15=0.4,-1.0
PSR16=0.5,-1.3
PSR17=0.1,-1.6
PSR18=-0.7,-1.25
PSR19=0.2,-0.5
PSR20=0.2,0.1
PSR21=0.0,0.5
PSR22=0.3,0.1
PSR23=0.2,0.5
PSR24=0.5,-1.0
PSR25=-0.1,1.2
PSR26=-0.3,1.1
PSR27=-1.2,2.0
PSR28=0.1,1.4
PSR29=-0.1,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=M4A4
Type=Hitscan
ShotsPerClick=1
DamagePerShot=33.0
KnockbackFactor=0.2
TimeBetweenShots=0.09
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=2.7
ReloadTimeFromPartial=2.7
DamageFalloffStartDistance=3000.0
DamageFalloffStopDistance=7500.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.02
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.2
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=410.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=4.0,15.0,-9.0,2.5
SpreadSCA=4.0,15.0,-9.0,2.5
SpreadMSA=4.0,15.0,-9.0,2.5
SpreadMCA=4.0,15.0,-9.0,2.5
SpreadSSH=4.0,27.0,-9.0,1.0
SpreadSCH=4.0,27.0,-9.0,0.0
SpreadMSH=100.0,1000.0,5.0,20.0
SpreadMCH=4.0,15.0,-9.0,1.8
MaxRecoilUp=0.3
MinRecoilUp=0.3
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.3
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.1
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=50.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.45
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.16
PSRResetDegreesPerSec=35.0
PSR0=0.4,-0.25
PSR1=0.4,-0.1
PSR2=0.9,0.5
PSR3=1.2,-0.5
PSR4=1.1,0.4
PSR5=1.3,0.4
PSR6=0.9,-1.0
PSR7=0.7,-0.75
PSR8=0.5,-1.1
PSR9=0.6,-0.3
PSR10=0.7,0.5
PSR11=-0.4,1.5
PSR12=0.1,1.7
PSR13=-0.3,1.3
PSR14=0.2,1.0
PSR15=0.2,-0.9
PSR16=-0.1,0.0
PSR17=0.3,0.5
PSR18=0.2,0.5
PSR19=-0.2,0.5
PSR20=-0.2,-0.75
PSR21=0.5,-2.0
PSR22=-0.2,-0.7
PSR23=0.2,-0.6
PSR24=-0.1,-0.75
PSR25=-0.1,-0.5
PSR26=0.3,0.3
PSR27=0.3,-0.4
PSR28=0.1,-0.2
PSR29=0.15,-0.2
PSR30=0.15,-0.2
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Machine Pistols
Type=Hitscan
ShotsPerClick=2
DamagePerShot=6.0
KnockbackFactor=0.1
TimeBetweenShots=0.05
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=40
AmmoPerShot=2
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=1500.0
DamageFalloffStopDistance=3000.0
DamageAtMaxRange=1.5
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.03
HitSoundCooldown=0.03
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.25
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=1.05,9.0,0.0,3.6
SpreadSCA=1.05,9.0,0.0,3.6
SpreadMSA=1.05,9.0,0.0,3.6
SpreadMCA=1.05,9.0,0.0,3.6
SpreadSSH=1.05,9.0,0.0,3.6
SpreadSCH=1.05,9.0,0.0,3.6
SpreadMSH=1.05,9.0,0.0,3.6
SpreadMCH=1.05,9.0,0.0,3.6
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.45
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=720.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
PBS1=0.0,0.0
[Weapon Profile]
Name=SCAR
Type=Hitscan
ShotsPerClick=1
DamagePerShot=10.0
KnockbackFactor=4.0
TimeBetweenShots=0.096
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=87000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=87000.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=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Arrow
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.01
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=20.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=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.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=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=100.0
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,-1.0,0.0
SpreadSCA=0.0,0.1,-1.0,0.0
SpreadMSA=0.0,0.1,-1.0,0.0
SpreadMCA=0.0,0.1,-1.0,0.0
SpreadSSH=0.0,0.1,-1.0,0.0
SpreadSCH=0.0,0.1,-1.0,0.0
SpreadMSH=0.0,0.1,-1.0,0.0
SpreadMCH=0.0,0.1,-1.0,0.0
MaxRecoilUp=0.8
MinRecoilUp=0.8
MinRecoilHoriz=-0.6
MaxRecoilHoriz=0.6
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=Stun Gren
Type=Projectile
ShotsPerClick=1
DamagePerShot=25.0
KnockbackFactor=4.0
TimeBetweenShots=0.8
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=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=1.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=0
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.8
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=true
Radius=230.0
DamageAtCenter=25.0
DamageAtEdge=25.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.15
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=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Spider Bullet
Type=Hitscan
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=0.1
TimeBetweenShots=0.5
Pierces=false
Category=Charge
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=12.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=0.75
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=2.5
MagazineMax=0
AmmoPerShot=3
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=80.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.5
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=true
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=4.5
MinRecoilUp=4.5
MinRecoilHoriz=-0.25
MaxRecoilHoriz=0.25
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.5
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.2
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=1.0
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Spider Bullet Laser
Type=Hitscan
ShotsPerClick=1
DamagePerShot=1.0
KnockbackFactor=0.1
TimeBetweenShots=0.01
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=12.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=0.75
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=2.5
MagazineMax=0
AmmoPerShot=3
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=80.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=true
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=1.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.5
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.2
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=1.0
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Spider Bullet One Hit
Type=Hitscan
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=0.1
TimeBetweenShots=0.01
Pierces=false
Category=Charge
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=300.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=0.1
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=2.5
MagazineMax=0
AmmoPerShot=3
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=80.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.5
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=true
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.1
TimeToRecoilReset=0.1
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.2
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=1.0
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Movement Ability Profile]
Name=Rush
MaxCharges=1.0
ChargeTimer=8.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.25
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=1500.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=0.25
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=true
AttackCancelsAbility=false
AbilityReloadsWeapon=true
HealthRestore=0.0
AIUseInCombat=false
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=50.0
AIDamageReactionResetTimer=1.0
[Movement Ability Profile]
Name=Gravity Boost
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.5
FullyAuto=true
AbilityDuration=0.0
LockDirectionForDuration=false
NegateGravityForDuration=true
MainVelocity=533.333313
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=945.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=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=10.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=99.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=10000.0
AIMaxTargFOV=45.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.0
AIDamageReactionMaxDelay=0.0
AIDamageReactionCooldown=0.1
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Movement Ability Profile]
Name=Dash
MaxCharges=1.0
ChargeTimer=8.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.25
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=3000.0
MainVelocityCanGoVertical=true
MainVelocitySetToMovementKeys=false
UpVelocity=0.0
EndVelocityFactor=0.2
Hurtbox=true
HurtboxRadius=300.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=true
AbilityBlocksMovement=true
AbilityBlocksAttack=true
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=0.2
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=25.0
AIMinTargDist=0.0
AIMaxTargDist=1750.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=75.0
AIDamageReactionResetTimer=1.0
[Movement Ability Profile]
Name=Blink
MaxCharges=3.0
ChargeTimer=3.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.075
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=15000.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=0.075
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=1500.0
AIMaxTargDist=1000000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=25.0
AIDamageReactionResetTimer=1.0
[Weapon Ability Profile]
Name=Stun Gren
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
WeaponProfile=Stun Gren
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=500.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=1.0
[Melee Ability Profile]
Name=Melee
MaxCharges=1.0
ChargeTimer=0.25
ChargesRefundedOnKill=0.0
DelayAfterUse=1.0
FullyAuto=false
AbilityDuration=0.15
HurtboxRadius=100.0
HurtboxDamage=30.0
HurtboxGroundKnockbackFactor=0.0
HurtboxAirKnockbackFactor=0.0
BlockAttackTimer=0.5
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=600.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Recall Ability Profile]
Name=Unwind
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=1.0
BlockAttackTimer=0.25
AbilityBlockedWhenAttacking=false
RecallTimer=3.0
RefillAmmo=true
AIUseInCombat=false
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.25
AIDamageReactionMinDelay=0.25
AIDamageReactionMaxDelay=0.5
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=75.0
AIDamageReactionResetTimer=1.0
[Sprint Ability Profile]
Name=Run
MaxCharges=1.0
ChargeTimer=0.001
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.0
BlockAttackWhileSprinting=false
AbilityBlockedWhenAttacking=true
SpeedModifier=1.5
45DegreeSprint=true
90DegreeSprint=false
135DegreeSprint=false
180DegreeSprint=false
TapToSprint=false
Block45DegreesWhenSprinting=false
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Sprint Ability Profile]
Name=Walk
MaxCharges=1.0
ChargeTimer=1.25
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.5
BlockAttackWhileSprinting=false
AbilityBlockedWhenAttacking=false
SpeedModifier=0.35
45DegreeSprint=true
90DegreeSprint=true
135DegreeSprint=true
180DegreeSprint=true
TapToSprint=true
Block45DegreesWhenSprinting=false
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=0.25
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=200000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
reflex map version 8
prefab targetbox
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-128.000000 64.000000 -255.999878
-128.000000 64.000000 -239.999878
128.000000 64.000000 -239.999878
128.000000 64.000000 -255.999878
-128.000000 -64.000000 -255.999878
-128.000000 -64.000000 -239.999878
128.000000 -64.000000 -239.999878
128.000000 -64.000000 -255.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-128.000000 64.000000 240.000137
-128.000000 64.000000 256.000122
128.000000 64.000000 256.000122
128.000000 64.000000 240.000137
-128.000000 -64.000000 240.000137
-128.000000 -64.000000 256.000122
128.000000 -64.000000 256.000122
128.000000 -64.000000 240.000137
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
112.000000 -64.000000 -239.999878
112.000000 -64.000000 -207.999878
128.000000 -64.000000 -207.999878
128.000000 -64.000000 -239.999878
112.000000 -80.000000 -239.999878
112.000000 -80.000000 -207.999878
128.000000 -80.000000 -207.999878
128.000000 -80.000000 -239.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-112.000000 -64.000000 -239.999878
-112.000000 -64.000000 240.000137
112.000000 -64.000000 240.000137
112.000000 -64.000000 -239.999878
-112.000000 -80.000000 -239.999878
-112.000000 -80.000000 240.000137
112.000000 -80.000000 240.000137
112.000000 -80.000000 -239.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-128.000000 64.000000 -239.999878
-128.000000 64.000000 240.000137
-112.000000 64.000000 240.000137
-112.000000 64.000000 -239.999878
-128.000000 -64.000000 -239.999878
-128.000000 -64.000000 240.000137
-112.000000 -64.000000 240.000137
-112.000000 -64.000000 -239.999878
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
112.000000 64.000000 -239.999878
112.000000 64.000000 240.000137
128.000000 64.000000 240.000137
128.000000 64.000000 -239.999878
112.000000 -64.000000 -239.999878
112.000000 -64.000000 240.000137
128.000000 -64.000000 240.000137
128.000000 -64.000000 -239.999878
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
112.000000 -64.000000 208.000137
112.000000 -64.000000 240.000137
128.000000 -64.000000 240.000137
128.000000 -64.000000 208.000137
112.000000 -80.000000 208.000137
112.000000 -80.000000 240.000137
128.000000 -80.000000 240.000137
128.000000 -80.000000 208.000137
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 -64.000000 240.000137
-128.000000 -64.000000 256.000122
128.000000 -64.000000 256.000122
128.000000 -64.000000 240.000137
-128.000000 -80.000000 240.000137
-128.000000 -80.000000 256.000122
128.000000 -80.000000 256.000122
128.000000 -80.000000 240.000137
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 -64.000000 208.000137
-128.000000 -64.000000 240.000137
-112.000000 -64.000000 240.000137
-112.000000 -64.000000 208.000137
-128.000000 -80.000000 208.000137
-128.000000 -80.000000 240.000137
-112.000000 -80.000000 240.000137
-112.000000 -80.000000 208.000137
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 -64.000000 -239.999878
-128.000000 -64.000000 -207.999878
-112.000000 -64.000000 -207.999878
-112.000000 -64.000000 -239.999878
-128.000000 -80.000000 -239.999878
-128.000000 -80.000000 -207.999878
-112.000000 -80.000000 -207.999878
-112.000000 -80.000000 -239.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-128.000000 -64.000000 -255.999878
-128.000000 -64.000000 -239.999878
128.000000 -64.000000 -239.999878
128.000000 -64.000000 -255.999878
-128.000000 -80.000000 -255.999878
-128.000000 -80.000000 -239.999878
128.000000 -80.000000 -239.999878
128.000000 -80.000000 -255.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-112.000000 80.000000 -239.999878
-112.000000 80.000000 240.000137
112.000000 80.000000 240.000137
112.000000 80.000000 -239.999878
-112.000000 64.000000 -239.999878
-112.000000 64.000000 240.000137
112.000000 64.000000 240.000137
112.000000 64.000000 -239.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type PlayerSpawn
Vector3 position -16.000000 -64.000000 128.000137
Vector3 angles 90.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -16.000000 -64.000000 0.000137
Vector3 angles 90.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -16.000000 -64.000000 -127.999863
Vector3 angles 90.000000 -0.000000 0.000000
Bool8 teamA 0
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-256.000000 -160.000000 -303.999878
-256.000000 -160.000000 -271.999878
-240.000000 -160.000000 -271.999878
-240.000000 -160.000000 -303.999878
-256.000000 -176.000000 -303.999878
-256.000000 -176.000000 -271.999878
-240.000000 -176.000000 -271.999878
-240.000000 -176.000000 -303.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 -160.000000 144.000137
-256.000000 -160.000000 176.000137
-240.000000 -160.000000 176.000137
-240.000000 -160.000000 144.000137
-256.000000 -176.000000 144.000137
-256.000000 -176.000000 176.000137
-240.000000 -176.000000 176.000137
-240.000000 -176.000000 144.000137
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 -303.999878
-256.000000 0.000000 -271.999878
-240.000000 0.000000 -271.999878
-240.000000 0.000000 -303.999878
-256.000000 -16.000000 -303.999878
-256.000000 -16.000000 -271.999878
-240.000000 -16.000000 -271.999878
-240.000000 -16.000000 -303.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 0.000000 144.000137
-256.000000 0.000000 176.000137
-240.000000 0.000000 176.000137
-240.000000 0.000000 144.000137
-256.000000 -16.000000 144.000137
-256.000000 -16.000000 176.000137
-240.000000 -16.000000 176.000137
-240.000000 -16.000000 144.000137
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 160.000000 -303.999878
-256.000000 160.000000 -271.999878
-240.000000 160.000000 -271.999878
-240.000000 160.000000 -303.999878
-256.000000 144.000000 -303.999878
-256.000000 144.000000 -271.999878
-240.000000 144.000000 -271.999878
-240.000000 144.000000 -303.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 160.000000 144.000137
-256.000000 160.000000 176.000137
-240.000000 160.000000 176.000137
-240.000000 160.000000 144.000137
-256.000000 144.000000 144.000137
-256.000000 144.000000 176.000137
-240.000000 144.000000 176.000137
-240.000000 144.000000 144.000137
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 0.000000 192.000000
272.000000 0.000000 192.000000
272.000000 0.000000 -320.000000
-240.000000 0.000000 -320.000000
-240.000000 -64.000000 192.000000
272.000000 -64.000000 192.000000
272.000000 -64.000000 -320.000000
-240.000000 -64.000000 -320.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
-240.000000 192.000000 -304.000000
272.000000 192.000000 -304.000000
272.000000 192.000000 -320.000000
-240.000000 192.000000 -320.000000
-240.000000 0.000000 -304.000000
272.000000 0.000000 -304.000000
272.000000 0.000000 -320.000000
-240.000000 0.000000 -320.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
-240.000000 208.000000 192.000000
272.000000 208.000000 192.000000
272.000000 208.000000 -304.000000
-240.000000 208.000000 -304.000000
-240.000000 192.000000 192.000000
272.000000 192.000000 192.000000
272.000000 192.000000 -304.000000
-240.000000 192.000000 -304.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 160.000000 -303.999878
-512.000000 160.000000 -271.999878
-480.000000 160.000000 -271.999878
-480.000000 160.000000 -303.999878
-512.000000 144.000000 -303.999878
-512.000000 144.000000 -271.999878
-480.000000 144.000000 -271.999878
-480.000000 144.000000 -303.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 0.000000 -303.999878
-512.000000 0.000000 -271.999878
-480.000000 0.000000 -271.999878
-480.000000 0.000000 -303.999878
-512.000000 -16.000000 -303.999878
-512.000000 -16.000000 -271.999878
-480.000000 -16.000000 -271.999878
-480.000000 -16.000000 -303.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 0.000000 144.000137
-512.000000 0.000000 176.000137
-480.000000 0.000000 176.000137
-480.000000 0.000000 144.000137
-512.000000 -16.000000 144.000137
-512.000000 -16.000000 176.000137
-480.000000 -16.000000 176.000137
-480.000000 -16.000000 144.000137
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
-512.000000 160.000000 144.000137
-512.000000 160.000000 176.000137
-480.000000 160.000000 176.000137
-480.000000 160.000000 144.000137
-512.000000 144.000000 144.000137
-512.000000 144.000000 176.000137
-480.000000 144.000000 176.000137
-480.000000 144.000000 144.000137
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 320.000000 -303.999878
-256.000000 320.000000 176.000137
-240.000000 320.000000 176.000137
-240.000000 320.000000 -303.999878
-256.000000 -160.000000 -303.999878
-256.000000 -160.000000 176.000137
-240.000000 -160.000000 176.000137
-240.000000 -160.000000 -303.999878
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
-752.000000 128.000000 176.000137
-752.000000 128.000000 192.000122
-240.000000 128.000000 192.000122
-240.000000 128.000000 176.000137
-752.000000 -15.999999 176.000137
-752.000000 -15.999999 192.000122
-240.000000 -15.999999 192.000122
-240.000000 -15.999999 176.000137
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-752.000000 128.000000 -319.999878
-752.000000 128.000000 -303.999878
-240.000000 128.000000 -303.999878
-240.000000 128.000000 -319.999878
-752.000000 -16.000000 -319.999878
-752.000000 -16.000000 -303.999878
-240.000000 -16.000000 -303.999878
-240.000000 -16.000000 -319.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-496.000000 288.000000 176.000137
-496.000000 288.000000 192.000122
-240.000000 288.000000 192.000122
-240.000000 288.000000 176.000137
-496.000000 144.000000 176.000137
-496.000000 144.000000 192.000122
-240.000000 144.000000 192.000122
-240.000000 144.000000 176.000137
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-512.000000 160.000000 176.000000
-480.000000 160.000000 176.000000
-480.000000 160.000000 -304.000000
-512.000000 160.000000 -304.000000
-512.000000 -16.000000 176.000000
-480.000000 -16.000000 176.000000
-480.000000 -16.000000 -304.000000
-512.000000 -16.000000 -304.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 320.000000 176.000000
-240.000000 320.000000 176.000000
-240.000000 320.000000 -304.000000
-512.000000 320.000000 -304.000000
-512.000000 304.000000 176.000000
-240.000000 304.000000 176.000000
-240.000000 304.000000 -304.000000
-512.000000 304.000000 -304.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
-496.000000 288.000000 -319.999878
-496.000000 288.000000 -303.999878
-240.000000 288.000000 -303.999878
-240.000000 288.000000 -319.999878
-496.000000 144.000000 -319.999878
-496.000000 144.000000 -303.999878
-240.000000 144.000000 -303.999878
-240.000000 144.000000 -319.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-512.000000 288.000000 176.000000
-496.000000 288.000000 176.000000
-496.000000 288.000000 -304.000000
-512.000000 288.000000 -304.000000
-512.000000 160.000000 176.000000
-496.000000 160.000000 176.000000
-496.000000 160.000000 -304.000000
-512.000000 160.000000 -304.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
-496.000000 160.000000 176.000000
-240.000000 160.000000 176.000000
-240.000000 160.000000 -304.000000
-496.000000 160.000000 -304.000000
-496.000000 144.000000 176.000000
-240.000000 144.000000 176.000000
-240.000000 144.000000 -304.000000
-496.000000 144.000000 -304.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
-752.000000 0.000000 176.000000
-240.000000 0.000000 176.000000
-240.000000 0.000000 -304.000000
-752.000000 0.000000 -304.000000
-752.000000 -16.000000 176.000000
-240.000000 -16.000000 176.000000
-240.000000 -16.000000 -304.000000
-752.000000 -16.000000 -304.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
-496.000000 -160.000000 176.000000
-240.000000 -160.000000 176.000000
-240.000000 -160.000000 -304.000000
-496.000000 -160.000000 -304.000000
-496.000000 -176.000000 176.000000
-240.000000 -176.000000 176.000000
-240.000000 -176.000000 -304.000000
-496.000000 -176.000000 -304.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
-496.000000 160.000000 144.000137
-496.000000 160.000000 176.000137
-480.000000 160.000000 176.000137
-480.000000 160.000000 144.000137
-496.000000 144.000000 144.000137
-496.000000 144.000000 176.000137
-480.000000 144.000000 176.000137
-480.000000 144.000000 144.000137
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
-496.000000 160.000000 -303.999878
-496.000000 160.000000 -271.999878
-480.000000 160.000000 -271.999878
-480.000000 160.000000 -303.999878
-496.000000 144.000000 -303.999878
-496.000000 144.000000 -271.999878
-480.000000 144.000000 -271.999878
-480.000000 144.000000 -303.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 176.000000
-496.000000 160.000000 176.000000
-496.000000 160.000000 -304.000000
-768.000000 160.000000 -304.000000
-768.000000 144.000000 176.000000
-496.000000 144.000000 176.000000
-496.000000 144.000000 -304.000000
-768.000000 144.000000 -304.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
-496.000000 -192.000000 176.000000
-256.000000 -192.000000 176.000000
-256.000000 -192.000000 -304.000000
-496.000000 -192.000000 -304.000000
-496.000000 -208.000000 176.000000
-256.000000 -208.000000 176.000000
-256.000000 -208.000000 -304.000000
-496.000000 -208.000000 -304.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
-496.000000 -32.000000 -319.999878
-496.000000 -32.000000 -303.999878
-240.000000 -32.000000 -303.999878
-240.000000 -32.000000 -319.999878
-496.000000 -176.000000 -319.999878
-496.000000 -176.000000 -303.999878
-240.000000 -176.000000 -303.999878
-240.000000 -176.000000 -319.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-496.000000 -160.000000 -303.999878
-496.000000 -160.000000 -271.999878
-480.000000 -160.000000 -271.999878
-480.000000 -160.000000 -303.999878
-496.000000 -176.000000 -303.999878
-496.000000 -176.000000 -271.999878
-480.000000 -176.000000 -271.999878
-480.000000 -176.000000 -303.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-496.000000 -32.000000 176.000137
-496.000000 -32.000000 192.000122
-240.000000 -32.000000 192.000122
-240.000000 -32.000000 176.000137
-496.000000 -176.000000 176.000137
-496.000000 -176.000000 192.000122
-240.000000 -176.000000 192.000122
-240.000000 -176.000000 176.000137
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-496.000000 -160.000000 144.000137
-496.000000 -160.000000 176.000137
-480.000000 -160.000000 176.000137
-480.000000 -160.000000 144.000137
-496.000000 -176.000000 144.000137
-496.000000 -176.000000 176.000137
-480.000000 -176.000000 176.000137
-480.000000 -176.000000 144.000137
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
-512.000000 -32.000000 176.000000
-496.000000 -32.000000 176.000000
-496.000000 -32.000000 -304.000000
-512.000000 -32.000000 -304.000000
-512.000000 -176.000000 176.000000
-496.000000 -176.000000 176.000000
-496.000000 -176.000000 -304.000000
-512.000000 -176.000000 -304.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
-768.000000 -32.000000 176.000000
-512.000000 -32.000000 176.000000
-512.000000 -32.000000 -304.000000
-768.000000 -32.000000 -304.000000
-768.000000 -48.000000 176.000000
-512.000000 -48.000000 176.000000
-512.000000 -48.000000 -304.000000
-768.000000 -48.000000 -304.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
-768.000000 128.000000 176.000000
-752.000000 128.000000 176.000000
-752.000000 128.000000 -304.000000
-768.000000 128.000000 -304.000000
-768.000000 -16.000000 176.000000
-752.000000 -16.000000 176.000000
-752.000000 -16.000000 -304.000000
-768.000000 -16.000000 -304.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
-752.000000 0.000000 144.000137
-752.000000 0.000000 176.000137
-736.000000 0.000000 176.000137
-736.000000 0.000000 144.000137
-752.000000 -16.000000 144.000137
-752.000000 -16.000000 176.000137
-736.000000 -16.000000 176.000137
-736.000000 -16.000000 144.000137
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
-752.000000 0.000000 -303.999878
-752.000000 0.000000 -271.999878
-736.000000 0.000000 -271.999878
-736.000000 0.000000 -303.999878
-752.000000 -16.000000 -303.999878
-752.000000 -16.000000 -271.999878
-736.000000 -16.000000 -271.999878
-736.000000 -16.000000 -303.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-223.999878 -160.000000 448.000000
-191.999878 -160.000000 448.000000
-191.999878 -160.000000 432.000000
-223.999878 -160.000000 432.000000
-223.999878 -176.000000 448.000000
-191.999878 -176.000000 448.000000
-191.999878 -176.000000 432.000000
-223.999878 -176.000000 432.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
-223.999878 -160.000000 208.000061
-191.999878 -160.000000 208.000061
-191.999878 -160.000000 192.000061
-223.999878 -160.000000 192.000061
-223.999878 -176.000000 208.000061
-191.999878 -176.000000 208.000061
-191.999878 -176.000000 192.000061
-223.999878 -176.000000 192.000061
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
-223.999878 0.000000 704.000000
-191.999878 0.000000 704.000000
-191.999878 0.000000 688.000000
-223.999878 0.000000 688.000000
-223.999878 -16.000000 704.000000
-191.999878 -16.000000 704.000000
-191.999878 -16.000000 688.000000
-223.999878 -16.000000 688.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
-223.999878 0.000000 464.000000
-191.999878 0.000000 464.000000
-191.999878 0.000000 432.000000
-223.999878 0.000000 432.000000
-223.999878 -16.000000 464.000000
-191.999878 -16.000000 464.000000
-191.999878 -16.000000 432.000000
-223.999878 -16.000000 432.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
-223.999878 0.000000 208.000061
-191.999878 0.000000 208.000061
-191.999878 0.000000 192.000061
-223.999878 0.000000 192.000061
-223.999878 -16.000000 208.000061
-191.999878 -16.000000 208.000061
-191.999878 -16.000000 192.000061
-223.999878 -16.000000 192.000061
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
-223.999878 160.000000 464.000000
-191.999878 160.000000 464.000000
-191.999878 160.000000 432.000000
-223.999878 160.000000 432.000000
-223.999878 144.000000 464.000000
-191.999878 144.000000 464.000000
-191.999878 144.000000 432.000000
-223.999878 144.000000 432.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
-223.999878 160.000000 448.000000
-191.999878 160.000000 448.000000
-191.999878 160.000000 432.000000
-223.999878 160.000000 432.000000
-223.999878 144.000000 448.000000
-191.999878 144.000000 448.000000
-191.999878 144.000000 432.000000
-223.999878 144.000000 432.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
-223.999878 160.000000 208.000061
-191.999878 160.000000 208.000061
-191.999878 160.000000 192.000061
-223.999878 160.000000 192.000061
-223.999878 144.000000 208.000061
-191.999878 144.000000 208.000061
-191.999878 144.000000 192.000061
-223.999878 144.000000 192.000061
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
224.000122 -160.000000 448.000000
256.000122 -160.000000 448.000000
256.000122 -160.000000 432.000000
224.000122 -160.000000 432.000000
224.000122 -176.000000 448.000000
256.000122 -176.000000 448.000000
256.000122 -176.000000 432.000000
224.000122 -176.000000 432.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
224.000122 -160.000000 208.000000
256.000122 -160.000000 208.000000
256.000122 -160.000000 192.000000
224.000122 -160.000000 192.000000
224.000122 -176.000000 208.000000
256.000122 -176.000000 208.000000
256.000122 -176.000000 192.000000
224.000122 -176.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
224.000122 0.000000 704.000000
256.000122 0.000000 704.000000
256.000122 0.000000 688.000000
224.000122 0.000000 688.000000
224.000122 -16.000000 704.000000
256.000122 -16.000000 704.000000
256.000122 -16.000000 688.000000
224.000122 -16.000000 688.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
224.000122 0.000000 464.000000
256.000122 0.000000 464.000000
256.000122 0.000000 432.000000
224.000122 0.000000 432.000000
224.000122 -16.000000 464.000000
256.000122 -16.000000 464.000000
256.000122 -16.000000 432.000000
224.000122 -16.000000 432.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
224.000122 0.000000 208.000000
256.000122 0.000000 208.000000
256.000122 0.000000 192.000000
224.000122 0.000000 192.000000
224.000122 -16.000000 208.000000
256.000122 -16.000000 208.000000
256.000122 -16.000000 192.000000
224.000122 -16.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
224.000122 160.000000 464.000000
256.000122 160.000000 464.000000
256.000122 160.000000 432.000000
224.000122 160.000000 432.000000
224.000122 144.000000 464.000000
256.000122 144.000000 464.000000
256.000122 144.000000 432.000000
224.000122 144.000000 432.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
224.000122 160.000000 448.000000
256.000122 160.000000 448.000000
256.000122 160.000000 432.000000
224.000122 160.000000 432.000000
224.000122 144.000000 448.000000
256.000122 144.000000 448.000000
256.000122 144.000000 432.000000
224.000122 144.000000 432.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
224.000122 160.000000 208.000000
256.000122 160.000000 208.000000
256.000122 160.000000 192.000000
224.000122 160.000000 192.000000
224.000122 144.000000 208.000000
256.000122 144.000000 208.000000
256.000122 144.000000 192.000000
224.000122 144.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-239.999878 -32.000000 448.000000
-223.999878 -32.000000 448.000000
-223.999878 -32.000000 192.000061
-239.999878 -32.000000 192.000061
-239.999878 -176.000000 448.000000
-223.999878 -176.000000 448.000000
-223.999878 -176.000000 192.000061
-239.999878 -176.000000 192.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-239.999878 288.000000 448.000000
-223.999878 288.000000 448.000000
-223.999878 288.000000 192.000061
-239.999878 288.000000 192.000061
-239.999878 144.000000 448.000000
-223.999878 144.000000 448.000000
-223.999878 144.000000 192.000061
-239.999878 144.000000 192.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
256.000122 -32.000000 448.000000
272.000122 -32.000000 448.000000
272.000122 -32.000000 192.000000
256.000122 -32.000000 192.000000
256.000122 -176.000000 448.000000
272.000122 -176.000000 448.000000
272.000122 -176.000000 192.000000
256.000122 -176.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
256.000122 288.000000 448.000000
272.000122 288.000000 448.000000
272.000122 288.000000 192.000000
256.000122 288.000000 192.000000
256.000122 144.000000 448.000000
272.000122 144.000000 448.000000
272.000122 144.000000 192.000000
256.000122 144.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-239.999878 128.000000 704.000000
-223.999878 128.000000 704.000000
-223.999878 128.000000 192.000061
-239.999878 128.000000 192.000061
-239.999878 -16.000000 704.000000
-223.999878 -16.000000 704.000000
-223.999878 -16.000000 192.000061
-239.999878 -16.000000 192.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
256.000000 -32.000000 720.000000
256.000000 -32.000000 464.000000
-224.000000 -32.000000 464.000000
-224.000000 -32.000000 720.000000
256.000000 -48.000000 720.000000
256.000000 -48.000000 464.000000
-224.000000 -48.000000 464.000000
-224.000000 -48.000000 720.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 704.000000
256.000000 0.000000 192.000000
-224.000000 0.000000 192.000061
-224.000000 0.000000 704.000000
256.000000 -16.000000 704.000000
256.000000 -16.000000 192.000000
-224.000000 -16.000000 192.000061
-224.000000 -16.000000 704.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
256.000000 160.000000 464.000000
256.000000 160.000000 432.000000
-224.000000 160.000000 432.000000
-224.000000 160.000000 464.000000
256.000000 -16.000000 464.000000
256.000000 -16.000000 432.000000
-224.000000 -16.000000 432.000000
-224.000000 -16.000000 464.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
-223.999878 320.000000 208.000061
256.000122 320.000000 208.000000
256.000122 320.000000 192.000000
-223.999878 320.000000 192.000061
-223.999878 -160.000000 208.000061
256.000122 -160.000000 208.000000
256.000122 -160.000000 192.000000
-223.999878 -160.000000 192.000061
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
256.000000 -160.000000 448.000000
256.000000 -160.000000 192.000000
-224.000000 -160.000000 192.000061
-224.000000 -160.000000 448.000000
256.000000 -176.000000 448.000000
256.000000 -176.000000 192.000000
-224.000000 -176.000000 192.000061
-224.000000 -176.000000 448.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
256.000000 -192.000000 448.000000
256.000000 -192.000000 208.000000
-224.000000 -192.000000 208.000061
-224.000000 -192.000000 448.000000
256.000000 -208.000000 448.000000
256.000000 -208.000000 208.000000
-224.000000 -208.000000 208.000061
-224.000000 -208.000000 448.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 -32.000000 464.000000
256.000000 -32.000000 448.000000
-224.000000 -32.000000 448.000000
-224.000000 -32.000000 464.000000
256.000000 -176.000000 464.000000
256.000000 -176.000000 448.000000
-224.000000 -176.000000 448.000000
-224.000000 -176.000000 464.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 160.000000 720.000000
256.000000 160.000000 448.000000
-224.000000 160.000000 448.000000
-224.000000 160.000000 720.000000
256.000000 144.000000 720.000000
256.000000 144.000000 448.000000
-224.000000 144.000000 448.000000
-224.000000 144.000000 720.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 320.000000 464.000000
256.000000 320.000000 192.000000
-224.000000 320.000000 192.000061
-224.000000 320.000000 464.000000
256.000000 304.000000 464.000000
256.000000 304.000000 192.000000
-224.000000 304.000000 192.000061
-224.000000 304.000000 464.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 288.000000 464.000000
256.000000 288.000000 448.000000
-224.000000 288.000000 448.000000
-224.000000 288.000000 464.000000
256.000000 160.000000 464.000000
256.000000 160.000000 448.000000
-224.000000 160.000000 448.000000
-224.000000 160.000000 464.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 160.000000 448.000000
256.000000 160.000000 192.000000
-224.000000 160.000000 192.000061
-224.000000 160.000000 448.000000
256.000000 144.000000 448.000000
256.000000 144.000000 192.000000
-224.000000 144.000000 192.000061
-224.000000 144.000000 448.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
256.000122 128.000000 704.000000
272.000122 128.000000 704.000000
272.000122 128.000000 192.000000
256.000122 128.000000 192.000000
256.000122 -15.999999 704.000000
272.000122 -15.999999 704.000000
272.000122 -15.999999 192.000000
256.000122 -15.999999 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
528.000000 -160.000000 175.999878
528.000000 -160.000000 143.999878
512.000000 -160.000000 143.999878
512.000000 -160.000000 175.999878
528.000000 -176.000000 175.999878
528.000000 -176.000000 143.999878
512.000000 -176.000000 143.999878
512.000000 -176.000000 175.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
288.000122 -160.000000 175.999878
288.000122 -160.000000 143.999878
272.000122 -160.000000 143.999878
272.000122 -160.000000 175.999878
288.000122 -176.000000 175.999878
288.000122 -176.000000 143.999878
272.000122 -176.000000 143.999878
272.000122 -176.000000 175.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
784.000000 0.000000 175.999878
784.000000 0.000000 143.999878
768.000000 0.000000 143.999878
768.000000 0.000000 175.999878
784.000000 -16.000000 175.999878
784.000000 -16.000000 143.999878
768.000000 -16.000000 143.999878
768.000000 -16.000000 175.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
544.000000 0.000000 175.999878
544.000000 0.000000 143.999878
512.000000 0.000000 143.999878
512.000000 0.000000 175.999878
544.000000 -16.000000 175.999878
544.000000 -16.000000 143.999878
512.000000 -16.000000 143.999878
512.000000 -16.000000 175.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
288.000122 0.000000 175.999878
288.000122 0.000000 143.999878
272.000122 0.000000 143.999878
272.000122 0.000000 175.999878
288.000122 -16.000000 175.999878
288.000122 -16.000000 143.999878
272.000122 -16.000000 143.999878
272.000122 -16.000000 175.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
544.000000 160.000000 175.999878
544.000000 160.000000 143.999878
512.000000 160.000000 143.999878
512.000000 160.000000 175.999878
544.000000 144.000000 175.999878
544.000000 144.000000 143.999878
512.000000 144.000000 143.999878
512.000000 144.000000 175.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
528.000000 160.000000 175.999878
528.000000 160.000000 143.999878
512.000000 160.000000 143.999878
512.000000 160.000000 175.999878
528.000000 144.000000 175.999878
528.000000 144.000000 143.999878
512.000000 144.000000 143.999878
512.000000 144.000000 175.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
288.000122 160.000000 175.999878
288.000122 160.000000 143.999878
272.000122 160.000000 143.999878
272.000122 160.000000 175.999878
288.000122 144.000000 175.999878
288.000122 144.000000 143.999878
272.000122 144.000000 143.999878
272.000122 144.000000 175.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
528.000000 -160.000000 -272.000122
528.000000 -160.000000 -304.000122
512.000000 -160.000000 -304.000122
512.000000 -160.000000 -272.000122
528.000000 -176.000000 -272.000122
528.000000 -176.000000 -304.000122
512.000000 -176.000000 -304.000122
512.000000 -176.000000 -272.000122
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
288.000000 -160.000000 -272.000122
288.000000 -160.000000 -304.000122
272.000000 -160.000000 -304.000122
272.000000 -160.000000 -272.000122
288.000000 -176.000000 -272.000122
288.000000 -176.000000 -304.000122
272.000000 -176.000000 -304.000122
272.000000 -176.000000 -272.000122
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
784.000000 0.000000 -272.000244
784.000000 0.000000 -304.000244
768.000000 0.000000 -304.000122
768.000000 0.000000 -272.000122
784.000000 -16.000000 -272.000244
784.000000 -16.000000 -304.000244
768.000000 -16.000000 -304.000122
768.000000 -16.000000 -272.000122
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
544.000000 0.000000 -272.000122
544.000000 0.000000 -304.000122
512.000000 0.000000 -304.000122
512.000000 0.000000 -272.000122
544.000000 -16.000000 -272.000122
544.000000 -16.000000 -304.000122
512.000000 -16.000000 -304.000122
512.000000 -16.000000 -272.000122
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
288.000000 0.000000 -272.000122
288.000000 0.000000 -304.000122
272.000000 0.000000 -304.000122
272.000000 0.000000 -272.000122
288.000000 -16.000000 -272.000122
288.000000 -16.000000 -304.000122
272.000000 -16.000000 -304.000122
272.000000 -16.000000 -272.000122
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
544.000000 160.000000 -272.000122
544.000000 160.000000 -304.000122
512.000000 160.000000 -304.000122
512.000000 160.000000 -272.000122
544.000000 144.000000 -272.000122
544.000000 144.000000 -304.000122
512.000000 144.000000 -304.000122
512.000000 144.000000 -272.000122
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
528.000000 160.000000 -272.000122
528.000000 160.000000 -304.000122
512.000000 160.000000 -304.000122
512.000000 160.000000 -272.000122
528.000000 144.000000 -272.000122
528.000000 144.000000 -304.000122
512.000000 144.000000 -304.000122
512.000000 144.000000 -272.000122
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
288.000000 160.000000 -272.000122
288.000000 160.000000 -304.000122
272.000000 160.000000 -304.000122
272.000000 160.000000 -272.000122
288.000000 144.000000 -272.000122
288.000000 144.000000 -304.000122
272.000000 144.000000 -304.000122
272.000000 144.000000 -272.000122
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
528.000000 -32.000000 191.999878
528.000000 -32.000000 175.999878
272.000122 -32.000000 175.999878
272.000122 -32.000000 191.999878
528.000000 -176.000000 191.999878
528.000000 -176.000000 175.999878
272.000122 -176.000000 175.999878
272.000122 -176.000000 191.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
528.000000 288.000000 191.999878
528.000000 288.000000 175.999878
272.000122 288.000000 175.999878
272.000122 288.000000 191.999878
528.000000 144.000000 191.999878
528.000000 144.000000 175.999878
272.000122 144.000000 175.999878
272.000122 144.000000 191.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
528.000000 -32.000000 -304.000122
528.000000 -32.000000 -320.000122
272.000000 -32.000000 -320.000122
272.000000 -32.000000 -304.000122
528.000000 -176.000000 -304.000122
528.000000 -176.000000 -320.000122
272.000000 -176.000000 -320.000122
272.000000 -176.000000 -304.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
528.000000 288.000000 -304.000122
528.000000 288.000000 -320.000122
272.000000 288.000000 -320.000122
272.000000 288.000000 -304.000122
528.000000 144.000000 -304.000122
528.000000 144.000000 -320.000122
272.000000 144.000000 -320.000122
272.000000 144.000000 -304.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
784.000000 128.000000 191.999878
784.000000 128.000000 175.999878
272.000122 128.000000 175.999878
272.000122 128.000000 191.999878
784.000000 -16.000000 191.999878
784.000000 -16.000000 175.999878
272.000122 -16.000000 175.999878
272.000122 -16.000000 191.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
800.000000 -32.000000 -304.000000
544.000000 -32.000000 -304.000000
544.000000 -32.000000 176.000000
800.000000 -32.000000 176.000000
800.000000 -48.000000 -304.000000
544.000000 -48.000000 -304.000000
544.000000 -48.000000 176.000000
800.000000 -48.000000 176.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
784.000000 0.000000 -304.000000
272.000000 0.000000 -304.000000
272.000122 0.000000 176.000000
784.000000 0.000000 176.000000
784.000000 -16.000000 -304.000000
272.000000 -16.000000 -304.000000
272.000122 -16.000000 176.000000
784.000000 -16.000000 176.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
544.000000 160.000000 -304.000000
512.000000 160.000000 -304.000000
512.000000 160.000000 176.000000
544.000000 160.000000 176.000000
544.000000 -16.000000 -304.000000
512.000000 -16.000000 -304.000000
512.000000 -16.000000 176.000000
544.000000 -16.000000 176.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.000122 320.000000 175.999878
288.000000 320.000000 -304.000122
272.000000 320.000000 -304.000122
272.000122 320.000000 175.999878
288.000122 -160.000000 175.999878
288.000000 -160.000000 -304.000122
272.000000 -160.000000 -304.000122
272.000122 -160.000000 175.999878
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
528.000000 -160.000000 -304.000000
272.000000 -160.000000 -304.000000
272.000122 -160.000000 176.000000
528.000000 -160.000000 176.000000
528.000000 -176.000000 -304.000000
272.000000 -176.000000 -304.000000
272.000122 -176.000000 176.000000
528.000000 -176.000000 176.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
528.000000 -192.000000 -304.000000
288.000000 -192.000000 -304.000000
288.000122 -192.000000 176.000000
528.000000 -192.000000 176.000000
528.000000 -208.000000 -304.000000
288.000000 -208.000000 -304.000000
288.000122 -208.000000 176.000000
528.000000 -208.000000 176.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
544.000000 -32.000000 -304.000000
528.000000 -32.000000 -304.000000
528.000000 -32.000000 176.000000
544.000000 -32.000000 176.000000
544.000000 -176.000000 -304.000000
528.000000 -176.000000 -304.000000
528.000000 -176.000000 176.000000
544.000000 -176.000000 176.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
800.000000 160.000000 -304.000000
528.000000 160.000000 -304.000000
528.000000 160.000000 176.000000
800.000000 160.000000 176.000000
800.000000 144.000000 -304.000000
528.000000 144.000000 -304.000000
528.000000 144.000000 176.000000
800.000000 144.000000 176.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
544.000000 320.000000 -304.000000
272.000000 320.000000 -304.000000
272.000122 320.000000 176.000000
544.000000 320.000000 176.000000
544.000000 304.000000 -304.000000
272.000000 304.000000 -304.000000
272.000122 304.000000 176.000000
544.000000 304.000000 176.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
544.000000 288.000000 -304.000000
528.000000 288.000000 -304.000000
528.000000 288.000000 176.000000
544.000000 288.000000 176.000000
544.000000 160.000000 -304.000000
528.000000 160.000000 -304.000000
528.000000 160.000000 176.000000
544.000000 160.000000 176.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
528.000000 160.000000 -304.000000
272.000000 160.000000 -304.000000
272.000122 160.000000 176.000000
528.000000 160.000000 176.000000
528.000000 144.000000 -304.000000
272.000000 144.000000 -304.000000
272.000122 144.000000 176.000000
528.000000 144.000000 176.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
784.000000 128.000000 -304.000244
784.000000 128.000000 -320.000244
272.000000 128.000000 -320.000122
272.000000 128.000000 -304.000122
784.000000 -15.999999 -304.000244
784.000000 -15.999999 -320.000244
272.000000 -15.999999 -320.000122
272.000000 -15.999999 -304.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
784.000000 128.000000 176.000000
800.000000 128.000000 176.000000
800.000000 128.000000 -304.000000
784.000000 128.000000 -304.000000
784.000000 -16.000000 176.000000
800.000000 -16.000000 176.000000
800.000000 -16.000000 -304.000000
784.000000 -16.000000 -304.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 128.000000 720.000000
256.000000 128.000000 704.000000
-224.000000 128.000000 704.000000
-224.000000 128.000000 720.000000
256.000000 -16.000000 720.000000
256.000000 -16.000000 704.000000
-224.000000 -16.000000 704.000000
-224.000000 -16.000000 720.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
entity
type PlayerSpawn
Vector3 position 16.000000 0.000000 -64.000000
Bool8 teamB 0
entity
type CameraPath
UInt32 entityIdAttachedTo 149
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position -384.000000 0.000000 64.000137
Vector3 angles 90.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 0.000000 -63.999863
Vector3 angles 90.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 0.000000 -191.999863
Vector3 angles 90.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 160.000000 -63.999863
Vector3 angles 90.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 -160.000000 -63.999863
Vector3 angles 90.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -640.000000 0.000000 -63.999863
Vector3 angles 90.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 144.000122 0.000000 336.000000
Vector3 angles 180.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000122 0.000000 336.000000
Vector3 angles 180.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -111.999878 0.000000 336.000000
Vector3 angles 180.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000122 160.000000 336.000000
Vector3 angles 180.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000122 -160.000000 336.000000
Vector3 angles 180.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000122 0.000000 592.000000
Vector3 angles 180.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 416.000000 0.000000 -192.000122
Vector3 angles 270.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 416.000000 0.000000 -64.000122
Vector3 angles 270.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 416.000000 0.000000 63.999878
Vector3 angles 270.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 416.000000 160.000000 -64.000122
Vector3 angles 270.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 416.000000 -160.000000 -64.000122
Vector3 angles 270.000000 -0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 672.000000 0.000000 -64.000122
Vector3 angles 270.000000 -0.000000 0.000000
Bool8 teamA 0
|
5f9f993a82891fd35b9e541552441827b79db7c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH7/EX7.1/Ex7_1.sce | afbd574bbf1fb674048b409cba7ecd7d54a42a4e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 969 | sce | Ex7_1.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 7 : SPECIAL MOTORS AND INTRODUCTION TO GENERALIZED MACHINE THEORY
// EXAMPLE : 7.1
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
D = 35*10^-2; // Outer diameter of the conducting disk in Meter
d = 10*10^-2; // Inner diameter of the conducting disk in Meter
B = 1.0; // Axial magnetic field in Telsa
N = 900; // Rotating shaft running in RPM
// CALCULATIONS
Wr = (2*%pi*N)/60; // Rotational angular speed in radians/s
Er = ((D^2-d^2)*B*Wr)/8; // EMF induced in Volts
// DISPLAY RESULTS
disp("EXAMPLE : 7.1: SOLUTION :-");
printf("\n (a) Induced EMF in the outer and inner rims of the disk, Er = %.4f V \n",Er)
|
881cbb3a31c80079031a9b33ba028995cd08044a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH12/EX12.4/EX12_4.sce | 8f58bd2170dda3b23a7681cb1194b2f29232772d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 290 | sce | EX12_4.sce | //Finding of Power Lost
//Given
D=0.6;
L=1000;
Q=0.6;
ks=0.003;
rho=1000;
g=9.81;
c=50;
//To Find
//For Turbulant Flow
A=(%pi/4)*D^2;
a=2*log(3.71*(D/ks));
b=sqrt(a);
v=Q/A;
f=1/c;
Hf=(f*L*v^2)/(2*g*D);
P=(rho*g*Q*Hf)/1000;
disp(" Power Lost ="+string(P)+" Kilowatt");
|
17ccbad31536bedf6cb055e465cc4ff2a50792a7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH28/EX28.2/28_2.sce | aaff26c441560c6ba4ba0867fad1b8ec14b7d6f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 471 | sce | 28_2.sce | clear//
//Variables
L = 100.0 * 10**-6 //Inductance (in Henry)
C = 100.0 * 10**-12 //Capacitance (in Farad)
R = 5.0 //Resistance (in ohm)
//Calculation
fo = 0.159 / (L * C)**0.5 //Resonant frequency (in Hertz)
Zp = L / (C*R) //Circuit impedance at resonance (in ohm)
//Result
printf("\n Resonant frequency is %0.3f MHz.\nCircuit impedance at resonance is %0.3f kilo-ohm.",fo*10**-6,Zp*10**-3)
|
ec6f7b9e727ad8e83c31ebb12587779ef954f23a | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH5/EX5.24/5_24.sce | 8fc32bffb6610f133f481643c5e4427bf3771adc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 592 | sce | 5_24.sce | T1=300;//initial temperature in kelvin//
T2=600;//final temperature in kelvin//
T3=373;//initial temperature in kelvin//
T4=746;//final temperature in kelvin//
Cv=6.09;//molar heat capacity in cal per deg//
dS2=Cv*2.303*log10(T2/T1);//change in entropy for temperature change between 300k to 600k//
printf('Change in entropy for temperature change between 300k to 600k=dS2=%fcal per deg',dS2);
dS4=Cv*2.303*log10(T4/T3);//change in entropy for temperature change between 373k to 746k//
printf('\nChange in entropy for temperature change between 373k to 746k=dS4=%fcal per deg',dS4);
|
8921c6f12e05f9e4e1e2b398b220f5bb9beca369 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH23/EX23.15/Ex23_15.sce | b029d0ee4fe0138194933ab30dd1ce1a3c9a4cb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 118 | sce | Ex23_15.sce | clear
//Given
v=100
//Calculation
//
l=12.27/sqrt(v)
//Result
printf("\n Wavelength of an electron is %0.3f A", l)
|
8910d59d0923f2d96ed4c80d19b3b5649828198f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2492/CH7/EX7.1/ex7_1.sce | 7d7e48e90182d54942c9593991c4c8a019787be3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 440 | sce | ex7_1.sce | // Exa 7.1
format('v',6)
clc;
clear;
close;
// Given data
Ac = 35;//common mode gain in dB
Ac = 10^(Ac/20);
CMRR = 72;// in dB
CMRR = 10^(CMRR/20);
// CMRR = Ad/Ac
Ad = CMRR*Ac;
V1 = 0.16;// in mV
V2 = 0.18;// in mV
// Common mode signal
Vc = 1/2*(V1+V2);// in mV
// Difference mode signal
Vd = V2-V1;// in mV
// The output voltage
Vo = Ac*Vc+Ad*Vd;// in mV
Vo= Vo*10^-3;// in V
disp(Vo,"The output voltage in V is");
|
2e461cbfd21a0b1739c42e020209daf875a5dac2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH13/EX13.7/Ex13_7.sce | 7fa3eeb0cf68e016415caaae2b85b2847d997602 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | Ex13_7.sce | // chapter 13
// example 13.7
// Design a suitable circuit
// page-814
clear;
clc;
// given
Edc=200; // in V
V=30; // in V
// calculate
n=Edc/V; // calculation of number of plates in each branch
printf("\nThe number of plates is \t n=%.f is series",n);
// Note :The answer vary slightly due to precise calculation |
02b69a05b0e7b65145c7e5186ee052865f81c0f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3543/CH2/EX2.04/Ex2_4.sce | 90691e28778ba48a70a3031fb884f34215ff3561 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 530 | sce | Ex2_4.sce | // Example 2.4
// Calculation of (a) Numerical aperature and (b) critical angle
// Page no 480
clc;
clear;
close;
// Given data
n1=1.5; // Refractive index of core
n2=1.47; // Refractive index of cladding
// (a) Numerical aperature
NA= sqrt(n1^2-n2^2);
// (b) Critical angle
theatha=asind(n2/n1);
//Display result on command window
printf("\n Numerical aperature = %0.2f ",NA);
printf("\n Critical angle (degrees)= %0.1f ",theatha);
|
9f5cca6d096c106d4731cdd8d3ff6d7ad5a3f786 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2657/CH3/EX3.6/Ex3_6.sce | fff92ea3e2d010a9a550146954754a65139210b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,721 | sce | Ex3_6.sce | //Calculations on Otto cycle
clc,clear
//Given:
p=15 //Clearance volume in percentage of displacement volume
V_s=2.8 //Swept volume in litres
N=2500 //Engine speed in rpm
Q1=1400 //Heat added in kJ/kg
T1=27+273 //Temperature at inlet in K
P1=100 //Pressure at inlet in kPa
R=0.287 //Specific gas constant in kJ/kgK
//Solution:
//Refer fig 3.23
//By using gas tables
//Refer Ideal-gas properties of air
V2=(p/100)*(V_s/1000) //Volume at 2 (Clearance volume) in m^3
V3=V2 //Volume at 3 in m^3
V1=V_s/1000+V2,V4=V1 //Volume at 1, 4 in m^3
// Process 1-2
vr1=621.2,pr1=1.3860,u1=214.09,phi1=5.7016 //Relative specific volume, relative pressure, specific internal energy(kJ/kg), specific entropy(kJ/kgK) at 1 (from air tables)
vr2=vr1*(V2/V1) //Relative specific volume at 2
vr=[81.89 78.61],T=[660 670],pr=[23.13 24.46],u=[481.01 488.81] //Relative specific volume, temperature(K), relative pressure, specific internal energy(kJ/kg) (extracted from air tables)
//Finding the corresponding temperature at vr2 by interpolation
T2=interpln([vr;T],vr2) //Temperature at 2 in K
//Finding the corresponding relative pressure at T2 by interpolation
pr2=interpln([T;pr],T2) //Relative pressure at 2
//Finding the corresponding specific internal energy at T2 by interpolation
u2=interpln([T;u],T2) //specific internal energy at 2 in kJ/kg
P2=P1*(pr2/pr1) //Pressure at 2 in kPa
// Process 2-3
u3=Q1+u2 //Specific internal energy at 3 in kJ/kg
vr=[2.356 2.175 2.012],T=[2100 2150 2200],pr=[2559 2837 3138],u=[1775.3 1823.8 1872.8] //Relative specific volume, temperature(K), relative pressure, specific internal energy(kJ/kg) (extracted from air tables)
//Finding the corresponding relative specific volume at u3 by interpolation
vr3=interpln([u;vr],u3) //Relative specific volume at 3
//Finding the corresponding relative pressure at u3 by interpolation
pr3=interpln([u;pr],u3) //Relative pressure at 3
//Finding the corresponding temperature at u3 by interpolation
T3=interpln([u;T],u3) //Temperature at 3(maximum) in K (Round off error)
P3=P2*(T3/T2) //Pressure at 3(maximum) in kPa
// Process 3-4
vr4=vr3*(V4/V3) //Relative specific volume at 4
vr=[15.241 14.470],T=[1180 1200],pr=[222.2 238.0],u=[915.57 933.33],phi=[7.1586 7.1684] //Relative specific volume, temperature(K), relative pressure, specific internal energy(kJ/kg), specific entropy(kJ/kgK) (extracted from air tables)
//Finding the corresponding temperature at vr4 by interpolation
T4=interpln([vr;T],vr4) //Temperature at 4 in K
//Finding the corresponding specific internal energy at T4 by interpolation
u4=interpln([T;u],T4) //Specific internal energy at 4 in kJ/kg
//Finding the corresponding relative pressure at T4 by interpolation
pr4=interpln([T;pr],T4) //Relative pressure at 4
P4=P3*(pr4/pr3) //Pressure at 4 in kPa
//Finding the corresponding specific entropy at T4 by interpolation
phi4=interpln([T;phi],T4) //Specific entropy at 4 in kJ/kgK
// Process 4-1
Q2=u1-u4 //Heat rejected in kJ/kg
W=Q1+Q2 //Work done in kJ/kg
eta=W/Q1 //Efficiency
m=P1*V1/(R*T1) //Mass of air in cycle in kg
W=m*W*N/60 //Rate of work in kW
Delta_s=phi1-phi4-R*log(P1/P4) //Change in specific entropy between 1 and 4 in kJ/kgK
AE=Q2-T1*(Delta_s) //Available portion of energy of Q2 in kJ/kg (Round off error)
p_AE=AE/Q2 //Available energy in percentage of Q2
// Without using gas tables
g=1.4 //Specific heat ratio(gamma)
cv=0.718 //Specific heat at constant volume in kJ/kgK
r=V1/V2 //Compression ratio
eta!=1-1/r^(g-1) //Efficiency
// Process 1-2
T2=T1*(r)^(g-1) //Temperature at 2 in K
P2=P1/100*(r)^g //Pressure at 2 in bar
// Process 2-3
T3!=Q1/cv+T2 //Temperature at 3(maximum) in K
P3!=P2*T3!/T2 //Pressure at 3(maximum) in bar
// Process 3-4
T4=T3!*(1/r)^(g-1) //Temperature at 4 in K
Q2=cv*(T1-T4) //Heat rejected in kJ/kg
W!=Q1+Q2 //Work done in kJ/kg
eta!=W!/Q1 //Efficiency
power=m*W!*N/60 //Power in kW
Delta_s=cv*log(T1/T4) //Change in specific entropy between 1 and 4 in kJ/kgK
AE!=Q2-T1*Delta_s //Available portion of energy of Q2 in kJ/kg (Round off error)
p_AE!=AE!/Q2 //Available energy in percentage of Q2 (Round off error)
//Results:
printf("\n Constant specific heat:\n\t Maximum temperature, Tmax = %.1f K\n\t Maximum pressure, Pmax = %.1f bar\n\t Thermal efficiency, eta = %.2f percent\n\t Power = %.1f kW\n\t Available portion of heat rejected = %.1f kJ/kg (%.1f percent)",T3!,P3!,eta!*100,power,abs(AE!),p_AE!*100)
printf("\n Variable specific heat:\n\t Maximum temperature, Tmax = %.0f K\n\t Maximum pressure, Pmax = %.1f bar\n\t Thermal efficiency, eta = %.1f percent\n\t Power = %.1f kW\n\t Available portion of heat rejected = %.1f kJ/kg (%.1f percent)",T3,P3/100,eta*100,W,abs(AE),p_AE*100)
//Round off error in 'T3', 'AE', 'AE!', 'p_AE!'
|
c6e737e381256dcb92412d9e912abf2b6b71d8f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /182/CH4/EX4.4/example4_4.sce | 8e7a32f82981c25164ce03b1ba12805b040660c7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 494 | sce | example4_4.sce | // to determine the resistance values for the circuit in the figure4-7
//example 4-4 in page 97
clc;
//Given data
E=20e-3;//maximum input voltage = 20 mV
Ib=0.2e-6;//op-amp input current 0.2 micro amps
Im=100e-6;//FSD=100 micro amps
Rm=10e+3;// coil resistance in 10 k-ohm
//As I4>>Ib select
I4=1000*Ib;// current in ampere
// at full scale Im=100 micro-A
Vout=Im*Rm;
printf("R3=%d ohm\n",E/I4);
printf("R4=%.1f K-ohm\n",(Vout-E)/(1000*I4));
//result
//R3=100 ohm
//R4=4900 ohm |
3faaea7b1a3965af37d25eccf2d3ffd8d55ebb57 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3753/CH7/EX7.14/Ex7_14.sce | 643902258fe6752eb87352133198e0c26e8c49ae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 425 | sce | Ex7_14.sce | //Example number 7.14, Page number 7.19
clc;clear;close
// Variable declaration
a=4.57 // in m
h=1// in m
k=1// in m
l=1// in m
lamda=1.52 //in m
twotheta=33.5*%pi/180// radian
r=5 // radius
// Calculations
d=a/(h^2+k^2+l^2)^(1/2)// in m
sintheta=lamda/(2*d)// // unitless
X=r/tan(twotheta)// in cm
// Result
printf("d = %.2f Angstorms",d)
printf("\nsin(theta) = %.3f",sintheta)
printf("\nX = %.3f cm",X)
|
a8362abdc8dd61057783c5515b5515203295cadf | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/percent/%c_a_c.sci | 586477fe700afd8562026fbed2b6673196886057 | [
"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 | 129 | sci | %c_a_c.sci | function r=%c_a_c(a,b)
if size(b,'*')==1 then
b=b(ones(a))
elseif size(a,'*')==1 then
a=a(ones(b))
else
error(8)
end
r=a+b
|
dd1c107eaba852900c08acf1d45fa3a522648533 | 6227c5ef4e1c5d72cdebd6eac81f82161dda7e17 | /digi_dc_dc/Scilab/Thermal/fitfoster4.sci | 314f2c7de100d364be56efc2c97af0ce21bf1777 | [] | no_license | maxsimmonds1337/Scilab | b4e8a03a9fbeda4d8f6e51e07d205bcf51addce8 | b413659e2b697565c24ad440d158f5bd28203570 | refs/heads/master | 2022-11-04T23:17:50.045864 | 2020-06-13T20:35:24 | 2020-06-13T20:35:24 | 272,081,285 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 770 | sci | fitfoster4.sci | //Function that fits the thermal impedance response of 4 order Foster Network
//The data will be a table with tow rows first row is time second temperature
function [c]=fitfoster4(data)
//we extract the coefficients
//Initial values
c0=[1;1;1;1;1;1;1;1];
[copt, err] = datafit(myerror, data, c0);
//We extract the time to work with it
time=data(1,:);
Zdata=data(2,:);
//Check that the thing is OK
time_test=logspace(log10(time(1)),log10(time($)))
Zfitted=foster4(time_test,copt);
scf(1)
plot2d('ln',time_test,Zfitted,2);
plot2d('ln',time,Zdata,-1);
legend('Fitted','Data','in_upper_left')
c=copt;//return the data
endfunction
//Error function as defined by the datafit example
function e = myerror(c, z)
x = z(1); y = z(2);
e = y - foster4(x, c);
endfunction
|
bda7054560417d2e0d6f83bb92826dfda402cc63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3526/CH16/EX16.4/EX16_4.sce | a322ecd52bde31b8dde3b6d8cbf0847a79e55432 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sce | EX16_4.sce | clc;funcprot(0);//EXAMPLE 16.4
//page 486
// Initialisation of Variables
W1=116;................//Molecular Weight of Hexamethylene Diamine in g/mol
W2=146;................//Molecular Weight of Adipic Acid in g/mol
W3=18;.................//Molecular Weight of Water in g/mol
W4=120000;.............//Molecular Weight of 6,6-nylon in g/mol
//alculations
M=W1+W2-2*W3;..........//Molecular Weight of the repeated unit
DOP=W4/M;...............//Degree of Polymerization of 6,6-nylon
disp(DOP,"Degree of Polymerization of 6,6-nylon:")
|
a0109dd7be369a404df782a1afff464c563cf81e | f6b3a0c494772f6ca78e2f620df06d393dafcc51 | /fyjyf.sce | 66ede3d463b9c818f18b8bd12ddb0aab0c91fff5 | [] | no_license | rishabhthecoder/scilab | f914595f7af9682a731f49fc1203925c9529297a | f0460b09d16d7349f408183d4089553360ca4ba5 | refs/heads/master | 2020-03-31T05:47:43.762852 | 2018-10-07T16:06:20 | 2018-10-07T16:06:20 | 151,958,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 167 | sce | fyjyf.sce | x0=0;x1=0:0.1:2*%pi;
X=integrate('sin(x)','x',x0,x1);
norm(cos(x1)-(1-X))
x1=-10:0.1:10;
X=integrate(['if x==0 then 1,';
'else sin(x)/x,end'],'x',0,x1)
|
69e66c333bf2b9f62397869c04e843ccedc0bc1d | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH8/EX8.14/8_14.sce | ac5e19716d59b6f0783fd38ffa284850c8b4db35 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sce | 8_14.sce | cp = 1.005; T2 = 433; T1 = 298;
T0 = 298; R = 0.287; P2 = 8; P1 = 1;
Q = -100; m = 1;
W = Q + m*cp*(T1-T2);
AF = cp*(T2-T1)-T0*((cp*log(T2/T1))-(R*log(P2/P1))) ; // AF = af2-af1
e = AF/-W; // efficiency
disp("kW",W,"The power input is")
disp(e,"The second law efficiency of the compressor is")
|
8e5849808663ef72790880e0e2f9c2a964e80488 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3835/CH5/EX5.2/Ex5_2.sce | bbd74bbf307036be0511d1e959b69e088088dc89 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 898 | sce | Ex5_2.sce | clear
//
//case a
vab=400 //phase angle of 0
vbc=400 //phase angle of 120
vca=400 //phase angle of 240
//the phase currents are given by iab,ibc,ica
iab=400/150 //from the diagram
printf("\n iab= %0.5f A",iab)
//ibc=(400*314*50)/10**6 numerator with an angle of -120 and denominator angle of -90 which amounts to -30 in numerator
//this leads to simplifying with the formula as the value obtained for ibc after simplification from above mutiplied by values of cos(-30)+jsin(-30)
//therefore print as below
printf("\n ibc=5.4414-j3.1416 A")
//same method for ica
printf("\n ica=3.1463+j4.2056 A")
//case b
//ia=iab-ica
//ia=2.667-(3.1463+j4.2056)
//leads to 4.2328 with an angle of -96.51
//angle calculated using tan formula
printf("\n ia=4.2328 with an angle of -96.51 A")
//same for ib and ic
printf("\n ib=4.1915 with angle of -48.55 A")
printf("\n ic=7.6973 with an angle of 107.35 A")
|
057378faa8ad9cbb039b5751a3002f3f9cd25182 | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH7/EX7.5.2/exa7_5_2.sce | 416906422d29305033e3f676af793c5a190ec72d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 318 | sce | exa7_5_2.sce | //caption:stability_using_Routh-hurwitz_criterion
//example 7.5.2
//page 202
s=%s;
A=s^3+4*10^2*s^2+5*10^4*s+2*10^6;
b=coeff(A)
n=length(b)
B=routh_t(A)
disp(B,"routh table:");
c=0;
for(i=1:n)
if(B(i,1)<0)
c=c+1;
end
end
if(c>=1)
printf("\n system is unstable")
else("system is stable")
end |
835acb8d18b6d4ecf4a6c12fc20fdf748dde1a4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1682/CH4/EX4.2/Exa4_2.sce | 0ebbf6021229ad8028df449c729eef414a11647c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 890 | sce | Exa4_2.sce | //Exa 4.2
clc;
clear;
close;
//Bid 1: Alpha Elevator Inc.
disp("Bid 1: Alpha Elevator Inc. ");
P=450000;//in Rs
A=27000;//in Rs
i=15;//in % per annum
n=15;//in years
//Formula : (P/A,i,n)=(((1+i/100)^n)-1)/((i/100)*(1+i/100)^n)
PW=P+A*(((1+i/100)^n)-1)/((i/100)*(1+i/100)^n);//in RS
disp(PW,"The present worth for this bid in RS. : ");
//Bid 2: Beta Elevator Inc.
disp("Bid 2: Beta Elevator Inc. ");
P=540000;//in Rs
A=28500;//in Rs
i=15;//in % per annum
n=15;//in years
//Formula : (P/A,i,n)=(((1+i/100)^n)-1)/((i/100)*(1+i/100)^n)
PW=P+A*(((1+i/100)^n)-1)/((i/100)*(1+i/100)^n);//in RS
disp(PW,"The present worth for this bid in RS. : ");
disp("The total present worth cost of bid 1 is less than that of bid 2. Hence bid 1 is to be selected for implementation. That is, the Elevator from Alpha Elevator Inc. is to be purchased and installed in the new building."); |
685661762bccaafe09ce8f743203b468cdf0a1f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /980/CH6/EX6.16/6_16.sce | 3210388ba1b5c426e475b9dff2174d3c7fa1a091 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 214 | sce | 6_16.sce | clc;
clear;
format('e',11);
E=1;
epsilone_r=1.5;
Xe=epsilone_r-1; //Xe=electric susceptibility.
epsilone_0=8.85*10^-12;
P=epsilone_0*Xe*E;
disp(P,"The polarisation density(in C/m^2)=");
|
356025ca4ae223abbe0a34eb75da70d4d12db75e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2441/CH2/EX2.5/Ex2_5.sce | 2dca8e50b2e94258419056dd6738844f8625e252 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 849 | sce | Ex2_5.sce | //exa 2.5
clc;clear;close;
format('v',8);
I1=0.8;//p.u.
I2=1;//p.u.
Za=0.04+%i*0.12;//p.u.
Zb=0.03+%i*0.1;//p.u.
Zc=0.03+%i*0.12;//p.u.
V=1;//p.u.
//Solution :
V1=V+(I1+I2)*Za+I1*(Zb);//p.u.
V2=V+(I1+I2)*Za+I2*(Zc);//p.u.
P1=real(I1*V1);//p.u.
P2=real(I2*V2);//p.u.
fi1=atan(imag(V1),real(V1));
fi2=atan(imag(V2),real(V2));
disp("Loss Coefficients are : ")
B11=[real(Za)+real(Zb)]/[abs(V1)^2*cos(fi1)^2];//p.u.
disp(B11,"B11(p.u.) : ");
B22=[real(Za)+real(Zc)]/[abs(V2)^2*cos(fi2)^2];//p.u.
disp(B22,"B22(p.u.) : ");
B12=[real(Za)]/[abs(V1)*abs(V2)*cos(fi1)*cos(fi2)];//p.u.
disp(B12,"B12(p.u.) : ");
PL=P1^2*B11+P2^2*B22+2*P1*P2*B12;//p.u.
format('v',10);
disp(PL,"Transmission Loss(p.u.) : ");
//Note : Values calculated in the book are slightly wrong because of accuracy in calculation as compared to scilab accuracy.
|
f54126db04cb71b2268d63322b0f49463db940d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1088/CH23/EX23.1/Example1.sce | 2599a1e0013974118e97736c24b83a8fde1ccc6d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,093 | sce | Example1.sce | clear
flag=1
mode(-1)
clc
printf("Example 1 : Show the method of copying files with the read and write system calls \n")
disp("****************************************************************")
disp("Answer : ")
disp("INSTRUCTIONS : ")
halt(' ')
disp("1.These programs are part of systems programming in Unix and the commands have NO EQUIVALENT IN SCILAB")
halt(' ')
disp('2.However if possible some selected programmes have been TRIED TO BE IMPLEMENTED')
halt("")
disp('3.For most of the programmes whose equivalent is NOT THERE IN SCILAB,only the output has been printed as given in the textbook with no interactive input as in the programme below')
halt("")
disp("4.However the .c files which are displayed here are also made into a seperate file.If you are a unix user then try compiling and running the programme with gcc or cc compiler")
disp("5.The inconvenience is regretted.")
halt('.............Press [ENTER] to continue.....')
halt("")
clc
printf("\tUNIX SHELL SIMULATOR(DEMO VERSION WITH PRELOADED COMMANDS)\n\n\n")
i=0
i=i+1;f(i)='/* Program ccp.c -- Copies a file with the read and write system calls */'
i=i+1;f(i)=''
i=i+1;f(i)='#include <fcntl.h> /* For O_RDONLY , O_WRONLY , O_CREAT etc. */'
i=i+1;f(i)='#include <sys/stat.h> /* for S_IRUSR , S_IWUSR , S_IRGRP etc. */'
i=i+1;f(i)='#define BUFSIZE 1024 /* May not be the rigth size here */'
i=i+1;f(i)=''
i=i+1;f(i)='int main(void) {'
i=i+1;f(i)=' int fd1, fd2; /* File descriptors for read and write */'
i=i+1;f(i)=' int n; /* Number of characters returned by read */'
i=i+1;f(i)=' char buf[BUFSIZE]; /* BUFSIZE should be carefully chosen */'
i=i+1;f(i)=' fd1 = open('+ascii(34)+'/etc/passwd'+ascii(34)+',O_RDONLY);'
i=i+1;f(i)=' fd2 = open('+ascii(34)+'passwd.bak'+ascii(34)+',O_WRONLY | O_CREAT | O_TRUNC ,'
i=i+1;f(i)=' S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH); /* Mode 664*/'
i=i+1;f(i)=' '
i=i+1;f(i)=' while ((n = read(fd1, buf, BUFSIZE)) > 0) /* Return value of read is */'
i=i+1;f(i)=' write(fd2, buf, n); /* used by write as argument */'
i=i+1;f(i)=' '
i=i+1;f(i)=' close(fd1);'
i=i+1;f(i)=' close(fd2);'
i=i+1;f(i)=' exit(0); /* This would have closed all file descriptors */'
i=i+1;f(i)='}'
n=i
printf("\n\n$ cat ccp.c # to open the file emp.lst")
halt(' ')
u=mopen('ccp.c','wt')
for i=1:n
mfprintf(u,"%s\n",f(i))
printf("%s\n",f(i))
end
mclose(u)
halt('')
clc
halt(' ')
printf("$ cc ccp.c")
halt(' ')
printf("$ a.out")
halt(' ')
printf("$ cmp /etc/passwd passwd.bak")
halt(' ')
if getos()=='Linux' then
unix_w('cc ccp.c;a.out;cmp /etc/passwd passwd.bak')
else
printf("$ _ # Prompt returns-files identical")
halt(' ')
end
printf("\n\n\n$ exit #To exit the current simulation terminal and return to Scilab console\n\n")
halt("........# (hit [ENTER] for result)")
//clc()
printf("\n\n\t\t\tBACK TO SCILAB CONSOLE...\nLoading initial environment')
sleep(1000)
|
851deb06d7a0ac67f8b883b8d5a956da7dd8b346 | 5887829f5a0a005033807cf7dc4fb7231eb280ec | /Listing/chapter 4/Listing4117.sce | 5bc30bd098ab10e790139f30e4f03beaae50f6e8 | [] | no_license | joaolrneto/learning_scilab | 78ecc0019f167b57bc35647c4ac785ece01e443e | 9624c9a6736860a8a836b0f801256b6224756585 | refs/heads/main | 2023-03-17T22:17:51.853368 | 2021-03-15T20:58:34 | 2021-03-15T20:58:34 | 344,478,059 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 122 | sce | Listing4117.sce | clc
clear
clf(); // clear and reset a figure
t=0:%pi/20:2*%pi;
plot(t,sin(t),'ro-.',t,cos(t),'cya+',t,abs(sin(t)),'--mo')
|
18b9c196a4f586026af363e4c57e1c320238459b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH1/EX1.27/27.sce | eb4061944485229b1f01e60d38374a319c5c7ad1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 383 | sce | 27.sce | clc
// Given that
m_0 = 1.6e-27 // mass of proton in kg
KE = 500 // kinetic energy of electron in MeV
c = 3e8 // speed of light in m/sec
// Sample Problem 27 on page no. 54
printf("\n # PROBLEM 27 # \n")
printf(" Standard formula used \n")
printf("\n E = m*c^2 \n")
del_m = KE*1e6*1.6e-19/c^2 // change in mass of proton in kg
printf("\n Change in mass of proton is %e kg. ",del_m)
|
3bd94b8f1363555aaf505fbfb0c474883336a772 | 717ddeb7e700373742c617a95e25a2376565112c | /3428/CH21/EX14.21.9/Ex14_21_9.sce | 98c865954c5201bde7759a5b16cc4cfe500de9d8 | [] | 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 | 213 | sce | Ex14_21_9.sce | //Section-14,Example-5,Page no.-PC.17
//To calculate the temperature at which v_rms(He)=v_rms(H2).
clc;
//v_rms=sqrt((3*K*T)/m)
//K=1(let)
K=1
T_He=(3*K*200*4)/(3*K*2)
disp(T_He,'Required temperature(K)')
|
47188c06a45aaf8c6ce5a013d7b0a2b40dc08d7d | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH7/EX7.17/7_17.sce | e48dafc0122e353b61d42b9e1ddfa4e35cc598a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 253 | sce | 7_17.sce | uo=(4*%pi)*1E-7
F=750*1
disp(F)
dm=(16+20)/200
lc=dm*%pi
Hc=F/lc
disp(Hc)
flux=1.25/1000
Ac=(20-16)*2.5/10000
Bc=flux/Ac
disp(Bc)
R=F/flux
disp(R)
u=Bc/Hc
disp(u)
ur=u/uo
disp(ur) //calculation mistake in the book here |
9174be9dd08a474bb25e32397790cec56d3d9fb5 | 872b5ff8852c926ca1261037de07449db7ac51db | /area-03/cap11/taylor_ordem_2_numero_intervalos.sce | 31bf8d9b9f1b4aa2fab5ad5d05321e5f1a4227f2 | [] | no_license | BerdaSantos/numeric-calculus | 20e4c50d9f66f8582e89533a5101f597df6665ec | 0698409e7fa4158d6f7dd7e4d60f8a38538b3335 | refs/heads/master | 2020-05-14T18:07:02.017600 | 2018-11-23T01:50:38 | 2018-11-23T01:50:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,921 | sce | taylor_ordem_2_numero_intervalos.sce | clear
/************************************************
* NAO ESQUECER DE MUDAR u', u'' E u''' *
************************************************/
/**
* Usada nas de PVI com numero de digitos significations
* iteracao n-1: x.iiii... tem que ser igual a
* iteracao n : x.iiii... para 4 digitos nesse caso
*
* Moral e' meter um numero_intervalos gigante (e.g.100000)
* e ver o ultimo valor.
*
* Se a questao passa u(0) = u_dado, o u(t_dado) aproximado deve ser
* u(t_dado+1) no parametro.
*/
/**
* t_dado, u_dado: u dado -> u(t_dado) = u_dado
* t_final: tempo final -> u(t_final)
* numero_intervalos: quantidade de intervalos
* com_grafico: plota grafico da funcao se %T e nao se %F
*
* [u]: aproximacao com o metodo de Taylor de segunda ordem
* -> valor final e' o ultimo no vetor
*/
function [u]=taylor_2_n(t_dado, u_dado, t_final, numero_intervalos, com_grafico)
if(t_dado == 0) then
error(">>> Se u(0) = algo, passar t_dado como 1, e t_final como t_final+1");
end
t(1) = 1; // t(0) -> init
u(t_dado) = u_dado; // condicao inicial do PVI
h = (t_final-t(1)) / numero_intervalos; // tamanho do intervalo
for n=1:numero_intervalos
t(n+1) = t(n)+h;
F = f(t(n),u(n));
Ft = ft(t(n),u(n));
u(n+1) = u(n) + h*F + (h^2/2)*Ft;
// + ... h^n/n!*derivada de F(tn, un) de ordem n
end
ultimo = u(numero_intervalos+1);
if com_grafico then
plot(t,u,'r.-');xgrid
end
endfunction
disp("*************************************************************");
disp("*>>>> NAO esquece de trocar as derivadas <<<<<");
disp("*************************************************************");
// Funcao u' (DERIVADA DE PRIMEIRA ORDEM)
function y=f(t,u)
y=sin(u);
endfunction
// Funcao u'' (DERIVADA DE SEGUNDA ORDEM)
function y=ft(t,u)
y=cos(u)*u;
endfunction
|
39064c8aaa43732b08ca62116960c204f6b31c1f | 3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc | /Área 1/Revisão P1/ErroCondicionamentoEntradaSaida.sce | 4f6308dcb1127b3a722c0414262e08120721e216 | [
"MIT"
] | permissive | JPedroSilveira/numerical-calculus-with-scilab | 32e04e9b1234a0a82275f86aa2d6416198fa6c81 | 190bc816dfaa73ec2efe289c34baf21191944a53 | refs/heads/master | 2023-05-10T22:39:02.550321 | 2021-05-11T17:17:09 | 2021-05-11T17:17:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 496 | sce | ErroCondicionamentoEntradaSaida.sce | A = [1.000001 2 3;4 5 6;7 8 9]
x = [1;2;5]
b1 = A*x
b2 = b1 + [10^(-8);0;0] //Erro de 10^(-8) adicionado
x1 = resolve(A,b1)
x2 = resolve(A,b2)
//Residuos
residuo_x1 = b1 - A*x1
residuo_x2 = b2 - A*x2
//Erro Relativo
erro_entrada = norm(b1-b2)/norm(b1)
erro_saida = norm(x1-x2)/norm(x1)
//Kappa para cada norma
kappa1 = norm(A,1)*norm(inv(A),1)
kappa2 = norm(A,2)*norm(inv(A),2)
kappaInf = norm(A,%inf)*norm(inv(A),%inf)
erro_maximo = erro_entrada*kappa2 //Erro máximo de acordo com o capa
|
2cfa1685c4be5b432dd84530324a56d300edc8ac | 63e41587daefcf8180d9ee0a356e14531008e696 | /zpkdata.sci | 40152b3f4aecda6f46d6240fc85a079300a48670 | [] | no_license | rutup1595/gui-codes | 10f7415b3a0cb456043e19e9273d78c4860fcaae | 880b91beac114d16b1c854b27a770903c9ced6fe | refs/heads/master | 2020-12-05T08:39:00.817311 | 2019-08-16T05:00:40 | 2019-08-16T05:00:40 | 67,854,154 | 0 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 2,278 | sci | zpkdata.sci | //author :Rutuja moharil
// zero pole gain plot
//returns the zeros z, poles p, and gain(s) k and sample time Ts of the zero-pole-gain SISO and MIMO model sys.
function[x,t,o,dt]= zpkdata(sys,varargin)
n=length(varargin); //length of the input vairiable matrix
select typeof(sys) //check the system type
case "state-space"
sys=ss2tf(sys); //convert state space to tf model
end;
if (n==1) then //for SISO systems
if((strcmpi(varargin(1),'v'))==0) then //check whether the string 'v' is entered
x=roots(sys.num); //extracting the zeroes
t=roots(sys.den); // extracting the poles
[y,o]=factors(sys.num); //extracting gain
o=o;
dt=sys.dt // extracting sampling time
else
error('specify proper variable input')
end
else if(n==0) //for MIMO and array of SISO systems
m = size(sys);
nd = length(m);
if(nd>2) then
x=cell(size(sys,'r'),size(sys,'c'),size(sys,3))
y=cell(size(sys,'r'),size(sys,'c'),size(sys,3))
o=cell(size(sys,'r'),size(sys,'c'),size(sys,3))
for i=1:size(sys,'r')
for j=1:size(sys,'c')
for k=1:size(sys,3)
x(i,j,k).entries=(roots(sys(i,j,k).num));
//extracting the zeroes
t(i,j,k).entries=roots(sys(i,j,k).den);
// extracting the poles
// [y,m]=factors(n);
[y,nn]=factors(sys(i,j,k).num);
o(i,j,k).entries=nn;
// b= t(:,:,l);
// c=k(:,:,l);
dt=sys.dt;
end
end
end
else
x=cell(size(sys,'r'),size(sys,'c'))
t=cell(size(sys,'r'),size(sys,'c'))
o=cell(size(sys,'r'),size(sys,'c'))
for i=1:size(sys,'r')
for j=1:size(sys,'c')
x(i,j).entries=roots(sys(i,j).num);
t(i,j).entries=roots(sys(i,j).den);
[y,nn]=factors(sys(i,j).num);
o(i,j).entries=nn;
dt=sys.dt
// b= t(:,:,l);
// c=k(:,:,l);
end
end
end
end
end
endfunction
|
fa4a1a932d477405fd2a73ccf8a662df32b81430 | e9d5f5cf984c905c31f197577d633705e835780a | /data_reconciliation/nonlinear/scilab/nonlin_rn96_2/nonlin_rn96_2.sce | eaddb2932d2c30824cb253c3c57036e63e49bdb9 | [] | no_license | faiz-hub/dr-ged-benchmarks | 1ad57a69ed90fe7595c006efdc262d703e22d6c0 | 98b250db9e9f09d42b3413551ce7a346dd99400c | refs/heads/master | 2021-05-18T23:12:18.631904 | 2020-03-30T21:12:16 | 2020-03-30T21:12:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,266 | sce | nonlin_rn96_2.sce | // Data Reconciliation Benchmark Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
//Rao, R Ramesh, and Shankar Narasimhan. 1996.
//“Comparison of Techniques for Data Reconciliation of Multicomponent Processes.”
//Industrial & Engineering Chemistry Research 35:1362-1368.
//http://dx.doi.org/10.1021/ie940538b.
//Bibtex Citation
//@article{Rao1996,
//author = {Rao, R Ramesh and Narasimhan, Shankar},
//isbn = {0888-5885},
//journal = {Industrial \& Engineering Chemistry Research},
//month = apr,
//number = {4},
//pages = {1362--1368},
//publisher = {American Chemical Society},
//title = {{Comparison of Techniques for Data Reconciliation of Multicomponent Processes}},
//url = {http://dx.doi.org/10.1021/ie940538b},
//volume = {35},
//year = {1996}
//}
// 12 Streams
// 7 Equipments
// 4 Compounds
getd('.');
getd('../functions');
clear tstraoflow_full tstraoflow tstraocomp_full tstraocomp At umeas fixed red lower upper var_lin_type constr_lin_type constr_lhs constr_rhs just_measured observ non_obs spec_cand x_sol f_sol lower upper extra xmfull ncomp var jac nc nv nnzjac nnz_hess sparse_dg sparse_dh lower upper var_lin_type constr_lin_type constr_lhs constr_rhs
// In the original paper, streams 2 to 12 are unmeasured,
//theses values are estimates givem by the paper's original author.
tstrao_flow_full = [691.67, 727.54, 699.36, 687.15, 35.87, 12.51, 27.88 , 23.36, 22.67, 4.79, 4.52, 9.31]
//information of measured/unmeasured(-1)/fixed(-5)
tstrao_flow = [-5, -1, -1, -1, -1, -1, -1 , -1, -1, -1, -1, -1]
tstrao_comp_full = [0.41 0.86 0.32 0.1 9.6 12.4 22 8.1 22.4 23 47.5 34.9;
2.58 2.63 2.88 2.94 3.64 4.1 3.52 4.38 4 4.82 2.56 3.5;
4 4.38 4.5 4.5 11.8 12.8 12.2 13.2 12.4 14.8 10.2 12.2;
93.01 92 92.30 92.46 74.96 70.7 62.28 74.32 66.2 57.38 39.74 49.4]/100
//information of measured/unmeasured(-1)/fixed(-5)
tstrao_comp = [0.41 0.86 0.32 0.1 9.6 12.4 22 8.1 22.4 23 47.5 34.9;
2.58 2.63 2.88 2.94 3.64 4.1 3.52 4.38 4 4.82 2.56 3.5;
4 4.38 4.5 4.5 11.8 12.8 12.2 13.2 12.4 14.8 10.2 12.2;
-100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100]/100
//The jacobian of the constraints
// 1 2 3 4 5 6 7 8 9 10 11 12
jac = [ 1 -1 0 0 1 0 0 0 0 0 0 0
0 1 -1 0 0 0 -1 0 0 0 0 0
0 0 1 -1 0 -1 0 0 0 0 0 0
0 0 0 0 -1 1 0 1 0 0 0 0
0 0 0 0 0 0 0 -1 1 0 0 -1
0 0 0 0 0 0 1 0 -1 1 0 0
0 0 0 0 0 0 0 0 0 -1 -1 1 ];
// 1 2 3 4 5 6 7 8 9 10 11 12
// organizing the vector for the constraints residuals
xmfull=[tstrao_flow_full(:);matrix(tstrao_comp_full',-1)];
xm=xmfull;
//the variance proposed by the original author
sd = (0.01*xmfull);
//recalculating variance
for i=1: length(sd)
if sd(i) <= 0.0001
sd(i) = 0.0001;
end
end
var = sd.^2;
ncomp=4;
//observability/redundancy tests
[At,umeas, fixed] = jac_compound_residuals(jac,ncomp,tstrao_flow_full,tstrao_comp_full, tstrao_flow, tstrao_comp);
[red, just_measured, observ, non_obs, spec_cand] = qrlinclass(At,umeas)
// reconcile with all measured. To reconcile with only redundant variables, uncomment the "red" assignments
measured = setdiff([1:length(xmfull)], umeas);
// to reconcile with all variables, comment the line above and uncomment bellow
//measured = [1:length(xmfull)];
red=measured;
// to run robust reconciliation,, one must choose between the folowing objective functions to set up the functions path and function parameters:
//WLS = 0
// Absolute sum of squares = 1
//Cauchy = 2
//Contamined Normal = 3
//Fair = 4
//Hampel = 5
//Logistic = 6
//Lorenztian = 7
//Quasi Weighted = 8
// run the configuration functions with the desired objective function type
obj_function_type = 0;
exec ../functions/setup_DR.sce;
// to run robust reconciliation, it is also necessary to choose the function to return the problem structure
// ipopt needs some information about the problem, such as jacobian and hessian structure,
[nc, nv, nnzjac, nnz_hess, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = structure_compound(jac,ncomp, tstrao_flow_full,tstrao_comp_full);
params = init_param();
// We use the given Hessian
params = add_param(params,"hessian_approximation","exact");
// notice that the option bellow must only be set when the Hessians are constant,
// eg: weighted least squares objective function and linear or bilinear Jacobian
//params = add_param(params,"hessian_constant","yes");
params = add_param(params,"derivative_test","first-order");
//params = add_param(params,"derivative_test","second-order");
//params = add_param(params,"derivative_test_print_all","yes");
params = add_param(params,"tol",1e-4);
params = add_param(params,"acceptable_tol",1e-4);
params = add_param(params,"mu_strategy","monotone");
params = add_param(params,"journal_level",5);
params = add_param(params,"fixed_variable_treatment", "relax_bounds");
disp('begore start ipopt')
//according to the original paper, we fix the measured total flow
lower(fixed) = xmfull(fixed);
upper(fixed) = xmfull(fixed);
tic
//xrd=rand(size(xmfull,1),size(xmfull,2));
//[x_sol, f_sol, extra] = ipopt(xrd, objfun, gradf, confun, dg1, sparse_dg, dh, sparse_dh, var_lin_type, constr_lin_type, constr_rhs, constr_lhs, lower, upper, params);
[x_sol, f_sol, extra] = ipopt(xmfull, objfun, gradf, confun, dg1, sparse_dg, dh, sparse_dh, var_lin_type, constr_lin_type, constr_rhs, constr_lhs, lower, upper, params);
toc
mprintf("\n\nSolution: , x\n");
for i = 1 : nv
mprintf("x[%d] = %e\n", i, x_sol(i));
end
mprintf("\n\nObjective value at optimal point\n");
mprintf("f(x*) = %e\n", f_sol);
//printing results
[Aeqp, Astreams] =size(jac)
xx=matrix(x_sol,Astreams,ncomp+1)
TotalFlowMeasured = xx(:,1)'
compoundMeasured = 100*xx(:, 2:$)
|
2cbc61c306a009443744f8f9cbebfbc34215be13 | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH3/EX3.8/example8.sce | ef0dcfcc165c475bb52f307ed8fca1eec29d72eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 446 | sce | example8.sce |
// Example 3-8, page 69`
clear;clc; close;
// Given data
Rl=10;// load resistance in ohms
Rb=0.23;// bulk resistance in ohms
// diode drop=0.7 volts
// Calculations
Rt=Rl+Rb;// total resistance in ohms
Vt=10-0.7;// voltage of battery-diode drop
I=Vt/Rt;// load current
Vl=I*10;// load voltage
Vd=10-Vl;// source voltage-load voltage
P=Vd*I;
disp("Amperes",I,"Load Current=")
disp("Volts",Vl,"Load Voltage=")
disp("Watts",P,"Diode power=")
|
accd9092dddff49daca6d197452c73b82cb3e5ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /1092/CH7/EX7.8/Example7_8.sce | fc8a8afc0b91ce85b1cade68e26008b115e21482 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,910 | sce | Example7_8.sce | // Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 7: PARALLEL OPERATION
// Example 7-8
clear; clc; close; // Clear the work space and console.
// Given data
// EMF's are opposed exactly by 180 degrees
E_gp1 = 200 ; // Terminal voltage of alternator 1 in volt
E_gp2 = 220 ; // Terminal voltage of alternator 2 in volt
R_a1 = 0.2 ; // armature resistance of alternator 1 in ohm
R_a2 = 0.2 ; // armature resistance of alternator 2 in ohm
X_a1 = 2 ; // armature reactance of alternator 1 in ohm
X_a2 = 2 ; // armature reactance of alternator 2 in ohm
Z_p1 = R_a1 + %i*X_a1 ; // Effective impedance of alternator 1 in ohm
Z_p2 = R_a1 + %i*X_a2 ; // Effective impedance of alternator 2 in ohm
// Switches are closed at the proper instant for paralleling.
// Calculations
// case a
E_r = (E_gp2 - E_gp1) ; // Effective voltage generated in volt
I_s = E_r / (Z_p1 + Z_p2); // Synchronizing current in the armature in A
I_s_m = abs(I_s);//I_s_m=magnitude of I_s in A
I_s_a = atan(imag(I_s) /real(I_s))*180/%pi;//I_s_a=phase angle of I_s in degrees
P_2 = E_gp2 * I_s_m * cosd(I_s_a); // Generator action developed by alternator 2 in W
// case b
theta = I_s_a;
// P_1 = E_gp1 * I_s_m * cosd(180 - theta)
// P_1 = -E_gp1 * I_s_m * cosd(theta),
P_1 = -E_gp1 * I_s_m * cosd(theta); // Synchronizing power received by alternator 1 in W
// case c
// but consider +ve vlaue for P_1 for finding losses, so
P1 = abs(P_1);
losses = P_2 - P1 ; // Power losses in both armatures in W
check = E_r * I_s_m * cosd(I_s_a); // Verifying losses by Eq.7-7
double_check = (I_s_m)^2 * (R_a1 + R_a2); // Verifying losses by Eq.7-7
// case d
V_p2 = E_gp2 - I_s*Z_p1 ; // Generator action
V_p1 = E_gp1 + I_s*Z_p1 ; // Motor action
// Display the results
disp("Example 7-8 Solution : ");
printf(" \n a: E_r = %d V ",E_r);
printf(" \n I_s = %.2f <%.2f A ", I_s_m, I_s_a );
printf(" \n P_2 = %.1f W (total power delivered by alternator 2 ) \n", P_2);
printf(" \n b: P_1 = %f W (synchronizing power received by alternator 1)",P_1);
printf(" \n Note:Scilab considers phase angle of I_s as %f instead ",I_s_a);
printf(" \n of -84.3 degrees,so slight variation in the answer P_1.\n");
printf(" \n c: Consider +ve value of P_1 for calculating losses");
printf(" \n Losses: P_2 - P_1 = %.1f W ",losses );
printf(" \n Check: E_a*I_s*cos(theta) = %.1f W ",check );
printf(" \n Double check : (I_s)^2*(R_a1+R_a2) = %.1f W as given in Eq.(7-1)",double_check );
printf("\n\n d: From Fig.7-14, V_p2, the terminal phase voltage of ");
printf(" \n alternator 2, is, from Eq.(7-1)");
printf(" \n V_p2 = %d V (generator action)\n\n From section 7-2.1 ",V_p2);
printf(" \n V_p1 = %d V ( motor action)\n",V_p1);
printf(" \n e: The phasor diagram is shown in Fig.7-14.");
|
5112195e71e93349b56ee06f9ea643196fe6d2be | 8e63d59cd69e5695197d294ff8af6a51d39680b5 | /corpus/lists.tst | b9aea4811d64d42b41f1339e03bec85806b54683 | [
"MIT"
] | permissive | tautologico/tree-sitter-racket | d4cf85e6f460432fd1e099d10cf23a9c604a9dd4 | a3e0890c6a166e99e35fe5acb7c510408cdf2d5b | refs/heads/master | 2020-04-20T12:26:20.829572 | 2019-10-29T17:27:32 | 2019-10-29T17:27:32 | 168,843,295 | 8 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 1,248 | tst | lists.tst | =====
Lists
=====
#lang test
(max 11 55 33)
'(1 . 2)
[list "a" "c"]
'{}
(cond [(zero? n) 0]
[else (+ n m)])
---
(source_file
(lang_line (symbol))
(datum (list_or_pair (datum (symbol))
(datum (number))
(datum (number))
(datum (number))))
(datum (quoted_datum (datum (list_or_pair (datum (number))
(dot)
(datum (number))))))
(datum (list_or_pair (datum (symbol))
(datum (string))
(datum (string))))
(datum (quoted_datum (datum (list_or_pair))))
(datum (list_or_pair (datum (symbol))
(datum (list_or_pair (datum (list_or_pair (datum (symbol))
(datum (symbol))))
(datum (number))))
(datum (list_or_pair (datum (symbol))
(datum (list_or_pair (datum (symbol))
(datum (symbol))
(datum (symbol)))))))))
|
a552b62f6f6b1ff7ed806c1ebab5c51fbf55b36c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1892/CH4/EX4.6/Example4_6.sce | 801233c1c22557f8e1f9b84b6f69ac2104c0a0d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 743 | sce | Example4_6.sce | // Example 4.6
clear; clc; close;
format('v',9);
// Given data
lm=6*10^-3;//magnet length in m
g=2*10^-3;//in m
Tph=200;//turns
Br=0.3;//in T
l=50*10^-3;//in m
n=25*10^-3;//in m
I=10*10^-3;//in A
N=200;//turns
mo=4*%pi*10^-7;//permittivity
//Calculations
Am=(2/3)*%pi*[n-g-lm/2]*l;//in m^2
Ag=[(2/3)*%pi*(n-g/2)+2*g]*(l+2*g);//in m^2
Cfi=Am/Ag;//unitless
//For normal BLDG motor, HC=606 KA/M
HC=606;//in KA/M
Hm=N*I/l;//KA/M
Bm=Br*[1-Hm/HC];//in T
Mrec=(Br-Bm)*10^-3/(4*%pi*10^-7*40);
Pmo=mo*Mrec*Am/lm;//in m-Wb/AT
Pmo=Pmo*10^-3;//in Wb/AT
Kc=1.05;//given constant
g_dash=Kc*g;//in m
Rg=g_dash/mo/Am;
Bg=Cfi*Br/(1+Pmo*Rg);//in T
Torque=2*Tph*Bg*l*n*I;//in N-m
disp(Torque,"Torque per phase in N-m : ");
|
b0c66c87ad1fa3472f7a509431b989355e7b4511 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2747/CH15/EX15.1/Ex15_1.sce | 78f61241b9708fc421f838a2ff5f8785b18a076c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 319 | sce | Ex15_1.sce | clc
clear
//Initialization of variables
disp("From Table B-4,")
h=1187.2 //Btu/lbm
t=328 //F
//calculations
p2=100 //psia
u2=1187.2 //Btu/lbm
t2=540 //F
dt=t2-t
//results
printf("Final temperature of steam = %d F",t2)
printf("\n Final pressure = %d psia",p2)
printf("\n Change in temperature = %d F",dt)
|
a6cc2be63546835df9ef3ecdcd3a9d785e7bd47b | 4649da03878fae55d14dca483bb2bfa2213004e5 | /ais/tags/0.0.1/testaisclient/testhttpxmlamp.tst | 3d4e7fb0fb835f6845486f6b724fc85316d362f7 | [] | no_license | rms1000watt/aiserver | 2fba20a1199e1ae366176bbd9db0ffc12ab671c3 | dbc81369dfc68732aff858a585656f0c7a85b453 | refs/heads/master | 2023-01-01T18:58:15.139028 | 2020-10-30T18:21:13 | 2020-10-30T18:21:13 | 308,709,836 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,589 | tst | testhttpxmlamp.tst | # ais/testaisclient/testxmlhttpamp.txt
# Tests using XML documents via a HTTP port
# NOTES
# 1. See testsuite.tst for more info on constructing tests.
# CHANGE HISTORY (put latest entry at top)
# Version Date Who Change
# 1.0104 9/8/2006 tlw Fix error in protocol for (noop).
# 1.0062 5/17/2005 tlw Test Http port using XML
# -------------------------------------------------------------------------------------------------
# probe
H0://$host$:$httpport$/amp.dll?
result|
# -------------------------------------------------------------------------------------------------
# (noop)
H0://$host$:$httpport$/amp.dll?_eval=%28noop%29
&httpsessionid=(\d+)
sessionid=$httpsessionid$
# -------------------------------------------------------------------------------------------------
# Probe. Empty post.
P1://$host$:$httpport$/amp.dll
result|
# eval Url-encoded post. _eval=(writeln {Hello from query string})
P1://$host$:$httpport$/amp.dll _eval=%28writeln+{Hello+from+query+string}%29
true
# -------------------------------------------------------------------------------------------------
# eval Plain text post. _eval=(writeln {Hello from query string})
P1://$host$:$httpport$/amp.dll _eval=(writeln {Hello from query string})
true
# -------------------------------------------------------------------------------------------------
# xml - Url-encoded query. <amp target="_ais" act="noop"/>
H0://$host$:$httpport$/amp.dll?xml=%3Camp+target%3D%22_ais%22+act%3D%22noop%22%2F%3E
<amp act="noop" status="0" target="_ais" xtype="return"><result>sessionid=$httpsessionid$</result>
# -------------------------------------------------------------------------------------------------
# xml - Plain text Post. Content-Type text/xml. <amp target="_ais" act="noop"/>
P1://$host$:$httpport$/amp.dll <amp target="_ais" act="noop"/>
<amp act="noop" status="0" target="_ais" xtype="return"><result>sessionid=$httpsessionid$</result>
# -------------------------------------------------------------------------------------------------
# xml - Plain text Post. xml=<amp target="_ais" act="noop"/>
P1://$host$:$httpport$/amp.dll xml=<amp target="_ais" act="noop"/>
<amp act="noop" status="0" target="_ais" xtype="return"><result>sessionid=$httpsessionid$</result>
# -------------------------------------------------------------------------------------------------
# All built-in AMP functions are tested in testxmlamp.txt
# -------------------------------------------------------------------------------------------------
|
9918c51b51cbc88c4da99bac47556701df1c477c | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.0/Unix/scilab-2.0/macros/elem/tan.sci | 0549d3cc4fb2146994df7baa00d435ee28e79822 | [
"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 | 173 | sci | tan.sci | function [t]=tan(x)
//Syntax : [t]=tan(x)
//
// Tangent
//!
if type(x)<>1 then error(53),end
[m,n]=size(x)
if m<>n then t=sin(x)./cos(x)
else t=sin(x)/cos(x)
end
|
25e94819fe67d7f5557d49a280cf61ed185179cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /55/CH3/EX3.10/3ex10.sci | e2d99fdd2c67a879d23acc8df164c4977a469d74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | 3ex10.sci | x = poly(0, 'x');
p = 2*x^3-7*x^2+4*x-15;
disp(p,'the polynomial is')
k=horner(p,5);
disp(k,'value of the polynomial at x=5 is') |
11f9ffa3fd1f4601904f3d334a9ccaa4dc815bfb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH9/EX9.1/Ex9_1.sce | 83a678291323c1459226e2909a420bf81968da13 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 878 | sce | Ex9_1.sce | // Problem no 9.1,Page no.232
clc;clear;
close;
D=15 //cm //External Diameter
t=2 //cm //Thickness
L=6 //m //Length of cyclinder
E=80*10**9 //Pa
alpha=1*1600**-1
sigma_c=550*10**6 //Pa //compressive stress
//Calculations
d=D-2*t //m //Internal Diameter
A=%pi*4**-1*(D**2-d**2)*10**-4 //m**2 //Areaof Tube
I=%pi*64**-1*(D**4-d**4)*10**-4 //m**4 //M.I of tube
k=(I*A**-1)**0.5 //m //Radius of Gyration
P_e=%pi**2*E*I*(L**2)**-1 //Euler's Load
P_R=sigma_c*A*(1+alpha*(L*k**-1)**2)**-1 //According to Rankine's Formula
//The Answer in Textbook is incorrect for P_R
//Now again from Rankine's Formula
//As K=I*A**-1,so substituting in below equation
//Thus Stress calculated from Euler's Formula cannot exceed the yield stress of 550 MPa
L=(%pi**2*E*k**2*(550*10**6)**-1)**0.5*10**-2 //m //Length of cyclinder
//Result
printf("The Length of strut is %.2f",L);printf(" cm")
|
baca615793f1a8285b960b399c9ff7f4fa60785e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1484/CH10/EX10.10/10_10.sce | 23fb07e3cbd98e1d50dbc3e744c28576740cb383 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 387 | sce | 10_10.sce |
clc
//initialisation of variables
g= 32.2 //ft/sec^2
sct= 1.6
sl= 0.8
K= 0.98
dh1= 4 //ft
W= 62.4 //lbs/ft^3
d1= 8 //in
d2= 6 //in
//CALCULATIONS
dp= dh1*((sct/sl)-1)
C= sqrt(2*g)*%pi*(d1/24)^2 /sqrt((d1^2/d2^2)^2 -1)
Q= C*K*sqrt(dh1)
//RESULTS
printf ('Discharge passing through the pipe= %.1f cuses ',Q)
//The answer given in textbook is wrong. Please verify it.
|
5ae85479fffa9935ec0a68ae109c9b2d5440d9a0 | 68e53df229b123d7681a4f7fa4db43b4982d5362 | /impulseplot.sci | 23256b949a62e30e7d2dd4ffdba393d5fd43f29d | [] | no_license | yeoleparesh/Control-system | 06c30e594d51fec7a8ffabc452a7866b38604a23 | dee7fbfd3c2c46cc1d4d0a3cb8af45d918da972b | refs/heads/master | 2021-01-17T12:38:05.661769 | 2019-01-03T12:03:53 | 2019-01-03T12:03:53 | 59,283,431 | 0 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 15,144 | sci | impulseplot.sci | function [o]=impulseplot(varargin)
//Calling Sequence
//impulse(sys)
//impulse(poly1,poly2)
//impulse(sys,Tfinal)
//impulse(sys,Tvector)
//impulse(sys1,sys2,...,T)
//impulse(sys1,'r',sys2,'y--',sys3,'gx',..)
//
//Parameters
//sys:- sys can be SISO array,MIMO system or SISO either discrete or continuous
//poly1:-numerator of the system
//poly2:-denominator of the system
//Tfinal:-time upto which the response is to be calculated/plotted.
//Tvector:-time vector through which the response is to be plotted.For Discrete time, the sampling time must match the spacing of the given time vector.
//o -handle of the figure plotted to customize the plot appearances
//
//Description
//
//Gives the impulse response of continuos and discrete SISO as well as MIMO systems
//impulseplot Plot impulse response of linear systems.
//impulseplot, an extension of IMPULSE, provides a command line interface for customizing the plot appearance.
//
//
// Note: In discrete time, IMPULSE computes the response to a unit-area
// pulse of length Ts and height 1/Ts where Ts is the sample time. This
// pulse approaches the continuous-time Dirac impulse delta(t) as Ts goes
// to zero.
//Examples
//s=poly(0,'s');
//sys=syslin('c',(s+3)/(s^3+4*s+2));
//impulseplot(sys) plots the impulse response of sys
//sys1=ssrand(2,3,4);
//impulseplot(sys1)
//impulseplot(sys,sys1)
//impulseplot(sys,'--r',sys1,'gx')
//aa=pid(rand(2,3,4),2,3,4);
//impulseplot(aa,%T)
//Authors
// Paresh Yeole
// emailid:-yeoleparesh@students.vnit.ac.in
[lhs,rhs]=argn(0);
ni=length(varargin);
flag=0;
if rhs == 0 | (rhs == 1 & typeof(varargin($)) <> ['state-space', 'rational'] | (rhs == 1 & size(varargin($)) == [0 0])) then
error(msprintf(gettext("%s: Wrong type for input argument \n#%d: State-space or transfer function of linear system expected or two polynomials expected.\n"),"impulse",1))
end
if typeof(varargin(1)) <> ['state-space','rational','polynomial'] then
error(msprintf(gettext("%s: Wrong type for first input argument\n#%d: State-space or transfer function expected.\n"),"impulse",1))
end
t=0:0.1:100;
if rhs > 1 then
if typeof(varargin($)) == 'constant' then
if size(varargin($)) == [1 1] then
if varargin($) <= 0 then
error(msprintf(gettext("%s: The final time value must be a positive real number.\n"),"impulse"))
end
tFinal = varargin($)
t =0:0.01:tFinal;
flag=1;
elseif isequal(size(varargin($)),[1 1]) == %f then
// finding that the time vector has positive time value
if(and(diff(varargin($)<0))) then //if time vector is not monotonically increasing
error(msprintf("impulse: the time vector must be real, finite, and must contain monotonically increasing and evenly spaced time samples."));
end
flag=1;
tempTimeIndex = find(varargin($) >= 0) //finding the positive no.'s index in the vector
if isequal(size(varargin($)),size(tempTimeIndex)) == %t then
temp=varargin($);
if ((typeof(varargin(1))<>['polynomial']) & (varargin(1).dt<>'c')) then
if(varargin(1).dt=='d') then
dt=1;
else
dt=varargin(1).dt;
end
if(dt<>(temp(2)-temp(1))) then
error(msprintf("impulse: for discrete time system the vector difference must be equal to the sample time of the system"));
end
end
t = varargin($)
else
tempTime=varargin($);
tempTime = tempTime(tempTimeIndex(1):tempTimeIndex($))
t = tempTime
end
end
end
end
///////////////////////////////////////////////////
//getting the sublot credentials
for i=1:rhs
ttf=varargin(i);
if typeof(ttf)=='state-space' then
ttf=ss2tf(ttf);
end
if typeof(ttf)=='rational' then
xx1(i)=size(ttf,'r');
yy1(i)=size(ttf,'c');
end
end
/////////////////////////////////printf("\n%d,%d",max(xx1),max(yy1));
CIindex=1;
for i=1:rhs
CIindex=CIindex+1;
I=1;
if(or(typeof(varargin(i))==['rational','state-space']) & ((varargin(i).dt)<>'c')) then
if((typeof(varargin($))=='constant') & (size(varargin($)) <> [1 1]) & ((varargin(i).dt)<>(t(2)-t(1)))) then
error(msprintf("sampling time of the given system must match the step of the vector"));
elseif((typeof(varargin($))=='constant') & (size(varargin($)) == [1 1])) then
temptime=t;
if(varargin(i).dt=='d') then
dt=1
else
dt=varargin(i).dt
end
t=0:varargin(i).dt:varargin($);
else
//temptime=t;
if(varargin(i).dt=='d') then
dt=1;
else
dt=varargin(i).dt;
end
t=0:varargin(i).dt:t($);
end
end
if typeof(varargin(i))=='state-space' then
varargin(i)=ss2tf(varargin(i));
end
/////////////////////////SISO system//////////////////////////////
if((typeof(varargin(i))=='rational') & (size((varargin(i)),'*')==1)) then
//sysI=sysI+1;
if flag<>1 then
pp=pole(varargin(i))
pp=cell2mat(pp);
ppr=real(pp)
if(varargin(i).dt=='c') then
y=csim('impuls',t,varargin(i));
else
y=flts(eye(1,length(t)),varargin(i));
end
if or(ppr > 0) then
//ch=find(y>=10^12 | y<=-10^12);
dompol=max(ppr);
tfinal=25/(dompol*log10(%e));
if((varargin(i).dt)<>'c') then
//t=0:varargin(i).dt:t(ch(1));
t=0:varargin(i).dt:tfinal;
else
//t=0:0.1:t(ch(1))
t=0:0.1:tfinal;
end
elseif and(ppr<=0) then
//y=csim('impuls',t,varargin(i));
for iii=length(t):-1:1
if(y(iii)<-0.002 | y(iii)>0.002) then
break;
end;
end
if((varargin(i).dt)<>'c') then
t=0:varargin(i).dt:(iii-1)*0.1;
else
t=0:0.1:(iii-1)*0.1;
end
end
end
if i<>rhs & typeof(varargin(i+1))=='string' then
if (varargin(i).dt=='c') then
G=csim('impuls',t,varargin(i));
else
G=flts(eye(1,length(t)),varargin(i));
end
subplot(max(xx1),max(yy1),I);
plot(t,G,varargin(i+1));
if (varargin(i).dt<>'c') then
hh=gce();
hh.children.polyline_style=2;
end
else
if (varargin(i).dt=='c') then
G=csim('impuls',t,varargin(i));
else
G=flts(eye(1,length(t)),varargin(i));
end
subplot(max(xx1),max(yy1),I);
plot(t,G);
hh=gce();
hh.children.foreground=CIindex;
if (varargin(i).dt<>'c') then
hh.children.polyline_style=2;
end
end
////////////////SISO array///////////////////////////
elseif typeof(varargin(i))=='rational' & size(varargin(i),'*')<>1 & i<>rhs & rhs<>1 & typeof(varargin(i+1))=='boolean' then
if(varargin(i+1)<>%T ) then
error(msprintf("impulse:wrong input arguments"));
end
xx=size(varargin(i),'r');
yy=size(varargin(i),'c');
zz=size(varargin(i),3);
tt=varargin(i);
I=1;
if flag<>1 then
for ii=1:xx
for jj=1:yy
for kk=1:zz
pp=pole(tt(ii,jj))
pp=cell2mat(pp);
ppr=real(pp)
if(varargin(i).dt=='c') then
y=csim('impuls',t,tt(ii,jj,kk));
else
y=flts(eye(1,length(t)),tt(ii,jj,kk));
end
if or(ppr > 0) then
//ch=find(y>10^30);
dompol=max(ppr);
tfinal=25/(dompol*log10(%e));
temp(ii,jj)=tfinal;
//temp=t(ch(1));
elseif and(ppr<=0) then
for iii=length(t):-1:1
if(y(iii)<-0.002 | y(iii)>0.002) then
break;
end;
end
temp(ii,jj)=(iii-1)*0.1;
end
end
end
end
if((varargin(i).dt)<>'c') then
t=0:varargin(i).dt:max(temp);
else
t=0:0.1:max(temp);
end
//t=0:0.1:max(temp);
end
if i<rhs-1 & typeof(varargin(i+2))=='string' then
for ii=1:xx
for jj=1:yy
for kk=1:zz
if(varargin(i).dt=='c') then
G=csim('impuls',t,tt(ii,jj,kk));
else
G=flts(eye(1,length(t)),tt(ii,jj,kk));
end
title(msprintf(gettext("input(1)-output(1)")));
plot(t,G,varargin(i+2));
hh=gce();
if(varargin(i).dt<>'c') then
hh.children.polyline_style=2;
end
//I=I+1;
end
end
end
else
for ii=1:xx
for jj=1:yy
for kk=1:zz
if(varargin(i).dt=='c') then
G=csim('impuls',t,tt(ii,jj,kk));
else
G=flts(eye(1,length(t)),tt(ii,jj,kk))
end
title(msprintf(gettext("input(1)-output(1)")));
// ylabel("output(%d)",jj);
plot(t,G);
hh=gce();
hh.children.foreground=CIindex;
if(varargin(i).dt<>'c') then
hh.children.polyline_style=2;
end
//I=I+1;
end
end
end
end
/////////////////////////////MIMO-system////////////////////////
elseif ((typeof(varargin(i))=='rational') & (size(varargin(i),'*')<>1)) then
xx=size(varargin(i),'r');
yy=size(varargin(i),'c');
tt=varargin(i);
I=1;
if flag<>1 then
for ii=1:xx
for jj=1:yy
pp=pole(tt(ii,jj))
pp=cell2mat(pp);
ppr=real(pp)
if(varargin(i).dt=='c') then
y=csim('impuls',t,tt(ii,jj));
else
y=flts(eye(1,length(t)),tt(ii,jj));
end
if or(ppr > 0) then
//ch=find(y>=10^30);
//temp=t(ch(1)-1);
dompol=max(ppr);
tfinal=25/(dompol*log10(%e));
temp(ii,jj)=tfinal;
elseif and(ppr<=0) then
for iii=length(t):-1:1
if(y(iii)<-0.002 | y(iii)>0.002) then
break;
end;
//
end
temp(ii,jj)=(iii-1)*0.1;
end
end
end
if((varargin(i).dt)<>'c') then
t=0:varargin(i).dt:max(temp);
else
t=0:0.1:max(temp);
end
end
if i<>rhs & typeof(varargin(i+1))=='string' then
for ii=1:xx
for jj=1:yy
if(varargin(i).dt=='c') then
G=csim('impuls',t,tt(ii,jj));
else
G=flts(eye(1,length(t)),tt(ii,jj));
end
subplot(max(xx1),max(yy1),I)
title(msprintf(gettext("input(%d)-output(%d)"),ii,jj));
plot(t,G,varargin(i+1));
if(varargin(i).dt<>'c') then
hh=gce();
hh.children.polyline_style=2;
end
I=I+1;
end
end
else
for ii=1:xx
for jj=1:yy
if(varargin(i).dt=='c') then
G=csim('impuls',t,tt(ii,jj));
else
G=flts(eye(1,length(t)),tt(ii,jj))
end
subplot(max(xx1),max(yy1),I)
title(msprintf(gettext("input(%d)-output(%d)"),ii,jj));
plot(t,G);
hh=gce();
hh.children.foreground=CIindex;
if(varargin(i).dt<>'c') then
hh.children.polyline_style=2;
end
I=I+1;
end
end
end
end
end
///////////////////////////////////////////////////////////////////////////////////////
if(typeof(varargin(1))=='polynomial') then
if(typeof(varargin(2))=='polynomial') then
if flag<>1 then
pp=pole(varargin(1)/varargin(2))
pp=cell2mat(pp);
ppr=real(pp)
if or(ppr >= 0) then
dompol=max(ppr);
tfinal=25/(dompol*log10(%e));
t=0:0.1:tfinal;
elseif and(ppr<0) then
y=csim('impuls',t,varargin(1)/varargin(2));
for iii=length(t):-1:1
if(y(iii)<-0.002 | y(iii)>0.002) then
break;
end;
// if(y(iii)<=10^4) then
// break;
// end;
end
t=0:0.1:(iii-1)*0.1;
end
end
G=csim('impuls',t,varargin(1)/varargin(2));
if(typeof(varargin(3))=='string') then
plot(t,G,varargin(3));
else
plot(t,G);
end
else
error('not enough arguments');
end
end
/////////////////////////////////////////////////////
o=gcf();
o.figure_name='IMPULSE-PLOT'
xtitle("Impulse-Response","Time(seconds)","Amplitude");
endfunction
|
2d328a3f96e756d81a0fbc8632752aa9b5497ec4 | c5c7044ebd724bd15198c3e9470bff888a6ab43a | /data/plot.sci | 079435777d68de3261c12caf22a2c1a8f4e4b335 | [] | no_license | fedetft/flopsync | c3daa8d82c6514ddcef54ab4a1b86cfa988a22ff | 97d2f3fd8cc33fce3e78528a263bb67450fbe04f | refs/heads/master | 2021-01-18T21:59:23.659782 | 2020-04-01T20:58:40 | 2020-04-01T20:58:40 | 37,265,229 | 7 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 477 | sci | plot.sci | clear; clc; clf
a=fscanfMat('node1.txt.dat');
b=fscanfMat('node2.txt.dat');
ea=a(:,2); wa=a(:,4);
eb=b(:,2); wb=b(:,4);
//ea=ea(1:7200); wa=wa(1:7200);
//eb=eb(1:7200); wb=wb(1:7200);
//ea=ea(1:1000); wa=wa(1:1000);
//eb=eb(1:1000); wb=wb(1:1000);
ta=0:length(ea)-1;
tb=0:length(eb)-1;
subplot(211);
ax=gca();
ax.font_size=4;
plot(ta,ea,'k',ta,wa,'r',ta,-wa,'r')
subplot(212);
ax=gca();
ax.font_size=4;
plot(tb,eb,'k',tb,wb,'r',tb,-wb,'r');
eaa=ea(10:$);
ebb=eb(10:$);
|
b359b77b60914a8f0d58447a2633b1e3fb328bec | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/JY25NGP/ATWM1_Working_Memory_MEG_JY25NGP_Session2/ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | 6feba1037f60e2a2550bf9b0d8706aff0e91dbea | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,383 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
41 62 292 292 399 125 1842 2992 2592 fixation_cross gabor_081 gabor_104 gabor_019 gabor_170 gabor_081_alt gabor_104 gabor_019_alt gabor_170 "2_1_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_081_104_019_170_target_position_1_3_retrieval_position_1" gabor_081_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_1_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_052 gabor_001 gabor_071 gabor_114 gabor_052_alt gabor_001 gabor_071_alt gabor_114 "2_2_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_052_001_071_114_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_024_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_2_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_121 gabor_063 gabor_101 gabor_040 gabor_121 gabor_063_alt gabor_101 gabor_040_alt "2_3_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_121_063_101_040_target_position_2_4_retrieval_position_2" gabor_circ gabor_015_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_3_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2292 fixation_cross gabor_093 gabor_162 gabor_140 gabor_072 gabor_093 gabor_162_alt gabor_140 gabor_072_alt "2_4_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_093_162_140_072_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_target_position_2_4 "2_4_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2042 fixation_cross gabor_085 gabor_100 gabor_022 gabor_041 gabor_085_alt gabor_100_alt gabor_022 gabor_041 "2_5_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_085_100_022_041_target_position_1_2_retrieval_position_2" gabor_circ gabor_149_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_5_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2342 fixation_cross gabor_043 gabor_121 gabor_010 gabor_157 gabor_043_alt gabor_121 gabor_010 gabor_157_alt "2_6_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_043_121_010_157_target_position_1_4_retrieval_position_1" gabor_043_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_6_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2542 fixation_cross gabor_119 gabor_094 gabor_051 gabor_168 gabor_119 gabor_094 gabor_051_alt gabor_168_alt "2_7_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_119_094_051_168_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_030_framed blank blank blank blank fixation_cross_target_position_3_4 "2_7_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1942 2992 2042 fixation_cross gabor_122 gabor_006 gabor_081 gabor_062 gabor_122 gabor_006 gabor_081_alt gabor_062_alt "2_8_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_2050_gabor_patch_orientation_122_006_081_062_target_position_3_4_retrieval_position_2" gabor_circ gabor_006_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_8_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_006_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2242 fixation_cross gabor_023 gabor_112 gabor_140 gabor_006 gabor_023_alt gabor_112 gabor_140 gabor_006_alt "2_9_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_023_112_140_006_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_006_framed blank blank blank blank fixation_cross_target_position_1_4 "2_9_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_093 gabor_010 gabor_032 gabor_138 gabor_093_alt gabor_010 gabor_032 gabor_138_alt "2_10_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_093_010_032_138_target_position_1_4_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_10_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2492 fixation_cross gabor_046 gabor_100 gabor_167 gabor_084 gabor_046 gabor_100 gabor_167_alt gabor_084_alt "2_11_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2500_gabor_patch_orientation_046_100_167_084_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_134_framed blank blank blank blank fixation_cross_target_position_3_4 "2_11_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2042 2992 2442 fixation_cross gabor_064 gabor_021 gabor_111 gabor_140 gabor_064 gabor_021_alt gabor_111_alt gabor_140 "2_12_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2450_gabor_patch_orientation_064_021_111_140_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_091_framed blank blank blank blank fixation_cross_target_position_2_3 "2_12_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_091_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2092 fixation_cross gabor_104 gabor_177 gabor_022 gabor_087 gabor_104_alt gabor_177 gabor_022_alt gabor_087 "2_13_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_104_177_022_087_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_022_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_13_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_010 gabor_119 gabor_174 gabor_056 gabor_010_alt gabor_119 gabor_174_alt gabor_056 "2_14_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_010_119_174_056_target_position_1_3_retrieval_position_1" gabor_146_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_14_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2242 fixation_cross gabor_088 gabor_019 gabor_109 gabor_131 gabor_088 gabor_019_alt gabor_109 gabor_131_alt "2_15_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_088_019_109_131_target_position_2_4_retrieval_position_2" gabor_circ gabor_019_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_15_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2092 2992 2542 fixation_cross gabor_080 gabor_096 gabor_163 gabor_035 gabor_080_alt gabor_096_alt gabor_163 gabor_035 "2_16_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2550_gabor_patch_orientation_080_096_163_035_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_115_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_16_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_115_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_168 gabor_062 gabor_085 gabor_022 gabor_168_alt gabor_062_alt gabor_085 gabor_022 "2_17_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_168_062_085_022_target_position_1_2_retrieval_position_2" gabor_circ gabor_062_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_17_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_085 gabor_171 gabor_121 gabor_064 gabor_085_alt gabor_171_alt gabor_121 gabor_064 "2_18_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_085_171_121_064_target_position_1_2_retrieval_position_1" gabor_038_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_18_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1992 2992 2442 fixation_cross gabor_006 gabor_166 gabor_080 gabor_055 gabor_006_alt gabor_166 gabor_080 gabor_055_alt "2_19_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_2000_3000_2450_gabor_patch_orientation_006_166_080_055_target_position_1_4_retrieval_position_2" gabor_circ gabor_031_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_19_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_031_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_163 gabor_047 gabor_023 gabor_088 gabor_163_alt gabor_047 gabor_023_alt gabor_088 "2_20_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_163_047_023_088_target_position_1_3_retrieval_position_1" gabor_113_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_20_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 1942 fixation_cross gabor_003 gabor_140 gabor_171 gabor_110 gabor_003 gabor_140_alt gabor_171 gabor_110_alt "2_21_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_003_140_171_110_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_110_framed blank blank blank blank fixation_cross_target_position_2_4 "2_21_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2492 fixation_cross gabor_140 gabor_002 gabor_109 gabor_170 gabor_140_alt gabor_002 gabor_109 gabor_170_alt "2_22_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_140_002_109_170_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_031_framed blank blank blank blank fixation_cross_target_position_1_4 "2_22_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_091 gabor_137 gabor_162 gabor_118 gabor_091 gabor_137_alt gabor_162 gabor_118_alt "2_23_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_091_137_162_118_target_position_2_4_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_23_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2092 fixation_cross gabor_044 gabor_062 gabor_173 gabor_022 gabor_044_alt gabor_062_alt gabor_173 gabor_022 "2_24_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_044_062_173_022_target_position_1_2_retrieval_position_1" gabor_093_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_24_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_138 gabor_098 gabor_158 gabor_078 gabor_138 gabor_098_alt gabor_158 gabor_078_alt "2_25_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_138_098_158_078_target_position_2_4_retrieval_position_2" gabor_circ gabor_098_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_25_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_087 gabor_072 gabor_177 gabor_159 gabor_087 gabor_072_alt gabor_177_alt gabor_159 "2_26_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_087_072_177_159_target_position_2_3_retrieval_position_2" gabor_circ gabor_121_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_26_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_109 gabor_050 gabor_091 gabor_024 gabor_109 gabor_050_alt gabor_091 gabor_024_alt "2_27_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_109_050_091_024_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_024_framed blank blank blank blank fixation_cross_target_position_2_4 "2_27_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1742 2992 1992 fixation_cross gabor_137 gabor_029 gabor_097 gabor_160 gabor_137_alt gabor_029_alt gabor_097 gabor_160 "2_28_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_137_029_097_160_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_113_framed blank blank blank blank fixation_cross_target_position_1_2 "2_28_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_113_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_070 gabor_112 gabor_140 gabor_050 gabor_070 gabor_112_alt gabor_140 gabor_050_alt "2_29_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_070_112_140_050_target_position_2_4_retrieval_position_2" gabor_circ gabor_112_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_29_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_116 gabor_174 gabor_148 gabor_041 gabor_116_alt gabor_174 gabor_148_alt gabor_041 "2_30_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_116_174_148_041_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_148_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_30_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_049 gabor_163 gabor_105 gabor_087 gabor_049_alt gabor_163 gabor_105 gabor_087_alt "2_31_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_049_163_105_087_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_133_framed blank blank blank blank fixation_cross_target_position_1_4 "2_31_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2392 fixation_cross gabor_060 gabor_170 gabor_094 gabor_124 gabor_060 gabor_170_alt gabor_094_alt gabor_124 "2_32_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_060_170_094_124_target_position_2_3_retrieval_position_2" gabor_circ gabor_034_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_32_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2142 2992 2592 fixation_cross gabor_164 gabor_132 gabor_089 gabor_058 gabor_164 gabor_132_alt gabor_089_alt gabor_058 "2_33_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2600_gabor_patch_orientation_164_132_089_058_target_position_2_3_retrieval_position_1" gabor_024_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_33_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_024_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 1992 fixation_cross gabor_011 gabor_179 gabor_036 gabor_061 gabor_011_alt gabor_179 gabor_036_alt gabor_061 "2_34_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_011_179_036_061_target_position_1_3_retrieval_position_1" gabor_011_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_34_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1992 2992 2192 fixation_cross gabor_106 gabor_126 gabor_179 gabor_019 gabor_106_alt gabor_126_alt gabor_179 gabor_019 "2_35_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2200_gabor_patch_orientation_106_126_179_019_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_019_framed blank blank blank blank fixation_cross_target_position_1_2 "2_35_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_019_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2542 fixation_cross gabor_058 gabor_179 gabor_022 gabor_041 gabor_058 gabor_179_alt gabor_022 gabor_041_alt "2_36_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_058_179_022_041_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_041_framed blank blank blank blank fixation_cross_target_position_2_4 "2_36_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 1942 fixation_cross gabor_169 gabor_105 gabor_146 gabor_126 gabor_169_alt gabor_105 gabor_146 gabor_126_alt "2_37_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_169_105_146_126_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_target_position_1_4 "2_37_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2142 fixation_cross gabor_001 gabor_039 gabor_155 gabor_086 gabor_001 gabor_039_alt gabor_155_alt gabor_086 "2_38_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_001_039_155_086_target_position_2_3_retrieval_position_2" gabor_circ gabor_039_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_38_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1892 2992 2292 fixation_cross gabor_179 gabor_018 gabor_055 gabor_145 gabor_179 gabor_018 gabor_055_alt gabor_145_alt "2_39_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_2300_gabor_patch_orientation_179_018_055_145_target_position_3_4_retrieval_position_1" gabor_039_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_39_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_039_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 1892 fixation_cross gabor_094 gabor_061 gabor_077 gabor_151 gabor_094_alt gabor_061 gabor_077_alt gabor_151 "2_40_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_094_061_077_151_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_077_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_40_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2092 fixation_cross gabor_097 gabor_038 gabor_017 gabor_070 gabor_097_alt gabor_038 gabor_017_alt gabor_070 "2_41_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_097_038_017_070_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_153_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_41_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2442 fixation_cross gabor_026 gabor_137 gabor_094 gabor_050 gabor_026_alt gabor_137 gabor_094_alt gabor_050 "2_42_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_026_137_094_050_target_position_1_3_retrieval_position_1" gabor_026_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_42_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 1892 fixation_cross gabor_156 gabor_024 gabor_113 gabor_050 gabor_156_alt gabor_024_alt gabor_113 gabor_050 "2_43_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_156_024_113_050_target_position_1_2_retrieval_position_2" gabor_circ gabor_024_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_43_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2392 fixation_cross gabor_046 gabor_157 gabor_078 gabor_098 gabor_046_alt gabor_157 gabor_078_alt gabor_098 "2_44_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_046_157_078_098_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_078_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_44_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 2592 fixation_cross gabor_061 gabor_178 gabor_006 gabor_032 gabor_061 gabor_178_alt gabor_006_alt gabor_032 "2_45_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_061_178_006_032_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_006_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_45_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1942 2992 2342 fixation_cross gabor_107 gabor_022 gabor_174 gabor_047 gabor_107_alt gabor_022 gabor_174 gabor_047_alt "2_46_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2350_gabor_patch_orientation_107_022_174_047_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_128_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_46_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_128_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2492 fixation_cross gabor_174 gabor_056 gabor_144 gabor_120 gabor_174 gabor_056_alt gabor_144 gabor_120_alt "2_47_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_174_056_144_120_target_position_2_4_retrieval_position_2" gabor_circ gabor_056_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_47_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2192 fixation_cross gabor_070 gabor_004 gabor_027 gabor_156 gabor_070 gabor_004_alt gabor_027 gabor_156_alt "2_48_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_070_004_027_156_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_156_framed blank blank blank blank fixation_cross_target_position_2_4 "2_48_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_156_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_132 gabor_098 gabor_015 gabor_058 gabor_132_alt gabor_098_alt gabor_015 gabor_058 "2_49_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_132_098_015_058_target_position_1_2_retrieval_position_2" gabor_circ gabor_148_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_49_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1942 2992 1892 fixation_cross gabor_029 gabor_044 gabor_101 gabor_161 gabor_029_alt gabor_044 gabor_101_alt gabor_161 "2_50_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_029_044_101_161_target_position_1_3_retrieval_position_2" gabor_circ gabor_044_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_50_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_044_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2292 fixation_cross gabor_050 gabor_175 gabor_138 gabor_113 gabor_050_alt gabor_175 gabor_138 gabor_113_alt "2_51_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_050_175_138_113_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_113_framed blank blank blank blank fixation_cross_target_position_1_4 "2_51_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_121 gabor_016 gabor_176 gabor_065 gabor_121 gabor_016_alt gabor_176_alt gabor_065 "2_52_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_121_016_176_065_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_038_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_52_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_090 gabor_139 gabor_179 gabor_028 gabor_090 gabor_139_alt gabor_179 gabor_028_alt "2_53_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_090_139_179_028_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_073_framed blank blank blank blank fixation_cross_target_position_2_4 "2_53_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1842 2992 2242 fixation_cross gabor_175 gabor_023 gabor_129 gabor_113 gabor_175 gabor_023_alt gabor_129 gabor_113_alt "2_54_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2250_gabor_patch_orientation_175_023_129_113_target_position_2_4_retrieval_position_1" gabor_175_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_54_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_175_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_094 gabor_072 gabor_047 gabor_012 gabor_094 gabor_072_alt gabor_047 gabor_012_alt "2_55_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_094_072_047_012_target_position_2_4_retrieval_position_2" gabor_circ gabor_072_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_55_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2142 fixation_cross gabor_170 gabor_093 gabor_030 gabor_135 gabor_170_alt gabor_093_alt gabor_030 gabor_135 "2_56_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_170_093_030_135_target_position_1_2_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_56_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2242 fixation_cross gabor_134 gabor_045 gabor_099 gabor_024 gabor_134_alt gabor_045 gabor_099 gabor_024_alt "2_57_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_134_045_099_024_target_position_1_4_retrieval_position_1" gabor_134_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_57_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_080 gabor_009 gabor_054 gabor_124 gabor_080 gabor_009_alt gabor_054 gabor_124_alt "2_58_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_080_009_054_124_target_position_2_4_retrieval_position_2" gabor_circ gabor_144_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_58_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_144_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 2092 fixation_cross gabor_168 gabor_146 gabor_038 gabor_001 gabor_168 gabor_146_alt gabor_038_alt gabor_001 "2_59_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_168_146_038_001_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_083_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_59_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2092 fixation_cross gabor_053 gabor_143 gabor_162 gabor_034 gabor_053_alt gabor_143_alt gabor_162 gabor_034 "2_60_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_053_143_162_034_target_position_1_2_retrieval_position_2" gabor_circ gabor_004_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_60_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2592 fixation_cross gabor_006 gabor_082 gabor_038 gabor_160 gabor_006_alt gabor_082_alt gabor_038 gabor_160 "2_61_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_006_082_038_160_target_position_1_2_retrieval_position_1" gabor_006_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_61_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2242 2992 1942 fixation_cross gabor_059 gabor_146 gabor_101 gabor_130 gabor_059 gabor_146 gabor_101_alt gabor_130_alt "2_62_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_1950_gabor_patch_orientation_059_146_101_130_target_position_3_4_retrieval_position_1" gabor_059_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_62_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_059_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_009 gabor_061 gabor_115 gabor_174 gabor_009_alt gabor_061_alt gabor_115 gabor_174 "2_63_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_009_061_115_174_target_position_1_2_retrieval_position_1" gabor_144_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_63_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_144_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2042 fixation_cross gabor_048 gabor_090 gabor_115 gabor_157 gabor_048_alt gabor_090_alt gabor_115 gabor_157 "2_64_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_048_090_115_157_target_position_1_2_retrieval_position_1" gabor_003_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_64_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_028 gabor_076 gabor_013 gabor_099 gabor_028_alt gabor_076_alt gabor_013 gabor_099 "2_65_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_028_076_013_099_target_position_1_2_retrieval_position_1" gabor_166_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_65_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_166_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_128 gabor_094 gabor_146 gabor_023 gabor_128 gabor_094_alt gabor_146 gabor_023_alt "2_66_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_128_094_146_023_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_target_position_2_4 "2_66_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 1942 fixation_cross gabor_168 gabor_110 gabor_127 gabor_041 gabor_168_alt gabor_110_alt gabor_127 gabor_041 "2_67_Encoding_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_168_110_127_041_target_position_1_2_retrieval_position_2" gabor_circ gabor_060_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_67_Retrieval_Working_Memory_MEG_P2_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2092 2992 2292 fixation_cross gabor_072 gabor_110 gabor_157 gabor_178 gabor_072 gabor_110_alt gabor_157_alt gabor_178 "2_68_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_2100_3000_2300_gabor_patch_orientation_072_110_157_178_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_178_framed blank blank blank blank fixation_cross_target_position_2_3 "2_68_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_178_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2192 fixation_cross gabor_172 gabor_109 gabor_144 gabor_067 gabor_172_alt gabor_109 gabor_144_alt gabor_067 "2_69_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_172_109_144_067_target_position_1_3_retrieval_position_1" gabor_172_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_69_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2092 2992 2492 fixation_cross gabor_114 gabor_150 gabor_077 gabor_165 gabor_114 gabor_150_alt gabor_077 gabor_165_alt "2_70_Encoding_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_300_300_399_2100_3000_2500_gabor_patch_orientation_114_150_077_165_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_077_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_70_Retrieval_Working_Memory_MEG_P2_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_077_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
916c6562fb06cdb23dc2a297f795a1c85ccc94c3 | 1489f5f3f467ff75c3223c5c1defb60ccb55df3d | /tests/test_cache_1_e.tst | df6045a2dffc559ef728096828f6ea798c043130 | [
"MIT"
] | permissive | ciyam/ciyam | 8e078673340b43f04e7b0d6ac81740b6cf3d78d0 | 935df95387fb140487d2e0053fabf612b0d3f9e2 | refs/heads/master | 2023-08-31T11:03:25.835641 | 2023-08-31T04:31:22 | 2023-08-31T04:31:22 | 3,124,021 | 18 | 16 | null | 2017-01-28T16:22:57 | 2012-01-07T10:55:14 | C++ | UTF-8 | Scilab | false | false | 931 | tst | test_cache_1_e.tst | changed #0
changed #1
changed #2
changed #3
changed #4
test for 5
item #6
item #7
test for 8
item #9
stored #10
stored #11
stored #12
stored #13
stored #14
stored #15
stored #16
stored #17
stored #18
stored #19
item #20
item #21
item #22
item #23
item #24
item #25
item #26
item #27
item #28
item #29
item #30
item #31
item #32
item #33
item #34
item #35
item #36
item #37
item #38
item #39
item #40
item #41
item #42
item #43
item #44
item #45
item #46
item #47
item #48
item #49
item #50
item #51
item #52
item #53
item #54
item #55
item #56
item #57
item #58
item #59
item #60
item #61
item #62
item #63
item #64
item #65
item #66
item #67
item #68
item #69
item #70
item #71
item #72
item #73
item #74
item #75
item #76
item #77
item #78
item #79
item #80
item #81
item #82
item #83
item #84
item #85
item #86
item #87
item #88
item #89
item #90
item #91
item #92
item #93
item #94
item #95
item #96
item #97
item #98
item #99
|
af42655c59449ae0c43aeed65ea7400928363003 | 42fdf741bf64ea2e63d1546bb08356286f994505 | /test_0802_figure4_step_responses/graph_stepresponse_experiment01.sce | 685f41b0847e46598e453ec69f59cc2d62cf0ffe | [] | no_license | skim819/RASP_Workspace_sihwan | 7e3cd403dc3965b8306ec203007490e3ea911e3b | 0799e146586595577c8efa05c647b8cb92b962f4 | refs/heads/master | 2020-12-24T05:22:25.775823 | 2017-04-01T22:15:18 | 2017-04-01T22:15:18 | 41,511,563 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,109 | sce | graph_stepresponse_experiment01.sce | clear data_00;clear data_01;clear data_02;clear data_03;clear data_04;
data_00 = fscanfMat('./DATA_storage_experiment1/Figure4_experiment1_case00.txt'); // time Vout Vin
data_01 = fscanfMat('./DATA_storage_experiment1/Figure4_experiment1_case01.txt');
data_02 = fscanfMat('./DATA_storage_experiment1/Figure4_experiment1_case02.txt');
data_03 = fscanfMat('./DATA_storage_experiment1/Figure4_experiment1_case03.txt');
data_04 = fscanfMat('./DATA_storage_experiment1/Figure4_experiment1_case04.txt');
//temp_1=[mean(data_00(7000:8000,2)); mean(data_01(7000:8000,2)); mean(data_02(7000:8000,2)); mean(data_03(7000:8000,2)); mean(data_04(7000:8000,2))];
//mean(temp_1); // constant = 1.324
data_00(:,4) = 1.324 - data_00(:,2);
data_01(:,4) = 1.324 - data_01(:,2);
data_02(:,4) = 1.324 - data_02(:,2);
data_03(:,4) = 1.324 - data_03(:,2);
data_04(:,4) = 1.324 - data_04(:,2);
scf(1);clf(1);
//plot2d("nn", data_00(:,1), data_00(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 1;p.children.mark_mode = 'on';p.children.line_mode = 'off';
//plot2d("nn", data_00(:,1), data_00(:,3));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 2;p.children.mark_mode = 'on';p.children.line_mode = 'off';
plot2d("nn",data_00(:,1), data_00(:,3));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 1;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_00(:,2));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 2;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_01(:,2));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 3;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_02(:,2));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 4;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_03(:,2));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 5;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_04(:,2));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 6;p.children.line_mode = 'on';p.children.mark_mode = 'off';
//plot2d("nn",range_gm , fit_gm);p = get("hdl"); p.children.line_style = 1; p.children.foreground = 2;p.children.line_mode = 'on';p.children.mark_mode = 'off';
a=gca();a.data_bounds(1,1)=-0.5E-04;a.data_bounds(1,2)=1.15;a.data_bounds(2,1)=4.5E-04;a.data_bounds(2,2)=1.35;
//a=gca();a.data_bounds(1,1)=-0.1;a.data_bounds(1,2)=0;a.data_bounds(2,1)=0.2;a.data_bounds(2,2)=20;
//legend("Target program 100nA","Target program 50nA","Target program 10nA","in_upper_left"); // "in_upper_left" "in_lower_right"
xtitle("","time [s]","V [V]");
scf(2);clf(2);
//plot2d("nn", data_00(:,1), data_00(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 1;p.children.mark_mode = 'on';p.children.line_mode = 'off';
//plot2d("nn", data_00(:,1), data_00(:,3));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 2;p.children.mark_mode = 'on';p.children.line_mode = 'off';
//plot2d("nn",data_00(:,1), data_00(:,3));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 1;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_00(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 2;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_01(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 3;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_02(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 4;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_03(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 5;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nn",data_00(:,1), data_04(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 6;p.children.line_mode = 'on';p.children.mark_mode = 'off';
//plot2d("nn",range_gm , fit_gm);p = get("hdl"); p.children.line_style = 1; p.children.foreground = 2;p.children.line_mode = 'on';p.children.mark_mode = 'off';
//a=gca();a.data_bounds(1,1)=-0.5E-04;a.data_bounds(1,2)=1.15;a.data_bounds(2,1)=4.5E-04;a.data_bounds(2,2)=1.35;
//a=gca();a.data_bounds(1,1)=-0.1;a.data_bounds(1,2)=0;a.data_bounds(2,1)=0.2;a.data_bounds(2,2)=20;
//legend("Target program 100nA","Target program 50nA","Target program 10nA","in_upper_left"); // "in_upper_left" "in_lower_right"
xtitle("","time [s]","Vconstant - Vout [V]");
scf(3);clf(3);
//plot2d("nn", data_00(:,1), data_00(:,2));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 1;p.children.mark_mode = 'on';p.children.line_mode = 'off';
//plot2d("nn", data_00(:,1), data_00(:,3));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 2;p.children.mark_mode = 'on';p.children.line_mode = 'off';
//plot2d("nn",data_00(:,1), data_00(:,3));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 1;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nl",data_00(:,1), data_00(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 2;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nl",data_00(:,1), data_01(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 3;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nl",data_00(:,1), data_02(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 4;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nl",data_00(:,1), data_03(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 5;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nl",data_00(:,1), data_04(:,4));p = get("hdl"); p.children.line_style = 1; p.children.foreground = 6;p.children.line_mode = 'on';p.children.mark_mode = 'off';
//plot2d("nn",range_gm , fit_gm);p = get("hdl"); p.children.line_style = 1; p.children.foreground = 2;p.children.line_mode = 'on';p.children.mark_mode = 'off';
a=gca();a.data_bounds(1,1)=-0.5E-04;a.data_bounds(1,2)=1E-03;a.data_bounds(2,1)=1.0E-04;a.data_bounds(2,2)=1E-01;
//a=gca();a.data_bounds(1,1)=-0.1;a.data_bounds(1,2)=0;a.data_bounds(2,1)=0.2;a.data_bounds(2,2)=20;
//legend("Target program 100nA","Target program 50nA","Target program 10nA","in_upper_left"); // "in_upper_left" "in_lower_right"
xtitle("","time [s]","Vconstant - Vout [V]");
//polyfit
[p_00,S_00]=polyfit(data_00(1200:1300,1), log(data_00(1200:1300,4)),1);
[p_01,S_01]=polyfit(data_01(1200:1500,1), log(data_01(1200:1500,4)),1);
[p_02,S_02]=polyfit(data_02(1200:1800,1), log(data_02(1200:1800,4)),1);
[p_03,S_03]=polyfit(data_03(1200:2200,1), log(data_03(1200:2200,4)),1);
[p_04,S_04]=polyfit(data_04(1200:2500,1), log(data_04(1200:2500,4)),1);
// Eval
range_00 = data_00(1200,1):70E-09:data_00(1300,1);
range_01 = data_01(1200,1):70E-09:data_01(1500,1);
range_02 = data_02(1200,1):70E-09:data_02(1800,1);
range_03 = data_03(1200,1):70E-09:data_03(2200,1);
range_04 = data_04(1200,1):70E-09:data_04(2500,1);
fit_00 = polyval(p_00,range_00,S_00);
fit_01 = polyval(p_01,range_01,S_01);
fit_02 = polyval(p_02,range_02,S_02);
fit_03 = polyval(p_03,range_03,S_03);
fit_04 = polyval(p_04,range_04,S_04);
scf(4);clf(4);
plot2d("nl",data_00(1200:1300,1), data_00(1200:1300,4));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 1;p.children.mark_mode = 'on';p.children.line_mode = 'off';
plot2d("nl",data_01(1200:1500,1), data_01(1200:1500,4));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 2;p.children.mark_mode = 'on';p.children.line_mode = 'off';
plot2d("nl",data_02(1200:1800,1), data_02(1200:1800,4));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 3;p.children.mark_mode = 'on';p.children.line_mode = 'off';
plot2d("nl",data_03(1200:2200,1), data_03(1200:2200,4));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 4;p.children.mark_mode = 'on';p.children.line_mode = 'off';
plot2d("nl",data_04(1200:2500,1), data_04(1200:2500,4));p = get("hdl"); p.children.mark_style = 9; p.children.mark_foreground = 5;p.children.mark_mode = 'on';p.children.line_mode = 'off';
plot2d("nl",range_00, exp(fit_00));p = get("hdl"); p.children.line_style = 1; p.children.thickness = 2; p.children.foreground = 1;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nl",range_01, exp(fit_01));p = get("hdl"); p.children.line_style = 1; p.children.thickness = 2; p.children.foreground = 2;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nl",range_02, exp(fit_02));p = get("hdl"); p.children.line_style = 1; p.children.thickness = 2; p.children.foreground = 3;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nl",range_03, exp(fit_03));p = get("hdl"); p.children.line_style = 1; p.children.thickness = 2; p.children.foreground = 4;p.children.line_mode = 'on';p.children.mark_mode = 'off';
plot2d("nl",range_04, exp(fit_04));p = get("hdl"); p.children.line_style = 1; p.children.thickness = 2; p.children.foreground = 5;p.children.line_mode = 'on';p.children.mark_mode = 'off';
a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1E-03;a.data_bounds(2,1)=10.0E-05;a.data_bounds(2,2)=1E-01;
xtitle("","time [s]","Vconstant - Vout [V]");
//disp(-1/p_00(1,1)*1E06); disp(-1/p_01(1,1)*1E06); disp(-1/p_02(1,1)*1E06); disp(-1/p_03(1,1)*1E06); disp(-1/p_04(1,1)*1E06);
//disp(-1/p_00(1,1)*169*1E-09*1E12); disp(-1/p_01(1,1)*169*1E-09*1E12); disp(-1/p_02(1,1)*169*1E-09*1E12); disp(-1/p_03(1,1)*169*1E-09*1E12); disp(-1/p_04(1,1)*169*1E-09*1E12);
disp(-1/p_00(1,1)*1E06); disp(-1/p_01(1,1)*1E06); disp(-1/p_02(1,1)*1E06); disp(-1/p_03(1,1)*1E06); disp(-1/p_04(1,1)*1E06);
disp(-1/p_00(1,1)*145*1E-09*1E12); disp(-1/p_01(1,1)*145*1E-09*1E12); disp(-1/p_02(1,1)*145*1E-09*1E12); disp(-1/p_03(1,1)*145*1E-09*1E12); disp(-1/p_04(1,1)*145*1E-09*1E12);
|
22cfeaa1fbf54c745f7bbdaba4b8b2a2fbe60c1b | b829a470efb851fdd8700559c2092711adaa42e0 | /Data/OVI-CV-03-Facenet/CV-Groups/cv-group-114528472704/OVI-Test/cv-group-114528472704-run-01.tst | 1f28c8f8b9604409b927e9b733ee6c8703e0612b | [] | no_license | achbogga/FaceRecognition | 6f9d50bd1f32f2eb7f23c7ae56f9e7b225d32325 | 165ebc7658228d2cceaee4619e129e248665c49a | refs/heads/master | 2021-07-04T21:47:57.252016 | 2017-08-01T18:53:12 | 2017-08-01T18:53:12 | 96,568,452 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 512 | tst | cv-group-114528472704-run-01.tst | Huiping\Huiping_010.jpg
Huiping\Huiping_012.jpg
Don\Don_013.jpg
Don\Don_014.jpg
Shirley\Shirley_008.jpg
Shirley\Shirley_011.jpg
Ahmad\Ahmad_004.jpg
Ahmad\Ahmad_002.jpg
Sima\Sima_003.jpg
Sima\Sima_001.jpg
SungChun\SungChun_012.jpg
SungChun\SungChun_009.jpg
Kiran\Kiran_005.jpg
Kiran\Kiran_013.jpg
Allison\Allison_003.jpg
Allison\Allison_001.jpg
Amit\Amit_003.jpg
Amit\Amit_012.jpg
Gang\Gang_012.jpg
Gang\Gang_013.jpg
Ethan\Ethan_003.jpg
Ethan\Ethan_001.jpg
Rob\Rob_011.jpg
Rob\Rob_002.jpg
|
f6666c3ff7a6e20d10d54a9a5c089270d0e95bbe | 117d2e73730351cc15ef378cd319a907c507e476 | /sistemas lineares/jacobi2.sce | 09fee6a1b450bd187440e432b4d921fea18425c6 | [
"Apache-2.0"
] | permissive | Trindad/algoritmos-calculo-numerico | b900768350277a46da636a3d0da9b8c83c4da780 | 1dcafd39d2281cb3065ba9742c693e5e49e2a08c | refs/heads/master | 2021-01-22T21:28:09.251265 | 2014-07-23T14:08:55 | 2014-07-23T14:08:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 589 | sce | jacobi2.sce | //Solução analítica: x = inv(A)*b
clear
clc
format (25)
n = 2;
A = [0.48 0.4; 0.25 0.5];
b=[0.33333 0.5];
I = eye(A); //matriz identidade
eps=10^(-2); //Precisão
x0 = [0;0]; //Solução inicial
p = 10;
x = x0;
it = 0;
i = 0; s = 0;
for i=1:n
for s=1:n
AA(i,s) = A(i,s)/A(i,i);
end;
be(i) = b(i)/A(i, i);
end;
AB = AA;
bc = be;
while p > eps & it<=1000
it = it+1;
x = bc - ((AB-I)*x);
p = norm((AB*x)-bc);
disp(x);
end;
if(it>999) then
printf("Não converge nesse intervalo");
else
printf("Sucesso! Total de iteracoes %f", it);
end; |
96ab52ae3d679452a62a56436c8b36ad645cdf09 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH8/EX8.11/Ch08Ex11.sce | 4d270e6a485d20e7eb58cd62cfc8abc46d480e74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 875 | sce | Ch08Ex11.sce | // Scilab code Ex8.11 Page:264 (2006)
clc; clear;
S = 2; // Spin quantum number
J = 0; // Total quantum number
L = 2; // Orbital quantum number
g = 2; // Lande splitting factor
printf("\nThe spectroscopic term value of Mn3+ ion = %d_D_%d", 2*S+1, J);
// For J = L - S
J = L - S;
mu_N = g*sqrt(J*(J+1)); // Effective magneton number
printf("\nThe effective magneton number for J = L - S is %d", mu_N);
// For J = S, L = 0 so that
L = 0;
J = L+S;
mu_N = g*sqrt(J*(J+1)); // Effective magneton number
printf("\nThe effective magneton number for J = S is %3.1f.\nIt is in agreement with the experimental value of 5.0.", mu_N);
// Result
// The spectroscopic term value of Mn3+ ion = 5_D_0
// The effective magneton number for J = L - S is 0
// The effective magneton number for J = S is 4.9.
// It is in agreement with the experimental value of 5.0.
|
957e1033724fb873d4d8d36bf5ff0ab51e021161 | 449d555969bfd7befe906877abab098c6e63a0e8 | /758/CH6/EX6.5/Ex_6_5.sce | 807ed3286b6127cfaaeb29bb127491882300e30f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 656 | sce | Ex_6_5.sce | //Example 6.5
clc;clear;close;
x=[1 2 3];xmin=0;nx=xmin:length(x)+xmin-1;
h=[1 2 -2 -1];hmin=-1;nh=length(h)+hmin-1;
//Calculation of linear convolution
y=convol(x,h);
ymin=xmin+hmin;ny=ymin:length(y)+ymin-1;
disp(x,'First Sequence is x(n): ');
disp(h,'Second Sequence is h(n): ');
disp(y,'Output sequence is y(n): ');
subplot(3,1,1);
plot2d3(nx,x);
title('First Seqence x[n]:');ylabel('Amplitude-->');xlabel('n-->')
subplot(3,1,2);
plot2d3(nh,h);
title('Second Seqence h[n]:');ylabel('Amplitude-->');xlabel('n-->')
subplot(3,1,3);
plot2d3(ny,y);
title('Convolution Seqence y[n]=x[n]*h[n] :');ylabel('Amplitude-->');xlabel('n-->')
|
1876163ed4c59a4e4292f5c9beef621d61752f25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2096/CH7/EX7.9/ex_7_9.sce | 234f7f89b8a84dbcf1af57ed5eaeecdeb8f9e836 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 194 | sce | ex_7_9.sce | //Example 7.9 // force
clc;
clear;
close;
//given data :
A=6*6*10^-6; // in m^2
t=1.8*10^-3; // in m
g=0.055; // in Vm/N
E=120; // in volts
p=E/(g*t);
F=p*A;
disp(F,"force,F(N) = ")
|
06069008903d8e9c63d337741f705e05126866eb | bacd6919260d728f4316702bbe1edf811810bede | /legacy/39/console/Untitled354.sce | 88af58296b89dc52cbede5c29903ea8bd1427b78 | [] | no_license | vopl/sp | 332d8c2ff536fc5d8772ff2f3fbeca9b50c47641 | a4313f4d7af47cc3132d7546947d4d668c7e487e | refs/heads/master | 2020-04-16T02:09:36.036424 | 2016-10-05T18:08:30 | 2016-10-05T18:08:30 | 65,293,458 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 164 | sce | Untitled354.sce |
stacksize('max');
clf;
t0 = read("c:\temp\delme1",-1,2);
t1 = read("c:\temp\delme2",-1,2);
plot(t0(:,1),t0(:,2),'.g');
plot(t1(:,1),t1(:,2),'r');
|
807dd2bfc8b7d54e42ceefe7f3491d42d21a0e0e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1394/CH13/EX13.2.1/Ex13_2_1.sce | f2bf627de89817c0363e725c421e7e59adde8210 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 385 | sce | Ex13_2_1.sce |
clc
//Initialization of variables
y1 = 0.9999
x0 = y1 // For a total condenser
y0 =0.58 + 0.42*x0 // The equilbirum line
LbyG = 0.75
yNplus1 = 0.99
A = LbyG/0.42
n= 1
//Calculations
xN = (yNplus1-((1-LbyG)*y1))/LbyG
yN = 0.58 + 0.42*xN
N = (log((yNplus1-yN)/(y1-y0))/log(A))+n//, number of stages
//Results
printf("the number of stages approximately is %.f",N)
|
b3a12fafd40d0b50ca8e1335846840f2eaa58c3e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2234/CH1/EX1.3/ex1_3.sce | 721a3061cdffab3938d76fdc70424ec48a39bc22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 157 | sce | ex1_3.sce | clc;
v=3*10^8; //velocity in m/sec
n=500*10^3; //frequency in Hz
l=v/n; //calculating wavelength
disp(l,"Wavelength in m = "); //displaying result |
b329542bb50b03992677a7332f426cca6aabedc5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2915/CH2/EX2.11/Ex2_11.sce | b4f0bf0364b63211c5966311a608c6c779cbcdf2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 595 | sce | Ex2_11.sce | //Example 2.11
//To check the solution of triangle using Mollweide equation
clc,clear
c=6.09 //side oposite to vertex C
a=5 //side opposite to vertex A
b=3 //side opposite to vertex B
A=54.7 //angle at vertex A
B=29.3 //angle at vertex B
C=96 //angle at vertex C
LHS = (a-b)/c
RHS = sind((A-B)/2)/cosd(C/2)
printf(' LHS = (a-b)/c = %.4f\n',LHS)
printf(' RHS = sin((A-B)/2)/cos(C/2) = %.4f\n\n',RHS)
printf('Small difference in LHS and RHS is due to rounding off.\ni.e.Mollweides equation is holding true.\n')
printf('THE SOLUTION OF TRIANGLE IS CORRECT')
|
9dbc40e697e257f940d4d4b9638e7320d0a1e793 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH9/EX9.1/1.sce | 4fc630fb8f3bfff9630c7078325f34caa08eac37 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | 1.sce |
//Variable declaration
T=8; //temperature(K)
Hc=1*10**5; //critical field(amp/m)
H0=2*10**5; //critical field(amp/m)
//Calculation
Tc=T/sqrt(1-(Hc/H0)); //transition temperature(K)
//Result
printf('transition temperature is %0.3f K \n',(Tc)) |
9255b89181ea531dc0ed2b2aec86d93fd2c39c06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH10/EX10.18/10_18.sce | be8f613aa4348acabb6e770a33e5045aa8acee7a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 433 | sce | 10_18.sce | //Problem 10.18: In a d.c. potentiometer, balance is obtained at a length of 400 mm when using a standard cell of 1.0186 volts. Determine the e.m.f. of a dry cell if balance is obtained with a length of 650 mm
//initializing the variables:
E1 = 1.0186; // in Volts
l1 = 0.400; // in m
l2 = 0.650; // in m
//calculation:
E2 = (l2/l1)*E1
printf("\n\n Result \n\n")
printf("\n the e.m.f. of a dry cell = %.3f Volts\n",E2) |
8c28b5d51b1279957cd78e92f532a8ba25456da8 | ffe30bb7dcdef053e8f540de90cab35f8bcb011f | /questao_3f.sce | c6202c322ca12e425d4ca1bf46cdddc4f43e13de | [] | no_license | jaimedantas/Signal-Processing-Assignments | fca8861401b6f3412bd7fa46d45797c27de1d421 | 4cf92066551842af94c3e39b4652f2759ebbe3e0 | refs/heads/master | 2020-05-20T12:59:21.319349 | 2017-04-07T20:43:46 | 2017-04-07T20:43:46 | 80,398,198 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 740 | sce | questao_3f.sce | //questao 3 f
//funcao degrau discreta
function [h, nh] = degrau(n0, n1, n2)
nh = [n1:1:n2];
h = [(nh-n0) >= 0];
endfunction
//funcao de comvolucao discreta
//entrada de dados
n=[0:1:5];
y_aux2 = (6-2*(2/3)^n);
[y_aux1, ny] = degrau(0,0,5);
for i=1:5
y(i) = y_aux2(i) * y_aux1(i);//saida do SLIT
end
y(1) = y_aux2(1) * y_aux1(1);//saida do SLIT
//grafico
n=[ny(1):1:ny(length(y))];//intervado discreto de y
//variáveis auxiliares para o grafico
x_min = ny(1)-1;
x_max= ny(length(y)) + 1;
y_min = min(y)-1;
y_max = max(y)+1;
plot2d3(n,y, style = -4, rect = [x_min,y_min,x_max,y_max]);//grafico discreto de y(n) em funcao de n
xtitle("",["n"],["y(n)"], boxed = 0);//titulo dos eixos
xgrid(4);
|
bb9772f83fbb676aa30ee39dba1ee98fc6dd2229 | b79e0fd93c470367a3688a1f83788d5d3ccf9d75 | /trouver_message.sci | fda0b97be5a8b98b91944c781a0e8a828820f33d | [] | no_license | gumsak/steganography | 7bfd59789ad8f284377002db3cab008af5a76421 | c6e5f178524db08367a1cbe054aedc037aed341b | refs/heads/master | 2020-11-29T15:28:46.885950 | 2017-07-15T16:45:44 | 2017-07-15T16:45:44 | 87,479,222 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 991 | sci | trouver_message.sci | function trouver_message(image2)
im2=imread(image2);
[ligne,colonne]=size(im2);
count2=0;
for o=1:ligne
for p=1:colonne
//récupérer la taille de la chaine
if o==1 & p==1 then
k4=uint8(floor(im2(o,p,2)*16));//msb de la taille
k5=floor(im2(o,p,3)*16)/16;//lsb de la taille
limite=k4+k5; //limite = nbre de caractères dans le message
//p=p+1;
//end
//récupérer les caractère du message
elseif count2 <= limite then
count2=count2+1;
//stocker les caractères dans k6
k4=uint8(floor(im2(o,p,2)*16));//k4=msb du caractère
k5=floor(im2(o,p,3)*16)/16;//k5=lsb du caractere
k6(1,count2,1)=k4+k5;//k6 = msb +lsb du caractère
else break
end
end
end
//afficher notre message
disp(ascii(k6));
endfunction
|
5dd970eeeeac509d5de4bce5af077e6a11de4cc6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH3/EX3.11/Ex3_11.sce | a033bf8a20c5df07e1451b4d8d17395e3abaed49 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 420 | sce | Ex3_11.sce | //Example 3.11
//Computing DC gain of the system.
clear;
clc;
//------------------------------------------------------------------
//Transfer Function
s=poly(0,'s');
num=3*(s+2);
den=(s^2+2*s+10);
Ys=syslin('c',num/den);
//The DC gain of the system Y(s) as s-->0 is
DC_Gain=horner(Ys,0)
disp(DC_Gain,"The DC gain of the system is:")
//------------------------------------------------------------------
|
31c9d89708b63ca7141e439266a3d8e92f27b44d | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH7/EX7.1.b/Example7_1_b.sce | 52895f5e33402ab883a687214ccd2edb3b93f495 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 188 | sce | Example7_1_b.sce | //Example 7.1(b)
clear;
clc;
fL=20;
fH=20*10^3;
enw=20*10^(-9);
fce=200;
En=enw*sqrt((fce*log(fH/fL))+fH-fL);
printf("Estimated RMS input voltage=%.2f uV",En*10^6); |
abc0a91f28b86b31c4c4ce2e9bf459873f700596 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH2/EX2.5/Ch02Ex5.sce | 4a67bd9783c8d6a6dd4a6fe8e38ac5205129780c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 460 | sce | Ch02Ex5.sce | // Scilab code Ex2.5: Pg.49 (2005)
clc; clear;
u = 450; // Velocity ofeach ball, m/s
m = 5; // Mass of each ball, kg
c = 3e+08; // Velocity of light, m/s
// Since (u/c)^2 << 1, therefore, substituting 1/sqrt(1 - (u/c)^2) = 1 + (1/2)*(u/c)^2
delta_M = m*(u/c)^2; // Increase in the mass of balls, kg
printf("\nIncrease in the mass of the balls = %3.1fe-11 kg", delta_M*1e+11);
// Result
// Increase in the mass of the balls = 1.1e-11 kg
|
bc51918404050ae8c4b84fdde66aa955260a0d9a | a3f5b45d29e397db1fc6800b4336dd9f85e4e07d | /projects/software_stack/vm/MemoryAccess/PushNTest/PushNTest.tst | 172c17c351f3f55280de44d9b9f1562a4bbf4059 | [] | no_license | idrisr/nand2tetris | 1f5e4ac469489f415e70ee626fa592a9e5730d78 | b491e96ce9fc54cccf8aea07214c95cb4ffaa4f5 | refs/heads/master | 2016-09-06T03:17:26.716980 | 2015-01-03T01:59:22 | 2015-01-03T01:59:22 | 27,518,528 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 583 | tst | PushNTest.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/07/MemoryAccess/PushNTest/PushNTest.tst
load PushNTest.asm,
// load PushNTestManual.asm,
output-file PushNTest.out,
compare-to PushNTest.cmp,
// SP LCL @SP-1 @LCL-1
output-list
RAM[0]%D1.6.1
RAM[256]%D1.6.1
RAM[257]%D1.6.1;
set RAM[0] 256, // SP
set RAM[1] 300, // LCL
// set RAM[2] 400, // ARG
// set RAM[3] 3000,// THIS
// set RAM[4] 3010,// THAT
repeat 50 {
ticktock;
}
output;
|
f09c6a7cfcb6ec69096518b99cd88be26997ab8c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH16/EX16.3/16_3.sce | 8295e809e171841931af505331bdce7157468da9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 174 | sce | 16_3.sce | clear;
clc;
D=20;Ro=75;
N=10^(D/20);
R1=Ro*(N-1)/(N+1);
R2=Ro*2*N/((N*N)-1);
printf("R1 = %f ohms\n",round(R1*100)/100);
printf(" R2 = %f ohms\n",round(R2*100)/100);
|
51181ceec8d216be2eee5aeaa5627bb7cde6be65 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1484/CH5/EX5.4/5_4.sce | 45eb2e360bd20982459cfc9c3755a2b48d815852 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | 5_4.sce | clc
//initialisation of variables
Cd= 0.62
L= 3 //ft
g= 32.2 //ft/sec^2
H= 1 //ft
L1= 2 //ft
h= 0.5 //ft
L2= 1 //ft
h1= 0.25 //ft
//CALCULATIONS
Q= 2*Cd*L*sqrt(2*g)*H^1.5/3
Q1=2*Cd*L1*sqrt(2*g)*((H+h)^1.5- H^1.5)/3
Q2= 2*Cd*L2*sqrt(2*g)*((H+h+h1)^1.5- (H+h)^1.5)/3
Q3= Q1+Q2+Q
//RESULTS
printf ('Total Discharge= %.2f cuses',Q3)
|
9164164e7b322b90928ea06c5f370d8f14d1d6ba | 4bbc2bd7e905b75d38d36d8eefdf3e34ba805727 | /ee_scicoslab/scicos_flex/dspic/macros/flex_blocks/FLEX-iSim/FLEX_DMB_Buttons.sci | 15951130f719e9bbc0ef9600bfff417f22a6ee88 | [] | no_license | mannychang/erika2_Scicos-FLEX | 397be88001bdef59c0515652a365dbd645d60240 | 12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba | refs/heads/master | 2021-02-08T17:01:20.857172 | 2012-07-10T12:18:28 | 2012-07-10T12:18:28 | 244,174,890 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,151 | sci | FLEX_DMB_Buttons.sci | function [x,y,typ] = FLEX_DMB_Buttons(job,arg1,arg2)
//** ------------------------------------ INPUT ---------------------------------
x=[];y=[];typ=[];
select job //** main state machine switch
case 'plot' then //** plot the object
graphics = arg1.graphics;
exprs = graphics.exprs;
name = exprs(1)(1);
standard_draw(arg1)
case 'getinputs' then //** inputs
[x,y,typ] = standard_inputs(arg1) //**
case 'getoutputs' then //**
[x,y,typ] = standard_outputs(arg1)
case 'getorigin' then //**
[x,y]=standard_origin(arg1)
case 'set' then //** set parameters
x = arg1 ; //**
model = arg1.model;
graphics = arg1.graphics;
label = graphics.exprs;
block_type = model.ipar(1);
sblock_id = string(model.ipar(2));
while %t do
dialog_box_banner = "Flex Buttons Parameters";
[ok, new_block_id] = getvalue(dialog_box_banner,...
['Flex Identifier'], list('vec',1), [sblock_id]);
if ~ok then break, end //** in case of error
label(1)(1) = 'Flex_'+string(new_block_id);
ng = [];
z = 0;
nx = 0;
nz = 0;
nin = 1;
ci = 1;
nevin = 1;
co = [];
nevout = 0;
depu = %t; dept = %f;
dep_ut = [depu dept];
funam = 'flex_blocks';
funtyp = 4 ;
output_type = 5;//int8
i = [];
it = [];
o = [1 1; 1 1; 1 1; 1 1];
ot = [output_type;output_type;output_type;output_type];
[model, graphics, ok] = set_io(model, graphics, list(i,it), list(o, ot), ones(ci,1), []);
if ~ok then
message("something wrong in in/out settings");
end
model.sim = list(funam,funtyp) ; //** computation function
model.in = [];
model.in2 = [];
model.out = o(:,1);
model.out2 = o(:,2);
model.evtin = ci;
model.evtout = [];
model.state = [];
model.dstate=[] ;
model.rpar = [];
model.ipar = [block_type;new_block_id];
model.firing = [];
model.dep_ut = dep_ut;
model.nzcross = 0 ;
x.model = model ;
graphics.exprs = label ;
x.graphics = graphics ;
break
end
case 'define' then //** the standard define
flex_block_type_buttons = 0;
flex_block_type_ledslcd = 1;
block_type = flex_block_type_buttons;
block_id = 0;
name = 'Flex_' + string(block_id);
model = scicos_model();
funam = 'flex_blocks';
funtyp = 4 ;
model.sim=list(funam, funtyp) //** simulating function
o = [1 1; 1 1; 1 1; 1 1];
output_type = 5;//int8
ot = [output_type;output_type;output_type;output_type];
model.in = [] ;
model.in2 = [];
model.out = o(:,1);
model.out2 = o(:,2);
model.outtyp = ot;
model.evtin = 1 ;
model.evtout = [] ;
model.state = [] ;
model.dstate = [] ;
model.rpar = [];
model.ipar = [block_type;block_id];
model.blocktype = 'c';
model.firing = [] ;
model.dep_ut = [%t %f];
model.nzcross = 0 ;
label = list( [name], [] ) ;
gr_i=['[x,y,typ]=standard_outputs(o) ';
'dd=sz(1)/16'
'r = xstringl(0,0,''BTN4'')';
'if ~arg1.graphics.flip then'
' dd=sz(1)-r(3)-dd'
'end'
'xstring(orig(1)+sz(1)-r(3)-dd,y(1)-r(4)/2,''BTN1'')'
'xstring(orig(1)+sz(1)-r(3)-dd,y(2)-r(4)/2,''BTN2'')'
'xstring(orig(1)+sz(1)-r(3)-dd,y(3)-r(4)/2,''BTN3'')'
'xstring(orig(1)+sz(1)-r(3)-dd,y(4)-r(4)/2,''BTN4'')'
'rect = xstringl(0,0,name)'
'if graphics.flip then'
' xstring(orig(1),orig(2)+sz(2)/2-rect(4),name);'
'else'
' xstring(orig(1)+sz(1)-rect(3),orig(2)+sz(2)/2-rect(4),name);'
'end'
];
x = standard_define([4 4],model,label,gr_i)
case 'compile' then
flex_path = getenv("FLEXPATH","");
if isempty(flex_path) == %T then
disp("Environment variable FLEXPATH not found!");
disp("The FLEX Demo Board SIMULATOR has not been installed!");
disp("Please note that the FLEX Demo Board SIMULATOR is included only with the full version of the ScicosLab-pack.");
else
[info_file,ierr] = fileinfo(flex_path);
if ierr <> 0 then
disp("Flex file " + flex_path + " not found!");
end
end
end
endfunction
|
1265ae3db1d10c02705b06ed7188c6ffebd5c872 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH20/EX20.1/Ex20_1.sce | 828e3e9865d1558c5a1ea6cdc1d474992096b955 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 522 | sce | Ex20_1.sce | //Example 20.1
delta_Q1=720;//Charge moved by truck battery (C)
delta_t1=4;//Time (s)
I1=delta_Q1/delta_t1;//Current (A)
printf('a.Current flowing through the truck battery = %0.1f A',I1)
I2=0.3*10^-3;//Current flowing through calculator (A)
delta_Q2=1;//Charge moving through calculator (C)
delta_t2=delta_Q2/I2;//Time taken (s)
printf('\nb.Time taken for the charge to move through the calculator = %0.2e s',delta_t2)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
56dc36cd1143c1bed7712cd04fa0d71241e06142 | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH7/EX7.23/Example_7_23.sce | b2905e95426c1ce4d1acacdd2c6a51a6ee7a3e01 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 453 | sce | Example_7_23.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 7
//Properties of Solutions
//Example 23
clear;
clc;
//Given:
To = 298; //initial temperature (K)
Cpm = 97.65; //Mean heat capacity of solution (J/mol K)
Hs = -758; //heat of mixing (J/mol)
//To find the final temperature attained
//Since the process is adiabatic
H = 0;
T = (H-Hs)/Cpm + To;
mprintf('The final temperature attained by the mixing is %f K',T);
//end |
c7efd6a92193e85c4bfd7551f4f0c1f5230889b4 | 717ddeb7e700373742c617a95e25a2376565112c | /3428/CH23/EX14.23.22/Ex14_23_22.sce | 32f3b36a60c41d0c3a3f696eaccebb864ceabb56 | [] | 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 | 177 | sce | Ex14_23_22.sce | //Section-14,Example-6,Page no.-PC.114
//To calculate the pH of 10^-8 M HCl solution.
clc;
k_w=10^-14
x=9.5*10^-8
C_1=10^-8+x
pH=-log10(C_1)
disp(pH,'pH of the given solution')
|
0f55ad45932609566b1bcb86fca8956bffbed7a2 | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/filter.tst | 2ffec8dcdfad75d245a27a2745c2c1b71b5e6fc7 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | dougsong/reposurgeon | 394001c0da4c3503bc8bae14935808ffd6f45657 | ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b | refs/heads/master | 2023-03-09T15:22:45.041046 | 2023-02-25T08:33:06 | 2023-02-25T08:33:06 | 280,299,498 | 1 | 0 | NOASSERTION | 2023-02-25T08:33:08 | 2020-07-17T01:45:32 | Go | UTF-8 | Scilab | false | false | 909 | tst | filter.tst | ## Test content filtering
read <sample1.fi
set interactive
print Testing shell filtering of blobs
=B filter --shell tr e X
print Testing shell filtering of commits
=C filter --shell tr e Y
print Testing regexp filtering of blobs
=B filter --regex /This/THIS PATHETIC HEAP/
print Testing regexp filtering of commits
=C filter --regex /causing/FROBNICATING/
print Testing replace filtering of commits
=C filter --replace /commit./COMMIT./
print Testing replace filtering of commits, comment only
=C filter --replace /dirYctory/froggle/c
print Following substitution should be a no-op, committer only
=C filter --replace /froggle/fraggle/C
print Testing replace filtering of commits (all fields)
=C filter --replace /Eric/Thranduil/
print Testing replace filtering of tags
=T filter --replace /Eric/Thorin/
print Testing %PATHS% feature
=B filter --shell sed /spacXr/s//%PATHS%/ || cat
clear interactive
write -
|
c3f5def192d4353ffaa9ca0a872aba776087a65d | b2675f983fedb79e5e6f1940962373bda0570ec4 | /TransformationServiceSample-v1/TransformationServiceTest-v1.tst | 872dd129f9525c591ca823b1f06f41cf9f0f58a1 | [] | no_license | Meena92/Projects | b854c40b91515bb429c9e13fb0cbc95c03e0a9d6 | 06361e24bf51883ff4140db5c37c3f40836a5752 | refs/heads/master | 2020-03-29T01:45:03.726432 | 2019-06-11T05:26:08 | 2019-06-11T05:26:08 | 149,404,524 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,827 | tst | TransformationServiceTest-v1.tst | <?xml version="1.0" ?>
<TestCase name="TransformationServiceTest-v1" version="5">
<meta>
<create version="8.0.1" buildNumber="8.0.1.644" author="admin" date="08/06/2015" host="DVTBLISAPP002" />
<lastEdited version="8.3.0" buildNumber="8.3.0.241" author="admin" date="09/09/2015" host="DVTBLISAPP002" />
</meta>
<id>AF4918CA56C411E59527BE4B20524153</id>
<Documentation>Put documentation of the Test Case here.</Documentation>
<IsInProject>true</IsInProject>
<sig>ZWQ9NSZ0Y3Y9NSZsaXNhdj04LjMuMCAoOC4zLjAuMjQxKSZub2Rlcz0yMjgzOTA4ODY=</sig>
<subprocess>false</subprocess>
<initState>
</initState>
<resultState>
</resultState>
<deletedProps>
</deletedProps>
<Node name="Raw SOAP Request" log=""
type="com.itko.lisa.ws.RawSOAPNode"
version="1"
uid="AF4918CB56C411E59527BE4B20524153"
think="500-1S"
useFilters="true"
quiet="false"
next="end" >
<!-- Assertions -->
<CheckResult assertTrue="false" name="Ensure Properties Are Equal" type="com.itko.lisa.test.AssertPropsEqual">
<log>Assertion name: Ensure Properties Are Equal checks for: false is of type: Assert Properties Equal.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<prop1>request_AccountID</prop1>
<prop2>response_AccountID</prop2>
</CheckResult>
<url>{{ENDPOINT8}}</url>
<action></action>
<soapRequest itko_enc="base64">PHNvYXBlbnY6RW52ZWxvcGUgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSIgeG1sbnM6c29hcGVudj0iaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvc29hcC9lbnZlbG9wZS8iIHhtbG5zOndlYj0iaHR0cDovL3dlYnJlY2VpdmVyLyI+DQogICA8c29hcGVudjpCb2R5Pg0KICAgIDxSZXF1ZXN0Pg0KCQkJPGZpZWxkMT5yZXExPC9maWVsZDE+DQoJPC9SZXF1ZXN0Pg0KICAgPC9zb2FwZW52OkJvZHk+DQo8L3NvYXBlbnY6RW52ZWxvcGU+</soapRequest>
<contentType>text/xml; charset=UTF-8</contentType>
<onError>abort</onError>
<discardResponse>false</discardResponse>
<customHTTPHeaderInfo>
</customHTTPHeaderInfo>
</Node>
<Node name="abort" log=""
type="com.itko.lisa.test.AbortStep"
version="1"
uid="AF4918CE56C411E59527BE4B20524153"
think="0h"
useFilters="true"
quiet="true"
next="" >
</Node>
<Node name="fail" log=""
type="com.itko.lisa.test.Abend"
version="1"
uid="AF4918CD56C411E59527BE4B20524153"
think="0h"
useFilters="true"
quiet="true"
next="abort" >
</Node>
<Node name="end" log=""
type="com.itko.lisa.test.NormalEnd"
version="1"
uid="AF4918CC56C411E59527BE4B20524153"
think="0h"
useFilters="true"
quiet="true"
next="fail" >
</Node>
</TestCase>
|
c191e81858fb607610551e8562f0602d2d56ea1a | 20253970b7dd99e615215029609de822e2bf855d | /judge/tests/52063/49.tst | 959c8c0816edc7fa9185c99401131a6022b9bfc6 | [] | no_license | B-Rich/CATS | d26d6c85cfc1dbdc78fa16f691adbfccc615df03 | d299e328f9e7498ecd9f58f64069fcd57536db00 | refs/heads/master | 2021-01-01T06:10:11.322262 | 2011-06-21T15:06:06 | 2011-06-21T15:06:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,079 | tst | 49.tst | 1000 1000
92
603 541 15
299 237 10
539 413 27
411 285 29
947 693 4
211 725 1
483 293 16
611 805 7
379 381 20
171 813 9
195 133 6
755 949 5
619 173 14
51 373 24
571 637 29
419 165 21
43 429 20
651 717 31
203 909 14
715 397 8
531 405 21
659 277 7
443 189 20
531 85 25
771 709 5
187 637 25
875 941 8
403 405 26
571 381 22
491 45 1
707 517 20
203 205 26
35 165 3
307 501 1
779 269 4
51 949 16
155 733 7
235 365 16
763 957 20
51 693 12
363 429 7
771 901 6
523 269 24
755 693 27
475 157 10
715 333 19
667 605 15
227 741 9
67 581 30
899 261 12
163 549 28
51 757 29
827 317 25
683 45 29
947 949 18
411 669 14
211 789 13
963 389 7
275 405 16
499 309 14
211 853 25
179 501 28
667 797 24
819 373 5
771 133 12
515 197 8
307 949 20
755 757 19
435 629 4
131 325 21
363 237 27
875 301 24
371 501 18
531 789 12
899 645 28
59 893 27
243 629 25
923 541 19
43 109 19
315 61 25
403 725 23
235 941 23
611 101 5
371 565 29
395 653 28
795 797 26
587 845 9
891 61 29
275 853 12
843 205 9
755 181 30
723 405 4
|
8722788054e548da14e7e779b32e03a72e58a35a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH9/EX9.a.22/Example_a_9_22.sce | b6968638246dacd1836c0b628bbeb2bebdfa3132 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,035 | sce | Example_a_9_22.sce | //Example_a_9_22 page no:420
clc;
Vrph_mag=440/sqrt(3);
Vrph_ang=0;
Vyph_mag=440/sqrt(3);
Vyph_ang=-120;
Vbph_mag=440/sqrt(3);
Vbph_ang=-240;
Irmag=20;
Irang=-40;
Iymag=20;
Iyang=-160;
Ibmag=20;
Ibang=80;
pi=40;
Vl=440;
Il=20;
Zrmag=Vrph_mag/Irmag;
Zrang=Vrph_ang-Irang;
Zymag=Vyph_mag/Iymag;
Zyang=Vyph_ang-Iyang;
Zbmag=Vbph_mag/Ibmag;
Zbang=Vbph_ang-Ibang;
Zrreal=Zrmag*cosd(Zrang);
Zrimag=Zrmag*sind(Zrang);
Zr=Zrreal+(%i*Zrimag);
Zyreal=Zymag*cosd(Zyang);
Zyimag=Zymag*sind(Zyang);
Zy=Zyreal+(%i*Zyimag);
Zbreal=Zbmag*cosd(Zbang);
Zbimag=Zbmag*sind(Zbang);
Zb=Zbreal+(%i*Zbimag);
disp(Zr,"the impedence due to Zr is (in ohm)");
disp(Zy,"the impedence due to Zr is (in ohm)");
disp(Zb,"the impedence due to Zr is (in ohm)");
P=3*Irmag^2*real(Zr);
disp(P,"power consumed is (in W)");
//wattmeter reading
W1=Vl*Il*cosd(30-pi);
W2=Vl*Il*cosd(30+pi);
Pt=W1+W2;
disp(Pt,"the total power is (in W)");
//power consumed varies slightly with text book because Rph value is rounded off in text book
|
d4733c91af98f68f6d6cf43d8f9285771f09bd6e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2594/CH5/EX5.21/Ex5_21.sce | 54c60367123640f02508157319f2a80f81c542c2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,398 | sce | Ex5_21.sce | clc
Vbi=1.2
disp("Vbi = "+string(Vbi)+"/cm^3") //initializing value of built in voltage.
no=1.8*10^6
disp("no = "+string(no)+"cm^-3") //initializing value of intrinsic concentration.
Vt=0.0259
disp("Vt = "+string(Vt)+" eV") //initializing value of thermal voltage.
Er=13.1
disp("Er = "+string(Er)) //initializing value of relative dielectric permittivity constant .
Eo=8.854*10^-14
disp("Eo = "+string(Eo)+" F/cm") //initializing value of permittivity of free space.
e=1.6*10^-19
disp("e = "+string(e)+" columbs") //initializing value of charge of electrons.
E=Eo*Er
disp("total permittivity,E=Eo*Er="+string(E)+" F/cm")//calculation.
NaNd=((no^2)*(exp(Vbi/Vt)))
disp("(a)NaNd=((no^2)*(exp(Vbi/Vt)))="+string(NaNd)+" /cm^6")//calculation.
Na=(sqrt(NaNd/(4)))
disp("Na=(sqrt(NaNd/(4)))="+string(Na)+" /cm^3")//calculation.
Nd=4*Na
disp("(b)Nd=4*Na="+string(Nd)+" /cm^3")//calculation.
W=sqrt((2*E*Vbi/e)*((Nd+Na)/(Na*Nd)))
disp("(c)W=sqrt((2*E*Vbi/e)*((Nd+Na)/(Na*Nd))))="+string(W)+" cm")//calculation.
xn=0.2*W
disp("(d)xn=0.2*W="+string(xn)+" cm")//calculation.
xp=0.8*W
disp("xp=0.8*W="+string(xp)+" cm")//calculation.
Emax=(-e*Nd*xn)/E
disp("(e)Emax=(-e*Nd*xn)/E)="+string(Emax)+"V/cm")//calculation.
//The value of Na after calculation is provided wrong in the book.Due to which value of W,xn,xp and Emax differ ,than the answer provided in the book.
|
9323084a22c260cd969c2a89bbf35d8c7c361735 | 449d555969bfd7befe906877abab098c6e63a0e8 | /530/CH9/EX9.5/example_9_5.sce | 03b7756c9501f1bdb3aadda247ebabf2322a7e0d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 746 | sce | example_9_5.sce | clear;
clc;
// A Textbook on HEAT TRANSFER by S P SUKHATME
// Chapter 9
// Mass Transfer
// Example 9.5
// Page 359
printf("Example 9.5, Page 359 \n \n");
// Evaporation of water, one dimensional
T_w = 20+273 ; // [K]
D = 0.04 ; // [m]
h = 0.20 ; // [m]
h_w = 0.03 ; // [m]
P = 1.014*10^5; // [Pa]
R = 8314 ; // [J/kg mole K]
P_sat = 0.02339 ; // [bar]
x_a1 = P_sat/1.014 ; // mole fraction at liq-vap interface
x_a2 = 0 ; // mole fraction at open top
c = P/(R*T_w);
// From Table 9.2
Dab = 2.422*10^-5 ; // [m^2/s]
// Substituting above values in eqn 9.4.18
flux = 0.041626*Dab/0.17*log((1-0)/(1-x_a1)); // [kg mole/m^2 s]
rate = flux*18*(%pi/4)*(D^2);
printf("Rate of evaporation of water = %e kg/s",rate); |
83a1452f8275c0ed051b92b4d45fc98c1f186c1a | 449d555969bfd7befe906877abab098c6e63a0e8 | /191/CH6/EX6.5/Example6_5.sce | 5939f4518e62e90e4a3482fc74f1d6c39fc79549 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sce | Example6_5.sce | //Trapezoidal Rule
clc;
clear;
close();
format('v',10);
funcprot(0);
disp('Integral 0 to 2 e^x dx');
disp('based on trapezoidal rule ');
deff('[y]=f(x)','y=exp(x)');
n = [1 2 4 8];
a = 0;
b = 2;
h = (ones(1,4)*(b-a))./n;
t(1) = h(1)*(f(a)+f(b))/2;
disp(t(1),'n=1');
t(2) = h(2)*(f(a)+f(b)+2*f(h(2)))/2;
disp(t(2),'n=2');
t(3) = h(3)*(f(a)+f(b)+2*(f(h(3))+f(2*h(3))+f(3*h(3))))/2;
disp(t(3),'n=4');
t(4) = h(4)*(f(a)+f(b)+2*(f(h(4))+f(2*h(4))+f(3*h(4))+f(4*h(4))+f(5*h(4))+f(6*h(4))+f(7*h(4))))/2;
disp(t(4),'n=8');
exact = integrate('exp(x)','x',0,2);
disp(exact,'The exact value of intergation is :');
exact = ones(4)*exact;
err = exact-t;
disp(err,'thus corresponding errors are : '); |
686bc916e9b743ac7a8b9de511d799c89ebd35db | 449d555969bfd7befe906877abab098c6e63a0e8 | /3878/CH1/EX1.7/Ex1_7.sce | 16dcbdc9c1607d0118f509408bb11932479a9bb5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 688 | sce | Ex1_7.sce | clear
// Variable Declaration
m_N=0.906// The mass of nitrogen in a cubic metre of air in kg
R_N=297// The specific gas constant of nitrogen in J/kg K
m_O=0.278// The mass of oxygen in a cubic metre of air in kg
R_O=260// The specific gas constant of oxygen in J/kg K
m_A=0.015// The mass of argon in a cubic metre of air in kg
R_A=208// The specific gas constant of argon in J/kg K
T=273.15+20// The temperature of air in K
// Calculation
p_N=m_N*R_N*T// The pressure of nitrogen in Pa
p_O=m_O*R_O*T// The pressure of oxygen in Pa
p_A=m_A*R_A*T// The pressure of argon in Pa
p_t=p_N+p_O+p_A// The total pressure in Pa
printf("\n The total pressure is %0.0f Pa %0.5f bar",p_t,p_t/10**5)
|
9519c28298d4a116a26eb50e33e4aab6a6a76d30 | 6eb42df0d9f452fee0d084e0b0058e4e4ac242ef | /Updated_Exercises_March_2015/Miscellaneous/CoriolisForce/StraightPath.sce | b61fdfb39c79d14569b5e30d476865e060bdb45d | [] | no_license | huangqingze/ocean_modelling_for_beginners | b21c1b398efe91e4a3aa1fa5a1d732e2eb4ec16e | 3e73a511480c73f4e38b41c17b2defebb53133ed | refs/heads/main | 2023-07-03T12:00:01.326399 | 2021-08-14T21:16:12 | 2021-08-14T21:16:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,608 | sce | StraightPath.sce | //*******************************************
// Scilab script for visualisation of the
// Coriolis force.
//
// Use the help facility for more information
// on individual functions used.
//
// Author: J. Kaempf, 2015 (update)
//********************************************
clf; scf(0); a=gcf(); a.figure_size= [600,600];
T = 24.*3600.; // period
fre = -2*%pi/T; // rotation rate
radius = 20;
time = 0;
dt = T/200; // time step
xp = 0;
yp = 5;
xf = xp;
yf = yp;
uf = 0.0; // speed in m/s
vf = 0.15;
// time loop starts here
fact = 0.9;
fac2 = fact*radius;
xpp(1:200)= %nan;
ypp(1:200)= %nan;
for n = 1:200 // run for 1 period
drawlater; clf;
// isoview scaling
plot2d(0,0,-1,"030"," ",[-20,-20,20,20])
time = time+dt;
xx = radius*sin(fre*time);
yy = radius*cos(fre*time);
x1 = [fact*xx xx];
y1 = [fact*yy yy];
xset("color",5)
xset("thickness",6)
xpoly(x1,y1,"lines",1)
xx = radius*cos(fre*time);
yy = -radius*sin(fre*time);
x2 = [fact*xx xx];
y2 = [fact*yy yy];
xset("color",0)
xset("thickness",6)
xpoly(x2,y2,"lines",1)
xx = -radius*sin(fre*time);
yy = -radius*cos(fre*time);
x3 = [fact*xx xx];
y3 = [fact*yy yy];
xset("color",0)
xset("thickness",6)
xpoly(x3,y3,"lines",1)
xx = -radius*cos(fre*time);
yy = radius*sin(fre*time);
x4 = [fact*xx xx];
y4 = [fact*yy yy];
xset("color",0)
xset("thickness",6)
xpoly(x4,y4,"lines",1)
xset("color",2)
xfarc(-fac2,fac2,2*fac2,2*fac2,0,360*64)
x1 = [0 0];
y1 = [fact*fac2 fac2];
xset("color",5)
xset("thickness",6)
xpoly(x1,y1,"lines",1)
x1 = [0 0];
y1 = [-fac2 -fact*fac2];
xset("color",0)
xset("thickness",6)
xpoly(x1,y1,"lines",1)
y1 = [0 0];
x1 = [fact*fac2 fac2];
xset("color",0)
xset("thickness",6)
xpoly(x1,y1,"lines",1)
y1 = [0 0];
x1 = [-fac2 -fact*fac2];
xset("color",0)
xset("thickness",6)
xpoly(x1,y1,"lines",1)
//new ball position
xf = xf + dt*uf/1000;
yf = yf + dt*vf/1000;
xp = xf*cos(fre*time)+yf*sin(fre*time);
yp = yf*cos(fre*time)-xf*sin(fre*time);
xpp(n) = xp;
ypp(n) = yp;
xset("color",1)
xfarc(xp-1,yp+1,2.0,2,0,360*64)
xset("color",7)
xfarc(xp-0.8,yp+0.8,1.6,1.6,0,360*64)
xset('thickness',2)
plot2d(xpp,ypp,8,'000','',[-radius,-radius,radius,radius])
title("Rotating Frame of Reference","fontsize",3,"font_style",4);
xpause(5d2);
// creation of GIF files (optional)
//if n < 10 then
// xs2gif(0,'ex100'+string(n)+'.gif')
//else
// if n < 100 then
// xs2gif(0,'ex10'+string(n)+'.gif')
// else
// xs2gif(0,'ex1'+string(n)+'.gif')
// end
//end
drawnow;
end;
|
65bad3f232f6a5bbade0c66b167b9dedd25f6d0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1571/CH3/EX3.9/Chapter3_Example9.sce | fb103d9d76f6f7dcdef860aa2b24eb298de48e06 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 520 | sce | Chapter3_Example9.sce | clc
clear
//INPUT DATA
h=10000;//vertical height of water fall in cm
v=5;//volume disharged per sec in litres
J=4.18;//joule's constant in j/cal
g=981;//accelaration due to gravity in cm/sec^2
//CALCULATIONS
m=v*1000;//mass of water disharged per sec in gm
w=m*h*g;//work done in falling through 100m in erg
H=w/(J*10^7);//quantity of heat produced in cal
T=H/m;//rise in temperature in deg.C
//OUTPUT
mprintf('the quantity of heat produced is %3f cal \n the rise in temperature is %3.2f deg.C',H,T)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.