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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0d7eebad001fd40150abbb8af914d72ae0bc85fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /842/CH10/EX10.34/Example10_34.sce | 916a4f8e793d784c9592908461238176fde904ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 745 | sce | Example10_34.sce | //clear//
// Example10.34:Unilateral Ztransform- partial fraction
// X(z) =(3-(5/6)*(z^-1))/((1-(1/4)*(z^-1))*(1-(1/3)*(z^-1)))
z = %z;
s = %s;
syms n t;
a = 0.5;
[A]=pfss((3-(5/6)*(z^-1))/((1-(1/4)*(z^-1))*(1-(1/3)*(z^-1))))
x1 = horner(A(1),z)
x2 = horner(A(2),z)
x3 = A(3)
x = x1+x2+x3
disp(x1,"ans=")
disp(x2,"ans=")
disp(x3,"ans=")
disp(x,"ans=")
//Result
// 0.6666667
// -------------
// - 0.3333333 + z
// 0.25
// --------
// - 0.25 + z
//3
//sum of these, gives the original value
// 2
// - 0.8333333z + 3z
// -------------------------
// 2
// 0.0833333 - 0.5833333z + z
|
b89010353d4b73577186619b6277135b7c350920 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electric_Machines_D._P._Kothari_And_I._J._Nagrath_503.zip/Electric_Machines_D._P._Kothari_And_I._J._Nagrath_503/CH7/EX7.3/ch7_3.sci | f0324ac7b6b7a7ce64a12d23d2f0fe3eba721849 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 210 | sci | ch7_3.sci | errcatch(-1,"stop");mode(2);//to calculate relevant pitches for wave windings
;
S=16;
P=6;
Y_cs=floor(S/P);
U=2;
Y_b=Y_cs*U+1;
C=16;
y_c=U*(C-1)/P;
y_f=2*y_c-Y_b;
disp(y_f,'no of pitches');
exit();
|
488daedde0b83172a9b6d7fc350b2f4493af584c | f95a4301aef1a5e8894c410a4841c1bd95c7b14c | /variable/ivpsolver.sce | 35149111f9b709ab8e605fbe0ebc12aa26601636 | [] | no_license | e-scheiber/scilab-ivpsolvers | ee827f13a23d483be1e0863551a3fd314b94ddfc | 0db0a69d57c1f958880d391f268648258f9f984b | refs/heads/master | 2021-01-15T10:42:41.821051 | 2017-08-07T16:26:26 | 2017-08-07T16:26:26 | 99,597,309 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,942 | sce | ivpsolver.sce | function [u,x]=ivpsolver()
// Dispatcher function
// Initializes the data
[deri,x0,y0,h,n]=datas()
// Calls the IVP solver
[u,x,Nf]=picard(deri,x0,y0,n,h)
printf('Number of calling f : %d\n',Nf)
// Computes the real solutions
s=zeros(n+1,length(y0))
for i=1:n+1 do
s(i,:)=sol(x(i))'
end
// Prints the results
//disp([x,u])
err=norm(u-s,'inf')
printf('Maximum error : %g',err)
endfunction
function [deri,x0,y0,h,n]=datas()
// IVP defined by the user
// Example 1
// dy/dx=deri(x,y)
//deff('dy=deri(x,y)','dy=y.*(4*(x+2).^3-y)./((x+2).^4-1)')
// Initial value data
//x0=0
//y0=15
// The number of intervals
//n=5
// The step between the equidistant nodes
//h=1/n
// Example 2
// dy/dx=deri(x,y)
//deff('dy=deri(x,y)',['r=sqrt(y(1).^2+y(3).^2)','dy(1)=y(2)','dy(2)=-y(1)./r.^3','dy(3)=y(4)','dy(4)=-y(3)./r.^3'])
// Initial value data
//x0=0
//y0=[1,0,0,1]
// The number of intervals
//n=40
// The step between the equidistant nodes
//h=6*%pi/n
// Example 3
// dy/dx=deri(x,y)
deff('dy=deri(x,y)',['r=sqrt(y(1).^2+y(3).^2)','dy(1)=y(2)','dy(2)=-y(1)./r.^3','dy(3)=y(4)','dy(4)=-y(3)./r.^3'])
// Initial value data
x0=0
y0=[0.4,0,0,2]
// The number of intervals
n=20
// The step between the equidistant nodes
h=2*%pi/n
// Example 4
// dy/dx=deri(x,y)
//deff('dy=deri(x,y)',['dy(1)=998*y(1)+1998*y(2)','dy(2)=-999*y(1)-1999*y(2)'])
// Initial value data
//x0=0
//y0=[1,0]
// The number of intervals
//n=500
// The step between the equidistant nodes
//h=1/n
// Example 5
// dy/dx=deri(x,y)
//deff('dy=deri(x,y)','dy=20*y')
// Initial value data
//x0=0
//y0=1
// The number of intervals
//n=1000
// The step between the equidistant nodes
//h=1/n
endfunction
function y=sol(x)
// For test purpose
// Example 1
//y=1+(x+2)+(x+2).^2+(x+2).^3
// Example 2
//y=[cos(x);-sin(x);sin(x);cos(x)]
// Example 3
deff('z=k(u)','z=x-u+0.6*sin(u)')
u=fsolve(x,k)
y=[cos(u)-0.6;-sin(u)./(1-0.6*cos(u));0.8*sin(u);0.8*cos(u)./(1-0.6*cos(u))]
// Example 4
//y=[2*exp(-x)-exp(-1000*x),-exp(-x)+exp(-1000*x)]
//Example 5
//y=exp(20*x)
endfunction
function [u,x,Nf]=picard(deri,x0,y0,n,h)
// IVP solver for
// dy/dt=deri(x,y(x))
// y(x0)=y0
// The approximations of the numerical solution are given
// in x0+i*h, for i in {0,1,...,n}
u=zeros(n+1,length(y0))
x=zeros(n+1,1)
Nf=0
x(1)=x0
u(1,:)=y0
for i=1:n do
x(i+1)=x0+i*h
// The function implements the Picard iterations
// with variable referrence points
[u(i+1,:),N]=interval(deri,x(i),u(i,:),h)
Nf=Nf+N
end
endfunction
function [v,Nf]=interval(deri,x,u,h)
// Computes the approximation of the solution in x+h
// The number of nodes of the mesh
m=5
v=u
// Tolerance
tol=1e-9
// Maximum allowed number of iterations
nmi=100
// A switch
sw=%t
// Iteration counter
m=1
// Initializations for m=1
Nf=1
f=deri(x+0.5*h,u)
xi_old=zeros(1,2)
xi_old(1)=1/sqrt(2)
xi_old(2)=-1/sqrt(2)
u_old=zeros(2,length(u))
u_old(1,:)=u+0.5*h*(1+xi_old(1))*f'
u_old(2,:)=u+0.5*h*(1-xi_old(2))*f'
v=u+h*f'
// Iteration
while sw do
m=m+1
// Roots of the m+1 degree Tchebyshev polynomial
xi_new=zeros(1,m+1)
for i=1:m+1 do
xi_new(i)=cos(0.5*(2*i-1)*%pi/(m+1))
end
// Computes the array u_new
W=zeros(m+2,m)
l=-ones(1,m+1)
for j=1:m do
rts=zeros(1,m-1)
jj=0
for i=1:m do
if i~=j then
jj=jj+1
rts(jj)=xi_old(i)
end
end
W(1:m+1,j)=polyinteg(rts,l,xi_new)*(-1)^(j-1)*sin(0.5*(2*j-1)*%pi/m)
W(m+2,j)=polyinteg(rts,-1,1)*(-1)^(j-1)*sin(0.5*(2*j-1)*%pi/m)
end
W=h*2^(m-2)/m*W
F=zeros(m,length(u))
for j=1:m do
F(j,:)=deri(x+0.5*h*(xi_old(j)+1),u_old(j,:))
end
Nf=Nf+m
WF=W*F
for j=1:m+2 do
WF(j,:)=WF(j,:)+u
end
u_new=WF(1:m+1,:)
w=WF(m+2,:)
// Stopping rule
nrm=abs(w-v)
v=w
u_old=u_new
xi_old=xi_new
if (nrm<tol) | (m>nmi) then
sw=%f
end
end
// Notification of non-convergence
if nrm>= tol then
printf('Non-convergence for %g \n',x)
end
endfunction
function integ=polyinteg(proots,left,right)
p=poly(proots,'X','roots')
c=coeff(p)
m=length(c)
integ=0
for i=1:m do
integ=integ+c(i)*(right.^i-left.^i)/i
end
endfunction
|
ef41dc4e7501e251fa8ed5ce51164468f44f1792 | 717ddeb7e700373742c617a95e25a2376565112c | /1026/CH8/EX8.17/Example8_17.sce | 99b6e0535007cbe7d7273a370ee64de795c6ac87 | [] | 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 | 287 | sce | Example8_17.sce | //chapter8,Example8_17,pg 210
grat=1/6000
f=30
n=2
lam1=5770*10^-8
lam2=5460*10^-8
dlam=lam1-lam2
lam=lam2
cos(theta)=sqrt(1-(((n*lam)/grat)^2))
dl=((n*f)/(grat*cos(theta)))*dlam
printf("linear separation of two spectral lines\n")
printf("dl=%.4f cm",dl) |
527567fd0bcc77e45a45940c46b6149027ea1781 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1.1/macros/robust/parrot.sci | ff9652fbaf91c61070956578b46b1d0c72a468bc | [
"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 | 564 | sci | parrot.sci | //[Kopt,gamaopt]=parrot(D,r)
//Given a matrix D partionned as [D11 D12
// D21 D22]
//where size(D22)=r=[r1,r2]
//compute a matrix K such that
//largest singular value of [D11 D12
// D21 D22+K]
//is minimal (Parrot's theorem)
//F.D. (1990)
//!
[l,k]=size(D);
l1=1:(l-r(1));
l2=(l-r(1)+1):l;
k1=1:(k-r(2))
k2=(k-r(2)+1):k;
D11=D(l1,k1);
D12=D(l1,k2);
D21=D(l2,k1);
D22=D(l2,k2);
D1=[D11,D12];D2=[D11;D21];
gamaopt=maxi(maxi(svd(D1),svd(D2)));
Kopt=-D22-D21*inv(gamaopt*gamaopt*eye-D11'*D11)*D11'*D12;
//end
|
652a051e7d70a60633a66cac0af2f76458638dfd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3811/CH5/EX5.2/Ex5_2.sce | 18c9d91cf8448d5de042147859a8dcc5ce0007d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 987 | sce | Ex5_2.sce | //Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
//chapter 5
//example 5.2
//edition 1
//publisher and place:Nelson Engineering
clc;
clear;
l=50; //load in hp
f=60; //frequency in hertz
n=1764; //full load speed in rpm
ns=1800; //synchronous speed of motor in rpm
Pr=.950; //rotational loss in kilowatts
Pcu=1.600; //stator copper loss in kilowatt
Pi=1.200; //iron loss in kilowatt
Pout=l/1.34; //output power at full load is 50 hp in kilowatt
Pd=Pout+Pr; //power developed in kilowatt
s=(ns-n)/ns; //slip of the motor
Pg=Pd/(1-s);
Pin=Pg+Pcu+Pi; //input power in kilowatt
efficiency=Pout/Pin; //motor efficiency
efficiency=efficiency*100;//efficiency in percentage
mprintf("The efficiency of the motor is %d percentage",efficiency)
|
60909ec793c875eeb01d0cbc9f80223398d7d7ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2273/CH8/EX8.9/ex8_9.sce | b144e5eb2cc8a21dc5ec441801dcef631d554519 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 500 | sce | ex8_9.sce | //Calculate voltage on line end unit and capacitance Cx required
clear;
clc;
//soltion
//given
V=20;//kV
Sc=0.2;//shunt capacitance
V2=poly(0,"V2");
V1=poly(0,"V1");
V2=V1+0.2*V1;
V3=V2;
v1=roots(V1+V2+V3-V);
V3=1.2*v1;
printf("Voltage on line end unit= V3= %.2f kV\n",V3);
Cx=poly(0,"Cx");
C=poly(0,"C");
printf("For Cx \nC*1.2*V1 + Cx*1.2*V1 = C*1.2*V1 + C*2.2V1/5\n");
C_=roots(Cx*1.2-2.2/5);//after simplifying the eqution
Cx=C_*C;
printf("Cx=");
disp(Cx);
printf("Farads")
|
e9a70b375acbae2cd4093351d3504aec7fc82b6a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH1/EX1.13/Ex1_13.sce | 02170cc5c1e26f00f9c85f560f9a53f70039dafb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 107 | sce | Ex1_13.sce | //Ex1.13
clc
ND =5*10^16//donor atom concentration
disp("n = "+string(ND)+"/cm.cube") //free electrons
|
228e2e158e8e7333d95f20f12d7fae49f84bb5e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1652/CH6/EX6.1/6_1.sce | 26b3901f1c0befda1c6f09b6869c8afa9da1aeb7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | sce | 6_1.sce | clc
//initialization of variables
a2=1/8
//calculations
b2=1-a2
a1=sqrt(a2)
b1=sqrt(b2)
//results
printf(" Wave function is %.2f phi1 +%.2f phi2",a1,b1)
|
80e38b53be8a21f2f9301137201c9bc915d3b433 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1397/CH4/EX4.8/4_8.sce | 898a8c4bba26c1d1b54ff6546acd3a9a1e0d2753 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 400 | sce | 4_8.sce | //clc();
clear;
//To determine the magnetic dipole moment and torque
r=0.04; //radius of circular loop in m
i=1; //current in A
B=10^-3; //magnetic flux density in Wb/m^2
theta=45; //angle in degrees
A=%pi*(r^2);
mew=i*A;
tow=i*B*cosd(theta);
//disp(mew);
//disp(tow);
printf("magnetic dipole moment is %f amp m^2",mew);
printf("torque on the coil is %f Nm",tow);
|
a75e24f93360e78bdb9a425519472298b6c7d102 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2210/CH2/EX2.14/2_14.sce | 039359669b26a792e9c3514108876947cd0f9f95 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sce | 2_14.sce | //Chapter 2, Problem 14
clc
Z0=75 //characteristic impedance in ohm
l=1/5 //electrical length
//calculation of input impedance
Zin=-%i*Z0*cotg(2*%pi*l)
printf("Input impedance = %.1fj ohm",imag(Zin))
|
629523d2a038fbeb4219aea61ce00be95ac95ffa | 2e3fa3e47743f2465a2d4475becdcc763a07d1f6 | /probSucess.sce | b1ce3cd0e09f57d8cd25ce863f459db1bd663ede | [] | no_license | Stephaniebraga/SucessProbWifi | 23e23f6ab8e83a0d097da1b13e8002e2c7d64dda | c8fa9e7ce1ae4b5deb76ad0fba38fe2b71ab1144 | refs/heads/master | 2021-01-20T19:30:38.348354 | 2016-07-05T23:11:13 | 2016-07-05T23:11:13 | 62,675,428 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 620 | sce | probSucess.sce | clc;
clear;close;
//número de estaçõesa
nSt= linspace(1,50,50);
numbN = size(nSt,2);
//janela de contenção
cw =[5,15,31,63,127];
numbW = size(cw,2);
//Matriz de Probabilidade
prob = zeros(numbW,numbN);
j=1; i =1;
while i<=numbW
w = cw(i);
while j<=numbN
n=nSt(j);
po = 2/(w + 1);
Ps= (n*po*(1-po)^(n-1))/(1-(1-po)^n);
prob(i,j)=(Ps*100);
j=j+1;
end
j=1;
i=i+1;
end
figure;
i=1;
while i<=numbW
plot(nSt(1,:),prob(i,:),"-");
i=i+1;
end
//printf("Probabilidade de Sucesso: %.2f", (Ps*100));
//printf("%%\n");
|
c71db6b74b726655cce9d10ba6bbe6f844aa0dae | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/IncNavierStokesSolver/Tests/KovaFlow_3DH2D_xy_FFT_MovRefFrame.tst | bac808f042b9ecf90fac06736881df7b915463a1 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 999 | tst | KovaFlow_3DH2D_xy_FFT_MovRefFrame.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>Kovasznay Flow 3D homogeneous 2D, flow in xy, MovingReferenceFrame, FFT</description>
<executable>IncNavierStokesSolver</executable>
<parameters>KovaFlow_3DH2D_xy_FFT_MovRefFrame.xml</parameters>
<files>
<file description="Session File">KovaFlow_3DH2D_xy_FFT_MovRefFrame.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="2.2e-5">0</value>
<value variable="v" tolerance="2.23e-5">0</value>
<value variable="w" tolerance="1e-9">0</value>
<value variable="p" tolerance="4.3e-5">0</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="7.1e-5">0</value>
<value variable="v" tolerance="1.1e-4">0</value>
<value variable="w" tolerance="1e-9">0</value>
<value variable="p" tolerance="2.7e-4">0</value>
</metric>
</metrics>
</test>
|
e8d22de9395b81cbbaf92bd5fbbed59704d90c32 | a550430672dfb5984bd8561b894897323028b7f5 | /tests/results/mis12.tst | 13002e6c2aa96117471495044e8dd3d52221229e | [] | no_license | carlosmata/LabelPropagation | c91f68489a941e6f8cfb15de478d2fe28eadbcad | 2f169cc4ece49a0d0f868fee15e5eefe02bbc6df | refs/heads/master | 2020-12-18T17:46:23.501020 | 2020-05-09T06:13:16 | 2020-05-09T06:13:16 | 235,474,033 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 175 | tst | mis12.tst | argc:7
Dataset: ../datasets/converted/lesmiserables.net
Nodes Edges Com Mod NMI Time
seq semisync 77 508 5 0.547641 -1 0.000278835
par semisync 77 508 8 0.55371 -1 0.082489
|
a444de1f5205f54c53b8c26fed46613ff9527969 | 5ef198fade948c83b23b5441c96947fb5df5022c | /2d_transient_v01_data.sci | b098806d9b63102bbadf1fec5e172f944ce058be | [] | no_license | anandtakawale/Con-duction | c774b0d38e7f7836c102f88129cbd36b5b097115 | d36237e4686a615fdea958a1251ece34336b7d67 | refs/heads/master | 2020-06-01T14:17:02.157334 | 2012-09-30T18:53:08 | 2012-09-30T18:53:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 770 | sci | 2d_transient_v01_data.sci | //2d transient conduction
l=input("Enter length of square plate:");
nx=input("Enter number of nodes on each side:");
w=l; //width of plate
ny=nx; //nodes in y direction
dx=l/(nx-1); //finite difference in x direction
dy=w/(ny-1); //finite difference in y direction
k=input("Enter thermal conductivity in W/mK:");
rho=input("Enter density of plate material(kg/m^3):");
C=input("Enter specific heat capacity in J/kg.K:");
dt=0.25*k*dx*dx/(rho*C);
//initial conidtions
T_lower=input("Temperature of lower side of plate in C");
T_upper=input("Temperature of upper side of plate in C:");
T_left=input("Temperature of left side of plate in C:");
T_right=input("Temperature of right side of plate in C:");
T_default=input("Plate initial temperaturein C:");
acc=0.001 //Accuracy |
ff4d0ad8cfa1ab3c87825cf14baa618f5491fc71 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH9/EX9.1/Chapter9_Example1.sce | c5422a87d30918e230a4e30f57f8a487c992b8ed | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 562 | sce | Chapter9_Example1.sce | //Chapter-9, Example 9.1, Page 378
//=============================================================================
clc
clear
//INPUT DATA
T=5527;//Temperature of black body in degree C
D=(1.39*10^6);//Diameter of the sun in km
L=(1.5*10^8);//Distance between the earth and sun in km
//CALCULATIONS
q=(5.67*10^-8*(T+273)^4*D^2)/(4*L^2);//Rate of solar radiation in W/m^2
//OUTPUT
mprintf('Rate of solar radiation on a plane normal to sun rays is %3.0f W/m^2',q)
//=================================END OF PROGRAM==============================
|
5462a994a4c28cc1d91c383b01719546b9c5bfff | 92bc4c8555d4d13922df9f13a611b76b99808b42 | /roots_of_functions/newton_raphson.sce | 5d710ce64f3f3442bfe806a426111a1ed2d8b304 | [] | no_license | bertolinocastro/topics-in-computational-physics | f464d7c449715ba9ed04094c0fca985cd0adfcb0 | 4b64f6cdbf3f13823bdd1d59e39db8c753c8f5fd | refs/heads/master | 2020-04-29T08:52:32.230156 | 2019-05-26T01:57:12 | 2019-05-26T01:57:12 | 176,002,283 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 389 | sce | newton_raphson.sce | function xl=newton_raphson(x0,f,df,e)
xl = x0 - f(x0)/df(x0)
while abs(f(xl)) > e
xl = xl - f(xl)/df(xl)
end
endfunction
function y=func(x)
y = -88.9*exp(-0.0472*x) + (17.3 + 0.527*x)
endfunction
function y=dfunc(x)
y = 0.527+4.19608*exp(-0.0472*x)
endfunction
xm = newton_raphson(0,func,dfunc,0.1)
x = linspace(-50,50)
plot(x,func(x),'b-')
plot(xm,func(xm),'ro')
|
681270363376c129ee16fea4cf4f1a646502e96d | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/LIR4.prev.tst | f2239a7992154b94d5cd60fb4fb0dd212ea85d8c | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 144 | tst | LIR4.prev.tst | # A000000 generated by Sequence
# Table of n, a(n) for n = 0..9
0 8
1 9
2 152
3 161
4 2728
5 2889
6 48952
7 51841
8 878408
9 930249
|
47e7829b7f17561ff6f9777a5a6d2a4b80bc0f6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1913/CH2/EX2.16/ex16.sce | 20ecf238404926cfcd8fe66eb49bd3b6ca528781 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 573 | sce | ex16.sce | clc
clear
//Input data
c1=16;//Velocity of steam at entrance in m/s
c2=37;//Velocity of steam at exit in m/s
h1=2990;//Specific enthalpy of steam at entrance in kJ/kg
h2=2530;//Specific enthalpy of steam at exit in kJ/kg
Q=-25;//Heat lost to the surroundings in kJ/kg
m1=360000;//The steam flow rate in kg/hr
//Calculations
m=m1/3600;//The steam flow rate in kg/s
W=(((c1^2-c2^2)/(2*1000))+(h1-h2))+Q;//Total work done in the system in kJ/kg
P=m*W;//Power developed by the turbine in kW
//Output
printf('The work output from the turbine P = %3.1f kW ',P)
|
9f7ef275fbd336c7e5aaa55cbe33c60f8e35ab16 | 449d555969bfd7befe906877abab098c6e63a0e8 | /839/CH19/EX19.5/Example_19_5.sce | 5275fca9704ffc8aba7a8c7134eb6c9b270797b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 576 | sce | Example_19_5.sce | //clear//
clear;
clc;
//Example 19.5
//Given
Nmin = 9.4+1;
//From Example 19.3
xF = [0.33,0.37,0.30]';
xD = [0.99,0.01,0]';
K = [2.23,1.01,0.462]';
alpha = [2.21,1.0,0.457]';
//For a liquid feed
q = 1;
phi = 1.45;
f = 0;
err = 1;
while(err>0.1)
fnew = sum(((alpha.*xD)./(alpha-phi)));
err = abs(f-fnew);
if (f>fnew)
phi=phi+0.01;
else
phi=phi-0.01;
end
f = fnew;
end
RDm = f-1;
RD = RDm*1.5;
//A = (RD-RDm)/RD+1
//from Fig. 19.5
N = (Nmin+0.41)/(1-0.41);
disp(N,'The number of ideal plate required are')
|
4b0cc99534256d66abb34890599b82dc4d0a5091 | 89fe42f1d4907c16ae1152649fc53a6d7910387c | /Cortos/M.tst | 677e91da03fe950c62f02229e0445bd40075e8e2 | [] | no_license | MarlonRoches/Arqui1 | f83545b06761f1bd6c48d26221f8dfc486c57f43 | 5bc55296e70c979a4f75f8243923f778be833efa | refs/heads/main | 2023-07-09T15:37:11.432356 | 2021-08-14T03:56:41 | 2021-08-14T03:56:41 | 355,042,852 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,387 | tst | M.tst | load Screen.hdl;
output-file Screen.out;
output-list in load address out;
set in -1, set load 1,set address 65,eval, output;
set in -1, set load 1,set address 97,eval, output;
set in -1, set load 1,set address 129,eval, output;
set in -1, set load 1,set address 161,eval, output;
set in -1, set load 1,set address 193,eval, output;
set in -1, set load 1,set address 225,eval, output;
set in -1, set load 1,set address 257,eval, output;
set in -1, set load 1,set address 289,eval, output;
set in -1, set load 1,set address 321,eval, output;
set in -1, set load 1,set address 353,eval, output;
set in -1, set load 1,set address 385,eval, output;
set in -1, set load 1,set address 417,eval, output;
set in -1, set load 1,set address 449,eval, output;
set in -1, set load 1,set address 481,eval, output;
set in -1, set load 1,set address 513,eval, output;
set in -1, set load 1,set address 545,eval, output;
set in -1, set load 1,set address 577,eval, output;
set in -1, set load 1,set address 609,eval, output;
set in -1, set load 1,set address 641,eval, output;
set in -1, set load 1,set address 673,eval, output;
set in -1, set load 1,set address 705,eval, output;
set in -1, set load 1,set address 737,eval, output;
set in -1, set load 1,set address 769,eval, output;
set in -1, set load 1,set address 801,eval, output;
set in -1, set load 1,set address 833,eval, output;
set in -1, set load 1,set address 865,eval, output;
set in -1, set load 1,set address 897,eval, output;
set in -1, set load 1,set address 929,eval, output;
set in -1, set load 1,set address 66,eval, output;
set in -1, set load 1,set address 98,eval, output;
set in -1, set load 1,set address 130,eval, output;
set in -1, set load 1,set address 131,eval, output;
set in -1, set load 1,set address 163,eval, output;
set in -1, set load 1,set address 195,eval, output;
set in -1, set load 1,set address 196,eval, output;
set in -1, set load 1,set address 228,eval, output;
set in -1, set load 1,set address 260,eval, output;
set in -1, set load 1,set address 229,eval, output;
set in -1, set load 1,set address 261,eval, output;
set in -1, set load 1,set address 293,eval, output;
set in -1, set load 1,set address 230,eval, output;
set in -1, set load 1,set address 262,eval, output;
set in -1, set load 1,set address 294,eval, output;
set in -1, set load 1,set address 326,eval, output;
set in -1, set load 1,set address 231,eval, output;
set in -1, set load 1,set address 263,eval, output;
set in -1, set load 1,set address 295,eval, output;
set in -1, set load 1,set address 168,eval, output;
set in -1, set load 1,set address 200,eval, output;
set in -1, set load 1,set address 232,eval, output;
set in -1, set load 1,set address 137,eval, output;
set in -1, set load 1,set address 169,eval, output;
set in -1, set load 1,set address 201,eval, output;
set in -1, set load 1,set address 106,eval, output;
set in -1, set load 1,set address 138,eval, output;
set in -1, set load 1,set address 170,eval, output;
set in -1, set load 1,set address 107,eval, output;
set in -1, set load 1,set address 139,eval, output;
set in -1, set load 1,set address 171,eval, output;
set in -1, set load 1,set address 203,eval, output;
set in -1, set load 1,set address 235,eval, output;
set in -1, set load 1,set address 267,eval, output;
set in -1, set load 1,set address 299,eval, output;
set in -1, set load 1,set address 331,eval, output;
set in -1, set load 1,set address 363,eval, output;
set in -1, set load 1,set address 395,eval, output;
set in -1, set load 1,set address 427,eval, output;
set in -1, set load 1,set address 459,eval, output;
set in -1, set load 1,set address 491,eval, output;
set in -1, set load 1,set address 523,eval, output;
set in -1, set load 1,set address 555,eval, output;
set in -1, set load 1,set address 587,eval, output;
set in -1, set load 1,set address 619,eval, output;
set in -1, set load 1,set address 651,eval, output;
set in -1, set load 1,set address 683,eval, output;
set in -1, set load 1,set address 715,eval, output;
set in -1, set load 1,set address 747,eval, output;
set in -1, set load 1,set address 779,eval, output;
set in -1, set load 1,set address 811,eval, output;
set in -1, set load 1,set address 843,eval, output;
set in -1, set load 1,set address 875,eval, output;
set in -1, set load 1,set address 907,eval, output;
set in -1, set load 1,set address 939,eval, output;
|
879c190d7cc4bda26da29c86a6d0bfb9e371f763 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1752/CH9/EX9.2/exa_9_2.sce | c5b8fdeb3eba52e77a9c9fb6c149907868f4488f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 910 | sce | exa_9_2.sce | //Exa 9.2
clc;
clear;
close;
format('v',9)
//given data
h_fg=2310*10^3;// in J/kg
rho=980;// in kg/m^3
k=0.67;// in W/mK
Cp=4.18;
delta=.41*10^-6;// in m^2/s
miu=rho*delta;
T_sat=70;// in degree C
T_s=55;// in degree C
L=1;// in m
d=0.03;// in m
g=9.81;
N=5;
// (a) for Horizontal tube
h_bar = 0.725*[ rho^2*g*h_fg*k^3/(N*miu*d*(T_sat-T_s))]^(1/4);// in W/m^2k
// heat transfer rate
q=h_bar*%pi*d*L*N^2*(T_sat-T_s);// in watt
disp(q*10^-3,"Heat transfer rate for horizontal tube in kW")
//rate of condensation
m=q/h_fg;// in kg/s
disp(m,"Rate of condenstion in kg/s");
// (b) For Vertical tube
h_bar = 1.13*[ rho^2*g*h_fg*k^3/(miu*L*(T_sat-T_s))]^(1/4);// in W/m^2k
// heat transfer rate
q=h_bar*%pi*d*L*N^2*(T_sat-T_s);// in watt
disp(q*10^-3,"Heat transfer rate for vertical tube in kW")
//rate of condensation
m=q/h_fg;// in kg/s
disp(m,"Rate of condenstion in kg/s");
|
1f4d940e95e50d5df918408fe3993e46749c0c54 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/GOLD-TEST/syc.tst | 242fe429059dfffc171a72aad3abd1f092252273 | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 19,534 | tst | syc.tst | ܙܡܪܘܬܐ ܙܡܪܘܬܢ N;SG;PSS1P
ܙܡܪܘܬܐ ܙܡܪܘܬܐ N;DEF;SG
ܙܡܪܘܬܐ ܙܡܪܘܬܗ N;SG;PSS3SM
ܙܡܪܘܬܐ ܙܡܪܘܬܗܝܢ N;SG;PSS3PF
ܙܡܪܘܬܐ ܙܡܪܘ N;ABS;SG
ܙܡܪܘܬܐ ܙܡܪܘܬܗܘܢ N;SG;PSS3PM
ܙܡܪܘܬܐ ܙܡܪܘܬ N;SG;PSSD
ܙܡܪܘܬܐ ܙܡܪܘܬܟ N;SG;PSS2SM
ܙܡܪܘܬܐ ܙܡܪܘܬܟܝܢ N;SG;PSS2PF
ܙܡܪܘܬܐ ܙܡܪܘܬܝ N;SG;PSS1S
ܙܡܪܘܬܐ ܙܡܪܘܬܗ N;SG;PSS3SF
ܙܡܪܘܬܐ ܙܡܪܘܬܟܘܢ N;SG;PSS2PM
ܙܡܪܘܬܐ ܙܡܪܘܬܟܝ N;SG;PSS2SF
ܦܪܘܫܐ ܦܪܘܫܝܢ ADJ;ABS;FEM;PL
ܦܪܘܫܐ ܦܪܘܫܗܝܢ N;SG;PSS3PF
ܦܪܘܫܐ ܦܪܘܫܬ ADJ;MASC;SG;PSSD
ܦܪܘܫܐ ܦܪܘܫܬ ADJ;FEM;PL;PSSD
ܦܪܘܫܐ ܦܪܘܫܢ N;SG;PSS1P
ܦܪܘܫܐ ܦܪܘܫܝܟܘܢ N;PL;PSS2PM
ܦܪܘܫܐ ܦܪܘܫܗ N;SG;PSS3SM
ܦܪܘܫܐ ܦܪܘܫܝܟ N;PL;PSS2SM
ܦܪܘܫܐ ܦܪܘܫܝܗܝܢ N;PL;PSS3PF
ܦܪܘܫܐ ܦܪܘܫܐ ADJ;ABS;MASC;SG
ܦܪܘܫܐ ܦܪܘܫܝ N;PL;PSSD
ܦܪܘܫܐ ܦܪܘܫܝܢ N;ABS;PL
ܦܪܘܫܐ ܦܪܘܫܝ N;SG;PSS1S
ܦܪܘܫܐ ܦܪܘܫܟܝ N;SG;PSS2SF
ܦܪܘܫܐ ܦܪܘܫܗܘܢ N;SG;PSS3PM
ܦܪܘܫܐ ܦܪܘܫܗ N;SG;PSS3SF
ܦܪܘܫܐ ܦܪܘܫܘܗܝ N;PL;PSS3SM
ܦܪܘܫܐ ܦܪܘܫܝܗ N;PL;PSS3SF
ܦܪܘܫܐ ܦܪܘܫܝܟܝܢ N;PL;PSS2PF
ܦܪܘܫܐ ܦܪܘܫܝܗܘܢ N;PL;PSS3PM
ܦܪܘܫܐ ܦܪܘܫܝܟܝ N;PL;PSS2SF
ܦܪܘܫܐ ܦܪܘܫܐ N;DEF;SG
ܦܪܘܫܐ ܦܪܘܫܬܐ ADJ;DEF;MASC;SG
ܦܪܘܫܐ ܦܪܘܫܐ ADJ;DEF;FEM;PL
ܦܪܘܫܐ ܦܪܘܫܝ N;PL;PSS1S
ܦܪܘܫܐ ܦܪܘܫܐ N;DEF;PL
ܦܪܘܫܐ ܦܪܘܫܟܝܢ N;SG;PSS2PF
ܦܪܘܫܐ ܦܪܘܫܟܘܢ N;SG;PSS2PM
ܦܪܘܫܐ ܦܪܘܫܝ ADJ;FEM;PL;PSSD
ܦܪܘܫܐ ܦܪܘܫ N;SG;PSSD
ܦܪܘܫܐ ܦܪܘܫ ADJ;ABS;MASC;SG
ܦܪܘܫܐ ܦܪܘܫܟ N;SG;PSS2SM
ܦܪܘܫܐ ܦܪܘܫ N;ABS;SG
ܦܪܘܫܐ ܦܪܘܫܐ ADJ;DEF;MASC;SG
ܦܪܘܫܐ ܦܪܘܫܬܐ ADJ;DEF;FEM;PL
ܦܪܘܫܐ ܦܪܘܫܝܢ N;PL;PSS1P
ܫܬܩܐ ܫܬܩܗܝܢ N;SG;PSS3PF
ܫܬܩܐ ܫܬܩܗܘܢ N;SG;PSS3PM
ܫܬܩܐ ܫܬܩܢ N;SG;PSS1P
ܫܬܩܐ ܫܬܩܟܝ N;SG;PSS2SF
ܫܬܩܐ ܫܬܩ N;ABS;SG
ܫܬܩܐ ܫܬܩܟܝܢ N;SG;PSS2PF
ܫܬܩܐ ܫܬܩܝ N;SG;PSS1S
ܫܬܩܐ ܫܬܩܟܘܢ N;SG;PSS2PM
ܫܬܩܐ ܫܬܩ N;SG;PSSD
ܫܬܩܐ ܫܬܩܟ N;SG;PSS2SM
ܫܬܩܐ ܫܬܩܗ N;SG;PSS3SM
ܫܬܩܐ ܫܬܩܐ N;DEF;SG
ܫܬܩܐ ܫܬܩܗ N;SG;PSS3SF
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܗܘܢ N;SG;PSS3PM
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܢ N;SG;PSS1P
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܝ N;SG;PSS1S
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬ N;SG;PSSD
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܗܝܢ N;SG;PSS3PF
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܗ N;SG;PSS3SF
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܟܝܢ N;SG;PSS2PF
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܟ N;SG;PSS2SM
ܣܢܝܐܘܬܐ ܣܢܝܐܘ N;ABS;SG
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܗ N;SG;PSS3SM
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܐ N;DEF;SG
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܟܝ N;SG;PSS2SF
ܣܢܝܐܘܬܐ ܣܢܝܐܘܬܟܘܢ N;SG;PSS2PM
ܫܥܘܬܐ ܫܥܘܬܐ N;DEF;SG
ܫܥܘܬܐ ܫܥܘܬܗ N;SG;PSS3SM
ܫܥܘܬܐ ܫܥܘܬܝ N;SG;PSS1S
ܫܥܘܬܐ ܫܥܘܐ N;ABS;SG
ܫܥܘܬܐ ܫܥܘܬܟ N;SG;PSS2SM
ܫܥܘܬܐ ܫܥܘܬ N;SG;PSSD
ܫܥܘܬܐ ܫܥܘܬܟܝ N;SG;PSS2SF
ܫܥܘܬܐ ܫܥܘܬܗܘܢ N;SG;PSS3PM
ܫܥܘܬܐ ܫܥܘܬܗܝܢ N;SG;PSS3PF
ܫܥܘܬܐ ܫܥܘܬܢ N;SG;PSS1P
ܫܥܘܬܐ ܫܥܘܬܗ N;SG;PSS3SF
ܫܥܘܬܐ ܫܥܘܬܟܘܢ N;SG;PSS2PM
ܫܥܘܬܐ ܫܥܘܬܟܝܢ N;SG;PSS2PF
ܠܒܘܢܬܐ ܠܒܘܢܬܟ N;SG;PSS2SM
ܠܒܘܢܬܐ ܠܒܘܢܬܗ N;SG;PSS3SF
ܠܒܘܢܬܐ ܠܒܘܢܬܗܝܢ N;SG;PSS3PF
ܠܒܘܢܬܐ ܠܒܘܢܬܟܝܢ N;SG;PSS2PF
ܠܒܘܢܬܐ ܠܒܘܢܬܗ N;SG;PSS3SM
ܠܒܘܢܬܐ ܠܒܘܢܬܟܘܢ N;SG;PSS2PM
ܠܒܘܢܬܐ ܠܒܘܢܬܟܝ N;SG;PSS2SF
ܠܒܘܢܬܐ ܠܒܘܢܬܐ N;DEF;SG
ܠܒܘܢܬܐ ܠܒܘܢܬܝ N;SG;PSS1S
ܠܒܘܢܬܐ ܠܒܘܢܐ N;ABS;SG
ܠܒܘܢܬܐ ܠܒܘܢܬܗܘܢ N;SG;PSS3PM
ܠܒܘܢܬܐ ܠܒܘܢܬܢ N;SG;PSS1P
ܠܒܘܢܬܐ ܠܒܘܢܬ N;SG;PSSD
ܕܝܘܬܐ ܕܝܘܬܐ N;DEF;SG
ܕܝܘܬܐ ܕܝܘܬܗܘܢ N;SG;PSS3PM
ܕܝܘܬܐ ܕܝܘܬܟܝ N;SG;PSS2SF
ܕܝܘܬܐ ܕܝܘܬܟܘܢ N;SG;PSS2PM
ܕܝܘܬܐ ܕܝܘܬ N;SG;PSSD
ܕܝܘܬܐ ܕܝܘܬܗ N;SG;PSS3SM
ܕܝܘܬܐ ܕܝܘܬܢ N;SG;PSS1P
ܕܝܘܬܐ ܕܝܘܬܗܝܢ N;SG;PSS3PF
ܕܝܘܬܐ ܕܝܘܬܗ N;SG;PSS3SF
ܕܝܘܬܐ ܕܝܘܬܟܝܢ N;SG;PSS2PF
ܕܝܘܬܐ ܕܝܘ N;ABS;SG
ܕܝܘܬܐ ܕܝܘܬܝ N;SG;PSS1S
ܕܝܘܬܐ ܕܝܘܬܟ N;SG;PSS2SM
ܚܘܝܚܐ ܚܘܝܚܝ ADJ;MASC;PL;PSSD
ܚܘܝܚܐ ܚܘܝܚܐ ADJ;DEF;MASC;PL
ܚܘܝܚܐ ܚܘܝܚܬܐ ADJ;DEF;FEM;PL
ܚܘܝܚܐ ܚܘܝܚܬܐ ADJ;DEF;FEM;SG
ܚܘܝܚܐ ܚܘܝܚܬ ADJ;FEM;PL;PSSD
ܚܘܝܚܐ ܚܘܝܚܢ ADJ;ABS;FEM;PL
ܚܘܝܚܐ ܚܘܝܚܐ ADJ;DEF;MASC;SG
ܚܘܝܚܐ ܚܘܝܚ ADJ;ABS;MASC;SG
ܚܘܝܚܐ ܚܘܝܚܐ ADJ;ABS;FEM;SG
ܚܘܝܚܐ ܚܘܝܚܝܢ ADJ;ABS;MASC;PL
ܚܘܝܚܐ ܚܘܝܚ ADJ;MASC;SG;PSSD
ܚܘܝܚܐ ܚܘܝܚܬ ADJ;FEM;SG;PSSD
ܚܘܦܐ ܚܘܦܟܝܢ N;SG;PSS2PF
ܚܘܦܐ ܚܘܦܟܝ N;SG;PSS2SF
ܚܘܦܐ ܚܘܦܟܘܢ N;SG;PSS2PM
ܚܘܦܐ ܚܘܦܝ N;SG;PSS1S
ܚܘܦܐ ܚܘܦܢ N;SG;PSS1P
ܚܘܦܐ ܚܘܦܗܝܢ N;SG;PSS3PF
ܚܘܦܐ ܚܘܦ N;ABS;SG
ܚܘܦܐ ܚܘܦܐ N;DEF;SG
ܚܘܦܐ ܚܘܦܗ N;SG;PSS3SF
ܚܘܦܐ ܚܘܦܟ N;SG;PSS2SM
ܚܘܦܐ ܚܘܦܗܘܢ N;SG;PSS3PM
ܚܘܦܐ ܚܘܦܗ N;SG;PSS3SM
ܚܘܦܐ ܚܘܦ N;SG;PSSD
ܪܘܟܟܐ ܪܘܟܟܐ N;DEF;SG
ܪܘܟܟܐ ܪܘܟܟܟܘܢ N;SG;PSS2PM
ܪܘܟܟܐ ܪܘܟܟܟ N;SG;PSS2SM
ܪܘܟܟܐ ܪܘܟܟܗ N;SG;PSS3SF
ܪܘܟܟܐ ܪܘܟܟܗܝܢ N;SG;PSS3PF
ܪܘܟܟܐ ܪܘܟܟܟܝܢ N;SG;PSS2PF
ܪܘܟܟܐ ܪܘܟܟ N;ABS;SG
ܪܘܟܟܐ ܪܘܟܟܗܘܢ N;SG;PSS3PM
ܪܘܟܟܐ ܪܘܟܟܢ N;SG;PSS1P
ܪܘܟܟܐ ܪܘܟܟܗ N;SG;PSS3SM
ܪܘܟܟܐ ܪܘܟܟܟܝ N;SG;PSS2SF
ܪܘܟܟܐ ܪܘܟܟ N;SG;PSSD
ܪܘܟܟܐ ܪܘܟܟܝ N;SG;PSS1S
ܕܘܚܢܐ ܕܘܚܢܢ N;SG;PSS1P
ܕܘܚܢܐ ܕܘܚܢ N;SG;PSSD
ܕܘܚܢܐ ܕܘܚܢܐ N;DEF;SG
ܕܘܚܢܐ ܕܘܚܢ N;ABS;SG
ܕܘܚܢܐ ܕܘܚܢܟܘܢ N;SG;PSS2PM
ܕܘܚܢܐ ܕܘܚܢܟܝ N;SG;PSS2SF
ܕܘܚܢܐ ܕܘܚܢܟܝܢ N;SG;PSS2PF
ܕܘܚܢܐ ܕܘܚܢܗ N;SG;PSS3SF
ܕܘܚܢܐ ܕܘܚܢܟ N;SG;PSS2SM
ܕܘܚܢܐ ܕܘܚܢܗ N;SG;PSS3SM
ܕܘܚܢܐ ܕܘܚܢܗܘܢ N;SG;PSS3PM
ܕܘܚܢܐ ܕܘܚܢܝ N;SG;PSS1S
ܕܘܚܢܐ ܕܘܚܢܗܝܢ N;SG;PSS3PF
ܝܘܪܩܐ ܝܘܪܩܗܘܢ N;SG;PSS3PM
ܝܘܪܩܐ ܝܘܪܩܝܟܘܢ N;PL;PSS2PM
ܝܘܪܩܐ ܝܘܪܩܟܝܢ N;SG;PSS2PF
ܝܘܪܩܐ ܝܘܪܩܝܟܝܢ N;PL;PSS2PF
ܝܘܪܩܐ ܝܘܪܩܝܟܝ N;PL;PSS2SF
ܝܘܪܩܐ ܝܘܪܩܝܢ N;ABS;PL
ܝܘܪܩܐ ܝܘܪܩܝܟ N;PL;PSS2SM
ܝܘܪܩܐ ܝܘܪܩܝ N;PL;PSSD
ܝܘܪܩܐ ܝܘܪܩܢ ADJ;ABS;FEM;PL
ܝܘܪܩܐ ܝܘܪܩܬ ADJ;FEM;PL;PSSD
ܝܘܪܩܐ ܝܘܪܩ ADJ;MASC;SG;PSSD
ܝܘܪܩܐ ܝܘܪܩܝܗܝܢ N;PL;PSS3PF
ܝܘܪܩܐ ܝܘܪܩܗܝܢ N;SG;PSS3PF
ܝܘܪܩܐ ܝܘܪܩܗ N;SG;PSS3SF
ܝܘܪܩܐ ܝܘܪܩܐ ADJ;DEF;MASC;SG
ܝܘܪܩܐ ܝܘܪܩܟܝ N;SG;PSS2SF
ܝܘܪܩܐ ܝܘܪܩܐ N;DEF;SG
ܝܘܪܩܐ ܝܘܪܩܟܘܢ N;SG;PSS2PM
ܝܘܪܩܐ ܝܘܪܩܝ N;SG;PSS1S
ܝܘܪܩܐ ܝܘܪܩܗ N;SG;PSS3SM
ܝܘܪܩܐ ܝܘܪܩܢ N;SG;PSS1P
ܝܘܪܩܐ ܝܘܪܩ ADJ;ABS;MASC;SG
ܝܘܪܩܐ ܝܘܪܩܝܢ N;PL;PSS1P
ܝܘܪܩܐ ܝܘܪܩܝܗ N;PL;PSS3SF
ܝܘܪܩܐ ܝܘܪܩܝܗܘܢ N;PL;PSS3PM
ܝܘܪܩܐ ܝܘܪܩ N;ABS;SG
ܝܘܪܩܐ ܝܘܪܩܘܗܝ N;PL;PSS3SM
ܝܘܪܩܐ ܝܘܪܩܐ ADJ;DEF;FEM;PL
ܝܘܪܩܐ ܝܘܪܩܬܐ ADJ;DEF;FEM;PL
ܝܘܪܩܐ ܝܘܪܩܐ ADJ;ABS;MASC;SG
ܝܘܪܩܐ ܝܘܪܩܟ N;SG;PSS2SM
ܝܘܪܩܐ ܝܘܪܩ N;SG;PSSD
ܝܘܪܩܐ ܝܘܪܩܬ ADJ;MASC;SG;PSSD
ܝܘܪܩܐ ܝܘܪܩܝ N;PL;PSS1S
ܝܘܪܩܐ ܝܘܪܩܬܐ ADJ;DEF;MASC;SG
ܝܘܪܩܐ ܝܘܪܩܐ N;DEF;PL
ܬܐܡܐ ܬܐܡܐ N;DEF;SG
ܬܐܡܐ ܬܐܡܐ ADJ;DEF;MASC;SG
ܬܐܡܐ ܬܐܡܝ N;SG;PSS1S
ܬܐܡܐ ܬܐܡܗ N;SG;PSS3SF
ܬܐܡܐ ܬܐܡܟܝ N;SG;PSS2SF
ܬܐܡܐ ܬܐܡܝܗ N;PL;PSS3SF
ܬܐܡܐ ܬܐܡܝܢ N;ABS;PL
ܬܐܡܐ ܬܐܡܬ ADJ;MASC;SG;PSSD
ܬܐܡܐ ܬܐܡܝܟ N;PL;PSS2SM
ܬܐܡܐ ܬܐܡܐ N;DEF;PL
ܬܐܡܐ ܬܐܡܟ N;SG;PSS2SM
ܬܐܡܐ ܬܐܡܝܟܘܢ N;PL;PSS2PM
ܬܐܡܐ ܬܐܡܗܘܢ N;SG;PSS3PM
ܬܐܡܐ ܬܐܡ N;SG;PSSD
ܬܐܡܐ ܬܐܡܗܝܢ N;SG;PSS3PF
ܬܐܡܐ ܬܐܡܝܢ ADJ;ABS;FEM;PL
ܬܐܡܐ ܬܐܡ N;ABS;SG
ܬܐܡܐ ܬܐܡܢ N;SG;PSS1P
ܬܐܡܐ ܬܐܡܝܗܝܢ N;PL;PSS3PF
ܬܐܡܐ ܬܐܡܟܘܢ N;SG;PSS2PM
ܬܐܡܐ ܬܐܡܝ N;PL;PSS1S
ܬܐܡܐ ܬܐܡ ADJ;ABS;MASC;SG
ܬܐܡܐ ܬܐܡܝ N;PL;PSSD
ܬܐܡܐ ܬܐܡܝܢ N;PL;PSS1P
ܬܐܡܐ ܬܐܡܝܗܘܢ N;PL;PSS3PM
ܬܐܡܐ ܬܐܡܗ N;SG;PSS3SM
ܬܐܡܐ ܬܐܡܬܐ ADJ;DEF;MASC;SG
ܬܐܡܐ ܬܐܡܬ ADJ;FEM;PL;PSSD
ܬܐܡܐ ܬܐܡܝܟܝܢ N;PL;PSS2PF
ܬܐܡܐ ܬܐܡܘܗܝ N;PL;PSS3SM
ܬܐܡܐ ܬܐܡܝܟܝ N;PL;PSS2SF
ܬܐܡܐ ܬܐܡܢ ADJ;ABS;FEM;PL
ܬܐܡܐ ܬܐܡܐ ADJ;ABS;MASC;SG
ܬܐܡܐ ܬܐܡܐ ADJ;DEF;FEM;PL
ܬܐܡܐ ܬܐܡܟܝܢ N;SG;PSS2PF
ܩܛܝܪܐ ܩܛܝܪܝܢ ADJ;ABS;FEM;PL
ܩܛܝܪܐ ܩܛܝܪܐ ADJ;ABS;MASC;SG
ܩܛܝܪܐ ܩܛܝܪܝ N;PL;PSSD
ܩܛܝܪܐ ܩܛܝܪܝܢ N;PL;PSS1P
ܩܛܝܪܐ ܩܛܝܪܬ ADJ;MASC;SG;PSSD
ܩܛܝܪܐ ܩܛܝܪܗܝܢ N;SG;PSS3PF
ܩܛܝܪܐ ܩܛܝܪܐ N;DEF;SG
ܩܛܝܪܐ ܩܛܝܪܐ N;DEF;PL
ܩܛܝܪܐ ܩܛܝܪܗ N;SG;PSS3SF
ܩܛܝܪܐ ܩܛܝܪܬܐ ADJ;DEF;MASC;SG
ܩܛܝܪܐ ܩܛܝܪܝ N;SG;PSS1S
ܩܛܝܪܐ ܩܛܝܪܝܗ N;PL;PSS3SF
ܩܛܝܪܐ ܩܛܝܪ N;ABS;SG
ܩܛܝܪܐ ܩܛܝܪܝܟܝܢ N;PL;PSS2PF
ܩܛܝܪܐ ܩܛܝܪܢ N;SG;PSS1P
ܩܛܝܪܐ ܩܛܝܪ N;SG;PSSD
ܩܛܝܪܐ ܩܛܝܪܝ ADJ;FEM;PL;PSSD
ܩܛܝܪܐ ܩܛܝܪܟܝܢ N;SG;PSS2PF
ܩܛܝܪܐ ܩܛܝܪܐ ADJ;DEF;FEM;PL
ܩܛܝܪܐ ܩܛܝܪܝܟ N;PL;PSS2SM
ܩܛܝܪܐ ܩܛܝܪܝܢ N;ABS;PL
ܩܛܝܪܐ ܩܛܝܪܟ N;SG;PSS2SM
ܩܛܝܪܐ ܩܛܝܪܝܟܘܢ N;PL;PSS2PM
ܩܛܝܪܐ ܩܛܝܪܟܘܢ N;SG;PSS2PM
ܩܛܝܪܐ ܩܛܝܪܘܗܝ N;PL;PSS3SM
ܩܛܝܪܐ ܩܛܝܪܬܐ ADJ;DEF;FEM;PL
ܩܛܝܪܐ ܩܛܝܪܟܝ N;SG;PSS2SF
ܩܛܝܪܐ ܩܛܝܪܬ ADJ;FEM;PL;PSSD
ܩܛܝܪܐ ܩܛܝܪܝܟܝ N;PL;PSS2SF
ܩܛܝܪܐ ܩܛܝܪܗ N;SG;PSS3SM
ܩܛܝܪܐ ܩܛܝܪܝܗܝܢ N;PL;PSS3PF
ܩܛܝܪܐ ܩܛܝܪܗܘܢ N;SG;PSS3PM
ܩܛܝܪܐ ܩܛܝܪܝܗܘܢ N;PL;PSS3PM
ܩܛܝܪܐ ܩܛܝܪܝ N;PL;PSS1S
ܟܒܪܝܬܐ ܟܒܪܝܬܗ N;SG;PSS3SF
ܟܒܪܝܬܐ ܟܒܪܝܬܟܝܢ N;SG;PSS2PF
ܟܒܪܝܬܐ ܟܒܪܝܬ N;SG;PSSD
ܟܒܪܝܬܐ ܟܒܪܝܬܗܝܢ N;SG;PSS3PF
ܟܒܪܝܬܐ ܟܒܪܝܬܝ N;SG;PSS1S
ܟܒܪܝܬܐ ܟܒܪܝܬܟܘܢ N;SG;PSS2PM
ܟܒܪܝܬܐ ܟܒܪܝܬܢ N;SG;PSS1P
ܟܒܪܝܬܐ ܟܒܪܝܬܗܘܢ N;SG;PSS3PM
ܟܒܪܝܬܐ ܟܒܪܝ N;ABS;SG
ܟܒܪܝܬܐ ܟܒܪܝܬܐ N;DEF;SG
ܟܒܪܝܬܐ ܟܒܪܝܬܟ N;SG;PSS2SM
ܟܒܪܝܬܐ ܟܒܪܝܬܟܝ N;SG;PSS2SF
ܟܒܪܝܬܐ ܟܒܪܝܬܗ N;SG;PSS3SM
ܐܙܒܐ ܐܙܒܗ N;SG;PSS3SF
ܐܙܒܐ ܐܙܒ N;SG;PSSD
ܐܙܒܐ ܐܙܒܝ N;SG;PSS1S
ܐܙܒܐ ܐܙܒܐ N;DEF;SG
ܐܙܒܐ ܐܙܒܢ N;SG;PSS1P
ܐܙܒܐ ܐܙܒܗ N;SG;PSS3SM
ܐܙܒܐ ܐܙܒܟܝܢ N;SG;PSS2PF
ܐܙܒܐ ܐܙܒܗܝܢ N;SG;PSS3PF
ܐܙܒܐ ܐܙܒܟܘܢ N;SG;PSS2PM
ܐܙܒܐ ܐܙܒܗܘܢ N;SG;PSS3PM
ܐܙܒܐ ܐܙܒܟܝ N;SG;PSS2SF
ܐܙܒܐ ܐܙܒ N;ABS;SG
ܐܙܒܐ ܐܙܒܟ N;SG;PSS2SM
ܝܩܕܬܐ ܝܩܕܬܟܝܢ N;SG;PSS2PF
ܝܩܕܬܐ ܝܩܕܬ N;SG;PSSD
ܝܩܕܬܐ ܝܩܕܬܗܝܢ N;SG;PSS3PF
ܝܩܕܬܐ ܝܩܕܬܟܝ N;SG;PSS2SF
ܝܩܕܬܐ ܝܩܕܬܟܘܢ N;SG;PSS2PM
ܝܩܕܬܐ ܝܩܕܬܗܘܢ N;SG;PSS3PM
ܝܩܕܬܐ ܝܩܕܬܟ N;SG;PSS2SM
ܝܩܕܬܐ ܝܩܕܬܢ N;SG;PSS1P
ܝܩܕܬܐ ܝܩܕܐ N;ABS;SG
ܝܩܕܬܐ ܝܩܕܬܐ N;DEF;SG
ܝܩܕܬܐ ܝܩܕܬܗ N;SG;PSS3SF
ܝܩܕܬܐ ܝܩܕܬܝ N;SG;PSS1S
ܝܩܕܬܐ ܝܩܕܬܗ N;SG;PSS3SM
ܓܡܪܐ ܓܡܪܟ N;SG;PSS2SM
ܓܡܪܐ ܓܡܪ N;SG;PSSD
ܓܡܪܐ ܓܡܪܗ N;SG;PSS3SM
ܓܡܪܐ ܓܡܪܗܝܢ N;SG;PSS3PF
ܓܡܪܐ ܓܡܪܟܝܢ N;SG;PSS2PF
ܓܡܪܐ ܓܡܪ N;ABS;SG
ܓܡܪܐ ܓܡܪܝ N;SG;PSS1S
ܓܡܪܐ ܓܡܪܟܘܢ N;SG;PSS2PM
ܓܡܪܐ ܓܡܪܟܝ N;SG;PSS2SF
ܓܡܪܐ ܓܡܪܗܘܢ N;SG;PSS3PM
ܓܡܪܐ ܓܡܪܗ N;SG;PSS3SF
ܓܡܪܐ ܓܡܪܢ N;SG;PSS1P
ܓܡܪܐ ܓܡܪܐ N;DEF;SG
ܡܐܪܝܬܐ ܡܐܪܝܬܟܝܢ N;SG;PSS2PF
ܡܐܪܝܬܐ ܡܐܪܝܬܗܘܢ N;SG;PSS3PM
ܡܐܪܝܬܐ ܡܐܪܝܬ N;SG;PSSD
ܡܐܪܝܬܐ ܡܐܪܝ N;ABS;SG
ܡܐܪܝܬܐ ܡܐܪܝܬܝ N;SG;PSS1S
ܡܐܪܝܬܐ ܡܐܪܝܬܟܝ N;SG;PSS2SF
ܡܐܪܝܬܐ ܡܐܪܝܬܗ N;SG;PSS3SF
ܡܐܪܝܬܐ ܡܐܪܝܬܗܝܢ N;SG;PSS3PF
ܡܐܪܝܬܐ ܡܐܪܝܬܟܘܢ N;SG;PSS2PM
ܡܐܪܝܬܐ ܡܐܪܝܬܢ N;SG;PSS1P
ܡܐܪܝܬܐ ܡܐܪܝܬܗ N;SG;PSS3SM
ܡܐܪܝܬܐ ܡܐܪܝܬܐ N;DEF;SG
ܡܐܪܝܬܐ ܡܐܪܝܬܟ N;SG;PSS2SM
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܝ N;SG;PSS1S
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܟܘܢ N;SG;PSS2PM
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܟ N;SG;PSS2SM
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܗ N;SG;PSS3SF
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܐ N;DEF;SG
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܗܘܢ N;SG;PSS3PM
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܗ N;SG;PSS3SM
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܟܝ N;SG;PSS2SF
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܗܝܢ N;SG;PSS3PF
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘ N;ABS;SG
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܟܝܢ N;SG;PSS2PF
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬܢ N;SG;PSS1P
ܡܣܟܝܢܘܬܐ ܡܣܟܝܢܘܬ N;SG;PSSD
ܟܒܝܪܐ ܟܒܝܪ ADJ;ABS;MASC;SG
ܟܒܝܪܐ ܟܒܝܪܬܐ ADJ;DEF;FEM;PL
ܟܒܝܪܐ ܟܒܝܪܝ ADJ;MASC;PL;PSSD
ܟܒܝܪܐ ܟܒܝܪܬ ADJ;FEM;SG;PSSD
ܟܒܝܪܐ ܟܒܝܪܐ ADJ;ABS;FEM;SG
ܟܒܝܪܐ ܟܒܝܪܐ ADJ;DEF;MASC;PL
ܟܒܝܪܐ ܟܒܝܪܝܢ ADJ;ABS;MASC;PL
ܟܒܝܪܐ ܟܒܝܪܐ ADJ;DEF;MASC;SG
ܟܒܝܪܐ ܟܒܝܪܢ ADJ;ABS;FEM;PL
ܟܒܝܪܐ ܟܒܝܪ ADJ;MASC;SG;PSSD
ܟܒܝܪܐ ܟܒܝܪܬܐ ADJ;DEF;FEM;SG
ܟܒܝܪܐ ܟܒܝܪܬ ADJ;FEM;PL;PSSD
ܕܝܘܩܐ ܕܝܘܩܝܢ N;PL;PSS1P
ܕܝܘܩܐ ܕܝܘܩܐ N;DEF;SG
ܕܝܘܩܐ ܕܝܘܩܐ ADJ;DEF;FEM;PL
ܕܝܘܩܐ ܕܝܘܩܝܟܘܢ N;PL;PSS2PM
ܕܝܘܩܐ ܕܝܘܩܝ N;PL;PSSD
ܕܝܘܩܐ ܕܝܘܩ ADJ;MASC;SG;PSSD
ܕܝܘܩܐ ܕܝܘܩܝ N;PL;PSS1S
ܕܝܘܩܐ ܕܝܘܩܟܝܢ N;SG;PSS2PF
ܕܝܘܩܐ ܕܝܘܩܐ N;DEF;PL
ܕܝܘܩܐ ܕܝܘܩܝܟ N;PL;PSS2SM
ܕܝܘܩܐ ܕܝܘܩܢ ADJ;ABS;FEM;PL
ܕܝܘܩܐ ܕܝܘܩܝܗܘܢ N;PL;PSS3PM
ܕܝܘܩܐ ܕܝܘܩܝܗܝܢ N;PL;PSS3PF
ܕܝܘܩܐ ܕܝܘܩܐ ADJ;DEF;MASC;SG
ܕܝܘܩܐ ܕܝܘܩ ADJ;ABS;MASC;SG
ܕܝܘܩܐ ܕܝܘܩ N;ABS;SG
ܕܝܘܩܐ ܕܝܘܩܟܘܢ N;SG;PSS2PM
ܕܝܘܩܐ ܕܝܘܩܝܟܝ N;PL;PSS2SF
ܕܝܘܩܐ ܕܝܘܩܝܢ N;ABS;PL
ܕܝܘܩܐ ܕܝܘܩܝܗ N;PL;PSS3SF
ܕܝܘܩܐ ܕܝܘܩܗܘܢ N;SG;PSS3PM
ܕܝܘܩܐ ܕܝܘܩܟܝ N;SG;PSS2SF
ܕܝܘܩܐ ܕܝܘܩܢ N;SG;PSS1P
ܕܝܘܩܐ ܕܝܘܩܗ N;SG;PSS3SF
ܕܝܘܩܐ ܕܝܘܩ N;SG;PSSD
ܕܝܘܩܐ ܕܝܘܩܝ ADJ;FEM;PL;PSSD
ܕܝܘܩܐ ܕܝܘܩܗ N;SG;PSS3SM
ܕܝܘܩܐ ܕܝܘܩܬ ADJ;MASC;SG;PSSD
ܕܝܘܩܐ ܕܝܘܩܝܢ ADJ;ABS;FEM;PL
ܕܝܘܩܐ ܕܝܘܩܗܝܢ N;SG;PSS3PF
ܕܝܘܩܐ ܕܝܘܩܘܗܝ N;PL;PSS3SM
ܕܝܘܩܐ ܕܝܘܩܟ N;SG;PSS2SM
ܕܝܘܩܐ ܕܝܘܩܝ N;SG;PSS1S
ܕܝܘܩܐ ܕܝܘܩܬܐ ADJ;DEF;FEM;PL
ܕܝܘܩܐ ܕܝܘܩܬ ADJ;FEM;PL;PSSD
ܕܝܘܩܐ ܕܝܘܩܝܟܝܢ N;PL;PSS2PF
ܕܝܘܩܐ ܕܝܘܩܬܐ ADJ;DEF;MASC;SG
ܦܫܪܬܐ ܦܫܪܬܐ N;DEF;SG
ܦܫܪܬܐ ܦܫܪܬܟ N;SG;PSS2SM
ܦܫܪܬܐ ܦܫܪܬܢ N;SG;PSS1P
ܦܫܪܬܐ ܦܫܪܬܟܝܢ N;SG;PSS2PF
ܦܫܪܬܐ ܦܫܪܬܝ N;SG;PSS1S
ܦܫܪܬܐ ܦܫܪܬܗ N;SG;PSS3SF
ܦܫܪܬܐ ܦܫܪܬܗ N;SG;PSS3SM
ܦܫܪܬܐ ܦܫܪܬ N;SG;PSSD
ܦܫܪܬܐ ܦܫܪܬܗܝܢ N;SG;PSS3PF
ܦܫܪܬܐ ܦܫܪܬܟܝ N;SG;PSS2SF
ܦܫܪܬܐ ܦܫܪܬܗܘܢ N;SG;PSS3PM
ܦܫܪܬܐ ܦܫܪܬܟܘܢ N;SG;PSS2PM
ܦܫܪܬܐ ܦܫܪܐ N;ABS;SG
ܚܐܘܬܐ ܚܐܘܬܗܘܢ N;SG;PSS3PM
ܚܐܘܬܐ ܚܐܘܬܟܝ N;SG;PSS2SF
ܚܐܘܬܐ ܚܐܘܬܟ N;SG;PSS2SM
ܚܐܘܬܐ ܚܐܘܬܐ N;DEF;SG
ܚܐܘܬܐ ܚܐܘܬܗ N;SG;PSS3SF
ܚܐܘܬܐ ܚܐܘܬܗ N;SG;PSS3SM
ܚܐܘܬܐ ܚܐܘܬܝ N;SG;PSS1S
ܚܐܘܬܐ ܚܐܘܬܟܝܢ N;SG;PSS2PF
ܚܐܘܬܐ ܚܐܘܐ N;ABS;SG
ܚܐܘܬܐ ܚܐܘܬܗܝܢ N;SG;PSS3PF
ܚܐܘܬܐ ܚܐܘܬ N;SG;PSSD
ܚܐܘܬܐ ܚܐܘܬܢ N;SG;PSS1P
ܚܐܘܬܐ ܚܐܘܬܟܘܢ N;SG;PSS2PM
ܛܢܢܐ ܛܢܢܗ N;SG;PSS3SF
ܛܢܢܐ ܛܢܢܗܘܢ N;SG;PSS3PM
ܛܢܢܐ ܛܢܢܟܝ N;SG;PSS2SF
ܛܢܢܐ ܛܢܢܢ N;SG;PSS1P
ܛܢܢܐ ܛܢܢܗܝܢ N;SG;PSS3PF
ܛܢܢܐ ܛܢܢܝ N;SG;PSS1S
ܛܢܢܐ ܛܢܢܟ N;SG;PSS2SM
ܛܢܢܐ ܛܢܢ N;SG;PSSD
ܛܢܢܐ ܛܢܢܟܝܢ N;SG;PSS2PF
ܛܢܢܐ ܛܢܢܗ N;SG;PSS3SM
ܛܢܢܐ ܛܢܢܐ N;DEF;SG
ܛܢܢܐ ܛܢܢ N;ABS;SG
ܛܢܢܐ ܛܢܢܟܘܢ N;SG;PSS2PM
ܚܝܪܘܬܐ ܚܝܪܘܬܗ N;SG;PSS3SM
ܚܝܪܘܬܐ ܚܝܪܘ N;ABS;SG
ܚܝܪܘܬܐ ܚܝܪܘܬܗܝܢ N;SG;PSS3PF
ܚܝܪܘܬܐ ܚܝܪܘܬܟܝ N;SG;PSS2SF
ܚܝܪܘܬܐ ܚܝܪܘܬܗܘܢ N;SG;PSS3PM
ܚܝܪܘܬܐ ܚܝܪܘܬܢ N;SG;PSS1P
ܚܝܪܘܬܐ ܚܝܪܘܬܗ N;SG;PSS3SF
ܚܝܪܘܬܐ ܚܝܪܘܬ N;SG;PSSD
ܚܝܪܘܬܐ ܚܝܪܘܬܟܝܢ N;SG;PSS2PF
ܚܝܪܘܬܐ ܚܝܪܘܬܝ N;SG;PSS1S
ܚܝܪܘܬܐ ܚܝܪܘܬܟ N;SG;PSS2SM
ܚܝܪܘܬܐ ܚܝܪܘܬܟܘܢ N;SG;PSS2PM
ܚܝܪܘܬܐ ܚܝܪܘܬܐ N;DEF;SG
ܪܛܒܐ ܪܛܒܝ N;SG;PSS1S
ܪܛܒܐ ܪܛܒܐ N;DEF;SG
ܪܛܒܐ ܪܛܒ N;SG;PSSD
ܪܛܒܐ ܪܛܒܟܘܢ N;SG;PSS2PM
ܪܛܒܐ ܪܛܒܗ N;SG;PSS3SF
ܪܛܒܐ ܪܛܒ N;ABS;SG
ܪܛܒܐ ܪܛܒܗ N;SG;PSS3SM
ܪܛܒܐ ܪܛܒܟ N;SG;PSS2SM
ܪܛܒܐ ܪܛܒܗܝܢ N;SG;PSS3PF
ܪܛܒܐ ܪܛܒܟܝܢ N;SG;PSS2PF
ܪܛܒܐ ܪܛܒܟܝ N;SG;PSS2SF
ܪܛܒܐ ܪܛܒܢ N;SG;PSS1P
ܪܛܒܐ ܪܛܒܗܘܢ N;SG;PSS3PM
ܨܒܥܘܬܐ ܨܒܥܘܬ N;SG;PSSD
ܨܒܥܘܬܐ ܨܒܥܘܬܟܘܢ N;SG;PSS2PM
ܨܒܥܘܬܐ ܨܒܥܘܬܟ N;SG;PSS2SM
ܨܒܥܘܬܐ ܨܒܥܘܬܗ N;SG;PSS3SM
ܨܒܥܘܬܐ ܨܒܥܘܬܝ N;SG;PSS1S
ܨܒܥܘܬܐ ܨܒܥܘ N;ABS;SG
ܨܒܥܘܬܐ ܨܒܥܘܬܟܝܢ N;SG;PSS2PF
ܨܒܥܘܬܐ ܨܒܥܘܬܗܝܢ N;SG;PSS3PF
ܨܒܥܘܬܐ ܨܒܥܘܬܢ N;SG;PSS1P
ܨܒܥܘܬܐ ܨܒܥܘܬܐ N;DEF;SG
ܨܒܥܘܬܐ ܨܒܥܘܬܟܝ N;SG;PSS2SF
ܨܒܥܘܬܐ ܨܒܥܘܬܗܘܢ N;SG;PSS3PM
ܨܒܥܘܬܐ ܨܒܥܘܬܗ N;SG;PSS3SF
ܟܢܘܬܐ ܟܢܘܬܗ N;SG;PSS3SF
ܟܢܘܬܐ ܟܢܘܬܟܘܢ N;SG;PSS2PM
ܟܢܘܬܐ ܟܢܘܬܗ N;SG;PSS3SM
ܟܢܘܬܐ ܟܢܘܬܢ N;SG;PSS1P
ܟܢܘܬܐ ܟܢܘܬܗܝܢ N;SG;PSS3PF
ܟܢܘܬܐ ܟܢܘܬܗܘܢ N;SG;PSS3PM
ܟܢܘܬܐ ܟܢܘܬܟܝ N;SG;PSS2SF
ܟܢܘܬܐ ܟܢܘ N;ABS;SG
ܟܢܘܬܐ ܟܢܘܬ N;SG;PSSD
ܟܢܘܬܐ ܟܢܘܬܟܝܢ N;SG;PSS2PF
ܟܢܘܬܐ ܟܢܘܬܟ N;SG;PSS2SM
ܟܢܘܬܐ ܟܢܘܬܐ N;DEF;SG
ܟܢܘܬܐ ܟܢܘܬܝ N;SG;PSS1S
ܫܩܝܦܐ ܫܩܝܦܐ ADJ;ABS;MASC;SG
ܫܩܝܦܐ ܫܩܝܦܢ ADJ;ABS;FEM;PL
ܫܩܝܦܐ ܫܩܝܦܬܐ ADJ;DEF;FEM;PL
ܫܩܝܦܐ ܫܩܝܦܝ N;PL;PSS1S
ܫܩܝܦܐ ܫܩܝܦܐ N;DEF;PL
ܫܩܝܦܐ ܫܩܝܦܐ ADJ;DEF;MASC;SG
ܫܩܝܦܐ ܫܩܝܦܟܝ N;SG;PSS2SF
ܫܩܝܦܐ ܫܩܝܦ N;SG;PSSD
ܫܩܝܦܐ ܫܩܝܦܝ ADJ;FEM;PL;PSSD
ܫܩܝܦܐ ܫܩܝܦܝܟܘܢ N;PL;PSS2PM
ܫܩܝܦܐ ܫܩܝܦܢ N;SG;PSS1P
ܫܩܝܦܐ ܫܩܝܦ ADJ;MASC;SG;PSSD
ܫܩܝܦܐ ܫܩܝܦܝܗܘܢ N;PL;PSS3PM
ܫܩܝܦܐ ܫܩܝܦܗ N;SG;PSS3SM
ܫܩܝܦܐ ܫܩܝܦܟܝܢ N;SG;PSS2PF
ܫܩܝܦܐ ܫܩܝܦܟܘܢ N;SG;PSS2PM
ܫܩܝܦܐ ܫܩܝܦܝ N;PL;PSSD
ܫܩܝܦܐ ܫܩܝܦܝܢ N;ABS;PL
ܫܩܝܦܐ ܫܩܝܦܝܢ N;PL;PSS1P
ܫܩܝܦܐ ܫܩܝܦܝܗ N;PL;PSS3SF
ܫܩܝܦܐ ܫܩܝܦܝܗܝܢ N;PL;PSS3PF
ܫܩܝܦܐ ܫܩܝܦܘܗܝ N;PL;PSS3SM
ܫܩܝܦܐ ܫܩܝܦܝ N;SG;PSS1S
ܫܩܝܦܐ ܫܩܝܦ N;ABS;SG
ܫܩܝܦܐ ܫܩܝܦܝܟܝ N;PL;PSS2SF
ܫܩܝܦܐ ܫܩܝܦܗ N;SG;PSS3SF
ܫܩܝܦܐ ܫܩܝܦܝܢ ADJ;ABS;FEM;PL
ܫܩܝܦܐ ܫܩܝܦܬ ADJ;FEM;PL;PSSD
ܫܩܝܦܐ ܫܩܝܦܝܟ N;PL;PSS2SM
ܫܩܝܦܐ ܫܩܝܦܟ N;SG;PSS2SM
ܫܩܝܦܐ ܫܩܝܦ ADJ;ABS;MASC;SG
ܫܩܝܦܐ ܫܩܝܦܗܘܢ N;SG;PSS3PM
ܫܩܝܦܐ ܫܩܝܦܗܝܢ N;SG;PSS3PF
ܫܩܝܦܐ ܫܩܝܦܝܟܝܢ N;PL;PSS2PF
ܫܩܝܦܐ ܫܩܝܦܬ ADJ;MASC;SG;PSSD
ܫܩܝܦܐ ܫܩܝܦܐ N;DEF;SG
ܟܐܢܘܬܐ ܟܐܢܘܬ N;SG;PSSD
ܟܐܢܘܬܐ ܟܐܢܘܬܢ N;SG;PSS1P
ܟܐܢܘܬܐ ܟܐܢܘܬܟܝܢ N;SG;PSS2PF
ܟܐܢܘܬܐ ܟܐܢܘܬܗܝܢ N;SG;PSS3PF
ܟܐܢܘܬܐ ܟܐܢܘܬܟܝ N;SG;PSS2SF
ܟܐܢܘܬܐ ܟܐܢܘܬܗ N;SG;PSS3SM
ܟܐܢܘܬܐ ܟܐܢܘܬܟ N;SG;PSS2SM
ܟܐܢܘܬܐ ܟܐܢܘܬܟܘܢ N;SG;PSS2PM
ܟܐܢܘܬܐ ܟܐܢܘܬܝ N;SG;PSS1S
ܟܐܢܘܬܐ ܟܐܢܘ N;ABS;SG
ܟܐܢܘܬܐ ܟܐܢܘܬܗܘܢ N;SG;PSS3PM
ܟܐܢܘܬܐ ܟܐܢܘܬܗ N;SG;PSS3SF
ܟܐܢܘܬܐ ܟܐܢܘܬܐ N;DEF;SG
ܛܒܚܘܬܐ ܛܒܚܘ N;ABS;SG
ܛܒܚܘܬܐ ܛܒܚܘܬܟ N;SG;PSS2SM
ܛܒܚܘܬܐ ܛܒܚܘܬܗܝܢ N;SG;PSS3PF
ܛܒܚܘܬܐ ܛܒܚܘܬܝ N;SG;PSS1S
ܛܒܚܘܬܐ ܛܒܚܘܬ N;SG;PSSD
ܛܒܚܘܬܐ ܛܒܚܘܬܟܘܢ N;SG;PSS2PM
ܛܒܚܘܬܐ ܛܒܚܘܬܟܝ N;SG;PSS2SF
ܛܒܚܘܬܐ ܛܒܚܘܬܗ N;SG;PSS3SF
ܛܒܚܘܬܐ ܛܒܚܘܬܗܘܢ N;SG;PSS3PM
ܛܒܚܘܬܐ ܛܒܚܘܬܟܝܢ N;SG;PSS2PF
ܛܒܚܘܬܐ ܛܒܚܘܬܗ N;SG;PSS3SM
ܛܒܚܘܬܐ ܛܒܚܘܬܐ N;DEF;SG
ܛܒܚܘܬܐ ܛܒܚܘܬܢ N;SG;PSS1P
|
3136ef748ebbb20b9cc258f918d59edcd4cb2a3f | 2611daf17c8f8b7eebf4f956fbe248d030634499 | /parseScilabfunction.sci | 390c5ec9c624146384938efd2109393df5268bc5 | [] | no_license | roopak13/scilab | 17508b8c4c6a12f13dcbf05856545d90550b2448 | 9d1f15a88c71508e9adf5294ef6d33a7b2839a28 | refs/heads/master | 2021-01-10T04:28:26.740686 | 2016-03-28T08:19:54 | 2016-03-28T08:19:54 | 54,877,111 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 80 | sci | parseScilabfunction.sci | a = 1,b = 2
c= a+b
d = a-b
e = a*b
f = a/b
g = a^b
exec("foo.sci")
|
29250213eac472f9a4755de341c7b29c6b8d3402 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.16_9.tst | b6ddff9835435630fae5944c6e13abe5bb370060 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 35,059 | tst | bow.16_9.tst | 16 2:0.044444444444444446 5:0.07142857142857142 29:0.4 31:0.09090909090909091 50:0.3333333333333333 57:0.4 59:1.0 60:1.0 85:0.14285714285714285 91:2.0 127:1.0 130:0.25 147:0.2 150:0.5 152:0.5 160:0.5 172:0.5 212:0.5 273:0.5 288:0.5 306:1.0 355:0.3333333333333333 367:0.08333333333333333 370:0.5 420:0.3333333333333333 475:0.14285714285714285 488:1.0 625:1.0 721:1.0 812:1.0 957:1.0 1018:1.0 1187:1.0 1190:0.3333333333333333 1308:0.3333333333333333 2055:1.0 3700:1.0 4125:1.0 4487:1.0 4825:1.0 5187:1.0 5322:1.0 5466:1.0 5519:1.0 7402:1.0
16 5:0.14285714285714285 17:0.3333333333333333 47:0.5 78:1.0 83:1.0 91:1.0 94:1.0 106:1.0 111:1.0 136:0.03125 147:0.2 170:1.0 227:1.0 271:0.3333333333333333 300:0.09090909090909091 306:1.0 341:1.0 475:0.14285714285714285 775:1.0 828:1.0 1177:1.0 1320:1.0 1991:1.0 4125:2.0 4135:1.0 4217:0.2 4218:1.0 4220:1.0 4306:1.0 4480:1.0 5962:1.0 6091:1.0
16 5:0.07142857142857142 29:0.2 37:0.14285714285714285 91:1.0 147:0.2 170:2.0 248:1.0 266:0.09090909090909091 475:0.14285714285714285 2168:1.0 4125:1.0 4252:1.0 4306:1.0 4480:1.0 4675:1.0 5023:1.0
16 2:0.022222222222222223 5:0.07142857142857142 13:0.2857142857142857 17:0.16666666666666666 29:0.2 50:0.3333333333333333 51:0.14285714285714285 63:0.3333333333333333 84:0.5 136:0.03125 148:0.5 160:0.5 170:1.0 189:0.25 216:1.0 237:0.5 246:0.4 300:0.09090909090909091 609:1.0 834:1.0 1289:1.0 1308:0.3333333333333333 1585:1.0 2366:1.0 4125:1.0 5480:1.0 6802:1.0
16 5:0.14285714285714285 17:0.3333333333333333 18:0.5 20:0.5 29:0.2 57:0.2 60:1.0 81:0.5 135:1.0 147:0.2 150:0.5 170:1.0 172:0.5 343:1.0 370:0.5 404:0.5 406:1.0 593:1.0 1103:1.0 1149:1.0 1177:1.0 1659:0.5 2079:1.0 2167:1.0 4113:0.125 4125:2.0 4202:1.0 4447:0.5 5159:1.0
16 2:0.08888888888888889 3:1.0 5:0.2857142857142857 12:0.5 20:0.5 28:1.0 29:0.6 31:0.09090909090909091 37:0.14285714285714285 43:0.1 51:0.14285714285714285 57:0.2 58:0.5 59:1.0 60:1.0 66:1.0 77:1.0 81:1.0 85:0.14285714285714285 93:0.5 94:1.0 119:0.5 130:0.5 135:1.0 136:0.03125 160:0.5 170:1.0 175:0.047619047619047616 179:1.0 216:1.0 237:0.5 273:0.5 321:1.0 351:0.3333333333333333 432:0.5 516:0.5 633:1.0 651:1.0 670:0.5 710:1.0 1293:0.5 1364:1.0 1519:2.0 1794:1.0 2525:1.0 3160:1.0 3382:1.0 4138:0.5 4306:1.0 4382:1.0 4645:1.0 4718:1.0 5153:1.0 5332:1.0 5466:1.0 6209:1.0 6746:1.0
16 2:0.044444444444444446 5:0.14285714285714285 12:0.5 17:0.16666666666666666 20:0.5 29:0.6 37:0.14285714285714285 47:0.5 57:0.4 60:1.0 119:0.5 136:0.09375 170:1.0 209:1.0 219:1.0 266:0.09090909090909091 286:0.16666666666666666 306:1.0 317:1.0 367:0.08333333333333333 516:0.5 881:1.0 923:1.0 1327:1.0 1967:1.0 2445:1.0 3470:0.5 3861:1.0 4172:1.0 4382:1.0 4597:1.0 5073:1.0 5576:1.0 6968:1.0 7441:1.0
16 2:0.044444444444444446 11:0.5 17:0.16666666666666666 31:0.09090909090909091 37:0.14285714285714285 38:0.0625 47:0.5 48:0.3333333333333333 57:0.6 60:1.0 64:1.0 66:1.0 85:0.14285714285714285 114:1.0 136:0.03125 142:0.2 246:0.2 266:0.09090909090909091 350:0.3333333333333333 418:0.3333333333333333 446:1.0 552:1.0 632:1.0 1105:1.0 1130:1.0 1321:0.5 3467:1.0 5057:1.0 5138:1.0 5909:1.0
16 5:0.14285714285714285 12:0.5 29:0.2 37:0.14285714285714285 48:0.3333333333333333 91:1.0 130:0.25 160:0.5 170:3.0 172:0.5 175:0.047619047619047616 248:1.0 273:0.25 300:0.18181818181818182 306:2.0 310:1.0 332:0.5 351:0.3333333333333333 367:0.08333333333333333 565:1.0 739:1.0 1234:1.0 1293:0.5 1799:1.0 2350:1.0 4113:0.125 4172:1.0 5073:1.0 5580:1.0 6038:1.0 7437:1.0
16 29:0.2 38:0.0625 42:1.0 47:0.5 50:0.3333333333333333 51:0.14285714285714285 70:0.5 81:1.0 119:0.5 127:0.5 130:0.25 209:1.0 212:0.5 306:2.0 310:1.0 325:0.5 475:0.14285714285714285 838:1.0 1084:1.0 1379:1.0 1987:1.0 2146:1.0 2434:1.0 2622:1.0 2816:0.5 3823:1.0 4061:1.0 4172:2.0 4340:1.0 4983:1.0
16 85:0.42857142857142855 119:0.5 130:0.25 175:0.047619047619047616 222:0.09090909090909091 246:0.2 469:0.3333333333333333 552:1.0 573:1.0 1192:1.0 1289:1.0 1986:0.5 2152:1.0 2408:1.0 2788:1.0 2865:1.0 3020:1.0 3094:1.0 3334:1.0 3931:1.0 4138:0.5 5535:2.0 5553:1.0 6031:1.0
16 5:0.07142857142857142 17:0.16666666666666666 57:0.2 58:0.5 94:1.0 130:0.25 135:1.0 147:0.4 160:1.0 170:1.0 209:1.0 222:0.09090909090909091 270:0.5 351:0.3333333333333333 388:1.0 473:1.0 475:0.14285714285714285 512:1.0 516:0.5 546:1.0 609:1.0 847:1.0 867:1.0 922:0.5 1001:1.0 1072:1.0 1073:0.3333333333333333 1114:1.0 1268:0.25 1434:1.0 1991:1.0 2622:1.0 3330:1.0 4138:0.5 4359:1.0 4388:1.0 4524:1.0 5697:1.0 6759:1.0 7412:1.0 7413:1.0 7415:1.0
16 5:0.07142857142857142 12:0.75 28:1.0 29:0.2 37:0.14285714285714285 38:0.0625 57:0.4 60:1.0 85:0.14285714285714285 119:0.5 130:0.25 160:0.5 175:0.047619047619047616 382:0.5 413:1.0 593:1.0 702:0.5 821:1.0 1064:1.0 1251:1.0 1317:1.0 1396:1.0 1537:0.5 2079:1.0 2193:1.0 2194:0.5 3456:1.0 3731:1.0 4636:1.0 7109:1.0
16 2:0.022222222222222223 5:0.07142857142857142 17:0.16666666666666666 31:0.09090909090909091 60:2.0 94:1.0 119:0.5 130:0.25 147:0.2 160:0.5 170:1.0 172:0.5 175:0.047619047619047616 512:1.0 702:0.5 821:1.0 847:1.0 1001:1.0 1537:0.5 2350:1.0 2622:1.0 4113:0.125 4125:1.0 4477:1.0 4636:1.0 5764:1.0 6759:1.0 7057:1.0 7412:1.0 7413:1.0 7415:1.0
16 5:0.07142857142857142 12:0.25 29:0.2 31:0.09090909090909091 93:0.5 94:1.0 142:0.1 172:0.5 216:1.0 222:0.09090909090909091 426:0.2 473:1.0 475:0.14285714285714285 977:1.0 1060:1.0 1418:1.0 1458:1.0 1476:1.0 1943:1.0 4125:1.0 4439:1.0 6033:1.0 6645:1.0
16 17:0.3333333333333333 18:0.5 29:0.2 58:0.5 94:1.0 142:0.1 226:1.0 241:1.0 300:0.09090909090909091 364:1.0 404:0.5 511:1.0 706:1.0 4125:2.0 4311:0.5 4965:1.0 5842:1.0 5897:1.0 7263:1.0
16 2:0.022222222222222223 85:0.14285714285714285 93:0.5 94:1.0 119:0.5 127:0.5 130:0.25 146:1.0 172:0.5 351:0.3333333333333333 367:0.08333333333333333 368:1.0 490:0.5 527:0.25 546:1.0 690:0.5 804:1.0 2783:1.0 4308:1.0 4558:1.0 5127:1.0
16 2:0.022222222222222223 5:0.21428571428571427 17:0.3333333333333333 57:0.4 58:0.5 85:0.14285714285714285 147:0.2 172:1.0 175:0.047619047619047616 216:1.0 309:1.0 310:1.0 367:0.08333333333333333 368:1.0 370:0.5 550:0.6666666666666666 552:1.0 651:1.0 702:0.5 767:1.0 867:1.0 1060:2.0 1289:1.0 1332:1.0 1717:0.25 2091:1.0 2146:1.0 4125:1.0 7336:1.0
16 5:0.14285714285714285 17:0.16666666666666666 20:0.5 31:0.09090909090909091 57:0.4 66:1.0 94:2.0 110:0.125 160:0.5 216:1.0 222:0.09090909090909091 246:0.2 266:0.09090909090909091 306:1.0 309:1.0 406:1.0 484:1.0 511:1.0 690:0.5 745:1.0 773:1.0 1134:1.0 1725:1.0 1728:1.0 1898:1.0 1905:1.0 3823:1.0 4125:1.0 4220:1.0 4235:1.0 4485:1.0 4524:1.0 4574:1.0 4798:1.0 5184:1.0 5973:1.0 6593:1.0
16 2:0.022222222222222223 5:0.2857142857142857 17:0.16666666666666666 29:0.2 57:0.4 81:0.5 85:0.2857142857142857 110:0.125 122:0.5 130:0.5 136:0.03125 147:0.2 160:0.5 182:0.3333333333333333 189:0.5 202:1.0 227:1.0 229:1.0 237:0.5 264:1.0 306:1.0 341:1.0 342:1.0 469:0.3333333333333333 516:0.5 984:1.0 1063:1.0 1317:1.0 1415:1.0 2468:1.0 2644:1.0 2847:1.0 3946:1.0 4240:1.0 4258:1.0 4324:1.0 4382:1.0 4798:1.0 7079:1.0 7080:1.0
16 5:0.14285714285714285 17:0.16666666666666666 29:0.6 57:0.2 83:1.0 91:1.0 94:1.0 125:0.5 130:0.25 147:0.4 227:1.0 246:0.2 271:0.6666666666666666 273:0.25 300:0.09090909090909091 342:1.0 475:0.2857142857142857 511:1.0 534:0.2222222222222222 585:1.0 775:1.0 1172:1.0 1177:2.0 1320:2.0 1332:1.0 1392:1.0 2780:1.0 4125:1.0 4217:0.4 4218:2.0 4221:1.0 4447:0.5 4517:1.0 5926:1.0
16 2:0.044444444444444446 5:0.07142857142857142 11:0.5 12:0.25 17:0.16666666666666666 20:0.5 24:1.0 38:0.0625 57:0.2 66:1.0 83:1.0 85:0.2857142857142857 91:1.0 94:1.0 110:0.125 111:1.0 135:1.0 147:0.2 148:0.5 156:0.2 160:0.5 170:2.0 189:0.25 216:1.0 246:0.2 266:0.09090909090909091 309:1.0 310:1.0 321:1.0 329:1.0 367:0.08333333333333333 450:1.0 473:1.0 475:0.2857142857142857 566:0.3333333333333333 775:1.0 1072:1.0 1114:1.0 1187:1.0 1274:1.0 1298:1.0 1794:1.0 2146:1.0 3113:1.0 3730:1.0 3737:1.0 4307:1.0 4447:0.5 5928:1.0 6919:1.0 7286:1.0
16 2:0.044444444444444446 29:0.4 51:0.2857142857142857 57:0.2 59:1.0 61:0.5 62:1.0 64:1.0 66:1.0 85:0.14285714285714285 127:0.5 136:0.03125 160:0.5 216:1.0 222:0.09090909090909091 306:1.0 341:1.0 351:0.3333333333333333 388:1.0 469:1.0 617:1.0 696:1.0 732:1.0 746:0.3333333333333333 837:1.0 1317:2.0 1551:1.0 1991:1.0 2152:1.0 2914:1.0 2947:1.0 3451:1.0 3929:1.0 4465:1.0 4715:1.0 4962:1.0 5214:2.0 6179:1.0 6457:1.0 7202:1.0
16 17:0.16666666666666666 19:1.0 57:0.2 60:1.0 85:0.2857142857142857 99:1.0 105:0.06666666666666667 115:0.5 130:0.25 135:1.0 147:0.2 170:2.0 246:0.2 266:0.09090909090909091 300:0.09090909090909091 306:1.0 530:0.3333333333333333 686:1.0 1060:1.0 1317:2.0 1632:0.5 1903:1.0 2137:1.0 2269:0.5 2802:1.0 3045:1.0 3155:0.5 3451:1.0 3499:1.0 3800:1.0 4170:0.5 4179:1.0 4340:1.0 4447:0.5 5062:1.0 5087:1.0 5111:1.0 5782:1.0 5868:1.0 5881:1.0 6457:1.0 6637:1.0 6940:1.0
16 2:0.022222222222222223 5:0.14285714285714285 12:0.25 17:0.16666666666666666 22:0.2 24:1.0 28:1.0 29:0.2 38:0.0625 66:1.0 91:2.0 130:0.25 136:0.03125 147:0.4 170:1.0 172:0.5 237:1.0 246:0.2 266:0.09090909090909091 282:0.3333333333333333 309:1.0 310:1.0 449:1.0 532:0.3333333333333333 544:0.5 609:1.0 923:1.0 1092:1.0 1573:1.0 1925:1.0 2146:1.0 2783:1.0 4036:1.0 4113:0.125 4125:1.0 4307:1.0 4308:1.0 4606:1.0 4688:1.0 5029:1.0 5397:1.0 5462:1.0 6900:1.0 6973:1.0
16 5:0.14285714285714285 50:0.3333333333333333 209:1.0 264:1.0 355:0.3333333333333333 367:0.08333333333333333 580:1.0 1493:1.0 3381:0.5 3727:1.0 7063:1.0 7072:1.0
16 2:0.022222222222222223 5:0.07142857142857142 12:0.25 17:0.16666666666666666 29:0.2 42:1.0 50:0.3333333333333333 57:0.4 58:1.5 60:2.0 104:1.0 119:0.5 147:0.2 175:0.047619047619047616 182:0.3333333333333333 226:1.0 270:0.5 300:0.09090909090909091 388:1.0 410:1.0 411:1.0 462:1.0 465:0.5 527:0.25 573:1.0 627:1.0 825:1.0 2711:1.0 4125:2.0 4807:1.0 4934:1.0 5089:1.0 5191:0.5 5254:1.0 5375:1.0 5617:1.0 5983:1.0 7090:1.0
16 5:0.07142857142857142 17:0.16666666666666666 29:0.2 42:1.0 43:0.1 47:0.5 51:0.14285714285714285 83:1.0 85:0.2857142857142857 94:1.0 111:1.0 128:1.0 136:0.03125 147:0.2 160:0.5 170:1.0 172:0.5 175:0.047619047619047616 222:0.09090909090909091 227:1.0 271:0.3333333333333333 306:1.0 321:2.0 473:1.0 475:0.2857142857142857 501:0.5 775:1.0 953:0.5 1325:1.0 2344:1.0 2481:1.0 2657:1.0 2865:1.0 3640:1.0 4138:0.5 4217:0.2 4218:1.0 4220:1.0 4447:0.5 4911:1.0 5335:1.0 7260:1.0
16 5:0.07142857142857142 17:0.5 51:0.2857142857142857 57:0.2 60:1.0 66:3.0 85:0.14285714285714285 91:1.0 94:3.0 127:0.5 135:1.0 172:0.5 222:0.09090909090909091 246:0.2 270:0.5 300:0.09090909090909091 309:1.0 388:1.0 389:0.5 410:1.0 432:0.5 475:0.2857142857142857 501:0.5 512:2.0 522:1.0 552:1.0 686:1.0 797:1.0 815:1.0 887:1.0 964:1.0 1114:1.0 1139:1.0 1251:1.0 1725:1.0 1908:1.0 2365:1.0 2682:1.0 2905:1.0 2916:1.0 2976:1.0 3049:1.0 3621:1.0 3827:1.0 3890:1.0 4125:1.0 4138:0.5 4720:1.0 4746:1.0 5090:1.0 5466:1.0 6399:2.0 6592:1.0
16 5:0.07142857142857142 12:0.25 29:0.2 43:0.1 85:0.2857142857142857 119:0.5 127:0.5 136:0.03125 160:1.0 170:1.0 175:0.09523809523809523 219:1.0 250:1.0 388:1.0 456:1.0 482:1.0 798:1.0 1234:1.0 1251:1.0 1289:1.0 1920:1.0 2194:0.5 2976:1.0 3721:1.0 4125:1.0 5580:1.0 5882:1.0 5893:1.0 5901:1.0 5905:1.0 6510:1.0 6650:2.0
16 2:0.022222222222222223 3:1.0 5:0.07142857142857142 12:0.25 14:0.25 29:0.4 38:0.0625 51:0.14285714285714285 57:0.4 58:0.5 74:0.5 85:0.14285714285714285 111:1.0 119:1.0 127:0.5 136:0.0625 142:0.2 170:2.0 172:0.5 209:1.0 227:1.0 325:0.5 388:1.0 517:1.0 745:1.0 1060:1.0 1173:0.3333333333333333 1243:1.0 1251:1.0 1308:0.3333333333333333 2248:1.0 3161:1.0 4202:1.0 4523:2.0 5025:1.0 5234:1.0 6247:1.0
16 2:0.022222222222222223 5:0.21428571428571427 17:0.5 18:1.0 20:0.5 31:0.09090909090909091 38:0.125 51:0.14285714285714285 57:0.2 60:2.0 65:1.0 66:1.0 70:0.5 85:0.14285714285714285 94:2.0 119:0.5 128:1.0 136:0.03125 146:1.0 150:1.0 160:0.5 172:1.0 191:0.3333333333333333 224:1.0 248:1.0 266:0.18181818181818182 300:0.09090909090909091 310:2.0 332:0.5 365:1.0 367:0.08333333333333333 430:0.5 475:0.2857142857142857 585:1.0 679:0.14285714285714285 1060:1.0 1132:1.0 1149:2.0 1251:1.0 1355:1.0 1524:1.0 1601:1.0 2194:0.5 4125:1.0 5803:1.0 5911:1.0
16 2:0.022222222222222223 5:0.07142857142857142 12:0.25 17:0.16666666666666666 57:0.4 85:0.14285714285714285 115:0.5 147:0.2 170:1.0 172:1.0 209:1.0 300:0.09090909090909091 432:0.5 435:1.0 446:1.0 507:1.0 512:1.0 812:1.0 1114:1.0 1217:1.0 1642:1.0 2462:1.0 4125:2.0 4227:1.0 6213:1.0 6812:1.0
16 5:0.21428571428571427 12:0.25 19:1.0 28:1.0 29:0.2 48:0.3333333333333333 51:0.14285714285714285 57:0.2 60:2.0 62:1.0 85:0.2857142857142857 91:1.0 119:1.0 135:1.0 147:0.2 179:1.0 227:1.0 237:0.5 246:0.2 319:1.0 547:0.5 686:1.0 790:1.0 951:0.6666666666666666 1018:1.0 1195:1.0 1505:1.0 1971:1.0 2027:1.0 2113:1.0 2253:1.0 2337:1.0 2417:1.0 3530:1.0 4530:1.0 4606:1.0 5397:1.0 6078:1.0
16 5:0.07142857142857142 19:1.0 62:1.0 85:0.14285714285714285 91:2.0 127:0.5 132:0.3333333333333333 135:1.0 142:0.1 147:0.4 172:0.5 237:1.0 246:0.2 266:0.18181818181818182 303:1.0 304:1.0 310:1.0 332:0.5 351:0.3333333333333333 462:1.0 662:1.0 797:1.0 923:1.0 4113:0.25 4125:1.0 4203:1.0 4606:1.0 4607:1.0 4988:1.0 5192:1.0
16 31:0.18181818181818182 38:0.0625 56:1.0 57:0.2 59:1.0 85:0.14285714285714285 91:1.0 119:0.5 140:1.0 147:0.4 191:0.3333333333333333 212:0.5 246:0.2 266:0.09090909090909091 457:1.0 469:0.3333333333333333 473:1.0 509:1.0 512:1.0 868:1.0 998:1.0 1072:1.0 1073:0.3333333333333333 1268:0.5 1321:0.5 1325:1.0 1476:1.0 1512:1.0 2342:1.0 4138:0.5 5556:1.0 5597:1.0 5755:1.0 7155:1.0
16 5:0.21428571428571427 17:0.3333333333333333 57:0.2 62:1.0 83:1.0 85:0.14285714285714285 91:3.0 94:1.0 130:0.5 132:0.3333333333333333 142:0.1 147:0.4 237:0.5 246:0.4 266:0.18181818181818182 271:0.3333333333333333 303:1.0 304:1.0 351:0.3333333333333333 475:0.2857142857142857 512:1.0 534:0.1111111111111111 543:1.0 585:1.0 662:1.0 679:0.14285714285714285 775:1.0 797:1.0 985:1.0 1177:2.0 1320:1.0 1524:1.0 1823:0.5 3891:1.0 4203:1.0 4217:0.2 4218:1.0 4503:1.0 4517:1.0
16 5:0.07142857142857142 17:0.16666666666666666 29:0.2 50:0.3333333333333333 60:1.0 66:2.0 85:0.8571428571428571 91:1.0 110:0.125 119:0.5 127:0.5 170:3.0 172:0.5 237:0.5 266:0.09090909090909091 277:1.0 308:1.0 364:1.0 367:0.08333333333333333 410:1.0 473:2.0 475:0.14285714285714285 530:0.3333333333333333 580:1.0 601:1.0 609:1.0 629:1.0 669:1.0 686:1.0 867:1.0 902:1.0 993:1.0 1045:1.0 1249:1.0 1782:1.0 2112:1.0 2257:1.0 2350:1.0 2367:1.0 2414:1.0 4135:1.0 4138:0.5 4298:0.5 4311:0.5 4363:0.5 5698:1.0 6238:1.0
16 2:0.044444444444444446 5:0.07142857142857142 9:1.0 17:0.3333333333333333 20:0.5 24:1.0 31:0.09090909090909091 51:0.14285714285714285 60:1.0 62:1.0 85:0.2857142857142857 91:4.0 127:0.5 132:0.3333333333333333 147:0.4 150:0.5 160:0.5 172:0.5 189:0.25 216:1.0 224:1.0 266:0.18181818181818182 288:0.5 300:0.18181818181818182 517:1.0 696:1.0 746:0.3333333333333333 797:1.0 923:1.0 1136:1.0 1317:1.0 1632:0.5 1736:1.0 1992:1.0 2023:1.0 2740:1.0 3168:1.0 4113:0.125 4125:1.0 4259:1.0 5021:1.0 5887:1.0 5888:1.0 6073:1.0 6867:1.0
16 2:0.022222222222222223 5:0.2857142857142857 12:0.5 17:0.3333333333333333 29:0.4 42:1.0 47:0.5 60:1.0 66:1.0 83:1.0 91:1.0 94:1.0 111:1.0 147:0.2 150:0.5 152:1.0 160:1.0 161:1.0 189:0.25 212:0.5 271:0.3333333333333333 341:1.0 439:0.3333333333333333 475:0.14285714285714285 512:1.0 584:1.0 775:1.0 887:1.0 1190:0.3333333333333333 1317:1.0 2337:1.0 3275:0.5 4134:0.5 4217:0.2 4218:1.0 4276:1.0 4343:1.0 4629:1.0 6050:1.0 6867:1.0
16 2:0.044444444444444446 5:0.07142857142857142 17:0.5 28:1.0 47:0.5 83:1.0 85:0.2857142857142857 90:1.0 91:1.0 93:0.5 94:2.0 111:1.0 147:0.2 160:0.5 175:0.047619047619047616 222:0.18181818181818182 226:1.0 246:0.2 271:0.3333333333333333 306:2.0 310:1.0 321:1.0 325:0.5 350:0.3333333333333333 398:1.0 469:0.3333333333333333 475:0.14285714285714285 527:0.25 696:1.0 718:1.0 775:1.0 867:1.0 1037:1.0 1149:1.0 1320:1.0 1419:0.5 1921:1.0 2146:1.0 2269:1.0 2353:0.5 2591:1.0 3065:1.0 3214:1.0 4202:1.0 4217:0.2 4218:1.0 4219:1.0 4220:1.0 4221:1.0 4310:1.0 4517:1.0 5059:0.5 5305:1.0 6391:1.0 7013:1.0
16 5:0.14285714285714285 12:0.5 17:0.5 33:1.0 47:0.5 50:0.3333333333333333 57:0.2 60:1.0 85:0.14285714285714285 119:0.5 135:2.0 147:0.2 160:0.5 209:1.0 227:1.0 300:0.09090909090909091 332:0.5 350:0.3333333333333333 410:1.0 475:0.14285714285714285 546:1.0 547:0.5 601:1.0 870:1.0 957:1.0 1060:1.0 1335:1.0 1524:1.0 2844:1.0 3470:0.5 3547:1.0 4125:2.0 4306:1.0 4688:1.0 5025:1.0 5398:1.0 6965:1.0
16 1:0.2 2:0.022222222222222223 5:0.21428571428571427 17:0.16666666666666666 29:0.2 31:0.09090909090909091 34:1.0 38:0.0625 57:0.4 66:2.0 69:1.0 81:0.5 85:0.14285714285714285 91:1.0 94:1.0 170:2.0 237:0.5 241:1.0 300:0.09090909090909091 310:1.0 367:0.08333333333333333 426:0.2 473:1.0 591:1.0 702:0.5 838:1.0 1325:1.0 1575:1.0 1585:1.0 2342:1.0 2417:1.0 4113:0.125 4138:0.5 4160:1.0 4266:1.0 4551:1.0 4589:1.0 4838:1.0 4904:1.0 5066:1.0 5650:1.0 6656:1.0
16 2:0.044444444444444446 5:0.2857142857142857 18:0.5 29:0.2 31:0.09090909090909091 43:0.1 74:0.5 147:0.2 160:0.5 170:1.0 172:0.5 226:1.0 237:0.5 341:1.0 522:2.0 1177:1.0 1317:1.0 2353:0.5 2752:1.0 3687:1.0 4688:1.0 4942:1.0 4981:1.0 6369:1.0 6370:1.0 6751:1.0 7220:1.0
16 5:0.21428571428571427 17:0.3333333333333333 18:0.5 29:0.2 37:0.14285714285714285 43:0.2 57:0.2 59:1.0 60:1.0 69:1.0 85:0.14285714285714285 125:0.5 135:1.0 147:0.2 160:0.5 199:0.5 270:0.5 300:0.09090909090909091 306:1.0 319:1.0 332:0.5 410:1.0 449:1.0 546:1.0 583:1.0 597:1.0 983:1.0 1114:1.0 1268:0.25 1532:1.0 1573:1.0 1794:1.0 1865:1.0 1941:0.5 2353:0.5 2452:1.0 3542:1.0 4125:1.0 4456:1.0 4600:0.5 4629:1.0 4926:1.0 4981:1.0 5032:1.0 5148:1.0 5464:1.0 7233:1.0 7286:1.0
16 2:0.022222222222222223 5:0.07142857142857142 17:0.16666666666666666 42:1.0 59:1.0 142:0.1 175:0.047619047619047616 212:0.5 222:0.09090909090909091 300:0.09090909090909091 341:1.0 473:1.0 617:1.0 1476:1.0 2353:0.5 2752:1.0 4529:1.0 4688:1.0 5023:1.0 6061:1.0 6348:1.0 6876:1.0
16 12:0.25 17:0.3333333333333333 28:1.0 48:0.3333333333333333 81:0.5 93:0.5 104:1.0 119:0.5 135:1.0 136:0.03125 160:0.5 237:0.5 310:1.0 319:1.0 321:1.0 332:0.5 370:0.5 435:1.0 531:1.0 532:0.3333333333333333 570:1.0 881:1.0 1279:1.0 1422:1.0 1443:1.0 1570:1.0 2450:1.0 4252:1.0 5392:1.0
16 2:0.022222222222222223 5:0.07142857142857142 17:0.16666666666666666 31:0.18181818181818182 38:0.0625 48:0.3333333333333333 60:1.0 66:1.0 85:0.14285714285714285 91:1.0 110:0.125 119:0.5 132:0.3333333333333333 170:1.0 237:0.5 552:1.0 702:0.5 922:0.5 923:1.0 1092:1.0 1125:1.0 3890:1.0 4068:1.0 4113:0.125 4606:1.0 5145:1.0
16 5:0.2857142857142857 12:0.25 17:0.3333333333333333 43:0.1 47:0.5 58:0.5 60:1.0 83:1.0 91:2.0 94:1.0 110:0.125 111:1.0 142:0.1 147:0.2 170:1.0 172:0.5 182:0.3333333333333333 227:3.0 250:1.0 271:0.3333333333333333 306:1.0 341:1.0 445:1.0 475:0.14285714285714285 528:1.0 534:0.1111111111111111 547:0.5 702:1.0 775:1.0 959:0.3333333333333333 1060:1.0 1125:1.0 1177:1.0 1219:1.0 1320:1.0 1450:1.0 1493:1.0 2202:1.0 4068:1.0 4217:0.2 4218:1.0 4220:1.0 4315:1.0 4447:0.5 6359:1.0 7056:1.0
16 20:0.5 51:0.14285714285714285 62:1.0 91:2.0 104:1.0 132:0.3333333333333333 135:1.0 147:0.2 170:1.0 172:0.5 266:0.09090909090909091 286:0.16666666666666666 300:0.2727272727272727 351:0.3333333333333333 2452:1.0 4115:1.0 4116:1.0 4125:1.0 4179:1.0 4259:1.0 4456:1.0 4483:1.0
16 5:0.21428571428571427 12:0.25 17:0.3333333333333333 24:1.0 29:0.4 73:1.0 81:1.0 85:0.14285714285714285 128:1.0 136:0.03125 160:0.5 226:1.0 237:0.5 273:0.25 277:1.0 306:1.0 380:1.0 449:1.0 532:0.3333333333333333 585:1.0 661:1.0 732:1.0 856:1.0 1040:1.0 1060:1.0 1325:1.0 1367:1.0 1439:1.0 2092:1.0 2788:1.0 3416:1.0 4009:1.0 4138:1.0 4215:1.0 4388:1.0 4589:1.0 5170:1.0 5255:1.0 6548:1.0 6591:1.0
16 12:0.25 17:0.16666666666666666 29:0.4 44:1.0 57:0.2 85:0.42857142857142855 119:0.5 136:0.03125 147:0.2 170:1.0 222:0.09090909090909091 237:1.0 306:2.0 465:1.0 532:0.3333333333333333 702:0.5 797:1.0 923:1.0 964:1.0 1167:0.2 1190:0.3333333333333333 4113:0.125 4138:0.5 4220:1.0 4433:1.0 4606:1.0 4934:1.0 5580:1.0 5881:1.0 6414:1.0 7407:1.0
16 2:0.06666666666666667 5:0.07142857142857142 12:0.25 20:0.5 29:0.4 57:0.2 60:1.0 84:0.5 85:0.5714285714285714 91:1.0 110:0.125 136:0.03125 169:1.0 189:0.25 213:1.0 246:0.2 264:1.0 306:1.0 310:1.0 445:1.0 446:1.0 739:1.0 821:1.0 1115:1.0 1125:1.0 1317:1.0 1327:1.0 1328:1.0 2111:1.0 2272:1.0 3500:1.0 4311:0.5 4324:1.0 4382:1.0 4409:1.0 5025:1.0 5607:1.0 5612:1.0 7441:1.0
16 5:0.07142857142857142 12:0.25 19:1.0 29:0.2 31:0.09090909090909091 60:1.0 81:0.5 85:0.2857142857142857 119:1.0 135:2.0 160:0.5 182:0.3333333333333333 288:0.5 1177:1.0 1594:1.0 2453:1.0 2553:1.0 3499:1.0 5564:1.0
16 2:0.08888888888888889 5:0.07142857142857142 31:0.36363636363636365 38:0.0625 57:0.2 59:1.0 60:1.0 77:1.0 81:0.5 83:2.0 91:1.0 159:1.0 160:1.0 194:0.16666666666666666 222:0.09090909090909091 224:1.0 241:1.0 286:0.16666666666666666 310:1.0 332:0.5 408:1.0 617:1.0 984:1.0 1482:1.0 1794:1.0 2073:1.0 2920:0.5 4125:1.0 4187:1.0 4879:1.0 5388:1.0 5855:1.0
16 2:0.022222222222222223 5:0.07142857142857142 12:0.25 17:0.3333333333333333 29:0.4 38:0.1875 47:0.5 57:0.4 66:1.0 81:0.5 83:1.0 94:1.0 110:0.125 111:1.0 125:0.5 130:0.25 147:0.2 160:0.5 222:0.09090909090909091 271:0.3333333333333333 321:1.0 430:0.5 475:0.14285714285714285 661:2.0 775:1.0 1064:1.0 1320:1.0 2393:1.0 2807:1.0 2915:1.0 3260:1.0 4195:1.0 4217:0.2 4218:1.0 4220:1.0 4289:1.0 4447:0.5 6746:1.0 6987:1.0 6988:1.0
16 5:0.07142857142857142 31:0.09090909090909091 45:1.0 60:1.0 61:0.5 63:0.3333333333333333 147:0.2 209:1.0 237:0.5 923:1.0 985:1.0 2096:1.0 3601:1.0 4113:0.125 4125:1.0 4322:1.0 4551:1.0 4710:1.0 4711:1.0 4714:1.0 7090:1.0
16 17:0.16666666666666666 277:1.0 332:0.5 4113:0.125 4399:1.0
16 5:0.07142857142857142 9:1.0 17:0.16666666666666666 50:0.3333333333333333 60:1.0 62:1.0 81:0.5 91:2.0 95:1.0 122:0.5 130:0.25 132:0.3333333333333333 147:0.2 160:1.0 266:0.09090909090909091 300:0.09090909090909091 527:0.25 847:1.0 4179:1.0 4215:1.0 4259:1.0 5235:1.0
16 5:0.14285714285714285 12:0.25 17:0.16666666666666666 29:0.2 46:1.0 50:0.3333333333333333 57:0.2 60:1.0 61:0.5 74:0.5 83:1.0 85:0.2857142857142857 91:2.0 94:1.0 111:1.0 122:0.5 147:0.4 160:1.0 212:1.0 257:1.0 266:0.09090909090909091 273:0.25 445:1.0 475:0.14285714285714285 534:0.1111111111111111 775:1.0 847:1.0 923:1.0 1084:1.0 1177:1.0 1791:1.0 2865:1.0 3037:1.0 3470:0.5 4215:1.0 4217:0.2 4218:1.0 4230:1.0 5619:1.0 7286:1.0
16 12:0.25 17:0.16666666666666666 31:0.09090909090909091 85:0.14285714285714285 89:1.0 110:0.125 122:0.5 527:0.25 583:1.0 600:1.0 1060:2.0 1162:1.0 1842:1.0 2606:1.0 2844:1.0 3148:1.0 4125:1.0
16 2:0.044444444444444446 29:0.2 31:0.18181818181818182 38:0.0625 64:1.0 89:1.0 104:1.0 119:1.0 136:0.03125 160:0.5 194:0.16666666666666666 246:0.2 340:1.0 883:1.0 1063:1.0 1225:1.0 2125:1.0 4497:1.0
16 3:1.0 5:0.21428571428571427 12:0.25 17:0.16666666666666666 24:1.0 29:0.2 37:0.14285714285714285 38:0.0625 60:1.0 63:0.3333333333333333 66:1.0 85:0.2857142857142857 119:0.5 130:0.25 135:1.0 170:3.0 223:0.5 237:0.5 266:0.09090909090909091 273:0.25 300:0.09090909090909091 306:1.0 343:1.0 349:0.5 462:1.0 797:1.0 821:1.0 852:1.0 923:1.0 1991:1.0 2500:1.0 2525:1.0 3224:0.5 3381:0.5 4138:1.0 4505:1.0 4606:1.0 5284:1.0 6453:1.0 6454:1.0
16 5:0.14285714285714285 17:0.16666666666666666 37:0.14285714285714285 47:0.5 57:0.2 85:0.14285714285714285 119:0.5 123:1.0 139:1.0 146:1.0 147:0.2 173:1.0 212:0.5 213:1.0 319:1.0 749:0.3333333333333333 797:1.0 827:0.3333333333333333 856:1.0 921:0.5 1074:1.0 1301:1.0 1548:1.0 1765:1.0 2257:1.0 4138:1.0 4940:1.0 4941:1.0 5841:1.0
16 5:0.14285714285714285 17:0.16666666666666666 38:0.0625 57:0.2 58:0.5 60:2.0 63:0.3333333333333333 66:1.0 78:1.0 81:0.5 85:0.2857142857142857 110:0.125 128:1.0 147:0.2 170:1.0 266:0.09090909090909091 310:1.0 332:0.5 346:1.0 473:1.0 679:0.14285714285714285 702:0.5 779:1.0 878:1.0 1216:1.0 2391:1.0 2711:1.0 2865:1.0 3147:0.5 3510:0.25 3512:1.0 4306:1.0 4386:1.0 5059:0.5 6359:1.0
16 2:0.06666666666666667 5:0.14285714285714285 17:0.16666666666666666 24:1.0 29:0.4 91:1.0 99:1.0 119:0.5 122:0.5 160:1.0 182:0.3333333333333333 300:0.09090909090909091 306:1.0 309:1.0 340:1.0 388:1.0 475:0.14285714285714285 530:0.3333333333333333 619:1.0 951:0.3333333333333333 1115:1.0 1190:0.3333333333333333 1251:1.0 1450:1.0 1524:1.0 1991:1.0 2269:0.5 4234:1.0 4235:1.0 4236:1.0 4311:0.5 4710:1.0 4711:1.0 6613:1.0
16 5:0.07142857142857142 17:0.16666666666666666 31:0.09090909090909091 43:0.1 57:0.2 85:0.14285714285714285 91:1.0 125:0.5 162:1.0 411:1.0 767:1.0 2379:1.0 4377:1.0 4390:1.0 5902:1.0 5903:2.0 5904:1.0 5905:1.0 6867:1.0 6875:1.0
16 5:0.07142857142857142 12:0.25 48:0.3333333333333333 57:0.2 160:0.5 175:0.047619047619047616 370:0.5 439:0.3333333333333333 633:1.0 984:1.0 1450:1.0 5023:1.0
16 5:0.14285714285714285 12:0.25 17:0.3333333333333333 29:0.4 47:0.5 83:1.0 85:0.14285714285714285 91:1.0 94:1.0 111:1.0 147:0.2 172:0.5 227:1.0 271:0.3333333333333333 350:0.3333333333333333 475:0.14285714285714285 534:0.1111111111111111 619:1.0 775:1.0 1060:2.0 1157:0.3333333333333333 1177:1.0 2844:1.0 3471:0.5 4125:1.0 4217:0.2 4218:1.0 4447:0.5 5114:1.0
16 5:0.14285714285714285 17:0.16666666666666666 60:2.0 115:0.5 127:0.5 147:0.4 170:1.0 172:0.5 360:1.0 517:1.0 812:1.0 851:1.0 3723:1.0 4306:1.0 5059:0.5 6327:1.0
16 5:0.07142857142857142 29:0.2 38:0.125 66:1.0 175:0.047619047619047616 310:1.0 332:0.5 364:1.0 413:1.0 2920:0.5 3506:1.0 4068:1.0 4229:1.0 4620:1.0 5111:1.0
16 2:0.022222222222222223 5:0.07142857142857142 31:0.09090909090909091 57:0.2 80:1.0 85:0.14285714285714285 94:1.0 119:1.0 147:0.2 216:1.0 237:0.5 309:1.0 445:1.0 504:1.0 522:1.0 1060:1.0 1172:1.0 1312:0.5 1519:1.0 1585:1.0 1718:1.0 1865:1.0 2350:1.0 2432:1.0 2888:1.0 3471:0.5 4125:1.0 4289:1.0 4394:1.0 5059:1.0 5375:1.0 5878:1.0
16 2:0.06666666666666667 5:0.14285714285714285 20:0.5 37:0.14285714285714285 60:1.0 72:0.3333333333333333 85:0.14285714285714285 91:1.0 127:0.5 160:0.5 170:1.0 172:0.5 209:1.0 212:0.5 246:0.2 300:0.09090909090909091 351:0.3333333333333333 355:0.3333333333333333 380:1.0 398:1.0 507:1.0 509:1.0 1135:1.0 4125:1.0 6549:1.0
16 17:0.3333333333333333 60:1.0 104:1.0 119:0.5 142:0.1 161:1.0 264:1.0 306:1.0 426:0.2 432:0.5 475:0.14285714285714285 1268:0.25 1335:1.0 1524:1.0 2054:0.5 2296:0.5 2395:1.0 4125:1.0 4160:1.0 4235:1.0 5032:1.0 5111:1.0 5114:1.0 6396:1.0
16 1:0.2 12:0.5 17:0.16666666666666666 20:0.5 29:0.2 85:0.42857142857142855 110:0.125 142:0.1 216:1.0 237:0.5 350:0.3333333333333333 367:0.16666666666666666 702:0.5 951:0.3333333333333333 1060:1.0 1573:1.0 1921:1.0 2466:1.0 2775:1.0 2891:1.0 4000:1.0 4118:1.0 4125:1.0 4488:1.0 4608:1.0 5114:1.0
16 2:0.022222222222222223 5:0.07142857142857142 12:0.25 17:0.16666666666666666 29:0.4 38:0.0625 46:1.0 50:0.3333333333333333 51:0.14285714285714285 60:1.0 126:1.0 209:1.0 300:0.09090909090909091 329:1.0 332:0.5 364:1.0 546:1.0 1106:1.0 1287:1.0 1364:1.0 2325:1.0 3275:0.5 4068:1.0 4125:1.0 4127:1.0 4620:1.0 5032:1.0 5114:1.0 5385:1.0 6213:1.0
16 17:0.16666666666666666 24:1.0 29:0.2 31:0.09090909090909091 114:1.0 130:0.25 136:0.03125 289:1.0 300:0.09090909090909091 1296:1.0 1984:1.0 3047:1.0 5029:1.0 5111:1.0 5114:1.0
16 2:0.022222222222222223 5:0.2857142857142857 17:0.16666666666666666 19:1.0 57:0.2 85:0.2857142857142857 94:1.0 119:0.5 147:0.4 160:1.0 237:0.5 246:0.2 262:1.0 266:0.09090909090909091 321:1.0 389:0.5 446:1.0 632:1.0 927:1.0 957:1.0 1072:1.0 1073:0.6666666666666666 1153:0.3333333333333333 2459:1.0 2871:1.0 4113:0.125 4125:1.0 4138:1.0 4229:1.0 4324:1.0 4363:0.5 5078:1.0 5398:1.0 5556:1.0 6370:1.0 6725:1.0 7154:1.0 7200:1.0
16 5:0.07142857142857142 48:0.3333333333333333 57:0.2 60:2.0 85:0.2857142857142857 94:1.0 110:0.125 119:1.0 175:0.047619047619047616 367:0.08333333333333333 746:0.3333333333333333 747:1.0 1173:0.3333333333333333 1991:2.0 2871:1.0 4138:0.5 4168:2.0 4229:1.0 4363:0.5 4940:1.0
16 5:0.14285714285714285 12:0.25 17:0.3333333333333333 19:1.0 24:1.0 56:1.0 60:1.0 85:0.14285714285714285 119:0.5 170:1.0 445:1.0 902:1.0 1073:0.3333333333333333 1132:1.0 2296:0.5 2395:1.0 4033:1.0 4239:1.0 4363:0.5
16 5:0.07142857142857142 12:0.25 17:0.16666666666666666 60:1.0 110:0.125 332:0.5 746:0.3333333333333333 747:1.0 856:1.0 1200:1.0 2395:1.0 4125:1.0 4184:1.0 5170:1.0
16 2:0.044444444444444446 5:0.14285714285714285 17:0.16666666666666666 29:0.2 31:0.09090909090909091 42:1.0 57:0.2 66:1.0 81:1.0 85:0.14285714285714285 91:1.0 104:1.0 147:0.2 152:0.5 169:1.0 175:0.047619047619047616 213:1.0 237:0.5 270:0.5 309:1.0 351:0.3333333333333333 415:1.0 462:1.0 923:1.0 1063:1.0 1078:1.0 1102:1.0 1172:1.0 1190:0.6666666666666666 1308:0.3333333333333333 1654:1.0 1873:1.0 2366:1.0 3392:1.0 3940:1.0 4009:1.0 4113:0.125 4135:2.0 4164:1.0 4336:1.0 4338:1.0 4576:1.0 4769:1.0 4886:1.0 4983:1.0 6421:1.0 6530:1.0
16 1:0.2 2:0.06666666666666667 5:0.07142857142857142 17:0.16666666666666666 37:0.14285714285714285 38:0.0625 66:1.0 70:0.5 81:0.5 85:0.14285714285714285 119:0.5 142:0.2 147:0.4 172:0.5 213:1.0 246:0.2 264:1.0 306:1.0 341:1.0 475:0.14285714285714285 612:1.0 922:0.5 1063:1.0 1561:1.0 1847:1.0 1870:1.0 1908:1.0 1926:1.0 1933:1.0 2419:1.0 2459:1.0 2740:1.0 2871:1.0 3499:1.0 4838:1.0 5903:1.0 6621:1.0 7138:1.0 7189:1.0
16 5:0.21428571428571427 10:1.0 17:0.16666666666666666 29:0.4 31:0.18181818181818182 60:1.0 62:1.0 83:1.0 85:0.14285714285714285 91:1.0 130:0.25 132:0.3333333333333333 135:1.0 160:0.5 176:1.0 212:0.5 216:1.0 227:1.0 237:0.5 286:0.16666666666666666 319:1.0 465:0.5 641:1.0 661:1.0 974:1.0 1108:1.0 1289:1.0 1332:1.0 2682:1.0 3675:1.0 4138:0.5 4179:1.0 4259:1.0 5145:1.0 5553:2.0
16 5:0.07142857142857142 17:0.16666666666666666 29:0.2 31:0.09090909090909091 57:0.2 66:1.0 85:0.5714285714285714 119:0.5 132:0.3333333333333333 135:1.0 152:0.5 182:0.3333333333333333 227:1.0 237:0.5 246:0.4 262:1.0 288:0.5 347:1.0 388:1.0 469:0.3333333333333333 846:1.0 936:1.0 1108:1.0 1244:1.0 1659:0.5 2899:1.0 3228:1.0 3300:1.0 3441:1.0 4125:1.0 4611:1.0 4612:1.0 4613:1.0 4614:1.0 4615:1.0 5666:1.0 6411:1.0
16 17:0.16666666666666666 29:0.2 31:0.09090909090909091 32:1.0 42:1.0 47:0.5 57:0.4 72:0.3333333333333333 83:1.0 91:1.0 94:2.0 111:1.0 147:0.2 170:1.0 172:0.5 246:0.2 271:0.3333333333333333 300:0.09090909090909091 351:0.3333333333333333 475:0.14285714285714285 662:1.0 669:1.0 775:1.0 927:1.0 1244:1.0 1317:1.0 1320:1.0 2025:1.0 2382:1.0 4125:1.0 4134:0.5 4217:0.2 4218:1.0 4220:1.0 4447:0.5 5698:1.0
16 5:0.14285714285714285 17:0.3333333333333333 29:0.2 31:0.09090909090909091 47:0.5 60:2.0 81:0.5 83:1.0 85:0.2857142857142857 94:1.0 111:1.0 147:0.2 170:1.0 172:0.5 180:1.0 182:0.6666666666666666 227:1.0 237:0.5 271:0.3333333333333333 286:0.16666666666666666 310:1.0 313:1.0 321:1.0 462:1.0 475:0.2857142857142857 532:0.3333333333333333 534:0.1111111111111111 585:1.0 617:1.0 626:1.0 702:0.5 775:1.0 923:1.0 1092:1.0 1103:1.0 1177:1.0 1229:1.0 1991:1.0 3471:0.5 4113:0.125 4125:1.0 4217:0.2 4218:1.0 4219:1.0 4221:1.0
16 5:0.07142857142857142 12:0.25 60:1.0 65:1.0 85:0.2857142857142857 119:1.0 135:1.0 147:0.2 300:0.09090909090909091 332:0.5 351:0.3333333333333333 388:1.0 445:2.0 475:0.14285714285714285 527:0.25 585:1.0 702:0.5 971:1.0 1072:1.0 3052:1.0 7457:1.0
16 17:0.3333333333333333 24:1.0 28:1.0 29:0.2 60:1.0 147:0.2 170:1.0 266:0.18181818181818182 300:0.18181818181818182 310:1.0 332:0.5 445:1.0 475:0.14285714285714285 1060:1.0 1114:1.0 1624:1.0 1625:2.0 2395:1.0 3114:1.0 3447:0.5 4125:1.0 4614:1.0 4670:1.0 5029:1.0 7173:1.0
16 2:0.022222222222222223 5:0.07142857142857142 17:0.16666666666666666 29:0.2 42:1.0 44:1.0 51:0.14285714285714285 57:0.2 60:2.0 85:0.14285714285714285 130:0.25 135:2.0 160:0.5 189:0.25 216:1.0 222:0.09090909090909091 227:1.0 246:0.2 530:0.3333333333333333 1084:1.0 1482:1.0 1537:0.5 3161:1.0 3275:0.5 3931:1.0 3992:1.0 4170:0.5 4240:1.0 5023:1.0 5300:1.0 6863:1.0
16 5:0.07142857142857142 17:0.3333333333333333 18:0.5 29:0.4 57:0.2 85:0.14285714285714285 136:0.03125 172:0.5 216:1.0 223:0.5 230:0.3333333333333333 309:1.0 360:1.0 370:0.5 389:0.5 440:1.0 469:0.3333333333333333 575:1.0 739:1.0 797:1.0 1060:1.0 1149:1.0 1177:1.0 1971:1.0 2047:1.0 2560:1.0 2914:1.0 4170:0.5 4179:1.0 6284:1.0
16 2:0.044444444444444446 5:0.07142857142857142 6:1.0 12:0.25 24:1.0 29:0.2 47:0.5 84:0.5 132:0.3333333333333333 136:0.03125 142:0.1 160:0.5 173:1.0 174:1.0 176:1.0 182:0.3333333333333333 191:0.3333333333333333 194:0.16666666666666666 216:1.0 222:0.18181818181818182 246:0.2 376:1.0 406:1.0 418:0.3333333333333333 516:0.5 1092:1.0 1166:1.0 1573:1.0 2050:1.0 4138:0.5 4266:1.0 5066:1.0 5090:1.0 5127:1.0 7135:1.0
16 17:0.3333333333333333 29:0.2 57:0.2 70:0.5 110:0.125 147:0.2 152:0.5 170:1.0 172:0.5 237:0.5 266:0.09090909090909091 300:0.09090909090909091 319:1.0 475:0.14285714285714285 923:1.0 1060:1.0 2142:1.0 4311:0.5 5360:1.0
16 5:0.5 24:1.0 31:0.09090909090909091 43:0.1 51:0.2857142857142857 57:0.2 60:2.0 81:0.5 110:0.125 119:0.5 160:0.5 182:0.6666666666666666 198:1.0 277:1.0 350:0.3333333333333333 481:1.0 543:1.0 556:1.0 662:2.0 797:1.0 868:1.0 1072:1.0 1396:1.0 1416:1.0 2140:1.0 2416:1.0 2636:1.0 2797:1.0 2871:1.0 4121:1.0 4178:1.0 4352:1.0 5025:1.0 6638:1.0 6811:1.0 6878:1.0
16 2:0.022222222222222223 5:0.14285714285714285 17:0.16666666666666666 31:0.09090909090909091 33:1.0 50:0.6666666666666666 51:0.14285714285714285 57:0.2 94:1.0 150:0.5 160:0.5 264:1.0 351:0.3333333333333333 449:1.0 597:1.0 957:1.0 1165:1.0 1289:1.0 1858:1.0 4121:1.0 5048:1.0
16 2:0.022222222222222223 57:0.2 85:0.14285714285714285 91:1.0 182:0.3333333333333333 216:1.0 222:0.09090909090909091 293:0.25 310:1.0 501:0.5 773:1.0 828:1.0 2247:1.0 2279:1.0 2785:1.0 3869:1.0 5059:0.5 5114:1.0 5438:1.0 5607:1.0 6378:1.0
16 2:0.022222222222222223 5:0.14285714285714285 10:1.0 12:0.25 25:1.0 47:0.5 57:0.4 60:2.0 85:0.2857142857142857 123:1.0 127:0.5 146:1.0 147:0.2 173:1.0 209:1.0 222:0.18181818181818182 246:0.2 253:1.0 266:0.09090909090909091 432:0.5 445:1.0 527:0.5 546:1.0 667:1.0 670:0.5 1073:0.3333333333333333 1189:1.0 1220:1.0 1344:1.0 1397:1.0 4121:1.0 4138:0.5 4290:1.0 4363:0.5 4582:1.0 4640:2.0 4894:1.0 5023:1.0 6225:1.0
16 5:0.14285714285714285 29:0.2 43:0.1 57:0.2 58:0.5 60:1.0 72:0.3333333333333333 73:1.0 85:0.14285714285714285 119:0.5 147:0.2 160:0.5 175:0.047619047619047616 300:0.09090909090909091 662:1.0 2217:1.0 2925:1.0 4040:1.0 4121:1.0 4321:1.0 4353:1.0 5008:1.0 5154:1.0
16 2:0.022222222222222223 5:0.21428571428571427 12:0.25 17:0.3333333333333333 57:0.2 60:1.0 83:1.0 85:0.14285714285714285 94:1.0 160:0.5 172:0.5 237:0.5 300:0.09090909090909091 306:1.0 462:1.0 546:1.0 588:1.0 732:1.0 764:1.0 923:1.0 1874:1.0 2111:1.0 2466:1.0 3715:1.0 4040:1.0 4113:0.125 4125:1.0 4217:0.2 4338:1.0 4632:1.0 5154:1.0 6818:1.0 7090:1.0
16 12:0.5 17:0.16666666666666666 29:0.4 31:0.09090909090909091 43:0.1 50:0.3333333333333333 57:0.4 58:0.5 85:0.2857142857142857 91:1.0 93:0.5 94:2.0 130:0.25 132:0.3333333333333333 135:1.0 136:0.03125 142:0.1 147:0.4 152:0.5 172:0.5 316:0.3333333333333333 350:0.3333333333333333 367:0.08333333333333333 404:0.5 469:0.3333333333333333 617:1.0 649:1.0 906:1.0 1060:1.0 1157:0.3333333333333333 1519:1.0 1717:0.25 2194:0.5 4158:1.0 4159:1.0 4439:1.0 5435:1.0 5566:1.0 6860:1.0 7286:1.0
|
bf7e27acd9678cdd0220d6e0cec057dc66c86f07 | 6813325b126713766d9778d7665c10b5ba67227b | /Chapter7/Ch_7_Eg_7.11.sce | 40092ac0dec48b643775072611cdcb91b47c52bd | [] | no_license | arvindrachna/Introduction_to_Scilab | 955b2063b3faa33a855d18ac41ed7e0e3ab6bd1f | 9ca5d6be99e0536ba1c08a7a1bf4ba64620ec140 | refs/heads/master | 2020-03-15T19:26:52.964755 | 2018-05-31T04:49:57 | 2018-05-31T04:49:57 | 132,308,878 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,017 | sce | Ch_7_Eg_7.11.sce | // A Program to solve a system of equations using Gauss elimination method.
//Input:
// a = the coefficient matrix of the system of equations
// b = the right side constant vector of the system of equations
//Output:
// x= solution vector
//A function subprogram for the Gauss elimination method to solve the system of equations
function [x]=ak_Linear_System_Gauss_E(a, b)
try
Aug=[a,b];
n=length(b);
for j = 1:n -1
for i = j +1: n
Aug (i,j:n+1) = Aug (i,j:n +1) - Aug (i,j) / Aug(j,j) * Aug (j,j:n+1);
end
end
// Backward Substitution
x = zeros (n ,1) ;
x(n) = Aug(n,n +1) / Aug(n,n);
for i = n -1: -1:1
x(i) = (Aug(i,n +1) -Aug (i,i+1:n)*x(i +1: n))/ Aug (i,i);
end
catch
disp(lasterror());
x=[];
end
endfunction
//Main Program
a=[2 1 1;3 2 3;1 4 9];
b=[10;18;16];
[x] = ak_Linear_System_Gauss_E(a,b)
|
54ffe1f76161f44c3dab50242a3b0aafee5504b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1046/CH7/EX7.12/7_12.sce | 359d3c749b2037cac3628612156b1b9485008364 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 693 | sce | 7_12.sce | //Example 7.12
//calculate the time required for ball to cool down.
//Given
d=0.3 //m, diameter of steel sphere
Ti=800 //K, initial temp. of sphere
T2=303 //C,ambient temp.
T1=343 //C, final tempreture
rho=7801 //kg/m^3, density of steel
cp=0.473 //kj/kg C, specific heat of steel
//calculation
R=d/2 //m, radius of sphere
A1=4*%pi*R^2 //m^2, area of sphere
m=4/3*%pi*R^3*rho //m^3, mass of sphere
F12=1 //view factor
s=5.669*10^-8 //stephen Boltzman's constant
//-dT1/dt=A1*F12*s*(T^4-T2^4)/(m*cp)
I=integrate('(1/(T1^4-T2^4))','T1',343,800)
t=I/(A1*F12*s/(m*cp*10^3))
printf("The time required for the ball to cool is %f h",t/3600)
|
57abeb2a609ff4aacbc4090988ea289dc8b84d30 | 397456b742a46d88c251aa168bfe794903987f93 | /Virus Optimization Algorithm/standard/scilab/virus-oa.sce | 88afbcf8bc23220a0739cb5a8d5db624abc6df2e | [] | no_license | JonesCG/PROJECT-NIOA | b5dcc7820d818369a4115fbb34b0f7ba02d7a129 | 7e6a3aa9a5deda6aa4eec9f4d523556844593c8b | refs/heads/master | 2022-08-16T14:06:54.967718 | 2020-05-18T08:17:47 | 2020-05-18T08:17:47 | 264,872,793 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,584 | sce | virus-oa.sce |
clear
clc
exec('objective.sce');
// POPSIZE = 100
INSIZE = 50
DIM = 2
MAXITER = 50
UPPER = 100
LOWER = -100
NSTRONGV = 10
GRATESV = 8
GRATECV = 2
MAXPOP = 1000
IN = 1
disp("RUNNING...")
rand('seed',getdate('s'))
VIRUS = rand(INSIZE,DIM).*(UPPER-LOWER)+LOWER
FIT = F1(VIRUS)
[BESTFIT IND] = min(FIT)
GBESTPOS = VIRUS(IND,:)
GBESTFIT = BESTFIT
AV = mean(FIT)
xtitle("INITIALIZATION")
square(LOWER,LOWER,UPPER,UPPER)
plot(VIRUS(:,1),VIRUS(:,2),'b.')
plot(GBESTPOS(:,1),GBESTPOS(:,2),'g.')
xs2png(gcf(),'gif/voa/ITER0.png')
clf()
for ITER=1:MAXITER
//disp(ITER)
POPSIZE = size(VIRUS)(1)
[FIT SORTIND] = gsort(FIT,'lr','i')
VIRUS = VIRUS(SORTIND,:)
STRONGV = VIRUS(1:NSTRONGV,:)
COMV = VIRUS(NSTRONGV+1:POPSIZE,:)
RANDS = grand(NSTRONGV*GRATESV,DIM,'unf',-1,1)
RANDC = grand((POPSIZE-NSTRONGV)*GRATECV,DIM,'unf',-1,1)
REPSV = repmat(STRONGV,[GRATESV 1])
REPCV = repmat(COMV,[GRATECV 1])
VIRS = REPSV + (RANDS./IN).*REPSV
VIRC = REPCV + (RANDC).*REPCV
NEWVIRUS = [VIRS; VIRC]
NEWVIRUS = ammend(NEWVIRUS,UPPER,LOWER)
NEWFIT = F1(NEWVIRUS)
VIRUS = [VIRUS; NEWVIRUS]
FIT = [FIT; NEWFIT]
// ===================
xtitle("ITER "+string(ITER))
square(LOWER,LOWER,UPPER,UPPER)
plot(VIRUS(:,1),VIRUS(:,2),'b.')
plot(GBESTPOS(:,1),GBESTPOS(:,2),'g.')
xs2png(gcf(),'gif/voa/ITER'+string(ITER)+'_B.png')
clf()
// ========================
NAV = mean(FIT)
if NAV > AV
IN = IN + 1
end
AV = NAV
POPSIZE = size(VIRUS)(1)
AMT = round(rand()*(POPSIZE-NSTRONGV))
REMOVE_LOW = length(find(FIT>AV))
[FIT SORTIND] = gsort(FIT,'lr','i')
VIRUS = VIRUS(SORTIND,:)
if AMT <= REMOVE_LOW then
VIRUS = VIRUS(1:(POPSIZE-AMT),:)
FIT = FIT(1:(POPSIZE-AMT))
else
REMOVE_HI = AMT-REMOVE_LOW
INDPERM = grand(1,'prm',(NSTRONGV+1:(POPSIZE-REMOVE_LOW)))
INDREM = INDPERM(1:REMOVE_HI)
STORE = setdiff((1:(POPSIZE - REMOVE_LOW)),INDREM)
VIRUS = VIRUS(STORE,:,:)
FIT = FIT(STORE)
end
if size(VIRUS)(1) > MAXPOP
VIRUS = VIRUS(1:INSIZE,:)
FIT = FIT(1:INSIZE)
end
if FIT(1) < GBESTFIT
GBESTFIT = FIT(1)
GBESTPOS = VIRUS(1,:)
end
FITRUN(ITER) = GBESTFIT
//gcf().axes_size = [500 500]
xtitle("ITER "+string(ITER))
square(LOWER,LOWER,UPPER,UPPER)
plot(VIRUS(:,1),VIRUS(:,2),'b.')
plot(GBESTPOS(:,1),GBESTPOS(:,2),'g.')
xs2png(gcf(),'gif/voa/ITER'+string(ITER)+'_C.png')
clf()
end
//plot((1:MAXITER)',FITRUN,'c-')
disp('DONE')
|
9ddbd7b9a8972fc35e7eb88ece16cc07c247e503 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/dsimul.man.tst | fb642157e89bf497de1ab3af1c6c0635ba9fc682 | [
"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 | 176 | tst | dsimul.man.tst | clear;lines(0);
z=poly(0,'z');
h=(1-2*z)/(z^2-0.2*z+1);
sl=tf2ss(h);
u=zeros(1,20);u(1)=1;
x1=dsimul(sl,u) //Impulse response
u=ones(20,1);
x2=dsimul(sl,u); //Step response
|
26825d5d3fa351d775557693b03498a41cbbe35f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3257/CH5/EX5.3/Ex5_3.sce | 6df2ece5fd57ca41cef696c6d433a7131244d4f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex5_3.sce | // solidification time for various solid shapes
clc
n = 2
v = 1 // let
printf("\n Example 5.3")
A_cube = 6*(v^(1/3))^2// surface area of cube
A_cylinder = 6*%pi*((v/(2*%pi))^(1/3))^2 //surface area of cylinder
A_sphere = 4*%pi*((((3*v)/(4*%pi))^(1/3))^2)
K1 = 1/(A_sphere)^2 // proportional solidification time for sphere
K2 = 1/(A_cube)^2// proportional solidification time for cube
K3 = 1/(A_cylinder)^2// proportional solidification time for cylinder
printf("\n Respective time periods are as:")
printf("\n t_sphere: %.3fC \t t_cube = %.3fC \t t_cylinder = %.3fC",K1,K2,K3 )
|
17b1b44d8c642e5605a8a6b111f90fcee54d5301 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH10/EX10.31/10_31.sce | a1d27ac148b3d12b789755d68d48ea39445612d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,331 | sce | 10_31.sce | clear
clc
a=exp(%i *2*%pi/3)
Z1=complex(2.8,1)
Z2=complex(.1,.6)
V=400
E=V/sqrt(3)
Ia1=E/(Z1+Z2)
Ia2=-Ia1
Ia=Ia1+Ia2
Ib= (a^2-a)*Ia1
Ic=-Ib
disp( "Line Currents Ia, Ib, Ic, in amperes")
mprintf("\nIa= %s", string(round(abs(Ia)*10)/10) +'/_'+ string(0) )
mprintf("\nIb= %s", string(round(abs(Ib)*10)/10) +'/_'+ string(round(atand(imag(Ib)/real(Ib))*100)/100 -180) )
mprintf("\nIc= %s", string(round(abs(Ic)*10)/10) +'/_'+ string(round(atand(imag(Ic)/real(Ic))*100)/100) )
Va2=-Z2 * Ia2
Vaa=3*Va2
Van=(Z1*Ia1)+(Z2*Ia2)
Vcn=(a*Z1*Ia1)+(a*a*Z2*Ia2)
Vbn=(a*a*Z1*Ia1)+(a*Z2*Ia2)
VNn=Va2
mprintf("\n\n\nVaa= %s", string(round(abs(Vaa)*100)/100) +'/_'+ string(round(atand(imag(Vaa)/real(Vaa))*10)/10))
mprintf("\nVan= %s", string(round(abs(Van)*100)/100) +'/_'+ string(round(atand(imag(Van)/real(Van))*10)/10))//error in value substitution in textbook
mprintf("\nVbn= %s", string(round(abs(Vbn)*10)/10) +'/_'+ string(round(atand(imag(Vbn)/real(Vbn))*10)/10 -180))
mprintf("\nVcn= %s", string(round(abs(Vcn)*10)/10) +'/_'+ string(round(atand(imag(Vcn)/real(Vcn))*10)/10 +180)) //error in value substitution in textbook
mprintf("\nVNn= %s", string(round(abs(VNn)*100)/100) +'/_'+ string(round(atand(imag(VNn)/real(VNn))*10)/10))
disp("error is due to mistake in value substitution in textbook")
|
e65edf0d7749ccc43b22f06173676cb792bf1891 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3717/CH20/EX20.2/Ex20_2.sce | 876e9155bdaac5b1863e6d22cfc847cbc4109b35 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 784 | sce | Ex20_2.sce | // Ex20_2 Page:391 (2014)
clc;clear;
q = 1.6e-019; // Charge on an electron, C
e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
m = 1.67e-027; // Mass of a proton, kg
B = 2; // Applied magnetic field, T
R = 0.25; // Maximum radius of cyclotron, m
f = q*B/(2*%pi*m); // Frequency needed for applying alternating voltage, Hz
K = (q*B*R)^2/(2*m); // Kinetic energy of protons when they leave the cyclotron, J
printf("\nThe frequency needed for applying alternating voltage = %4.1f MHz", f/1e+006);
printf("\nThe kinetic energy of protons when they leave the cyclotron = %2d MeV", ceil(K/(e*1e+006)));
// Result
// The frequency needed for applying alternating voltage = 30.5 MHz
// The kinetic energy of protons when they leave the cyclotron = 12 MeV |
3dd6dc572c06400962165cc76e6b0b24b0a01d25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH5/EX5.4/Ex5_4.sce | fd1b65cb4e7496aa34c1db2161fc498d27aa9c97 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 625 | sce | Ex5_4.sce | clear ;
clc;
// Example 5.4
printf('Example 5.4\n\n');
printf('Page No. 117\n\n');
// given
T = 25;// in degree celcius
x = 0.96;// dryness fraction
m = 3.15;// Mass flow rate in kg/s
CV = 42.6*10^6;// Calorific value in J/kg
P = 15;// Pressure in bar
n = 0.8;// Efficiency
//from steam table
hL_1 = 843*10^3;// Specific enthalpy in J/kg
hL_2 = 293*10^3;// Specific enthalpy in J/kg
l_1 = 1946*10^3;// Latent heat of vapourisation at 70 degree celcius in J/kg
Q = m*((hL_1+(x*l_1))-hL_2);// in W
Q_Ac = Q/n// Actual heat required in Watts
Oil = Q_Ac/CV;
printf('The oil required is %.3f kg/s',Oil)
|
a4269842f1067766f94b7cabbe93b4a58d1a5aa8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH2/EX2.20/2_20.sce | 38ba8cf231f3d1b6af5689ce30a7e1f9da2646ea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 587 | sce | 2_20.sce | //To determine equivalent resistance using star-delta transformation
clc;
clear;
Rax=30;
Rcx=30;
Rac=30;
Ray=30;
Rcy=30;
// Delta to star conversion of the triangle CAX in the circuit
Rx=Rax*Rcx/(Rax+Rcx+Rac);
Ra=Rax*Rac/(Rax+Rcx+Rac);
Rc=Rac*Rcx/(Rax+Rcx+Rac);
R1=Ra+Ray;// Resistance from the common to Y of the upper limb
R2=Rc+Rcy;// Resistance from the common to Y of the lower limb
Reff=R1*R2/(R1+R2); // Effective resistance of both the limbs
Rxy=Rx+Reff; // Effective resistance across X and Y
printf('The Equivalent resistance = %g ohms\n',Rxy)
|
2e06b0e378e3747bd8749ef292212a52099184e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH4/EX4.13/Ch04Ex13.sce | c2e0ac17c8654de133e3a640459f139f52c6780e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 525 | sce | Ch04Ex13.sce | // Scilab Code Ex4.13 Page-200
clc;clear;
F = 50;....// Equivalent focal length of combination of two lenses, cm
//d = f1+f2/2, condition for no chromatic aberration....(1)
//d = f2-f1, condition for minimum spherical aberration....(2)
// From (1) and (2), f1 = 3*d/2, f2 = d/2
// As 1/F = 1/f1 + 1/f2 - d/(f1*f2), solving for d
d = 4/3*50; // Distance of separation betwen two lenses, cm
f1 = 3*d/2, f2 = d/2;
printf("\nf1 = %3d cm, f2 = %5.2f cm", ceil(f1), f2);
// Result
// f1 = 100 cm, f2 = 33.33 cm
|
a1f20f49d86ce2b42cd16d95547f0813a91a3761 | c5dae11f3b5d5afc4d5a934a18e4147788b72149 | /projects/11/JackCompiler/src/CompilationEngine/out/ConvertToBin/ConvertToBin.tst | d1ed748d6c35ef85a2f54a6f04c221f5462ddaf6 | [] | no_license | pszujewski/nand2tetris | 12e848a4a6ab8d7020a2a231e925aac125c0fc36 | 2ae5a029e85a2d62c8a4bd00509d1f6fb6c36efc | refs/heads/master | 2023-01-09T18:35:50.454112 | 2020-03-01T15:37:09 | 2020-03-01T15:37:09 | 164,849,599 | 0 | 0 | null | 2023-01-04T08:40:13 | 2019-01-09T11:23:38 | Hack | UTF-8 | Scilab | false | false | 41 | tst | ConvertToBin.tst | set RAM[8000] 23;
repeat {
vmstep;
} |
2569d20f57acc428c591510d6f823bbda2d63852 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1286/CH15/EX15.6/15_6.sce | e14fde6dda79f429be3729973b3d2a05c3f664ad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 359 | sce | 15_6.sce | clc
//initialisation
a1=2
a2=6
a3=16
a4=2
b1=1
b2=3
b3=4
b4=7
//CALCULATIONS
a=a1+a2+a3+a4
x=a1*b1+a2*b2+a3*b3+a4*b4
p2=a1/a
p6=a2/a
p16=a3/a
d=x/a
//results
printf(' \n probability of state 2= % 1f ',p2)
printf(' \n probability of state 6= % 1f ',p6)
printf(' \n probability of state 16= % 1f ',p16)
printf(' \n value of <x>= % 1f ',d)
|
27cfd003aa9988dcded80ffd0eef6d7b1562cbb4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH20/EX20.27/EX20_27.sce | 9c45d928137d50f4f32546357023847266385314 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 876 | sce | EX20_27.sce | clc;funcprot(0);//EXAMPLE 20.27
// Initialisation of Variables
ns=3;......//No of stages
p1=1.05;......//Intake pressure in bar
pd=40;..........//Delivery pressure in bar
V=3;..........//Volume of air xupplied per min in m^3
n=1.25;........//Compression index
//Calculations
Wd=((ns*n)/(n-1))*p1*V*10^5*(((pd/p1)^((n-1)/(ns*n)))-1);..........//Work done per min in Nm
disp(Wd,"Work done in Nm:")
isoWd=10^5*p1*V*log(pd/p1);..........//Isothermal work done in Nm
disp(isoWd,"Isothermal work done in Nm:")
etaiso=isoWd/Wd;...............//Isothermal efficiency
disp(etaiso*100,"Isothermal efficiency in %:")
wdss=((n)/(n-1))*p1*V*10^5*(((pd/p1)^((n-1)/(n)))-1);..........//Single stage Work done per min in Nm
disp(wdss,"Single stage work done per min in Nm:")
perws=(wdss-Wd)/wdss;.......//Percentage of work saved
disp(perws*100,"Percentage of work saved:")
|
08cae4f67d124e01dfbd947457a2c53262d82dd4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH14/EX14.4/14_4.sce | 38696186cbd7df036256d62f6818921a2a55e77c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 509 | sce | 14_4.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 14.4
//calculation of the force by which the surface on one side of the diameter pulls the suface on the other side
//given data
r=5*10^-2//radius(in m) of the beaker
S=.075//surface tension(in N/m) of the water
//calculation
l=2*r//length of diameter of the surface
F=S*l//force
printf('the force by which the surface on one side of the diameter pulls the suface on the other side is %3.1e N',F)
|
16f6fc5916e76659350a97e925a292ae7d32119f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1787/CH4/EX4.17/Exa4_17.sce | c83b9f93a63395d9fd8aad7818f3ea92da50e48f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 784 | sce | Exa4_17.sce | //Exa4.17
clc;
clear;
close;
//given data
Vin=20;//in volts
Rs=220;//in Kohm
Vz=10;//in volts
// part (i) RL=50;//in Kohm
disp("For RL=50ohm :");
RL=50;//in Kohm
VL=Vin*RL/(RL+Rs)
disp("Since voltage across load, VL is less than breakdown voltage of zener diode. Zener will not conduct.")
IR=Vin/(Rs+RL);//in mA
IL=IR;//in mA
IZ=0;//in mA
disp(VL,"VL in volt : ");
disp(IL*1000,"IL in mA :");
disp(IZ,"Iz in mA: ");
disp(IR*1000,"IR in mA :");
// part (ii) RL=200;//in Kohm
disp("For RL=200ohm : ")
RL=200;//in Kohm
VL=Vin*RL/(RL+Rs)
disp("voltage across load, if zener diode is open circuited.")
IR=Vin/(Rs+RL);//in mA
IL=IR;//in mA
IZ=0;//in mA
disp(VL,"VL in volt : ");
disp(IL*1000,"IL in mA :");
disp(IZ,"Iz in mA: ");
disp(IR*1000,"IR in mA :"); |
7bc7be93a5328ed735c06f17f26c020135ac36e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1583/CH9/EX9.7/PLLA_Ex_9_7.sce | 6fc84ffd1e522fa0aacab4e38eacaaf75cc3173a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 567 | sce | PLLA_Ex_9_7.sce | clc
//Chapter 9:Phase locked loop Analysis
//Example 9.7 page no 376
a=28//taking alpha as a
Ka=0.21*10^6
GF=20*log10(a)^1/2
disp(GF,'The value of gain is ')
disp('so we must determine where the uncompensated frequency response is -14.5dB ')
Wc=a^(1/4)*Ka^(1/2)
disp('The 28:1 lead ratio will increase the crossover frequency by a factor 2.3 The factor zero is placed at ')
Wz=Wc/sqrt(a)//systems zero
Wp=a*Wz//systems pole
mprintf('The crossover frequency is %3.2e rad/s \n The zero is placed at %d rad/s \n The pole is placed at %d rad/s ',Wc,Wz,Wp)
|
f354386530655252630741be62ba1da08399b586 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Valorant Dash Arena.sce | 0882309dcbfc3ae7d99a3faf5282533fe7859b8b | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 130,140 | sce | Valorant Dash Arena.sce | Name=Valorant Dash Arena
PlayerCharacters=player_valorant_char
BotCharacters=dash_arena_rot_a.rot;dash_arena_rot_b.rot;dash_arena_rot_c.rot
IsChallenge=true
Timelimit=60.0
PlayerProfile=player_valorant_char
AddedBots=dash_arena_rot_a.rot;dash_arena_rot_b.rot;dash_arena_rot_c.rot
PlayerMaxLives=1
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=dash_arena_offset.map
MapScale=7.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=0.0
ScorePerDamage=0.5
ScorePerKill=150.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=1.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Hybrid
WeaponHeroTag=AR PHANTOM, AR VANDAL
DifficultyTag=3
AuthorsTag=NFNT
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=Use Ability 1 [DASH] (Max charge: 3, reset when you kill an enemy) to Scenario to kill a human-shaped BOT (HP: 150).Weapons are like Valorant's AR (killing enemies resets the number of bullets).[weapon1: PHANTOM, weapon2: VANDAL]You may use whichever you like. However, the distance is attenuated with PHANTOM.Time limit is 60 seconds.The game ends when you get hit by a BOT 3 times. (1hit: -50 points)
GameVersion=2.0.1.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=8.0
MBSTime2Mult=9.0
MBSTime3Mult=10.0
MBSFBInstead=false
MBSRequireEnemyAlive=true
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=Aimgod
MinReactionTime=0.25
MaxReactionTime=0.25
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=90.0
FlickSpeed=10.0
FlickError=0.0
TrackSpeed=10.0
TrackError=0.0
MaxTurnAngleFromPadCenter=360.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=360.0
OuterAimPenalty=0.0
MaxError=0.0
ShootFOV=90.0
VerticalAimOffset=-50.0
MaxTolerableSpread=0.0
MinTolerableSpread=0.0
TolerableSpreadDist=100.0
MaxSpreadDistFactor=1.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=dash_arena_a_1
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_a_1
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_a_2
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_a_2
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_a_3
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_a_3
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_a_4
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_a_4
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_a_5
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_a_5
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_a_6
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_a_6
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_a_7
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_a_7
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_a_8
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_a_8
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_b_1
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_b_1
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_b_2
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_b_2
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_b_3
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_b_3
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_b_4
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_b_4
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_b_5
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_b_5
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_b_6
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_b_6
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_b_7
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_b_7
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_b_8
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_b_8
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_c_1
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_c_1
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_c_2
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_c_2
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_c_3
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_c_3
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_c_4
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_c_4
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_c_5
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_c_5
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_c_6
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_c_6
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_c_7
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_c_7
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=dash_arena_c_8
DodgeProfileNames=dash_arena_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=dash_arena_char_c_8
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Rotation Profile]
Name=dash_arena_rot_a
ProfileNames=dash_arena_a_1;dash_arena_a_2;dash_arena_a_3;dash_arena_a_4;dash_arena_a_5;dash_arena_a_6;dash_arena_a_7;dash_arena_a_8
ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
Randomized=false
[Bot Rotation Profile]
Name=dash_arena_rot_b
ProfileNames=dash_arena_b_1;dash_arena_b_2;dash_arena_b_3;dash_arena_b_4;dash_arena_b_5;dash_arena_b_6;dash_arena_b_7;dash_arena_b_8
ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
Randomized=false
[Bot Rotation Profile]
Name=dash_arena_rot_c
ProfileNames=dash_arena_c_1;dash_arena_c_2;dash_arena_c_3;dash_arena_c_4;dash_arena_c_5;dash_arena_c_6;dash_arena_c_7;dash_arena_c_8
ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
Randomized=false
[Character Profile]
Name=player_valorant_char
MaxHealth=150.0
WeaponProfileNames=AR PHANTOM;AR VANDAL;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Dash.abilmov;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_a_1
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_a_2
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-5341.0
SpawnYOffset=-4487.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_a_3
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-5334.0
SpawnYOffset=-6958.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_a_4
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-861.0
SpawnYOffset=-12068.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_a_5
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=1610.0
SpawnYOffset=-12068.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_a_6
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=6951.0
SpawnYOffset=-7805.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_a_7
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=6951.0
SpawnYOffset=-5341.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_a_8
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=2464.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_b_1
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-448.0
SpawnYOffset=-672.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_b_2
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-4669.0
SpawnYOffset=-4935.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_b_3
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-4662.0
SpawnYOffset=-7406.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_b_4
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-413.0
SpawnYOffset=-11396.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_b_5
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=2058.0
SpawnYOffset=-11396.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_b_6
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=6279.0
SpawnYOffset=-7357.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_b_7
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=6279.0
SpawnYOffset=-4893.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_b_8
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=2016.0
SpawnYOffset=-672.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_c_1
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-896.0
SpawnYOffset=-1344.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_c_2
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-3997.0
SpawnYOffset=-5383.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_c_3
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-3990.0
SpawnYOffset=-7854.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_c_4
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=-35.0
SpawnYOffset=-10724.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_c_5
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=2506.0
SpawnYOffset=-10724.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_c_6
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=5607.0
SpawnYOffset=-6909.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_c_7
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=5607.0
SpawnYOffset=-4445.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=dash_arena_char_c_8
MaxHealth=150.0
WeaponProfileNames=Arrow;;;;;;;
MinRespawnDelay=0.01
MaxRespawnDelay=0.01
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=1500.0
AirAcceleration=16000.0
Friction=10.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=4.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=28.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cuboid
ProjBBHeight=300.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=28.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=100.0
TerminalVelocity=0.0
CharacterModel=Endo
CharacterSkin=Default
SpawnXOffset=1568.0
SpawnYOffset=-1344.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=dash_arena_dodge
MaxTargetDistance=3000.0
MinTargetDistance=1000.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=1.0
MaxLRTimeChange=1.0
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.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=1.0
MaxCrouchTime=1.0
MinJumpTime=0.2
MaxJumpTime=0.4
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.25
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=true
[Weapon Profile]
Name=AR PHANTOM
Type=Hitscan
ShotsPerClick=1
DamagePerShot=39.0
KnockbackFactor=0.0
TimeBetweenShots=0.0909
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=250000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=0.9
ReloadTimeFromPartial=0.9
DamageFalloffStartDistance=15000.0
DamageFalloffStopDistance=50000.0
DamageAtMaxRange=31.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.2
ADSZoomSensFactor=1.0
ADSMoveFactor=0.8
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=120.000 Y=15.000 Z=-6.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=true
DecalType=1
DecalSize=25.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=AR PHANTOM ADS
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=5.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=0.9
PSRADSScale=0.8
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Valorant
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Asp
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=None
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Stud Gun
ParticleWallImpact=Fission Dealer
ParticleBodyImpact=Gunshot
ParticleProjectileTrail=
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=0.25
ParticleWallImpactScale=0.5
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.5,1.0,-1.0,1.0
SpreadSCA=0.5,1.0,-1.0,0.5
SpreadMSA=3.0,1.0,3.0,3.0
SpreadMCA=3.0,1.0,3.0,3.0
SpreadSSH=0.5,1.0,-1.0,1.0
SpreadSCH=0.5,1.0,-1.0,0.5
SpreadMSH=3.0,1.0,3.0,3.0
SpreadMCH=3.0,1.0,3.0,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.15
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.6
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=100.0
PSR0=0.45,0.0
PSR1=0.9,-0.23
PSR2=0.9,0.23
PSR3=1.13,-0.23
PSR4=1.13,0.45
PSR5=1.13,0.68
PSR6=1.13,0.45
PSR7=0.45,0.0
PSR8=-0.9,0.0
PSR9=0.45,-1.35
PSR10=0.45,-1.35
PSR11=-0.68,-0.68
PSR12=0.68,-0.68
PSR13=-0.68,0.45
PSR14=0.45,0.23
PSR15=-0.45,-0.23
PSR16=0.68,1.13
PSR17=-0.68,1.13
PSR18=1.13,1.13
PSR19=-1.13,0.68
PSR20=0.68,0.23
PSR21=-0.68,-0.23
PSR22=0.68,0.23
PSR23=-0.68,-0.23
PSR24=0.68,0.23
PSR25=-0.68,-1.58
PSR26=-0.68,-1.58
PSR27=0.68,-0.45
PSR28=0.68,-0.23
PSR29=0.0,0.23
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=AR VANDAL
Type=Hitscan
ShotsPerClick=1
DamagePerShot=39.0
KnockbackFactor=0.0
TimeBetweenShots=0.1081
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=250000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=25
AmmoPerShot=1
ReloadTimeFromEmpty=0.9
ReloadTimeFromPartial=0.9
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=39.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.2
ADSZoomSensFactor=1.0
ADSMoveFactor=0.8
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=120.000 Y=15.000 Z=-6.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=true
DecalType=1
DecalSize=25.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=AR VANDAL ADS
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=5.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=0.9
PSRADSScale=0.8
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Valorant
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Asp
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=None
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Stud Gun
ParticleWallImpact=Fission Dealer
ParticleBodyImpact=Gunshot
ParticleProjectileTrail=
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=0.5
ParticleWallImpactScale=0.5
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.5,1.0,-1.0,1.0
SpreadSCA=0.5,1.0,-1.0,0.5
SpreadMSA=3.0,1.0,3.0,3.0
SpreadMCA=3.0,1.0,3.0,3.0
SpreadSSH=0.5,1.0,-1.0,1.0
SpreadSCH=0.5,1.0,-1.0,0.5
SpreadMSH=3.0,1.0,3.0,3.0
SpreadMCH=3.0,1.0,3.0,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.15
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.6
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=100.0
PSR0=0.53,0.0
PSR1=1.05,-0.27
PSR2=1.32,0.27
PSR3=1.32,0.27
PSR4=1.05,0.53
PSR5=1.58,0.79
PSR6=1.58,0.79
PSR7=0.53,-0.53
PSR8=-1.05,-1.05
PSR9=0.53,-1.05
PSR10=-0.53,-1.05
PSR11=-0.79,-0.79
PSR12=0.79,-0.79
PSR13=-0.79,0.53
PSR14=0.53,0.27
PSR15=-0.53,-0.27
PSR16=0.79,1.32
PSR17=-0.79,1.32
PSR18=1.05,1.32
PSR19=-1.05,0.79
PSR20=0.79,0.53
PSR21=-0.79,-0.27
PSR22=1.05,-0.79
PSR23=-1.05,-1.32
PSR24=0.79,-1.32
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Arrow
Type=Projectile
ShotsPerClick=1
DamagePerShot=50.0
KnockbackFactor=5.0
TimeBetweenShots=0.1
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=-100.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=1
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=50.0
DelayBeforeShot=0.0
ProjectileGraphic=Rocket
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.5
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=5.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=2.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
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Blank
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Six Shooter
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=WaveBooster
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=0.5
Explosive=true
Radius=10.0
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=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=AR PHANTOM ADS
Type=Hitscan
ShotsPerClick=1
DamagePerShot=39.0
KnockbackFactor=0.0
TimeBetweenShots=0.101
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=250000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=0.9
ReloadTimeFromPartial=0.9
DamageFalloffStartDistance=15000.0
DamageFalloffStopDistance=50000.0
DamageAtMaxRange=31.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.2
ADSZoomSensFactor=1.0
ADSMoveFactor=0.8
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=120.000 Y=0.000 Z=-20.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=true
DecalType=1
DecalSize=25.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=5.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=0.9
PSRADSScale=0.8
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Valorant
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Asp
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=None
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Stud Gun
ParticleWallImpact=Fission Dealer
ParticleBodyImpact=Gunshot
ParticleProjectileTrail=
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=0.25
ParticleWallImpactScale=0.5
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.5,1.0,-1.0,1.0
SpreadSCA=0.5,1.0,-1.0,0.5
SpreadMSA=3.0,1.0,3.0,3.0
SpreadMCA=3.0,1.0,3.0,3.0
SpreadSSH=0.5,1.0,-1.0,1.0
SpreadSCH=0.5,1.0,-1.0,0.5
SpreadMSH=3.0,1.0,3.0,3.0
SpreadMCH=3.0,1.0,3.0,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.15
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.6
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=100.0
PSR0=0.45,0.0
PSR1=0.9,-0.23
PSR2=0.9,0.23
PSR3=1.13,-0.23
PSR4=1.13,0.45
PSR5=1.13,0.68
PSR6=1.13,0.45
PSR7=0.45,0.0
PSR8=-0.9,0.0
PSR9=0.45,-1.35
PSR10=0.45,-1.35
PSR11=-0.68,-0.68
PSR12=0.68,-0.68
PSR13=-0.68,0.45
PSR14=0.45,0.23
PSR15=-0.45,-0.23
PSR16=0.68,1.13
PSR17=-0.68,1.13
PSR18=1.13,1.13
PSR19=-1.13,0.68
PSR20=0.68,0.23
PSR21=-0.68,-0.23
PSR22=0.68,0.23
PSR23=-0.68,-0.23
PSR24=0.68,0.23
PSR25=-0.68,-1.58
PSR26=-0.68,-1.58
PSR27=0.68,-0.45
PSR28=0.68,-0.23
PSR29=0.0,0.23
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=AR VANDAL ADS
Type=Hitscan
ShotsPerClick=1
DamagePerShot=39.0
KnockbackFactor=0.0
TimeBetweenShots=0.1202
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=250000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=25
AmmoPerShot=1
ReloadTimeFromEmpty=0.9
ReloadTimeFromPartial=0.9
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=39.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.2
ADSZoomSensFactor=1.0
ADSMoveFactor=0.8
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=120.000 Y=0.000 Z=-20.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=true
DecalType=1
DecalSize=25.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=5.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=0.9
PSRADSScale=0.8
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=30
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Valorant
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Asp
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=None
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Stud Gun
ParticleWallImpact=Fission Dealer
ParticleBodyImpact=Gunshot
ParticleProjectileTrail=
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=0.5
ParticleWallImpactScale=0.5
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.5,1.0,-1.0,1.0
SpreadSCA=0.5,1.0,-1.0,0.5
SpreadMSA=3.0,1.0,3.0,3.0
SpreadMCA=3.0,1.0,3.0,3.0
SpreadSSH=0.5,1.0,-1.0,1.0
SpreadSCH=0.5,1.0,-1.0,0.5
SpreadMSH=3.0,1.0,3.0,3.0
SpreadMCH=3.0,1.0,3.0,3.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.15
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.6
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=100.0
PSR0=0.53,0.0
PSR1=1.05,-0.27
PSR2=1.32,0.27
PSR3=1.32,0.27
PSR4=1.05,0.53
PSR5=1.58,0.79
PSR6=1.58,0.79
PSR7=0.53,-0.53
PSR8=-1.05,-1.05
PSR9=0.53,-1.05
PSR10=-0.53,-1.05
PSR11=-0.79,-0.79
PSR12=0.79,-0.79
PSR13=-0.79,0.53
PSR14=0.53,0.27
PSR15=-0.53,-0.27
PSR16=0.79,1.32
PSR17=-0.79,1.32
PSR18=1.05,1.32
PSR19=-1.05,0.79
PSR20=0.79,0.53
PSR21=-0.79,-0.27
PSR22=1.05,-0.79
PSR23=-1.05,-1.32
PSR24=0.79,-1.32
UsePerBulletSpread=false
PBS0=0.0,0.0
[Movement Ability Profile]
Name=Dash
MaxCharges=3.0
ChargeTimer=3.0
ChargesRefundedOnKill=3.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.0
LockDirectionForDuration=true
NegateGravityForDuration=false
MainVelocity=19000.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
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=false
AIUseOutOfCombat=false
AIUseOnGround=false
AIUseInAir=false
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
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-1024.000000 0.000000 1920.000000
1024.000000 0.000000 1920.000000
1024.000000 0.000000 -128.000000
-1024.000000 0.000000 -128.000000
-1024.000000 -16.000000 1920.000000
1024.000000 -16.000000 1920.000000
1024.000000 -16.000000 -128.000000
-1024.000000 -16.000000 -128.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
512.000488 224.000000 640.000000
512.000366 224.000000 384.000000
256.000732 224.000000 384.000061
256.000732 224.000000 639.999756
512.000488 0.000000 640.000000
512.000366 0.000000 384.000000
256.000732 0.000000 384.000061
256.000732 0.000000 639.999756
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 224.000000 1408.000000
512.000000 224.000000 1408.000000
512.000000 224.000000 1152.000000
256.000000 224.000000 1152.000000
256.000000 0.000000 1408.000000
512.000000 0.000000 1408.000000
512.000000 0.000000 1152.000000
256.000000 0.000000 1152.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
-511.999817 224.000000 1152.000000
-511.999756 224.000000 1407.999878
-255.999878 224.000000 1408.000000
-256.000000 224.000000 1152.000122
-511.999817 0.000000 1152.000000
-511.999756 0.000000 1407.999878
-255.999878 0.000000 1408.000000
-256.000000 0.000000 1152.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
-255.999634 224.000000 384.000000
-511.999634 224.000000 384.000000
-511.999512 224.000000 639.999756
-255.999756 224.000000 639.999756
-255.999634 0.000000 384.000000
-511.999634 0.000000 384.000000
-511.999512 0.000000 639.999756
-255.999756 0.000000 639.999756
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
-1024.000000 272.000000 1920.000000
1024.000000 272.000000 1920.000000
1024.000000 272.000000 -128.000000
-1024.000000 272.000000 -128.000000
-1024.000000 256.000000 1920.000000
1024.000000 256.000000 1920.000000
1024.000000 256.000000 -128.000000
-1024.000000 256.000000 -128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_fullclip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_fullclip
brush
vertices
-256.000092 224.000000 -103.999992
-511.999725 224.000000 -103.999748
-511.999634 224.000000 384.000000
-255.999634 224.000000 384.000000
-256.000092 0.000000 -103.999992
-511.999725 0.000000 -103.999748
-511.999634 0.000000 384.000000
-255.999634 0.000000 384.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
-511.999634 224.000000 384.000000
-999.999634 224.000000 383.999786
-999.999878 224.000000 639.999756
-511.999512 224.000000 639.999756
-511.999634 0.000000 384.000000
-999.999634 0.000000 383.999786
-999.999878 0.000000 639.999756
-511.999512 0.000000 639.999756
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
-511.999634 224.000000 799.999939
-999.999634 224.000000 799.999878
-999.999878 224.000000 991.999878
-511.999542 224.000000 991.999695
-511.999634 0.000000 799.999939
-999.999634 0.000000 799.999878
-999.999878 0.000000 991.999878
-511.999542 0.000000 991.999695
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
-999.999817 224.000000 1152.000000
-999.999817 224.000000 1407.999878
-511.999725 224.000000 1407.999878
-511.999817 224.000000 1152.000000
-999.999817 0.000000 1152.000000
-999.999817 0.000000 1407.999878
-511.999695 0.000000 1407.999878
-511.999756 0.000000 1152.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
-511.999725 224.000000 1407.999878
-511.999725 224.000000 1896.000000
-255.999878 224.000000 1896.000000
-255.999878 224.000000 1408.000000
-511.999725 0.000000 1407.999878
-511.999695 0.000000 1896.000000
-255.999878 0.000000 1896.000000
-255.999878 0.000000 1408.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
-96.000000 224.000000 1896.000000
96.000000 224.000000 1896.000000
96.000000 224.000000 1408.000000
-96.000000 224.000000 1408.000000
-96.000000 0.000000 1896.000000
96.000000 0.000000 1896.000000
96.000000 0.000000 1408.000000
-96.000000 0.000000 1408.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 224.000000 1896.000000
512.000000 224.000000 1896.000000
512.000000 224.000000 1408.000000
256.000000 224.000000 1408.000000
256.000000 0.000000 1896.000000
512.000000 0.000000 1896.000000
512.000000 0.000000 1408.000000
256.000000 0.000000 1408.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
512.000000 224.000000 1408.000000
1000.000000 224.000000 1408.000000
1000.000000 224.000000 1152.000000
512.000000 224.000000 1152.000000
512.000000 0.000000 1408.000000
1000.000000 0.000000 1408.000000
1000.000000 0.000000 1152.000000
512.000000 0.000000 1152.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
512.000000 224.000000 992.000000
1000.000000 224.000000 992.000000
1000.000000 224.000000 800.000000
512.000000 224.000000 800.000000
512.000000 0.000000 992.000000
1000.000000 0.000000 992.000000
1000.000000 0.000000 800.000000
512.000000 0.000000 800.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
1000.000427 224.000000 639.999512
1000.000244 224.000000 384.000000
512.000366 224.000000 384.000000
512.000488 224.000000 640.000000
1000.000427 0.000000 639.999512
1000.000244 0.000000 384.000000
512.000366 0.000000 384.000000
512.000488 0.000000 640.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
512.000366 224.000000 384.000000
512.000732 224.000000 -104.000046
256.000641 224.000000 -104.000275
256.000732 224.000000 384.000061
512.000366 0.000000 384.000000
512.000732 0.000000 -104.000046
256.000641 0.000000 -104.000275
256.000732 0.000000 384.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
95.999992 224.000000 -103.999977
-95.999641 224.000000 -103.999748
-95.999634 224.000000 384.000000
96.000366 224.000000 384.000031
95.999992 0.000000 -103.999977
-95.999641 0.000000 -103.999748
-95.999634 0.000000 384.000000
96.000366 0.000000 384.000031
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
-1016.000000 256.000000 -104.000000
1016.000000 256.000000 -104.000000
1016.000000 256.000000 -120.000000
-1016.000000 256.000000 -120.000000
-1016.000000 -16.000000 -104.000000
1016.000000 -16.000000 -104.000000
1016.000000 -16.000000 -120.000000
-1016.000000 -16.000000 -120.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
-1016.000000 256.000000 -120.000015
-1015.999634 256.000000 1911.999512
-1000.000122 256.000000 1911.999756
-1000.000000 256.000000 -119.999992
-1016.000000 -16.000000 -120.000015
-1015.999634 -16.000000 1911.999512
-1000.000122 -16.000000 1911.999756
-1000.000000 -16.000000 -119.999992
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
-1016.000000 256.000000 1912.000000
1016.000000 256.000000 1912.000000
1016.000000 256.000000 1896.000000
-1016.000000 256.000000 1896.000000
-1016.000000 -16.000000 1912.000000
1016.000000 -16.000000 1912.000000
1016.000000 -16.000000 1896.000000
-1016.000000 -16.000000 1896.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
1016.000000 256.000000 1912.000000
1016.000000 256.000000 -120.000244
1000.000122 256.000000 -120.000008
999.999939 256.000000 1911.999878
1016.000000 -16.000000 1912.000000
1016.000000 -16.000000 -120.000244
1000.000122 -16.000000 -120.000008
999.999939 -16.000000 1911.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 32.000000 1104.000000
-512.000000 32.000000 1104.000000
-512.000000 32.000000 1040.000000
-528.000000 32.000000 1040.000000
-528.000000 0.000000 1104.000000
-512.000000 0.000000 1104.000000
-512.000000 0.000000 1040.000000
-528.000000 0.000000 1040.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
144.000000 32.000000 1424.000000
208.000000 32.000000 1424.000000
208.000000 32.000000 1408.000000
144.000000 32.000000 1408.000000
144.000000 0.000000 1424.000000
208.000000 0.000000 1424.000000
208.000000 0.000000 1408.000000
144.000000 0.000000 1408.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
512.000000 32.000000 752.000000
528.000000 32.000000 752.000000
528.000000 32.000000 688.000000
512.000000 32.000000 688.000000
512.000000 0.000000 752.000000
528.000000 0.000000 752.000000
528.000000 0.000000 688.000000
512.000000 0.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
-208.000000 32.000000 384.000000
-144.000000 32.000000 384.000000
-144.000000 32.000000 368.000000
-208.000000 32.000000 368.000000
-208.000000 0.000000 384.000000
-144.000000 0.000000 384.000000
-144.000000 0.000000 368.000000
-208.000000 0.000000 368.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 16.000000 992.000000
511.999847 16.000000 991.999878
512.000122 16.000000 1151.999878
528.000244 16.000000 1151.999878
528.000000 0.000000 992.000000
511.999878 0.000000 991.999878
512.000122 0.000000 1151.999878
528.000244 0.000000 1151.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 16.000000 384.000000
256.000122 16.000000 367.999847
96.000160 16.000000 368.000061
96.000122 16.000000 384.000244
256.000000 0.000000 384.000000
256.000122 0.000000 367.999847
96.000160 0.000000 368.000061
96.000122 0.000000 384.000244
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 16.000000 800.000000
-512.000000 16.000000 800.000000
-512.000000 16.000000 640.000000
-528.000000 16.000000 640.000000
-528.000000 0.000000 800.000000
-512.000000 0.000000 800.000000
-512.000000 0.000000 640.000000
-528.000000 0.000000 640.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 16.000000 1408.000000
-256.000305 16.000000 1424.000000
-96.000061 16.000000 1423.999756
-96.000122 16.000000 1407.999756
-256.000000 0.000000 1408.000000
-256.000305 0.000000 1424.000000
-96.000061 0.000000 1423.999756
-96.000122 0.000000 1407.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
144.000000 32.000000 623.999756
144.000122 32.000000 639.999573
208.000153 32.000000 639.999695
208.000122 32.000000 623.999756
144.000000 0.000000 623.999756
144.000122 0.000000 639.999573
208.000153 0.000000 639.999695
208.000122 0.000000 623.999756
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
-96.000000 224.000000 1008.000000
96.000000 224.000000 1008.000000
96.000000 224.000000 800.000000
-96.000000 224.000000 800.000000
-96.000000 0.000000 1008.000000
96.000000 0.000000 1008.000000
96.000000 0.000000 800.000000
-96.000000 0.000000 800.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
-96.000000 224.000000 1280.000000
96.000000 224.000000 1280.000000
96.000000 224.000000 1008.000000
-96.000000 224.000000 1008.000000
-96.000000 0.000000 1280.000000
96.000000 0.000000 1280.000000
96.000000 0.000000 1008.000000
-96.000000 0.000000 1008.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
-384.000000 224.000000 992.000000
-96.000000 224.000000 992.000000
-96.000000 224.000000 800.000000
-384.000000 224.000000 800.000000
-384.000000 0.000000 992.000000
-96.000000 0.000000 992.000000
-96.000000 0.000000 800.000000
-384.000000 0.000000 800.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
96.000000 224.000000 992.000000
384.000000 224.000000 992.000000
384.000000 224.000000 800.000000
96.000000 224.000000 800.000000
96.000000 0.000000 992.000000
384.000000 0.000000 992.000000
384.000000 0.000000 800.000000
96.000000 0.000000 800.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
-96.000000 224.000000 800.000000
96.000000 224.000000 800.000000
96.000000 224.000000 512.000000
-96.000000 224.000000 512.000000
-96.000000 0.000000 800.000000
96.000000 0.000000 800.000000
96.000000 0.000000 512.000000
-96.000000 0.000000 512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 32.000000 1168.000366
-144.000183 32.000000 1152.000122
-208.000183 32.000000 1152.000000
-208.000153 32.000000 1168.000122
-144.000000 0.000000 1168.000366
-144.000183 0.000000 1152.000122
-208.000183 0.000000 1152.000000
-208.000153 0.000000 1168.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
256.000000 32.000000 1104.000000
272.000275 32.000000 1103.999756
272.000000 32.000000 1039.999878
255.999908 32.000000 1039.999878
256.000000 0.000000 1104.000000
272.000275 0.000000 1103.999756
272.000000 0.000000 1039.999878
255.999908 0.000000 1039.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
-272.000000 32.000000 752.000000
-256.000000 32.000000 752.000000
-256.000000 32.000000 688.000000
-272.000000 32.000000 688.000000
-272.000000 0.000000 752.000000
-256.000000 0.000000 752.000000
-256.000000 0.000000 688.000000
-272.000000 0.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
256.000000 96.000000 384.000000
256.000122 96.000000 367.999847
96.000160 96.000000 368.000061
96.000122 96.000000 384.000244
256.000000 16.000000 384.000000
256.000122 16.000000 367.999847
96.000160 16.000000 368.000061
96.000122 16.000000 384.000244
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 96.000000 800.000000
-511.999878 96.000000 799.999939
-512.000000 96.000000 639.999939
-528.000244 96.000000 639.999939
-528.000000 16.000000 800.000000
-511.999878 16.000000 799.999939
-512.000000 16.000000 639.999939
-528.000244 16.000000 639.999939
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 96.000000 1408.000000
-255.999817 96.000000 1424.000488
-95.999908 96.000000 1424.000244
-95.999939 96.000000 1408.000000
-256.000000 16.000000 1408.000000
-255.999817 16.000000 1424.000488
-95.999908 16.000000 1424.000244
-95.999939 16.000000 1408.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 96.000000 992.000000
511.999573 96.000000 992.000244
511.999634 96.000000 1152.000244
528.000000 96.000000 1152.000366
528.000000 16.000000 992.000000
511.999573 16.000000 992.000244
511.999634 16.000000 1152.000244
528.000000 16.000000 1152.000366
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 94.000000 0.000000 447.000000
Vector3 angles -90.000000 0.000000 0.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position -115.000000 0.000000 18.000000
Vector3 angles -1080.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
778eb457fc7b8ba5fc98963251d9b28b21e0f58c | eda05fd80fa0cc934521fdcf2134f4d3d47fb1ad | /Metodos-Numericos/Metodos-Numericos-master/gaussElimination.sce | 0c7a273aa287d4caaa5b3aa45f22a686080fc554 | [] | no_license | astramissa235/metodos-numericos-2021-21111 | 19193ded6e3189a72d96b276c177fd449397346e | d8e470e90d45172134f7ab269f5979e30dab6502 | refs/heads/main | 2023-06-08T13:47:06.409992 | 2021-06-29T04:37:38 | 2021-06-29T04:37:38 | 381,237,961 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,574 | sce | gaussElimination.sce | //Gauss Elimination
/*
2x +y -z = 8
-3x -y +2z = -11
-2x +y +2z = -3
*/
ecuationMatrixLeftSide = [2 1 -1; -3 -1 2; -2 1 2]
ecuationMatrixRigthSide = [8;-11;-3]
solutions = []
//Build Augmented Matrix and extract row and column sizes
augmentedMatrix = [ecuationMatrixLeftSide ecuationMatrixRigthSide]
[augmentedMatrixRowSize augmentedMatrixColSize] = size(augmentedMatrix)
//Show the Augmented Matrix that was built
disp("Augmented Matrix")
disp(augmentedMatrix)
//Gaussian Elimination of variables over augmented Matrix to reduce it
for p = 1:1:augmentedMatrixRowSize-1
pivot = augmentedMatrix(p,p);
for i = p+1: 1: augmentedMatrixRowSize
primFila = augmentedMatrix(i,p)
augmentedMatrix(i, :) = augmentedMatrix(i, :) - (augmentedMatrix(p, :)/pivot)*primFila
end
end
//Show the reduced Augmented matrix obtained
disp("Reduced Augmented Matrix")
disp(augmentedMatrix)
//Substition to find solutions to the ecuation system
solutions(augmentedMatrixRowSize) = augmentedMatrix(augmentedMatrixRowSize, augmentedMatrixColSize)/augmentedMatrix(augmentedMatrixRowSize, augmentedMatrixColSize-1)
for i = augmentedMatrixRowSize-1: -1: 1
s = augmentedMatrix(i, augmentedMatrixColSize)
for j = augmentedMatrixRowSize: -1: i
s = s - augmentedMatrix(i, j)*solutions(j)
end
solutions(i) = s/augmentedMatrix(i, i)
end
//Accumulate variable solutions to the ecuation system
sol = ""
for i = 1: augmentedMatrixRowSize
sol = sol +" var" + string(i) + " = " + string(solutions(i)) +","
end
disp("Ecuation Solutions")
disp(sol)
|
1a74e821c19da8b7fda97ebf36d4787e18509f3c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH32/EX32.33/Ex32_33.sce | 47bdc4cb15790676175d5eaa4d9cd9227d61df36 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,365 | sce | Ex32_33.sce | // Example 32_33
clc;funcprot(0);
//Given data
L_cap=100;// MW
// n=0.4*L;(given)
L=[20 80 30];// MW
T=[0 8 16 24];// Time in hours
CV=35;// MJ/kg
C=2;// Coal cost in Rs./kg
Sc=2.5;// Rs./kWh
n_com=95/100;// Combustion efficiency
// Calculation
E=(L(1)*(T(2)-T(1)))+(L(2)*(T(3)-T(2)))+(L(3)*(T(4)-T(3)));// Total energy consumed a day in MWh
L_a=E/24;// Average load of the plant in MW
L_max=80;// MW
LF=L_a/L_max;
CF=L_a/L_cap;
// Outputs
O_1=(L(1)*(T(2)-T(1)));// MWh
n_1=0.4*(L(1)/100);
I_1=O_1/n_1;// MWh
O_2=(L(2)*(T(3)-T(2)));// MWh
n_2=0.4*(L(2)/100);
I_2=O_2/n_2;// MWh
O_3=(L(3)*(T(4)-T(3)));// MWh
n_3=0.4*(L(3)/100);
I_3=O_3/n_3;// MWh
I=(I_1+I_2+I_3)*10^3;// Total input in MWh
m_f=(I*3600)/(CV*10^3*n_com*24);// kg/hr
m_f=(m_f*24)/10^3;// tons/day
Cf=m_f*10^3*C;// The cost of fuel in Rs./day
Mg=E*10^3*Sc;// The money gained by selling the energy generated in rupees
Pr=(Mg-Cf);// Profit gained during the day in rupees/day
n_o=(E/(I/10^3))*100;// The overall efficiency of the plant in %
printf('\n(a)The load factor of the plant=%0.2f \n The capacity factor of the plant=%0.3f \n(b)The fuel consumed in tonnes per day=%0.1f tons/day \n(c)Profit gained by the plant=%0.0e rupees/day \n(d)The overall efficiency of the plant=%0.2f percentage',LF,CF,m_f,Pr,n_o);
// The answer provided in the textbook is wrong
|
de4fbcf061bf92e522783b747fdd308263258f64 | cd3baacb9aa523e8ac4f10406c5fb62c9c60998a | /gate/MyNot.tst | c3e2ccfcdcb42e871b4a6beef7d9b4f97b07f8cd | [] | no_license | wangkekekexili/cuddly-octo-pancake | f8bbebc043417af9662712de610b390f062545f8 | 67b3d4c3d15c5877644221b6d987dd911101d013 | refs/heads/master | 2023-03-06T12:49:54.668374 | 2021-02-14T14:53:07 | 2021-02-14T14:53:07 | 338,038,595 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 121 | tst | MyNot.tst | load MyNot.hdl,
output-file MyNot.out,
output-list in%B3.1.3 out%B3.1.3;
set in 0, eval, output;
set in 1, eval, output;
|
9fef511a7551a12ea98e863c11fe2bab01fb8bee | 449d555969bfd7befe906877abab098c6e63a0e8 | /647/CH9/EX9.14/Example9_14.sce | 1bce40b590d5769e647029b2fdad75da16a07155 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 606 | sce | Example9_14.sce | clear;
clc;
// Example: 9.14
// Page: 357
printf("Example: 9.14 - Page: 357\n\n");
// Solution
//*****Data******//
b = 0.0391;// [cubic dm/mol]
P1 = 1000;// [atm]
T = 1000 + 273;// [K]
R = 0.0892;// [L bar/K mol]
deff('[Vreal] = f1(P)','Vreal = R*T/P + b');
deff('[Videal] = f2(P)','Videal = R*T/P');
//**************//
// We know that:
// RTlog(f/P) = integral('Vreal - Videal',P,0,P)
f = P1*exp((1/(R*T))*integrate('f1(P) - f2(P)','P',0,P1));// [atm]
phi = f/P1;
printf("The fugacity of the gas is %d atm \n",f);
printf("The fugacity coeffecient of the gas is %.3f atm",phi); |
4b16df9f721c25f09301f35b67a8bdd0a3917fc3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3492/CH3/EX3.6/Ex3_6.sce | fa3c5219ec3712792ebd4e8f66e67b669b36d0af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 518 | sce | Ex3_6.sce | clc
//Chapter3
//Ex_6
//Given
h=6.6*10^-34 //in J s
c=3*10^8 //in m/s
n=1
m=0.1 //in Kg
a=1 //in m
E1=(h^2*n^2)/(8*m*a^2)
v=sqrt(2*E1/m)
disp(v,"Minimum speed of the object in m/s")
//calculation of quantum number n
v=1 //in m/s
E_n=m*v^2/2
n=sqrt((8*m*a^2*E_n)/h^2)
disp(n,"Quantum number if the object is moving with a minimum speed of 1m/s is")
delta_E=(h^2/(8*m*a^2))*(2*n+1) //delta_E=E_n+1-En
disp(delta_E,"Separation of energy levels of the object moving with speed of 1 m/s in Joules is ")
|
46306525a94e2764a2dde0d2437243539e375bf0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3814/CH5/EX5.7/Ex5_7.sce | 57da720ce52fb2a0999f01146b38dbfc623feb92 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 889 | sce | Ex5_7.sce |
// to find flow rate wheel diameter of each jet
// ex 5.7 pgno.121
clc
p=4.5e6 //pelton wheel develop
no=0.8 // wheel diameter
g=9800 //gravitional acceleration
h=120 //head loss
g1=9.8
p1=1000 // over all efficiency
N=200 // rotational speed
Q=p/(no*g*h) // flow rate
mprintf('\n overall efficiency no= %f m3/s',Q)
v1=sqrt(2*9.8*h) // velocity of the jet
mprintf('\n velocity of jet =%f m/s',v1)
u=v1*0.42 // peripherial velocity
mprintf('\n u =%f m/s',u)
N=200 // speed
D=(60*u)/(%pi*N) // diameter of the jet
mprintf('\n D =%f m',D)
d=D/8 // to find diameter
mprintf('\n diameter of jet = %f meter',d) // to display diameter
n=(Q*4)/(%pi*d*d*v1) // to calculate jets
mprintf('\n number of jets n = %d',n) // to display number of jets
w=(2*N*%pi)/60 // to calculate speed
wt=w*(((p/p1)^0.5)/((g1*h)^(5/4))) // specific speed
mprintf('\n wt =%f RPM',wt)
|
20e8f3a42484521ef28532db544e18212c03c7a9 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/send_email_ip_pw.sce | fe203008b9f4ee3b0d3c80f2f2bb60fd0586d3da | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 2,006 | sce | send_email_ip_pw.sce | global email_id_string email_pw_string chip_num email_name fname;
fsendemail=figure('figure_position',[800,400],'figure_size',[250,200],'auto_resize','on','background',[12],'figure_name','Send Email ID & PW');
delmenu(fsendemail.figure_id,gettext('File'))
delmenu(fsendemail.figure_id,gettext('?'))
delmenu(fsendemail.figure_id,gettext('Tools'))
delmenu(fsendemail.figure_id,gettext('Edit'))
toolbar(fsendemail.figure_id,'off')
handles.dummy = 0;
handles.email_id=uicontrol(fsendemail,'unit','normalized','BackgroundColor',[1,1,1],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[14],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.15,0.70,0.7,0.2],'Relief','flat','SliderStep',[0.01,0.1],'String','Email address','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','email_id','Callback','email_id_callback(handles)');
handles.email_pw=uicontrol(fsendemail,'unit','normalized','BackgroundColor',[1,1,1],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[14],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.15,0.4,0.7,0.2],'Relief','flat','SliderStep',[0.01,0.1],'String','Password','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','email_pw','Callback','email_pw_callback(handles)');
handles.Send=uicontrol(fsendemail,'unit','normalized','BackgroundColor',[0.27,0.5,0.7],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[14],'FontUnits','points','FontWeight','bold','ForegroundColor',[1,1,1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.35,0.1,0.3,0.2],'Relief','flat','SliderStep',[0.01,0.1],'String','Send','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Send','Callback','id_pw_send_email(handles)');
|
acc59e56e5a9f3cbc57ad8e12a5e53c65c983dfa | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH3/EX3.9/ex3_9.sce | 2165230fa9dc7eba5fcf5848ba694af173740ba5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 219 | sce | ex3_9.sce | //Example 3.9
//arithmetic expression evaluation 2*((i % 5)*(4+(j-3)/ (k+2)))
i=8;
j=15;
k=4;
u=modulo(i,5);
v=4+(j-3)/(k+2);
w=2*(u*v);
printf("\n w = 2*(modulo(i , 5)*(4+(j-3)/ (k+2))) = %d \n",w); |
42be4d7840c50cfd122c4dc5e10d819230cc2d87 | f5bb6b6e5afdd322c5cd22aa132ef6cd9671b83e | /GaussSeidel.sce | 371e56016060f0e13969fed36607d47fdbfdc651 | [] | no_license | MEGCHICHEFarid/Calcul_Num-rique-TP2 | b47cb66cc2c7b8ed7b5dad7992ee03dc8e0ca98f | 121a72c376848daf12d0d81ec628572a2ea573cd | refs/heads/main | 2023-01-30T23:20:31.667199 | 2020-12-18T23:56:13 | 2020-12-18T23:56:13 | 322,196,749 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 455 | sce | GaussSeidel.sce |
function [x, relres, it] = GaussSeidel(A,b,tol,maxit)
n = size(A,1);
x0 = zeros(n,1);
normb = norm(b);
resvec = zeros(maxit,1);
res = b-A*x0;
relres = norm(res)/normb;
DmE = 1 / tril(A);
quali = zeros(maxit,1);
it = 0;
while (relres > tol) & (it < maxit)
it = it + 1;
x = DmE\res;
x0 = x + x0;
res = b-A*x0;
relres = norm(res)/normb;
resvec(it) = relres;
end
endfunction
|
48ddfebc94ebfce4d4c5aed4c3288fce13b8028c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH10/EX10.6/10_6.sce | e69a143cc3f2b9400b50a8c3bdd356f4c20eece2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 10_6.sce | clear
clc
I=[
5*exp(%i * %pi * 60 / 180)
5*exp(%i * %pi * -60 / 180)
0
]
a=exp(%i * 2 * %pi/3)
A=[1 1 1
1 a^2 a
1 a a^2
]
Is=inv(A)*I
mprintf("\nIa0= %s", string(round(abs(Is(1))*1000)/1000) +'/_'+ string(round(atand(imag(Is(1))/real(Is(1)))*100)/100) )
mprintf("\nIa1= %s", string(round(abs(Is(2))*1000)/1000) +'/_'+ string(round(atand(imag(Is(2))/real(Is(2)))*100)/100) )
mprintf("\nIa2= %s", string(round(abs(Is(3))*1000)/1000) +'/_'+ string(round(atand(imag(Is(3))/real(Is(3)))*100)/100 +180) )
|
ff69e0c1a3d779a41e154bdf51e79ee9edf727f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2990/CH6/EX6.3/Ex6_3.sce | 7fa07f418cf632d76ad06605b11e69c931b5d410 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 473 | sce | Ex6_3.sce |
clc; funcprot(0);
// Initialization of Variable
f=0.150 //focal length in m
h1=1500.0;//elevation A in m
h2=1200.0;//elevation B in m
h3=1000.0;//elevation C in m
H=3000.0;//height in m
//calculstion
hav=1.0/3*(h1+h2+h3);
S1=f/(H-h1);
disp(1/S1,"scale of point 1 in 1 in");
S2=f/(H-h2);
disp(1/S2,"scale of point 2 in 1 in");
S3=f/(H-h3);
disp(round(1/S3),"scale of point 3 in 1 in");
Sav=f/(H-hav);
disp(round(1/Sav),"average scale in 1 in");
clear()
|
b09bb9b8a5166244fbf29f4b9fdadf3dee538311 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2519/CH19/EX19.10/Ex19_10.sce | 0d2e3ccd302c6918dda2426796ce3b96a452e208 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 417 | sce | Ex19_10.sce | clc
clear
//Initialization of variables
em=0.79
sigma=0.1714
T1=660 //R
T2=540 //R
T3=860 //R
//calculations
Q1=em*sigma*((T1/100)^4 -(T2/100)^4)
Q2=em*sigma*((T3/100)^4 -(T2/100)^4)
Qh1=129+Q1
Qh2=419+Q2
per=100*(Qh2-Qh1)/Qh1
//results
printf("Percentage change in total heat trasnfer = %.1f percent",per)
disp("The answer in the textbook is a bit different due to rounding off error in textbook.")
|
182c2a96f7a835b0af5a2d475f0b6017be58a27d | 449d555969bfd7befe906877abab098c6e63a0e8 | /839/CH16/EX16.3/Example_16_3.sce | 53e78a4aaab0ac330c95bc3d9ce3bae663af86fd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 614 | sce | Example_16_3.sce | //clear//
clear;
clc;
//Example 16.3
//Given
mdot_ft = 60000; //[lb/h]
xin = 0.10;
Tin = 180; //[F]
xout = 0.50
Ps = 50; //[lbf/in.^2]
Tc = 100; //[F]
//Solution
//From Table 16.2
U1 = 700; //[Btu/ft^2-h-F]
U2 = 1000; //[Btu/ft^2-h-F]
U3 = 800; //[Btu/ft^2-h-F]
//The total rate of evaporation is calculated from an overall material balance
//assuming the solds go through the evaporator without loss
//Table 16.3
mdot_fs = 6000; //[lb/h]
mdot_fw = 54000; //[lb/h]
mdot_lt = 12000; //[lb/h]
mdot_ls = 6000; //[lb/h]
mdot_lw = 6000; //[lb/h]
w_evap = mdot_ft-mdot_fs; //[lb/h]
|
d1c8fd18209e34da1a1c12ac701a659675db23e5 | 1232196a72221f6cc0ee0a9a47111ef1188dafe9 | /xcos_blocks/peakdet_func.sci | 0b36a6e3279d02d45adc859e86a23df3ba29ce8e | [] | no_license | sumagin/rasp30 | 06dc2ee1587a4eaf3cf5fb992375b8589617f882 | a11dcffaed22dbac1f93c2f4798a48c7b0b1f795 | refs/heads/master | 2021-01-24T23:51:54.459864 | 2016-07-08T22:03:43 | 2016-07-08T22:03:43 | 16,685,217 | 2 | 3 | null | 2015-07-23T15:28:49 | 2014-02-10T05:17:38 | C | UTF-8 | Scilab | false | false | 783 | sci | peakdet_func.sci | function block=peakdet_func(block,flag)
if flag==1
r = 1:block.ipar(1)
block.outptr(1)(r)=block.x(r)
elseif flag==0
A = 400
kappa=0.7
Ut=0.02585
j = 1:block.ipar(1)
row = length(block.ipar(1))
expin = ((A*kappa*(block.inptr(1)(j)-block.x(j)))-block.x(j))/Ut
expin_a = expin < -100*ones(row,1)
expin_1=expin_a.*((-1)*(block.rpar(2*j-1)./block.rpar(2*j)));
expin_b = expin > 10*ones(row,1)
expin_2=expin_b.*((block.rpar(2*j-1)./block.rpar(2*j))*(exp(10)-1));
expin_c = expin > -100*ones(row,1) & expin < 10*ones(row,1)
expin_3=expin_c.*(block.rpar(2*j-1)./block.rpar(2*j)).*(exp(expin_c.*expin)-1);
block.xd(j)=expin_1+expin_2+expin_3
end
endfunction
|
05c1c5ce9ee4f3721b06314f9d57e7b7e550438f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH12/EX12.7/ex12_7.sce | 4e0b6234f0c18e27f542a374b6e0ae23afdad494 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | sce | ex12_7.sce | clc;
e=1.6*10^-19; //charge on an electron in coulomb
q=10^-12; //charge on pith ball in coulomb
n=q/e; //calculating no of electrons
disp(n,"No. of electrons = "); //displaying result |
4a37129d081ba985bbcb0d343dfb31d4a90fa64b | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/SCHI/PQ97FDA/ATWM1_Working_Memory_MEG_PQ97FDA_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce | c20ea8ac504c4cb9cc940674cd977fc669533910 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,615 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 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;
44 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_137 gabor_104 gabor_071 gabor_158 gabor_137 gabor_104_alt gabor_071_alt gabor_158 "1_1_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_137_104_071_158_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_021_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 1892 fixation_cross gabor_132 gabor_046 gabor_171 gabor_014 gabor_132 gabor_046_alt gabor_171_alt gabor_014 "1_2_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_132_046_171_014_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_014_framed blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2542 fixation_cross gabor_172 gabor_146 gabor_015 gabor_031 gabor_172_alt gabor_146 gabor_015 gabor_031_alt "1_3_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_172_146_015_031_target_position_2_3_retrieval_position_2" gabor_circ gabor_098_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_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;
44 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_098 gabor_042 gabor_078 gabor_017 gabor_098 gabor_042 gabor_078_alt gabor_017_alt "1_4_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_098_042_078_017_target_position_1_2_retrieval_position_1" gabor_148_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2242 fixation_cross gabor_163 gabor_093 gabor_114 gabor_053 gabor_163_alt gabor_093 gabor_114_alt gabor_053 "1_5_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_163_093_114_053_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_053_framed blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_097 gabor_056 gabor_172 gabor_040 gabor_097 gabor_056_alt gabor_172 gabor_040_alt "1_6_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_097_056_172_040_target_position_1_3_retrieval_position_1" gabor_146_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_113 gabor_041 gabor_070 gabor_175 gabor_113_alt gabor_041 gabor_070 gabor_175_alt "1_7_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_113_041_070_175_target_position_2_3_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1892 2992 2242 fixation_cross gabor_059 gabor_174 gabor_021 gabor_038 gabor_059 gabor_174_alt gabor_021 gabor_038_alt "1_8_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2250_gabor_patch_orientation_059_174_021_038_target_position_1_3_retrieval_position_2" gabor_circ gabor_127_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_127_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 2442 fixation_cross gabor_004 gabor_117 gabor_081 gabor_164 gabor_004_alt gabor_117_alt gabor_081 gabor_164 "1_9_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_004_117_081_164_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_033_framed gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_033_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_056 gabor_075 gabor_026 gabor_090 gabor_056 gabor_075_alt gabor_026_alt gabor_090 "1_10_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_056_075_026_090_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_090_framed blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 1892 fixation_cross gabor_177 gabor_047 gabor_022 gabor_132 gabor_177_alt gabor_047 gabor_022_alt gabor_132 "1_11_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_177_047_022_132_target_position_2_4_retrieval_position_2" gabor_circ gabor_095_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2142 2992 2142 fixation_cross gabor_161 gabor_115 gabor_009 gabor_095 gabor_161 gabor_115 gabor_009_alt gabor_095_alt "1_12_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2150_gabor_patch_orientation_161_115_009_095_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_095_framed blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_095_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_046 gabor_177 gabor_162 gabor_104 gabor_046 gabor_177 gabor_162_alt gabor_104_alt "1_13_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_046_177_162_104_target_position_1_2_retrieval_position_2" gabor_circ gabor_129_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1942 2992 1892 fixation_cross gabor_100 gabor_141 gabor_020 gabor_070 gabor_100_alt gabor_141 gabor_020_alt gabor_070 "1_14_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_100_141_020_070_target_position_2_4_retrieval_position_1" gabor_053_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_053_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_138 gabor_087 gabor_014 gabor_031 gabor_138_alt gabor_087 gabor_014 gabor_031_alt "1_15_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_138_087_014_031_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_063_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_029 gabor_012 gabor_092 gabor_137 gabor_029 gabor_012_alt gabor_092 gabor_137_alt "1_16_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_029_012_092_137_target_position_1_3_retrieval_position_1" gabor_029_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2192 fixation_cross gabor_063 gabor_038 gabor_006 gabor_083 gabor_063 gabor_038 gabor_006_alt gabor_083_alt "1_17_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_063_038_006_083_target_position_1_2_retrieval_position_2" gabor_circ gabor_038_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2192 fixation_cross gabor_011 gabor_168 gabor_085 gabor_059 gabor_011_alt gabor_168_alt gabor_085 gabor_059 "1_18_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_011_168_085_059_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_131_framed gabor_circ blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_014 gabor_171 gabor_100 gabor_083 gabor_014_alt gabor_171 gabor_100 gabor_083_alt "1_19_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_014_171_100_083_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_147_framed gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2192 fixation_cross gabor_147 gabor_096 gabor_117 gabor_171 gabor_147_alt gabor_096_alt gabor_117 gabor_171 "1_20_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_147_096_117_171_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_034_framed blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2192 2992 2592 fixation_cross gabor_094 gabor_076 gabor_161 gabor_142 gabor_094 gabor_076_alt gabor_161_alt gabor_142 "1_21_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2600_gabor_patch_orientation_094_076_161_142_target_position_1_4_retrieval_position_2" gabor_circ gabor_076_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_076_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 2042 fixation_cross gabor_090 gabor_125 gabor_164 gabor_013 gabor_090 gabor_125_alt gabor_164 gabor_013_alt "1_22_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2050_gabor_patch_orientation_090_125_164_013_target_position_1_3_retrieval_position_1" gabor_044_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 1942 fixation_cross gabor_016 gabor_169 gabor_142 gabor_103 gabor_016 gabor_169_alt gabor_142_alt gabor_103 "1_23_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_016_169_142_103_target_position_1_4_retrieval_position_1" gabor_016_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2142 2992 2192 fixation_cross gabor_006 gabor_052 gabor_169 gabor_129 gabor_006_alt gabor_052 gabor_169 gabor_129_alt "1_24_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2200_gabor_patch_orientation_006_052_169_129_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_129_framed blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_129_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 1892 fixation_cross gabor_171 gabor_040 gabor_120 gabor_105 gabor_171_alt gabor_040 gabor_120_alt gabor_105 "1_25_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_171_040_120_105_target_position_2_4_retrieval_position_2" gabor_circ gabor_040_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_070 gabor_179 gabor_146 gabor_031 gabor_070 gabor_179_alt gabor_146_alt gabor_031 "1_26_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_070_179_146_031_target_position_1_4_retrieval_position_1" gabor_070_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_086 gabor_158 gabor_174 gabor_101 gabor_086 gabor_158 gabor_174_alt gabor_101_alt "1_27_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_086_158_174_101_target_position_1_2_retrieval_position_2" gabor_circ gabor_158_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_177 gabor_067 gabor_044 gabor_100 gabor_177 gabor_067_alt gabor_044_alt gabor_100 "1_28_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_177_067_044_100_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_150_framed blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2392 fixation_cross gabor_139 gabor_019 gabor_107 gabor_001 gabor_139_alt gabor_019 gabor_107_alt gabor_001 "1_29_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_139_019_107_001_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_001_framed blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1942 2992 2092 fixation_cross gabor_099 gabor_038 gabor_158 gabor_020 gabor_099 gabor_038 gabor_158_alt gabor_020_alt "1_30_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2100_gabor_patch_orientation_099_038_158_020_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_069_framed blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_069_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2492 fixation_cross gabor_050 gabor_118 gabor_078 gabor_001 gabor_050_alt gabor_118 gabor_078 gabor_001_alt "1_31_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_050_118_078_001_target_position_2_3_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2542 fixation_cross gabor_028 gabor_167 gabor_103 gabor_142 gabor_028 gabor_167 gabor_103_alt gabor_142_alt "1_32_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_028_167_103_142_target_position_1_2_retrieval_position_1" gabor_077_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_084 gabor_109 gabor_128 gabor_154 gabor_084_alt gabor_109 gabor_128 gabor_154_alt "1_33_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_084_109_128_154_target_position_2_3_retrieval_position_2" gabor_circ gabor_109_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2042 fixation_cross gabor_098 gabor_011 gabor_158 gabor_032 gabor_098_alt gabor_011_alt gabor_158 gabor_032 "1_34_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_098_011_158_032_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_078_framed blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_075 gabor_016 gabor_165 gabor_146 gabor_075 gabor_016_alt gabor_165 gabor_146_alt "1_35_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_075_016_165_146_target_position_1_3_retrieval_position_1" gabor_125_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_151 gabor_118 gabor_166 gabor_061 gabor_151 gabor_118_alt gabor_166 gabor_061_alt "1_36_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_151_118_166_061_target_position_1_3_retrieval_position_1" gabor_151_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_041 gabor_023 gabor_071 gabor_087 gabor_041 gabor_023 gabor_071_alt gabor_087_alt "1_37_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_041_023_071_087_target_position_1_2_retrieval_position_2" gabor_circ gabor_161_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1742 2992 1992 fixation_cross gabor_179 gabor_063 gabor_124 gabor_105 gabor_179_alt gabor_063_alt gabor_124 gabor_105 "1_38_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_179_063_124_105_target_position_3_4_retrieval_position_2" gabor_circ gabor_016_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_016_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 2542 fixation_cross gabor_174 gabor_096 gabor_038 gabor_066 gabor_174_alt gabor_096_alt gabor_038 gabor_066 "1_39_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_174_096_038_066_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_019_framed blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_005 gabor_053 gabor_086 gabor_171 gabor_005 gabor_053_alt gabor_086 gabor_171_alt "1_40_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_005_053_086_171_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_086_framed gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1992 2992 2242 fixation_cross gabor_058 gabor_020 gabor_169 gabor_035 gabor_058_alt gabor_020 gabor_169_alt gabor_035 "1_41_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2250_gabor_patch_orientation_058_020_169_035_target_position_2_4_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_058_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_020 gabor_071 gabor_045 gabor_179 gabor_020 gabor_071_alt gabor_045_alt gabor_179 "1_42_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_020_071_045_179_target_position_1_4_retrieval_position_1" gabor_020_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_076 gabor_015 gabor_049 gabor_091 gabor_076 gabor_015 gabor_049_alt gabor_091_alt "1_43_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_076_015_049_091_target_position_1_2_retrieval_position_2" gabor_circ gabor_015_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_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;
44 62 292 292 399 125 1792 2992 2342 fixation_cross gabor_065 gabor_178 gabor_108 gabor_002 gabor_065 gabor_178 gabor_108_alt gabor_002_alt "1_44_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_065_178_108_002_target_position_1_2_retrieval_position_2" gabor_circ gabor_178_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1792 2992 2042 fixation_cross gabor_132 gabor_045 gabor_007 gabor_065 gabor_132_alt gabor_045 gabor_007_alt gabor_065 "1_45_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2050_gabor_patch_orientation_132_045_007_065_target_position_2_4_retrieval_position_1" gabor_087_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_087_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_129 gabor_091 gabor_023 gabor_001 gabor_129 gabor_091_alt gabor_023_alt gabor_001 "1_46_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_129_091_023_001_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_001_framed blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2292 fixation_cross gabor_138 gabor_033 gabor_166 gabor_012 gabor_138_alt gabor_033 gabor_166_alt gabor_012 "1_47_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_138_033_166_012_target_position_2_4_retrieval_position_2" gabor_circ gabor_033_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_033_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2492 fixation_cross gabor_053 gabor_091 gabor_073 gabor_178 gabor_053_alt gabor_091 gabor_073 gabor_178_alt "1_48_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2500_gabor_patch_orientation_053_091_073_178_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_123_framed gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 1942 fixation_cross gabor_066 gabor_087 gabor_123 gabor_037 gabor_066 gabor_087_alt gabor_123 gabor_037_alt "1_49_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1950_gabor_patch_orientation_066_087_123_037_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_173_framed gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2592 fixation_cross gabor_001 gabor_160 gabor_082 gabor_040 gabor_001_alt gabor_160_alt gabor_082 gabor_040 "1_50_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_001_160_082_040_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_128_framed gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2042 fixation_cross gabor_042 gabor_127 gabor_152 gabor_102 gabor_042_alt gabor_127 gabor_152_alt gabor_102 "1_51_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_042_127_152_102_target_position_2_4_retrieval_position_2" gabor_circ gabor_127_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_131 gabor_025 gabor_067 gabor_154 gabor_131 gabor_025_alt gabor_067 gabor_154_alt "1_52_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_131_025_067_154_target_position_1_3_retrieval_position_1" gabor_131_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2042 2992 2592 fixation_cross gabor_106 gabor_035 gabor_163 gabor_078 gabor_106 gabor_035_alt gabor_163 gabor_078_alt "1_53_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_2600_gabor_patch_orientation_106_035_163_078_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_123_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2342 fixation_cross gabor_017 gabor_176 gabor_048 gabor_130 gabor_017 gabor_176 gabor_048_alt gabor_130_alt "1_54_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_017_176_048_130_target_position_1_2_retrieval_position_1" gabor_017_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_125 gabor_058 gabor_143 gabor_167 gabor_125_alt gabor_058 gabor_143 gabor_167_alt "1_55_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_125_058_143_167_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_143_framed gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2042 2992 1942 fixation_cross gabor_168 gabor_105 gabor_062 gabor_023 gabor_168 gabor_105_alt gabor_062 gabor_023_alt "1_56_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_1950_gabor_patch_orientation_168_105_062_023_target_position_1_3_retrieval_position_2" gabor_circ gabor_105_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_105_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2342 fixation_cross gabor_109 gabor_028 gabor_135 gabor_074 gabor_109_alt gabor_028 gabor_135 gabor_074_alt "1_57_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_109_028_135_074_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_090_framed gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_086 gabor_129 gabor_055 gabor_010 gabor_086_alt gabor_129 gabor_055_alt gabor_010 "1_58_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_086_129_055_010_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_010_framed blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 2092 fixation_cross gabor_098 gabor_130 gabor_043 gabor_068 gabor_098_alt gabor_130 gabor_043 gabor_068_alt "1_59_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_098_130_043_068_target_position_2_3_retrieval_position_2" gabor_circ gabor_130_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_130_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_142 gabor_124 gabor_176 gabor_001 gabor_142_alt gabor_124 gabor_176 gabor_001_alt "1_60_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_142_124_176_001_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_036_framed gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2592 fixation_cross gabor_097 gabor_138 gabor_076 gabor_157 gabor_097_alt gabor_138 gabor_076_alt gabor_157 "1_61_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_097_138_076_157_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_157_framed blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_157_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1942 2992 2292 fixation_cross gabor_119 gabor_005 gabor_075 gabor_136 gabor_119_alt gabor_005_alt gabor_075 gabor_136 "1_62_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2300_gabor_patch_orientation_119_005_075_136_target_position_3_4_retrieval_position_2" gabor_circ gabor_005_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_005_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_107 gabor_171 gabor_135 gabor_053 gabor_107 gabor_171_alt gabor_135 gabor_053_alt "1_63_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_107_171_135_053_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_086_framed gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2442 fixation_cross gabor_111 gabor_021 gabor_082 gabor_006 gabor_111_alt gabor_021_alt gabor_082 gabor_006 "1_64_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2450_gabor_patch_orientation_111_021_082_006_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_127_framed gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2542 fixation_cross gabor_097 gabor_160 gabor_031 gabor_007 gabor_097 gabor_160_alt gabor_031 gabor_007_alt "1_65_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_097_160_031_007_target_position_1_3_retrieval_position_1" gabor_097_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 1992 fixation_cross gabor_015 gabor_161 gabor_034 gabor_077 gabor_015_alt gabor_161 gabor_034_alt gabor_077 "1_66_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_015_161_034_077_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_124_framed blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2492 fixation_cross gabor_009 gabor_142 gabor_060 gabor_027 gabor_009_alt gabor_142_alt gabor_060 gabor_027 "1_67_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_009_142_060_027_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_027_framed blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1942 2992 2442 fixation_cross gabor_083 gabor_066 gabor_021 gabor_136 gabor_083 gabor_066_alt gabor_021_alt gabor_136 "1_68_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2450_gabor_patch_orientation_083_066_021_136_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_021_framed gabor_circ blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_021_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 1942 fixation_cross gabor_075 gabor_006 gabor_040 gabor_059 gabor_075 gabor_006 gabor_040_alt gabor_059_alt "1_69_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_075_006_040_059_target_position_1_2_retrieval_position_1" gabor_123_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1892 2992 2092 fixation_cross gabor_055 gabor_176 gabor_015 gabor_040 gabor_055_alt gabor_176_alt gabor_015 gabor_040 "1_70_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2100_gabor_patch_orientation_055_176_015_040_target_position_3_4_retrieval_position_2" gabor_circ gabor_129_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_129_retrieval_position_2" 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;
}; |
2dc36b9ea39c54fa27468fc82489c1f4255ba863 | 449d555969bfd7befe906877abab098c6e63a0e8 | /797/CH8/EX8.2.s/8_02_solution.sce | 986e29355c885e717d81fc23e7ec741fade6e1de | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 8_02_solution.sce | //Solution 8-2
WD=get_absolute_file_path('8_02_solution.sce');
datafile=WD+filesep()+'8_02_example.sci';
exec(datafile);
//unit conversions
D = D / 100; //from [cm] to [m]
//(a)Head loss
Re = rho * V_avg * D / mu;
if Re < 2300 then
f = 64 / Re;
end
h_L = f * L * V_avg**2 / (2 * g * D);
printf("Head loss in pipe is %1.2f m", h_L);
//(b)
deltaP = f * L * rho * V_avg**2 / (2 * D);
printf("\nPressure drop in pipe is %1.2f kPa", deltaP / 1000);
//(c)
Vdot = V_avg * %pi * D**2 / 4;
Wdot_pump = deltaP * Vdot;
printf("\nPumping power required to overcome pressure drop is %1.2f W", Wdot_pump); |
fc67a9c5a9b92390cd474df9ad8a29facbb35a27 | 29cfe7e83274e757dc406cdc2a855f7e76fdb698 | /scilab/least_squares_1.sce | 9a99d02d353f7260f627f04f2d359933f21820c0 | [] | no_license | andreucm/essential_maths_roboticists | 2eb637afe3f46be6eb6c697eba7ada1d9406f482 | 95530267db0890be1e76778062d8eafd41d451dd | refs/heads/master | 2022-07-16T05:18:15.976563 | 2022-07-01T08:36:47 | 2022-07-01T08:36:47 | 47,470,143 | 1 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 272 | sce | least_squares_1.sce |
//measurements
sigma_points = 0.01;
points=[0 1 2 3 4 5 6 7 8 9 20 30 40 50 ;0 1 2 3 4 5 6 7 8 9 20 30 40 50 ];
points = points + sigma_points*rand(2,14,"normal");
//H matrix, b vector
H=points';
z = -ones(14,1);
//solving Least squares
x = inv(H'*H)*H'*z;
disp(x);
|
54b8d386b29a2023285bbdaeff22f378df9cfad1 | c2c094e5792a8d99eec660157b9b22bf111f175b | /Hardware/MDMux.tst | 2306bc255cae9502e4640cb264f66831d1b389cf | [] | no_license | z2512690268/nand2teris | 087bfbdb56fee154ee76d7d9e8d75a92a246be04 | 6f190f3d77b7b24fb0f2ae3a56691b2d60a19c33 | refs/heads/main | 2023-04-19T00:21:49.516211 | 2021-05-05T12:10:30 | 2021-05-05T12:10:30 | 364,537,511 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | tst | MDMux.tst | load MDMux.hdl,
output-file MDMux.out,
output-list in sel a b;
set in 0,
set sel 0,
eval,
output;
set in 0,
set sel 1,
eval,
output;
set in 1,
set sel 0,
eval,
output;
set in 1,
set sel 1,
eval,
output; |
0f873f4762d3230333a385aee2888a99f5b434f3 | 5bd32b0243dbcb7551e03872f901a42713dfa199 | /Mario_v8.sce | ec7f53a3e596a6c397a1785c9bb6ef185797fad5 | [
"MIT"
] | permissive | cvdhengel/MarioCards | da0dc732d11631eeaee215b82dbbd5fa45398f8c | 7ab6013dbbc2e0f36f482467845df961d5d7616f | refs/heads/master | 2021-01-23T00:48:31.597526 | 2017-05-31T18:52:29 | 2017-05-31T18:52:29 | 92,846,680 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,946 | sce | Mario_v8.sce | #Headers
active_buttons=5;
default_background_color= 255,255,255;
default_text_color=0,0,0;
default_font="calibri";
#SDL
begin;
TEMPLATE "Bitmaps.tem";
TEMPLATE "Trials.tem";
#PCL
begin_pcl;
#include "MarioPCL.pcl"#
#Response data & output
response_data Rdata;
output_file output = new output_file;
string ParticipantNumber = logfile.subject();
if ParticipantNumber.count() > 0 then output.open (ParticipantNumber + "_MarioCards.txt");
else output.open( "999_MarioCards.txt"); end;
output.print( "date/time: " + date_time("dd mmmm yyyy' 't")+"\n");
output.print("Trial\tStimuli\tPrincple\tButton\tSorting\tFeedback\tErrortype\n");
#include "Start.pcl";
#Show introduction
#intro.present();
#Sorting: 1=form, 2=color, 3=amount
array <int> sort[6]={1,2,3,1,2,3};
#Main Trial Start
stimuli.shuffle();
#sort.shuffle();
stimulus_data laststim = stimulus_manager.last_stimulus_data();
int c=0; #correct
int f=0; #false
int tc=0; #total correct
int tf=0; #total incorrect
int p=0; #perseveration
int np=0; #nonperseveration
#Main Trial Loop
loop int i=1 until i > stimuli.count() begin;
loop int s=1 until s > sort.count() begin;
VB.set_part(5, stimuli[i]);
MainEvent.set_event_code(stimuli[i].description());
MainTrial.set_duration(forever);
MainTrial.set_type( first_response );
MainTrial.present();
output.print(i);
output.print("\t");
output.print(stimuli[i].description());
output.print("\t");
response_data respdat = response_manager.last_response_data();
int BP = respdat.button();
output.print(BP);
output.print("\t");
#Matching the cards on the screen
if BP == 1 then VB.set_part_x(5,-700); VB.set_part_y(5, 0); end;
if BP == 2 then VB.set_part_x(5,-250); VB.set_part_y(5, 0); end;
if BP == 3 then VB.set_part_x(5,250); VB.set_part_y(5, 0); end;
if BP == 4 then VB.set_part_x(5,700); VB.set_part_y(5, 0); end;
MainTrial.set_duration(1000);
MainTrial.present();
#Putting it back for the next trial
VB.set_part_x(5,0);
VB.set_part_y(5, -300);
#Showing Feedback
if sort[s]==1 then output.print("charac"); output.print("\t");
if (stimuli[i].description().find("M") == 1 && BP == 1)
|| (stimuli[i].description().find("S") == 1 && BP == 2)
|| (stimuli[i].description().find("L") == 1 && BP == 3)
|| (stimuli[i].description().find("P") == 1 && BP == 4)
then
feedbackcorrect.present();
output.print("correct");
output.print("\t");
c=c+1;
f=0;
tc=tc+1;
else
feedbackwrong.present();
output.print("incorrect");
output.print("\t");
if (stimuli[i].description().find("1") > 0 && BP == 1)
|| (stimuli[i].description().find("2") > 0 && BP == 2)
|| (stimuli[i].description().find("3") > 0 && BP == 3)
|| (stimuli[i].description().find("4") > 0 && BP == 4)
then p=p+1;
output.print("P");
output.print("\t");
else np=np+1;
output.print("NP");
output.print("\t");
end;
f=f+1;
c=0;
tf=tf+1;
end;
end;
if sort[s]==2 then
output.print("color");
output.print("\t");
if (stimuli[i].description().find("R") == 2 && BP == 1)
|| (stimuli[i].description().find("G") == 2 && BP == 2)
|| (stimuli[i].description().find("B") == 2 && BP == 3)
|| (stimuli[i].description().find("V") == 2 && BP == 4)
then
feedbackcorrect.present();
output.print("correct");
output.print("\t");
c=c+1;
f=0;
tc=tc+1;
else
feedbackwrong.present();
output.print("incorrect");
output.print("\t");
if (stimuli[i].description().find("M") == 1 && BP == 1)
|| (stimuli[i].description().find("S") == 1 && BP == 2)
|| (stimuli[i].description().find("L") == 1 && BP == 3)
|| (stimuli[i].description().find("P") == 1 && BP == 4)
then p=p+1;
output.print("P");
output.print("\t");
else np=np+1;
output.print("NP");
output.print("\t");
end;
f=f+1;
c=0;
tf=tf+1;
end;
end;
if sort[s]==3 then
output.print("amount");
output.print("\t");
if (stimuli[i].description().find("1") > 0 && BP == 1)
|| (stimuli[i].description().find("2") > 0 && BP == 2)
|| (stimuli[i].description().find("3") > 0 && BP == 3)
|| (stimuli[i].description().find("4") > 0 && BP == 4)
then
feedbackcorrect.present();
output.print("correct");
output.print("\t");
c=c+1;
f=0;
tc=tc+1;
else
feedbackwrong.present();
output.print("incorrect");
output.print("\t");
if (stimuli[i].description().find("R") == 2 && BP == 1)
|| (stimuli[i].description().find("G") == 2 && BP == 2)
|| (stimuli[i].description().find("B") == 2 && BP == 3)
|| (stimuli[i].description().find("P") == 2 && BP == 4)
then p=p+1;
output.print("P");
output.print("\t");
else np=np+1;
output.print("NP");
output.print("\t");
end;
f=f+1;
c=0;
tf=tf+1;
end;
end;
##########################################
#Knowing when to continue or when to end #
##########################################
if c>5 then s=s+1; c=0; end; #If 6 cards (in a row) were correct, the participant continues to the next sorting principle without letting know
if f>5 then s=sort.count(); i=stimuli.count(); end; #If participant misses 6 in a row, the task will end.
if tc>2 then s=sort.count(); i=stimuli.count(); end; #If all cards are sorted, the task will end.
end;
i=i+1;
end;
EndTrial.present();
output.print("\n\n\Total Correct\tTotalFalse\tTotalP\tTotalNP\n");
output.print(tc);
output.print("\t");
output.print(tf);
output.print("\t");
output.print(p);
output.print("\t");
output.print(np);
output.print("\t");
|
7801fc856ff02f332da80c7fb960bf46556037e7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /273/CH12/EX12.2/ex12_2.sce | 6329869b851dcf3e2b9d3a927aaeee01c07812f3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 298 | sce | ex12_2.sce | clc;clear;
//Example 12.2
//calculation of natural frequency
//given values
t=5.5*10^-3;//thickness in m
d=2.65*10^3;//density in kg/m^3
Y=8*10^10;//Young's modulus in N/m^2
//calculation
f=(sqrt(Y/d))/(2*t);//frequency in hertz
disp(f*10^-3,'the natural frequency(in kHz) is');
|
2b989fea4750a0bb168a07412c36197ed89357ad | 449d555969bfd7befe906877abab098c6e63a0e8 | /2522/CH9/EX9.2/exm9_2.sce | 079109dfdc585c91f3f32bdf9dd611390ace2579 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,755 | sce | exm9_2.sce | // page no 285
// example no 9.2
// EXCHANGE OF DATA USING STACK.
clc;
printf('LXI SP,2400H \n \n'); // the stack pointer is located at 2400H.
printf('LXI H,2150H \n ');
printf('H--> 21 L-->50 \n \n');
printf('LXI B,2280H \n ');
printf('B--> 22 C-->80 \n \n');
printf('PUSH H \n'); // sends the data of HL register pair in the stack.
// stack pointer is decremented by one to 23FFH and the contents of the H register are copied to memory location 23FFH
printf('23FFH--> 21 \n');
// stack pointer is again decremented by one to 23FEH and the contents of the L register are copied to memory location 23FEH
printf('23FEH--> 50 \n \n');
printf('PUSH B \n'); // sends the data of BC register pair in the stack.
// stack pointer is decremented by one to 23FDH and the contents of the H register are copied to memory location 23FDH
printf('23FDH--> 22 \n');
// stack pointer is again decremented by one to 23FCH and the contents of the L register are copied to memory location 23FCH
printf('23FCH--> 80 \n \n');
printf('PUSH PSW \n'); // sends the data of accumulator & flag register in the stack.
// stack pointer is decremented by one to 23FBH and the contents of the H register are copied to memory location 23FBH
printf('23FBH--> contents of accumulator \n');
// stack pointer is again decremented by one to 23FAH and the contents of the L register are copied to memory location 23FAH
printf('23FAH--> contents of flag register \n \n');
printf('To exchange the data. \n \n')
printf(' POP PSW \n'); // sends the data in the stack back to the accumulator & flag register.
// the contents of the top of the stack are copied to A register and the stack pointer is incremented by one to 23FBH
printf('A--> contents of accumulator \n');
// the contents of the current location of stack are copied to flag register and the stack pointer is again incremented by one to 23FCH.
printf('F--> contents of flag register \n \n');
printf(' POP H \n'); // sends the data in the stack back to the HL register pair.
// the contents of the current location of the stack are copied to L register and the stack pointer is incremented by one to 23FDH
printf('L--> 80H \n');
// the contents of the current location of stack are copied to H register and the stack pointer is again incremented by one to 23FEH.
printf('H--> 22H \n \n');
printf(' POP B \n'); // sends the data in the stack back to the BC register pair.
// the contents of the current location of the stack are copied to C register and the stack pointer is incremented by one to 23FFH
printf('C--> 50H \n');
// the contents of the current location of stack are copied to B register and the stack pointer is again incremented by one to 2400H.
printf('B--> 21H \n');
|
a16c5349366d8ec8fb5da2f86d18ab3436447244 | cac765899ef2f4a3fea7b30feb7d3cc9e32a4eb4 | /src/asserVisu/thetheredRobotCatenary.sci | a83d44b443eb13f0cd2e186d3f7cce2049edcfde | [] | no_license | clairedune/AsserVisu | 136d9cb090f709a410f23d3138ab115b722066d2 | f351f693bffd50b5ae19656a7fcb7b52e01d6943 | refs/heads/master | 2020-04-11T09:56:32.106000 | 2017-01-12T14:01:12 | 2017-01-12T14:01:12 | 1,187,919 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,777 | sci | thetheredRobotCatenary.sci | function [param,D,wP,XA,YA,ZA,wMsigma1] = thetheredRobotCatenary(wMr1,wMr2,r1Msigma3,r2Msigma2,R,Hmax)
// then it follows the frame in the world reference frame
wMsigma3 = wMr1*r1Msigma3;
wMsigma2 = wMr2*r2Msigma2;
sigma2Msigma3 = inv(wMsigma2)*wMsigma3;
posesigma2Msigma3 = pFromHomogeneousMatrix(sigma2Msigma3);
sigma3Msigma2 = inv(sigma2Msigma3);
posesigma3Msigma2 = pFromHomogeneousMatrix(sigma3Msigma2);
// compute the attached point of the rope on the leader robot in the follower frame
XA = posesigma2Msigma3(1);
YA = posesigma2Msigma3(2);
ZA = posesigma2Msigma3(3);
// compute theta and D from the relative position of the robots
angle = atan(posesigma2Msigma3(2),posesigma2Msigma3(1));
theta = -angle;
D = norm(posesigma2Msigma3(1:3))/2;
//pause
// semi distance between the two fixation points
// se calcul par rapport a H et R
if D>=R then
disp("Error the distance between the two robots cannot be greater than the rope length");
param = [%eps,sin(%eps)];
wMsigma1 = wMsigma2+wMsigma3/2;
wP = [];
else
// rope sag estimation
H = findCatenaryH(R,D);
// rope points coordinates in the rope frame
sigma1X = -D:D/100:D;
C = (2*H)/(R^2-H^2);
sigma1Z = 1/C*(cosh(C*sigma1X)-1);
sigma1Y = zeros(length(sigma1X),1)';
// coordinates of one 3D point P = (X,Y,Z,1)
sigma1P = [sigma1X;sigma1Y;sigma1Z;ones(length(sigma1X),1)'];
posesigma1Msigma2 = [-D 0 H 0 0 theta];
sigma1Msigma2 = homogeneousMatrixFromPos(posesigma1Msigma2);
sigma2Msigma1 = inv(sigma1Msigma2);
//deduce the pose of sigma in the world
wMsigma1 = wMsigma2*sigma2Msigma1;
wP = changeFramePoints(sigma1P,wMsigma1);
param = [H/Hmax,sin(-theta)];
end
endfunction
function [cP,pmetre,ppixel,nbpoints] = imageProjection(cMw,wP,u0,v0,px,py)
cP = changeFramePoints(wP,cMw);
cPX = cP(1,:); // points 3D en m dans le repere camera
cPY = cP(2,:); // points 3D en m dans le repere camera
cPZ = cP(3,:); // points 3D en m dans le repere camera
//cut frame
cpx = []; // points 2D en m dans le plan image
cpy = []; // points 2D en m dans le plan image
cu = []; // points 2D en pixels dans le plan image
cv = []; // points 2D en pixels dans le plan image
nbpoints = 0;
for i=1:(size(cP,2))
x = cP(1,i)/cP(3,i);
y = cP(2,i)/cP(3,i);
[u,v]= convertMeter2Pixel(x, y,u0,v0, px,py)
if(u>0 & v>0 & u<im_width & v<im_height)
cpx = [cpx;x];
cpy = [cpy;y];
cu = [cu;u];
cv = [cv;v];
nbpoints = nbpoints + 1;
end
end
pmetre = [cpx,cpy];
ppixel = [cu ,cv];
endfunction
function [w_M_r1,w_M_r2,w_P_positif,param] = vsCatenaryHth(w_M_r1,v_r1,w_M_r2,r1_M_sigma3,r2_M_sigma2,r2_M_c,R,Hmax, threshold,dt)
e = 1;
while (norm(e)>threshold)
// Catenary parametres
[param,D,w_P,xA,yA,zA,w_M_sigma1] = thetheredRobotCatenary(w_M_r1,w_M_r2,r1_M_sigma3,r2_M_sigma2,R,Hmax);
// Set to zero all the points that are beyond the ground.
// if the rope length is greater that 0
if length(w_P>0) then
w_P_positif = w_P;
w_P_positif(3,:) = w_P(3,:).*(w_P(3,:)>0);
// ---- INTERACTION MATRIX FOR 3D CATENARY ------ //
e = param' - paramd';
L = catenary3DIntMat( R, Hmax, param, xA, yA, zA ) ;
//change of frame between sigma2 and r2
r2_V_sigma2 = twistMatrix(r2_M_sigma2);
v_sigma2 = - lambda*pinv(L)*e;
v_r2 = r2_V_sigma2*v_sigma2;
disp(v_r2)
v_r2(2)=0;
v_r2(3)=0;
v_r2(4)=0;
v_r2(5)=0;
// ---------------------UPDATE --------------------------------
r1_curr_M_r1_next = expMapDirectRxRyRz(v_r1',dt);
r2_curr_M_r2_next = expMapDirectRxRyRz(v_r2',dt);
w_M_r1 = w_M_r1*r1_curr_M_r1_next;
w_M_r2 = w_M_r2*r2_curr_M_r2_next;
r1_M_w = inv(w_M_r1);
r2_M_w = inv(w_M_r2);
else
w_M_r2 = [];
e=0;
break;
end
end
endfunction
|
3869ddfe13b19f9f57b3804c4a2f360fbf7aad17 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH1/EX1.9/Ex1_9.sce | 994a4a6345b18ed60a6ab9846ecfddd484ddfc3e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex1_9.sce | clc;
//page 13
//ex-1.9
G1=5000;
L=2000;
G2=400;
Ps=0.1; //in mW
P1=G1*Ps; //in mW
disp('mW',P1,'(a) Power level P1 is:');
P2=P1/L; //in mW
disp('mW',P2,'Line output power P2:');
Po=G2*P2; //in mW
disp('mW',Po,'System output power Po:');
PsdBm=10*log10(Ps/1);
G1dB=10*log10(G1);
LdB=10*log10(L);
G2dB=10*log10(G2);
disp('(b) Output power power levels in dBm are');
P1dBm=PsdBm+G1dB;
disp('dBm',P1dBm,'P1(dBm)=');
P2dBm=P1dBm-LdB;
disp('dBm',P2dBm,'P2(dBm)=');
PodBm=P2dBm+G2dB;
disp('dBm',PodBm,'Po(dBm)=');
|
5daf78a84731b9af83672796baf6890eba08b0ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /668/CH3/EX3.5/eg3_5.sce | 39d96fd5f53f254cd2aba2cab8cb4699f15bf1c8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 605 | sce | eg3_5.sce | Nd = 10^17;
Ni = 1.5*10^10;
Ni2 = 1.84 * 10^6;
Pi2 = 1.84 * 10^6;
Pi = 1.5*10^10;
un1 = 1000;
up1 = 350;
un2 = 8000;
up2 = 400;
Nn = 0.5*Nd;
Pn = Ni^2/Nn;
q = 1.6*10^-19;
disp(Pn,"Hole density for Si(in per cm cube) =")
s_n1 = Nn*q*un1+Pn*q*up1;
s_un1 = Ni*q*un1+Pi*q*up1;
s_n2 = Nn*q*un2+Pn*q*up2;
s_un2 = Ni2*q*un2+Pi2*q*up2;
disp(s_n1,"The conductivity of Si (in per ohm per cm) = ")
disp(s_un1,"The conductivity of undoped Si (in per ohm per cm) = ")
disp(s_n2,"The conductivity of GaAs (in per ohm per cm) = ")
disp(s_un2,"The conductivity of undoped GaAs (in per ohm per cm) = ") |
32d9a7d20591c840239dd226cd81e3ac8990af98 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1619/CH1/EX1.7.1/Example1_7_1.sce | d6d4a12948aafe38383417d0e836c8936510acb7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sce | Example1_7_1.sce | // Example 1.7.1 page 1.14
//To calculate the angel of refraction if the angle of incidence is 30
clc;
clear;
n1= 1.5; // for glass
n2= 1.33; // for water
phi1= (%pi/6); // phi1 is the angel of incidence
// According to Snell's law...
// n1*sin(phi1)= n2*sin(phi2);
sinphi2= (n1/n2)*sin(phi1); // phi2 is the angle of refraction..
phi2 = asind(sinphi2);
printf(' The angel of refraction is %.2f degrees',phi2);
|
b3f015de82a66476caeb37d1cda351fca5e07ce2 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/cummax/cummax12.sce | efa268a85ec67a7b6bfa045f130d66a2f656ba32 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 267 | sce | cummax12.sce | //check o/p when i/p vector contains elements of type char
v=['a' 'char' 'a'];
m=cummax(v);
disp(m);
//output
//!--error 53
//cummax: Wrong type for argument #1 (A); Real or complex entries expected
//at line 70 of function cummax called by :
//m=cummax(v);
|
db5181dc795a61d2074fe43fab7b4c0ac66f93ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /1199/CH3/EX3.5/3_5.sci | 39a46d9f2afb201238a7ff3a71ac485672be142a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | 3_5.sci | // 3.5
clc;
ATC1=1065;
AT=ATC1+273;
Em1=0.82;
Ta=(Em1^(-0.25))*AT;
Em2=0.75;
Taa=(Em2^-0.25)*Ta;
ATC2=Taa-273;
E=ATC1-ATC2;
printf("Error in temperature measurement=%.2f degree C",E)
|
aaaa56e65ca18a457ca3e3c75aafaf3b6a942120 | 449d555969bfd7befe906877abab098c6e63a0e8 | /542/CH12/EX12.3/Example_12_3.sci | da2fbedc27d4c3a56afccd29d11fccfda258dff8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 919 | sci | Example_12_3.sci | clear;
clc;
printf("\n Example 12.3");
//as the system are dilute mole fractions are approximately equal to mole ratios.
//At the bottom of the tower
y1 =0.015; //mole fraction
G = 1; //Gas flow rate is in kg/m^2sec
//At the top of the tower
y2 = 0.00015; //mole fraction
x2 = 0;
L = 1.6; //liquid flow rate is in kg/m^2.sec
Lm = 1.6/18; //liquid flow rate is in kmol/m^2.sec
Gm = 1.0/29; //gas flow rate is in kmol/m^2.sec
x1 = poly([0],'x1');
x11 = roots(Gm*(y1-y2)-Lm*(x1));
printf("\n x1 = %f",x11);
function[ye1]=henry_law(x)
ye1 = 1.75*x;
funcprot(0);
endfunction
bottom_driving_force = y1 - henry_law(x11);
function[lm]=log_mean()
lm = (bottom_driving_force-y2)/log(bottom_driving_force/y2);
funcprot(0);
endfunction
NoG = (y1-y2)/log_mean();
NoL = NoG*1.75*(Gm/Lm);
printf("\n NoL =%.2f",NoL);
|
5653c7f8425253797f0eebdfa13b49175e32ba50 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3872/CH14/EX14.3/EX14_3.sce | 44b090683e06748cc925ca5096724bcb88574fd1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 5,633 | sce | EX14_3.sce | //Book - Power System: Analysis & Design 5th Edition
//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye
//Chapter - 14 ; Example 14.3
//Scilab Version - 6.0.0 ; OS - Windows
clc;
clear;
kV=13.8; //The sending end line voltage in kVolts
Vsln=1.05*kV/sqrt(3); //The sending end voltage with 5% above rated in kVolts
Rload=20; //The Wye connected load resistance in Ohm
Xload=40*%i; //The Wye connected load inductive reactance in Ohm
Xc=-40*%i; //The Wye connected capacitive reactance in Ohm
Rline=3; //The line resistance in Ohm
Xline=6*%i; //The line inductive reactance in Ohm
Ztot1=Rline+Xline+(Rload*Xload/(Rload+Xload)); //The total impedance seen by source without capacitance in Ohm
Iline1=Vsln/Ztot1; //The line current without shunt capacitor in kA
Vdrop1=(Rline+Xline)*Iline1; //The voltage drop across the line without shunt capacitor in KVolts
Vload1=Vsln-Vdrop1; //The voltage drop across the load without shunt capacitor in KVolts
Pload1=3*abs(Vload1)^2/Rload; //The real power delivered to the load without shunt capacitor in MW
Qload1=3*abs(Vload1)^2/abs(Xload); //The reactive power delivered to the load without shunt capacitor in MVAR
pf1=cos((atan(Qload1/Pload1))); //The power factor of the load without shunt capacitor
Pline1=3*abs(Iline1)^2*Rline; //The real power loss in the line without shunt capacitor in MW
Qline1=3*abs(Iline1)^2*abs(Xline); //The reactive power loss in the line without shunt capacitor in MVAR
Psource1=Pload1+Pline1; //The real power delivered by the source without shunt capacitor in MW
Qsource1=Qload1+Qline1; //The reactive power delivered by the source without shunt capacitor in MVAR
Ssource1=sqrt(Psource1^2+Qsource1^2); //The apparent power delivered by the source without shunt capacitor in MVA
Ztot2=Rline+Xline+(1/(1/Rload+1/Xload+1/Xc)); //The total impedance seen by source with capacitance in Ohm
Iline2=Vsln/Ztot2; //The line current with shunt capacitor in kA
Vdrop2=(Rline+Xline)*Iline2; //The voltage drop across the line with shunt capacitor in KVolts
Vload2=Vsln-Vdrop2; //The voltage drop across the load with shunt capacitor in KVolts
Pload2=3*abs(Vload2)^2/Rload; //The real power delivered to the load with shunt capacitor in MW
Qload2=3*abs(Vload2)^2/abs(Xload); //The reactive power delivered to the load with shunt capacitor in MVAR
pf2=cos((atan(Qload2/Pload2))); //The power factor of the load with shunt capacitor
Pline2=3*abs(Iline2)^2*Rline; //The real power loss in the line with shunt capacitor in MW
Qline2=3*abs(Iline2)^2*abs(Xline); //The reactive power loss in the line with shunt capacitor in MVAR
Qc=3*abs(Vload2)^2/abs(Xc); //The reactive power delivered by the shunt capacitor inb MVAR
Psource2=Pload2+Pline2; //The real power delivered by the source with shunt capacitor in MW
Qsource2=Qload2+Qline2-Qc; //The reactive power delivered by the source with shunt capacitor in MVAR
Ssource2=sqrt(Psource2^2+Qsource2^2); //The apparent power delivered by the source with shunt capacitor in MVA
printf('a. Without Capacitor');
printf('\nThe magnitude of line current is %f kA and %f degree',abs(Iline1),atand(imag(Iline1)/real(Iline1)));
printf('\nThe magnitude of voltage drop in the line is %f kV and %f degree',abs(Vdrop1),atand(imag(Vdrop1)/real(Vdrop1)));
printf('\nThe magnitude of voltage drop in the load is %f kV and %f degree',abs(Vload1),atand(imag(Vload1)/real(Vload1)));
printf('\nThe real and reactive power delivered to the three phase load is %f MW and %f MVAR',Pload1,Qload1);
printf('\nThe load power factor is %f lagging',pf1);
printf('\nThe real and reactive power losses in the line is %f MW and %f MVAR',Pline1,Qline1);
printf('\nThe real power, reactive power and Apparent power delivered by the source is %f MW , %f MVAR and %f MVA',Psource1,Qsource1,Ssource1);
printf('\n\n\nb. With Capacitor');
printf('\nThe magnitude of line current is %f kA and %f degree',abs(Iline2),atand(imag(Iline2)/real(Iline2)));
printf('\nThe magnitude of voltage drop in the line is %f kV and %f degree',abs(Vdrop2),atand(imag(Vdrop2)/real(Vdrop2)));
printf('\nThe magnitude of voltage drop in the load is %f kV and %f degree',abs(Vload2),atand(imag(Vload2)/real(Vload2)));
printf('\nThe real and reactive power delivered to the three phase load is %f MW and %f MVAR',Pload2,Qload2);
printf('\nThe load power factor is %f lagging',pf2);
printf('\nThe real and reactive power losses in the line is %f MW and %f MVAR',Pline2,Qline2);
printf('\nThe reactive power delivered by the shunt capacitor bank is %f MVAR',Qc);
printf('\nThe real power, reactive power and Apparent power delivered by the source is %f MW , %f MVAR and %f MVA',Psource2,Qsource2,Ssource2);
//The third part of this question cannot be executed in SCILAB because of its theoritical nature
|
28c839bc31240a0ba8716f310aec3b393c0f773d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2153/CH5/EX5.9/ex_5_9.sce | a76862bf4492e7f62c8753c052724b3e4ba03838 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 311 | sce | ex_5_9.sce | // Example 5.9: mobility and drift velocity
clc, clear;
// given :
b=6.5*10^7; // conductivity in ohm^-1.m^-1
e=1.602*10^-19; // in C
n=6*10^23; //
E=1; // in V/m
mu=b/(e*n);
v=mu*E;
disp(mu,"mobility ,mu(m^2/volt-sec) = ")
disp(v,"drift velocity,v(m/sec) = ")
// mobility and drift is calculated wrong in book
|
d693d4fecc0685e7ede6f60c1c381b1ea3240dd1 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/sci2blif_added_blocks/gnd_i.sce | f5054a3a5183104d4cb1a8881ed39fa2a757248b | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 224 | sce | gnd_i.sce | //************************** GND IN Analog ********************************
if(blk_name.entries(bl)=='gnd_i') then
chgnet_dict=[chgnet_dict;'net'+ string(blk(blk_objs(bl),2+numofip))+"_..",'gnd ']
chgnet_tf=%t;
end
|
ff9a10da1e6d332536114b468bc9ab3e49390526 | f42e0a9f61003756d40b8c09ebfe5dd926081407 | /TP3/trace2.sci | a7d5ee60ba4c2e7c556784e9b38ad768560ea43a | [] | no_license | BenFradet/MT09 | 04fe085afaef9f8c8d419a3824c633adae0c007a | d37451249f2df09932777e2fd64d43462e3d6931 | refs/heads/master | 2020-04-14T02:47:55.441807 | 2014-12-22T17:34:50 | 2014-12-22T17:34:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 280 | sci | trace2.sci | function[] = trace(N, T, cc)
exec('calcg.sci', -1);
if N - floor(N) <> 0 | N <= 0
error('N has to be int > 0');
end
t = linspace(1, 6, N);
gt = zeros(1, N);
for i = 1:N
gt(i) = calcg(t(i), T, cc);
end
plot(t, gt);
endfunction
|
75ef3553197787182c3c8a47d99ccc33b8ba8220 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1748/CH2/EX2.5/Exa2_5.sce | 06746163aa1743b5011dd632bfd4572fe3b7d3c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | Exa2_5.sce | //Exa 2.5
clc;
clear;
close;
//Given data :
P=2;//no. of poles
f=50;//in Hz
S=4;//in %
//Part (i) :
Ns=f/P;//in rps
Ns=Ns*60;//in rpm
disp(Ns,"Synchronous speed in rpm : ");
//Part (ii) :
disp("Slip = "+string(S)+"% or "+string(S/100));
//Part (iii) :
N=Ns*(1-S/100);//in rpm
disp(N,"Actual speed in rpm :"); |
af92120f924510d71a67b1252ba5a5b7639e6946 | 449d555969bfd7befe906877abab098c6e63a0e8 | /650/CH9/EX9.15/15.sce | 11354326c491af59957606f0c993bc7661ed39f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 182 | sce | 15.sce | clc
// x=r*(1-cos(wt))
// v=r*wsin(wt)
// V=2*A*w*r
// Q=V/2/%pi
// Q=A*w*r/%pi
// Q_peak=A*w*r
// Q_peak/Q=%pi
disp("The ratio of peak to average flow =")
disp(%pi)
|
3827ee14c2d3ef0746b2847c7db16df1a388e3e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH10/EX10.7/example10_7.sce | 3dd6faabbbf87067aa6db9ed74d25eddf73a6b0a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 235 | sce | example10_7.sce | r1=10^3;
r2=2*10^3;
r3=3*10^3;
r4=4*10^3;
r5=5*10^3;
v1=10;
v2=20;
vr2=v1*r2/(r1+r2);
vr4=v2*r4/(r4+r5);
vth=vr4-vr2;
rth=r1*r2/(r1+r2)+r4*r5/(r4+r5);
i=vth/(rth+r3);
disp("the current (in mA) through R3 is"); disp(i*10^3); |
1deb7a19f1e42d954c74389edff9d0c6a6e81a2d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH8/EX8.1.37/8_1_37.sce | 0d5a0bf7a19cb2a1b61e4a2588e1595169885060 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 365 | sce | 8_1_37.sce | clc
clear
//Input data
M=0.8 //Mach number
T=20+273 //Temperature in K
k=1.4 //Adiabatic constant
//Calculation
To=T*(1+(((k-1)/2)*M^2)) //Temperature of air at nose of aircraft in K
To1=To-273 //Temperature of air at nose of aircraft in degree Centigrade
//Output
printf('Temperature of air at nose of aircraft is %3.1f degree Centigrade',To1)
|
0daa3e201fee65d71f0fcc0966ab74f8cbe4ef74 | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH5/EX5.2c/eg5_2c.sce | 024de4310fae7c319922916254096de6668cef9f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 62 | sce | eg5_2c.sce | Xlam = 3.2;
i =2;
prob = cdfpoi("PQ", i, Xlam);
disp(prob) |
960a92fb4f1effb787ecc994db083a5dbceab7d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH4/EX4.1/4_1.sce | f56d1a4bef1bf36f92742a5849c3ecdd7e0f2531 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 328 | sce | 4_1.sce | clc;
clear;
d=0.08*10^-2 //distance between parallel slits in m
Beta=6*10^-4 //fringe width in m
v=8*10^11*10^3 //frequency of light in Hz
c=3*10^8 //velocity of light in m/s
//calculation
lambda=c/v //wavelength in m
D=(Beta*d)/lambda
mprintf("The distance of the screen from the slits should be = %1.2f m",D)
|
1d2f0fd5737f921abfd2e6cfdd3bc0455958168c | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH11/EX11.8/example_11_8.sce | b76badfe2c02d025b7aab191a9e298bb6e58e335 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 974 | sce | example_11_8.sce | // 6dB/octave=20 dB/decade
y1=poly([0 0 1],'s','coeff'); //zero at origin for initial slope
wc1=0.5
y2=poly([1 1/wc1],'s','coeff')
wc2=1
y3=poly([1 1/wc2],'s','coeff')
wc3=5
y4=poly([1 1/wc3],'s','coeff')
//to find k
disp("equation at w=0.5 is y=20*Log(w)+c")
k1=poly([32-20*log10(1) 0],'s','coeff') // at w=1 32=20*log(1)+c
disp(k1,"where c is ")
k=poly([32+20*log10(0.5) 0],'s','coeff') //magnitude at w=0.5
disp("equation of initial line is y=40*(log(w)+c1)")
k2=poly([26-40*log10(0.5) 0],'c','coeff') // at w=1 32=20*log(1)+c
c1=k2
disp(c1,"where c1 is ")
//now the initial line must have magnitude zero at w=1 for k=1.but at w=1; magnitude is k3 as below, which is due to 'k'
k3=poly([40*log10(1)+26-40*log10(0.5) 0],'c','coeff')
k=10^((40*log10(1)+26-40*log10(0.5))/(20))
TF= k*(y1)/((y2)*(y3)*(y4))
disp(TF,"transfer function = ")
|
5926104e43f111d39484288262927bdd3fdb030f | 8f7591abcdf9c9a3bb80d7e884a021208a498bc2 | /Scilab/OracleDG.sci | 777d0c3d6093e8a71c9dd0c7208c1a275662177a | [] | no_license | Marc-AntoineA/DistribEauPti | 8904562116d822ac075ca232193d8c0301873d49 | 71e96ce6a310e5b0969b573dc272e0a06b36e368 | refs/heads/master | 2021-01-25T13:19:09.698064 | 2018-05-01T21:21:46 | 2018-05-01T21:28:19 | 123,558,419 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,074 | sci | OracleDG.sci |
function [q_diez] = calc_q_diez(lambda)
//calcule le q_diez, résultat le la minimisation en q
z0 = (Ad'*lambda + Ar'*pr) ./ r;
q_diez = sign(z0) .* sqrt(abs(z0));
//q_diez = - z ./ sqrt(abs(z));
endfunction
function [L] = lagrange(q, lambda)
//calcule le lagrangien du problème en q, lambda
L = q'*(r.*q.*abs(q))/3 + pr'*Ar*q + lambda'*(Ad*q - fd);
endfunction
function [F, G, ind] = OracleDG(lambda, ind)
F = 0
G = 0
z0 = (Ad'*lambda + Ar'*pr) ./ r;
q_diez = - sign(z0) .* sqrt(abs(z0));
//q_diez = - z0 ./ sqrt(abs(z0));
if ind==2 then
//-----------valeur de phi en lambda
[F] = lagrange(q_diez, lambda);
end
if ind==3 then
//-----------gradient de phi par rapport à lambda
G = Ad*q_diez - fd;
end
if ind==4 then
//-----------valeur de phi en lambda
[F] = lagrange(q_diez, lambda);
//-----------gradient de phi par rapport à lambda
G = Ad*q_diez - fd;
end
F = -F;
G = -G;
endfunction
|
5f2556113a5c15ad95f9c4f88f98110cb1870dd6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH13/EX13.1/EX13_1.sce | 7859c5e438bee216b20171a27fb80c7b73439929 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 727 | sce | EX13_1.sce | //Example13.1 // to design RC phase shift oscillator for the oscillation frequency f = 1 KHz
clc;
clear;
close;
f =1 ; // KHz
C = 0.01 ; // uF
// The oscillation frequency of practical RC phase shift oscillator is defined as
//w = 1/(sqrt(6)*R*C);
// gain of practical RC phase shift oscillator is
//A = R1/R = 29 equation 1
// the frequency selective element resistor
//R = 1/(sqrt(6)*w*C);
R = 1/(sqrt(6)*2*%pi*f*C);
disp('the frequency selective element resistor is = '+string(R)+ ' K ohm ');
// The feedback resistance
R1 = 29*R ; // from equation 1
disp('The feedback resistance is = '+string(R1)+ ' K ohm');
|
c482141a57d600255a5b5680b8dc998fb3008a21 | c09810ccf146237702bc5eedd87109dd496b389a | /ОТУ/2.1/2.1.sce | a244881b37fc837f3023a1f9cad10ae32d211335 | [] | no_license | Krokofol/OOAIDLab | 2d0e5b2ff517dd1e51d8239dc8bb5575b2ed8384 | a583d91a47c9e5f2a56a36b2c3f13bbc794f9517 | refs/heads/master | 2023-03-30T22:04:06.564312 | 2021-04-01T14:22:01 | 2021-04-01T14:22:01 | 339,401,547 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 50 | sce | 2.1.sce | x=[-4:0.01:10];
y = (x^2-11.5)./(x-3);
plot(x, y)
|
5280bbbefd9a5b88010450ac0852447652d2796f | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/argtest.tst | 109beea24c51ba639f3914f1b9b1a0ffa08e44e8 | [
"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 | 59 | tst | argtest.tst | ## Test argument substitution in a script call
!echo $0 $1
|
4a9b17e824d1709b8706522117af2cbbd371c63c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2219/CH9/EX9.13/Ex9_13.sce | 066470771af49c5bf7853a6ee29736b4c6379b9d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 891 | sce | Ex9_13.sce | // Chapter 9 example 13
// Data taken from Ex 12
//------------------------------------------------------------------------------
clc;
clear;
// Given Data
PW = 10^-6; // Pulse width in sec
Pp = 100*10^3; // Peak power in watts
PRF = 1000; // pulse rep.rate
N_target= 20; // no of target hits in 1 dwell period
// Calculations
PE = Pp*PW; // Pulse energy in Joule
LE = N_target *PE; // look energy
DC = PW*PRF // Duty cycle
Pav = Pp*DC; // Average power
Pavg = 10*log10(Pav); // Avg power in dB
Pp_dB = 10*log10(Pp); // Peak power in dB
DCCF = Pp_dB - Pavg // Duty cycle correction factor
// Output
mprintf('Duty cycle correction factor = %d dB',DCCF);
//-----------------------------------------------------------------------------
|
bdd39a567f20c886d53e924605dbe3be47d80d72 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH13/EX13.17/13_17.sce | 770d1ead542bfeaee52e1a940bd9c1c19963c893 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 461 | sce | 13_17.sce | clear;
clc;
R1=2;R2=1;R3=1;R4=2;
A=[R1+R2 R2 -R4;R2 R2+R4 R4;-R1 R1 R4+R3+R1];
B=det(A);
C=[1 R2 -R1;0 R2+R1 R1;0 R4 R4+R3+R1];
D=det(C);
E=[1 -R1;0 R4+R3+R1];
F=[R2+R1 -R1;-R1 R4+R3+R1];
G=[R4+R2 0 -R4;R1 1 R4;-R4 0 R4+R2];
H=[1 R1;0 R4+R3+R1];
I=[R2+R1 R1;R1 R4+R3+R1];
printf("Z1s = %d/%d ohms\n",B,D);
printf(" Z1o = %d/%d ohms\n",det(F),det(E));
printf(" Z2s = %d/%d ohms\n",det(A),det(C));
printf(" Z2o = %d/%d ohms\n",det(I),det(H));
|
808b2baa64377e99140ca265a1a4317b43591325 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2138/CH9/EX9.7.a/ex_9_7_a.sce | 054f3a17ae15c1d68dbcf3956b6d6ebe4b6967df | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 384 | sce | ex_9_7_a.sce | //Example 9.7.a //find ampere-hour efficiency
clc;
clear;
close;
I=30;// in amperes
t=6;// in hours
Vt=2;// terminal voltage
Ic=40;// in amperes
tc=5;// in hours
Vc=2.5;// in volts
Aho=I*t;// ampere hour output of the battery
Ahi=Ic*tc;// ampere hour input of the battery
nAh=(Aho/Ahi)*100;// ampere hour efficiency
disp(nAh,"ampere hour efficiency of the battery in percentage is")
|
582e038ba9ed1657bfb956420a5d2a0be413cca7 | 9bc415d58bf063a1bca303fea640e644333dbdbd | /Scilab/Sinais_e_Sistemas/aliasing_tempo.sci | fe6424c106d7012227776e5071ade3ab38057c9c | [] | no_license | Roast-Lord/SMGcodes | 36e55be6c1cc17af91ab2e3f5117c78684f20604 | b75107be829fb4373dc1bc4b8696fe4b9cec437a | refs/heads/main | 2023-07-05T05:25:50.557705 | 2021-08-17T17:46:25 | 2021-08-17T17:46:25 | 301,012,145 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 522 | sci | aliasing_tempo.sci | function aliasing_tempo(f1,f2)
clf;
T=2.5
t=[0:0.001:T];
fs=64;
N=T*fs;
n=[0:N-1];
ts=n*(1/fs);
m=[-N/2:N/2-1];
ms=m*fs/N;
x=sin(2*%pi*f1*t)+0.5*sin(2*%pi*f2*t+3*%pi/4);
xn=sin(2*%pi*f1*ts)+0.5*sin(2*%pi*f2*ts+3*%pi/4);
Xn=fft(xn);
subplot(121)
plot(t,x)
plot2d3(ts,xn);
s=sprintf("x(n) f1=%.1f kHz f2=%.1f kHz",f1,f2)
title(s)
xlabel("t ms")
subplot(122)
plot2d3(ms,fftshift(abs(Xn)));
title("|X(m)|")
xlabel("f kHz")
endfunction
|
bc148702942e5862115b4c4cb37edb923ce4e91d | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH3/EX3.17/example17_sce.sce | 01dc9dc639406b1c309b0eceb8c9b5375d52f160 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sce | example17_sce.sce | //chapter 3
//example 3.17
//page 110
printf("\n")
printf("given")
Vz=6.2;Pd=400*10^-3;Es=16;
Izm=Pd/Vz
R1=(Es-Vz)/Izm
Pr1=(Izm^2)*R1
Izmin=5*10^-3;
Izmax=Izm-Izmin;
printf("maximum current is %3.4fA\n",Izmax) |
4194fc2b59b81b375135228dc67e79cfcb6ce79d | 449d555969bfd7befe906877abab098c6e63a0e8 | /122/CH10/EX10.4/exa10_4.sce | 814d5d882ef0e6ced5e0975545a2ece3d9ebd40a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 528 | sce | exa10_4.sce | // Example 10-4
// Design of servo system with integrator in the plant
clear; clc;
xdel(winsid()); //close all windows
mode(0)
// please edit the path
// cd "<path to dependencies>";
// exec("plotresp.sci");
s = %s;
Gp = cont_frm( 1, s*(s+1)*(s+2));
A = Gp.A
B = Gp.B
J = [-2 + %i*2*sqrt(3) , -2 - %i*2*sqrt(3), -10];
K = ppol(A,B,J)
A1 = A - B*K;
B1 = [0; 0; 160];
C1 = [1 0 0];
D1 = [0];
G = syslin('c',A1,B1,C1,D1); ssprint(G);
t = 0:0.01:5;
u = ones(1,length(t));
plotresp(u,t,G,'Unit-Step Response of servo system'); |
90e11979418af58861a0c66ad9f69f12f612c2cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2792/CH5/EX5.14/Ex5_14.sce | 417bf480d950c123ad616b725c04ec8b46deb19b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 886 | sce | Ex5_14.sce | clc
e = 1.6*10^-19
disp("e= "+string(e)+"C")//initializing value of charge of electron
I= 1*10^-3
disp("I= "+string(I)+"A") //initializing value of forward current
kbT = 0.026
disp("kbT = "+string(kbT)+"eV") //initializing value of kbT at 300K
Tp = 10^-6
disp("Tp= "+string(Tp)+"s")//inializing value of minority carrier lifetime
Gs = (I)/(kbT)
disp("The diode conductance is Gs = (e*I)/(kbT)= "+string(Gs)+"A/V")//calculation
Cdiff = (I*Tp)/(2*kbT)
disp("The diffusion capacitance is Cdiff = (e*I*Tp)/(2*kbT)= "+string(Cdiff)+" F")//calculation
// The diffusion capacitance is much larger than junction capacitance hence neglecting junction capacitance
Y = Gs+(%i*2*%pi*10^6*Cdiff)
disp("The admittance of the diode is Y = Gs+%i(2*%pi*10^6*Cdiff)= "+string(Y)+" A/V")//calculation
// Note : due to different precisions taken by me and the author ... my answer differ
|
dde95a9e76807742638515ef693ea9b3067e7a04 | e9d5f5cf984c905c31f197577d633705e835780a | /GED/nonlinear/scilab/functions/contamined_normal/cont_nor_nonlin_functions.sci | 53256733401b80b1a86628333b8786b6a0abcd26 | [] | 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 | 1,052 | sci | cont_nor_nonlin_functions.sci | // Data Reconciliation Benchmark Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
// aux functions to sum of absolute errors
// it is necessary to install the "diffcode" package using ATOMS in Scilab
// Contaminated Normal Robust function, according to Ozyurt and Pike - Comp. & Chem. Eng.
// 28, p. 381-402, (2004)
function f = objfun ( x )
e1 = (xm(red)-x(red))./(var(red).^(0.5));
f = sum( -(log( (1 - const1_cont_nor)*exp(-0.5*e1.^2) + (const1_cont_nor/const2_cont_nor)*exp(-e1.^2/(2*const2_cont_nor^2)))));
endfunction
// gradient of the objetive function
function gf = gradf ( x )
// in the future we can express this function analytically
gf = diffcode_jacobian(objfun,x)';
endfunction
function H = hessf ( x )
// For the robust functions, the lagrangean of the objective function is not constant
// as in weigthed least squares.
// in the future we can express this function analytically
H = diffcode_hessian(objfun,x);
endfunction
|
22840443f1231a3bf09732e74c5ef2b255aa3439 | 449d555969bfd7befe906877abab098c6e63a0e8 | /55/CH5/EX5.5/5ex5.sci | 87212c52b634d9b3755d18101d4c4d6bcc7ca782 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 180 | sci | 5ex5.sci | A=[1,-2,3;0,4,5];
B=[4,6,8;1,-3,-7];
k=A+B;
disp(k,'The addition of the two matrices A and B is:')
m=3*A;
disp(m,'The multiplication of a vector with a scalar is:')
p=2*A-3*B |
7c7cf03d650dee656c176be780c7b61cf40ab8ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH16/EX16.4/16_4.sce | cd223bb08854c4072b474a0a73d77379be0634b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 185 | sce | 16_4.sce | clc
//initialisation of variables
M= 19
N= 13
r= 0
n= 6
no= 13
c= 24
//CALCULATIONS
ns= n*(M-N+1)-r
nk= n*no-c
//RESULTS
printf ('Ns= %.f ',ns)
printf (' \n Nk= %.f ',nk)
|
31e38bb44fb098cf3090ccef41a4fa93974186bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1397/CH9/EX9.6/9_6.sce | 200d9a9e12f2a876d7a987a0d8e74f99877193d3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 444 | sce | 9_6.sce | //clc();
clear;
//To compute the polarisation
A=6.45*10^-4; //area of capacitor plates in m^2
d=2*10^-3; //capacitor plates seperation in m
V=12; //potential in V
epsilonr=5.0; //dielectric constant
N=6.023*10^23; //avagadro number in mol inverse
epsilon0=8.85*10^-12;
alphae=(epsilon0*(epsilonr-1))/N;
printf("polarisation in Fm^2 is ");
disp(alphae);
//answer in book is wrong
|
860cf89988563d4f136e0dbd48cb6d05f5ea0c0f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH13/EX13.12/Ex13_12.sce | de4340b1ed7d82503e497e2fbb310dd84ff17ea1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 357 | sce | Ex13_12.sce | //chapter13
//example13.12
//page286
R1=150 // kilo ohm
R2=20 // kilo ohm
Re=2.2 // kilo ohm
Rc=12 // kilo ohm
Vcc=20 // V
Vbe=0.7 // V
V2=Vcc*R2/(R1+R2) // voltage across R2
Ve=V2-Vbe // voltage across Re
Ie=Ve/Re
re_dash=1d-3*25/Ie // in kilo ohm
Av=Rc/re_dash
printf("voltage gain = %.3f \n",Av)
// the accurate answer is 360.642
|
9caedb27b4b17aaa2de03bf41157024d66ffb7e3 | da5b40d917ec2982828bd9bdf06b18b7bf189f26 | /sim/scripts/hxprofiles.tst | bf9f1a18dcef33a3c3d52a7b177cd5bda2782b6b | [] | no_license | psy007/NNPC-CHEMICAL-SIM- | 4bddfc1012e0bc60c5ec6307149174bcd04398f9 | 8fb4c90180dc96be66f7ca05a30e59a8735fc072 | refs/heads/master | 2020-04-12T15:37:04.174834 | 2019-02-06T10:10:20 | 2019-02-06T10:10:20 | 162,587,144 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 830 | tst | hxprofiles.tst | hx = Heater.HeatExchangerUA()
cd /
$thermo = VirtualMaterials.Advanced_Peng-Robinson
. -> $thermo
cd thermo
/thermo + WATER HYDROGEN_SULFIDE METHANE ETHANE PROPANE VALERIC_ACID
cd /hx
/hx.side1.In.T = 200
/hx.side1.In.P = 1000
/hx.side1.In.MoleFlow = 500
cd /hx.side1.In.Fraction
/hx.side1.In.Fraction = 0.0 0.0 1 1 1 0.0
cd /hx
/hx.side0.Out.T = 105
/hx.side0.Out.P = 100
/hx.side0.Out.MoleFlow = 1000
cd /hx.side0.Out.Fraction
/hx.side0.Out.Fraction = 1 0.0 0.0 0.0 0.0 0.0
cd /hx
/hx.side0.DeltaP.DP = 0
/hx.side1.DeltaP.DP = 0
/hx.side1.Out.T = 150.0
/hx.heatTransfer0_1.Energy
/hx.heatTransfer0_1.Energy_Acum
/hx.heatTransfer0_1.LMTD
/hx.side0.T
/hx.side1.T
/hx.NumberSegments = 7
/hx.heatTransfer0_1.Energy
/hx.heatTransfer0_1.Energy_Acum
/hx.heatTransfer0_1.LMTD
/hx.side0.T
/hx.side1.T
copy /hx
paste /
/hxClone.side0.T |
a88a3e4a622bab56142a3fcf64670588e233c701 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1928/CH2/EX2.21.5/ex2_21_5.sce | cad5948c7f3e12e6b243a2cf0744a24044f96fa8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 459 | sce | ex2_21_5.sce | //Chapter-2,Example2_21_5,pg 2-48
Eg=1.2 //energy gap
T1=600 //temperature
T2=300 //temperature
//since ue>>uh for intrinsic semiconductor
//s=ni*e*ue
K=8.62*10^-5 //Boltzman constant
s=%s
s1=s*exp((-Eg)/(2*K*T1))
s2=s*exp((-Eg)/(2*K*T2))
m=(s1/s2)
printf('Ratio between conductivity =')
disp(m)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.