blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
214
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
50
| license_type
stringclasses 2
values | repo_name
stringlengths 6
115
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 21
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 141k
586M
⌀ | star_events_count
int64 0
30.4k
| fork_events_count
int64 0
9.67k
| gha_license_id
stringclasses 8
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 50
values | src_encoding
stringclasses 23
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 1
class | length_bytes
int64 5
10.4M
| extension
stringclasses 29
values | filename
stringlengths 2
96
| content
stringlengths 5
10.4M
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ea7f2785664efdd44d2acb8c429ec3c65ec3378e
|
ccd668354774dcc20ed466510e78952e1205ad54
|
/Magnitude-Phase-Response.sce
|
450a7d9d9e670adaacb3d9e01673f5ff4d156637
|
[
"MIT"
] |
permissive
|
nikhita/filter-theory
|
6d9d9bb7375acd1c1f545fd9b7ee7b6dc90a56b5
|
031c8dd652bbe50e0130f83b9884d6a11b2c7339
|
refs/heads/master
| 2023-08-16T13:23:28.993482 | 2017-04-09T16:23:46 | 2017-04-09T16:23:46 | 87,696,376 | 2 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,887 |
sce
|
Magnitude-Phase-Response.sce
|
clear;
clc;
clf;
// define a polynomial variable z
z = poly(0,'z');
// take the numerator and denominator as input
n1 = input("enter numerator = ")
n_len = length(n1);
n = poly(n1,'z','c');
d1 = input("enter denominator = ")
d_len = length(d1);
d = poly(d1,'z','c');
// form transfer function and plot pole-zero diagram
h = syslin('c',n./d);
subplot(3,1,1);
plzr(h);
// take a complex number 'a' to be 'i' i.e. a=0+1i
a = complex(0,1);
// iterate over numerator and denominator to replace
// z by exp(j*w)
w = -%pi:%pi/8:%pi;
// since there are intervals of pi/8 from -pi to pi, there will be totally 8+1+8 = 17 values
for i=1:17
sum1 = 0;
for j = 1:n_len
sum1 = sum1 + (n1(j)*exp(a*(j-1)*w(i)));
x = 10*imag(sum1);
x = round(x);
x = x/10;
y = 10*real(sum1);
y = round(y);
y = y/10;
sum1 = complex(y,x);
end
sum2 = 0;
for j = 1:d_len
sum2 = sum2 + (d1(j)*exp(a*(j-1)*w(i)));
x = 10*imag(sum2);
x = round(x);
x = x/10;
y = 10*real(sum2);
y = round(y);
y = y/10;
sum2 = complex(y,x);
end
// get the transfer function
sumn(1,i) = sum1/sum2;
b = real(sumn(1,i));
c = imag(sumn(1,i));
// get magnitude response
u(1,i) = abs(sumn(1,i));
// get phase response
// first check that real part is not zero
if b~= 0 then
p(1,i) = atand(c/b); // caluclates tan inverse
else
if c > 0 then
p(1,i) = %pi/2;
else
p(1,i) = 3*%pi/2;
end
end
end
// plot magnitude response
subplot(312);
ylabel("magnitude");
xlabel("w");
title("Magnitude response");
plot(w,u);
// plot phase response
subplot(313);
ylabel("phase");
xlabel("w");
title("Phase response");
plot(w,p);
|
6b4b044d7cd5db1540ac944ee3726d3e3c5eb83b
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.3/macros/arma/acf.sci
|
494bf5f4cda9c6dec2a27173c24fceb3bdcc99ed
|
[
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] |
permissive
|
clg55/Scilab-Workbench
|
4ebc01d2daea5026ad07fbfc53e16d4b29179502
|
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
|
refs/heads/master
| 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 520 |
sci
|
acf.sci
|
function [ac,mean]=acf(x,n,minim,maxim)
//function acp(x,n,[minim,maxim])
// Autocorrelation for one-deimensional process
[lhs,rhs]=argn(0)
if rhs <= 1 ; n=prod(size(x))/4;end
if rhs <= 2 ; minim=-1.0;end
if rhs <= 3 ; maxim= 1.0;end
[cov,mean]=corr(x,n+1);
ac=cov'/cov(1);
plot2d3("onn",(0:n)',ac,[1],"011"," ",[0,minim,n,maxim]);
//stde=sqrt((1+2*ac(2:n+1)'*ac(2:n+1))*1/prod(size(x)))
stde=2*sqrt(1/prod(size(x)));
plot2d( [0,0,0;n,n,n],[0,stde,-stde;0,stde,-stde],[1,2,2],"000")
xtitle('Autocorrelation Function ');
|
57a9a64d99171d1ac6f5fb9621e72a6247d572a3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1271/CH15/EX15.10/example15_10.sce
|
64240c19377c3df75b164c656281f22c6ad0dfc9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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
|
example15_10.sce
|
clc
// Given that
v = 3e7 // speed of electron in m/sec
e = 1.6e-19 // charge on an electron in C
m = 9.1e-31 // mass of electron in kg
h = 6.62e-34 // Planck constant in J-sec
c = 3e8 // speed of light in m/sec
// Sample Problem 10 on page no. 15.28
printf("\n # PROBLEM 10 # \n")
printf("Standard formula used \n")
printf(" del_x*del_p = h/(4*pi) \n m = m_0/(1-(v^2/c^2))^1/2 \n")
delta_p = m * v / sqrt(1 - (v/c)^2)
delta_x = h / (4 * %pi * delta_p)
printf("\n Uncertainty in determining the position is %e m.",delta_x)
|
7651d75b987e4907e5bd40c2870e61d24f319837
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/27/CH7/EX7.3.2/Example_7_3_2.sce
|
e33eeea10be0091208d9261f4c0073b70927b131
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 792 |
sce
|
Example_7_3_2.sce
|
function xd=linear732(t,x)
xd(1)=-x(1)+2*x(2)+(x(1)^2)*x(2);
xd(2)=(4)-2*x(2)-(x(1)^2)*x(2);
endfunction
bound=[-4,-4,4,4]; //Bounds of x-axis and y-axis as [xmin ymin xmax ymax], change them according to your needs.
nrect=22; //increase it to get more number of curves, i.e. more information will be available.
set(gca(),"auto_clear","off") //hold on
x=linspace(bound(1),bound(3),nrect);
y=linspace(bound(2),bound(4),nrect);
x0=[];
for i=1:22
x0=[x(i);y(i)];
t0=0;
t=0:0.01:3000;
xout=ode(x0,t0,t,linear732);
plot2d(xout(1,:),xout(2,:));
end
xtitle('Phase Portrait','x-axis ( x )','y-axis ( y )')
disp("From the figure we can clearly observe that the trajectories are giving it a limit cycle shape.")
|
e5293bfa8a59689ff87597efdf9ed821ea26b7f7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/25/DEPENDENCIES/parallel_impedence.sce
|
63ea2d9fa8e3ab4e3cf2e2235b81927d9e18a0c4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 111 |
sce
|
parallel_impedence.sce
|
//function example:-5.4,page no.-221.
function[Z]=parallel_impedence(Z1,Z2)
Z=(Z1*Z2)/(Z1+Z2);
endfunction
|
ab1dfb5311d4d0fbe79f4c153e0760c458897623
|
0592c9e4cfbb77a0755aff6f0c798d9fe31f6ff4
|
/scilab/CDO_Pricer/scilab/computation.sci
|
12f1af6052fbdffeb9ba65e51a96ad3cc49acc36
|
[] |
no_license
|
FinancialEngineerLab/premia-13-cpp_FICC
|
e19caa6a9cadb4ad1361053efc0dfc9418071cf9
|
e271da627dbfc8c2c1f7e9f700766544f64c72b2
|
refs/heads/master
| 2023-03-16T11:11:26.830681 | 2016-04-19T05:58:16 | 2016-04-19T05:58:16 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 3,514 |
sci
|
computation.sci
|
select Method,
case 1 then
if (~(isdef('product'))|(product == [])) then x_message('Product does not exist !'); abort; end;
if (~(isdef('model2'))|(model2 == [])) then x_message('Model does not exist !'); abort; end;
methods = ['Number of defaults - Hull & White';'Number of defaults - Laurent & Gregory';'Recurrence (homogenous case only) - Hull & White';'Recurrence - Hull & White';'FFT - Laurent & Gregory';'Monte Carlo';'Monte Carlo + Control Variable';'Saddlepoint']
method = x_choose(methods, 'Which method ?')
params_method_txt=[];
params_method_def=[];
select method,
case 1 then params_method_txt(1) = 'Subdivisions of the time';
params_method_def(1) = '4';
case 2 then params_method_txt(1) = 'Subdivisions of the time';
params_method_def(1) = '4';
case 3 then params_method_txt(1) = 'Subdivisions of the time';
params_method_def(1) = '4';
params_method_txt(2) = 'Subdivisions of the losses';
params_method_def(2) = '100';
case 4 then params_method_txt(1) = 'Subdivisions of the time';
params_method_def(1) = '4';
params_method_txt(2) = 'Subdivisions of the losses';
params_method_def(2) = '100';
case 5 then params_method_txt(1) = 'Subdivisions of the time';
params_method_def(1) = '4';
params_method_txt(2) = 'Subdivisions of the losses';
params_method_def(2) = '100';
case 6 then params_method_txt(1) = 'Number of Monte-Carlo iterations';
params_method_def(1) = '10000';
case 7 then params_method_txt(1) = 'Number of Monte-Carlo iterations';
params_method_def(1) = '10000';
params_method_txt(2) = 'Subdivisions of the time for the control variate';
params_method_def(2) = '4';
case 8 then params_method_txt(1) = 'Subdivisions of the time';
params_method_def(1) = '4';
end
params_method = x_mdialog('Parameters', params_method_txt, params_method_def);
if (params_method == []) then
abort;
else
params_method_def = params_method;
end;
case 2 then
params_method_txt=[];
params_method_def=[];
if((model2_def(4)=='1')) then
params_method_txt(1)='spread [0.00 0.03]';
params_method_def(1)='24';
params_method_txt(2)='spread [0.03 0.06]';
params_method_def(2)='81';
params_method_txt(3)='spread [0.06 0.09]';
params_method_def(3)='39';
params_method_txt(4)='spread [0.09 0.12]';
params_method_def(4)='12';
params_method_txt(5)='spread [0.12 0.22]';
params_method_def(5)='9';
params_method_txt(6)='spread - index CDS';
params_method_def(6)='36.375';
else
params_method_txt(1)='spread [0.00 0.03]';
params_method_def(1)='35';
params_method_txt(2)='spread [0.03 0.07]';
params_method_def(2)='292';
params_method_txt(3)='spread [0.07 0.1]';
params_method_def(3)='85';
params_method_txt(4)='spread [0.1 0.15]';
params_method_def(4)='39';
params_method_txt(5)='spread [0.15 0.3]';
params_method_def(5)='12';
params_method_txt(6)='spread -CDX index CDS';
params_method_def(6)='41';
end;
params_method = x_mdialog('Parameters', params_method_txt, params_method_def);
if (params_method == []) then
abort;
else
params_method_def = params_method;
end;
//function print_method()
//for (i = 1:size(params_method_def,'*')),
//printf(" %s: %s\n", params_method_txt(i), params_method_def(i));
// end;
//endfunction
//exec('last_computation.sci',-1);
end;
function print_method()
for (i = 1:size(params_method_def,'*')),
printf(" %s: %s\n", params_method_txt(i), params_method_def(i));
end;
endfunction
exec('last_computation.sci',-1);
|
d7f65107c208b6a220aba08795872eeafe1c15e7
|
aff46b76a63ef72594e71ad416ae8874689839ba
|
/C_square_wave.sce
|
ec4eae445cc406d1f56d0cc14e16ad8430eda287
|
[] |
no_license
|
bitz1119/scilab_code
|
1ad6d800661d50975219325083f1dad6232ce51b
|
fa8501bc0f9527e776510fc2ecf04b351f4c067f
|
refs/heads/master
| 2021-05-09T19:15:18.261766 | 2018-04-13T19:03:00 | 2018-04-13T19:03:00 | 118,636,227 | 0 | 1 | null | 2020-09-30T19:32:49 | 2018-01-23T16:21:04 |
Scilab
|
UTF-8
|
Scilab
| false | false | 366 |
sce
|
C_square_wave.sce
|
clc;
disp('enter the multiple of pi');
n = input('');
function y = u(t)
for i = 1:n
y(find(t>=0 + ((i-1)*2*3.14) & (t<3.14 + (i-1)*2*3.14)) = 1;
y(find(t>=3.14 + ((i-1)*2*3.14)) & (t<2*3.14 + ((i-1)*2*3.14))) = 1;
end
endfunction
t = (0:0.01:n*2*3.14);
y = u(t);
plot(t,y,'g.');
xtitle('Graph of square wave function','t','u(t)');
|
ce79c761bed90e2be4622204df50d43c81142883
|
b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf
|
/TD4/Scripts/sans_memoire.sce
|
92144775dc171ccf43b2e11440061c516ddf719a
|
[] |
no_license
|
MFrizzy/Modelisation
|
51794b2edf421f9d2206cb73972d8d8d7b1e9759
|
0ca819afbcbe00f58f3bbaa8fc97164ae2c1d3cb
|
refs/heads/master
| 2021-08-29T12:02:20.042037 | 2017-12-13T22:39:21 | 2017-12-13T22:39:21 | 106,943,303 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 6,060 |
sce
|
sans_memoire.sce
|
clc;
load('C:\Users\tangu\OneDrive\Documents\GitHub\Modelisation\TD4\NetworkData.sod')
//SERVER1
extremesS1 = [min(t_s1), max(t_s1)] // calcul du min et du max
moyenneS1 = mean(t_s1) // calcul de la moyenne
medianeS1 = perctl(t_s1,50) // calcul de la mediane
// calcul de la variance et de l'écart-type
vS1 = variance(t_s1)
sS1 = stdev(t_s1)
// calcul de l'étendue
etendueS1 = extremesS1(2) - extremesS1(1)
Q1S1 = perctl(t_s1, 25) // premier quartile
Q3S1 = perctl(t_s1, 75) // troisième quartile
IQS1 = Q3S1(1) - Q1S1(1) // intervalle interquartile
index_bool1 = (t_s1 > 1);
tab_s1 = t_s1(index_bool1);
new_t_s1 = tab_s1 - 1;
extremes1 = [min(new_t_s1), max(new_t_s1)] // calcul du min et du max
moyenne1 = mean(new_t_s1) // calcul de la moyenne
mediane1 = perctl(new_t_s1,50) // calcul de la mediane
// calcul de la variance et de l'écart-type
v1 = variance(new_t_s1)
e1 = stdev(new_t_s1)
// calcul de l'étendue
etendue1 = extremes1(2) - extremes1(1)
Q1_1 = perctl(new_t_s1, 25) // premier quartile
Q3_1 = perctl(new_t_s1, 75) // troisième quartile
IQ1 = Q3_1(1) - Q1_1(1) // intervalle interquartile
comparaison1 = [moyenne1 - moyenneS1, mediane1(1) - medianeS1(1), v1 - vS1, e1 - sS1, etendue1 - etendueS1]
subplot(1,2,1)
deciles=perctl(t_s1,10:10:90);
for i=2:10
ClassesDeciles(i)=deciles(i-1)
end
ClassesDeciles(1)=min(t_s1)
ClassesDeciles(11)=max(t_s1)
histplot(ClassesDeciles,t_s1,style=2)
legend("Histogramme avec temps de service")
subplot(1,2,2)
histplot(ClassesDeciles,new_t_s1,style=1)
legend("Histogramme avec temps de services à partir de 1 seconde")
//SERVER2
extremesS2 = [min(t_s2), max(t_s2)] // calcul du min et du max
moyenneS2 = mean(t_s2) // calcul de la moyenne
medianeS2 = perctl(t_s2,50) // calcul de la mediane
// calcul de la variance et de l'écart-type
vS2 = variance(t_s2)
sS2 = stdev(t_s2)
// calcul de l'étendue
etendueS2 = extremesS2(2) - extremesS2(1)
Q1S2 = perctl(t_s2, 25) // premier quartile
Q3S2 = perctl(t_s2, 75) // troisième quartile
IQS2 = Q3S2(1) - Q1S2(1) // intervalle interquartile
index_bool2 = (t_s2 > 1)
tab_s2 = t_s2(index_bool2)
new_t_s2 = tab_s2 - 1
extremes2 = [min(new_t_s2), max(new_t_s2)] // calcul du min et du max
moyenne2 = mean(new_t_s2) // calcul de la moyenne
mediane2 = perctl(new_t_s2,50) // calcul de la mediane
// calcul de la variance et de l'écart-type
v2 = variance(new_t_s2)
e2 = stdev(new_t_s2)
// calcul de l'étendue
etendue2 = extremes2(2) - extremes2(1)
Q1_2 = perctl(new_t_s2, 25) // premier quartile
Q3_2 = perctl(new_t_s2, 75) // troisième quartile
IQ2 = Q3_2(1) - Q1_2(1) // intervalle interquartile
comparaison2 = [moyenne2 - moyenneS2, mediane2(1) - medianeS2(1), v2 - vS2, e2 - sS2, etendue2 - etendueS2]
subplot(1,2,1)
deciles=perctl(t_s2,10:10:90);
for i=2:10
ClassesDeciles(i)=deciles(i-1)
end
ClassesDeciles(1)=min(t_s2)
ClassesDeciles(11)=max(t_s2)
histplot(ClassesDeciles,t_s2,style=2)
legend("Histogramme avec temps de service")
subplot(1,2,2)
histplot(ClassesDeciles,new_t_s2,style=1)
legend("Histogramme avec temps de services à partir de 1 seconde")
//SERVER3
extremesS3 = [min(t_s3), max(t_s3)] // calcul du min et du max
moyenneS3 = mean(t_s3) // calcul de la moyenne
medianeS3 = perctl(t_s3,50) // calcul de la mediane
// calcul de la variance et de l'écart-type
vS3 = variance(t_s3)
sS3 = stdev(t_s3)
// calcul de l'étendue
etendueS3 = extremesS3(2) - extremesS3(1)
Q1S3 = perctl(t_s3, 25) // premier quartile
Q3S3 = perctl(t_s3, 75) // troisième quartile
IQS3 = Q3S3(1) - Q1S3(1) // intervalle interquartile
index_bool3 = (t_s3 > 1)
tab_s3 = t_s3(index_bool3)
new_t_s3 = tab_s3 - 1
extremes3 = [min(new_t_s3), max(new_t_s3)] // calcul du min et du max
moyenne3 = mean(new_t_s3) // calcul de la moyenne
mediane3 = perctl(new_t_s3,50) // calcul de la mediane
// calcul de la variance et de l'écart-type
v3 = variance(new_t_s3)
e3 = stdev(new_t_s3)
// calcul de l'étendue
etendue3 = extremes3(2) - extremes3(1)
Q1_3 = perctl(new_t_s3, 25) // premier quartile
Q3_3 = perctl(new_t_s3, 75) // troisième quartile
IQ3 = Q3_3(1) - Q1_3(1) // intervalle interquartile
comparaison3 = [moyenne3 - moyenneS3, mediane3(1) - medianeS3(1), v3 - vS3, e3 - sS3, etendue3 - etendueS3]
subplot(1,2,1)
deciles=perctl(t_s3,10:10:90);
for i=2:10
ClassesDeciles(i)=deciles(i-1)
end
ClassesDeciles(1)=min(t_s3)
ClassesDeciles(11)=max(t_s3)
histplot(ClassesDeciles,t_s3,style=2)
legend("Histogramme avec temps de service")
subplot(1,2,2)
histplot(ClassesDeciles,new_t_s3,style=1)
legend("Histogramme avec temps de services à partir de 1 seconde")
// Temps interarrivés
extremesS = [min(t_ia), max(t_ia)] // calcul du min et du max
moyenneS = mean(t_ia) // calcul de la moyenne
medianeS = perctl(t_ia,50) // calcul de la mediane
// calcul de la variance et de l'écart-type
vS = variance(t_ia)
sS = stdev(t_ia)
// calcul de l'étendue
etendueS = extremesS(2) - extremesS(1)
Q1S = perctl(t_ia, 25) // premier quartile
Q3S = perctl(t_ia, 75) // troisième quartile
IQS = Q3S(1) - Q1S(1) // intervalle interquartile
index_bool3 = (t_ia > 1)
tab_ia = t_ia(index_bool3)
new_t_ia = tab_ia - 1
extremes_ia = [min(new_t_ia), max(new_t_ia)] // calcul du min et du max
moyenne_ia = mean(new_t_ia) // calcul de la moyenne
mediane_ia = perctl(new_t_ia,50) // calcul de la mediane
// calcul de la variance et de l'écart-type
v = variance(new_t_ia)
e = stdev(new_t_ia)
// calcul de l'étendue
etendue = extremes_ia(2) - extremes_ia(1)
Q1_ = perctl(new_t_ia, 25) // premier quartile
Q3_ = perctl(new_t_ia, 75) // troisième quartile
IQ = Q3_(1) - Q1_(1) // intervalle interquartile
comparaison = [moyenne_ia - moyenneS, mediane_ia(1) - medianeS(1), v - vS, e - sS, etendue - etendueS]
subplot(1,2,1)
deciles=perctl(t_ia,10:10:90);
for i=2:10
ClassesDeciles(i)=deciles(i-1)
end
ClassesDeciles(1)=min(t_ia)
ClassesDeciles(11)=max(t_ia)
histplot(ClassesDeciles,t_ia,style=2)
legend("Histogramme avec temps de service")
subplot(1,2,2)
histplot(ClassesDeciles,new_t_ia,style=1)
legend("Histogramme avec temps de services à partir de 1 seconde")
|
8d4fca35383a522b958fec21fb7464b189553e26
|
1ccfcf39e5941044f7809d7bd29f3a001877ffac
|
/experimento_03/ecg_filt.sce
|
a2144443499ceacd19a9866a2a327ab2eafb8df7
|
[] |
no_license
|
victoribeir0/experimentos_pds
|
9ebe7aa4f678fa7e39942398543217bc2d6807a7
|
283fcfd16b743ae8cc864e0f5abcac955c8552d0
|
refs/heads/main
| 2023-04-30T01:48:48.984254 | 2021-05-01T09:25:13 | 2021-05-01T09:25:13 | 351,879,262 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 898 |
sce
|
ecg_filt.sce
|
/*
Série de filtros para processamento de sinal ECG.
x = Sinal ECG de entrada.
fs = Frequência de amostragem do sinal.
*/
function [y] = ecg_filt(x,fs)
// Retira o nível DC do sinal.
x = x-mean(x);
// Filtro passa-baixas FIR, ordem = 100, fc = 11 Hz.
x = pb_pt(x,11,fs,100);
// Filtro passa-altas FIR, ordem = 100, fc = 5 Hz.
x = pa_pt(x,5,fs,100);
// Filtro de média móvel, tempo janela = 25 ms.
y = ma(x,(25/1000)*fs);
endfunction
function [y] = pb_pt(x,fc,fs,M)
[h,w,coef] = firr(fc,fs,M,'pb');
y = conv(h,x);
endfunction
function [y] = pa_pt(x,fc,fs,M)
[h,w,coef] = firr(fc,fs,M,'pa');
y = conv(h,x);
endfunction
function [saida] = ma(x,win)
for n = win:length(x)
for i = 1:(win-1)
a(i) = x(n-i);
end
saida(n) = sum(a)/win;
a = 0;
end
endfunction
|
ba0dfce560d32f0332dd3d61eec2cbea1dd0dbee
|
6eb42df0d9f452fee0d084e0b0058e4e4ac242ef
|
/Updated_Exercises_March_2015/Exercise 9/Refraction.sce
|
45c9d8d1b989eefdceb426ef7938dece854118d2
|
[] |
no_license
|
huangqingze/ocean_modelling_for_beginners
|
b21c1b398efe91e4a3aa1fa5a1d732e2eb4ec16e
|
3e73a511480c73f4e38b41c17b2defebb53133ed
|
refs/heads/main
| 2023-07-03T12:00:01.326399 | 2021-08-14T21:16:12 | 2021-08-14T21:16:12 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,218 |
sce
|
Refraction.sce
|
//*******************************************
// This is the Scilab script for Exercise 9.
//
// Use the help facility for more information
// on individual functions used.
//
// Author: J. Kaempf, 2015 (updated)
//********************************************
clf; scf(0); a=gcf(); a.figure_size= [1500,500];
// read input data
eta=read("eta.dat",-1,201); eta0=read("eta0.dat",-1,201);
h0=read("h0.dat",-1,201);
x = (1:1:201)'; y = (1:1:51)'; // location vectors
ntot = 100; // total number of frames
for n = 1:100 // animation loop
drawlater; clf;
// grab respective data block
jtop = (n-1)*51+1; jbot = jtop+50;
etac = eta(jtop:jbot,1:201);
etacc = etac-eta0;
// exclude unwanted data from plot
for j = 1:51; for k = 1:201;
if h0(j,k) < 0; etacc(j,k) = %nan; end;
end; end;
plot3d(x,y,-0.6*h0',-70,50-5,'',[5,1,0]);
plot3d(x,y,15*etacc',-70,50-5,'',[4,5,3],ebox=[0,200,1,51,-20,20])
drawnow();
// save frames as GIF files (optional)
//if n < 10 then
// xs2gif(0,'ex100'+string(n)+'.gif')
//else
// if n < 100 then
// xs2gif(0,'ex10'+string(n)+'.gif')
// else
// xs2gif(0,'ex1'+string(n)+'.gif')
// end
// end
end; // end of animation loop
|
4b50d9ce5ff201f2ef6225d0b797780522e3b455
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3864/CH2/EX2.33/Ex2_33.sce
|
4baa8d7d1f48141a1ea768ab332943656dd66fc6
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,329 |
sce
|
Ex2_33.sce
|
clear
//
//
//Initilization of Variables
D=25 //mm //Diameter of Brass
De=50 //mm //External Diameter of steel tube
Di=25 //mm //Internal Diameter of steel tube
L=1.5 //m //Length of both bars
t1=30 //degree celsius //Initial Temperature
t2=100 //degree celsius //final Temperature
E_s=2*10**5 //N/mm**2 //Modulus of ELasticity of steel bar
E_b=1*10**5 //N/mm**2 //Modulus of Elasticity of brass bar
alpha_s=11.6*10**-6 //Temperature Coeff of steel
alpha_b=18.7*10**-6 //Temperature coeff of brass bar
d=20 //mm //diameter of pins
//Calculations
t=t2-t1 //Temperature Difference
A_s=%pi*4**-1*(De**2-Di**2) //mm**2 //Area of steel
A_b=%pi*4**-1*D**2 //mm**2 //Area of brass
//Let P_b be the tensile force in brass bar and P_s be the compressive force in steel bar
//But from Equilibrium of Forces
//P_b=P_s=P
//Let dell=dell_s+dell_b
dell=(alpha_b-alpha_s)*t*L*1000
P=dell*(1*(A_s*E_s)**-1+1*(A_b*E_b)**-1)**-1*(L*1000)**-1
P_b=P
P_s=P
//Stress in steel
sigma_s=P*A_s**-1
//Stress in Brass
sigma_b=P_b*A_b**-1
//Area of Pins
A_p=%pi*4**-1*d**2
//Since,the force is resisted by two cross section of pins
tou=P*(2*A_p)**-1
//Result
printf("\n Stress in steel bar is %0.2f N/mm**2",sigma_s)
printf("\n Stress in Brass bar is %0.2f N/mm**2",sigma_b)
printf("\n Shear Stresss induced in pins is %0.2f N/mm**2",tou)
|
545a2398ac5b04c1816aaea12ca79631d5941afb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2609/CH9/EX9.13/Ex9_13.sce
|
56c25b88df27980385be0f921b83bf1fc4c02311
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 620 |
sce
|
Ex9_13.sce
|
//Ex 9.13
clc;
clear;
close;
format('v',5);
fL=20;//Hz(Cutoff frequency)
//For Butterworth filter of 2nd order
alfa=1.414;klp=1;//constant
Ap=3-alfa;// band pass gain
RfBYRi=Ap-1;//ratio
disp("Various design parameters are :-");
C=0.22;//micro F//Chosen for the design choosing between 0.01 & 1 micro F
disp(C,"Capacitance C(micro F)");
format('v',4);
R=klp/(2*%pi*fL*C*10^-6)/1000;//kohm
disp(R,"Resistance R(kohm)");
//For offset minimization
//R=Rf||Ri=Rf/(RfBYRi+1)
Rf=R*(RfBYRi+1);//kohm
disp(Rf,"Resistance Rf(kohm)");
Ri=Rf/RfBYRi;//kohm
Ri=floor(Ri);//kohm
disp(Ri,"Resistance Ri(kohm)");
|
c75965271d3fad5e5fbfce6c5abe2bb470fe0ff3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1619/CH5/EX5.5.1/Example5_5_1.sce
|
505064db82c0bf1ffa1f89958681f008a7ea5bbe
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 731 |
sce
|
Example5_5_1.sce
|
//Example 5.5.1 page 5.18
clc;
clear;
del_t_1 = 10*100*10^-9;
Bt_nrz_1 = 0.7/(del_t_1*1000000);
Bt_rz_1 = 0.35/(del_t_1*1000000);
printf("First case. \n");
printf("Bit rate for nrz is:%.1f Mb/sec",Bt_nrz_1);
printf("\nBit rate for rz is:%.2f Mb/sec",Bt_rz_1);
del_t_2 = 20*1000*10^-9;
Bt_nrz_2 = 0.7/(del_t_2*1000000);
Bt_rz_2 = 0.35/(del_t_2*1000000);
printf("\n\nSecond case");
printf("\nBit rate for nrz is:%.3f Mb/sec",Bt_nrz_2);
printf("\nBit rate for rz is:%.4f Mb/sec",Bt_rz_2);
del_t_3 = 2*2000*10^-9;
Bt_nrz_3 = 0.7/(del_t_3*1000);
Bt_rz_3 = 0.35/(del_t_3*1000);
printf("\n\nThird case");
printf("\nBit rate for nrz is:%d BITS/sec",Bt_nrz_3);
printf("\nBit rate for rz is:%.1f BITS/sec",Bt_rz_3);
|
faa8b5d4d5d901dd25f4bfd65c3bddf197d57e56
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3802/CH14/EX14.6/Ex14_6.sce
|
bc21c1c1cb93cb9d7ff5d95b1dcbf1728ec6eecc
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 740 |
sce
|
Ex14_6.sce
|
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex14_6.sce.
clc;
clear;
average_demand=450;
load_factor=0.65;
power_factor=0.8;
tariff1=75; //in ruees per month per kVA
tariff2=1.30; //in rupees per kilowatthour
working_time=8*300;
maximum_kw_demand=average_demand/load_factor;
maximum_kVA_demand=maximum_kw_demand/power_factor;
annual_energy_charge=tariff2*average_demand*working_time;
annual_max_demand_charge=tariff1*12*maximum_kVA_demand;
annual_charge=annual_energy_charge+annual_max_demand_charge;
disp(annual_charge,'Annual bill of the consumer in rupees')
//The answer vary dueto roundoff error.
|
e25a9a31bc5084cf817c311eff352cc61f123335
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3763/CH12/EX12.1/Ex12_1.sce
|
7f5cc48d14e3b12cbe7729b38b307b7e5381c393
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 228 |
sce
|
Ex12_1.sce
|
clear
//
//
//
//Variable declaration
sigma0=8.55
K=2.45
sigma=10**-3 //steel size(mm)
//Calculation
sigma=sigma0+(K/sqrt(sigma)) //yield strength
//Result
printf("\n yield strength is %0.3f kg/mm**2",sigma)
|
93a223d2409b7a599a510b2063d1b0f1764c5443
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/536/CH9/EX9.15/Example_9_15.sce
|
224724116ca94b8a172694c195113bfbcfcc07ce
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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
|
Example_9_15.sce
|
clc;
clear;
printf("\n Example 9.15\n");
A1=2; //Area of rectangle(Surface 1)
A2=%pi*1^2/4; //Area of disc (Surface 2)
T1=1500; //Temperature of Surface 1
T2=750; //Temperature of Surface 2
F12=0.25; //View factor
sigma=5.67e-8;
//From equation 9. 1 26:
F21=A1*F12/A2;
printf("\n View factor, F12 = %.3f",F21);
Q12=sigma*A1*F12*(T1^4-T2^4);
printf("\n The net radiation transfer = %.0f kW",Q12*1e-3);
|
0c584f79434483d5001ffe5ec31a1e600a763665
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/575/CH6/EX6.3.1/6_3_1.sce
|
172fbf773607126149b038ad1fcbcbb8ca72f2c8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 303 |
sce
|
6_3_1.sce
|
clc
pathname=get_absolute_file_path('6_3_1.sce')
filename=pathname+filesep()+'631.sci'
exec(filename)
printf(" All the values in the textbook are Approximated hence the values in this code differ from those of Textbook")
y=Pstar/P
printf(" \n Molar composition of Water is %f and Air is %f",y,1-y)
|
a40c5f3084ea20877d582ae7a7a96ab1c8c49b29
|
99b4e2e61348ee847a78faf6eee6d345fde36028
|
/Toolbox Test/firpmord/firpmord3.sce
|
15ab06784e87a028eb1bd5a8fca47adcd4d3b376
|
[] |
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 | 458 |
sce
|
firpmord3.sce
|
//sampling frequency is not passed as an input arg
f = [0 0.5];
a = [1 0];
dev = [0.01 0.1];
fs = 8000;
[n,fo,ao,w] = firpmord(f,a,dev);
disp(n);
disp(fo);
disp(ao);
disp(w);
//output
// 3.
//
// 0.
// 0.
// 0.5
// 1.
//
// 1.
// 1.
// 0.
// 0.
//
// 10.
// 1.
//
|
439eb5b5a26ed894d7aaa11b3658c7c45b6b6a77
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3710/CH7/EX7.5/Ex7_5.sce
|
610444e22255eae628869a9b9db9443a04f53c85
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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
|
Ex7_5.sce
|
//Example 7.5, Page Number 324
//The Function fpround(dependency) is used to round a floating point number x to n decimal places
//Depletion wavelength
clc;
n3=1//Energy Level
n2=2//Energy Level
Lz=10*(10**-9) //Width of the well in metres
m=9.1*(10**-31) //Mass of an electron in kilogram
me=0.068*m//effective mass
h=6.63*(10**-34) //Plancks Constant in meter square kilogram per second
c=3*(10**8) //Speed of light in meters per second
e1=1.6*(10**-19) //Charge of an electron in Coulombs
//By Equation 2.64
E=((h**2)/(me*8))*(((n2/Lz)**2)-((n3/Lz)**2)) // E is the energy difference between the levels in eV
E1=E/e1 //Conversion to electron volt
E1=fpround(E1,2)
l=(h*c)/E1 //l is the optical wavelength in metres
l1=l/e1
l1=l1*(10**6)
mprintf("The Energy Difference between the two levels is:%0.3feV\n",E1)
mprintf(" The Optical Wavelength is:%0.1f um",l1)
|
439417862e5551e21d0cf6ca00d874a2340a9f99
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3269/CH9/EX9.7/Ex9_7.sce
|
d3719c47d31264441dc15c4335116be9d318aa8d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,225 |
sce
|
Ex9_7.sce
|
// Example 9.7
clear all;
clc;
// Given data
phi = 2.4*10^5; // Flux in x-rays/cm^2-sec
// From Figure 9.9
// To receive an exposure rate of 1 mR/hr at 50 keV, the flux is 8*10^3 x-rays/cm^2-sec
phi_eq = 8*10^3; // Equivalent flux in x-rays/cm^2-sec
X_dot_eq = 1; // Equivalent Exposure rate in mR/hr
X_dot = (phi*X_dot_eq)/phi_eq; // Exposure rate of the operator in mR/hr
// From Figure 9.10 at 50 kV energy, the energy dependent function is
f_bone = 3.3;
f_muscle = 0.93;
f_fat = 0.9;
// Using data from Table 9.2
Q = 1; // Quality factor for x-rays
// Calculation
D_dot_bone = X_dot*f_bone*Q; // Dose equivalent rate in bone
D_dot_muscle = X_dot*f_muscle*Q; // Dose equivalent rate in muscle
D_dot_fat = X_dot*f_fat*Q; // Dose equivalent rate in fat
// Result
printf(" \n Dose equivalent rate in bone = %d mrem/hour \n",ceil(D_dot_bone));
printf(" \n Dose equivalent rate in muscle = %d mrem/hour \n",ceil(D_dot_muscle));
printf(" \n Dose equivalent rate in fat = %d mrem/hour \n",ceil(D_dot_fat));
|
bb4559cba8c8f32930fdaa872c90e2dcb2969161
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3432/CH7/EX7.27/Ex7_27.sce
|
8c3c51a9aa657256a52e4eb39b29f9bcf3de9c95
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,197 |
sce
|
Ex7_27.sce
|
//Example 7.27
// SRL estimator design for a simple pendulum
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
// State space representation
F=[0 1; -1 0];
G=[0 1]';
H=[1 0];
J=0;
//Transfer function
sys=syslin('c',F,G,H,J)
sysGG=ss2tf(sys)
//Symmetric root locus for the inverted pendulum estimator design
//------------------------------------------------------------------
//Root locus design
evans(sysGG*sysGG)
zoom_rect([-5 -5 5 5])
f=gca();
f.x_location = "origin"
f.y_location = "origin"
xset("color",2);
h=legend('');
h.visible = "off"
//Title, labels and grid to the figure
exec .\fig_settings.sci; // custom script for setting figure properties
title('Symmetric root locus for inverted the pendulum estimator design',...
'fontsize',3);
//------------------------------------------------------------------
//pole locations for q=365; p=-3+-j3.18
p=[-3+3.18*%i -3-3.18*%i]
sig=real(p);
omega=imag(p);
plot(sig,omega,'ro')
xstring(-4,1,["pole location at";"q=365"])
xarrows([-3.5;-3.05],[2;3.1],-1.5,1)
//------------------------------------------------------------------
|
5f487eaab63c0f004a0772c0cb1e8bee86a49977
|
734830c483d7180158343b9b5599994878b8b197
|
/make-tests/autograder_make07.tst
|
6cfc031ee052837ab5dd6659f34931689fdabeda
|
[] |
no_license
|
aykamko/proj61b
|
b53a3b569f82522144e010505859aa3ab66585bb
|
5f6688b70f907107512267712a325f907e5e627b
|
refs/heads/master
| 2021-01-16T22:08:56.235971 | 2013-12-12T09:19:39 | 2013-12-12T09:19:39 | 13,669,280 | 1 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 89 |
tst
|
autograder_make07.tst
|
java -ea make.Main -f make-tests/autograder_make07.mk -D make-tests/autograder_file07 T1
|
2f0e74c9c3e9ddf3965d6b75651021faa406f090
|
be79bec46a532a2d059c03f59f67a1f501c2e371
|
/test/testcases/directed/sincosf.tst
|
61f1e68e80ed2ce55febb4cd3914842cb7b99d32
|
[
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
sycomix/optimized-routines
|
5987a6a4cab10c469cc147d1d8e667fd4d8ae94a
|
e875f40f0b2ad71c5381a431e6d71829770c7ab7
|
refs/heads/master
| 2020-03-30T22:15:08.212539 | 2018-09-18T09:36:04 | 2018-09-18T09:36:04 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 3,120 |
tst
|
sincosf.tst
|
; Directed test cases for SP sincos
;
; Copyright (c) 2007-2018, Arm Limited.
; SPDX-License-Identifier: Apache-2.0
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
func=sincosf_sinf op1=7fc00001 result=7fc00001 errno=0
func=sincosf_sinf op1=ffc00001 result=7fc00001 errno=0
func=sincosf_sinf op1=7f800001 result=7fc00001 errno=0 status=i
func=sincosf_sinf op1=ff800001 result=7fc00001 errno=0 status=i
func=sincosf_sinf op1=7f800000 result=7fc00001 errno=EDOM status=i
func=sincosf_sinf op1=ff800000 result=7fc00001 errno=EDOM status=i
func=sincosf_sinf op1=00000000 result=00000000 errno=0
func=sincosf_sinf op1=80000000 result=80000000 errno=0
func=sincosf_sinf op1=c70d39a1 result=be37fad5.7ed errno=0
func=sincosf_sinf op1=46427f1b result=3f352d80.f9b error=0
func=sincosf_sinf op1=4647e568 result=3f352da9.7be error=0
func=sincosf_sinf op1=46428bac result=bf352dea.924 error=0
func=sincosf_sinf op1=4647f1f9 result=bf352e13.146 error=0
func=sincosf_sinf op1=4647fe8a result=3f352e7c.ac9 error=0
func=sincosf_sinf op1=45d8d7f1 result=3f35097b.cb0 error=0
func=sincosf_sinf op1=45d371a4 result=bf350990.102 error=0
func=sincosf_sinf op1=45ce0b57 result=3f3509a4.554 error=0
func=sincosf_sinf op1=45d35882 result=3f3509f9.bdb error=0
func=sincosf_sinf op1=45cdf235 result=bf350a0e.02c error=0
func=sincosf_cosf op1=7fc00001 result=7fc00001 errno=0
func=sincosf_cosf op1=ffc00001 result=7fc00001 errno=0
func=sincosf_cosf op1=7f800001 result=7fc00001 errno=0 status=i
func=sincosf_cosf op1=ff800001 result=7fc00001 errno=0 status=i
func=sincosf_cosf op1=7f800000 result=7fc00001 errno=EDOM status=i
func=sincosf_cosf op1=ff800000 result=7fc00001 errno=EDOM status=i
func=sincosf_cosf op1=00000000 result=3f800000 errno=0
func=sincosf_cosf op1=80000000 result=3f800000 errno=0
func=sincosf_cosf op1=46427f1b result=3f34dc5c.565 error=0
func=sincosf_cosf op1=4647e568 result=3f34dc33.c1f error=0
func=sincosf_cosf op1=46428bac result=bf34dbf2.8e3 error=0
func=sincosf_cosf op1=4647f1f9 result=bf34dbc9.f9b error=0
func=sincosf_cosf op1=4647fe8a result=3f34db60.313 error=0
func=sincosf_cosf op1=45d8d7f1 result=bf35006a.7fd error=0
func=sincosf_cosf op1=45d371a4 result=3f350056.39b error=0
func=sincosf_cosf op1=45ce0b57 result=bf350041.f38 error=0
func=sincosf_cosf op1=45d35882 result=bf34ffec.868 error=0
func=sincosf_cosf op1=45cdf235 result=3f34ffd8.404 error=0
; no underflow
func=sincosf_sinf op1=17800000 result=17800000.000
func=sincosf_cosf op1=17800000 result=3f800000.000
; underflow
func=sincosf_sinf op1=00400000 result=00400000.000 status=ux
func=sincosf_cosf op1=00400000 result=3f800000.000 status=ux
|
ddf124ab761977fe471368cf17adfbe7109b15ce
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1271/CH20/EX20.17/example20_17.sce
|
167a07d38319866fcd9d91d97008e46e675de3df
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 487 |
sce
|
example20_17.sce
|
clc
// Given that
Z = 29 // atomic no. of Cu
R = 1.097e7 // Rydberg constant in m^-1
c = 3e8 // speed of light in m/sec
h = 6.62e-34 // Planck constant in J sec
// Sample Problem 17 on page no. 20.12
printf("\n # PROBLEM 17 # \n")
printf("Standard formula used \n ")
printf(" nu = a*(Z-b)^2 ........Moseley law \n")
f = 3/4 * (R * c) * (Z-1)^2
E = h * f / 1.6e-16
E_L = 0.931 // let E_L = 0.931 KeV
E_ = E + E_L
printf("\n Ionization potential of K-shell electron of Cu is %f keV.",E_)
|
4fe66768cae6418c913f05f0b5292d833517ec6c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2240/CH31/EX30.4/EX30_4.sce
|
4d9983bbd281df1fbd5152dafedbc8bce50390fd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 747 |
sce
|
EX30_4.sce
|
// Grob's Basic Electronics 11e
// Chapter No. 30
// Example No. 30_4
clear; clc;
// Calculate Vg, Vs, Id, Vd.
// Given Data
R1 = 390*10^3; // Resistor 1=390k Ohms
R2 = 100*10^3; // Resistor 2=100k Ohms
Rd = 1*10^3; // Drain Resistor=1k Ohms
Vdd = 15; // Supply Voltage(Drain)=15 Volts
Vgs = -1; // Voltage Gate-Source=-1 Volts
Rs = 800; // Source Resistor=800 Ohms
Vg = (R2/(R1+R2))*Vdd;
disp (Vg,'The Value of Vg in Volts')
disp ('i.e 3 Volts')
Vs = Vg-Vgs;
disp (Vs,'The Value of Vs in Volts')
disp ('i.e 4 Volts')
Id = Vs/Rs;
disp (Id,'The Value of Id in Amps.')
disp ('i.e 5 mAmps')
Vd = Vdd-Id*Rd
disp (Vd,'The Value of Vd in Volts')
disp ('Appox 10 Volts')
|
5ffe0c043023f9ce8505f27ee340ceddd7bd9301
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3547/CH3/EX3.6/Ex3_6.sce
|
e645ccf761027f54cf001ffaef70bca68fe5406d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,070 |
sce
|
Ex3_6.sce
|
// Example 3.6
// To calculate the band-gap energy.
// Page no.123
clc;
clear;
// Given data
m=9.109*10^(-31); // The electron rest mass in kg
meff1=0.07*m; // The effective mass of an electron in the conduction band
meff2=0.5*m; // The effective mass of an electron in the valence band
mr=(meff1*meff2)/(meff1+meff2); // The reduced mass
hkl=7.84*10^(-26); // The electron momentum in kg.m/s
lambda=0.8*10^(-6); // The wavelength of electromagnetic wave in m
h=1.054*10^(-34); // The distance between two levels
c=3*10^8; // Speed of ligth in m/s
hw=(h*2*%pi*c)/lambda; // The poton energy in J
// The band-gap energy.
Eg=hw-(hkl^2/(2*mr)); // The band-gap energy in J
// Displaying the result in command window
printf('\n The band-gap energy = %0.2f X 10^-19 J',Eg*10^19);
|
0216c052e66c655e3505c89bbae5f0bc485c9eba
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1670/CH8/EX8.14/8_14.sce
|
394997551fb672033cd897d5e79ed28d94ad6a50
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 803 |
sce
|
8_14.sce
|
//Example 8.14
//Trapezoidal Rule
//Page no. 284
clc;close;clear;
ax=1;bx=2;ay=1;by=2;h=0.25
n=(bx-ax)/h+1
n=5;
for i=1:n
x(i)=ax+(i-1)*h
y(i)=ay+(i-1)*h
end
printf(' y/x\t|')
for i=1:n
printf('\t%g\t',x(i))
end
printf('\n--------|-------------------------------------------------------------------------------')
for i=1:n
printf('\n%g\t|\t',y(i))
for j=1:n
z(i,j)=1/(x(j)+y(i))
printf('%.5g\t\t',z(i,j))
end
end
//trapezoidal rule
s=0;
for i=1:n
for j=1:n
if (i==1 | i==n) & (j==1 | j==n) then
s=s+z(i,j)
elseif i==1 | i==n | j==1 | j==n
s=s+2*z(i,j)
else
s=s+4*z(i,j)
end
end
end
s=(s*(h^2))/4
printf('\n\n')
disp(s,'Trapezoidal Rule Sum = ')
|
4230c1726bb843a8b3e38e92ca1dda515e19e96a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/199/CH7/EX7.4.b/Example_7_4_b.sce
|
a82a0d5e472fdf23c00ab2f480dd999082ec3760
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,565 |
sce
|
Example_7_4_b.sce
|
// Chapter7
// Page.No-260
// Example_7_4_b
// Frequency response of second order highpass filter
// Given
clear;clc;
Af=1.586; // Passband gain of the filter
fh=1000; // Cut-off frequency
f1=10; // Input freq in Hz
av1=Af/sqrt(1+(f1/fh)^4);
printf("\n Gain magnitude av1 at f1 is = %.2f \n",av1) // Result
f2=100; // Freq in Hz
av2=Af/sqrt(1+(f2/fh)^4);
printf("\n Gain magnitude av2 at f2 is = %.2f \n",av2) // Result
f3=200; // Freq in Hz
av3=Af/sqrt(1+(f3/fh)^4);
printf("\n Gain magnitude av3 at f3 is = %.2f \n",av3) // Result
f4=700; // Freq in Hz
av4=Af/sqrt(1+(f4/fh)^4);
printf("\n Gain magnitude av4 at f4 is = %.2f \n",av4) // Result
f5=1000; // Freq in Hz
av5=Af/sqrt(1+(f5/fh)^4);
printf("\n Gain magnitude av5 at f5 is = %.2f \n",av5) // Result
f6=3000; // Freq in Hz
av6=Af/sqrt(1+(f6/fh)^4);
printf("\n Gain magnitude av6 at f6 is = %.2f \n",av6) // Result
f7=7000; // Freq in Hz
av7=Af/sqrt(1+(f7/fh)^4);
printf("\n Gain magnitude av7 at f7 is = %.2f \n",av7) // Result
f8=10000; // Freq in Hz
av8=Af/sqrt(1+(f8/fh)^4);
printf("\n Gain magnitude av8 at f8 is = %.2f \n",av8) // Result
f9=30000; // Freq in Hz
av9=Af/sqrt(1+(f9/fh)^4);
printf("\n Gain magnitude av9 at f9 is = %.5f \n",av9) // Result
f10=100000; // Freq in Hz
av10=Af/sqrt(1+(f10/fh)^4);
printf("\n Gain magnitude av10 at f10 is = %.6f \n",av10) // Result
x=[f1 f2 f3 f4 f5 f6 f7 f8 f9 f10];
y=[av1 av2 av3 av4 av5 av6 av7 av8 av9 av10];
gainplot(x,y);
title('Frequency Response');
xlabel('Frequency(Hz)');
ylabel('Voltage gain(dB)');
|
b786e9f34f7a6be1d34fcaaa6d471f29793f6a07
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3472/CH42/EX42.8/Example42_8.sce
|
f2f4f675b82ada283694d01f29a61e3205007bb5
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,058 |
sce
|
Example42_8.sce
|
// A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART IV : UTILIZATION AND TRACTION
// CHAPTER 4: ILLUMINATION
// EXAMPLE : 4.8 :
// Page number 758
clear ; clc ; close ; // Clear the work space and console
// Given data
b = 15.25 // Breadth of workshop(m)
l = 36.6 // Length of workshop(m)
no = 20.0 // Number of lamps
P = 500.0 // Power of each lamp(W)
n = 15.0 // Luminous efficiency of each lamp(lumens/watt)
df = 0.7 // Depreciation factor
cou = 0.5 // Co-efficient of utilization
// Calculations
lumen_lamp = no*P*n // Lamp lumens
lumen_plane = lumen_lamp*df*cou // Lumens on the working plane
I = lumen_plane/(l*b) // Illumination(lm/sq.m)
// Results
disp("PART IV - EXAMPLE : 4.8 : SOLUTION :-")
printf("\nIllumination on the working plane = %.1f lm per sq.m\n", I)
printf("\nNOTE: ERROR: The breadth should be 15.25m but mentioned as 5.25m in textbook statement")
|
76c76d2f0f44e513b617aded9f602df946fafb95
|
27be2dd7284eb8d71ea19e6b077993d7ff6afd16
|
/gauss_seidel.sci
|
0b90ce2ddc626c4a078b6ec65c616fc02fdcc015
|
[] |
no_license
|
mtxslv/numericalcomputation
|
3b0ec7d1183c03c91c145de0fb1db9fff0a75e61
|
15ce639e5e370fb21fb1ce9878004270ee814e73
|
refs/heads/master
| 2020-03-26T06:10:14.116677 | 2019-11-14T11:41:38 | 2019-11-14T11:41:38 | 144,592,787 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,044 |
sci
|
gauss_seidel.sci
|
// Gauss Seidel method for a system Ax = b.
// Input: The A matrix and b vector, the initial solution x0,
// max error T and max iterations number N.
// Outputs: x vector with max error T and the max number of iterations.
// code based on Numerical Computation class notes.
// Huge thanks to Professors Raissa Tavares, Rex Medeiros,
// Marcelo Nogueira and Marconi Rodrigues.
function [x, cont] = gauss_seidel(A, b, x0, T, N)
[linhas, colunas] = size(A);
cont = 0;
xa = x0;
xn = x0;
errr = max(abs(xn-xa))/max(abs(xn));
while(1)
xa = xn;
for i =1:linhas
soma = 0;
for j = 1:linhas
if j<>i then
soma = soma + A(i,j)*xn(j);
end
end
xn(i) = (b(i) - soma)/A(i,i);
end
errr = max(abs(xn-xa))/max(abs(xn));
cont = cont + 1;
disp(errr)
if(errr<T || cont == N)then
break;
end
end
x = xn;
endfunction
|
7e75a7e595cb6e02394899f22a296c47d33b7f11
|
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
|
/Bounce Bots.sce
|
c9c7ea6e197476c3dbfac2a02493a401174ca284
|
[] |
no_license
|
Ahmad6543/Scenarios
|
cef76bf19d46e86249a6099c01928e4e33db5f20
|
6a4563d241e61a62020f76796762df5ae8817cc8
|
refs/heads/master
| 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 92,546 |
sce
|
Bounce Bots.sce
|
Name=Bounce Bots
PlayerCharacters=BB Player
BotCharacters=BB Bot Rotation.rot
IsChallenge=true
Timelimit=45.0
PlayerProfile=BB Player
AddedBots=BB Bot Rotation.rot;BB Bot Rotation.rot;BB Bot Rotation.rot;BB Bot Rotation.rot
PlayerMaxLives=0
BotMaxLives=0;0;0;0
PlayerTeam=1
BotTeams=2;2;2;2
MapName=bounce_field.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.0
ScorePerKill=1.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Click-timing, Vertical
WeaponHeroTag=Semi-auto
DifficultyTag=2
AuthorsTag=pleasewait
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=Click bouncing bots. The movement speed of bots is rotated in order. For the sake of fairness, bots don't spawn near the player's crosshair.
GameVersion=2.0.1.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=BB Target 01
DodgeProfileNames=BB Sideways;BB Half Sideways;BB Forward Back
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BB Target 01
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=BB Target 02
DodgeProfileNames=BB Sideways;BB Half Sideways;BB Forward Back
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BB Target 02
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=BB Target 03
DodgeProfileNames=BB Sideways;BB Half Sideways;BB Forward Back
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BB Target 03
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=BB Target 04
DodgeProfileNames=BB Sideways;BB Half Sideways;BB Forward Back
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BB Target 04
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=BB Target 05
DodgeProfileNames=BB Sideways;BB Half Sideways;BB Forward Back
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BB Target 05
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=BB Target 06
DodgeProfileNames=BB Sideways;BB Half Sideways;BB Forward Back
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BB Target 06
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=BB Target 07
DodgeProfileNames=BB Sideways;BB Half Sideways;BB Forward Back
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BB Target 07
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=BB Target 08
DodgeProfileNames=BB Sideways;BB Half Sideways;BB Forward Back
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BB Target 08
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=BB Target 09
DodgeProfileNames=BB Sideways;BB Half Sideways;BB Forward Back
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BB Target 09
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=BB Bot Rotation
ProfileNames=BB Target 01;BB Target 02;BB Target 03;BB Target 04;BB Target 05;BB Target 06;BB Target 07;BB Target 08;BB Target 09
ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
Randomized=false
[Character Profile]
Name=BB Player
MaxHealth=100.0
WeaponProfileNames=BB Semi-auto;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=240.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=72.0
MainBBRadius=12.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=30.0
BlockSpawnDistance=1024.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=10000.0
HealthRegenDelay=0.25
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.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=BB Target 01
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=96.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.5
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=67.0
MainBBRadius=8.0
MainBBHasHead=true
MainBBHeadRadius=5.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=67.0
ProjBBRadius=8.0
ProjBBHasHead=true
ProjBBHeadRadius=5.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.5
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-16.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=BB Target 02
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=128.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.5
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=67.0
MainBBRadius=8.0
MainBBHasHead=true
MainBBHeadRadius=5.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=67.0
ProjBBRadius=8.0
ProjBBHasHead=true
ProjBBHeadRadius=5.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.5
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-16.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=BB Target 03
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=160.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.5
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=67.0
MainBBRadius=8.0
MainBBHasHead=true
MainBBHeadRadius=5.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=67.0
ProjBBRadius=8.0
ProjBBHasHead=true
ProjBBHeadRadius=5.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.5
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-16.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=BB Target 04
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=96.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=288.0
Gravity=0.75
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=67.0
MainBBRadius=8.0
MainBBHasHead=true
MainBBHeadRadius=5.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=67.0
ProjBBRadius=8.0
ProjBBHasHead=true
ProjBBHeadRadius=5.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.5
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-16.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=BB Target 05
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=128.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=288.0
Gravity=0.75
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=67.0
MainBBRadius=8.0
MainBBHasHead=true
MainBBHeadRadius=5.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=67.0
ProjBBRadius=8.0
ProjBBHasHead=true
ProjBBHeadRadius=5.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.5
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-16.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=BB Target 06
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=160.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=288.0
Gravity=0.75
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=67.0
MainBBRadius=8.0
MainBBHasHead=true
MainBBHeadRadius=5.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=67.0
ProjBBRadius=8.0
ProjBBHasHead=true
ProjBBHeadRadius=5.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.5
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-16.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=BB Target 07
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=96.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=320.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=67.0
MainBBRadius=8.0
MainBBHasHead=true
MainBBHeadRadius=5.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=67.0
ProjBBRadius=8.0
ProjBBHasHead=true
ProjBBHeadRadius=5.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.5
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-16.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=BB Target 08
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=128.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=320.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=67.0
MainBBRadius=8.0
MainBBHasHead=true
MainBBHeadRadius=5.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=67.0
ProjBBRadius=8.0
ProjBBHasHead=true
ProjBBHeadRadius=5.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.5
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-16.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=BB Target 09
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=160.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=320.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=67.0
MainBBRadius=8.0
MainBBHasHead=true
MainBBHeadRadius=5.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=67.0
ProjBBRadius=8.0
ProjBBHasHead=true
ProjBBHeadRadius=5.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.5
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-16.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
[Dodge Profile]
Name=BB Sideways
MaxTargetDistance=100000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.4
MaxFBTimeChange=0.7
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.5
MaxProfileChangeTime=1.5
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.01
MaxJumpTime=0.01
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.1
BlockedMovementReactionMax=0.1
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=BB Half Sideways
MaxTargetDistance=100000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.5
MaxFBTimeChange=1.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.5
MaxProfileChangeTime=1.5
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.01
MaxJumpTime=0.01
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.1
BlockedMovementReactionMax=0.1
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=BB Forward Back
MaxTargetDistance=100000.0
MinTargetDistance=0.0
ToggleLeftRight=false
ToggleForwardBack=true
MinLRTimeChange=0.3
MaxLRTimeChange=0.6
MinFBTimeChange=0.2
MaxFBTimeChange=0.4
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.2
MaxProfileChangeTime=0.4
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.01
MaxJumpTime=0.01
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.1
BlockedMovementReactionMax=0.1
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Weapon Profile]
Name=BB Semi-auto
Type=Hitscan
ShotsPerClick=1
DamagePerShot=10.0
KnockbackFactor=0.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=1000000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=3
AmmoPerShot=1
ReloadTimeFromEmpty=0.8
ReloadTimeFromPartial=0.8
DamageFalloffStartDistance=1000000.0
DamageFalloffStopDistance=1000000.0
DamageAtMaxRange=10.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=1.0
ADSMoveFactor=0.5
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=true
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
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=3
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=50
ADSFOVOverride=40.0
ADSFOVScale=Vertical (1:1)
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Law Bringer
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=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Six Shooter
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Bullet
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
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=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=4.0
MinRecoilUp=4.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.01
TimeToRecoilReset=0.3
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
333.767151 48.000000 443.953430
391.627441 48.000000 392.000031
463.472778 48.000000 757.090515
617.901611 64.000000 618.274170
463.472778 64.000000 757.090515
617.901611 48.000000 618.274170
391.627441 64.000000 392.000031
333.767151 64.000000 443.953430
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
128.000000 256.000000 272.000000
384.000000 256.000000 272.000000
384.000000 256.000000 144.000000
128.000000 256.000000 144.000000
128.000000 240.000000 272.000000
384.000000 240.000000 272.000000
384.000000 240.000000 144.000000
128.000000 240.000000 144.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
-105.274139 432.000000 617.901611
48.965942 432.000000 756.872375
-116.587860 432.000000 629.215332
42.480652 448.000000 772.529236
-116.587860 448.000000 629.215332
42.480652 432.000000 772.529236
48.965942 448.000000 756.872375
-105.274139 448.000000 617.901611
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
463.472778 432.000000 757.090515
617.901611 432.000000 618.274170
469.958069 432.000000 772.747375
629.215332 448.000000 629.587891
469.958069 448.000000 772.747375
629.215332 432.000000 629.587891
617.901611 448.000000 618.274170
463.472778 448.000000 757.090515
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
333.767151 48.000000 443.953430
178.671570 48.000000 443.735291
463.472778 48.000000 757.090515
48.965973 64.000000 756.872375
463.472778 64.000000 757.090515
48.965973 48.000000 756.872375
178.671570 64.000000 443.735291
333.767151 64.000000 443.953430
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
463.472778 432.000000 757.090515
48.965942 432.000000 756.872375
469.958069 432.000000 772.747375
42.480652 448.000000 772.529236
469.958069 448.000000 772.747375
42.480652 432.000000 772.529236
48.965942 448.000000 756.872375
463.472778 448.000000 757.090515
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
463.472778 240.000000 757.090515
617.901611 240.000000 618.274170
469.958069 240.000000 772.747375
629.215332 256.000000 629.587891
469.958069 256.000000 772.747375
629.215332 240.000000 629.587891
617.901611 256.000000 618.274170
463.472778 256.000000 757.090515
faces
0.000000 0.000000 1.000000 1.000000 250.547058 2 0 1 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 270.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 270.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 270.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 270.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 250.547058 4 3 6 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
463.472778 240.000000 757.090515
48.965950 240.000000 756.872375
469.958069 240.000000 772.747375
42.480659 256.000000 772.529236
469.958069 256.000000 772.747375
42.480659 240.000000 772.529236
48.965950 256.000000 756.872375
463.472778 256.000000 757.090515
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
-105.274139 240.000000 617.901611
48.965950 240.000000 756.872375
-116.587860 240.000000 629.215332
42.480659 256.000000 772.529236
-116.587860 256.000000 629.215332
42.480659 240.000000 772.529236
48.965950 256.000000 756.872375
-105.274139 256.000000 617.901611
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_weaponclip
brush
vertices
-105.274139 48.000000 617.901611
48.965942 48.000000 756.872375
-116.587860 48.000000 629.215332
42.480652 239.999985 772.529236
-116.587860 239.999985 629.215332
42.480652 48.000000 772.529236
48.965942 239.999985 756.872375
-105.274139 239.999985 617.901611
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
463.472778 48.000000 757.090515
48.965942 48.000000 756.872375
469.958069 48.000000 772.747375
42.480652 240.000000 772.529236
469.958069 240.000000 772.747375
42.480652 48.000000 772.529236
48.965942 240.000000 756.872375
463.472778 240.000000 757.090515
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
463.472778 48.000000 757.090515
617.901611 48.000000 618.274170
469.958069 48.000000 772.747375
629.215332 239.999985 629.587891
469.958069 239.999985 772.747375
629.215332 48.000000 629.587891
617.901611 239.999985 618.274170
463.472778 239.999985 757.090515
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-105.274139 448.000000 617.901611
48.965942 448.000000 756.872375
-116.587860 448.000000 629.215332
42.480652 640.000000 772.529236
-116.587860 640.000000 629.215332
42.480652 448.000000 772.529236
48.965942 640.000000 756.872375
-105.274139 640.000000 617.901611
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
463.472778 448.000000 757.090515
48.965942 448.000000 756.872375
469.958069 448.000000 772.747375
42.480652 640.000000 772.529236
469.958069 640.000000 772.747375
42.480652 448.000000 772.529236
48.965942 640.000000 756.872375
463.472778 640.000000 757.090515
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
463.472778 448.000000 757.090515
617.901611 448.000000 618.274170
469.958069 448.000000 772.747375
629.215332 640.000000 629.587891
469.958069 640.000000 772.747375
629.215332 448.000000 629.587891
617.901611 640.000000 618.274170
463.472778 640.000000 757.090515
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
120.999985 48.000000 391.627411
120.999985 640.000000 391.627411
132.313705 48.000000 380.313690
185.156860 640.000000 428.078430
185.156860 48.000000 428.078430
132.313705 640.000000 380.313690
178.671570 640.000000 443.735291
178.671570 48.000000 443.735291
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
178.671570 48.000000 443.735291
178.671570 640.000000 443.735291
185.156860 48.000000 428.078430
327.281952 640.000000 428.296631
327.281952 48.000000 428.296631
185.156860 640.000000 428.078430
333.767273 640.000000 443.953491
333.767273 48.000000 443.953491
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
333.767273 48.000000 443.953491
333.767273 640.000000 443.953491
327.281952 48.000000 428.296631
380.313660 640.000000 380.686340
380.313660 48.000000 380.686340
327.281952 640.000000 428.296631
391.627441 640.000000 392.000031
391.627441 48.000000 392.000031
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
469.958069 432.000000 772.747375
469.958069 256.000000 772.747375
463.472778 432.000000 757.090515
617.901611 256.000000 618.274170
617.901611 432.000000 618.274170
463.472778 256.000000 757.090515
629.215332 256.000000 629.587891
629.215332 432.000000 629.587891
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
42.480652 432.000000 772.529236
42.480659 256.000000 772.529236
48.965942 432.000000 756.872375
463.472778 256.000000 757.090515
463.472778 432.000000 757.090515
48.965950 256.000000 756.872375
469.958069 256.000000 772.747375
469.958069 432.000000 772.747375
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-116.587860 432.000000 629.215332
-116.587860 256.000000 629.215332
-105.274139 432.000000 617.901611
48.965950 256.000000 756.872375
48.965942 432.000000 756.872375
-105.274139 256.000000 617.901611
42.480659 256.000000 772.529236
42.480652 432.000000 772.529236
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000
brush
vertices
120.999985 624.000000 391.627411
178.671570 624.000000 443.735291
-105.274139 624.000000 617.901611
48.965973 640.000000 756.872375
-105.274139 640.000000 617.901611
48.965973 624.000000 756.872375
178.671570 640.000000 443.735291
120.999985 640.000000 391.627411
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
333.767151 624.000000 443.953430
178.671570 624.000000 443.735291
463.472778 624.000000 757.090515
48.965973 640.000000 756.872375
463.472778 640.000000 757.090515
48.965973 624.000000 756.872375
178.671570 640.000000 443.735291
333.767151 640.000000 443.953430
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
333.767151 624.000000 443.953430
391.627441 624.000000 392.000031
463.472778 624.000000 757.090515
617.901611 640.000000 618.274170
463.472778 640.000000 757.090515
617.901611 624.000000 618.274170
391.627441 640.000000 392.000031
333.767151 640.000000 443.953430
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
120.999985 432.000000 391.627411
178.671570 432.000000 443.735291
-105.274139 432.000000 617.901611
48.965973 448.000000 756.872375
-105.274139 448.000000 617.901611
48.965973 432.000000 756.872375
178.671570 448.000000 443.735291
120.999985 448.000000 391.627411
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
333.767151 432.000000 443.953430
178.671570 432.000000 443.735291
463.472778 432.000000 757.090515
48.965973 448.000000 756.872375
463.472778 448.000000 757.090515
48.965973 432.000000 756.872375
178.671570 448.000000 443.735291
333.767151 448.000000 443.953430
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
333.767151 432.000000 443.953430
391.627441 432.000000 392.000031
463.472778 432.000000 757.090515
617.901611 448.000000 618.274170
463.472778 448.000000 757.090515
617.901611 432.000000 618.274170
391.627441 448.000000 392.000031
333.767151 448.000000 443.953430
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
333.767151 240.000000 443.953430
391.627441 240.000000 392.000031
463.472778 240.000000 757.090515
617.901611 256.000000 618.274170
463.472778 256.000000 757.090515
617.901611 240.000000 618.274170
391.627441 256.000000 392.000031
333.767151 256.000000 443.953430
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
333.767151 240.000000 443.953430
178.671570 240.000000 443.735291
463.472778 240.000000 757.090515
48.965981 256.000000 756.872375
463.472778 256.000000 757.090515
48.965981 240.000000 756.872375
178.671570 256.000000 443.735291
333.767151 256.000000 443.953430
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
120.999985 240.000000 391.627411
178.671570 240.000000 443.735291
-105.274139 240.000000 617.901611
48.965981 256.000000 756.872375
-105.274139 256.000000 617.901611
48.965981 240.000000 756.872375
178.671570 256.000000 443.735291
120.999985 256.000000 391.627411
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
120.999985 48.000000 391.627411
178.671570 48.000000 443.735291
-105.274139 48.000000 617.901611
48.965973 64.000000 756.872375
-105.274139 64.000000 617.901611
48.965973 48.000000 756.872375
178.671570 64.000000 443.735291
120.999985 64.000000 391.627411
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
391.627441 48.000000 392.000031
391.627441 640.000000 392.000031
402.941101 48.000000 380.686340
629.215210 640.000000 606.960449
629.215210 48.000000 606.960449
402.941101 640.000000 380.686340
617.901611 640.000000 618.274170
617.901611 48.000000 618.274170
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-105.274139 48.000000 617.901611
-105.274139 640.000000 617.901611
-116.587860 48.000000 606.587891
109.686279 640.000000 380.313721
109.686279 48.000000 380.313721
-116.587860 640.000000 606.587891
120.999985 640.000000 391.627411
120.999985 48.000000 391.627411
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
112.000000 448.000000 272.000000
128.000000 448.000000 272.000000
128.000000 448.000000 144.000000
112.000000 448.000000 144.000000
112.000000 256.000000 272.000000
128.000000 256.000000 272.000000
128.000000 256.000000 144.000000
112.000000 256.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
128.000000 448.000000 144.000000
384.000000 448.000000 144.000000
384.000000 448.000000 128.000000
128.000000 448.000000 128.000000
128.000000 256.000000 144.000000
384.000000 256.000000 144.000000
384.000000 256.000000 128.000000
128.000000 256.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
384.000000 448.000000 272.000000
400.000000 448.000000 272.000000
400.000000 448.000000 144.000000
384.000000 448.000000 144.000000
384.000000 256.000000 272.000000
400.000000 256.000000 272.000000
400.000000 256.000000 144.000000
384.000000 256.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
128.000000 448.000000 288.000000
384.000000 448.000000 288.000000
384.000000 448.000000 272.000000
128.000000 448.000000 272.000000
128.000000 256.000000 288.000000
384.000000 256.000000 288.000000
384.000000 256.000000 272.000000
128.000000 256.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
128.000000 464.000000 272.000000
384.000000 464.000000 272.000000
384.000000 464.000000 144.000000
128.000000 464.000000 144.000000
128.000000 448.000000 272.000000
384.000000 448.000000 272.000000
384.000000 448.000000 144.000000
128.000000 448.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 256.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 704.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 640.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 576.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 512.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 211.643448 256.000000 507.806030
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.529953 256.000000 570.833740
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 189.416473 256.000000 633.861450
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 178.302979 256.000000 696.889160
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 169.145813 256.000000 496.612671
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 147.256500 256.000000 556.752991
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.367218 256.000000 616.893311
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 103.477905 256.000000 677.033630
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 127.856430 256.000000 477.425690
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 95.856392 256.000000 532.851318
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 63.856415 256.000000 588.276855
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 31.856384 256.000000 643.702515
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 299.870667 256.000000 507.249390
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 310.984131 256.000000 570.277039
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 322.097473 256.000000 633.304565
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 333.210938 256.000000 696.332275
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 341.924622 256.000000 495.668030
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 363.813904 256.000000 555.808289
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 385.703003 256.000000 615.948486
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 407.592285 256.000000 676.088867
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 380.856628 256.000000 476.425568
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 412.856659 256.000000 531.851318
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 444.856384 256.000000 587.276733
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 476.856354 256.000000 642.702393
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 476.856354 448.000000 642.702393
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 444.856384 448.000000 587.276733
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 412.856659 448.000000 531.851318
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 380.856628 448.000000 476.425568
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 341.924622 448.000000 495.668030
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 363.813904 448.000000 555.808289
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.367218 448.000000 616.893311
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 407.592285 448.000000 676.088867
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 385.703003 448.000000 615.948486
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 333.210938 448.000000 696.332275
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 322.097473 448.000000 633.304565
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 310.984131 448.000000 570.277039
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 299.870667 448.000000 507.249390
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 448.000000 512.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 448.000000 576.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 448.000000 640.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 448.000000 704.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 178.302979 448.000000 696.889160
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 103.477905 448.000000 677.033630
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 31.856384 448.000000 643.702515
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 63.856415 448.000000 588.276855
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.529953 448.000000 570.833740
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 147.256500 448.000000 556.752991
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 95.856392 448.000000 532.851318
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 127.856430 448.000000 477.425690
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 169.145813 448.000000 496.612671
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 211.643448 448.000000 507.806030
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 189.416473 448.000000 633.861450
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 476.856354 64.000000 642.702393
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 444.856384 64.000000 587.276733
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 412.856659 64.000000 531.851318
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 380.856628 64.000000 476.425568
Vector3 angles 210.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 341.924622 64.000000 495.668030
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 363.813904 64.000000 555.808289
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.367218 64.000000 616.893311
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 407.592285 64.000000 676.088867
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 385.703003 64.000000 615.948486
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 333.210938 64.000000 696.332275
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 322.097473 64.000000 633.304565
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 310.984131 64.000000 570.277039
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 299.870667 64.000000 507.249390
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 64.000000 512.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 64.000000 576.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 64.000000 640.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 64.000000 704.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 178.302979 64.000000 696.889160
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 103.477905 64.000000 677.033630
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 31.856384 64.000000 643.702515
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 63.856415 64.000000 588.276855
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.529953 64.000000 570.833740
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 147.256500 64.000000 556.752991
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 95.856392 64.000000 532.851318
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 127.856430 64.000000 477.425690
Vector3 angles 150.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 169.145813 64.000000 496.612671
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 211.643448 64.000000 507.806030
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 189.416473 64.000000 633.861450
Vector3 angles 170.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
|
c58c01d4d4700ffd757d35aff2e59b5518e2c073
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/761/CH25/EX25.2/25_2.sce
|
cc9aec3fbeefca4be9b56c8744913b7a123e81db
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 232 |
sce
|
25_2.sce
|
clc;
// page no 921
// prob no 25_2
L=45;//in km
dt=100;//in ns
//The maximum permissible value for the pulse-spreading constant is
D=dt/L;
disp('ns/km',D,'The maximum permissible value for the pulse-spreading constant is');
|
226ce50a48bea1530ec9706729af6c8906dddd8f
|
1988df91caa448a35bbf274a6d2698fe434571b1
|
/axiom/tprolb.tst
|
f2a5903bf310b6d6fa3bf3bf0c85653c62003652
|
[] |
no_license
|
namin/GETFOL
|
bd60e9a2d9f0905c50ff5c0cff4b6bf57a2049e2
|
bf42caf61799578eb82e9f17b3342bc2ee638a22
|
refs/heads/master
| 2021-10-25T08:08:20.142137 | 2021-10-22T16:16:40 | 2021-10-22T16:16:40 | 204,234,318 | 4 | 1 | null | 2019-08-25T02:05:54 | 2019-08-25T02:05:54 | null |
UTF-8
|
Scilab
| false | false | 1,330 |
tst
|
tprolb.tst
|
COMMENT | ************************************************************* |
COMMENT | * AUTHOR: R.W. Weyhrauch DATE: around 1978 |
COMMENT | * |
COMMENT | * SUBJECT: S- expressions |
COMMENT | * |
COMMENT | * NOTES: See Prolegomena paper in AI Journal 1980 (appendix B)|
COMMENT | * |
COMMENT | * GETFOL VERSION: October 1989 |
COMMENT | * |
COMMENT | ************************************************************* |
DECLARE SORT ATOM;
DECLARE INDVAR x y z [SEXP];
DECLARE INDVAR u v w [LIST];
DECLARE INDCONST nil [NULL];
DECLARE FUNCONST car cdr 1;
DECLARE FUNCONST cons(SEXP,LIST)=LIST;
DECLARE FUNCONST rev 1;
DECLARE FUNCONST @ 2 [INF];
MOREGENERAL SEXP <LIST,ATOM,NULL>;
MOREGENERAL LIST <NULL>;
DECREP SEXPREP;
AXIOM CAR:forall x y . car(cons(x,y)) = x;
AXIOM CDR:forall x y . cdr(cons(x,y)) = y;
AXIOM CONS:forall x y . (NULL(cons(x,y)) iff FALSE);
AXIOM REV: forall u . (rev(u) =
if NULL(u) then u else rev(cdr(u)) @ cons(car(u),nil));
AXIOM APPEND: forall u v . (u @ v =
if NULL(u) then v else cons(car(u),cdr(u) @ v));
AXIOM NU: NULL(nil);
SETBASICSIMP Basic at facts {CAR,CDR,CONS, NU};
SETBASICSIMP Funs at facts {REV,APPEND};
SETCOMPSIMP ALL at Basic uni Funs uni LARGIFTREE;
rewrite rev(cons(x,nil)) BY ALL;
|
56f91e27bd54b5942e83dfa33766fddc342e7661
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/608/CH24/EX24.08/24_08.sce
|
ae16b15bdd11641821ca74ff0a54445202633aac
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,076 |
sce
|
24_08.sce
|
//Problem 24.08: A circuit comprises a resistance of 90 ohm in series with an inductor of inductive reactance 150 ohm. If the supply current is(1.35/_0°)A, determine (a) the supply voltage, (b) the voltage across the 90 ohm resistance, (c) the voltage across the inductance, and (d) the circuit phase angle. Draw the phasor diagram.
//initializing the variables:
R = 90; // in ohms
XL = 150; // in ohms
ri = 1.35; // in amperes
thetai = 0; // in degrees
//calculation:
I = ri*cos(thetai*%pi/180) + %i*ri*sin(thetai*%pi/180)
//Circuit impedance Z
Z = R + %i*XL
//Supply voltage, V
V = I*Z
//Voltage across 90 ohm resistor
VR = real(V)
//Voltage across inductance, VL
VL = imag(V)
xv = real(V)
yv = imag(V)
rv = (xv^2 + yv^2)^0.5
thetav = atan(yv/xv)*180/%pi
phi = thetav - thetai
printf("\n\n Result \n\n")
printf("\n (a)Supply voltage, V is %.2f + (%.2f)i V",xv,yv)
printf("\n (b)Voltage across 90 ohm resistor, VR is %.2f V",VR)
printf("\n (c)Voltage across inductance, VL is %.2f V",VL)
printf("\n (d)Circuit phase angle is %.2f°",phi)
|
73142030412a9199ed67a7614fde90a6bd17d4f9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1760/CH8/EX8.31/EX8_31.sce
|
02b262880309882cf29314a61a59d023797bc08f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 230 |
sce
|
EX8_31.sce
|
//EXAMPLE 8-31 PG NO-550
N=100;
Ro=450;
R1=Ro*[(N-1)/(N+1)];
R2=Ro*[2*N/{N^2-1}];
disp('ii) Resistance (R1) is = '+string (R1) +' ohm ');
disp('ii) Resistance(r2) is = '+string (R2) +' ohm ');
|
28399095b51e519dffa0e72d7dca1a9ded77756c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1544/CH6/EX6.16/Ch06Ex16.sce
|
c30b3be026115a217ca35d9b0f649bc6a7b94c77
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,588 |
sce
|
Ch06Ex16.sce
|
// Scilab code Ex6.16: Pg 228 (2008)
clc; clear;
tb1 = 0.1e-03; // Timebase of channel 1, s/cm
tb2 = 10e-06; // Timebase of channel 2, s/cm
Y_amp1 = 5; // Y-amp setting for channel 1, V/cm
Y_amp2 = 0.5; // Y-amp setting for channel 2, V/cm
// Channel 1
V_pp = 3*Y_amp1; // Peak-to-peak value of waveform in channel 1, V
Vm = V_pp/2; // Amplitude of waveform in channel 1, V
V = Vm/sqrt(2); // rms value of sine wave in channel 1, V
T = 4*tb1; // Time period of sine wave, second
f = 1/(T*1000); // Frequency of sine wave, kHz
printf("\nThe amplitude of sine waveform in channel 1 = %3.1f V", Vm);
printf("\nThe rms value of sine wave in channel 1 = %3.1f V", V);
printf("\nThe frequency of sine wave in channel 1 = %3.1f kHz", f);
// Channel 2
V_pp = 2*Y_amp2; // Peak-to-peak value of waveform in channel 2, V
Vm = V_pp/2; // Amplitude of waveform in channel 2, V
V = Vm; // rms value of square wave in channel 2, V
T = 2/3*tb2; // Time period of square wave, second
f = 1/(T*1000); // Frequency of square wave, kHz
printf("\nThe amplitude of square waveform in channel 2 = %3.1f V", Vm);
printf("\nThe rms value of square wave in channel 2 = %3.1f V", V);
printf("\nThe frequency of square wave in channel 2 = %3d kHz", f);
// Result
// The amplitude of sine waveform in channel 1 = 7.5 V
// The rms value of sine wave in channel 1 = 5.3 V
// The frequency of sine wave in channel 1 = 2.5 kHz
// The amplitude of square waveform in channel 2 = 0.5 V
// The rms value of square wave in channel 2 = 0.5 V
// The frequency of square wave in channel 2 = 150 kHz
|
f32874bfb628ce2e6545a2ce387c249d2391ff99
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2102/CH1/EX1.13/exa_1_13.sce
|
f0f67a6ad42087c879397909cac64e23c45cfe2e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 192 |
sce
|
exa_1_13.sce
|
// Exa 1.13
clc;
clear;
close;
format('v',13);
// Given data
Xm= 9.48*10^-9;
miu_r= 1+Xm;//
disp(miu_r,"Relative permeability si : ")
disp("That is µr is slightly greater than 1");
|
145450f565ceafe5cdbdeeb728ecdf4a4ce99e99
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2912/CH9/EX9.2/Ex9_2.sce
|
080621bf4ce817a280fa461ee29e3f54556f8025
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 947 |
sce
|
Ex9_2.sce
|
// chapter 9
// example 9.2
// Find the temperature at which number of electrons becomes 10 times
// page 272
clear;
clc;
//given
Eg=0.67; // in eV (Energy band gap)
k=1.38E-23; // in J/K (Boltzmann’s constant)
T1=298; // in K (room temperature)
e=1.6E-19; // in C (charge of electron)
K=10; // ratio of number of electrons at different temperature
// calculate
Eg=Eg*e; // changing unit from eV to Joule
// since ne=Ke*exp(-Eg/(2*k*T))
// and ne/ne1=exp(-Eg/(2*k*T))/exp(-Eg/(2*k*T1)) and ne/ne1=K=10
// therefore we have 10=exp(-Eg/(2*k*T))/exp(-Eg/(2*k*T1))
// re-arranging the equation for T, we get T2=1/((1/T1)-((2*k*log(10))/Eg))
T=1/((1/T1)-((2*k*log(10))/Eg)); // calculation of the temperature
printf('\nThe temperature at which number of electrons in the conduction band of a semiconductor increases by a factor of 10 is \tT=%.f K',T);
// Note: there s slight variation in the answer due to round off calculation
|
5dd7293da098dadf5a6404196dd30af9cf420587
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/551/CH6/EX6.17/17.sce
|
320bcdb4c675a7aa289247c97b213ddcad2d1eb9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 630 |
sce
|
17.sce
|
clc
m=2.5; //kg
p1=6*10^5; //Pa
r=2; //r=V2/V1
cv=0.718; //kJ/kg K
R=0.287; //kJ/kg K
T1=363; //K
p2=1*10^5; //Pa
T2=278; //K
V1=m*R*T1/p1;
V2=2*V1;
T0=278; //K
p0=1*10^5; //Pa
Q=0; //adiabatic process
disp("(i)The maximum work")
dS=m*cv*log(T2/T1) + m*R*log(V2/V1);
Wmax=m*[cv*(T1-T2)] + T0*(cv*log(T2/T1) + R*log(V2/V1));
disp("Wmax=")
disp(Wmax)
disp("kJ")
disp("(ii)The change in availability")
dA=Wmax+p0*(V1-V2);
disp("Change in availability =")
disp(dA)
disp("kJ")
disp("(iii) The irreversibility")
I=T0*m*(cv*log(T2/T1)+R*log(V2/V1));
disp("Irreversibility =")
disp(I)
disp("kJ")
|
81300c1b0c1b5e227bc279895d23ede9ec95dd2e
|
99b4e2e61348ee847a78faf6eee6d345fde36028
|
/Toolbox Test/unshiftdata/unshiftdata7.sce
|
60bc58d456cfe530386b39db466d17d18e0430ad
|
[] |
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 | 214 |
sce
|
unshiftdata7.sce
|
//check o/p when i/p arg x contains imaginary values
perm =[2 1];
nshifts =[];
x=[-5 -4- -3 -4 5 5*%i];
y = unshiftdata(x,perm,nshifts);
disp(y);
//output
// 5.
// - 1.
// - 4.
// 5.
// 5.i
|
f489dca9d5a71938024dc8889c895d2d0c62189e
|
aa2ea56adac7d55902e03912833928383b6e484c
|
/P2_FSK.sce
|
0f1bc609cc0e4e7b71aff660111c3c2f49ede5df
|
[
"MIT"
] |
permissive
|
Yash-Yadav/DC_MatLab
|
dbe2e02d2f15b469c30e21dd318a12dddb3c3376
|
351529f652c905191fc0b56972651665d47aa25f
|
refs/heads/master
| 2020-04-02T19:49:11.097720 | 2018-10-30T08:29:55 | 2018-10-30T08:29:55 | 154,747,428 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 881 |
sce
|
P2_FSK.sce
|
clc
clear all
fc1=input('Enter the Freq of the 1st Sine Wave Carrier: ');
fc2=input('Enter the Freq of the 2nd Sine Wave Carrier: ');
fp=input('Enter the Freq of Periodic Binary Pulse Message: ');
amp=input('Enter the Amplitude (For both Carrier and Binary Pulse Message: ');
t=0:0.001:1;
c1=amp.*sin(2*%pi*fc1*t);
c2=amp.*sin(2*%pi*fc2*t);
subplot(4,1,1);
xlabel('Time')
ylabel('Amplitude')
title('Carrier 1 Wave')
plot(t,c1);
subplot(4,1,2);
xlabel('Time')
ylabel('Amplitude')
title('Carrier 2 Wave')
plot(t,c2);
m=amp*squarewave(2*%pi*fp*t)+amp;
subplot(4,1,3);
xlabel('Time')
ylabel('Amplitude')
title('Binary Message Pulses')
plot(t,m);
for i=0:1000
if m(i+1)==0
mm(i+1)=c2(i+1);
else
mm(i+1)=c1(i+1);
end
end
subplot(4,1,4);
xlabel('Time')
ylabel('Amplitude')
title('Modulated Wave')
plot(t,mm);
|
b4c32a4286a040ccba2c831447abbd3b16a4572a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/551/CH5/EX5.21/21.sce
|
5f7e6bcd945a7b508df7a181b2a563ddf0df8c44
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 465 |
sce
|
21.sce
|
clc
T0=273; //K
T1=673; //K
T2=298; //K
m_w=10; //kg
T3=323; //K
c_pw=4186; //kJ/kg.K
disp("Let C=mi*cpi")
C=m_w*c_pw*(T3-T2)/(T1-T3);
S_iT1=C*log(T1/T0); // Entropy of iron at 673 K
S_wT2=m_w*c_pw*log(T2/T0); //Entropy of water at 298 K
S_iT3=C*log(T3/T0); //Entropy of iron at 323 K
S_wT3=m_w*c_pw*log(T3/T0); //Entropy of water at 323 K
dS_i=S_iT3 - S_iT1;
dS_w=S_wT3 - S_wT2;
dS_net=dS_i + dS_w
disp("Since dS>0, process is irreversible")
|
d7fd22ed3d91dda513575c2e76f5e4179cc401d3
|
d3a8c313f3460c20c00de62c57119c9b24ac033e
|
/projects/realtime-system/nl_lib/nl_lib_com/tcd/tmp/nl_ringbuffers.c.tst
|
be19dc1111c1deb5bd35a11ca9ce011b1ec3c129
|
[] |
no_license
|
hhoegelo/C15
|
cb49b3236959b13e48928b7d9e0677146377e027
|
cc12e6e896e70240ac908f5b0c4b79ad90115cef
|
refs/heads/master
| 2022-12-25T23:20:16.099933 | 2020-04-30T17:01:19 | 2020-04-30T17:01:19 | 260,872,595 | 0 | 0 | null | 2020-05-03T09:48:22 | 2020-05-03T09:48:21 | null |
UTF-8
|
Scilab
| false | false | 1,737 |
tst
|
nl_ringbuffers.c.tst
|
/******************************************************************************/
/** @file ln_ringbuffers.c
@date 2020-02-15
@version 0
@author KSTR
@brief a set of ringbuffers
@ingroup nl_tcd_modules
*******************************************************************************/
#include "ln_ringbuffers.h"
// =============
// ============= local constants and types
// =============
#define RBUF_COUNT = 20; // 20 ringbuffers
#define RBUF_SIZE = 16; // containing 16 values each
uint16_t rbIndex;
uint16_t valReadIndex;
uint16_t valWriteIndex;
uint32_t sum[RBUF_fCOUNT];
uint16_t values[RBUF_SIZE][RBUF_COUNT];
/*************************************************************************/ /**
* @brief Init Ring Buffer
******************************************************************************/
void RB_Init_U16(void)
{
rbIndex = 0;
valReadIndex = 0;
valWriteIndex = 0;
for (int buffer = 0; buffer < RBUF_COUNT; buffer++)
{
sum[buffer] = 0;
for (int position = 0; position < RBUF_SIZE; position++)
values[position][buffer] = 0;
}
}
uint16_t RB_Write_U16(const uint16_t newValue)
{
sum[rbIndex] += newValue - values[valWriteIndex][rbIndex];
values[valWriteIndex][rbIndex] = newValue;
return newValue;
}
uint16_t RB_Read_U16(void)
{
return values[valReadIndex][rbIndex];
}
uint16_t RB_Read_U16_Avg(void)
{
return sum[rbIndex] / size[rbIndex];
}
uint32_t RB_Read_U16_Sum(void)
{
return sum[rbIndex];
}
void RB_ReadNext_U16_Avg(void)
{
valReadIndex++;
if (valReadIndex >= RBUF_SIZE)
valReadIndex = 0;
}
void RB_WriteNext_U16_Avg(void)
{
valWriteIndex++;
if (valWriteIndex >= RBUF_SIZE)
valWriteIndex = 0;
}
// EOF
|
87df4b0ba0034f9780296d5fe02276b45663fca5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/68/CH5/EX5.8/ex8.sce
|
8dd183758f6618b2848a585bf24b0d93ac1f20ad
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 429 |
sce
|
ex8.sce
|
// Example 5.8 : Analyse the circuit to find node voltages and branch currents
V_CC= 10; // (V)
R_C=2000; // (ohm)
V_BB=5; // (V)
V_BE=0.7;
R_B=100*10^3; // (ohm)
B=100; // beta value
I_B=(V_BB-V_BE)/R_B;
disp(I_B,"Base current (A)")
I_C=B*I_B;
disp(I_C,"Collector current (A)")
V_C=V_CC-I_C*R_C;
disp(V_C,"Collector voltage (V)")
V_B=V_BE ; // V_B=V_BE
disp(V_B,"Base voltage (V)")
I_E=(B+1)*I_B;
disp(I_E,"Emitter current (A)")
|
2b60afd0406e8d88f51fce7bb54539e9e0047db4
|
a62e0da056102916ac0fe63d8475e3c4114f86b1
|
/set7/s_Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096.zip/Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096/CH1/EX1.26.b/ex_1_26_b.sce
|
7da056248a562ef8392b59bb4bad1c29d406c2e5
|
[] |
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 | 284 |
sce
|
ex_1_26_b.sce
|
errcatch(-1,"stop");mode(2);//Example 1.26.b // the lag
;
;
//given data :
Iin=25; // may be +ve or -ve
t1=20; // in seconds
t2=4; // in minutes
f=1/(t2*60); // cycles/sec
w=2*%pi*f; // rad/sec
pi=atan(w*t1); // in rad
L=(1/w)*pi
disp(L,"the lag,L(seconds)= ")
exit();
|
def4e53722efa5c3c4b98304475f8c0822289fac
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1073/CH5/EX5.5/5_5.sce
|
ec084f87f8323ad681695d7a083d22a549a0c3da
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 976 |
sce
|
5_5.sce
|
clc;
clear;
//Example 5.5
Cpc=4187 //Specific heat of water in [J/(kg.K)]
Cph=2000 //Sp heat of oil in [J/(kg.K)]
mc_dot=1300/3600 //[kg/s]
mh_dot=550/3600 //[kg/s]
w=mc_dot*Cpc //[W/K]
o=mh_dot*Cph //[W/K]
//Heat capacity of rate of hot fluid is smaller than water
U=1075 //[W/sq m.K]
A=1 //[sq m]
ntu=(U*A)/(mh_dot*Cph)
C=mh_dot*Cph/(mc_dot*Cpc)
E=(1-%e^(-ntu*(1-C)))/(1-C*%e^(-ntu*(1-C))) //Effeciency
T1=367 //[K]
t1=288 //[K]
T2=T1-E*(T1-t1) //Outlet temperature [K]
T2=291.83 //Approximated in book without precise calculation
t2=C*(T1-T2)+t1 //[K]
Q=mh_dot*Cph*(T1-T2) //[W]
printf("\n\nEffectiveness of exchanger is %f\n",E);
printf("\nOutlet temperature of oil is %f K\n",T2);
printf("\nOutlet temperature of water is %f K\n",t2);
printf("\nRate of heat transfer is %f W",Q);
|
1eb8577de4face0f8a2939b0aca3dc85fc4fbcca
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/275/CH4/EX4.4.41/Ch4_4_41.sce
|
6032f4100ee554dee4ad8ad5cb9c4afb4d931582
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 394 |
sce
|
Ch4_4_41.sce
|
clc
disp("Example 4.41")
printf("\n")
disp("Design the SCR crowbar circuit to protect the load from voltage levels greater than 7.5V")
printf("Given\n")
//gate trigger voltage
Vgt=0.7
//load voltage maximum
VLmax=7.5
//Zener voltage is
Vz=VLmax-Vgt
//assume zener current(mini) as
Izmin=10^-3
R=Vgt/Izmin
printf("zener voltage \n%f volt\n",Vz)
printf("Resistance \n%f ohm\n",R)
|
a7162f5b4e1d4d83e93fa245ae894de4b8f5b1f4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2519/CH13/EX13.9/Ex13_9.sce
|
672e7253f4142036e8196862bceb3c01934b432b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 240 |
sce
|
Ex13_9.sce
|
clc
clear
//Initialization of variables
py=20 //psia
px=3.55 //psia
R=1.986/29
//calculations
pr=py/px
disp("from table B-19")
Mx=2
My=0.577
pr2=0.721
ds=R*log(1/pr2)
//results
printf("Change in entropy = %.4f Btu/lbm R",ds)
|
789ac871fc5f93cf1b287e277ad57fb08cbbf9c6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/824/CH4/EX4.9/4_9.sce
|
dbfe442ab581cf3bfacd7dabedbc4081e8f4a0cd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 436 |
sce
|
4_9.sce
|
//clear//
clc
clear
exec("4.9data.sci");
V = 0:1:100;
function w=f(V,fa)
w=zeros(1,1);
ft =2*(fa0-fa(1))
Ca = Ct0*fa(1)/ft;
fb = 2*(fa0-fa(1));
Cb = Ct0*fb/ft;
w(1)= -ka*(Ca-(Cb^2)/kc)
endfunction
x=ode([9.99],V0,V,f);
for i= 1:101
fb(1,i) = 2*(fa0-x(1,i));
end
l1=x';
l2=fb';
plot2d(V',[l1 l2]);
xtitle( 'Figure E4-9.1 Molar flow rate profiles', 'V', 'fa,fb' ) ;
legend(['fa';'fb']);
|
20232e60467fffd051cd46f26815d43cd6fb7e36
|
090c4bc08ecd896fc1d76fa3454c03fa0cb805f0
|
/SciLab/laba16.sce
|
0595be1b7fbaedf489ad5a755d951194dfaea6ad
|
[] |
no_license
|
GennadySX/pLabs
|
6c64cd2fdc87a204e9b675ef7cf54f4cae4356c7
|
50810647bcc7a48ce38d51c321b165a48560b5d6
|
refs/heads/master
| 2020-09-05T17:22:46.474588 | 2019-11-07T06:35:33 | 2019-11-07T06:35:33 | 220,167,548 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 771 |
sce
|
laba16.sce
|
//Лаба 16
//Транспортная задача 1
//min(120x1+160x2+80x3+100x4)
//x1+x2=10 x3+x4=7 x1+x3=9 x2+x4=8
//x1>=0,x2>=0,x3>=0,x4>=0
clc
p=[120; 160;80; 100]
A=[1 1 0 0
0 0 1 1
1 0 1 0
0 1 0 1]
b=[10; 7; 9; 8]
ci=[0; 0; 0; 0]
cs=[10; 10; 7; 7]
me=4
x0='v'
[x,lagr,f]=linpro(p,A,b,ci,cs,me,x0)
format('v',5)
disp(x(1),'С 1-го склада в 1-ый магазин телевизоров:')
disp(x(2),'С 1-го склада во 2-ый магазин телевизоров:')
disp(x(3),'С 2-го склада в 1-ый магазин телевизоров:')
disp(x(4),'С 2-го склада во 2-ый магазин телевизоров:')
disp(,f,'Стоимость плана перевозок составит в рублях: ')
|
7be4af9b85c034593c0362d43704c5e4de26e3c4
|
e806e966b06a53388fb300d89534354b222c2cad
|
/macros/fftshift.sci
|
48b242a6674d6af99d5a89f203294d0b5f26cc80
|
[] |
no_license
|
gursimarsingh/FOSSEE_Image_Processing_Toolbox
|
76c9d524193ade302c48efe11936fe640f4de200
|
a6df67e8bcd5159cde27556f4f6a315f8dc2215f
|
refs/heads/master
| 2021-01-22T02:08:45.870957 | 2017-01-15T21:26:17 | 2017-01-15T21:26:17 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 220 |
sci
|
fftshift.sci
|
function [out]=fftshift(image)
image1=mattolist(image);
a=opencv_fftshift(image1);
dimension=size(a)
for i = 1:dimension
out(:,:,i)=a(i);
end
endfunction;
|
28968181e7be1609832bac0e289cf98214dc200e
|
5b14d330ace788383138f839d8d4a7ab563dc101
|
/scilab/zad_01_intro/filmy.sce
|
99df79bf2345976aeb34cc1869319e6eea9a8b61
|
[] |
no_license
|
cereberus/chartula
|
3b8c4aebf761186e01ec751b29abf99ade685243
|
3f261e37f98ffa435e55fa68295e4a233f83aff2
|
refs/heads/master
| 2020-05-29T22:54:24.022137 | 2017-06-20T14:23:14 | 2017-06-20T14:23:14 | 28,778,262 | 0 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 181 |
sce
|
filmy.sce
|
licznik = 0;
czas=0;
[wier kol]=size(dane);
for i=1:1:wier
if dane(i,1) == 1996
licznik=licznik+1;
czas=czas+dane(i,4);
end
end
disp(czas/licznik)
|
8fd49205fd66ed2fe3c4abd568e38cf78a2d61be
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1616/CH2/EX2.7/ex2_7.sce
|
e4861ae2f4195e4d25962499166e8e5743f679b0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 719 |
sce
|
ex2_7.sce
|
//ex2.7 from the previous problem find instantaneous voltage and current at x=50cm and t=1nsec & peak voltage and current at x=1m
f=2e9;
w=2*%pi*f;
x=0.5;
t=1e-9;
// at x=0 t=0 v(t)=2V
Vpositive=2;
// at 0=60,x=0,t=0
Vnegative=1;
o=%pi/3;
k=sqrt((0.1+%i*w*0.01e-6)*(0.01+%i*w*1e-10));
a=real(k);
b=imag(k);
v=Vpositive*exp(%i*0)*exp(-a*x)*exp(%i*(w*t-b*x))+Vnegative*exp(%i*o)*exp(a*x)*exp(%i*(w*t+b*x));
V=real(v);
disp('Therefore, at x= 50c and t=10nsec , we get');
disp('instantaneous value of voltage is= '+string(V)+'V');
zo=complex(10,0.0358);
i=real(Vpositive*exp(0)*exp(-a*x)*exp(%i*(w*t-b*x))/zo-Vnegative*exp(%i*o)*exp(a*x)*exp(%i*(w*t+b*x))/zo);
disp('instantaneous value of current is= '+string(i)+'A');
|
3a38a58a1ce8ea277d92a865be69b07545e758b0
|
6c7a728e11a427c93b15669517131a79a0703108
|
/api/pdb_root/install/scripts/build_file_name_convert.tst
|
412dd038888b75b3398598195f50a09cd73ee402
|
[] |
no_license
|
ZVlad1980/adm_scripts
|
0b9fe4ff166213dc649d555c81e8d65b858074e4
|
9978a098c8140f5722b51e799969b76e2d68b42e
|
refs/heads/master
| 2020-03-31T08:45:49.405822 | 2019-04-30T05:04:03 | 2019-04-30T05:04:03 | 152,071,490 | 1 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 612 |
tst
|
build_file_name_convert.tst
|
PL/SQL Developer Test script 3.0
25
-- Created on 12.05.2018 by V.ZHURAVOV
declare
-- Local variables here
function get_file_name_convert(
p_pdb_source varchar2,
p_pdb_target varchar2,
p_db_create_file_dest varchar2
) return varchar2 is
l_result varchar2(32767);
--
cursor l_pdb_files(p_type int) is
select pdb.file_type,
pdb.file_name,
pdb.file_num,
pdb.tablespace_name
from cdb_all_files_v pdb
where pdb.pdb_name = p_pdb_source;
--
begin
end;
begin
-- Test statements here
end;
0
0
|
35a7fd705b1da4dac62b40c0546df0af17f1cac9
|
c4ab1127be3f68a97a5191d086968a1c6d50c6c3
|
/DeliverableNI/SciLab/test_robot.sce
|
9a6067fdcdf2da96bcfc32003907b7e008cb30a8
|
[] |
no_license
|
etumanov/AppliedRoboticsUNITN
|
4b062afef3ae44d77f88ad7c411ae9929e2d85c1
|
241363c8c8fdb8b8fca50e160a9fa7d0c833dc49
|
refs/heads/master
| 2016-08-11T06:57:47.674470 | 2016-01-20T08:16:25 | 2016-01-20T08:16:25 | 49,948,867 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 3,915 |
sce
|
test_robot.sce
|
clc;clear;
myfilter = iir(3,'lp','cheb2',[0.04 0],[0 0.01]);
//k_est = 8.7755267;
xi_est = 0.8209478;
o_n_est = 16.5151;
k_est = 0.1531618;
//xi_est = 0.8209478;
//o_n_est = 0.0165151;
alpha = 3;
s = poly(0, 's');
// Dati 1
A1 = 40;
fileName = strcat(['C:\Users\Paolo\Desktop\universita\LAR\DATA\p_', string(A1), '_st_2_b_1000.csv']);
File = read(fileName,-1,4);
packet1 = size(File(:,1),1);
tempo1 = zeros(1, packet1)/1000;
inputSignal1 = zeros(1, packet1);
velocita1 = zeros(1, packet1);
output1 = zeros(1, packet1);
tempo1 = File(:,1)'/1000;
inputSignal1 = File(:,2)';
contatore1 = File(:,3)';
velocita1 = File(:,4)' * (%pi/180) * 1000;
output1 = flts(velocita1, myfilter);
// Simulation 1
G_est1 = k_est/(s^2/o_n_est^2 + 2*xi_est/o_n_est*s + 1);
G_est1 = syslin('c', G_est1);
output_est1 = csim(inputSignal1, tempo1, G_est1);
// Dati 2
A2 = 50;
fileName = strcat(['C:\Users\Paolo\Desktop\universita\LAR\DATA\p_', string(A2), '_st_2_b_1000.csv']);
File = read(fileName,-1,4);
packet2 = size(File(:,1),1);
tempo2 = zeros(1, packet2);
inputSignal2 = zeros(1, packet2);
velocita2 = zeros(1, packet2);
output2 = zeros(1, packet2);
tempo2 = File(:,1)'/1000;
inputSignal2 = File(:,2)';
contatore2 = File(:,3)';
velocita2 = File(:,4)' * (%pi/180) * 1000;
output2 = flts(velocita2, myfilter);
// Simulation 2
G_est2 = k_est/(s^2/o_n_est^2 + 2*xi_est/o_n_est*s + 1);
G_est2 = syslin('c', G_est2);
output_est2 = csim(inputSignal2, tempo2, G_est2);
// Dati 3
A3 = 60;
fileName = strcat(['C:\Users\Paolo\Desktop\universita\LAR\DATA\p_', string(A3), '_st_2_b_1000.csv']);
File = read(fileName,-1,4);
packet3 = size(File(:,1),1);
tempo3 = zeros(1, packet3);
inputSignal3 = zeros(1, packet3);
velocita3 = zeros(1, packet3);
output3 = zeros(1, packet3);
tempo3 = File(:,1)'/1000;
inputSignal3 = File(:,2)';
contatore3 = File(:,3)';
velocita3 = File(:,4)' * (%pi/180) * 1000;
output3 = flts(velocita3, myfilter);
// Simulation 3
G_est3 = k_est/(s^2/o_n_est^2 + 2*xi_est/o_n_est*s + 1);
G_est3 = syslin('c', G_est3);
output_est3 = csim(inputSignal3, tempo3, G_est3);
// Plot
scf(1);
clf;
xtitle("TEST vs SIMULATION");
xlabel("Time (s)");
ylabel("Speed (rad/s)");
plot(tempo1, output1, 'g');
plot(tempo1, output_est1, 'g--');
plot(tempo2, output2, 'r');
plot(tempo2, output_est2, 'r--');
plot(tempo3, output3, 'b');
plot(tempo3, output_est3, 'b--');
h2=legend(['power 40 (test)'; 'power 40 (simulation)';'power 50 (test)'; 'power 50 (simulation)';'power 60 (test)'; 'power 60 (simulation)'] ,4);
//plot(tempo, k_est*A*(100 - alpha)/100, 'r--');
//plot(tempo, k_est*A*(100 + alpha)/100, 'r--');
//plot([Ts, Ts], [0, output_at_Ts], 'k');
//plot(tempo, output_est2, 'm');
//plot([tempo(FirstMax), tempo(FirstMin), tempo(SecondMax)], [output(FirstMax), output(FirstMin), output(SecondMax)], 'bo');
ISE1 = sum((output1 - output_est1).^2);
IAE1 = sum(abs(output1 - output_est1));
ITSE1 = sum(tempo1 .* (output1 - output_est1).^2);
ITAE1 = sum(tempo1 .* abs(output1 - output_est1));
ISE2 = sum((output2 - output_est2).^2);
IAE2 = sum(abs(output2 - output_est2));
ITSE2 = sum(tempo2 .* (output2 - output_est2).^2);
ITAE2 = sum(tempo2 .* abs(output2 - output_est2));
ISE3 = sum((output3 - output_est3).^2);
IAE3 = sum(abs(output3 - output_est3));
ITSE3 = sum(tempo3 .* (output3 - output_est3).^2);
ITAE3 = sum(tempo3 .* abs(output3 - output_est3));
AE1 = (ISE1 + IAE1 + ITSE1 + ITAE1)/4
AE2 = (ISE2 + IAE2 + ITSE2 + ITAE2)/4
AE3 = (ISE3 + IAE3 + ITSE3 + ITAE3)/4
ISE1/packet1
ISE2/packet2
ISE3/packet3
scf(2);
clf;
xtitle("DIFFERENCE BETWEEN OUTPUT_EXP AND OUTPUT_EST");
xlabel("Time (s)");
ylabel("Error (rad/s)");
a=gca();
a.x_location = "middle";
a.y_location = "middle";
a.data_bounds = [0,-3, 0;2, 3, 2000];
//a.box = "on";
plot(tempo1, (output1 - output_est1), 'b');
plot(tempo2, (output2 - output_est2), 'g');
plot(tempo3, (output3 - output_est3), 'r');
//h2.box = "on";
h2=legend(['power 40';'power 50';'power 60']);
|
4ef47321f5bb6110624b56c934c929342f13f9c7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/165/CH4/EX4.26/ex4_26.sce
|
bd7e878dbe0de99b87465af78f22ac82a5037394
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 930 |
sce
|
ex4_26.sce
|
//Example 4.26
close;
clc;
E=3; //in volts
Rm=2000; //Meter resitence
Rz=28000; //Multiplier resistence
//Given R x 1 range
R=10; //in ohms
Rx=20; //in ohms
V=E*R/(R+Rx); //Voltage across parallel combination
Im=V/(Rm+Rz); //Current through meter
printf('\nCurrent through meter in R x 1 range for 20 ohm = %.2f uA\n',Im*10^6)
//Ohmmeter is set at R x 10 range
R=100 //in ohms
Rx=200; //in ohms
V=E*R/(R+Rx); //Voltage across parallel combination
Im=V/(Rm+Rz); //Current through meter
printf('\nCurrent through meter in R x 10 range for 200 ohm = %.2f uA\n',Im*10^6)
//Ohmmeter is set at R x 100 range
R=1000; //in ohms
Rx=2000; //in ohms
V=E*R/(R+Rx); //Voltage across parallel combination
Im=V/(Rm+Rz); //Current through meter
printf('\nCurrent through meter in R x 100 range for 2 k ohm = %.2f uA\n',Im*10^6)
|
729a698277a3b13b74e23a552563dc2def04367c
|
8781912fe931b72e88f06cb03f2a6e1e617f37fe
|
/scilab/gr_harm_easa/resources/method_grobj.sce
|
0ab68eb321812a92ec94a432c1146594a928b3e8
|
[] |
no_license
|
mikeg2105/matlab-old
|
fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e
|
eac168097f9060b4787ee17e3a97f2099f8182c1
|
refs/heads/master
| 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,496 |
sce
|
method_grobj.sce
|
function [alp,cux,cuy,cuz,uxx,uxy,uxz,uyy,uyz,uzz,qxx,qxy,qxz,qyy,qyz,qzz,dxuxx,dxuxy,dxuxz,dxuyy,dxuyz,dxuzz,...
dyuxx,dyuxy,dyuxz,dyuyy,dyuyz,dyuzz,...
dzuxx,dzuxy,dzuxz,dzuyy,dzuyz,dzuzz]=method_grobj(...
nx,ny,nz,...
dt,dx,dy,dz,...
x,y,z,r,psi,...
alp,cux,cuy,cuz,rg,...
uxx,uxy,uxz,uyy,uyz,uzz,...
gxx,gxy,gxz,gyy,gyz,gzz,...
qxx,qxy,qxz,qyy,qyz,qzz,...
t00,txx,txy,txz,tyy,tyz,tzz,...
dxuxx,dxuxy,dxuxz,dxuyy,dxuyz,dxuzz,...
dyuxx,dyuxy,dyuxz,dyuyy,dyuyz,dyuzz,...
dzuxx,dzuxy,dzuxz,dzuyy,dzuyz,dzuzz...
)
// Solve Einstein equation for gravitationaly moving objects
//function [alp,cux,cuy,cuz,uxx,uxy,uxz,uyy,uyz,uzz,qxx,qxy,qxz,qyy,qyz,qzz,dxuxx,dxuxy,dxuxz,dxuyy,dxuyz,dxuzz,...
// dyuxx,dyuxy,dyuxz,dyuyy,dyuyz,dyuzz,...
// dzuxx,dzuxy,dzuxz,dzuyy,dzuyz,dzuzz]=method_grobj(...
// nx,ny,nz,...
// dt,dx,dy,dz,...
// x,y,z,r,psi,...
// alp,cux,cuy,cuz,rg,...
// uxx,uxy,uxz,uyy,uyz,uzz,...
// gxx,gxy,gxz,gyy,gyz,gzz,...
// qxx,qxy,qxz,qyy,qyz,qzz,...
// t00,txx,txy,txz,tyy,tyz,tzz,...
// dxuxx,dxuxy,dxuxz,dxuyy,dxuyz,dxuzz,...
// dyuxx,dyuxy,dyuxz,dyuyy,dyuyz,dyuzz,...
// dzuxx,dzuxy,dzuxz,dzuyy,dzuyz,dzuzz...
// )
endfunction
|
7ef9144a2a0fd16c32ceca4220ee3eae10472790
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/858/CH2/EX2.26/example_26.sce
|
f763adc9cf0ecf91d14a76b53bdd5c4674cc487a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 243 |
sce
|
example_26.sce
|
clc
clear
printf("example 2.26 page number 80\n\n")
//to find hardness of water
m_MgSO4=90 //in ppm
MgSO4_parts=120;
CaCO3_parts=100;
hardness=(CaCO3_parts/MgSO4_parts)*m_MgSO4;
printf("hardness of water = %f mg/l",hardness)
|
53eea63160b120436482d6ec26f4263585e991e7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2135/CH1/EX1.40/Exa_1_40.sce
|
1ba1ba6d9d0c27601c1e441fcedc6f378f56e0a2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 551 |
sce
|
Exa_1_40.sce
|
//Exa 1.40
clc;
clear;
close;
format('v',7);
//Given Data :
mCO=0.45;//Kg
mAir=1;//Kg
V=0.4;//m^3
T=15+273;//K
MCO=28;//Kg/Kgmo
MO2=32;//Kg/Kgmol
MN2=28;//Kg/Kgmol
mO2=23.3/100*mAir;//Kg
mN2=76.7/100*mAir;//Kg
Rdash=8314.3;//J/Kgk
//p*V=m*Z*R*T
pCO=mCO*Rdash/MCO*T/V/10^5;//bar
pO2=mO2*Rdash/MO2*T/V/10^5;//bar
pN2=mN2*Rdash/MN2*T/V/10^5;//bar
disp(pCO,"Pressure of CO in bar : ");
disp(pO2,"Pressure of O2 in bar : ");
disp(pN2,"Pressure of N2 in bar : ");
p=pCO+pO2+pN2;//bar
disp(p,"Total pressure in vessel in bar : ");
|
b4b82f250c74329c8b6f57542750f009a6b0ecec
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2252/CH7/EX7.9/Ex7_9.sce
|
161f705fda6241000b03b817254b4cc88fa0df6d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 673 |
sce
|
Ex7_9.sce
|
//calculating capacitance
Xc=4//capacitive reactance
f=50
omega=2*%pi*f
C=1/(omega*Xc)
mprintf("Capacitance C=%f microF\n",C*1D+6)
//calculating impedance
R=5//resistance of circuit
Z=sqrt(R^2+Xc^2)
mprintf("Impedance of circuit=%f ohm\n",Z)
//calculating current taken by circuit
V=200
I=V/Z
mprintf("Current drawn by circuit=%f A\n",I)
//calculating voltage drop across the resistance
Vr=I*R
mprintf("Voltage drop across the resistance=%f V\n",Vr)
//calculating voltage drop across the reactance
Vc=I*Xc
mprintf("Voltage drop across the reactance=%f V\n",Vc)
//calculating power factor
pf=R/Z
mprintf("Power factor of the circuit=%f leading",pf)
|
ed73618fe874339e4f9912951750656359892588
|
8458ae69238b4e9e89cec1f6bdb30f6d009e3053
|
/scripts/ApplyHPF.sce
|
a0c7e8675719a66a2882f32be516dd0f1a83e2b9
|
[] |
no_license
|
keigorori/signal_processing
|
aa5f18bcb2be385ce3a4fef208d29b05a036faf9
|
a30e41e3fd2c3287af43e0d4bd554020a5055ff3
|
refs/heads/master
| 2020-04-05T10:45:01.018660 | 2019-02-08T02:08:59 | 2019-02-08T02:08:59 | 156,809,290 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,334 |
sce
|
ApplyHPF.sce
|
///////////////////////////////////////////////////////////
// wavファイルにハイパスフィルタを掛けた結果をファイル出力
///////////////////////////////////////////////////////////
clear();
cd(get_absolute_file_path('ApplyHPF.sce'));// ディレクトリ変更
exec( '../filters/Highpass.sci');
exec( '../plots/PlotFrequency.sci');
exec( '../plots/PlotFrequencyResponse.sci');
// ファイル入力
inputPath = '../data/';
inputFilename = 'click_1ch_16bit_48k.wav';
[input, samplingRate, bits] = wavread(inputPath + inputFilename); // ファイル読み込み
// カットオフ周波数
cutoffHz = 1500;
// フィルタ適用
[output, freqResponse, freqGrid] = Highpass(input, samplingRate, cutoffHz, -60, 10);
// ファイル出力
outputpath = './result/highpass/';
outputFilename = basename(inputFilename) + '_HPF' + string(cutoffHz) + '.wav';
mkdir(outputpath);
savewave(outputpath + outputFilename, output, samplingRate, bits);
// プロット
h = scf(1);
clf();
displayRect=[100, -90, 10000, 3]; // 表示領域
//PlotFrequency(input, samplingRate, 'hn', h, 2, displayRect); // 入力波形
PlotFrequency(output, samplingRate, 'hn', h, 2, displayRect); // 出力波形
xgrid();
h = scf(2);
clf();
PlotFrequencyResponse(freqResponse, freqGrid, h, 6, displayRect); // 周波数応答
xgrid();
|
ba28f5e1ef82dfe837353de07e653e8594c2165a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2282/CH5/EX5.10/ex5_10.sce
|
9bc4ebeb1352493479f83570edeb4d5fe22b70c2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 241 |
sce
|
ex5_10.sce
|
// Example 5.10, page no-192
clear
clc
fd=75 //Maximum allowed frequency deviation in kHz
fm=15 //Highest modulating frequency in kHz
D=fd/fm
bw=2*(D+1)*fm
printf("Deviation Ratio, D = %.0f\n Bandwidth = %.0f kHz",D,bw)
|
5e88cdbd60f141cdb46c813a3e3dc014a9758369
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1967/CH19/EX19.2/19_2.sce
|
ee57d9ca1a6d43d563d317e178140336375e91df
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 305 |
sce
|
19_2.sce
|
clc
//initialisation of variables
clear
E= -0.344 //volt
E1= -0.401 //volt
R= 0.05914 //volt
n= 4
T= 25 //C
H= -7300 //cal
//CALCULATIONS
po2= 10^(-n*(E-E1)/R)
dH= -0.5*n*H+0.5*n*(273+T)
//RESULTS
printf ('Pressure of Oxygen = %.1e atm',po2)
printf ('\n Change in Enthalpy = %.f cal',dH+4)
|
ac855cf8eb2e44fb0b62d35019bb79dcfb692bb2
|
c90039f74887835096a93884110d643c4823e530
|
/doc/oficial/dados para treinamento RNA/RNA_ANALISE_TECNICA/RESULTADO/RESULTADO_SINAL.sce
|
0a89cede18930a94761420f41f3fa81797be7d6a
|
[] |
no_license
|
igorlima/CellInvest
|
da991366b329b5d8021e9b949d7b726023489ec8
|
c5411247e504b8a8d0ad77d32d41bbd2aee39930
|
refs/heads/master
| 2020-04-06T03:40:05.614164 | 2012-10-23T12:58:20 | 2012-10-23T12:58:20 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 2,473 |
sce
|
RESULTADO_SINAL.sce
|
clear;
path_resultado = get_absolute_file_path('RESULTADO_SINAL.sce');
exec( path_resultado+"\_dados_entrada.sce" );
exec( path_resultado+"\..\RNA_ANALISE_TECNICA.sce" );
printf( 'Iniciando calculos dos resultados Sinal...\n' );
codigoAtivo = 'BBAS3';
dados_entrada = getDadosEntrada( codigoAtivo, MAXIMO_LINHA_ARQUIVO );
histograma = dados_entrada(:,3);
macd_line = dados_entrada(:,4);
macd_sinal = dados_entrada(:,5);
coeficientes = regressao_linear( [[1:length(histograma)]' histograma], 3 );
b_max_abs_histograma = maximo_absoluto( coeficientes(:,1) );
valor_max_abs_hist = maximo_absoluto( histograma );
coeficientes = regressao_linear( [[1:length(macd_line)]' macd_line], 3 );
b_max_abs_macdline = maximo_absoluto( coeficientes(:,1) );
valor_max_abs_macdline = maximo_absoluto( macd_line );
coeficientes = regressao_linear( [[1:length(macd_sinal)]' macd_sinal], 3 );
b_max_abs_macdsinal = maximo_absoluto( coeficientes(:,1) );
valor_max_abs_macdsinal = maximo_absoluto( macd_sinal );
resultado = [];
for i=1:length( histograma )
valorHistograma = normalizar_valor( histograma(i), valor_max_abs_hist );
valorMacdLine = normalizar_valor( macd_line(i), valor_max_abs_macdline );
valorMacdSinal = normalizar_valor( macd_sinal(i), valor_max_abs_macdsinal );
if i <= 2
alphaHistograma = 0.5;
alphaMacdLine = 0.5;
alphaMacdSinal = 0.5;
else
cof = regressaoLinear( [[1:3]' [histograma(i-2);histograma(i-1);histograma(i)]] );
b = cof(1);
alphaHistograma = normalizar_valor( b, b_max_abs_histograma );
cof = regressaoLinear( [[1:3]' [macd_line(i-2);macd_line(i-1);macd_line(i)]] );
b = cof(1);
alphaMacdLine = normalizar_valor( b, b_max_abs_macdline );
cof = regressaoLinear( [[1:3]' [macd_sinal(i-2);macd_sinal(i-1);macd_sinal(i)]] );
b = cof(1);
alphaMacdSinal = normalizar_valor( b, b_max_abs_macdsinal );
end
saida_rna_sinal = rna_sinal( valorHistograma, alphaHistograma, valorMacdLine, alphaMacdLine, valorMacdSinal, alphaMacdSinal );
resultado = [ resultado ; saida_rna_sinal' ];
if pmodulo( i, 10 ) == 0 then
printf( ' (' );
printf( string( i ) );
printf( ') ' );
end
if pmodulo( i, 100 ) == 0 then
printf( '\n' );
end
end
printf( '\nCalculos efetuados com sucesso.' );
printf( '\nGravando resultado...' );
gravarDados( path_resultado + '\Saida\RESULTADO_SINAL_'+codigoAtivo+'.txt', resultado );
printf( '\nResultado Gravado.' );
|
4087b77b9bc84c7cc546b099b23429ac971ea964
|
23573b967e8324d44226379d70559b8f0ea34905
|
/code/fsolve/Redlich-Kwong.sce
|
c2fc32667233ea80e6d2470d42ae181152605ab6
|
[] |
no_license
|
FOSSEE/FOT_Examples
|
91c8b8e9dc58545604b2c2af41a7e22f702b78f3
|
75947a7aa5a3955fe5a72e09f55bbdc05e3b8751
|
refs/heads/master
| 2020-03-22T09:00:48.306061 | 2018-07-24T04:49:25 | 2018-07-24T04:49:25 | 139,807,736 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 2,702 |
sce
|
Redlich-Kwong.sce
|
//Ref:Steven C. Chapra. 2006. Applied Numerical Methods with MATLAB for Engineers and Scientists. McGraw-Hill Science/Engineering/Math,Chapter 6
//Example:
//The Redlich-Kwong equation of state is given by
//p = ((R*T)/(v-b) - a/(v*(v+b)*sqrt(T)))
//where R = the universal gas constant [= 0.518 kJ/(kg K)], T = absolute temperature (K), p = absolute pressure (kPa),and v = the volume of a kg of gas (m3/kg). The parameters a and b are calculated by
// a = 0.427*(R^2*Tc^2.5)/pc; b = 0.0866*R*(Tc/pc);
//where pc = 4600 kPa and Tc = 191 K. As a chemical engineer, you are asked to determine the amount of methane fuel that can be held in a 3 m3 tank at a temperature of −40 ◦C with a pressure of 65,000 kPa. Use a root-locating method of your choice to calculate v and then determine the mass of methane contained in the tank.
//Note: The initial guess has to be assumed by the user. An improper initial guess will result in deviation from the root.
//======================================================================
// Copyright (C) 2018 - IIT Bombay - FOSSEE
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author:Debasis Maharana
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
//======================================================================
clc;
function y = Redlich_Kwong(v)
R = 0.518;T = 273+(-40);p = 65000;Tc = 191;pc = 4600;
a = 0.427*(R^2*Tc^2.5)/pc; b = 0.0866*R*(Tc/pc);
y = p - ( (R*T)/(v-b) - a/(v*(v+b)*sqrt(T)) );
endfunction
function dy = dv_Redlich_Kwong(x)
dy = numderivative(Redlich_Kwong, x);
endfunction
// Set of initial values to check
x0 = [1 0.01 -1.0 -0.01] ;
tol = 1D-10;
for i =1:length(x0)
disp(x0(i),'Initial guess value is')
[x ,v ,info]=fsolve(x0(i),Redlich_Kwong ,dv_Redlich_Kwong ,tol)
select info
case 0
mprintf('\n improper input parameters\n');
case 1
mprintf('\n algorithm estimates that the relative error between x and the solution is at most tol\n');
case 2
mprintf('\n number of calls to fcn reached\n');
case 3
mprintf('\n tol is too small. No further improvement in the approximate solution x is possible\n');
else
mprintf('\n iteration is not making good progress\n');
end
mprintf('\n volume of metheane is %f m3/kg and Mass of methane is %f kg\n',x,3/x);
if i<length(x0)
input('press enter to check the next initial guess value')
clc
end
end
|
ff0315051d59244c78929a9a5439655dfc4385cf
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2621/CH1/EX1.6/Ex1_6.sce
|
2f8ee7f2659b4a3562c12a5e3522247148cd6676
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 406 |
sce
|
Ex1_6.sce
|
// Example 1.6
clc;
clear;
close;
// Given data
format('v',6);
VEE= 5;// supply voltage in V
RC= 2*10^3;// collector resistance in Ω
RE= 4.3;// emitter resistance in kΩ
VBE= 0.7;// in V
VT= 26;// in mV
IE= (VEE-VBE)/(2*RE);//emitter current in mA
re_desh= VT/IE;//dynamic emitter resistance in Ω
Ad= RC/(2*re_desh);// differential mode gain
disp(Ad,"The differential mode gain is : ");
|
eb1aea239deb16facd67cba368feabaf6d3a1140
|
b9117a375dfd4994834bffe24f28414f4599c02e
|
/test/trans_case_norm.tst
|
9c2fcc0e83dac3f38352372f02265c733004658a
|
[] |
no_license
|
mdolgun/NLPParser
|
2a7e1ab5f820c902ecb7ecd05a90a9caca7fb4bf
|
54d8494a8799efb94ff0dfa21c8c46292dd9cb22
|
refs/heads/master
| 2021-07-16T08:32:55.973580 | 2020-10-17T20:28:51 | 2020-10-17T20:28:51 | 218,727,320 | 2 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 857 |
tst
|
trans_case_norm.tst
|
###grammar
S -> Subj VP Obj : Obj VP Subj
Subj -> i : -m
Subj -> you : -n
Subj -> it | she | he
Subj -> NP : NP
VP -> saw : gördü [case=i]
VP -> looked at : baktı [case=e]
VP -> insisted on : ısrar etti [case=de]
VP -> hated : nefret etti [case=den]
Obj -> NP : NP Case
Case -> [case=i,det=0]
Case -> : -yı [case=i,det=1]
Case -> : -ya [case=e]
Case -> : -da [case=de]
Case -> : -dan [case=den]
NP -> a car : bir araba [det=0]
NP -> the car : araba [det=1]
###input
i saw a car
###enum
bir araba gördüm
###input
i saw the car
###enum
arabayı gördüm
###input
i hated the car
###enum
arabadan nefret ettim
###input
i looked at the car
###enum
arabaya baktım
###input
i insisted on the car
###enum
arabada ısrar ettim
###input
i insisted on a car
###enum
bir arabada ısrar ettim
|
e2915e91ca61d8e0f7fa6b6cce3da68f769eed65
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1997/CH7/EX7.1/example1.sce
|
a262d9d1ecf336dc4e225f9548c07a493019736a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 453 |
sce
|
example1.sce
|
//Chapter-7 example 1
//=============================================================================
clc;
clear;
//input data
BW = 0.5*10^9;//bandwidth of pulsed radar in hz
Tfa = 10;//false alarm time in minutes
//Calculations
Tfa1 = Tfa*60;//false alarm time in seconds
Pfa = 1/(BW*Tfa1)
//Output
mprintf('probability of false alarm is %g',Pfa);
//=============end of the program==============================================
|
be78b6ca66f9c135ffdaf41d25fe5278b7783c48
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/2.3/Unix-Windows/scilab-2.3/examples/link-examples/ext5f.sce
|
c4bb1b14e6f454bd0a4e4e7d2dc7f6c38878c42c
|
[
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] |
permissive
|
clg55/Scilab-Workbench
|
4ebc01d2daea5026ad07fbfc53e16d4b29179502
|
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
|
refs/heads/master
| 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 172 |
sce
|
ext5f.sce
|
host('make /tmp/ext5f.o');
link('/tmp/ext5f.o','ext5f')
// reading vector a in scilab internal stack
a=[1,2,3];b=[2,3,4];
c=fort('ext5f',b,1,'d','out',[1,3],2,'d')
c=a+2*b
|
2932517bf6120595fa0ca8893b2de5c32e52177e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1448/CH13/EX13.2.i/I13_2.sce
|
d76b42e73d5d990df773863e9664c99b8916208a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 262 |
sce
|
I13_2.sce
|
clc
//Initialization of variables
dv=1 //pm^3
a0=52.9 //pm
//calculations
Probability=dv/(%pi*a0^3)
//results
printf("probability of finding electron = %.1e",Probability)
printf("\n Chance that electron would be found is one in %d times",1/Probability)
|
6709eb5e6994d3ba2e1a2b77ccf85b1c4e527bd6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3876/CH14/EX14.4/Ex14_4.sce
|
e327efecd019bad60aec31644e4186d1ef98ef52
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 238 |
sce
|
Ex14_4.sce
|
//Chapter 14 Determination of Hydroniumion Concentrations
clc;
clear;
//Initialisation of Variables
E= 0.527 //v
T= 25 //C
R= 0.0592
e= -0.246 //v
//CALCULATIONS
pH= -(-E-e)/R
//RESULTS
mprintf("pH of the unknown solution= %.2f",pH);
|
6117702b81afb65295bc4813f4aeb38fbb5178c4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/884/CH19/EX19.5/Example19_5.sce
|
3843ec0753031b65228c332b6a6c6ddef279837f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 543 |
sce
|
Example19_5.sce
|
//computation of standard free energy change for a reaction
clear;
clc;
printf("\t Example 19.5\n");
n=6;
F=96500;//faraday constant, J/V mol
E0cathode=-2.87;//standard electrode potential of cathode(Ca2+/Ca), V
E0anode=1.5;//standard electrode potential of anode(Au3+/Au), V
E0cell=E0cathode-E0anode;//standard emf of the cell, V
deltaG0=-n*F*E0cell;//standard free energy change for the reaction, kJ/mol
printf("\t the standard free energy change for the reaction is : %4.2f*10^3 kJ/mol \n",deltaG0*10^-6);
//End
|
68dd49b8c8a240e36c1271e13c8a716826968f6c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1913/CH2/EX2.27/ex27.sce
|
ead53be4b86983ff0b6243d6f77d47d8dc1f84f9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 767 |
sce
|
ex27.sce
|
clc
clear
//Input data
m=0.6;//Mass flow rate of air in kg/s
W=40;//Power required to run the compressor in kW
p1=100;//Initial pressure at the inlet of the compressor in kPa
t1=30;//Initial temperature at the inlet of the compressor in degree centigrade
z=0;//Change in potential energy is neglected
c=0;//Change in kinetic energy is neglected
q=0.4;//Heat lost to the cooling water ,bearings and frictional effects is 40% of input
cp=1.005;//Specific heat at constant pressure in kJ/kg-K
//Calculations
Q=q*W;//Net heat losses from the system in kW
H=W-Q;//Change in total enthalpy of the system in kW
t2=(H/(m*cp))+t1;//The exit air temperature in degree centigrade
//Output
printf('The exit air temperature T2 = %3.0f degree centigrade ',t2)
|
26cdcf4065e45c8fc8d9d94002476570fcd01880
|
cbe8756c4068574f2f1cf8f0ce6f11632622eccb
|
/compilers/pic16/cc/gram.tst
|
a2749423c5646e87b4a5ec3674e2d514deaf0a6b
|
[
"GPL-2.0-only",
"Apache-2.0"
] |
permissive
|
sergev/vak-opensource
|
78b063c6e139c6c8b57735780120c042a759ffdc
|
a7e0fc4289cafc1a344d8a1bcbc5e26c8b03c6ff
|
refs/heads/master
| 2023-08-14T07:50:30.069410 | 2023-08-12T08:24:27 | 2023-08-12T08:24:27 | 72,305,253 | 44 | 24 |
Apache-2.0
| 2022-06-06T18:26:23 | 2016-10-29T19:32:29 |
C
|
UTF-8
|
Scilab
| false | false | 1,296 |
tst
|
gram.tst
|
asm ("clrwdt");
asm ("
xta fsr
a+c 2
atx fsr
");
char c @ 0x10, far *cp, far *cf ();
short *s, *sf ();
long l [10], lf ();
void *vp;
long f (short a) @ 0x20
{
char b;
asm ("clrwdt");
again:
goto again;
return;
return 1;
if (c)
return;
if (! c)
goto again;
else
return a;
while (b)
continue;
do break;
while (b);
;;;;
for (a=1; a<5; ++a) {
++b;
}
switch (b) {
case 1:
break;
default:
break;
}
}
char *g (char a, char b)
{
a = a < 10;
a = a > 10;
a = a <= 10;
a = a >= 10;
a = a, a, a;
a = a / 10;
a = a % 10;
a = a + 10;
a = a - 10;
a = a << 10;
a = a >> 10;
a = a * 10;
a = (a == 10);
a = (a != 10);
a = a & 10;
a = a | 10;
a = a ^ 10;
a = (a && 10);
a = (a || 10);
a *= 10;
a /= 10;
a %= 10;
a += 10;
a <<= 10;
a >>= 10;
a &= 10;
a |= 10;
a ^= 10;
a = 10;
a = a ? 5 : 10;
a++;
a--;
++a;
--a;
a = *a;
a = &a;
a = -a;
a = !a;
a = ~a;
a = sizeof (a);
a = (char) a;
a = (char*) a;
a = (char far*) a;
a = (short) a;
a = (short*) a;
a = (long) a;
a = (long*) a;
a = (void*) a;
a = sizeof (char);
a = sizeof (char*);
a = sizeof (char far*);
a = sizeof (short);
a = sizeof (short*);
a = sizeof (long);
a = sizeof (long*);
a = sizeof (void*);
a = a [10];
a = f (a);
a.5 = 1;
a = "string";
}
|
741bbc0b3b0c95422ce443d6cf138f471bffb239
|
beca18778f40d44e713160c5b0e8136d8a92cad8
|
/scilab/great-circle-small.sce
|
55d0a82a32d1aeb8dd0610bd051d68701841e86b
|
[] |
no_license
|
thomasantony/enjomitch-orbiter
|
9542df3dfc83ce0a6cf06ec78dca91b4c1a0babf
|
83967b7bf8f8c49d1e90f7b904846e66d1ad6e37
|
refs/heads/master
| 2022-12-02T07:47:03.976695 | 2020-03-22T13:54:57 | 2020-03-22T13:54:57 | 286,159,679 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 3,959 |
sce
|
great-circle-small.sce
|
clear
r = 5;
offset = 0;
//offset = %pi/2;
// geographic coordinates
// 1 - starting point
// 2 - ending point
// latitude should be in range (-%pi/2, %pi/2)
// if displaying a satellite, lat1 is inclination
// divide the path into 2 steps - from 1 to 2 and from 2 to 3
// Increases precision greatly
lat1 = 10.57 * %pi / 180;
lat2 = 34 * %pi / 180;
// longitude should be in range (-%pi, %pi)
lon1 = 0 * %pi / 180;
lon2 = 50 * %pi / 180;
// converting to spherical coordinates
// theta should be in range of (0, %pi)
theta1 = lat1 + %pi/2;
theta2 = lat2 + %pi/2;
// phi should be in range of (0, %pi) (??)
phi1 = 0;
phi2 = lon2 - lon1;
// convert to cartesian coordinates
x1 = [0, r*sin(theta1)*cos(phi1)];
y1 = [0, r*sin(theta1)*sin(phi1)];
z1 = [0, r*cos(theta1)];
x2 = [0, r*sin(theta2)*cos(phi2)];
y2 = [0, r*sin(theta2)*sin(phi2)];
z2 = [0, r*cos(theta2)];
// create vectors for easy calculations
v1 = [x1(2), y1(2), z1(2)];
v2 = [x2(2), y2(2), z2(2)];
// actual path
vTheta12 = []; // 1st quart
vPhi12 = [];
// mirrored path
vPhi34 = [];
fixedStep = 0.04;
i = -fixedStep;
step = fixedStep;
// here, we'll be changing i from 0 to 1
// to properly scale a resulting vector below...
while (i <= 1 - step)
scf(0);
i = i + step;
// just a variable precision
//if i > 0.30 & i < 0.70
// step = fixedStep/2;
// else
// step = fixedStep;
// end
// the meatball equation of this approach:
// From v1, draw a vector to v2 and multiply it from 0 to 1
// so that we have many "straight line" points between p1 and 2
// on a plane defined by p1, p2 and origin of the planet (0,0,0)
v12 = v1 + i * (v2 - v1);
// check the length of the new point's vector
r12 = sqrt(v12(1)^2 + v12(2)^2 + v12(3)^2);
// make the vector as long as planet's radius
x121 = [0, v12(1)];
y121 = [0, v12(2)];
z121 = [0, v12(3)];
v12tmp = v12;
v12 = v12 * r / r12;
// rtest = sqrt(vtest(1)^2 + vtest(2)^2 + vtest(3)^2);
// for plotting
x12 = [0, v12(1)];
y12 = [0, v12(2)];
z12 = [0, v12(3)];
param3d(x12, y12, z12);
// param3d([v1(1) v2(1)], [v1(2) v2(2)], [v1(3) v2(3)]);
//param3d([v2(1) v3(1)], [v2(2) v3(2)], [v2(3) v3(3)]);
// convert to spherical
// r - already calculated
theta12 = acos(v12(3) / r);
phi12 = atan(v12(2) / v12(1));
// ensure proper range
if phi12 < 0
phi12 = phi12 + %pi;
end
// add new calculations to a vector
vTheta12 = [vTheta12, theta12];
vPhi12 = [vPhi12, phi12];
// mirror path (on the other side of planet)
phi34 = phi12 + %pi;
vPhi34 = [vPhi34, phi34];
end
// draw the final line with a different color
//plot2d(x12, y12);
param3d1(x12, y12, list(z12, [3,2]));
//param3d1(x23, y23, list(z23, [3,2]));
//vTheta = [vTheta, theta2];
//vPhi = [vPhi, phi2];
// convert back to geographical
vTheta12 = vTheta12 - %pi/2;
// use the initial longitude
vPhi12 = vPhi12 + lon1 + offset;
vPhi34 = vPhi34 + lon1 + offset;
// ensure proper ranges
s = size(vPhi12);
for i = 1:s(2)
if vPhi12(i) >= %pi
vPhi12(i) = vPhi12(i) - 2*%pi;
end
if vPhi34(i) >= %pi
vPhi34(i) = vPhi34(i) - 2*%pi;
end
end
scf(1);
// draw equator
plot2d([-%pi %pi], [0 0]);
// draw the actual trajectory from point 1 to 2
plot2d(vPhi12 , vTheta12, style=1, rect=[-%pi, -%pi/2, %pi, %pi/2]);
// draw mirror on the other side of planet
plot2d(vPhi34, -vTheta12, style=-2, rect=[-%pi, -%pi/2, %pi, %pi/2]);
// just a test of distance calculation
R = 6378;
d = acos( sin(lat1) * sin(lat2) + cos(lat1) * cos(lat2) * cos(lon2 - lon1) ) * R;
d = 2*asin(sqrt((sin((lat1-lat2)/2))^2 + cos(lat1)*cos(lat2)*(sin((lon1-lon2)/2))^2)) // equivalent but better
tc1=acos((sin(lat2)-sin(lat1)*cos(d))/(sin(d)*cos(lat1)));
if sin(lon2-lon1)<0 then
tc1 = 2*%pi - tc1;
else
end
|
77a8694d3f0f65f22ba318f4a70943bc79bc4f71
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/788/CH4/EX4.10.a/4_10_data.sci
|
b5e50531ee3443d8ed957c9d124f3a3f52b60609
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 531 |
sci
|
4_10_data.sci
|
// Aim:Refer Example 4-10 for Problem Description
// Given:
// Pump hydraulic power:
HHP=3.73; //kW
// Pump flow:
Q=0.00190; //m^3/s
// Inside Diameter of pipe:
D=0.0254; //m
// specific gravity of oil:
SG_oil=0.9;
// Kinematic viscosity of oil:
nu=100; //cS
// elevation between station 1 and 2:
Z=-6.10; //m ,-ve sign indicates station 2 is above Station 1
// Pressure at oil top surface level in hydraulic tank:
p1=0; //Pa
// Pump inlet pipe length:
L1=1.53; //m
// Pump outlet pipe length up to hydraulic motor:
L2=4.88; //m
|
7fcd690f1b03335f99b75f8fbbde086d26b04e40
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/564/DEPENDENCIES/7_1data.sci
|
e18b04467241388e747816db3947c0e42caa5da7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 89 |
sci
|
7_1data.sci
|
t=2;//in mm
E=70000;//in N/mm^2
v=0.3;
a=100;//in mm
b=100;//in mm
q0=10;//in N/mm^2
|
5f7bcef62d37dfa2e78f268d3cf0cbc6135ac22e
|
1ebbdce5d3f3daa6d9e8b439410e447941bc49f5
|
/résolution numérique/livrable/schéma explicite sans matrice/[EXPLICITE] fonctions.sci
|
249f7affdade96182929d80855a1354f12723047
|
[] |
no_license
|
sebastienbaur/legionella_proliferation_modeling
|
2aff0e2499584e99c07116a700e43218976b9b12
|
ae9b5d4dde1912a98584c6319eae41980355ef03
|
refs/heads/master
| 2020-03-07T15:25:49.881820 | 2018-03-31T17:27:52 | 2018-03-31T17:27:52 | 127,554,634 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 1,391 |
sci
|
[EXPLICITE] fonctions.sci
|
function y = monodL (N,l,a) // N pour nutriment, l légionnelle, et a amibes
// terme de croissance qui apparaît dans l'équation des légionnelles
y = (k_1 * N ./ (k_2*ones(size(N,1),1) + N)) + (k_3*a ./ (k_4*ones(size(N,1),1) + rho_A * a));
endfunction
function y = monodA (N,l,a)
// terme de croissance qui apparaît dans l'équation de croissance des amibes
y = k_5 * N ./ (k_6 * ones(size(N,1),1) + N) - k_3 * l ./ (k_4 * ones(size(N,1),1) + rho_A * a) ;
endfunction
function y = consoNutri (N,l,a)
y = - k_1*(N.*l) ./ (k_2 * ones(size(N,1),1) + N) - k_5*(N.*a) ./ (k_6 * ones(size(N,1),1) + N) ;
endfunction
function y = deriveeVitesse(N,l,a)
y = k_1*(1/rho_L)*(N.*l) ./ (k_2 * ones(size(N,1),1) + N) + k_3*((1/rho_L) - 1/rho_A)*(a.*l) ./ (k_4 * ones(size(N,1),1) + a) + k_5*(1/rho_A)*(N.*a) ./ (k_6 * ones(size(N,1),1) + N) ;
endfunction
function y = mu0L(N,a)
y = (k_1*N./(k_2*ones(size(N,1),1) + N)).*(1+k_3*a);
endfunction
function y = mu0A(N)
y = k_5*N./(k_6*ones(size(N,1),1)+N);
endfunction
function y = dudz(N,l,a)
y = (1/(1-epsilon))*((k_1/rho_L)*(ones(size(N,1),1)+k_3*a).*N.*l ./ (k_2*ones(size(N,1),1) + N) + (k_5/rho_A)*N.*a ./ (k_6*ones(size(N,1),1) + N));
endfunction
function y = r_N(N,l,a)
y = - (k_1*(N.*l).*(1+k_3*a) ./ (k_2 * ones(size(N,1),1) + N)) - (k_5*(N.*a) ./ (k_6 * ones(size(N,1),1) + N))
endfunction
|
4f2fee7701324ed68c472abda721aad77c7bde4b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3831/CH11/EX11.3/Ex11_3.sce
|
a1fb3406013d4adf5fcea88e0cca8c0a568a47df
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 285 |
sce
|
Ex11_3.sce
|
// Example 11_3
clc;funcprot(0);
// Given data
p=1.00;// MPa
// Solution
// From Table C.2b at p = 1.00 MPa, we find that,
h_fg=2015.3;// kJ/kg
T_sat=179.90;// °C
s_fg=h_fg/(T_sat+273.15);// kJ/kg .K
printf("\nThe phase change entropy for water,s_fg=%1.4f kJ/kg.K",s_fg);
|
717381651763e1be7d47b65676753445e7f6693d
|
d1a2737ec744ffbba1165afa7b05f26a4076f513
|
/Lab 1/myMainScript.sce
|
29ebb539ee732ea3da19b21b3c799bf3d3abd723
|
[
"MIT"
] |
permissive
|
ipsitmantri/EE-324-Control-Systems-Lab
|
4e37a3de51f4114ba0ea281cbb1da78a6c4815bb
|
b34c45efc3539005603b2e76c1665d6636f80f88
|
refs/heads/master
| 2023-04-03T10:42:34.548542 | 2021-04-13T14:11:21 | 2021-04-13T14:11:21 | 357,540,595 | 2 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 2,227 |
sce
|
myMainScript.sce
|
clear; clc;
// -------------------------------------------
// Question 1 //
s = poly(0, 's');
G1 = 10 / (s^2 + 2*s + 10);
G2 = 5 / (s + 5);
S1 = syslin('c', G1);
S2 = syslin('c', G2);
// -------------------------------------------
// Part a
TA = S1 * S2;
disp("Transfer Function for part a");
disp(TA);
// -------------------------------------------
// Part b
TB = S1 + S2;
disp("Transfer Function for part b");
disp(TB);
// -------------------------------------------
// Part c
TC = (S1) / (1 + (S1 * S2));
disp("Transfer Function for part c");
disp(TC);
// -------------------------------------------
// Part d
t = 0:0.01:10;
scf();
plot(t, csim('step', t, S1));
xgrid(0);
title(["Step Response of the system with transfer function", "$G1(s)$"], 'fontsize', 4);
xlabel("$t$", 'fontsize', 3);
ylabel("$y(t)$", 'fontsize', 3)
// -------------------------------------------
// Question 2 //
// Part a
[za, pa, ga] = tf2zp(TA);
disp('Zeros of Part a');
disp(za);
disp('Poles of Part a');
disp(pa);
scf();
plzr(TA);
xgrid(0);
title("Poles and Zeros of the system in part (a)", 'fontsize', 4);
xlabel("Real Axis",'fontsize', 3);
ylabel("Imaginary Axis",'fontsize', 3);
// -------------------------------------------
// Part b
[zb, pb, gb] = tf2zp(TB);
disp('Zeros of Part b');
disp(zb);
disp('Poles of Part b');
disp(pb);
scf();
plzr(TB);
xgrid(0);
title("Poles and Zeros of the system in part (b)", 'fontsize', 4);
xlabel("Real Axis",'fontsize', 3);
ylabel("Imaginary Axis",'fontsize', 3);
// -------------------------------------------
// Part c
[zc, pc, gc] = tf2zp(TC);
disp('Zeros of Part c');
disp(zc);
disp('Poles of Part c');
disp(pc);
scf();
plzr(TC);
xgrid(0);
title("Poles and Zeros of the system in part (c)", 'fontsize', 4);
xlabel("Real Axis",'fontsize', 3);
ylabel("Imaginary Axis",'fontsize', 3);
// -------------------------------------------
// Matrices Task //
A = [s 1/s (s+1)/(s-1); 1 s^3 0; 1+s^2 2*s 1];
B = [1 2 1; 1 s 9; -1 0 1];
disp('A+B');
disp(A+B);
disp('A x B');
disp(A * B);
disp("det(A)");
disp(det(A));
// -------------------------------------------
// Question 3 //
Z = [1+(2*(s+1)^2) -1 -(s+1)^2; -1 (s+2)^2 -2*(s+1); -(s+1)^2 -2*(s+1) (s^2+7*s+7)];
V = [0 0 (1+s)];
T = V * inv(Z);
disp(T);
|
2405804123caac2c5975aea814f2b7120e15d3ce
|
d1ef62f183cfed612d1834fb3036701674df4ac0
|
/sce/humanoid.sce
|
33d6a35f48c400f9353198ada003243f8f30ec85
|
[] |
no_license
|
vverovvero/cs490sp
|
7f0b34c01c3b262e221ea7c58d20dfc34bc13c0c
|
a4d7a718d04b67fe96caab862893a7e3c25f1098
|
refs/heads/master
| 2021-01-22T05:43:26.044250 | 2017-05-02T19:21:43 | 2017-05-02T19:21:43 | 81,696,744 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 8,395 |
sce
|
humanoid.sce
|
TRIANGLE P1(1.416586, 11.0, 2.48) P2(1.416588, 6.01, 2.48) P3(1.416588, 6.01, -2.48)
TRIANGLE P1(1.416586, 11.0, 2.48) P2(1.416588, 6.01, -2.48) P3(1.416588, 11.0, -2.48)
TRIANGLE P1(-1.060412, 11.0, 2.48) P2(-1.060412, 6.01, 2.48) P3(1.416588, 6.01, 2.48)
TRIANGLE P1(-1.060412, 11.0, 2.48) P2(1.416588, 6.01, 2.48) P3(1.416586, 11.0, 2.48)
TRIANGLE P1(-1.060412, 11.0, -2.48) P2(-1.060412, 6.01, -2.48) P3(-1.060412, 6.01, 2.48)
TRIANGLE P1(-1.060412, 11.0, -2.48) P2(-1.060412, 6.01, 2.48) P3(-1.060412, 11.0, 2.48)
TRIANGLE P1(1.416588, 11.0, -2.48) P2(1.416588, 6.01, -2.48) P3(-1.060412, 6.01, -2.48)
TRIANGLE P1(1.416588, 11.0, -2.48) P2(-1.060412, 6.01, -2.48) P3(-1.060412, 11.0, -2.48)
TRIANGLE P1(-1.060412, 11.0, -2.48) P2(-1.060412, 11.0, 2.48) P3(1.416586, 11.0, 2.48)
TRIANGLE P1(-1.060412, 11.0, -2.48) P2(1.416586, 11.0, 2.48) P3(1.416588, 11.0, -2.48)
TRIANGLE P1(1.416588, 6.01, 2.48) P2(-1.060412, 6.01, 2.48) P3(-1.060412, 6.01, -2.48)
TRIANGLE P1(1.416588, 6.01, 2.48) P2(-1.060412, 6.01, -2.48) P3(1.416588, 6.01, -2.48)
TRIANGLE P1(1.636588, 14.4, 1.29) P2(1.636588, 12.0, 1.29) P3(1.636588, 12.0, -1.19)
TRIANGLE P1(1.636588, 14.4, 1.29) P2(1.636588, 12.0, -1.19) P3(1.636588, 14.4, -1.19)
TRIANGLE P1(-1.232412, 14.4, 1.29) P2(-1.232412, 12.0, 1.29) P3(1.636588, 12.0, 1.29)
TRIANGLE P1(-1.232412, 14.4, 1.29) P2(1.636588, 12.0, 1.29) P3(1.636588, 14.4, 1.29)
TRIANGLE P1(-1.232412, 14.4, -1.19) P2(-1.232412, 12.0, -1.19) P3(-1.232412, 12.0, 1.29)
TRIANGLE P1(-1.232412, 14.4, -1.19) P2(-1.232412, 12.0, 1.29) P3(-1.232412, 14.4, 1.29)
TRIANGLE P1(1.636588, 14.4, -1.19) P2(1.636588, 12.0, -1.19) P3(-1.232412, 12.0, -1.19)
TRIANGLE P1(1.636588, 14.4, -1.19) P2(-1.232412, 12.0, -1.19) P3(-1.232412, 14.4, -1.19)
TRIANGLE P1(-1.232412, 14.4, -1.19) P2(-1.232412, 14.4, 1.29) P3(1.636588, 14.4, 1.29)
TRIANGLE P1(-1.232412, 14.4, -1.19) P2(1.636588, 14.4, 1.29) P3(1.636588, 14.4, -1.19)
TRIANGLE P1(1.636588, 12.0, 1.29) P2(-1.232412, 12.0, 1.29) P3(-1.232412, 12.0, -1.19)
TRIANGLE P1(1.636588, 12.0, 1.29) P2(-1.232412, 12.0, -1.19) P3(1.636588, 12.0, -1.19)
TRIANGLE P1(1.316588, 5.01, 2.47) P2(1.316588, -0.0, 2.47) P3(1.316588, 0.0, 0.486)
TRIANGLE P1(1.316588, 5.01, 2.47) P2(1.316588, 0.0, 0.486) P3(1.316588, 5.01, 0.486)
TRIANGLE P1(-0.941412, 5.01, 2.47) P2(-0.941412, -0.0, 2.47) P3(1.316588, -0.0, 2.47)
TRIANGLE P1(-0.941412, 5.01, 2.47) P2(1.316588, -0.0, 2.47) P3(1.316588, 5.01, 2.47)
TRIANGLE P1(-0.941412, 5.01, 0.486) P2(-0.941412, 0.0, 0.486) P3(-0.941412, -0.0, 2.47)
TRIANGLE P1(-0.941412, 5.01, 0.486) P2(-0.941412, -0.0, 2.47) P3(-0.941412, 5.01, 2.47)
TRIANGLE P1(1.316588, 5.01, 0.486) P2(1.316588, 0.0, 0.486) P3(-0.941412, 0.0, 0.486)
TRIANGLE P1(1.316588, 5.01, 0.486) P2(-0.941412, 0.0, 0.486) P3(-0.941412, 5.01, 0.486)
TRIANGLE P1(-0.941412, 5.01, 0.486) P2(-0.941412, 5.01, 2.47) P3(1.316588, 5.01, 2.47)
TRIANGLE P1(-0.941412, 5.01, 0.486) P2(1.316588, 5.01, 2.47) P3(1.316588, 5.01, 0.486)
TRIANGLE P1(1.316588, -0.0, 2.47) P2(-0.941412, -0.0, 2.47) P3(-0.941412, 0.0, 0.486)
TRIANGLE P1(1.316588, -0.0, 2.47) P2(-0.941412, 0.0, 0.486) P3(1.316588, 0.0, 0.486)
TRIANGLE P1(1.396588, 11.0, 3.96) P2(1.396588, 6.01, 3.96) P3(1.396588, 6.01, 2.48)
TRIANGLE P1(1.396588, 11.0, 3.96) P2(1.396588, 6.01, 2.48) P3(1.396588, 11.0, 2.48)
TRIANGLE P1(-1.086412, 11.0, 3.96) P2(-1.086412, 6.01, 3.96) P3(1.396588, 6.01, 3.96)
TRIANGLE P1(-1.086412, 11.0, 3.96) P2(1.396588, 6.01, 3.96) P3(1.396588, 11.0, 3.96)
TRIANGLE P1(-1.086412, 11.0, 2.48) P2(-1.086412, 6.01, 2.48) P3(-1.086412, 6.01, 3.96)
TRIANGLE P1(-1.086412, 11.0, 2.48) P2(-1.086412, 6.01, 3.96) P3(-1.086412, 11.0, 3.96)
TRIANGLE P1(1.396588, 11.0, 2.48) P2(1.396588, 6.01, 2.48) P3(-1.086412, 6.01, 2.48)
TRIANGLE P1(1.396588, 11.0, 2.48) P2(-1.086412, 6.01, 2.48) P3(-1.086412, 11.0, 2.48)
TRIANGLE P1(-1.086412, 11.0, 2.48) P2(-1.086412, 11.0, 3.96) P3(1.396588, 11.0, 3.96)
TRIANGLE P1(-1.086412, 11.0, 2.48) P2(1.396588, 11.0, 3.96) P3(1.396588, 11.0, 2.48)
TRIANGLE P1(1.396588, 6.01, 3.96) P2(-1.086412, 6.01, 3.96) P3(-1.086412, 6.01, 2.48)
TRIANGLE P1(1.396588, 6.01, 3.96) P2(-1.086412, 6.01, 2.48) P3(1.396588, 6.01, 2.48)
TRIANGLE P1(1.436588, 11.0, -2.46) P2(1.436588, 6.01, -2.46) P3(1.436588, 6.01, -3.95)
TRIANGLE P1(1.436588, 11.0, -2.46) P2(1.436588, 6.01, -3.95) P3(1.436588, 11.0, -3.95)
TRIANGLE P1(-1.038412, 11.0, -2.46) P2(-1.038412, 6.01, -2.46) P3(1.436588, 6.01, -2.46)
TRIANGLE P1(-1.038412, 11.0, -2.46) P2(1.436588, 6.01, -2.46) P3(1.436588, 11.0, -2.46)
TRIANGLE P1(-1.038412, 11.0, -3.95) P2(-1.038412, 6.01, -3.95) P3(-1.038412, 6.01, -2.46)
TRIANGLE P1(-1.038412, 11.0, -3.95) P2(-1.038412, 6.01, -2.46) P3(-1.038412, 11.0, -2.46)
TRIANGLE P1(1.436588, 11.0, -3.95) P2(1.436588, 6.01, -3.95) P3(-1.038412, 6.01, -3.95)
TRIANGLE P1(1.436588, 11.0, -3.95) P2(-1.038412, 6.01, -3.95) P3(-1.038412, 11.0, -3.95)
TRIANGLE P1(-1.038412, 11.0, -3.95) P2(-1.038412, 11.0, -2.46) P3(1.436588, 11.0, -2.46)
TRIANGLE P1(-1.038412, 11.0, -3.95) P2(1.436588, 11.0, -2.46) P3(1.436588, 11.0, -3.95)
TRIANGLE P1(1.436588, 6.01, -2.46) P2(-1.038412, 6.01, -2.46) P3(-1.038412, 6.01, -3.95)
TRIANGLE P1(1.436588, 6.01, -2.46) P2(-1.038412, 6.01, -3.95) P3(1.436588, 6.01, -3.95)
TRIANGLE P1(0.656588, 12.0, 0.498) P2(0.656588, 11.0, 0.498) P3(0.656588, 11.0, -0.493)
TRIANGLE P1(0.656588, 12.0, 0.498) P2(0.656588, 11.0, -0.493) P3(0.656588, 12.0, -0.493)
TRIANGLE P1(-0.333412, 12.0, 0.498) P2(-0.333412, 11.0, 0.498) P3(0.656588, 11.0, 0.498)
TRIANGLE P1(-0.333412, 12.0, 0.498) P2(0.656588, 11.0, 0.498) P3(0.656588, 12.0, 0.498)
TRIANGLE P1(-0.333412, 12.0, -0.493) P2(-0.333412, 11.0, -0.493) P3(-0.333412, 11.0, 0.498)
TRIANGLE P1(-0.333412, 12.0, -0.493) P2(-0.333412, 11.0, 0.498) P3(-0.333412, 12.0, 0.498)
TRIANGLE P1(0.656588, 12.0, -0.493) P2(0.656588, 11.0, -0.493) P3(-0.333412, 11.0, -0.493)
TRIANGLE P1(0.656588, 12.0, -0.493) P2(-0.333412, 11.0, -0.493) P3(-0.333412, 12.0, -0.493)
TRIANGLE P1(-0.333412, 12.0, -0.493) P2(-0.333412, 12.0, 0.498) P3(0.656588, 12.0, 0.498)
TRIANGLE P1(-0.333412, 12.0, -0.493) P2(0.656588, 12.0, 0.498) P3(0.656588, 12.0, -0.493)
TRIANGLE P1(0.656588, 11.0, 0.498) P2(-0.333412, 11.0, 0.498) P3(-0.333412, 11.0, -0.493)
TRIANGLE P1(0.656588, 11.0, 0.498) P2(-0.333412, 11.0, -0.493) P3(0.656588, 11.0, -0.493)
TRIANGLE P1(1.416588, 6.01, 2.5) P2(1.416588, 5.01, 2.5) P3(1.416588, 5.01, -2.45)
TRIANGLE P1(1.416588, 6.01, 2.5) P2(1.416588, 5.01, -2.45) P3(1.416588, 6.01, -2.45)
TRIANGLE P1(-1.062412, 6.01, 2.5) P2(-1.062412, 5.01, 2.5) P3(1.416588, 5.01, 2.5)
TRIANGLE P1(-1.062412, 6.01, 2.5) P2(1.416588, 5.01, 2.5) P3(1.416588, 6.01, 2.5)
TRIANGLE P1(-1.062412, 6.01, -2.45) P2(-1.062412, 5.01, -2.45) P3(-1.062412, 5.01, 2.5)
TRIANGLE P1(-1.062412, 6.01, -2.45) P2(-1.062412, 5.01, 2.5) P3(-1.062412, 6.01, 2.5)
TRIANGLE P1(1.416588, 6.01, -2.45) P2(1.416588, 5.01, -2.45) P3(-1.062412, 5.01, -2.45)
TRIANGLE P1(1.416588, 6.01, -2.45) P2(-1.062412, 5.01, -2.45) P3(-1.062412, 6.01, -2.45)
TRIANGLE P1(-1.062412, 6.01, -2.45) P2(-1.062412, 6.01, 2.5) P3(1.416588, 6.01, 2.5)
TRIANGLE P1(-1.062412, 6.01, -2.45) P2(1.416588, 6.01, 2.5) P3(1.416588, 6.01, -2.45)
TRIANGLE P1(1.416588, 5.01, 2.5) P2(-1.062412, 5.01, 2.5) P3(-1.062412, 5.01, -2.45)
TRIANGLE P1(1.416588, 5.01, 2.5) P2(-1.062412, 5.01, -2.45) P3(1.416588, 5.01, -2.45)
TRIANGLE P1(1.436588, 5.01, -0.465) P2(1.436586, 0.0, -0.465) P3(1.436588, 0.0, -2.447209)
TRIANGLE P1(1.436588, 5.01, -0.465) P2(1.436588, 0.0, -2.447209) P3(1.436588, 5.01, -2.45)
TRIANGLE P1(-1.038412, 5.01, -0.465) P2(-1.038412, 0.0, -0.465) P3(1.436586, 0.0, -0.465)
TRIANGLE P1(-1.038412, 5.01, -0.465) P2(1.436586, 0.0, -0.465) P3(1.436588, 5.01, -0.465)
TRIANGLE P1(-1.038412, 5.01, -2.45) P2(-1.038412, 0.0, -2.45) P3(-1.038412, 0.0, -0.465)
TRIANGLE P1(-1.038412, 5.01, -2.45) P2(-1.038412, 0.0, -0.465) P3(-1.038412, 5.01, -0.465)
TRIANGLE P1(1.436588, 5.01, -2.45) P2(1.436588, 0.0, -2.447209) P3(-1.038412, 0.0, -2.45)
TRIANGLE P1(1.436588, 5.01, -2.45) P2(-1.038412, 0.0, -2.45) P3(-1.038412, 5.01, -2.45)
TRIANGLE P1(-1.038412, 5.01, -2.45) P2(-1.038412, 5.01, -0.465) P3(1.436588, 5.01, -0.465)
TRIANGLE P1(-1.038412, 5.01, -2.45) P2(1.436588, 5.01, -0.465) P3(1.436588, 5.01, -2.45)
TRIANGLE P1(1.436586, 0.0, -0.465) P2(-1.038412, 0.0, -0.465) P3(-1.038412, 0.0, -2.45)
TRIANGLE P1(1.436588, 0.0, -2.447209) P2(1.436586, 0.0, -0.465) P3(-1.038412, 0.0, -2.45)
|
e88da0c7caebe957a5ff6247c36ee34c6c1cb3be
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2081/CH12/EX12.19/Ex12_19.sce
|
22bf02a97c79fb23ff4fb22f0d83a9c0c4701098
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 342 |
sce
|
Ex12_19.sce
|
Bc=1.25*10^6
Rb=9.6*10^3
Gp=Bc/Rb
GpdB=10*log10(Gp)
EbINodB=6
EbINo=10^(EbINodB/10)
p=0.5//interference factor
a=.85//power control accuracy factor
v=.6//voice activity factor
Y=2.55//improvement from sectorisation
M=(Gp/(EbINo))*(1/(1+p))*a*(1/v)*Y//no. of mobile users per cell
Ns=3
Nmps=M/Ns
disp(Nmps,'no. of mobile users per sector')
|
2dd723171c8abb1f835327ef67543a772d9e51d1
|
ac1f8441b0319b4a391cd5a959bd3bb7988edfa7
|
/data/news2015/news2015/SplitsNEWS15/EnPe/enpe.5.tst
|
ef3fa35a03913420df426fd83bb0f567a8e2dffd
|
[
"MIT"
] |
permissive
|
SaeedNajafi/transliterator
|
4d58b8604fa31f52ee2dce7845e002a18214fd5e
|
523a087b777a5d6eec041165dabb43848f6222e6
|
refs/heads/master
| 2021-09-18T17:02:59.083727 | 2018-07-17T06:01:21 | 2018-07-17T06:01:21 | 129,796,130 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 45,681 |
tst
|
enpe.5.tst
|
a b a d ﺍ ﺏ ﺍ ﺩ
a b b o t ﺍ ﺏ ﻭ ﺕ
a b d u l ﻉ ﺏ ﺩ ﻝ
a b d u l ﻉ ﺏ ﺩ ﻭ ﻝ
a b e l l a ﺍ ﺏ ﻝ ﺍ
a b s t r a c t ﺍ ﺏ ﺱ ﺕ ﺭ ک ﺕ
a b y a n ﺍ ﺏ ی ﺍ ﻥ
a c e ﺍ ی ﺱ
a c e v e d o ﺍ ک ﻭ ﺩ ﻭ
a d a b ﺍ ﺩ ﺍ ﺏ
a d a b ﺍ ﺩ ﺏ
a d i n a ﺍ ﺩ ی ﻥ ﺍ
a d l e r ﺍ ﺩ ﻝ ﺭ
a d r i ﺍ ﺩ ﺭ ی
a d r i e n e ﺍ ﺩ ﺭ ی ﻥ ی
a e r n o u d t ﺍ ی ﺭ ﻥ ﻭ ﺕ
a e r n o u d t ﺍ ی ﻥ ﺍ ﺕ
a e r n o u d t ﺍ ﺭ ﺕ ﻭ ﺕ
a e r n o u d t ﺍ ﺭ ﻥ ﻭ ﺕ
a e r n o u d t ﺍ ﺭ ﻭ ﻥ ﺩ
a g o y o ﺍ گ ﻭ ی ﻭ
a i r d o ﺍ ی ﺭ ﺩ ﻭ
a k i l e s h ﺍ ک ی ﻝ ﺵ
a l b r i g h t ﺍ ﻝ ﺏ ﺭ ی ﺝ
a l b r i g h t ﺍ ﻝ ﺏ ﺭ ﺍ ی ﺕ
a l e x a n d e r ﺍ ﻝ ک ﺱ ﺍ ﻥ ﺩ ﺭ
a l e x a n d e r ﺍ ﻝ ک ﺱ ﻥ ﺩ ﺭ
a l e x y ﺍ ﻝ ک ﺱ ی
a l f o r s ﺍ ﻝ ﻑ ﺭ ﺱ
a l i c i a ﺍ ﻝ ی ﺱ ی ﺍ
a l k a b e e r ﺍ ﻝ ک ﺏ ی ﺭ
a l k a b e e r ﺍ ﻝ ک ﺏ ﺭ
a l l c o r ﺍ ﻝ ک ﺭ
a l l c o r ﺍ ﻝ ک ﻭ ﺭ
a l l r e d ﺍ ﻝ ﺭ ﺩ
a l l s h o u s e ﺍ ﻝ ﺵ ﻭ ﺯ
a l l y z ﺍ ﻝ ی ﺯ
a l v a r e z ﺍ ﻝ ﻭ ﺍ ﺭ ﺯ
a l w i s ﺍ ﻝ ﻭ ی ﺱ
a m a l ﺍ ﻉ ﻡ ﺍ ﻝ
a m a l ﺍ ﻡ ﺍ ﻝ
a m a l ﺍ ﻡ ﻝ
a m a l ﻉ ﻡ ﻝ
a m a r a l ﺍ ﻡ ﺍ ﺭ ﺍ ﻝ
a m b u s h ﺍ ﻡ ﺏ ﻭ ﺵ
a m e l i a ﺍ ﻡ ﻝ ی ﺍ
a m e r i c a ﺍ ﻡ ﺭ ی ک ﺍ
a m l a k ﺍ ﻡ ﻝ ک
a m l a k ﺍ ﻡ ﻝ ﺍ ک
a m p o n ﺍ ﻡ پ ﻥ
a n a k i n ﺍ ﻥ ﺍ ک ی ﻥ
a n a l o g ﺍ ﻥ ﺍ ﻝ ﻭ گ
a n d e r b e r g ﺍ ﻥ ﺩ ﺭ ﺏ ﺭ گ
a n d r e a e a ﺍ ﻥ ﺩ ﺭ ی ی ﺍ
a n d r e e s s e n ﺍ ﻥ ﺩ ﺭ ی ﺱ ﻥ
a n d r e s ﺍ ﻥ ﺩ ﺭ ی ﺱ
a n d r e s ﺍ ﻥ ﺩ ﺭ ﺱ
a n d r i s ﺍ ﻥ ﺩ ﺭ ی ﺱ
a n g e l e s ﺍ ﻥ ﺝ ﻝ ﺱ
a n o o s h ﺍ ﻥ ﻭ ﺵ
a n s e l m ﺍ ﻥ ﺱ ﻝ ﻡ
a n t h o n ﺍ ﻥ ﺕ ﻭ ﻥ
a n t r o s i o ﺍ ﻥ ﺕ ﺭ ﻭ ﺱ ی ﻭ
a p h r o d i t e ﺍ ﻑ ﺭ ﺩ ی ﺕ
a p h r o d i t e ﺍ ﻑ ﺭ ﻭ ﺩ ی ﺕ
a p p l e m a n ﺍ پ ﻝ ﻡ ﻥ
a r a n t e s ﺍ ﺭ ﻥ ﺕ ﺱ
a r c e ﺍ ﺭ ﺱ ی
a r c h e r ﺍ چ ﺭ
a r c h e r ﺍ ﺭ چ ﺭ
a r i e s ﺍ ﺭ ی ﺯ
a r i e s ﺍ ﺭ ی ﺱ
a r i e s ﺍ ﺭ ﺍ ی ﺯ
a r k t i k i ﺍ ﺭ ک ﺕ ی ک ی
a r m o n t r o u t ﺍ ﺭ ﻡ ﻭ ﻥ ﺕ ﺭ ﻭ ﺕ
a r v e s e n ﺍ ﺭ ﻭ ﺱ ﻥ
a r y a ﺍ ﺭ ی ﺍ
a s h w o r t h ﺍ ﺵ ﻭ ﺭ ث
a s t i k ﺍ ﺱ ﺕ ی ک
a t a n a c i o ﺍ ﺕ ﺍ ﻥ ﺱ ی ﻭ
a t h e r t o n ﺍ ﺕ ﺭ ﺕ ﻥ
a t i y a ﺍ ﺕ ی ی ﺍ
a t i y a ﺍ ﺕ ی ﺍ
a t i y a ﻉ ط ی ﻩ
a t k i n s o n ﺍ ﺕ ک ی ﻥ ﺱ ﻥ
a t k i n s o n ﺍ ﺕ ک ی ﻥ ﺱ ﻭ ﻥ
a t u s i ﺍ ﺕ ﻭ ﺱ ی
a t w o o d ﺍ ﺕ ﻭ ﺩ
a t w o o d ﺍ ﺕ ﻭ ﻭ ﺩ
a u g u s t y n ﺍ گ ﻭ ﺱ ﺕ ی ﻥ
a u g u s t y n ﺍ ﻭ گ ﻭ ﺱ ﺕ ی ﻥ
a u s t v o l l e n ﺍ ﻭ ﺱ ﺕ ﻭ ﻝ ی ﻥ
a v i c e n n a ﺍ ﻭ ی ﺱ ﻥ ﺍ
a w k e t t s ﺍ ک ﺕ ﺱ
a w k e t t s ﺍ ﻭ ک ی ﺕ ﺱ
a w k e t t s ﺍ ﻭ ک ﺕ
a w k e t t s ﺍ ﻭ ک ﺕ ﺯ
a w k e t t s ﺍ ﻭ ک ﺕ ﺱ
a x e ﺍ ک ﺱ
b a d e n ﺏ ﺍ ﺩ ی ﻥ
b a d i r ﺏ ﺩ ی ﺭ
b a f f l e ﺏ ﺍ ﻑ ﻝ
b a g n o l d ﺏ گ ﻥ ﻭ ﻝ ﺩ
b a g u l e y ﺏ ﺍ گ ﻭ ﻝ ی
b a h a m o n d e ﺏ ﻩ ﺍ ﻡ ﻥ ﺩ
b a i l l i e u ﺏ ﺍ ی ﻝ ی ﻭ
b a l i g a ﺏ ﺍ ﻝ ی گ ﺍ
b a n d e r o b ﺏ ﻥ ﺩ ﺭ ﻭ ﺏ
b a n d y ﺏ ﻥ ﺩ ی
b a n g ﺏ ﻥ گ
b a n k e r ﺏ ﻥ ک ﺭ
b a n k l e r ﺏ ﺍ ﻥ ک ﻝ ﺭ
b a r b e r ﺏ ﺍ ﺭ ﺏ ﺭ
b a r b o r a k ﺏ ﺍ ﺭ ﺏ ﻭ ﺭ ﺍ ک
b a r c u s ﺏ ﺍ ﺭ ک ﻭ ﺱ
b a r i ﺏ ﺍ ﺭ ی
b a r n e t t ﺏ ﺍ ﺭ ﻥ ﺕ
b a r r e t t ﺏ ﺍ ﺭ ﺕ
b a r r i e r ﺏ ﺭ ی ﺭ
b a r r y ﺏ ﺍ ﺭ ی
b a r r y ﺏ ﺭ ی
b a s e m ﺏ ی ﺱ ﻡ
b a t e m a n ﺏ ی ﺕ ﻡ ﻥ
b a t e m a n ﺏ ﺕ ﻡ ﻥ
b e a m a n ﺏ ی ﻡ ﻥ
b e a n i e ﺏ ی ﻥ ی
b e c k i n g s a l e ﺏ ک ی ﻥ گ ﺱ ی ﻝ
b e c k i n g s a l e ﺏ ک ی ﻥ گ ﺱ ﺍ ﻝ
b e c k i n g s a l e ﺏ ک ی ﻥ گ ﺱ ﻝ
b e c k i n g s a l e ﺏ ی چ ی ﻥ گ ﺱ ی ﻝ
b e c k m e y e r ﺏ ک ﻡ ی ﺭ
b e h a r a ﺏ ﻩ ﺍ ﺭ ﺍ
b e k k i ﺏ ک ی
b e l e n k y ﺏ ﻝ ﻥ ک ی
b e r e s f o r d ﺏ ﺭ ﺱ ﻑ ﻭ ﺭ ﺩ
b e r i s ﺏ ﺭ ی ﺱ
b e r k ﺏ ﺭ ک
b e s b r i s ﺏ ﺱ ﺏ ﺭ ی ﺱ
b e t t y ﺏ ﺕ ی
b e v e r i d g e ﺏ ﻭ ﺭ ی ﺝ
b e y e r ﺏ ی ﺭ
b i a c c o ﺏ ی ﺍ ک ﻭ
b i d e e ﺏ ی ﺩ ی
b i g o u r d a n ﺏ ی گ ﻭ ﺭ ﺩ ﺍ ﻥ
b i l l o ﺏ ی ﻝ ﻭ
b i n g ﺏ ی ﻥ گ
b i n g e n ﺏ ی ﻥ ﺝ ﻥ
b i n g h a m ﺏ ی ﻥ ﻕ ﺍ ﻡ
b i p p e r t ﺏ ﺍ ی پ ﺭ ﺕ
b i r ﺏ ی ﺭ
b i t t a r d ﺏ ی ﺕ ﺍ ﺭ ﺩ
b l a n c h a r d ﺏ ﻝ ﺍ ﻥ چ ﺍ ﺭ ﺩ
b l a n e ﺏ ﻝ ی ﻥ
b l a s ﺏ ﻝ ﺱ
b l o c h ﺏ ﻝ ﺍ چ
b l o c h ﺏ ﻝ ﻭ چ
b l u f f s ﺏ ﻝ ﺍ ﻑ ﺱ
b l u n s d o n ﺏ ﻝ ﺍ ﺱ ﺩ ﻥ
b l u n s d o n ﺏ ﻝ ﺍ ﻥ ﺯ ﺩ ﻭ ﻥ
b l u n s d o n ﺏ ﻝ ﺍ ﻥ ﺱ ﺩ ﺍ ﻥ
b l u n s d o n ﺏ ﻝ ﺍ ﻥ ﺱ ﺩ ﻥ
b l u n s d o n ﺏ ﻝ ﻭ ﻥ ﺯ ﺩ ﻡ
b l u n s d o n ﺏ ﻝ ﻭ ﻥ ﺱ ﺩ ﻭ ﻡ
b l u n s d o n ﺏ ﻝ ﻭ ﻥ ﺱ ﺩ ﻭ ﻥ
b o b ﺏ ﺍ ﺏ
b o b b i ﺏ ﺍ ﺏ ی
b o b b i t t ﺏ ﺏ ی ﺕ
b o d e ﺏ ﻭ ﺩ
b o d e n m i l l e r ﺏ ﻭ ﺩ ﻥ ﻡ ی ﻝ ﺭ
b o g a a r d ﺏ ﻭ گ ﺍ ﺭ ﺩ
b o i s v i e u x ﺏ ﻭ ی ﺱ ﻭ ی ک ﺱ
b o m m e n ﺏ ﺍ ﻡ ﻥ
b o o e y ﺏ ﻭ ﺍ ی
b o o t s i e ﺏ ﻭ ﺕ ﺱ ی ﻩ
b o r g ﺏ ﺭ گ
b o r g ﺏ ﻭ ﺭ گ
b o r g a i l o ﺏ ﺭ گ ﺍ ی ﻝ ﻭ
b o r g e ﺏ ﻭ ﺭ گ ﺍ
b o r r i e s ﺏ ﻭ ﺭ ی ﺯ
b o r u d ﺏ ﻭ ﺭ ﺍ ﺩ
b o s l e y ﺏ ﻭ ﺱ ﻝ ی
b o s t i c ﺏ ﺍ ﺱ ﺕ ی ک
b o s w a l l ﺏ ﺍ ﺱ ﻭ ﺍ ﻝ
b o s w a l l ﺏ ﺱ ﻭ ﺍ ﻝ
b o s w a l l ﺏ ﻭ ﺯ ﻭ ﺍ ﻝ
b o s w a l l ﺏ ﻭ ﺱ ﺍ ﻝ
b o s w a l l ﺏ ﻭ ﺱ ﻭ ﺍ ﻝ
b o u a s ﺏ ﻭ ﺍ ﺱ
b o w d e n ﺏ ﺍ ﻭ ﺩ ﻥ
b o w d e n ﺏ ﻭ ﺩ ﻥ
b r a f f o r d ﺏ ﺭ ﺍ ﻑ ﻭ ﺭ ﺩ
b r e n n e r ﺏ ﺭ ﻥ ﺭ
b r e s e e ﺏ ﺭ ﺱ ی
b r i e r ﺏ ﺭ ﺍ ی ﺭ
b r i g h t ﺏ ﺭ ﺍ ی ﺕ
b r i n s o n ﺏ ﺭ ی ﻥ ﺱ ﻥ
b r o h l ﺏ ﺭ ﻭ ﻩ ﻝ
b r o m b e r g ﺏ ﺭ ﻭ ﻡ ﺏ ﺭ گ
b r o t h e r t o n ﺏ ﺭ ﺍ ﺩ ﺭ ﺕ ﻥ
b r o t h e r t o n ﺏ ﺭ ﺍ ﺩ ﺭ ﺕ ﻭ ﻥ
b r o t h e r t o n ﺏ ﺭ ﻭ ﺩ ﺭ ﺕ ﻭ ﻥ
b r o u s s e a u ﺏ ﺭ ﻭ ﺱ ی ﺍ ﻭ
b r o w n e r ﺏ ﺭ ﺍ ﻭ ﻥ ﺭ
b r o w n f i e l d ﺏ ﺭ ﺍ ﻭ ﻥ ﻑ ی ﻝ ﺩ
b r u i n e s ﺏ ﺭ ﻭ ی ﻥ ﺱ
b r u n e l l e ﺏ ﺭ ﻭ ﻥ ﻝ
b r y n ﺏ ﺭ ی ﻥ
b u l k o w s k i ﺏ ﺍ ﻝ ک ﻭ ﺱ ک ی
b u n t e n ﺏ ﻭ ﻥ ﺕ ﻥ
b u r a s c h i ﺏ ﻭ ﺭ ﺍ ﺱ چ ی
b u r g e s s ﺏ ﺭ گ ﺱ
b u r r e l l ﺏ ﺍ ﺭ ﻝ
b u r r i l l ﺏ ﻭ ﺭ ی ﻝ
b u s h n e l l ﺏ ﻭ ﺵ ﻥ ﻝ
b u t t o n ﺏ ﺍ ﺕ ﻥ
b y r d ﺏ ی ﺭ ﺩ
b y r d ﺏ ﺍ ی ﺭ ﺩ
b y u n g s e ﺏ ی ﻭ ﻥ گ ﺱ
c a h o o n ک ﺍ ﻩ ﻭ ﻥ
c a k e b r e a d ک ی ک ﺏ ﺭ ی ﺩ
c a k e b r e a d ک ی ک ﺏ ﺭ ﺩ
c a k e b r e a d ک ﺍ ک ﺏ ﺭ ی ﺩ
c a l d w e l l ک ﺍ ﻝ ﺩ ﻭ ﻝ
c a l d w e l l ک ﻝ ﺩ ﻭ ﻝ
c a l l ک ﺍ ﻝ
c a l l i s ک ﺍ ﻝ ی ﺱ
c a m f i e l d ک ﻡ ﻑ ی ﻝ ﺩ
c a n a l e ک ﺍ ﻥ ﺍ ﻝ
c a n n a v a ک ﺍ ﻥ ﺍ ﻭ ﺍ
c a r d i n a l i ک ﺍ ﺭ ﺩ ی ﻥ ﺍ ﻝ ی
c a r h a r t ک ﺍ ﺭ ﻩ ﺍ ﺭ ﺕ
c a r r i e r ک ﺭ ی ﺭ
c a r t a x o ﺱ ﺍ ﺭ ﺕ ﺍ ک ﺱ ﻭ
c a r u s o ک ﺍ ﺭ ﻭ ﺱ ﻭ
c a s r i e l ک ﺍ ﺱ ﺭ ی ﻝ
c a s t e l l o t ک ﺱ ﺕ ﻝ ﻭ ﺕ
c a s t l e ک ﺱ ﺕ ﻝ
c a s t l e ک ﺱ ﻝ
c a t a l a n o ک ﺍ ﺕ ﺍ ﻝ ﺍ ﻥ ﻭ
c a t h a r y n ک ﺍ ﺕ ﺍ ﺭ ی ﻥ
c a t h a r y n ک ﺍ ﺕ ﺭ ی ﻥ
c e s s a r o ﺱ ﺯ ﺍ ﺭ ﻭ
c h a i چ ﺍ ی
c h a r l o t t e چ ﺍ ﺭ ﻝ ﻭ ﺕ
c h a r l o t t e ک ﺍ ﺭ ﻝ ﻭ ﺕ
c h a r l o t t e ﺵ ﺍ ﺭ ﻝ ﻭ ﺕ
c h a s چ ﺍ ﺵ
c h a s t a i n چ ﺍ ﺱ ﺕ ی ﻥ
c h a u n c y چ ﺍ ﻥ ﺱ ی
c h a u v i n چ ﺍ ﻭ ﻭ ی ﻥ
c h a v e z چ ﺍ ﻭ ﺯ
c h e v r o n چ ﻭ ﺭ ﻥ
c h i a n g چ ی ﺍ ﻥ گ
c h o p d e چ پ ﺩ ی
c h o p r a چ ﺍ پ ﺭ ﺍ
c h o u چ ﻭ
c h r e s c y n t i e چ ﺭ ی ﺱ ک ی ﻥ ﺕ ی
c h r e s c y n t i e چ ﺭ ی ﺱ ی ﻥ ﺕ ﻩ
c h r e s c y n t i e چ ﺭ ﺍ ﺱ ک ﺍ ی ﻥ ﺕ
c h r e s c y n t i e چ ﺭ ﺱ ک ی ﻥ ﺍ ی
c h r e s c y n t i e ک ﺭ ی ﺱ ﺍ ی ﻥ ﺕ ﺍ ی
c h r e s c y n t i e ک ﺭ ی ﺱ ﺱ ﺍ ی ﻥ ﺕ ی ﻩ
c h r e s c y n t i e ک ﺭ ﺱ ک ی ﻥ ﺕ ی ﻩ
c h r i s t e n ک ﺭ ی ﺱ ﺕ ﻥ
c h r i s t i a n ک ﺭ ی ﺱ ﺕ ی ﺍ ﻥ
c h r i s t i a n s e n ک ﺭ ی ﺱ ﺕ ی ﺍ ﻥ ﺱ ﻥ
c h r i s t i n e ک ﺭ ی ﺱ ﺕ ی ﻥ
c h u چ ﻭ
c l a n t o n ک ﻝ ﺍ ﻥ ﺕ ﻭ ﻥ
c l a w s i e ک ﻝ ﺍ ﻭ ﺱ ی
c l e e k ک ﻝ ی ک
c o e n r a d u s ک ﻥ ﺭ ﺍ ﺩ ﻭ ﺱ
c o e n r a d u s ک ﻭ ی ﻥ ﺭ ی ﺩ ﻭ ﺱ
c o e n r a d u s ک ﻭ ی ﻥ ﺭ ﺩ ﻭ ﺱ
c o e n r a d u s ک ﻭ ﺍ ﻥ ﺭ ﺍ ﺩ ﻭ ﺱ
c o e n r a d u s ک ﻭ ﻥ ﺭ ﺍ ﺩ ﻭ ﺱ
c o l c l a s u r e ک ﺍ ﻝ ک ﻝ ﺍ ﺱ ﻭ ﺭ
c o l e n o ک ﻭ ﻝ ﻥ ﻭ
c o l l e t t e ک ﻝ ﺕ
c o l l u m ک ﺍ ﻝ ﻭ ﻡ
c o l o n e l l o ک ﺍ ﻝ ﻭ ﻥ ﻝ ﻭ
c o n c o n i ک ﺍ ﻥ ک ﻥ ﺕ
c o n l e y ک ﺍ ﻥ ﻝ ی
c o p p e d g e ک ﻭ پ ﺝ
c o r n e l i u s ک ﺭ ﻥ ﻝ ی ﻭ ﺱ
c o r n e l i u s ک ﻭ ﺭ ﻥ ﻝ ی ﻭ ﺱ
c o r n e l i u s ک ﻭ ﺭ ﻥ ﻝ ﻭ ﺱ
c o r n e l l i s ک ﺭ ﻥ ﻝ ی ﺱ
c o r n e l l i s ک ﻭ ﺭ ﻥ ﻝ ی ﺯ
c o r n e l l i s ک ﻭ ﺭ ﻥ ﻝ ی ﺱ
c o r r e ک ﻭ ﺭ
c o r t e z ک ﻭ ﺭ ﺕ ﺯ
c o r z i n e ک ﻭ ﺭ ﺯ ﺍ ی ﻥ
c o u n s e l l ک ﺍ ﻥ ﺱ ﻝ
c o u r t o i s ک ﺍ ﺭ ﺕ ﻭ ی ﺯ
c o u t t s ﺱ ﻭ ﺕ ﺱ
c r a i n ک ﺭ ی ﻥ
c r e p e a u ک ﺭ ی پ ی ﻭ
c r o u c h l e y ک ﺭ ﺍ چ ﻝ ی
c u n i t z ک ﺍ ﻥ ی ﺕ ﺯ
c u r t a i n ک ﺭ ﺕ ی ﻥ
c u r t n e r ک ﺍ ﺭ ﺕ ﻥ ﺭ
c u s h i n g ک ﺍ ﺵ ی ﻥ گ
c u s h m a n ک ﺍ ﺵ ﻡ ﻥ
c y b a n s k i چ ی ﺏ ﺍ ﻥ ﺱ ک ی
c y n t h i a ﺱ ی ﻥ ﺕ ی ﺍ
d a d a ﺩ ﺍ ﺩ ﺍ
d a l l e y ﺩ ﺍ ﻝ ی
d a n c y ﺩ ﺍ ﻥ ﺱ ی
d a n z ﺩ ﺍ ﻥ ﺯ
d a r r i g u e s ﺩ ﺍ ﺭ ی گ ﻭ ﺱ
d a r r o w ﺩ ﺍ ﺭ ﻭ
d a v i d ﺩ ی ﻭ ی ﺩ
d e g e n n a r o ﺩ ی گ ﻥ ﺍ ﺭ ﻭ
d e g e r l u n d ﺩ گ ﺭ ﻝ ﻭ ﻥ ﺩ
d e k e l ﺩ ی ک ﻝ
d e n g ﺩ ﻥ گ
d e r v e n i s ﺩ ﺭ ﻭ ﻥ ی ﺱ
d e t w e i l e r ﺩ ﺕ ﻭ ی ﻝ ﺭ
d e w e y ﺩ ی ﻭ ی
d e w i l d e ﺩ ی ﻭ ی ﻝ ﺩ ﻩ
d i a a ﺩ ی ﺍ
d i b ﺩ ی ﺏ
d i e g o ﺩ ی گ ﻭ
d i e t m a r ﺩ ی ﺕ ﻡ ﺍ ﺭ
d i k e ﺩ ﺍ ی ک
d i l t e n ﺩ ﻝ ﺕ ﻥ
d i m i t r i s ﺩ ی ﻡ ی ﺕ ﺭ ی ﺱ
d i n ﺩ ی ﻥ
d i p a o l o ﺩ ی پ ﺍ ی ﻭ ﻝ ﻭ
d i p p o l d ﺩ ی پ ﻝ ﺩ
d i r o c c o ﺩ ی ﺭ ﻭ ک ﻭ
d i s t e l ﺩ ی ﺱ ﺕ ﻝ
d j a m i l a ﺝ ﻡ ی ﻝ ﺍ
d j a m i l a ﺝ ﻡ ی ﻝ ﻩ
d j a m i l a ﺩ ﺍ ﻡ ی ﻝ ﺍ
d j a m i l a ﺩ ﺝ ﺍ ﻡ ی ﻝ ﺍ
d j a m i l a ﺩ ﻡ ی ﻝ ﺍ
d o b i n s o n ﺩ ﺍ ﺏ ی ﻥ ﺱ ﻥ
d o b i n s o n ﺩ ﺍ ﺏ ی ﻥ ﺱ ﻭ ﻥ
d o b i n s o n ﺩ ﻭ ﺏ ی ﻥ ﺱ ﻭ ﻥ
d o b s o n ﺩ ﺍ ﺏ ﺱ ﻭ ﻥ
d o b s o n ﺩ ﻭ ﺏ ﺱ ﻭ ﻥ
d o e ﺩ ﻭ
d o g g e r s ﺩ ﺍ گ ﺭ ﺯ
d o l a n ﺩ ﻭ ﻝ ﺍ ﻥ
d o n a t h ﺩ ﻭ ﻥ ﺍ ﺕ
d o n a t o ﺩ ﻭ ﻥ ﺍ ﺕ ﻭ
d o r o n ﺩ ﺍ ﺭ ﻭ ﻥ
d o r o n ﺩ ﻭ ﺭ ﺍ ﻥ
d o u t ﺩ ﺍ ﻭ ﺕ
d r a l l e ﺩ ﺭ ﺍ ﻝ
d r e b e s ﺩ ﺭ ﺏ ﺱ
d r e s s n e r ﺩ ﺭ ﺱ ﻥ ﺭ
d r n e k ﺩ ﺭ ﻥ ک
d r u g e r ﺩ ﺭ ﺍ گ ﺭ
d u b i e l ﺩ ﺍ ﺏ ی ﻝ
d u e m l e r ﺩ ﺍ ﻡ ﻝ ﺭ
d u g ﺩ ﺍ گ
d u l b e r g e r ﺩ ﺍ ﻝ ﺏ ﺭ گ ﺭ
d u n g e o n ﺩ ﺍ ﻥ گ ی ﻭ ﻥ
d u n t e n ﺩ ﺍ ﻥ ﺕ ﻥ
d u r a n d ﺩ ﻭ ﺭ ﺍ ﻥ ﺩ
d u r a n d ﺩ ﻭ ﺭ ﻥ ﺩ
d u r r ﺩ ﺍ ﺭ
d u r r a n c e ﺩ ﻭ ﺭ ﺭ ﺍ ﻥ ﺱ
d u s e ﺩ ﻭ ﺱ
d y k e s ﺩ ﺍ ک ﺯ
e a m o n ﺍ ی ﻡ ﻭ ﻥ
e a r ﺍ ﺭ
e a r l ﺍ ی ﺭ ﻝ
e a r l ﺍ ﺭ ﻝ
e a s t e r ﺍ ی ﺱ ﺕ ﺭ
e k b e r g ﺍ ک ﺏ ﺭ گ
e k l o f ﺍ ک ﻝ ﻭ ﻑ
e l b o w s ﺍ ﻝ ﺏ ﻭ ﺯ
e l f e r i n g ﺍ ﻝ ﻑ ﺭ ی ﻥ گ
e l l e r b e c k ﺍ ﻝ ﺭ ﺏ ک
e l l i n g e r ﺍ ﻝ ی ﻥ گ ﺭ
e l m a n ﺍ ﻝ ﻡ ﻥ
e l m e r s ﺍ ﻝ ﻡ ﺭ ﺱ
e l w o o d ﺍ ﻝ ﻭ ﻭ ﺩ
e m e r a l d ﺍ ﻡ ﺭ ﺍ ﻝ ﺩ
e m p s o n ﺍ ﻡ پ ﺱ ﻭ ﻥ
e n g e l s m a ﺍ ﻥ گ ﻝ ﺍ ﺱ ﻡ ﺍ
e n g e l s m a ﺍ ﻥ گ ﻝ ﺱ ﻡ ﺍ
e n o t i a d i s ﺍ ﻥ ﻭ ﺕ ی ی ﺍ ﺩ ی ﺱ
e n r i q u e z ﺍ ﻥ ﺭ ی ک ی ی ﻭ ﺯ
e n v o y ﺍ ﻥ ﻭ ﻭ ی
e r e m i n ﺍ ﺭ ﻡ ی ﻥ
e r h a r d ﺍ ﺭ ﻩ ﺍ ﺭ ﺩ
e r i k s e n ﺍ ﺭ ی ک ﺱ ﻥ
e r i k s s o n ﺍ ﺭ ی ک ﺱ ﻭ ﻥ
e s k e l d s o n ﺍ ﺱ ک ﻝ ﺩ ﺱ ﻭ ﻥ
e t t e r s ﺍ ﺕ ﺭ ﺯ
e t t i n g e r ﺍ ﺕ ی ﻥ گ ﺭ
e u g e n i o ﺍ ﻭ گ ﻥ ی ﻭ
e v e r y ﺍ ﻭ ﺭ ی
e w i n g ﺍ ی ﻭ ﺍ ی ﻥ گ
e w i n g ﺍ ﻭ ی ﻥ گ
e y l e s ﺍ ی ﻝ ی ﺱ
e y m a n ﺍ ی ﻡ ﻥ
e y n t j e ﺍ ی ﻥ ژ
e y n t j e ﺍ ی ﻥ ﺕ
e y n t j e ﺍ ی ﻥ ﺕ ﺝ
e y n t j e ﺍ ی ﻥ ﺕ ﺝ ﻩ
e y n t j e ﺍ ی ﻥ ﺕ ﻩ
e y n t j e ﺍ ی ﻥ ﺝ ﻩ
f a g e n ﻑ ﺍ ﺝ ﻥ
f a r l e y ﻑ ﺍ ﺭ ﻝ ی
f a r l e y ﻑ ﺭ ﻝ ی
f a r m e r ﻑ ﺍ ﺭ ﻡ ﺭ
f a u c e t t ﻑ ﺍ ﻭ ﺱ ﺕ
f a y i z ﻑ ﺍ ی ی ﺯ
f a y i z ﻑ ﺍ ی ی ﺽ
f a y i z ﻑ ﺍ ی ﺯ
f a y i z ﻑ ﺍ ی ﺽ
f e e l y ﻑ ی ﻝ ی
f e l d e r ﻑ ﻝ ﺩ ﺭ
f e l i c e ﻑ ﻝ ﺍ ی ﺱ
f e r a ﻑ ﺭ ﺍ
f e r r a r i ﻑ ﺭ ﺍ ﺭ ی
f i n e r t y ﻑ ﺍ ی ﻥ ﺭ ﺕ ی
f i n n ﻑ ی ﻥ
f i n s t a d ﻑ ی ﻥ ﺱ ﺕ ﺍ ﺩ
f i x ﻑ ی ک ﺱ
f l a m e ﻑ ﻝ ی ﻡ
f l o d i n ﻑ ﻝ ﻭ ﺩ ی ﻥ
f l o y d ﻑ ﻝ ﻭ ی ﺩ
f l u u r ﻑ ﻝ ﻭ ﺭ
f o o t ﻑ ﻭ ﺕ
f o s s ﻑ ﺍ ﺱ
f r a n t z e n ﻑ ﺭ ﺍ ﻥ ﺕ ﺯ ﻥ
f r a z e r ﻑ ﺭ ی ﺯ ﺭ
f r a z e r ﻑ ﺭ ﺍ ﺯ ﺭ
f r a z i e r ﻑ ﺭ ﺍ ﺯ ی ی ﺭ
f r a z i e r ﻑ ﺭ ﺍ ﺯ ی ﺭ
f r e d e r k i n g ﻑ ﺭ ﺩ ﺭ ک ی ﻥ گ
f r e e l s ﻑ ﺭ ی ﻝ ﺯ
f r e i v o g e l ﻑ ﺭ ی ﻭ ﻭ گ ﻝ
f r e n c h ﻑ ﺭ ﻥ چ
f r e t w e l l ﻑ ﺭ ی ﺕ ﻭ ﻝ
f r i e d l ﻑ ﺭ ی ﺩ ﻝ
f u b l e r ﻑ ﺍ ﺏ ﻝ ﺭ
f u e s s ﻑ ﻭ ی ﺱ
f u r l o n g ﻑ ﺭ ﻝ ﺍ ﻥ گ
f u r l o n g ﻑ ﻭ ﺭ ﻝ ﺍ ﻥ گ
g a e t z گ ﺍ ی ی ﺕ ﺯ
g a i t o n d e گ ی ﺕ ﻭ ﻥ ﺩ
g a l i l e o گ ﺍ ﻝ ی ﻝ ﻩ
g a l i z i a گ ﺍ ﻝ ی ﺯ ی ﺍ
g a l l e y گ ﺍ ﻝ ی
g a l l u l a گ ﺍ ﻝ ﻭ ﻝ ﺍ
g a l l u n گ ﺍ ﻝ ﺍ ﻥ
g a m b l e گ ﻡ ﺏ ﻝ
g a n t i گ ﺍ ﻥ ﺕ ی
g a r m s گ ﺍ ﺭ ﻡ ﺯ
g a u t h i e r گ ﺍ ﻭ ﺕ ی ﺭ
g e d d i s گ ﺩ ی ﺱ
g e i t g e y گ ی ﺕ گ ی
g e m m e l l گ ی ﻡ ﻝ
g e m m e l l گ ﻡ ﻝ
g e m m e l l ﺝ ی ﻡ ﻝ
g e m m e l l ﺝ ﻡ ی ﻝ
g e m m e l l ﺝ ﻡ ﻝ
g e m m e l l ﺝ ﻡ ﻡ ﻝ
g e o r g i a ﺝ ﻭ ﺭ ﺝ ی ﺍ
g e r a g h t y گ ﺭ ﺍ گ ﺕ ی
g e r a g h t y گ ﺭ ﻕ ﺕ ی
g e r a r d i ﺝ ﺭ ﺍ ﺭ ﺩ ی
g e r b e s گ ﺭ ﺏ ﺱ
g i l گ ی ﻝ
g i l l i e s گ ی ﻝ ی ﺯ
g i l l i e s گ ی ﻝ ی ﺱ
g i m e n o گ ی ﻡ ﻥ ﻭ
g i v o n گ ی ﻭ ﻥ
g i v o n گ ی ﻭ ﻭ ﻥ
g i v o n ﺝ ﻭ ﻭ ﻥ
g i v o n ﻕ ی ﻭ ﻥ
g l a s s c o گ ﻝ ﺍ ﺱ ک ﻭ
g l e i c k گ ﻝ ی ک
g l e i z e r گ ﻝ ی ﺯ ﺭ
g n i s h i l d a گ ی ﺵ ی ﻝ ﺩ ﺍ
g n i s h i l d a گ ﻥ ی ﺵ ی ﻝ ﺩ ﺍ
g n i s h i l d a ﺝ ﻥ ی ﺵ ی ﻝ ﺩ ﺍ
g n i s h i l d a ﻥ ی ﺵ ی ﻝ ﺩ ﺍ
g o d d i j n گ ﺍ ﺩ ی ﺝ ﻥ
g o e g a n گ ﻭ گ ﺍ ﻥ
g o n z a l e s گ ﻥ ﺯ ﺍ ﻝ ﺯ
g o n z a l e s گ ﻥ ﺯ ﺍ ﻝ ﺱ
g o n z a l e s گ ﻭ ﻥ ﺯ ﺍ ﻝ ﺱ
g o n z a l o گ ﻭ ﻥ ﺯ ﺍ ﻝ ﻭ
g o o d g e r گ ﺍ ﺝ ﺭ
g o o d g e r گ ﻭ گ ﺭ
g o o d g e r گ ﻭ ﺩ گ ﺭ
g o o d g e r گ ﻭ ﻭ ﺩ گ ﺭ
g o o t j e s گ ﻭ ﺕ ﺝ ﺱ
g o p i s e t t y گ ﺍ پ ی ﺱ ﺕ ی
g o r a n گ ﻭ ﺭ ﺍ ﻥ
g o r e گ ﻭ ﺭ
g o s t i n گ ﺍ ﺱ ﺕ ی ﻥ
g o s w e l l ک ﺍ ﺱ ﺕ ﻭ ﻝ
g o s w e l l گ ﺍ ﺱ ﻭ ﻝ
g o s w e l l گ ﻭ ﺱ ﻭ ی ﻝ
g o s w e l l گ ﻭ ﺱ ﻭ ﻝ
g o v e r d گ ﺍ ﻭ ﺭ ﺩ
g o v e r d گ ﻭ ﺭ ﺩ
g o v e r d گ ﻭ ﻭ ﺭ ﺩ
g o w e l l گ ﻭ ی ﻝ
g r a c e گ ﺭ ی ﺱ
g r a i n g e r گ ﺭ ی ﻥ گ ﺭ
g r a i n g e r گ ﺭ ی ﻥ ﺝ ﺭ
g r a i n g e r گ ﺭ ﺍ ی ی ﻥ گ ﺭ
g r a i n g e r گ ﺭ ﺍ ی ﻥ گ ﺭ
g r a i n g e r گ ﺭ ﻥ ﺝ ﺭ
g r a i n g e r ﺝ ﺭ ی ﻥ گ ﺭ
g r a l i a n گ ﺭ ﺍ ﻝ ی ﻥ
g r a n d i d i e r گ ﺭ ﻥ ﺩ ی ﺩ ی ﺭ
g r a n i c h e r گ ﺭ ﻥ ی چ ﺭ
g r a n v i n گ ﺭ ﺍ ﻥ ﻭ ی ﻥ
g r e e n w a l d گ ﺭ ی ی ﻥ ﻭ ﺍ ﻝ ﺩ
g r e e n w a l d گ ﺭ ی ﻥ ﻭ ﺍ ﻝ ﺩ
g r e i f f گ ﺭ ی ﻑ
g r e n a n d e r گ ﺭ ﻥ ﺍ ﻥ ﺩ ﺭ
g r i e f e r گ ﺭ ی ﻑ ﺭ
g r i e p e n k e r l گ ﺭ ی پ ﻥ ک ﺭ ﻝ
g r i f f i s گ ﺭ ی ﻑ ی ﺱ
g r i f f y گ ﺭ ی ﻑ ی
g r i n d l e y گ ﺭ ی ﻥ ﺩ ﻝ ی
g r i s e l d i s گ ﺭ ی ﺱ ﻝ ﺩ ی ﺱ
g r i s e l d i s گ ﺭ ی ﺱ ﻝ ﺩ ی ﺵ
g r i s e l d i s گ ﺭ ﺍ ی ﺱ ﻝ ﺩ ی ﺯ
g r i s e l d i s گ ﺭ ﺱ ﻝ ﺩ ی ﺱ
g r i s m o r e گ ﺭ ی ﺱ ﻡ ﻭ ﺭ
g r o a t گ ﺭ ﻭ ﺕ
g r o e b e گ ﺭ ﻭ ﺏ ی
g r o e n l a n d گ ﺭ ﻭ ی ﻥ ﻝ ﻥ ﺩ
g r u n e w a l d گ ﺭ ﻭ ﻥ ﻭ ﺍ ﻝ ﺩ
g u l c h گ ﺍ ﻝ چ
g u l l e d g e گ ﺍ ﻝ ﺝ
g u l l y گ ﺍ ﻝ ی
g u l l y گ ﻭ ﻝ ی
g u n a w a n گ ﺍ ﻥ ﺍ ﻭ ﺍ ﻥ
g u t m a n گ ﺍ ﺕ ﻡ ﻥ
g u y a t t گ ی ﺍ ﺕ
g u y a t t گ ﺍ ی ﺍ ﺕ
g u y a t t گ ﺍ ی ﺕ
g u y a t t گ ﻭ ی ﺍ ﺕ
h a b e r ﻩ ﺍ ﺏ ﺭ
h a d a v i ﻩ ﺩ ﺍ ﻭ ی
h a d a y a ﻩ ﺩ ﺍ ی ﺍ
h a d i y a ﺡ ﺩ ی ﺍ
h a d i y a ﻩ ﺍ ﺩ ی ﺍ
h a d i y a ﻩ ﺩ ی ﺍ
h a d i y a ﻩ ﺩ ی ﻩ
h a i n g e ﻩ ی ﻥ گ
h a i n g e ﻩ ی ﻥ ﺝ
h a i n g e ﻩ ﺍ ی ﻥ گ ﻩ
h a i n g e ﻩ ﻥ ی ﺝ
h a i n g e ﻩ ﻥ ﺝ
h a j a r ﺡ ﺝ ﺭ
h a j a r ﻩ ﺍ ﺝ ﺭ
h a l k e d i s ﻩ ﺍ ﻝ ک ﺩ ی ﺱ
h a l l i b u r t o n ﻩ ﺍ ﻝ ی ﺏ ﺭ ﺕ ﻭ ﻥ
h a l s t e d ﻩ ﺍ ﻝ ﺱ ﺕ ﺩ
h a m a h ﺡ ﺍ ﻡ ﺍ ﻩ
h a m a h ﺡ ﺍ ﻡ ﻩ
h a m a h ﺡ ﻡ ﺍ ﻩ
h a m a h ﻩ ﻡ ﺍ ﻩ
h a m a h ﻩ ﻡ ﻩ
h a m m e l ﻩ ﺍ ﻡ ﻝ
h a m m e l ﻩ ﻡ ﻝ
h a m m e r ﻩ ﺍ ﻡ ﺭ
h a m p a r i a n ﻩ ﺍ ﻡ پ ﺭ ی ﻭ ﻥ
h a n a a ﺡ ﻥ ﺍ
h a n a a ﻩ ﺍ ﻥ ﺍ
h a n a a ﻩ ﻥ ﺍ
h a n d ﻩ ﻥ ﺩ
h a n k s ﻩ ﺍ ﻥ ک ﺯ
h a n k s ﻩ ﻥ ک ﺱ
h a n s h e r ﻩ ﺍ ﻥ ﺵ ﺭ
h a r i c k e n ﻩ ﺍ ﺭ ی چ ﻥ
h a r i c k e n ﻩ ﺍ ﺭ ی ک ﻥ
h a r i c k e n ﻩ ﺭ ی ک ﻥ
h a r m a n u s ﻩ ﺍ ﺭ ﻡ ﺍ ﻥ ﻭ ﺱ
h a r m a n u s ﻩ ﺍ ﺭ ﻡ ﻥ ﻭ ﺱ
h a r m a n u s ﻩ ﺭ ﻡ ﻥ ی ﻭ ﺱ
h a r m a n u s ﻩ ﺭ ﻡ ﻥ ﻭ ﺱ
h a r o l d ﻩ ﺍ ﺭ ﻝ ﺩ
h a r o l d ﻩ ﺍ ﺭ ﻭ ﻝ ﺩ
h a r r i e s ﻩ ﺍ ﺭ ی ﺯ
h a r t e r ﻩ ﺍ ﺭ ﺕ ﺭ
h a r t o g ﻩ ﺍ ﺭ ﺕ ﺍ گ
h a r u h i s a ﻩ ﺍ ﺭ ﻭ ﻩ ی ﺱ ﺍ
h a r v ﻩ ﺭ ﻭ
h a r v e y ﻩ ﺍ ﺭ ﻭ ی
h a s b r o u c k ﻩ ﺍ ﺱ ﺏ ﺭ ﻭ ک
h a s s ﻩ ﺍ ﺱ
h a s t e ﻩ ﺱ ﺕ
h a t r e l l ﻩ ﺍ ﺕ ﺭ ﻝ
h a u ﻩ ﺍ ﻭ
h a v a r d ﻩ ﺍ ﻭ ﺍ ﺭ ﺩ
h a w k e n ﻩ ﻭ ک ﻥ
h a w l e y ﻩ ﺍ ﻭ ﻝ ی
h a y t e r ﻩ ﺍ ی ﺕ ﺭ
h e a d l a n d ﻩ ﺩ ﻝ ﻥ ﺩ
h e a t o n ﻩ ی ﺕ ﻭ ﻥ
h e i l ﻩ ی ﻝ
h e i n o ﻩ ی ﻥ ﻭ
h e l b i g ﻩ ﻝ ﺏ ی گ
h e l m a n ﻩ ﻝ ﻡ ﻥ
h e m e r ﻩ ﻡ ﺭ
h e m p e ﻩ ﻡ پ
h e r d s f i e l d ﻩ ﺭ ﺩ ﺍ ﺱ ﻑ ی ﻝ ﺩ
h e r d s f i e l d ﻩ ﺭ ﺩ ﺯ ﻑ ی ﻝ ﺩ
h e r d s f i e l d ﻩ ﺭ ﺩ ﺱ ﻑ ی ﻝ ﺩ
h e r m a n ﻩ ﺭ ﻡ ﺍ ﻥ
h e r m a n ﻩ ﺭ ﻡ ﻥ
h e r r i c k ﻩ ﺭ ی ک
h e r r m a n ﻩ ﺭ ﻡ ﺍ ﻥ
h e r v e y ﻩ ﺭ ﻭ ی
h e s t e r ﻩ ﺱ ﺕ ﺭ
h i c k m a n ﻩ ی ک ﻡ ﻥ
h i g d o n ﻩ ی ﺝ ﺩ ﺍ ﻥ
h i g d o n ﻩ ﺍ ی گ ﺩ ﺍ ﻥ
h i m e ﻩ ﺍ ی ﻡ
h i t z ﻩ ی ﺕ ﺯ
h o f f b e c k ﻩ ﺍ ﻑ ﺏ ک
h o g g ﻩ ﺍ گ
h o g g ﻩ ﻭ گ
h o l m ﻩ ﻭ ﻝ ﻡ
h o l m a n ﻩ ﺍ ﻝ ﻡ ﻥ
h o l m a n ﻩ ﻝ ﻡ ﻥ
h o l m a n ﻩ ﻭ ﻝ ﻡ ﻥ
h o l t s i n g e r ﻩ ﺍ ﻝ ﺕ ﺱ ی ﻥ گ ﺭ
h o o g e n b o o m ﻩ ﻭ گ ﻥ ﺏ ﻭ ﻡ
h o u s e ﻩ ﺍ ﻭ ﺱ
h o v e y ﻩ ﺍ ﻭ ی
h u g o ﻩ ﻭ گ ﻭ
h u s b y ﻩ ﺍ ﺱ ﺏ ی
h u t h ﻩ ﺍ ﺕ
h y m a n ﻩ ی ﻡ ﻥ
i c a r u s ﺍ ی ک ﺍ ﺭ ﻭ ﺱ
i e n a t c h ﺍ ی ﻥ ﺍ چ
i m a n t s ﺍ ی ﻡ ﺍ ﻥ ﺕ ﺯ
i n a n ﺍ ی ﻥ ﺍ ﻥ
i n g l e s ﺍ ی ﻥ گ ﻝ ﺱ
i n g r a m ﺍ ی ﻥ گ ﺭ ﺍ ﻡ
i n g r a m ﺍ ی ﻥ گ ﺭ ﻡ
i n h o ﺍ ی ﻥ ﻩ ﻭ
i n t e r r a n t e ﺍ ی ﻥ ﺕ ﺭ ﻥ ﺕ
i s m a n ﺍ ی ﺯ ﻡ ﻥ
i s m a n ﺍ ی ﺱ ﻡ ﺍ ﻥ
i s m a n ﺍ ی ﺱ ﻡ ﻥ
i s r a t ﺍ ی ﺱ ﺭ ﺍ ﺕ
i s r a t ﺍ ی ﺱ ﺭ ﺕ
i s r a t ﺍ ﺱ ﺭ ﺍ ط
i s r a t ﻉ ﺵ ﺭ ﺕ
j a a n t j e ژ ﺍ ﻥ ﺕ
j a a n t j e ﺝ ﺍ ﻥ ﺕ
j a a n t j e ﺝ ﺍ ﻥ ﺕ ی ﻩ
j a a n t j e ﺝ ﺍ ﻥ ﺕ ﺝ
j a a n t j e ﺝ ﺍ ﻥ ﺕ ﻩ
j a a n t j e ﺝ ﻥ ﺕ
j a g a r d ﺝ ﺍ گ ﺍ ﺭ ﺩ
j a h n k e ﺝ ﺍ ﻥ ک
j a l a ﺝ ﺍ ﻝ ﺍ
j a l a ﺝ ﻝ ﺍ
j a m e s ﺝ ی ﻡ ﺯ
j a m i l ﺝ ﻡ ی ﻝ
j a m u l l a ﺝ ﻡ ﻭ ﻝ ﺍ
j a n s s e n ﺝ ﺍ ﻥ ﺱ ﻥ
j a r d i n e ﺝ ﺍ ﺭ ﺩ ی ﻥ
j a r v i s ﺝ ﺍ ﺭ ﻭ ی ﺱ
j a r v i s ﺝ ﺭ ﻭ ی ﺱ
j e s s i c k ﺝ ﺱ ی ک
j i l l e s ﺝ ی ﻝ ﺯ
j i r o u s e k ﺝ ی ﺭ ﻭ ﺱ ک
j o h a n n s o n ﺝ ﻭ ﻩ ﺍ ﻥ ﺱ ﻭ ﻥ
j o r g e ﺝ ﻭ ﺭ ﺝ
j u a n a ﺝ ﻭ ﺍ ﻥ ﺍ
j u z a ﺝ ﻭ ﺯ ﺍ
k a d e n ک ﺍ ﺩ ﻥ
k a k o d k a r ک ﺍ ک ﺩ ک ﺍ ﺭ
k a m m e y e r ک ﻡ ی ﺭ
k a m s k a y a ک ﺍ ﻡ ﺱ ک ﺍ ی ﺍ
k a n a k ک ﺍ ﻥ ﺍ ک
k a n a m o r i ک ﻥ ﺍ ﻡ ﻭ ﺭ ی
k a p l a n ک ﺍ پ ﻝ ﺍ ﻥ
k a p l a n ک ﺍ پ ﻝ ﻥ
k a r l ک ﺍ ﺭ ﻝ
k a s t r u p ک ﺱ ﺕ ﺭ ﺍ پ
k a z u h i r o ک ﺍ ﺯ ﻭ ﻩ ی ﺭ ﻭ
k e h o e ک ی ﻩ ﻭ
k e h o e ک ﻩ ﻭ
k e n n a w a y ک ﻥ ﺍ ﻭ ﺍ ی
k e r b e l ک ﺭ ﺏ ﻝ
k e r h o n g ک ﺭ ﻩ ﺍ ﻥ گ
k e r i l a ک ﺭ ی ﻝ ﺍ
k e s k i n ک ﺱ ک ی ﻥ
k e t i l ک ﺕ ی ﻝ
k e t l e y ک ﺕ ﻝ ی
k e v i n ک ﻭ ی ﻥ
k h a i خ ﺍ ی
k i e l h o r n ک ی ﻝ ﻩ ﻭ ﺭ ﻥ
k i n n s ک ی ﻥ ﺯ
k i n s e l l ک ی ﻥ ﺱ ﻝ
k i o n g ک ی ﻭ ﻥ گ
k i r i s h i ک ی ﺭ ی ﺵ ی
k i s e r ک ی ﺱ ﺭ
k i s s ک ی ﺱ
k i s s i n g e r ک ی ﺱ ی ﻥ ﺝ ﺭ
k i t t e l ک ی ﺕ ﻝ
k l e e ک ﻝ ی
k l e m a n s ک ﻝ ﻡ ﺍ ﻥ ﺯ
k l o s s n e r ک ﻝ ﺍ ﺱ ﻥ ﺭ
k n o b ک ﻥ ﻭ ﺏ
k n o b ﻥ ﺍ ﺏ
k n o k e ﻥ ﺍ ک
k n o p h ﻥ ﺍ ﻑ
k n o p h ﻥ ﻭ پ
k n o p h ﻥ ﻭ ﻑ
k o b e r g ک ﺏ ﺭ گ
k o e n r a a d ک ﻥ ﺭ ﺍ ﺩ
k o e n r a a d ک ﻭ ی ﻥ ﺭ ﺍ ﺩ
k o e n r a a d ک ﻭ ﺍ ﻥ ﺭ ﺍ ﺩ
k o e n r a a d ک ﻭ ﻥ ﺭ ﺍ ﺩ
k o l a s a ک ﻭ ﻝ ﺍ ﺱ ﺍ
k o n e r d i n g ک ﻥ ﺭ ﺩ ی ﻥ گ
k o r d a s ک ﻭ ﺭ ﺩ ﺍ ﺱ
k o s m i c k i ک ﺍ ﺱ ﻡ ی چ ی
k o s t a ک ﻭ ﺱ ﺕ ﺍ
k o u b a ک ﻭ ﺏ ﺍ
k o z o ک ﻭ ﺯ ﻭ
k r a a i j ک ﺭ ﺍ ی ﺝ
k r i m a n ک ﺭ ی ﻡ ﻥ
k r o k ک ﺭ ﻭ ک
k r u s c h e n ک ﺭ ی ﻭ ﺵ ﻥ
k r u s c h e n ک ﺭ ﺍ چ ﻥ
k r u s c h e n ک ﺭ ﻭ ک ﻥ
k r u s c h e n ک ﺭ ﻭ ﺱ چ ﻥ
k r u s c h e n ک ﺭ ﻭ ﺵ ﻥ
k r u s c h e n ﺭ ﺍ ﺱ چ ﻥ
k u m a r ک ی ﻭ ﻡ ﺭ
k u m a r ک ﺍ ﻡ ﺍ ﺭ
k u m a r ک ﻡ ﺭ
k u m a r ک ﻭ ﻡ ﺍ ﺭ
k u r g e r ک ﺭ گ ﺭ
k u r i l l a ک ﻭ ﺭ ی ﻝ ﺍ
k u s h n i r ک ﺍ ﺵ ﻥ ی ﺭ
l a b e l l a ﻝ ﺍ ﺏ ﻝ ﺍ
l a b e r g e ﻝ ی ﺏ ﺭ گ
l a c o s t e ﻝ ک ﻭ ﺱ ﺕ
l a d a k ﻝ ﺩ ک
l a d i c ﻝ ﺍ ﺩ ی ک
l a f o u r c a d e ﻝ ﺍ ﻑ ﻭ ﺭ ک ﺍ ﺩ
l a h i j ﻝ ﺍ ﻩ ی ﺝ
l a h i j ﻝ ﻩ ی
l a h i j ﻝ ﻩ ی ﺝ
l a i n g ﻝ ﺍ ی ﻥ گ
l a m m ﻝ ﺍ ﻡ
l a n a ﻝ ﺍ ﻥ ﺍ
l a n c e t e s ﻝ ﺍ ﻥ ﺱ ﺕ ﺯ
l a n d ﻝ ﺍ ﻥ ﺩ
l a n d ﻝ ﻥ ﺩ
l a n d o n ﻝ ﺍ ﻥ ﺩ ﻥ
l a n d r u m ﻝ ﺍ ﻥ ﺩ ﺭ ﻭ ﻡ
l a n d s ﻝ ﻥ ﺩ ﺯ
l a n g d o n ﻝ ﺍ ﻥ گ ﺩ ﻭ ﻥ
l a n k a ﻝ ﺍ ﻥ ک ﺍ
l a n t l o s a m a d e ﻝ ﺍ ﻥ ﺕ ﻝ ﻭ ﺱ ﺍ ﻡ ﺍ ﺩ
l a n t l o s a m a d e ﻝ ﻥ ﺕ ﻝ ﻭ ﺱ ﺍ ﻡ ی ﺩ
l a n t l o s a m a d e ﻝ ﻥ ﺕ ﻝ ﻭ ﺱ ﺍ ﻡ ﺍ ﺩ
l a n t l o s a m a d e ﻝ ﻥ ﻝ ﻭ ﺯ ﺍ ﻡ ی ﺩ
l a n t l o s a m a d e ﻝ ﻥ ﻝ ﻭ ﺱ ﺍ ﻡ ﺍ ﺩ
l a p i d a r y ﻝ ﺍ پ ی ﺩ ﺍ ﺭ ی
l a p u t a ﻝ ﺍ پ ﻭ ﺕ ﺍ
l a r s o n ﻝ ﺍ ﺭ ﺱ ﻥ
l a r s o n ﻝ ﺍ ﺭ ﺱ ﻭ ﻥ
l a r s o n ﻝ ﺍ ﺱ ﻭ ﻥ
l a r u e ﻝ ﺍ ﺭ ﻭ
l a s t r a ﻝ ﺍ ﺱ ﺕ ﺭ ﺍ
l a v a l i e ﻝ ﻭ ﺍ ﻝ ﺍ ی
l a w r e n c e ﻝ ﺍ ﺭ ﻥ ﺱ
l a w r e n c e ﻝ ﺍ ﻭ ﺭ ﻥ ﺱ
l a w r e n c e ﻝ ﻭ ﺭ ﻥ ﺱ
l e a k e ﻝ ی ک
l e b r u n ﻝ ی ﺏ ﺭ ﻥ
l e f f ﻝ ﻑ
l e h m a n ﻝ ﻩ ﻡ ﺍ ﻥ
l e h m a n ﻝ ﻩ ﻡ ﻥ
l e h m a n n ﻝ ﻩ ﻡ ﺍ ﻥ
l e h m a n n ﻝ ﻩ ﻡ ﻥ
l e p a r d ﻝ پ ﺍ ﺭ ﺩ
l e r b s ﻝ ﺭ ﺏ ﺯ
l e y b o u r n e ﻝ ی ﺏ ﻭ ﺭ ﻥ
l i a u ﻝ ی ﻭ
l i b l i t ﻝ ی ﺏ ﻝ ی ﺕ
l i e b c h e n ﻝ ی ﺏ چ ﻥ
l i m a c e ﻝ ﺍ ی ﻡ ﺍ ک
l i n d b e r g ﻝ ی ﻥ ﺩ ﺏ ﺭ گ
l i n k o u s ﻝ ی ﻥ ک ﻭ ی ﺱ
l i o n e l ﻝ ی ﻭ ﻥ ﻝ
l i o w ﻝ ی ﻭ
l i s s o n ﻝ ی ﺱ ﻭ ﻥ
l i t v i n ﻝ ی ﺕ ﻭ ی ﻥ
l o c k ﻝ ﺍ ک
l o c k e r ﻝ ﺍ ک ﺭ
l o h r e n t z ﻝ ﻩ ﺭ ﻥ ﺕ ﺯ
l o k ﻝ ﻭ ک
l o m b a r d o ﻝ ﺍ ﻡ ﺏ ﺍ ﺭ ﺩ ﻭ
l o m b a r d o ﻝ ﻭ ﻡ ﺏ ﺍ ﺭ ﺩ ﻭ
l o n e y ﻝ ﻭ ﻥ ی
l o n g s h a w ﻝ ﺍ ﻥ گ ﺵ ﺍ
l o n g s h a w ﻝ ﺍ ﻥ گ ﺵ ﺍ ﻭ
l o n g s h a w ﻝ ﺍ ﻥ گ ﺵ ﻭ
l o r e e n a ﻝ ﻭ ﺭ ﻥ ﺍ
l o u n s b e r y ﻝ ی ﻭ ﻥ ﺱ ﺏ ﺭ ی
l o u v e t ﻝ ﻭ ﻭ ﺕ
l u c a s ﻝ ﻭ ک ﺍ ﺱ
l u k ﻝ ﻭ ک
l u m ﻝ ﻭ ﻡ
l u m b l e y ﻝ ﺍ ﻡ ﺏ ﻝ ی
l u p e r ﻝ ﻭ پ ﺭ
l u p h e r ﻝ ﻭ ﻑ ﺭ
l u s t y ﻝ ﻭ ﺱ ﺕ ی
l y l a h ﻝ ی ﻝ ﺍ
m a c k e r r a s ﻡ ﺍ ک ی ﺭ ﺍ ﺱ
m a c k y ﻡ ک ی
m a c r a ﻡ ک ﺭ ﺍ
m a d d u x ﻡ ﺍ ﺩ ﺍ ک ﺱ
m a g e e ﻡ گ ی
m a g e r ﻡ ی گ ﺭ
m a g e r ﻡ ﺍ گ ﺭ
m a h a ﻡ ﺍ ﻩ ﺍ
m a i t a w a ﻡ ی ﺕ ﺍ ﻭ ﺍ
m a l t i n ﻡ ﺍ ﻝ ﺕ ی ﻥ
m a n d a l ﻡ ﺍ ﻥ ﺩ ﺍ ﻝ
m a n n ﻡ ﺍ ﻥ
m a n s o u r ﻡ ﻥ ﺹ ﻭ ﺭ
m a n s u r ﻡ ﻥ ﺹ ﻭ ﺭ
m a n t i ﻡ ﻥ ﺕ ی
m a n t o r ﻡ ﺍ ﻥ ﺕ ﻭ ﺭ
m a n u ﻡ ﺍ ﻥ ی ﻭ
m a n u ﻡ ﺍ ﻥ ﻭ
m a r b a c h ﻡ ﺍ ﺭ ﺏ ﺍ چ
m a r c o s ﻡ ﺍ ﺭ ک ﻭ ﺱ
m a r c u m ﻡ ﺍ ﺭ ک ﻭ ﻡ
m a r i j k e n ﻡ ﺍ ﺭ ی ک ﻥ
m a r i j k e n ﻡ ﺍ ﺭ ی ﺝ ک ﻥ
m a r t i n s ﻡ ﺍ ﺭ ﺕ ی ﻥ ﺯ
m a r v i t ﻡ ﺍ ﺭ ﻭ ی ﺕ
m a r y ﻡ ﺍ ﺭ ی
m a s l i n ﻡ ﺱ ﻝ ی ﻥ
m a s u d ﻡ ﺱ ﻉ ﻭ ﺩ
m a t a k o ﻡ ﺍ ﺕ ﺍ ک ﻭ
m a t o n ﻡ ی ﺕ ﻭ ﻥ
m a t t h e w s o n ﻡ ﺕ ی ﻭ ﺱ ﻭ ﻥ
m a t t s o n ﻡ ﺍ ﺕ ﺱ ﻭ ﻥ
m a u r s t a d ﻡ ﻭ ﺭ ﺱ ﺕ ﺍ ﺩ
m a y f i e l d ﻡ ﺍ ی ﻑ ی ﻝ ﺩ
m a y t a g ﻡ ﺍ ی ﺕ ﺍ گ
m c c a u l e y ک ﺍ ﻭ ﻝ ی
m c d e r m o t t ﻡ ک ﺩ ﺭ ﻡ ﻭ ﺕ
m c d o w e l l ﻡ ک ﺩ ﻭ ی ﻝ
m e a c h e n ﻡ ی چ ﻥ
m e a n ﻡ ی ﻥ
m e a r a ﻡ ی ﺭ ﺍ
m e d d ﻡ ی ﺩ
m e e k ﻡ ی ک
m e i ﻡ ی
m e i g h e n ﻡ ی گ ﻥ
m e l e n ﻡ ی ﻝ ﻥ
m e l e n ﻡ ﻝ ﻥ
m e l l o r ﻡ ﻝ ﺭ
m e l l o r ﻡ ﻝ ﻭ ﺭ
m e n d y k e ﻡ ﻥ ﺩ ی ک
m e n g ﻡ ﻥ گ
m e s s e r ﻡ ﺱ ﺭ
m i c h a e l i s ﻡ ی چ ﺍ ی ﻝ ی ﺱ
m i c h a e l i s ﻡ ی چ ﺍ ﻝ ی ﺱ
m i c h a e l i s ﻡ ی چ ﻝ ی ﺱ
m i c h a e l i s ﻡ ی ک ﺍ ی ی ﻝ ی ﺯ
m i c h a e l i s ﻡ ی ک ﺍ ی ی ﻝ ﺯ
m i c h a e l i s ﻡ ﺍ ی ک ﻝ ی ﺱ
m i c k e l s o n ﻡ ی ک ﻝ ﺱ ﻭ ﻥ
m i c k n a ﻡ ی ک ﻥ ﺍ
m i e h e ﻡ ی ی ﻩ
m i e t t u n e n ﻡ ی ﺕ ﻭ ﻥ ﻥ
m i l i n d ﻡ ی ﻝ ی ﻥ ﺩ
m i l l i a n s ﻡ ی ﻝ ی ﺍ ﻥ ﺯ
m i l n e ﻡ ﺍ ی ﻝ ﻥ
m i l t ﻡ ی ﻝ ﺕ
m i n e r ﻡ ی ﻥ ﺭ
m i n e r ﻡ ﺍ ی ﻥ ﺭ
m i n n a ﻡ ی ﻥ ﺍ
m i s r a ﻡ ی ﺱ ﺭ ﺍ
m i s s a l ﻡ ﺍ ی ﺱ ﺍ ﻝ
m i s t i c k ﻡ ی ﺱ ﺕ ی ک
m i t c h e l l ﻡ ی چ ﻝ
m i t c h e l l ﻡ ی ﺕ چ ﻝ
m i t c h e l l ﻡ ی ﺕ ﺵ ﻝ
m i t c h e l l ﻡ ی ﺵ ﻝ
m o b l e y ﻡ ﻭ ﺏ ﻝ ی
m o d ﻡ ﻭ ﺩ
m o g g e d ﻡ ﺍ گ ﺩ
m o l i n a r i ﻡ ﻭ ﻝ ی ﻥ ﺍ ﺭ ی
m o n s t e r ﻡ ﺍ ﻥ ﺱ ﺕ ﺭ
m o n t a n o ﻡ ﻭ ﻥ ﺕ ﺍ ﻥ ﻭ
m o o r m a n ﻡ ﻭ ﺭ ﻡ ﺍ ﻥ
m o q b a r a ﻡ ﻕ ﺏ ﺭ ﻩ
m o r a b i t o ﻡ ﻭ ﺭ ﺍ ﺏ ی ﺕ ﻭ
m o r a l e s ﻡ ﻭ ﺭ ﺍ ﻝ ﺱ
m o r e h o u s e ﻡ ﺭ ﻩ ﺍ ﻭ ﺱ
m o r e h o u s e ﻡ ﻭ ﺭ ﻩ ﺍ ﻭ ﺱ
m o r l i d g e ﻡ ﻭ ﺭ ﻝ ی ﺝ
m o r r e l l ﻡ ﻭ ﺭ ﻝ
m o r r i s o n ﻡ ﺍ ﺭ ی ﺱ ﻭ ﻥ
m o r r i s o n ﻡ ﻭ ﺭ ی ﺱ ﻥ
m o r r i s o n ﻡ ﻭ ﺭ ی ﺱ ﻭ ﻥ
m o r s e ﻡ ﻭ ﺭ ﺱ
m o r s s ﻡ ﻭ ﺭ ﺱ
m o u l d e n ﻡ ﺍ ﻝ ﺩ ﻥ
m o u l d e n ﻡ ﻭ ﻝ ﺩ ﻥ
m o u l d e n ﻡ ﻭ ﻝ ﻥ
m o u s e r ﻡ ﺍ ﻭ ﺱ ﺭ
m u e s s i g ﻡ ﻭ ﺱ ی گ
m u h ﻡ ﻭ
m u l r o o n e y ﻡ ﺍ ﻝ ﺭ ﻭ ﻥ ی
m u m m e r t ﻡ ﺍ ﻡ ﺭ ﺕ
m u n i z ﻡ ﻭ ﻥ ی ﺯ
m u r a l i ﻡ ﺍ ﺭ ﺍ ﻝ ی
m u t h a n n a ﻡ ﺕ ﻥ ﺍ
m u t h a n n a ﻡ ﺩ ﻭ ﻥ ﺍ
m u t h a n n a ﻡ ﻭ ث ﺍ ﻥ ﺍ
m u t h a n n a ﻡ ﻭ ﺕ ﺍ ﻥ ﺍ
m u t i s o ﻡ ﻭ ﺕ ی ﺱ ﻭ
m y r e e n ﻡ ﺍ ی ﺭ ﻥ
n a j w a ﻥ ﺝ ﻭ ﺍ
n a l l i c k ﻥ ﺍ ﻝ ی ک
n a s i h a ﻥ ﺱ ی ﻩ
n a s i h a ﻥ ﺱ ی ﻩ ﺍ
n a s i h a ﻥ ﺵ ی ﻩ ﺍ
n a s i h a ﻥ ﺹ ی ﺡ ﺍ
n a t h a n ﻥ ﺍ ﺕ ﺍ ﻥ
n a t h a n ﻥ ﺍ ﺩ ﺍ ﻥ
n a v i s ﻥ ﻭ ی ﺱ
n a z a r e t i a n ﻥ ﺍ ﺯ ﺍ ﺭ ی ﺕ ی ﺍ ﻥ
n e b r e s ﻥ ﺏ ﺭ ﺱ
n e e f j a n ﻥ ی ﻑ ﺝ ﺍ ﻥ
n e e f j a n ﻥ ﻑ ﺍ ﻥ
n e e f j a n ﻥ ﻑ ﺝ ﺍ ﻥ
n e l k i n ﻥ ﻝ ک ی ﻥ
n i c k o ﻥ ک ﻭ
n i e l ﻥ ی ﻝ
n i e n ﻥ ی ﻥ
n i e r m a n n ﻥ ﺍ ی ﺭ ﻡ ﻥ
n i k k i ﻥ ی ک ی
n i k o l a y ﻥ ی ک ﻭ ﻝ ی
n i l s e ﻥ ی ﻝ ﺱ
n i n s t a r ﻥ ی ﻥ ﺱ ﺕ ﺍ ﺭ
n i t i n ﻥ ی ﺕ ی ﻥ
n i x ﻥ ﺍ ی ک ﺱ
n o r t h o r p e ﻥ ﺭ ﺕ ﺭ ﻭ پ
n o r t h o r p e ﻥ ﻭ ﺭ ث ﻭ ﺭ پ
n o r t h o r p e ﻥ ﻭ ﺭ ﺕ ﻭ ﺭ پ
n o r t h o r p e ﻥ ﻭ ﺭ ﺕ ﻭ ﺭ پ ﻩ
n o r t h o r p e ﻥ ﻭ ﺭ ﺩ ﺭ ﻭ پ ﻩ
n o r t h o r p e ﻥ ﻭ ﺭ ﺩ ﻭ ﺭ پ
n o s a c k ﻥ ﻭ ﺱ ﺍ ک
n u n i s ﻥ ﻭ ﻥ ی ﺱ
o b b i n g e m ﺍ ﺏ ی ﻥ گ ﻡ
o b b i n g e m ﺍ ﺏ ی ﻥ گ ﻥ
o b b i n g e m ﺍ ﻭ ﺏ ی ﻥ گ ﻡ
o b e r h o l z ﺍ ﻭ ﺏ ﺭ ﻩ ﻭ ﻝ ﺯ
o b e r t a s ﺍ ﻭ ﺏ ﺭ ﺕ ﺍ ﺱ
o b s t ﺍ ﺏ ﺱ ﺕ
o c h s ﺍ ﻭ چ ﺯ
o e t j e ﺍ ی ﺕ ﺝ
o e t j e ﺍ ی ﺕ ﺝ ی
o e t j e ﺍ ی ﺕ ﻩ
o e t j e ﺍ ﻭ ﺕ
o e t j e ﺍ ﻭ ﺕ ﺝ
o e t j e ﺍ ﻭ ﺕ ﺝ ﻩ
o e t j e ﺍ ﻭ ﺕ ﻩ
o j a s t e ﺍ ﺝ ﺍ ﺱ ﺕ
o l d s ﺍ ﻝ ﺩ ﺯ
o l d s ﺍ ﻭ ﻝ ﺩ ﺯ
o l l i ﺍ ﻭ ﻝ ی
o r e ﺍ ﻭ ﺭ
o r f e u s ﺍ ﺭ ﻑ ی ﻭ ﺱ
o r g a r ﺍ ﺭ گ ﺍ ﺭ
o r l e a n s ﺍ ﻭ ﺭ ﻝ ی ﻥ ﺯ
o s t r i n ﺍ ﺱ ﺕ ﺭ ی ﻥ
o t t e l l o ﺍ ﻭ ﺕ ﻝ ﻭ
o z m e n ﺍ ﻭ ﺯ ﻡ ﻥ
p a c h i a n o پ ﺍ چ ی ﺍ ﻥ ﻭ
p a i پ ﺍ ی
p a n d a پ ﺍ ﻥ ﺩ ﺍ
p a r a y i l پ ﺍ ﺭ ﺍ ی ﻝ
p a r d i پ ﺍ ﺭ ﺩ ی
p a r k s پ ﺍ ﺭ ک ﺯ
p a r k s پ ﺭ ک ﺱ
p a r n a s s پ ﺍ ﺭ ﻥ ﺱ
p a s c o پ ﺍ ﺱ ک ﻭ
p a t i e n c e پ ی ﺵ ﻥ ﺱ
p a t i e n c e پ ﺕ ی ﻥ ﺱ
p a t s y پ ﺕ ﺱ ی
p e a r l m a n پ ی ﺭ ﻝ ﻡ ﺍ ﻥ
p e d r a m پ ﺩ ﺭ ﺍ ﻡ
p e n d l e t o n پ ﻥ ﺩ ﻝ ﺕ ﻥ
p e n d l e t o n پ ﻥ ﺩ ﻝ ﺕ ﻭ ﻥ
p e n g پ ﻥ گ
p e r c i v a l پ ﺭ ﺱ ی ﻭ ﺍ ﻝ
p e z a r i s پ ﺯ ﺍ ﺭ ﺍ ی ﺱ
p i a t e k پ ی ﺍ ﺕ ک
p i n k o w i t z پ ی ﻥ ک ﻭ ﻭ ی ﺕ ﺯ
p i r a n پ ی ﺭ ﺍ ﻥ
p i t r e پ ﺍ ی ﺕ ﺭ
p i z z i پ ی ﺯ ی
p i z z i n i پ ی ﺯ ی ﻥ ی
p l a t h پ ﻝ ﺍ ﺕ
p o i s l پ ﻭ ی ﺱ ﻝ
p o n d s پ ﺍ ﻥ ﺩ ﺯ
p o t t e r پ ﺍ ﺕ ﺭ
p r a d o پ ﺭ ﺍ ﺩ ﻭ
p r a m o d پ ﺭ ﺍ ﻡ ﻭ ﺩ
p r i c i n g پ ﺭ ی ﺱ ی ﻥ گ
p r i m u s پ ﺭ ی ﻡ ی ﻭ ﺱ
p r i n c e پ ﺭ ی ﻥ ﺱ
p r o v o پ ﺭ ﻭ ﻭ
p u n a پ ﻭ ﻥ ﺍ
p u t z پ ﻭ ﺕ ﺯ
p u u s a a r i پ ﻭ ﺱ ﺍ ﺭ ی
p y r a m i d پ ی ﺭ ﺍ ﻡ ی ﺩ
p y r a m i d پ ﺍ ی ﺭ ﺍ ﻡ ی ﺩ
q u a s i m ک ﺱ ی ﻡ
q u a s i m ک ﻭ ﺍ ﺱ ی ﻡ
q u a s i m ﻕ ﺱ ی ﻡ
q u a s i m ﻕ ﻭ ﺍ ﺱ ی ﻡ
q u a t r a i n ک ﻭ ﺍ ﺕ ﺭ ی ﻥ
q u i c k l e ک ﻭ ی ی ک ﻝ
q u i n b y ک ﻭ ﺍ ﻥ ﺏ ﺍ ی
q u i n t ک ﻭ ی ﻥ ﺕ
q u o d l i n g ک ﺍ ﻭ ﺩ ﻝ ی ﻥ گ
r a d ﺭ ﺍ ﺩ
r a d b o n e ﺭ ﺍ ﺩ ﺏ ﻭ ﻥ
r a d b o n e ﺭ ﺩ ﺏ ﻭ ﻥ
r a d b o u d ﺭ ﺍ ﺩ ﺏ ﻭ ﺩ
r a d c l i f f ﺭ ﺍ ﺩ ک ﻝ ی ﻑ
r a f a t ﺭ ﻑ ﻉ ﺕ
r a g h d ﺭ ﻍ ﺩ
r a g h d ﺭ ﻕ ﺩ
r a i n a l d ﺭ ی ﻥ ﺍ ﻝ ﺩ
r a j c h e r ﺭ ﺍ ﺝ چ ﺭ
r a m s e i e r ﺭ ﺍ ﻡ ﺱ ی ﺭ
r a n a ﺭ ﺍ ﻥ ﺍ
r a n a ﺭ ﻉ ﻥ ﺍ
r a n a ﺭ ﻥ ﺍ
r a s c h k e ﺭ ﺍ ﺵ ک ﻩ
r a s o ﺭ ﺍ ﺱ ﻭ
r a u h ﺭ ﺍ ﻭ
r a w d a h ﺭ ﺍ ﻭ ﺩ ﺍ
r a w d a h ﺭ ﺍ ﻭ ﺩ ﺍ ﻩ
r a w d a h ﺭ ﺩ ﺍ
r a w d a h ﺭ ﺩ ﺍ ﻩ
r a w d a h ﺭ ﻭ ﺩ ﺍ
r a w d a h ﺭ ﻭ ﺩ ﻩ
r a y e r ﺭ ی ی ﺭ
r e e s e ﺭ ی ﺯ
r e e s e ﺭ ی ﺱ
r e e s e ﺭ ی ﺱ ی
r e g a r d ﺭ ی گ ﺍ ﺭ ﺩ
r e i l l e y ﺭ ی ﻝ ی
r e i s e r ﺭ ی ﺯ ﺭ
r e n z l a n d ﺭ ﻥ ﺯ ﻝ ﻥ ﺩ
r h e n i ﺭ ﻥ ی
r h e n i ﺭ ﻥ ﺝ
r h e n i ﺭ ﻩ ﻥ ی
r h e n i ﻩ ﻥ ی
r i f f l e ﺭ ﺍ ی ﻑ ﻝ
r i n t o u l ﺭ ی ﻥ ﺕ ﻭ ﻝ
r o b e r g e ﺭ ﻭ ﺏ ﺭ ﺝ
r o g o z a ﺭ ﻭ گ ﻭ ﺯ ﺍ
r o o d ﺭ ﻭ ﺩ
r o o s e v e l t ﺭ ﻭ ﺯ ﻭ ﻝ ﺕ
r o o s e v e l t ﺭ ﻭ ﺱ ﻭ ﻝ ﺕ
r o s a l y n ﺭ ﻭ ﺱ ﺍ ﻝ ی ﻥ
r o s e n b a u m ﺭ ﺯ ﻥ ﺏ ﺍ ﻭ ﻡ
r o s e n j a c k ﺭ ﻭ ﺯ ﻥ ﺝ ک
r o u n t r e e ﺭ ﻭ ﻥ ﺕ ﺭ ی
r o w a n ﺭ ﻭ ﺍ ﻥ
r o w e t t ﺭ ﻭ ﺕ
r o w o r t h ﺭ ﺍ ﻭ ﺭ ﺕ
r o w s o m e ﺭ ﻭ ﺱ ﺍ ﻡ
r u b i n ﺭ ﺍ ﺏ ی ﻥ
r u b i n ﺭ ﻭ ﺏ ی ﻥ
r u b i o ﺭ ﺍ ﺏ ی ﻭ
r u e d e n ﺭ ﻭ ی ﺩ ﻥ
r u i z ﺭ ﻭ ی ی ﺯ
r u i z ﺭ ﻭ ی ﺯ
r u i z ﺭ ﻭ ی ﺱ
r u i z ﺭ ﻭ ﺍ ی ﺯ
r u i z ﺭ ﻭ ﺯ
r y b o l t ﺭ ﺍ ی ﺏ ﻝ ﺕ
r y d e r ﺭ ی ﺩ ﺭ
r y u ﺭ ی ﻭ
s a c k s ﺱ ﺍ ک ﺱ
s a m ﺱ ﻡ
s a m a h ﺱ ﺍ ﻡ ﺍ ﻩ
s a m a h ﺱ ﻡ ﺍ
s a m a h ﺱ ﻡ ﺍ ﺡ
s a m a h ﺱ ﻡ ﺍ ﻩ
s a m e c ﺱ ﺍ ﻡ ک
s a m m a ث ﻡ ﺍ
s a m m a ﺱ ﻡ ﺍ
s a m m a ﺱ ﻡ ﻡ ﺍ
s a n d b e r g ﺱ ﻥ ﺩ ﺏ ﺭ گ
s a n d i e ﺱ ﻥ ﺩ ی
s a n d s ﺱ ﻥ ﺩ ﺯ
s a n d s ﺱ ﻥ ﺩ ﺱ
s a w f o r d ﺱ ﺍ ﻭ ﻑ ﺭ ﺩ
s a x n e m ﺱ ک ﺱ ﻥ ﻡ
s a x n e m ﺱ ﺍ ک ﺱ ی ﻡ
s a x n e m ﺱ ﺍ ک ﺱ ﻥ ﻡ
s c e a r c e ﺍ ﺱ ک ی ﺭ ﺱ
s c h a b u s ﺵ ﺍ ﺏ ﻭ ﺱ
s c h e e p e n چ ی پ ﻥ
s c h e e p e n ﺍ ﺱ چ ی پ ﻥ
s c h e e p e n ﺍ ﺱ ک ی پ ﻥ
s c h e e p e n ﺵ ی پ ﻥ
s c h u t ﺵ ﺍ ﺕ
s c i a n d r a ﺱ ی ﺍ ﻥ ﺩ ﺭ ﺍ
s c o t o n i ﺍ ﺱ ک ﻭ ﺕ ﻭ ﻥ ی
s e a l e s ﺱ ی ﻝ ﺯ
s e d a ﺱ ﺩ ﺍ
s e e w a l d ﺱ ی ﻭ ﺍ ﻝ ﺩ
s e m e l e ﺱ ﻡ ﻝ ی
s e n g ﺱ ﻥ گ
s e r l i n g ﺱ ﺭ ﻝ ی ﻥ گ
s e r v i d e o ﺱ ﺭ ﻭ ی ﺩ ی ﻭ
s h a m i r ﺵ ﺍ ﻡ ی ﺭ
s h a r q i y a h ﺵ ﺭ ک ی ﺍ ﻩ
s h a r q i y a h ﺵ ﺭ ک ی ﻩ
s h a r q i y a h ﺵ ﺭ ﻕ ی ﻩ
s h a r t z e r ﺵ ﺍ ﺭ ﺕ ﺯ ﺭ
s h e b s ﺵ ﺏ ﺱ
s h e e h y ﺵ ی ﻩ ی
s h e i p e ﺵ پ
s h e l l e r ﺵ ﻝ ﺭ
s h e t l a n d ﺵ ﺕ ﻝ ﻥ ﺩ
s h e t l i n e ﺵ ﺕ ﻝ ﺍ ی ﻥ
s h i d l e r ﺵ ی ﺩ ﻝ ﺭ
s h i r a i ﺵ ی ﺭ ﺍ ی
s h o c k e y ﺵ ﺍ ک ی
s h u m ﺵ ﺍ ﻡ
s i a n o ﺱ ی ﺍ ﻥ ﻭ
s i e r i n g ﺱ ی ﺭ ی ﻥ گ
s i l v e r b e r g ﺱ ی ﻝ ﻭ ﺭ ﺏ ﺭ گ
s i m i n ﺱ ی ﻡ ی ﻥ
s i m m e r ﺱ ی ﻡ ﺭ
s i m o n i e ﺱ ی ﻡ ﻭ ﻥ ﻩ
s i r c o m b e ﺱ ﺭ ک ﺍ ﻡ ﺏ
s i u u i r d i n g e l a n t ﺱ ی ی ﻭ ﺍ ی ﺭ ﺩ ی ﻥ گ ﻝ ﻥ ﺕ
s i u u i r d i n g e l a n t ﺱ ی ﻭ ی ﺭ ﺩ ی ﻥ گ ﻝ ﺍ ﻥ ﺕ
s i u u i r d i n g e l a n t ﺱ ی ﻭ ﺍ ی ﺭ ﺩ ی ﻥ گ ﻝ ﻥ ﺕ
s i u u i r d i n g e l a n t ﺱ ی ﻭ ﺭ ﺩ ی ﻥ گ ﻝ ﻥ ﺕ
s i u u i r d i n g e l a n t ﺱ ﺍ ی ﻭ ی ﺭ ﺩ ی ﻥ گ ﻝ ﺍ ﻥ ﺕ
s i u u i r d i n g e l a n t ﺱ ﺍ ی ﻭ ﺭ ی ﻥ گ ﻝ ﻥ ﺕ
s k a r i ﺍ ﺱ ک ﺍ ﺭ ی
s k e a n ﺍ ﺱ ک ی ﻥ
s k e r r y ﺍ ﺱ ک ﺭ ی
s k i n n e r ﺍ ﺱ ک ی ﻥ ﺭ
s k i p p y ﺍ ﺱ ک ی پ ی
s k l o w e r ﺍ ﺱ ک ﻝ ﻭ ی ﺭ
s l a t k i n ﺍ ﺱ ﻝ ﺍ ﺕ ک ی ﻥ
s m a d j a ﺍ ﺱ ﻡ ﺍ ﺩ ﺝ
s m e d l e y ﺍ ﺱ ﻡ ﺩ ﻝ ی
s m i k l a ﺍ ﺱ ﻡ ی ک ﻝ ﺍ
s m o l i n ﺍ ﺱ ﻡ ﻭ ﻝ ی ﻥ
s n e i s s e l ﺍ ﺱ ﻥ ی ﺱ ﻝ
s n o w d e n ﺍ ﺱ ﻥ ﻭ ﺩ ﻥ
s o g e n ﺱ ﻭ گ ﻥ
s o m e r e n ﺱ ﻡ ﺭ ﻥ
s o m v a y ﺱ ﻭ ﻡ ﻭ ی
s o o ﺱ ﻭ
s o r e n ﺱ ﻭ ﺭ ﻥ
s o u z a ﺱ ﻭ ﺯ ﺍ
s p a t a f o r a ﺍ ﺱ پ ﺍ ﺕ ﺍ ﻑ ﻭ ﺭ ﺍ
s p i n d r i f t ﺍ ﺱ پ ی ﻥ ﺩ ﺭ ی ﻑ ﺕ
s p i r o ﺍ ﺱ پ ی ﺭ ﻭ
s p o t s w o o d ﺍ ﺱ پ ﺍ ﺕ ﺱ ﻭ ﻭ ﺩ
s q u i r r e l ﺍ ﺱ ک ﻭ ﺍ ی ﺭ ﻝ
s t a d l e r ﺍ ﺱ ﺕ ﺩ ﻝ ﺭ
s t a f f a n ﺍ ﺱ ﺕ ﻑ ﺍ ﻥ
s t a r b u c k ﺍ ﺱ ﺕ ﺍ ﺭ ﺏ ﺍ ک
s t a r k e y ﺍ ﺱ ﺕ ﺍ ﺭ ک ی
s t a r t l e d ﺍ ﺱ ﺕ ﺍ ﺭ ﺕ ﻝ ﺩ
s t e r i t i ﺍ ﺱ ﺕ ﺭ ی ﺕ ی
s t i g b e r g ﺍ ﺱ ﺕ ی گ ﺏ ﺭ گ
s t i n e m a n ﺍ ﺱ ﺕ ﺍ ی ﻥ ﻡ ﻥ
s t o c k w e l l ﺍ ﺱ ﺕ ﻭ ک ﻭ ﻝ
s t r a t o n ﺱ ﺕ ﺭ ﺍ ﺕ ﻭ ﻥ
s t r o p e ﺍ ﺱ ﺕ ﺭ ﺍ پ
s t r o y a n ﺍ ﺱ ﺕ ﺭ ی ﺍ ﻥ
s t u c k e y ﺍ ﺱ ﺕ ﺍ ک ی
s u d i p ﺱ ﻭ ﺩ ی پ
s u d i p t o ﺱ ﻭ ﺩ ی پ ﺕ ﻭ
s u e ﺱ ﻭ
s u g a i ﺱ ﺍ گ ﺍ ی ی
s u l l i v a n ﺱ ﺍ ﻝ ی ﻭ ﺍ ﻥ
s u m m e r s ﺱ ﺍ ﻡ ﺭ ﺯ
s u n d a r ﺱ ﺍ ﻥ ﺩ ﺍ ﺭ
s u n e e t ﺱ ﺍ ﻥ ی ﺕ
s u n n y ﺱ ﺍ ﻥ ی
s u r i n d e r ﺱ ﻭ ﺭ ی ﻥ ﺩ ﺭ
s w a r t ﺱ ﻭ ﺍ ﺭ ﺕ
s w i s h e r ﺍ ﺱ ﻭ ی ﺵ ﺭ
t a l c o t t ﺕ ﺍ ﻝ ک ﻭ ﺕ
t a m b u r r i ﺕ ﻡ ﺏ ﺭ ی
t a p l i n ﺕ ﺍ پ ﻝ ی ﻥ
t a r d e l l ﺕ ﺍ ﺭ ﺩ ﻝ
t a t t a m ﺕ ﺍ ﺕ ﺍ ﻡ
t a v a r e s ﺕ ﺍ ﻭ ﺍ ﺭ ﺱ
t e a g u e ﺕ ی گ ﻭ
t e h ﺕ ﻩ
t e n a y a ﺕ ﻥ ﺍ ی ﺍ
t e n n a n t ﺕ ی ﻥ ﺍ ﻥ ﺕ
t e n n a n t ﺕ ﻥ ﺍ ﻥ ﺕ
t e r e s a ﺕ ﺭ ﺱ ﺍ
t e r r a d a ﺕ ﺭ ﺍ ﺩ ﺍ
t e r r e n c e ﺕ ﺭ ﻥ ﺱ ﻩ
t e r r i s ﺕ ﺭ ی ﺱ
t h a y e r ﺕ ﺍ ی ﺭ
t h e l a n d e r ﺕ ﻝ ﺍ ﻥ ﺩ ﺭ
t i n a ﺕ ی ﻥ ﺍ
t i n g l e y ﺕ ی ﻥ گ ﻝ ی
t i n s e l ﺕ ی ﻥ ﺱ ﻝ
t o b i n ﺕ ﻭ ﺏ ی ﻥ
t o l e n o ﺕ ﺍ ﻝ ﻥ ﻭ
t o l v a n e n ﺕ ﺍ ﻝ ﻭ ﺍ ﻥ ﻥ
t o n g u e ﺕ ﺍ ﻥ گ
t o n j e s ﺕ ﺍ ﻥ ﺝ ﺱ
t o n j e s ﺕ ﻭ ﻥ ی ﺱ
t o n j e s ﺕ ﻭ ﻥ ﺝ ﺱ
t o n j e s ﺕ ﻭ ﻥ ﺱ
t o o n ﺕ ﻭ ﻥ
t o r d a ﺕ ﻭ ﺭ ﺩ ﺍ
t o w ﺕ ﺍ ﻭ
t r a s h ﺕ ﺭ ﺵ
t r e i n d l ﺕ ﺭ ی ﻥ ﺩ
t r e i t e l ﺕ ﺭ ی ﺕ ﻝ
t r e t h o w a n ﺕ ﺭ ﺕ ﻭ ﺍ ﻥ
t r i c k e t t ﺕ ﺭ ی ک ﺕ
t r i n k l e ﺕ ﺭ ی ﻥ ک ﻝ
t r o t t e r ﺕ ﺭ ﻭ ﺕ ﺭ
t r u e s d a l e ﺕ ﺭ ﻭ ی ﺱ ﺩ ی ﻝ
t r u l l ﺕ ﺭ ﻭ ﻝ
t u l i ﺕ ﻭ ﻝ ی
t u o n g ﺕ ﻭ ﻥ گ
t u r c o t t e ﺕ ﻭ ﺭ ک ﺍ ﺕ
t u r k e l ﺕ ﺍ ﺭ ک ﻝ
t u r t o n ﺕ ﺭ ﺕ ﻭ ﻥ
t u s h a r ﺕ ﻭ ﺵ ﺍ ﺭ
t w e e d i e ﺕ ﻭ ی ﺩ ی
u n r u h ﺍ ﻥ ﺭ ﺍ ﻩ
u p r i g h t ﺍ پ ﺭ ﺍ ی ﺕ
v a n d u z e n ﻭ ﺍ ﻥ ﺩ ﺯ ﻥ
v a n d u z e n ﻭ ﺍ ﻥ ﺩ ﺯ ﻭ ﻥ
v a n d u z e n ﻭ ﺍ ﻥ ﺩ ﻭ ﺯ ﻥ
v a n d u z e n ﻭ ﻥ ﺩ ﺍ ﺯ ﻥ
v a n d u z e n ﻭ ﻥ ﺩ ﻭ ﺯ ﻥ
v a n g ﻭ ﺍ ﻥ گ
v a n g ﻭ ﻥ گ
v a n s c h o o n h o v e n ﻭ ﺍ ﻥ ﺱ چ ﻭ ﻥ ﻩ ﻭ ﻥ
v a n s c h o o n h o v e n ﻭ ﺍ ﻥ ﺱ ک ﻭ ﻥ ﻩ ﻭ ﻥ
v a n s c h o o n h o v e n ﻭ ﻥ چ ﻭ ﻥ ﻩ ﻭ ﻭ ﻥ
v a n s c h o o n h o v e n ﻭ ﻥ ﺍ ﺱ چ ﻭ ﻥ ﻭ ﻥ
v a n s c h o o n h o v e n ﻭ ﻥ ﺱ ک ﻭ ﻥ ﻩ ﻭ ﻭ ﻥ
v a n s c h o o n h o v e n ﻭ ﻥ ﺵ ﻭ ﻥ ﻩ ﺍ ﻭ ﻥ
v a n s c h o o n h o v e n ﻭ ﻥ ﺵ ﻭ ﻥ ﻩ ﻭ ﻭ ﻥ
v a n v r a n k e n ﻭ ﺍ ﻥ ﻭ ﺭ ﺍ ﻥ ک ﻥ
v a n v r a n k e n ﻭ ﺍ ﻥ ﻭ ﺭ ﻥ ک ﻥ
v a n v r a n k e n ﻭ ﻥ ی ﺭ ﻥ ک ﻥ
v a n v r a n k e n ﻭ ﻥ ﺭ ﻥ ک ﻥ
v a n v r a n k e n ﻭ ﻥ ﻭ ﺭ ﺍ ﻥ ک ﻥ
v a r g o ﻭ ﺍ ﺭ گ ﻭ
v e l a s c o ﻭ ی ﻝ ﺍ ﺱ ک ﻭ
v e l d e n ﻭ ﻝ ﺩ ﻥ
v e n t u r e l i ﻭ ﻥ ﺕ ﺭ ﻝ ی
v e r b e c k ﻭ ﺭ ﺏ ک
v e r l i n d e ﻭ ﺭ ﻝ ی ﻥ ﺩ
v e s t a l ﻭ ﺱ ﺕ ﺍ ﻝ
v e s t l i ﻭ ﺱ ﺕ ﻝ ی
v e t t e r ﻭ ﺕ ﺭ
v i m a l ﻭ ی ﻡ ﺍ ﻝ
v o g l ﻭ گ ﻝ
v o l t m e r ﻭ ﻝ ﺕ ﻡ ﺭ
v o n k ﻭ ﺍ ﻥ ک
w a i n s t e a d ﻭ ی ﻥ ﺱ ﺕ ﺩ
w a i t e ﻭ ی ﺕ
w a k e ﻭ ی ک
w a l d m a n n e u e n n a ﻭ ﺍ ﻝ ﺩ ﻡ ﺍ ﻥ ی ﻭ ﻥ ﺍ
w a l d m a n n e u e n n a ﻭ ﺍ ﻝ ﺩ ﻡ ﻥ ی ﻭ ﻥ ﺍ
w a l d m a n n e u e n n a ﻭ ﺍ ﻝ ﺩ ﻡ ﻥ ﻥ ی ﻭ ی ﻥ ﺍ
w a l d m a n n e u e n n a ﻭ ﺍ ﻝ ﺩ ﻡ ﻥ ﻥ ﺍ
w a l d m a n n e u e n n a ﻭ ﻝ ﺩ ﻡ ﻥ ﻭ ﻥ ﺍ
w a l d o ﻭ ﺍ ﻝ ﺩ ﻭ
w a l i d a h ﻭ ﻝ ی ﺩ ﻩ
w a l k a ﻭ ﺍ ﻝ ک ﺍ
w a l l e ﻭ ﺍ ﻝ ﻩ
w a l l e w e i n ﻭ ﺍ ﻝ ﻭ ی ﻥ
w a l l m a n ﻭ ﺍ ﻝ ﻡ ﻥ
w a l t o n ﻭ ﺍ ﻝ ﺕ ﻥ
w a l t o n ﻭ ﺍ ﻝ ﺕ ﻭ ﻥ
w a s h i n g t o n ﻭ ﺍ ﺵ ی ﻥ گ ﺕ ﻭ ﻥ
w a s h i n g t o n ﻭ ﺍ ﺵ ﻥ گ ﺕ ﻥ
w a s h i n g t o n ﻭ ﺍ ﺵ ﻥ گ ﺕ ﻭ ﻥ
w a s s ﻭ ﺍ ﺱ
w e a s t ﻭ ی ﺱ ﺕ
w e i n b e r g ﻭ ی ﻥ ﺏ ﺭ گ
w e n c h ﻭ ﻥ چ
w e n d e l l ﻭ ﻥ ﺩ ﻝ
w e s t e r ﻭ ﺱ ﺕ ﺭ
w e s t o v e r ﻭ ﺱ ﺕ ﻭ ﺭ
w e t ﻭ ﺕ
w e t m o r e ﻭ ﺕ ﻡ ﻭ ﺭ
w h a l e y ﻭ ﺍ ﻝ ی
w h a r t o n ﻭ ﺍ ﺭ ﺕ ﻭ ﻥ
w h i t c o m b ﻭ ی ﺕ ک ﺍ ﻡ ﺏ
w i d m e r ﻭ ی ﺩ ﻡ ﺭ
w i e g a n d ﻭ ی گ ﺍ ﻥ ﺩ
w i e r s e ﻭ ی ی ﺭ ﺱ
w i g t o n ﻭ ی گ ﺕ ﻭ ﻥ
w i l h e l m u s ﻭ ی ﻝ ﻝ ﻡ ﻭ ﺱ
w i l h e l m u s ﻭ ی ﻝ ﻩ ﻝ ﻡ ﺍ ﺱ
w i l h e l m u s ﻭ ی ﻝ ﻩ ﻝ ﻡ ﻭ ﺱ
w i l k e n ﻭ ی ﻝ ک ﻥ
w i l l a t s ﻭ ی ﻝ ﺍ ﺕ ﺯ
w i l l e m i n t j e ﻭ ی ﻝ ﻡ ی ﻥ ی ﺕ ﻩ
w i l l e m i n t j e ﻭ ی ﻝ ﻡ ی ﻥ ﺕ
w i l l e m i n t j e ﻭ ی ﻝ ﻡ ی ﻥ ﺕ ﺝ
w i l l e m i n t j e ﻭ ی ﻝ ﻡ ی ﻥ ﺕ ﺝ ﻩ
w i l l e m i n t j e ﻭ ی ﻝ ﻡ ی ﻥ ﺕ ﻩ
w i l l e m i n t j e ﻭ ی ﻝ ﻡ ﻥ ﺕ ﺝ ی
w i l l m o t ﻭ ی ﻝ ﻡ ﺕ
w i m p j e ﻭ ی ﻡ پ
w i m p j e ﻭ ی ﻡ پ ی ﺝ
w i m p j e ﻭ ی ﻡ پ ﺝ
w i m p j e ﻭ ی ﻡ پ ﺝ ی
w i m p j e ﻭ ی ﻡ پ ﺝ ﻩ
w i m p j e ﻭ ی ﻡ پ ﻩ
w i n k e l s ﻭ ی ﻥ ک ﻝ ﺯ
w i r t ﻭ ی ﺭ ﺕ
w o n ﻭ ﻥ
w o o d e d ﻭ ﻭ ﺩ ﺩ
w o o l l e y ﻭ ﻭ ﻝ ی
w o r c h i c k ﻭ ﺭ چ ی ک
w u n ﻭ ﻭ ﻥ
w y m a n ﻭ ی ﻡ ﺍ ﻥ
w y m a n ﻭ ی ﻡ ﻥ
w y m a n ﻭ ﺍ ی ﻡ ﻥ
y a c o b ی ﺍ ک ﻭ ﺏ
y a m a h a ی ﺍ ﻡ ﺍ ﻩ ﺍ
y e k a ی ی ک ﺍ
y o r k ی ﻭ ﺭ ک
y o u m a n s ی ﻭ ﻡ ﺍ ﻥ ﺱ
z a b e l ﺯ ﺍ ﺏ ﻝ
z e l l e r ﺯ ﻝ ﺭ
z o l m e r ﺯ ﻭ ﻝ ﻡ ﺭ
|
234067bd4a19897b0f6ec0cef1adcc1edde4ac84
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/27/CH3/EX3.4.1/Example_3_4_1.sce
|
c33a7b32357b0e1b1a6c2d37d56c84d510048457
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,129 |
sce
|
Example_3_4_1.sce
|
//Example 3.4.1 Page 57
//Non-Linear Dynamics and Chaos, First Indian Edition Print 2007
//Steven H. Strogatz
clear;
clc;
close;
set(gca(),"auto_clear","on") //hold off
for (B=0.5:0.5:2) //Capital "B" is denoting Beta.
x=-3:0.1:3;
y=x; //To plot x=y line.
figure;
set(gca(),"auto_clear","off") //hold on
set(gca(),"grid",[2,5])
plot2d(x,y,style=-4)
plot2d(x,B*tanh(x),style=-1)
xtitle("Intersection For different Beta values","x-Axis","y-Axis")
end
disp("From graph following points are clear:")
disp("1. For B<1, only orign is the fixed point.")
disp("2. For B>1, their are two new fixed points.")
//Stability
figure
set(gca(),"grid",[2,5])
for(x1 = -3:0.5:3)
if(x1~=0)
B = x1/tanh(x1);
plot2d(B,x1,style=-4)
end
for(B=0:0.1:3);
x1 = 0;
if(B<1)
plot2d(B,x1,style=-4) //Stable
else
plot2d(B,x1,style=-2) //Unstable
end
xtitle("Bifurcation Diagram","Beta Values-Parameter","x*-Fix Points")
end
end
set(gca(),"auto_clear","on")
//If B<1 then only one fixed point.
//end of Example.
|
c6faae6117ebccebe3998354d97f3b9e585863d1
|
d1a2737ec744ffbba1165afa7b05f26a4076f513
|
/Lab 9/Q2.sce
|
f239812ae379858d521745b2f791daf44ce6d56f
|
[
"MIT"
] |
permissive
|
ipsitmantri/EE-324-Control-Systems-Lab
|
4e37a3de51f4114ba0ea281cbb1da78a6c4815bb
|
b34c45efc3539005603b2e76c1665d6636f80f88
|
refs/heads/master
| 2023-04-03T10:42:34.548542 | 2021-04-13T14:11:21 | 2021-04-13T14:11:21 | 357,540,595 | 2 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 666 |
sce
|
Q2.sce
|
clc; clear;
s = poly(0, 's');
g = ((s^2+100*%pi*%pi*100)/(s^2 + 2*1*s + (100*%pi)^2));
G = syslin('c', g);
scf();
bode(G, 1, 100);
title(["Notch filter that rejects 50Hz", "$\frac{s^2 + (100\pi)^2}{s^2 + 2s + (100\pi)^2}$"], 'fontsize', 3);
K = 1:20:100;
tfs = [];
labels = [];
for i=1:size(K, 2)
k = K(i);
g = ((s^2+100*%pi*%pi*100)/(s^2 + 2*k*s + (100*%pi)^2));
G = syslin('c', g);
tfs = [tfs; G];
str = sprintf("$K = %d$", k);
labels = [labels; str];
// gainplot(G, 1, 100, 'r-');
end
scf();
gainplot(tfs, 10, 1000, labels);
title(["Notch filter that rejects 50Hz", "$\frac{s^2 + (100\pi)^2}{s^2 + 2Ks + (100\pi)^2}$"], 'fontsize', 3);
|
f437ef5ea44cf5789fc3c507cece495d495f13b5
|
c36e1bfd38146c66289228951b38aed97a50e7ce
|
/Projet sur les réseaux de distribution d’eau/Scilab/OraclePH.sci
|
7de2d241c8f8b45c395a854a4eefffca87f01e42
|
[
"MIT"
] |
permissive
|
AmineKheldouni/Optimization-Control
|
73e4c50c2edbac1863d231036125c405eea1807c
|
417336ff19b174668be002c4a5d24bd78c88c39e
|
refs/heads/master
| 2020-04-14T22:30:01.903485 | 2019-01-04T23:35:20 | 2019-01-04T23:35:20 | 164,165,063 | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 387 |
sci
|
OraclePH.sci
|
function [F,G,H] = OraclePH(qc,ind)
q = q0 + B * qc;
if ind == 2 | ind == 4 | ind == 7 then
F = (1/3) * q' * (r .* q .* abs(q)) + pr' * (Ar * q);
end
if ind == 3 | ind == 4 | ind == 6 | ind == 7 then
G = B' * (r .* q .* abs(q) + Ar' * pr)
end
if ind == 5 | ind == 6 | ind == 7 then
H = 2 * B' * diag([r .* abs(q)]) * B
end
endfunction
|
597b0677a3ef55ac9c005a3662f9d0aa3b83f33f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3834/CH10/EX10.1.2/Ex10_1_2.sce
|
ed17adb6e5f14a7386206bd191aef430bde98959
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 609 |
sce
|
Ex10_1_2.sce
|
//Fiber-optics communication technology, by Djafer K. Mynbaev and Lowell L. Scheiner
//Example 10.1.2
//windows 7
//Scilab version-6.0.0
clc;
clear ;
//given
T=300;//temperature in K
kB=1.38E-23;//Boltzman constant in J/K
E=kB*T;
e=1.6E-19;//Electrons value in Coulomb
Vd=0.7;;//depletion voltage in V
Y=e*Vd/E;
nnbynp=exp(Y);//Ratio of majority to minority charge carriers in an n type and a p type of silicon semiconductor
mprintf("Ratio of majority to minority charge carriers in an n type and a p type of silicon semiconductor = %.2f x10^11",nnbynp/1e11);//the answer vary due to rounding
|
7f6421fb97e82801b95a33d8ce2be5a85a21e3bc
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3472/CH7/EX7.11/Example7_11.sce
|
5840303c281b016496f412a1e64f23305f85a172
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,364 |
sce
|
Example7_11.sce
|
// A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART I : GENERATION
// CHAPTER 7: TARIFFS AND ECONOMIC ASPECTS IN POWER GENERATION
// EXAMPLE : 7.11 :
// Page number 76
clear ; clc ; close ; // Clear the work space and console
// Given data
MD = 100.0*10**3 // Maximum demand(kW)
capital_cost = 200.0*10**6 // Capital cost(Rs)
LF = 0.4 // Annual load factor
cost_fueloil = 15.0*10**6 // Annual cost of fuel and oil(Rs)
cost_tax = 10.0*10**6 // Cost of taxes, wages and salaries(Rs)
interest = 0.15 // Interest and depreciation
// Calculations
hours_year = 365.0*24 // Total hours in a year
units_gen = MD*LF*hours_year // Units generated per annum(kWh)
fixed_charge = interest*capital_cost // Annual fixed charges(Rs)
running_charge = cost_fueloil+cost_tax // Annual running charges(Rs)
annual_charge = fixed_charge+running_charge // Total annual charges(Rs)
cost_unit = annual_charge*100/units_gen // Cost per unit(Paise)
// Results
disp("PART I - EXAMPLE : 7.11 : SOLUTION :-")
printf("\nCost per unit generated = %.f paise", cost_unit)
|
12b1d7ffd5fd837cd88785120826b604751b7b76
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1226/CH21/EX21.13/EX21_13.sce
|
f0dd7cc427d69d088c551af7874655e78bb10b6a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,260 |
sce
|
EX21_13.sce
|
clc;funcprot(0);//EXAMPLE 21.13
// Initialisation of Variables
t1=288;.............//Temperature of intake air in K
rp=4;.............//Pressure ratio
etac=0.82;.........//Compressor efficiency
etahe=0.78;...........//Efficiency of heat exchanger
etat=0.7;...........//Turbine efficiency
t3=873;............//Temperature before expansion in turbine in K
R=0.287;............//Gas constant for air in kJ/kgK
ga=1.4;...........//Ratio of specific heats
//Calculations
t2=t1*((rp)^((ga-1)/ga));...............//Ideal temperature of air after compression in K
t21=((t2-t1)/etac)+t1;...............//Actual temperature of air after compression in K
t4=t3/(rp^((ga-1)/ga));............//Ideal temperature after expansion in turbine in K
t41=t3-etat*(t3-t4);............//Actual temperature after expansion in turbine in K
cp=R*(ga/(ga-1));..............//Specific heat at constant pressure in kJ/kgK
wc=cp*(t21-t1);.............//Compressor work in kJ/kg
wt=cp*(t3-t41);....................//Turbine work in kJ/kg
wnet=wt-wc;....................//Net work available in kJ/s
t5=(etahe*(t41-t21))+t21;
qs=cp*(t3-t5);.................//Heat supplied in kJ/kg
etac=wnet/qs;...............//Cycle efficiency
disp(etac*100,"Cycle efficiency in %:")
|
6f099fb739befbe02c69fd9426b002d06285e6ae
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/551/CH12/EX12.1/1.sce
|
e46175302dd2185058ea819bf4f1474f2859cf5d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 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,325 |
sce
|
1.sce
|
clc
p1=60; //bar; Inlet to turbine
p2=0.1; //bar; Exit from turbine
p3=0.09; //bar; Exit from condenser
p4=70; //bar ; Exit from pump
p5=65; //bar; Exit from boiler
t1=380; //0C
t5=400; //0C
x2=0.9; //Quality at exit from turbine
C=200; //m/s; Velocity at the exit from turbine
disp("(i) Power output of the turbine")
//At 60 bar 380 0C, From steam tables
h1=3123.5; //kJ/kg; By interpolation
h_f2=191.8; //kJ/kg
h_fg2=2392.8; //kJ/kg
x2=0.9;
h2=h_f2+x2*h_fg2;
m_s=10000/3600; //Rate of stem flow in kg/s
P=m_s*(h1-h2);
disp("Power output of the turbine =")
disp(P)
disp("kW")
disp("(ii) Heat transfer per hour in the boiler and condenser")
h_f4=1267.4; //kJ/kg
h_a=3167.6; //kJ/kg
Q1=10000*(h_a - h_f4);
disp("Heat transfer per hour in the boiler =")
disp(Q1)
disp("kJ/h")
h_f3=183.3; //kJ/kg
Q2=10000*(h2-h_f3);
disp("Heat transfer per hour in the condenser =")
disp(Q2)
disp("kJ/h")
disp("(iii) Mass of cooling water circulated per hour in the condenser")
c_pw=4.18;
t2=30;
t1=20;
m_w=Q2/c_pw/(t2-t1);
disp("m_w=")
disp(m_w)
disp("kg/h")
disp("This is the exact answer.")
disp("(iv) Diameter of the pipe connecting turbine with condenser")
v_g2=14.67; //m^3/kg
d=sqrt(m_s*x2*v_g2*4/%pi/C)*1000;
disp("Diameter =")
disp(d)
disp("mm")
|
1dd2bdfc4bf51918a8812f6ff803789d39a18e48
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2744/CH3/EX3.3/Ex3_3.sce
|
36190d5a4936669fd160903d27ce2a25e099796a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 329 |
sce
|
Ex3_3.sce
|
clear;
clc;
l = 10;//feet
d = 5/4;//inches
p = 8;//tons/in^2
E = 13000;//tons/in^2
A = 0.25*%pi*d^2;//in^2
e = p/E;
del_l = e*l*12;//inches
W = 0.5*p^2*A*l*12/E;// inch-ton
h = W*10-del_l;//inches
printf('Instantaneous elongation is del_l = %.3f inches',del_l);
printf('\n Height of the drop is h = %.2f inches',h);
|
6e6a1f8aa611739db0fb054c5d428d950c6162e5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2150/CH1/EX1.7/ex1_7.sce
|
47d93a675a276da7b2503108c8d817bf3041e073
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 297 |
sce
|
ex1_7.sce
|
// Exa 1.7
clc;
clear;
close;
// Given data
V_i = 12;// in V
V_D1 = 0.7;// in V
V_D2 = 0.3;// in V
R = 5.6*10^3;// in ohm
V_o = V_i - V_D1 - V_D2;// in V
disp(V_o,"The value of Vo voltage in V is");
I_D = V_o/R;// in A
I_D = I_D*10^3;// in mA
disp(I_D,"The value of I_D in mA is");
|
dccd200536fb26862c8778c6d4cae9b17093853c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2609/CH1/EX1.9/ex_1_9.sce
|
844ee3fb4e623526c50284928f6ad3f558dcc332
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 489 |
sce
|
ex_1_9.sce
|
//Ex 1.9
clc;
clear;
close;
format('v',5);
Beta=100;//unitless
VBE=0.715;//V
R=5.6;//kohm
RC=1;//kohm
VCC=10;//V
VCB1=0;//V(Q1 will act as diode)
IREF=(VCC-VBE)/R;//mA
//KCL at node x : IREF=IC1+2*IB;
//KCL at node y : I1=IC2+IB3;//as Beta>>1
IREF=(VCC-VBE)/R;//mA
//as IREF=2*IC1/Beta+IC1
IC1=IREF/(1+2/Beta);//mA
IC2=IC1;//mA
IC3=IC1;//mA
disp(IC1,"Collector current in each transistor, IC1=IC2=IC3 in mA");
IRC=IC1+IC2+IC3;//mA
disp(IRC,"Current through RC(mA)");
|
99316d297f3a79f3002d52bd82e7dfaf57938721
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/181/CH2/EX2.28/example2_28.sce
|
dc4724f58e130a29671a8f208521f6d20740f35f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 582 |
sce
|
example2_28.sce
|
// Maximum forward current,forward resistance
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 2-28 in page 104
clear; clc; close;
// Given data
P_max=2.5; // Maximum power in watt
V_f=0.9; // Forward voltage in V
I_max=2.2; // Maximum current in A
// Calculation
I_fmax=P_max/V_f;
R_f=P_max/(I_max)^2;
printf("(a)Maximum forward current = %0.2f A\n",I_fmax);
printf("(b)Forward diode resistance = %0.3f ohm",R_f);
// Result
// Forward current = 2.78 A
// Diode forward resistance = 0.517 ohm
|
5003c7c5508cb5abca7a7a9c5132a0370fade9c8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1535/CH13/EX13.2/Ch13Ex2.sci
|
16929120ef168fe31558121506b83bdf5892bb1e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 789 |
sci
|
Ch13Ex2.sci
|
// Scilab Code Ex13.2: Parallel plate capacitor: Page-287 (2010)
epsilon_0 = 8.854e-012; // Absolute electrical permittivity of free space, farad per metre
A = 100e-004; // Area of a plate of parallel plate capacitor, metre square
d = 1e-002; // Distance between the plates of the capacitor, m
V = 100; // Potential applied to the plates of the capacitor, volt
C = epsilon_0*A/d; // Capacitance of parallel plate capacitor, farad
Q = C/V; // Charge on the plates of the capacitor, coulomb
printf("\nThe capacitance of parallel plate capacitor = %5.3e F", C);
printf("\nThe charge on the plates of the capacitor = %5.3e C", Q);
// Result
// The capacitance of parallel plate capacitor = 8.854e-012 F
// The charge on the plates of the capacitor = 8.854e-014 C
|
b112be6e6f89eaf0a2582f7f192cb2d0dea8366c
|
0592c9e4cfbb77a0755aff6f0c798d9fe31f6ff4
|
/scilab/Calibration_Equity/src/Calib_Mc/loader.sce
|
4186e243f772ebcee34de5e9f9c9fc9e10fbbb11
|
[] |
no_license
|
FinancialEngineerLab/premia-13-cpp_FICC
|
e19caa6a9cadb4ad1361053efc0dfc9418071cf9
|
e271da627dbfc8c2c1f7e9f700766544f64c72b2
|
refs/heads/master
| 2023-03-16T11:11:26.830681 | 2016-04-19T05:58:16 | 2016-04-19T05:58:16 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 244 |
sce
|
loader.sce
|
// generated by builder.sce: Please do not edit this file
// ------------------------------------------------------
libcalib_path=get_file_path('loader.sce');
functions=[ 'calib';
];
addinter(libcalib_path+'/libcalib.so','libcalib',functions);
|
a097f794577cb07e1a26fc1a3756baac28d68c82
|
c7c0836420b1440812466e25f2fb15dc41ae6e3c
|
/macros/SOCKET_write.sci
|
285e43a4da6bc6895bae8eedbf25a618e826e7a6
|
[] |
no_license
|
sengupta/scilab-socket
|
b13ba613a88e334ec1e2a35fed320d8908de1399
|
3da2794dc38caa2593928cac0a734ad3ea9f3b19
|
refs/heads/master
| 2016-09-03T06:54:50.197439 | 2012-04-03T11:25:22 | 2012-04-03T11:25:22 | 3,917,275 | 2 | 2 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 251 |
sci
|
SOCKET_write.sci
|
// path=SCI+"/contrib/SOCKET/help/";
// txt = help_skeleton("SOCKET_write",path)
function SOCKET_write(id,commande)
TCL_EvalStr([ "puts $tclsocket"+string(id)+" """+commande+ascii(10)+"""";
"flush $tclsocket"+string(id)]);
endfunction
|
9f7e84d1298db1bf6623e543a75bf3935c429b97
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3669/CH4/EX4.12/12.sce
|
2822b4134d8129b639c08022bd636ad287b8bd92
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 486 |
sce
|
12.sce
|
//Variable declaration
n=1;
e=1.6*10**-19;
m=9.11*10**-31; //mass(kg)
h=6.63*10**-34; //planck's constant
L=1*10**-10; //width(m)
//Calculation
E1=n**2*h**2/(8*m*e*L**2); //energy value in g state(eV)
E3=3**2*E1; //energy value in 2nd quantum state(eV)
E=E3-E1; //energy required to pump an electron(eV)
//Result
printf('energy required to pump an electron is %0.3f eV \n',(E))
printf('answer varies due to approximating off errors\n')
|
0fce9d4c0f97b9825c29931af6f7c6806a0795e3
|
da5b40d917ec2982828bd9bdf06b18b7bf189f26
|
/sim/scripts/man-ethanol.tst
|
b14a77a24f90756162498311b1e5aa2ab5cd3d57
|
[] |
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 | 1,050 |
tst
|
man-ethanol.tst
|
#ethanol distillation
$thermo = VirtualMaterials.PSRK
/ -> $thermo
thermo + Ethanol Water
units SI
Feed = Stream.Stream_Material()
Feed.In.MoleFlow = 34.43
Feed.In.Fraction = 0.3 0.7
Feed.In.VapFrac = 0.0
Feed.In.P = 101.325
Feed.In
Steam = Stream.Stream_Material()
Steam.In.P = 24.7 psia
Steam.In.Fraction = 0 1
Steam.In.MoleFlow = 51.1
Steam.In.VapFrac = 1.0
Steam.In
dist = Tower.Tower()
dist.MaxOuterLoops = 40
dist.Stage_0 + 12
cd dist.Stage_0
l = Tower.LiquidDraw()
l.Port.P = 101.325
l.Port.MoleFlow = 12.91
#reflux = Tower.RefluxRatioSpec()
#reflux.Port = 3.0
cond = Tower.EnergyFeed(0)
estT = Tower.Estimate('T')
estT.Value = 78
cd ../Stage_11
f = Tower.Feed()
/Feed.Out -> f.Port
cd ../Stage_13
l = Tower.LiquidDraw()
l.Port.P = 101.325
f = Tower.Feed()
/Steam.Out -> f.Port
estT = Tower.Estimate('T')
estT.Value = 100
cd ..
/distillate = Stream.Stream_Material()
/stillage = Stream.Stream_Material()
/distillate.In -> Stage_0.l.Port
/stillage.In -> Stage_13.l.Port
TryToSolve = 1
copy /
paste /
cd /RootClone
dist.Stage_0.l.Port
|
df34d23364f8d9e643428989ba65ecad3cb2e355
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2609/CH3/EX3.4/ex_3_4.sce
|
c66ba9c3bbafc6efff38490d6f39460422f5d81f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null |
UTF-8
|
Scilab
| false | false | 176 |
sce
|
ex_3_4.sce
|
//Ex 3.4
clc;
clear;
close;
format('v',5);
SR=0.5;//V/micro second
Vm=10;//V
f=100;//kHz
fm=(SR/10^-6)/(2*%pi*Vm);//Hz
disp(fm/1000,"Maximum frequency, fm is(kHz)");
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.