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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1b126afb041a0489424f1ef8690eaa52aad53a24 | 449d555969bfd7befe906877abab098c6e63a0e8 | /63/CH10/EX10.11/Exa10_11.sci | 084b8cb7084e735a5bb5c7f0ede7b7144f40205d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 252 | sci | Exa10_11.sci | //Determine the voltage attenuation provided by a 25 cm length of waveguide
a = 1;
m = 1;
vc = 3e+10;
f = 1e+9;
A = 25
L0 = 2;
lambda0 = (2*a)/m;
lambda = vc/f;
lambdaDB = 54.5*(A/L0);
disp(lambdaDB, 'Volatage attenuation is (in dB)') |
d0ea1dbfa9ffd7e1a8cf4c3928bd252869c5804a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH7/EX7.12/EX7_12.sce | 42b214239ba7fb684304257700682f8ad105408d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,384 | sce | EX7_12.sce |
//Example7.12 // to design an active band pass filter with lower cut-off frequency 20 KHz an upper 80 KHZ
clc;
clear;
close;
f = 100 ; // KHz the frequency of band pass filter
fL = 20 ; // KHz
fH = 80 ; // KHz
// the inverting terminal resistance R1=0.5*R2 and R4=0.25*R5
C1 = 0.001 ; // nF
C2 = 0.001 ; // nF
// the lower cut-off frequency of band pass filter is
// fL = 1/(2*%pi*R3*C1);
R3 = 1/(2*%pi*fL*C1);
disp('The resistance R3 Value is = '+string(R3)+' M ohm ');
// The upper cut-off frequency of band pass filter is
// fH = 1/(2*%pi*R6*C2);
R6 = 1/(2*%pi*fH*C2);
disp('The resistance R6 value is = '+string(R6)+' M ohm '); // Round Off Error
// the desire pass band gain of filter is defined as
R1 = 1 ; // M ohm we assume
//we define inverting terminal resistance R1=0.5*R2
R2 = 2 ; // M ohm
// then
R4 = 1 ; //M ohm
R5 = 4 ; // M ohm
Af = (1+(R2/R1))*(1+(R5/R4));
disp('The desire pass band gain of filter is = '+string(Af)+' ');
// the magnitude of gain of band pass filter is given as
A = Af*(f^2/(fL*fH))/((sqrt(1+(f/fL)^2))*(sqrt(1+(f/fH)^2)));
disp('The magnitude of gain of band pass filter is = '+string(A)+' '); // Round Off Error
//the phase angle of the filter
Angle = 2*atand(%inf)-atand(f/fL)-atand(f/fH);
disp('The phase angle of gain of band pass filter is = '+string(Angle)+' degree'); // Round Off Error
|
f4ecdd40279d42bf946d2975d3796408b117a033 | 3a789db551b4af95e2e9e0c5e88505a0ca96b6f9 | /LZW Encoding.sce | 68c0710f871a63ca69773ed40fbf741bfa8eb1a3 | [] | no_license | Sid-149/Data-Encryption | 4493eef04919f8499653722c015612ed19ad6dbf | e94f95c763711ff74646c564df955f44fe5eedf0 | refs/heads/main | 2023-01-03T01:23:03.612667 | 2020-10-29T05:47:41 | 2020-10-29T05:47:41 | 305,270,186 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,107 | sce | LZW Encoding.sce | clc;
clear all;
datain='wabba.wabba.wabba.woo.woo.woo.woo$'
lda=length(datain)
dict=['w','a','b','o','.']
ldi=size(dict,'c')
for i=1:ldi
dictnew(i)={dict(i)};
end
for i=1:lda
datasep(i)=part(datain,i)
end
p=datasep(1)//first symbol
s=p//current symbol
k=1;
j=1;
i=1;
m=0;
while datasep(i)~='$'
c=datasep(i+1)
if c~=$ then
comb=s+c
if strcmp(dict,comb)~=0 then
dict(j+ldi)=s+c
check=strcmp(dict,s)
for l=1:length(check)
if check(l)==0 then
tx(k)=l
k=k+1
break
end
end
s=c;
j=j+1;
i=i+1;
m=m+1;
else
s=s+c;
i=i+1;
end
else
check=strcmp(dict,s);
for l=1:length(check)
if check(l)==0 then
tx(k)=l;
k=k+1;
tx(k)=0
end
end
break;
end
end
disp(dict);
disp(tx);
|
d7d30370c27dd974fcebd6e3d76005657e21020a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH15/EX15.1/Ex15_1.sce | dcdb5d451beeb748f8271fa32f1352005cdc6247 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | sce | Ex15_1.sce | //Exa 15.1
clc;
clear all;
// Given data
Fh=2;// kHz
Af=2;// Pass band gain
// Solution
disp(" Let C1= 0.01 micro farads ");
C=0.01;//micro farads
R=1/(2*%pi*Fh*C);// k Ohms
printf(' The calculated value of R is %.3f K ohms. Nearest practical value for R1 is 8.2 k Ohms\n',R);
//Af=1+Rf/R1;
// As Af=2. So, Rf=R1
disp(" In this case , Rf=R1= 10 k Ohms is selected ");
|
cd476cc730fa95d88eb2f7c6087f956bdfa150ec | b55b3f4ecb80cc7d4e6ccad7124adeae711f42f7 | /Digital_communication/Lab_7/exp7.sce | 533408f509ce56866b2040346c6fa672c05360f7 | [] | no_license | shivamchopra99/Lab-Works | 9ada57e2093be3290be18ed21289e4bd6fc68df2 | 0dbb533ca502c2256089970acfd3420f43568801 | refs/heads/master | 2020-09-21T04:52:25.548472 | 2019-11-18T09:23:18 | 2019-11-18T09:23:18 | 224,683,152 | 1 | 0 | null | 2019-11-28T15:35:53 | 2019-11-28T15:35:52 | null | UTF-8 | Scilab | false | false | 725 | sce | exp7.sce | clc;
clear all;
fc1=input("Enter high carrier frequency:");
fc2=input("Enter low carrier frequency:");
fp=input("Enter no. of pulses:");
t=0:0.001:1;
c1=sin(2*3.14*fc1*t);
c2=sin(2*3.14*fc2*t);
m=(squarewave(2*3.14*fp*t)+1)*0.5;
for i=0:1000
if(i+1)==0
mm(i+1)=c2(i+1);
else
mm(i+1)=c1(i+1);
end
end
subplot(4,1,1);
plot2d(t,c1);
xlabel("time");
ylabel("amplitude");
title("modulating signal");
subplot(4,1,2);
plot2d(t,c1);
xlabel("time");
ylabel("amplitude");
title("high carrier frequency signal");
subplot(4,1,3);
plot2d(t,c2);
xlabel("time");
ylabel("amplitude");
title("low carrier frequency signal");
subplot(4,1,4);
plot2d(t,mm);
xlabel("time");
ylabel("amplitude");
title("FSK");
|
2fde8bd22e46c03ffba1a4e7211b5675d8f6b4ef | b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf | /TD2/Logistique/discretisationR.sce | 94b3ebcc34032c86899457fcb8b126ccbb49be5a | [] | 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 | 850 | sce | discretisationR.sce | clear;
clf;
a = 0.1; h = 0.1; // variables globales de population initiale et pas de temps
K=2; // variable globale de la formule de la vitesse
function f = logistique(x); // fonction qui calcule la vitesse d'accroissement
f = r * x .* (1 - x / K); // opérations vectorielles. x est un vecteur
endfunction
ndate = 0:h:40; // le vecteur des instants où on calcule la solution
rvect = linspace(0, 1, 11); // Vecteurs des différentes valeurs de r
x(1) = a; // Déclaration et initialisation de la population initiale
for i = 1:6; // Boucle qui dessine les courbes
r = rvect(i); // Initialisation de r
for n = 1:length(ndate) - 1; // Boucle qui calcul la population pour une valeur de r
x(n+1) = x(n) + h * logistique(x(n)); // Calcul de la population
end
plot2d(ndate, x, style = i); // Tracé de la trajectoire
end
|
48b347aa28a53d205745af9da026426feacc14e5 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set4/s_College_Physics(volume_2)_R._A._Serway_And_J._S._Faughn_2072.zip/College_Physics(volume_2)_R._A._Serway_And_J._S._Faughn_2072/CH16/EX16.1/EX16_1.sce | 5ff42ab9a2b21d69759e29bc65e58a35a891fac7 | [] | 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 | 147 | sce | EX16_1.sce | errcatch(-1,"stop");mode(2);//Example 16.1
//Given
v_bminusv_a=-12
d=0.3*10^-2//in m
E=-(v_bminusv_a)/d
disp(E,"The value of E in v/m=")
exit();
|
4779c8d824cf8735042218940ac4ab5bdc53bc91 | d7652d3d679bb8e1f53c74064125010952bd2d06 | /test/detType/With_fl1.tst | 59e83101e3aed5a064c379cd1e91fb8a9f96252a | [] | no_license | Raidar/LuaFAR-context | 986e532d0845c7106317b9fb1c95c9f88fcd2c88 | 53eb61b02d950a974e8fd2b1ac4eb4de793b02e2 | refs/heads/master | 2021-01-17T14:06:57.417869 | 2020-04-28T21:23:50 | 2020-04-28T21:23:50 | 2,812,750 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 56 | tst | With_fl1.tst | Special first line #1 test text
Some text
Other text
|
488d8f280eda62a6f0662c10c26422b892274059 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2840/CH11/EX11.2/ex11_2.sce | ae27493a2f462d33fc101c001a2fc778a9b3a0bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex11_2.sce | clc;
clear all;
e=1.6*1e-19;//charge of electron
ue=0.39;//electron mobility
up=0.19;//hole mobility
ni=2.4*1e19;//intrinsic carrier density
sigma=ni*e*(up+ue);
disp('ohm^-1*m^-1',sigma,'conductivity of intrinsic semiconductor=');
|
bd4b8bf050c950b4c5be2e9af7c09226c08c4263 | d03450e9645c09cb7389514ec5d4d8d9c06bdf4d | /Least-Squares Data Fitting/newton.sce | 55f899c2ace3deedb2966427e345d0ff86262c7f | [] | no_license | amiedemmel/Optimization-Projects | 29f3d11950c19f89aa2295d316888e4c6fa36ab4 | bc574f4311d6fc1534e7c4892dbadb52f5e4213f | refs/heads/master | 2021-01-01T05:47:41.682448 | 2015-05-08T15:56:59 | 2015-05-08T15:56:59 | 35,288,132 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 541 | sce | newton.sce | //Newton's Method
//Amie Demmel
//4/1/15
//model to be fitted contained in myfuncn.sci
exec myfuncn.sci;
disp('Newton Method: ')
maxiter=100;
tol=10^-6;
iter=0;
x=input('enter x vector: ');
t=input('time vector: ');
y=input('y vector: ');
[f,g,h]=myfuncn(x,t,y)
h0=h;
titl=[' iter' ' f(x)' ' df(x)/dx1' ' df(x)/dx2' 'norm(df(x)'];
disp(titl);
while((norm(g) > tol)&(iter < maxiter))
iter=iter+1;
p=-h\g;
x=x+p;
[f,g,h]=myfuncn(x,t,y);
n=[iter f g' norm(g)];
disp(n);
end
hm=h;
disp('Solution: ')
disp(x)
|
c788cdb1fba66a29c56a8d568c9a24dadc6373dd | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Measurements_And_Instrumentation_P._Sharma_876.zip/Electronic_Measurements_And_Instrumentation_P._Sharma_876/CH5/EX5.3/Ex5_3.sce | 9fb1848f2d1167d26f711f322a7f686f9cf76e6f | [] | 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 | 260 | sce | Ex5_3.sce | errcatch(-1,"stop");mode(2);//caption:Find equivalant voltage source of the ac current source
//Ex5.3
Is=1//current value(in A)
Zs=100//source impedance(in ohm)
Veq=Is*Zs
disp(Veq,'equivalant voltage source of the ac current source(in V)=')
exit();
|
9bbe48f613c9ee3d22c18310cb5c29fc533fe288 | 449d555969bfd7befe906877abab098c6e63a0e8 | /534/CH1/EX1.3/1_3_Theoretical_Problem.sce | 64bc95f581b85db7f0fd99ecbfb0d3471ba263d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | sce | 1_3_Theoretical_Problem.sce | clear;
clc;
printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 1.3 Page 18 \n')// Example 1.3
//Theoretical Problem
printf('\n The given example is theoretical and does not involve any numerical computation')
//End
|
631d07c7ab2119a344b5d1e34b55c424c6e26404 | 953cef8e16ff989ca373ddfc0f3f91d56fa4a5ef | /letraD.sce | 76b437b36a70b5cfc9fc7dda70519feb7a04323b | [] | no_license | anarutesc/STD_P2 | ceda2571ae8713ffc701447881fe9f3cb55c6416 | 100ec1213a9dbc71c64cb638db3d1432eb5fb0e4 | refs/heads/master | 2020-04-10T11:18:30.524541 | 2018-12-20T00:12:53 | 2018-12-20T00:12:53 | 160,989,402 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,410 | sce | letraD.sce | load('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\AnaRute.sod')
x_ana=x_a;
load('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\Italo.sod')
x_italo=x_a;
load('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\Lara.sod')
x_lara=x_a;
load('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Sinais_P2\Luiza.sod')
x_luiza=x_a;
exec('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Codigos_STD\STD_cod_lin_e_TDM\STD cod lin e TDM\amostragem_sinal.sce')
exec('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Codigos_STD\STD_cod_lin_e_TDM\STD cod lin e TDM\quantizacao_midrise.sce')
exec('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Codigos_STD\STD_cod_lin_e_TDM\STD cod lin e TDM\codificacao_pcm.sce')
exec('C:\Users\ana_r\Documents\UFRN\2018.2\STD\P2\Codigos_STD\STD_cod_lin_e_TDM\STD cod lin e TDM\plot_legivel.sce')
t=linspace(0,98281/264600,98281)
sinal_mensagem_ana = x_ana;
sinal_mensagem_italo = x_italo;
sinal_mensagem_lara = x_lara;
sinal_mensagem_luiza = x_luiza;
//amostragem do sinal mensagem de Ana:
sinal_amostrado_ana = amostragem_sinal(t,sinal_mensagem_ana,100/32200)'
sinal_discretizado_ana = quantizacao_midrise(sinal_amostrado_ana,floor(min(x_ana)),ceil(max(x_ana)),4)'
//amostragem do sinal mensagem de Italo:
sinal_amostrado_italo = amostragem_sinal(t,sinal_mensagem_italo,100/32200)'
sinal_discretizado_italo = quantizacao_midrise(sinal_amostrado_italo,floor(min(x_italo)),ceil(max(x_italo)),4)'
//amostragem do sinal mensagem de Lara:
sinal_amostrado_lara = amostragem_sinal(t,sinal_mensagem_lara,100/32200)'
sinal_discretizado_lara = quantizacao_midrise(sinal_amostrado_lara,floor(min(x_lara)),ceil(max(x_lara)),4)'
//amostragem do sinal mensagem de Luiza:
sinal_amostrado_luiza = amostragem_sinal(t,sinal_mensagem_luiza,100/32200)'
sinal_discretizado_luiza = quantizacao_midrise(sinal_amostrado_luiza,floor(min(x_luiza)),ceil(max(x_luiza)),4)'
//plot Sinal - plot Palavra - Ana Rute
//plot_legivel(t, [sinal_discretizado_ana; sinal_amostrado_ana; sinal_mensagem_ana],['Sinal Discretizado';'Sinal Amostrado'; 'Sinal Mensagem'],'Tempo','Amplitude',[0 98281/264600 floor(min(x_ana)) ceil(max(x_ana))],3,1)
plot_legivel(t, sinal_discretizado_ana,'Sinal Discretizado','Tempo','Amplitude',[0 98281/264600 floor(min(x_ana)) ceil(max(x_ana))],3,1)
palavra_pcm_ana = codificacao_pcm(sinal_discretizado_ana,floor(min(x_ana)),ceil(max(x_ana)),4);
plot_legivel(t,palavra_pcm_ana,['Bit 1';'Bit 2'; 'Bit 3'; 'Bit 4'],'Tempo','Amplitude',[0 98281/264600 0 1],3,2)
//plot Sinal - plot Palavra - Italo
//plot_legivel(t,[sinal_discretizado_italo; sinal_amostrado_italo; sinal_mensagem_italo],['Sinal Discretizado';'Sinal Amostrado'; 'Sinal Mensagem'],'Tempo','Amplitude',[0 98281/264600 floor(min(x_italo)) ceil(max(x_italo))],3,3)
plot_legivel(t,sinal_discretizado_italo,'Sinal Discretizado','Tempo','Amplitude',[0 98281/264600 floor(min(x_italo)) ceil(max(x_italo))],3,3)
palavra_pcm_italo = codificacao_pcm(sinal_discretizado_italo,floor(min(x_italo)),ceil(max(x_italo)),4);
plot_legivel(t,palavra_pcm_italo,['Bit 1';'Bit 2'; 'Bit 3'; 'Bit 4'],'Tempo','Amplitude',[0 98281/264600 0 1],3,4)
//plot Sinal - plot Palavra - Lara
//plot_legivel(t,[sinal_discretizado_lara; sinal_amostrado_lara; sinal_mensagem_lara],['Sinal Discretizado';'Sinal Amostrado'; 'Sinal Mensagem'],'Tempo','Amplitude',[0 98281/264600 floor(min(x_lara)) ceil(max(x_lara))],3,5)
plot_legivel(t,sinal_discretizado_lara,'Sinal Discretizado','Tempo','Amplitude',[0 98281/264600 floor(min(x_lara)) ceil(max(x_lara))],3,5)
palavra_pcm_lara = codificacao_pcm(sinal_discretizado_lara,floor(min(x_lara)),ceil(max(x_lara)),4);
plot_legivel(t,palavra_pcm_lara,['Bit 1';'Bit 2'; 'Bit 3'; 'Bit 4'],'Tempo','Amplitude',[0 98281/264600 0 1],3,6)
//plot Sinal - plot Palavra - Luiza
//plot_legivel(t,[sinal_discretizado_luiza; sinal_amostrado_luiza; sinal_mensagem_luiza],['Sinal Discretizado';'Sinal Amostrado'; 'Sinal Mensagem'],'Tempo','Amplitude',[0 98281/264600 floor(min(x_luiza)) ceil(max(x_luiza))],3,7)
plot_legivel(t,sinal_discretizado_luiza,'Sinal Discretizado','Tempo','Amplitude',[0 98281/264600 floor(min(x_luiza)) ceil(max(x_luiza))],3,7)
palavra_pcm_luiza = codificacao_pcm(sinal_discretizado_luiza,floor(min(x_luiza)),ceil(max(x_luiza)),4);
plot_legivel(t,palavra_pcm_luiza,['Bit 1';'Bit 2'; 'Bit 3'; 'Bit 4'],'Tempo','Amplitude',[0 98281/264600 0 1],3,8)
|
5e606ae3464948636e440ff9ab91f24506f47935 | 449d555969bfd7befe906877abab098c6e63a0e8 | /74/CH4/EX4.3/example3_sce.sce | f042357a71dfbf69b1aac6b9daf6e609d53117e4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example3_sce.sce | // chapter 4
// example 4.3
// page 194
Vp_p=5;//peak to peak volatage of sine wave
Vlt=-1.5;//lower threshold level
Vh=2;// hysteresis width
f=1000;
Vut=Vh-(-Vlt);
disp(Vut)
Vm=Vp_p/2;
disp(Vm)
//Vlt=Vm*sin(%pi+x)
x=36.87;// taking sin invers
T=1/f;
disp(T)
T1=(T*(180+x))/360;//T1 exist for angle 0 to (180+36.87)
disp(T1)
T2=T-T1;//t2 exist for angle 216.87 to 360
disp(T2) |
f122e1e77e8dc367a6407c69ceb06ee01c2fe8f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH8/EX8.10/Ex8_10.sce | aac1c7cf19e86c3b31ff9b90271e6145f0970030 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sce | Ex8_10.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 8 Power Amplifiers Pg no. 288
clear;
clc;
//Given Data
VCC=12;//collector supply voltage in volts
RL=220;//load resistance in ohms
//Solution
PL_max=(VCC/RL)^2*RL/2;//maximum load power in watts
Pin=VCC*VCC/RL;//power delivered to load in watts
e=PL_max/Pin;//efficiency of amplifier
printf("Efficiency of the amplifier η = %.f %%",e*100);
|
4d283d10ccd9dd828f9b00afdaabfe63e0253f1c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH19/EX19.11/19_11.sce | f2a03cc1e3d28cafeba85cf1f1022795d6350f09 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,080 | sce | 19_11.sce | //Example 19.11
//Finite Difference Method
//Page no. 670
clc;clear;close;
deff('y=f(x)','y=sin(%pi*x)')
deff('y=g(x)','y=0')
a=1;b=1;c=1;n=5;m=10;
h=a/n;k=b/m;r=c*k/h;
r1=r^2;r2=r1/2;s1=1-r1;s2=2*(1-r2)
printf('\n i ')
for i=1:n
printf('\t %i',i)
end
printf('\n-----------------------------------------------\nfi')
for i=1:n
f1(i)=f(h*(i-1))
printf('\t%.3f',f1(i))
end
printf('\ngi')
for i=1:n
g1(i)=g(h*(i-1))
printf('\t %g',g1(i))
end
printf('\n\n\n i / j --> ')
for i=1:m
printf('\t %i',i)
end
printf('\n-------------------------------------------------------------------------------------------------')
for j=1:m
for i=1:n
if i==1 | i==n then
u(i,j)=0;
elseif j==1
u(i,j)=f1(i)
elseif j==2
u(i,j)=s1*f1(i)+k*g1(i)+r2*(f1(i+1)+f1(i-1))
else
u(i,j)=s2*u(i,j-1)+r1*u(i-1,j-1)+u(i+1,j-1)-u(i,j-2)
end
end
end
for i=1:n
printf('\n %i\t',i)
for j=1:m
printf('\t%.3f',u(i,j))
end
end |
018e305210441db8859bd7e3b4a824f27ca776f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH3/EX3.4/4.sce | 6c275a32be1b53cf7e36e9753933c157456291c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 437 | sce | 4.sce | clc
m_w=2; //kg
t_w=25; //0C
p=5; //bar
x=0.9;
c_pw=4.18;
// at 5 bar; from steam tables
h_f=640.1; //kJ/kg
h_fg=2107.4; //kJ/kg
h=h_f+x*h_fg;
disp("Sensible heat associated with 1kg of water, Qw=")
Qw=c_pw*(t_w-0);
disp(Qw)
disp("kJ")
disp("Net quantity of heat to be supplies per kg of water, Q=")
Q=h-Qw;
disp(Q)
disp("kJ")
disp("Total amount of heat supplied, Q_total=")
Q_total=m_w*Q;
disp(Q_total)
disp("kJ") |
2c22b7c8a692b186370ea81a829f0a0e7dbb18cc | ac1f8441b0319b4a391cd5a959bd3bb7988edfa7 | /data/news2015/news2015/SplitsNEWS15/EnTa/enta.7.tst | 1c0efa3c0839f042fab1a9895ee4e169c0501fca | [
"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 | 63,431 | tst | enta.7.tst | a a c h a a r y a n a n d a n a a ஆ ச ா ர ் ய ா ன ா ன ் த ன ா
a a c h a a r y a s u t a a ஆ ச ா ர ் ய ா ச ு த ா
a a d i l ஆ த ி ல ்
a a d i t y n a n d a n ஆ த ி த ் ய ா ன ன ் த ன ்
a a g ஆ க ்
a a j i n k y a ஆ ஜ ி ங ் க ி ய ா
a a k h r i k h a t ஆ க ் ர ி க ா த ்
a a n m i l o s a j n a ஆ ன ் ம ி ல ோ ச ா ஜ ் ன ா
a a n a n d a m a y e e ஆ ன ந ் த ம ா ய ீ
a a n a n d e e ஆ ன ந ் த ி ன ீ
a a n g a n k i k a l i ஆ ன ் க ன ் க ி க ா ள ி
a a p a y e b a h a a r a a y e e ஆ ப ் ஆ ய ே ப ஹ ா ர ் ஆ ய ி
a a p k a p y a r ஆ ப ் க ா ப ி ய ா ர ்
a a q i b j a v e d அ க ி ப ் ஜ ா வ ெ த ்
a a q i l ஆ க ு ல ்
a a r y a p a a r ஆ ர ் ய ா ப ா ர ்
a a r a d h a n a ஆ ர ா த ண ா
a a r o p ஆ ர ோ ப ்
a a z i m ஆ ச ி ம ்
a b d u l g a f f a r அ ப ் த ு ல ் க ா ஃ ப ா ர ்
a b d u l m u a i d அ ப ் த ு ல ் ம ு வ ே த ்
a b d u l m u j i b அ ப ் த ு ல ் ம ு ஜ ி ப ்
a b d u l m u q i t அ ப ் த ு ல ் ம ு க ் க ி த ்
a b d u l q a d i r j i l a n i அ ப ் த ு ல ் க ா த ி ர ் ஜ ி ல ா ன ி
a b d u l w a h a b அ ப ் த ு ல ் வ ா ஹ ப ்
a b d u s s a b o o r அ ப ் த ு ஸ ் ச ா ப ூ ர ்
a b d u s s u b b o o h அ ப ் த ு ஸ ் ச ு ப ் ப ூ
a b h i j e e t அ ப ி ஜ ீ த ்
a b h y u d i t a அ ப ி ய ு த ி த ா
a b i d அ ப ி த ்
a c h i l l e l a u r o அ ச ் ச ி ல ் ல ா ர ோ
a c h i n t y a அ ச ் ச ி ன ் ட ி ய ா
a d h e e r a அ த ீ ர ா
a d i s h r e e ஆ த ி ஸ ் ர ீ
a d r i a n o அ ட ் ர ி ய ா ன ோ
a f e e f அ ஃ ப ீ ஃ ப ்
a f j a l அ ஃ ப ் ஜ ல ்
a g g i e அ க ் க ி
a g r e e m e n t அ க ் ர ீ ம ெ ண ் ட ்
a h l a a d i t அ ஹ ் ல ா த ி த ்
a h r a u r a r o a d அ ஹ ் ர வ ு ர ா ர ோ ட ்
a h s a a s அ ஹ ் ச ா ஸ ்
a j a y j a d e j a அ ஜ ய ் ஜ ட ே ஜ ா
a j i t a g a r k a r அ ஜ ி த ் அ க ர ் க ் க ர ்
a k a s h p a r i ஆ க ா ஷ ் ப ா ர ி
a k a s h a அ க ா ஷ ா
a k e l a அ க ே ல ா
a l a i a அ ல ை ய
a l a k a n a n d a a அ ல க ா ன ன ் த ா
a l a k n a n d a a அ ல க ் ன ன ் த ா
a l a m a t t i d a m அ ல ம ா ட ் ட ி ட ே ம ்
a l b a n அ ல ் ப ன ்
a l b e r t p i n t o k o g u s s a k y o n a t a h a i ஆ ல ் ப ெ ர ் ட ் ப ி ன ் ட ோ க ோ க ு ஸ ் ஸ ா க ி ய ோ ன ் அ த ா ஹ ை
a l b i o n அ ல ் ப ி ய ா ன ்
a l e x i a அ ல ெ க ் ஸ ி ய ா
a l f r e d அ ல ் ஃ ப ி ர ட ்
a l l a u d d i n k h a n அ ல ா வ ு த ி ன ் க ா ன ்
a l l e n அ ல ் ல ன ்
a l l i e அ ல ் ல ி
a m a n a a t h அ ம ா ன ா த ்
a m a r a s o m அ ம ர ் அ ஸ ோ ம ்
a m a r a r a j அ ம ர ் ர ா ஜ ்
a m a r e s h அ ம ர ி ஷ ்
a m b a l a c a n t o n m e n t அ ம ் ப ா ல ா க ண ் ட ோ ன ் ம ெ ண ் ட ்
a m e r i c a n a c a d e m y o f a r t s a n d l e t t e r s f i c t i o n a w a r d அ ம ெ ர ி க ் க ன ் அ க ா ட ம ி ஆ ஃ ப ் ஆ ர ் ட ் ஸ ் அ ண ் ட ் ல ெ ட ் ட ர ் ஸ ் ப ி க ் ஷ ன ் அ வ ா ர ் ட ்
a m e r i c a n e x p r e s s அ ம ெ ர ி க ் க ன ் எ க ் ஸ ் ப ி ர ஸ ்
a n a l a a அ ன ல ா
a n a n d m a t h ஆ ன ந ் த ் ம த ்
a n a n d i ஆ ன ந ் த ி
a n a u m அ ன வ ு ம ்
a n d r e ஆ ன ் ட ் ர ்
a n g a r a a j அ ங ் க ர ா ஜ ்
a n i k a a அ ன ி க ் க ா
a n k o l a அ ங ் க ோ ல ா
a n k u r அ ங ் க ு ர ்
a n k u r அ ன ் க ூ ர ்
a n n e l i e s e ஆ ன ் ன ல ி ய ே ச ி
a n o k h a p y a r அ ன ோ க ா ப ி ய ா ர ்
a n o k h i m o h a b b a t அ ன ் க ி ம ொ ஹ ப த ்
a n u y a a y i t a அ ன ு ய ா ய ி த ா
a p a l a அ ப ா ல ா
a p n a d e s h p a r a y e l o g அ ப ் ன ா த ே ஷ ் ப ர ா ய ே ல ோ க ்
a p n e p a r a y e அ ப ் ன ே ப ர ா ய ே
a p r a d h அ ப ் ர ா த ்
a r a b k a l a l அ ர ப ் க ா ல ா ல ்
a r a v i n d a d e s i l v a அ ர வ ி ந ் த ட ி ச ி ல ் வ ா
a r d a r a அ ர ் த ா ர ா
a r g h y a அ ர ் க ் ய ா
a r i s h t u t அ ர ி ஷ ் ட ு த ்
a r i s s a அ ர ி ஸ ் ஸ ா
a r i v u c h e l v a n அ ர ி வ ு ச ் ச ெ ல ் வ ன ்
a r v i n d m i l l s அ ர வ ி ந ் த ் ம ி ல ் ஸ ்
a s e e d அ ச ீ த ்
a s g h a r அ ஸ ் க ர ்
a s h a r a f அ ஷ ா ர ஃ ப ்
a s h l e y w o o d c o c k ஆ ஷ ் ல ி வ ு ட ் க ா க ்
a s i a n p a i n t s ஏ ச ி ய ன ் ப ெ ய ி ண ் ட ் ஸ ்
a s l e s h அ ஸ ் ல ே ஷ ்
a s l i n a q l i அ ஸ ் ல ி ந க ் ல ி
a s m a அ ஸ ் ம ா
a s u n c i o n அ ச ு ன ் ச ி ய ன ்
a t h e n a ஏ த ே ன ா
a t m a j அ த ் ம ஜ ்
a t o n e m e n t l u t h e r a n அ ட ோ ன ் ம ெ ண ் ட ் ல ு த ெ ர ன ்
a t u l y a அ ட ் ட ூ ல ் ய ா
a t y a c h a r அ த ் ய ச ா ர ்
a u g u s t u s அ க ஸ ் ட ஸ ்
a u r a t k i z i n d a g i ஔ ர த ் க ி ஜ ி ன ் த க ி
a u s t r a l i a n o p e n c h a m p i o n s ஆ ஸ ் ட ் ர ே ல ி ய ன ் ஓ ப ன ் ச ா ம ் ப ி ய ன ் ஸ ்
a v r i l அ வ ் ர ி ல ்
a w w a l n u m b e r அ வ ் வ ல ் ந ம ் ப ர ்
a x c a n p h a r m a ஆ க ் ஸ ன ் ப ா ர ் ம ா
a y e s h a ஆ ய ி ஷ ா
a y e s h a ஆ ய ீ ஷ ா
a z a r a a q அ ஸ ா ர ா க ்
a z a r a q அ ஸ ர ா க ்
a z r a q e e அ ஸ ் ர ா க ் க ி
b a a p b e t i ப ா ப ் ப ெ ட ி
b a b h n a n ப ா ப ் ன ா ன ்
b a b h r u ப ா ப ் ர ு
b a b r a l a ப ா ப ் ர ா ல ா
b a b u ப ா ப ு
b a b u l ப ா ப ு ல ்
b a d e g u l a m a l i k h a n ப ா ட ே க ு ல ா ம ் அ ல ி க ா ன ்
b a d l e k i a a g ப ட ் ல ே க ி ஆ க ்
b a e s y s t e m s ப ே ஸ ி ஸ ் ட ம ் ஸ ்
b a g u l a b h a g a t ப க ு ல ா ப க த ்
b a h a d u r d a k u ப ஹ த ு ர ் த ா க ு
b a h a d u r l u t e r a ப ஹ த ு ர ் ல ு த ே ர ா
b a j a r a n g a b a l e e ப ஜ ் ர ங ் ப ா ல ி
b a k h t a w a r ப க ் த ா வ ர ்
b a k r ப ா க ர ்
b a l a m o h a n ப ா ல ம ோ க ன ்
b a l a v a a n ப ல வ ா ன ்
b a l a w a l a ப ல ா வ ா ல ா
b a l k a n ப ா ல ் க ன ்
b a n k i m c h a n d r a ப ங ் க ி ம ் ச ந ் த ி ர ா
b a n m a n k h i j u n c t i o n ப ன ் ம ங ் க ி ஜ ங ் ஷ ன ்
b a n p h o o l ப ன ் ப ூ ல ்
b a n s u r i ப ன ் ஸ ு ர ி
b a r a b h u m ப ர ா ப ம ்
b a r i n d r a ப ா ர ி ந ் த ் ர ா
b a r k h a ப ர ் க ் க ா
b a r s a a t ப ர ் ஸ ா த ்
b a r u n ப ர ு ண ்
b a s h i r ப ஷ ீ ர ்
b a s r a ப ஸ ் ர ா
b a s t a ப ா ஸ ் ட ா
b a t e s ப ே ட ் ஸ ்
b e d e t t i ப ெ த ே ட ் ட ி
b e g u n a h q a i d i ப ெ க ு ன ா க ய ் த ி
b e l a ப ே ல ா
b e n n i n g t o n ப ெ ன ் ன ி ங ் ட ன ்
b e o h a r i ப ி ய ோ ஹ ர ி
b e r l i n ப ெ ர ் ல ி ன ்
b h a b h i ப ா ப ி
b h a c h a u ப ச ் ச ா வ ்
b h a g y a w a n ப ா க ் ய வ ா ன ்
b h a g y a w a t i ப ா க ் ய வ த ி
b h a i y a a l a a l ப ை ய ா ல ா ல ்
b h a l l a ப ல ் ல ா
b h a n d a p e ப ா ந ் த ப ே
b h a t t u ப ட ் ட ூ
b h a w a n i b h a t t a c h a r y a ப வ ா ன ி ப ட ் ட ா ச ் ச ா ர ் ய ா
b h i l w a r a ப ி ல ் வ ா ர ா
b h i n d a r ப ி ந ் த ர ்
b h o j o ப ோ ஜ ோ
b h o l i ப ோ ல ி
b h u d e v ப ூ த ே வ ்
b h u v a n e s w a r i h i n d u ப ு வ ன ே ஸ ் வ ர ி ஹ ி ண ் ட ு
b i d a n p u r ப ி ட ா ன ் ப ூ ர ்
b i j a p u r ப ி ஜ ப ூ ர ்
b i j a p u r ப ி ஜ ப ் ப ூ ர ்
b i j a p u r ப ி ஜ ா ப ூ ர ்
b i j r o t h a ப ி ஜ ் ர ோ த ் த ா
b i l p u r ப ி ல ் ப ூ ர ்
b i n m a a k e b h a c h c h e y ப ி ன ் ம ா க ே ப ச ் ச ே ய ்
b i n d i y a c h a m k e g i ப ி ந ் த ி ய ா ச ம ் க ே க ி
b i s h n u p u r ப ி ஷ ் ண ு ப ூ ர ்
b i s h r a m p u r ப ி ஷ ் ர ா ம ் ப ூ ர ்
b o b h o p e ப ா ப ் ஹ ோ ப ்
b o b p a c k w o o d ப ா ப ் ப ே க ் வ ு ட ்
b o d a s ப ோ த ா ஸ ்
b o l a r u m ப ொ ல ா ர ம ்
b o m b a y k a m a h a r a j a ப ா ம ் ப ே க ா ம ஹ ர ா ஜ ா
b o o r d h i - z a f f e r ப ூ ர ் த ி - ஸ ா ஃ ப ் ப ர ்
b o u r d i e u o k z ப ெ ள ட ி ய ூ ஓ க ் ஸ ்
b o u y g u e s ப ோ ய ் க ா ஸ ்
b r a h a m d e v ப ் ர ஹ ம ் த ே வ ்
b r a h m a b r a t a ப ் ர ம ் ம ப ் ர த ா
b r a h m a c h a r i ப ி ர ஹ ் ம ச ் ச ா ர ி
b r e n d o n b r a c e w e l l ப ி ர ெ ண ் ட ன ் ப ி ர ே ஸ ் வ ெ ல ்
b r u c e m e d a l ப ் ர ூ ஸ ் ம ெ ட ல ்
b u l l r i d i n g ப ு ல ் ர ை ட ி ங ்
b u s h r a ப ு ஷ ் ர ா
c a j a க ா ஜ ா
c a m p i n a s க ா ம ் ப ி ன ா ஸ ்
c a m p i o n s c h o o l , m u m b a i க ே ம ் ப ி ய ா ன ் ஸ ் க ூ ல ் , ம ு ம ் ப ை
c a n d i c e க ே ன ் ட ி ஸ ்
c a p e y o r k க ே ப ் ய ோ ர ் க ்
c a r l o w க ா ர ் ல ோ
c a r m e l c o n v e n t s c h o o l , c h a n d i g a r h க ா ர ் ம ெ ல ் க ா ன ் வ ெ ண ் ட ் ஸ ் க ூ ல ் , ச ண ் ட ி க ர ்
c a r r y g r a n t க ே ர ி க ி ர ா ண ் ட ்
c a t e r p i l l a r க ே ட ் ட ர ் ப ி ல ் ல ர ்
c a t h e r i n e t u r n e r க ே த ் த ர ி ன ் ட ர ் ன ர ்
c a t h y b e t t s க ே த ் த ி ப ெ ட ் ஸ ்
c a w s a n d f o r t க ா ச ா ண ் ட ் ஃ ப ் ப ோ ர ் ட ்
c e c e ச ெ ச ி
c e n d a n t ச ெ ன ் ட ன ் ட ்
c e n t r a l b a n k ச ெ ன ் ட ் ர ல ் ப ே ங ் க ்
c e r e l i a ச ெ ர ி ல ி ய ா
c e s a r a w a r d ச ீ ச ர ் அ வ ா ர ் ட ்
c h a d o t a r ச ட ோ த ் த ா ர ்
c h a k r a v y u h ச க ் ர வ ு ய ு க ்
c h a k s h u ச க ் ஷ ூ
c h a l i s c h o r ச ா ல ி ஸ ் ச ோ ர ்
c h a l t h a n ச ல ் த ா ன ்
c h a m b a l k i r a n i ச ம ் ப ல ் க ி ர ா ண ி
c h a n d i s a r ச ண ் ட ி ச ா ர ்
c h a n d n i r a n i ச ா ந ் த ி ன ி ர ா ண ி
c h a n d r a r a j ச ந ் த ி ர ர ா ஜ ்
c h a n d r i k a ச ந ் த ி ர க ா
c h a n k a n a b b a y ச ங ் க ந ா ப ் ப ே
c h a r d a r v e s h ச ா ர ் த ர ் வ ே ஷ ்
c h a r d i l c h a r r a a h e n ச ா ர ் த ி ல ் ச ர ் ர ா ஹ ே ன ்
c h a r l a ச ா ர ் ல ா
c h a r l e s c o v e n t r y ச ா ர ் ல ஸ ் க ொ வ ெ ண ் ட ் ர ி
c h a r s ச ா ர ் ஸ ்
c h a u r e b a z a r ச ௌ ர ே ப ஜ ா ர ்
c h a w l a ச ா வ ் ல ா
c h e l s a ச ெ ல ் ஸ ா
c h e n n a i e g m o r e ச ெ ன ் ன ை எ க ் ம ோ ர ்
c h e r y l ச ே ர ி ல ்
c h h a b r a g u g o r ச ப ் ர ா க ு க ோ ர ்
c h h o t i b a h u ச ோ ட ் ட ி ப ா ஹ ு
c h h o t i s i b a a t ச ோ ட ் ட ி ச ி ப ா த ்
c h i k b a l a p u r ச ி க ் ப ல ் ப ூ ர ்
c h i k o d i r o a d ச ி ட ோ க ் க ி ர ோ ட ்
c h i n a m o b i l e c o m m u n i c a t i o n s ச ீ ன ா ம ொ ப ை ல ் க ம ் ய ூ ன ி க ் க ே ஷ ன ் ஸ ்
c h i n a n a t i o n a l p e t r o l e u m ச ீ ன ா ந ே ஷ ன ல ் ப ெ ட ் ர ோ ல ி ய ம ்
c h i n c h l i ச ி ன ் ஜ ் ல ி
c h i t o s e ச ி ட ் ட ோ ச ெ
c h o l a m a n d a l a m ச ோ ழ ம ண ் ட ல ம ்
c h o r i c h o r i ச ோ ர ி ச ோ ர ி
c h r i s b r o a d க ி ர ி ஸ ் ப ி ர ா ட ்
c h r i s n e v i n க ி ர ி ஸ ் ந ெ வ ி ன ்
c h r i s r e a d க ி ர ி ஸ ் ர ீ ட ்
c h r i s t i a n i t y க ி ர ி ஸ ் ட ி ய ா ன ி ட ் ட ி
c i c i l y ச ி ஸ ் ஸ ி
c l e g g க ி ள ெ க ்
c l e m e n c e a u க ி ள ி ம ெ ன ் ச ி ய ா
c l e m e n c e a u க ி ள ெ ம ெ ன ் ச ி ய ா
c o b r a g i r l க ோ ப ் ர ா க ே ர ் ள ்
c o l i n p o w e l l க ா ல ி ன ் ப ா வ ல ்
c o n n l e y க ோ ன ் ல ி
c o n t a i n e r க ண ் ட ெ ய ் ன ர ்
c o p e n h a g e n க ோ ப ன ் ஹ ே க ன ்
c o p e n h a g e n க ோ ப ெ ன ் ஹ ா க ன ்
c o r e l c o r p o r a t i o n க ோ ர ல ் க ா ர ் ப ் ப ர ே ஷ ன ்
c o r i n t h i a க ோ ர ி ன ் த ி ய ா
c o x p l a t e க ா க ் ஸ ் ப ் ள ே ட ்
c r i c k e t w o r l d c u p க ி ர ி க ் க ெ ட ் வ ோ ர ் ல ் ட ் க ப ்
c r o s s o f v a l o u r க ் ர ா ஸ ் ஆ ஃ ப ் வ ே ல ர ்
d a a m l e த ா ம ் ல ே
d a b i l p u r த ப ி ல ் ப ூ ர ்
d a c h i g a m ட ா ச ் ச ி க ா ம ்
d a e g u n a t i o n a l m u s e u m ட ா ய ி க ு ந ே ஷ ன ல ் ம ி ய ூ ஸ ி ய ம ்
d a i i c h i m u t u a l l i f e i n s u r a n c e ட ை இ ச ் ச ி ம ி ய ூ ச ் ச ு வ ல ் இ ன ் ஷ ூ ர ன ் ஸ ்
d a l i l a ட ல ி ல ா
d a m a n a n d d e e v த ா ம ன ் த ி ய ோ
d a n n i e l l ட ே ன ி ய ல ்
d a n n y m o r r i s o n ட ா ன ி ம ோ ர ி ஸ ன ்
d a r a k h s h a a n த ர க ் ஷ ன ்
d a r e n g a n g a ட ே ர ன ் க ங ் க ா
d a r l e n e ட ா ர ் ல ீ ன ்
d a u r a m m a d h p u r a த ௌ ர ம ் ம த ் ப ூ ர ா
d a v e r i c h a r d s o n ட ே வ ் ர ி ச ் ச ர ் ட ் ச ன ்
d a v i d g o w e r ட ே வ ி ட ் க ோ வ ெ ர ்
d a v i d s m i t h ட ே வ ி ட ் ஸ ் ம ி த ்
d a v i d w i l l i a m s ட ே வ ி ட ் வ ி ல ் ல ி ய ம ் ஸ ்
d a y l e h a d l e e ட ே ல ் ஹ ா ட ் ல ீ
d e a n n e ட ீ ய ன ே
d e e ட ீ
d e e p i k a த ீ ப ி க ா
d e e p i k a த ீ ப ி க ் க ா
d e r e x ட ெ ர க ் ஸ ்
d e s m o n d h a y n e s ட ெ ஸ ் ம ண ் ட ் ஹ ெ ய ் ன ் ஸ ்
d e v a j y o t i த ே வ ஜ ோ த ி
d e v a s h e e s h த ே வ ஷ ீ ஷ ்
d e v a s t h a l i த ே வ ஸ ் த ல ி
d e v e n _ d r த ே வ ே ந ் த ர ்
d e w a l d p r e t o r i u s ட ெ வ ா ல ் ட ் ப ் ர ெ ட ோ ர ி ய ஸ ்
d h a m t a r i த ம ் த ா ர ி
d h a m t a r i த ா ம ் த ா ர ி
d h a r m a d h i k a r i த ர ் ம த ி க ா ர ி
d h a r m e n d u த ர ் ம ே ந ் த ் ர ு
d h a r n a o d a த ர ் ன ோ ட ா
d h a r u n a த ர ு ண ா
d h a w a l த வ ா ல ்
d h e e n a த ீ ன ா
d h i r e n d r a த ி ர ே ந ் த ி ர ா
d h o b l e த ோ ப ் ல ே
d i b a n g v a l l e y ட ி ப ங ் வ ா ல ி
d i g h w a r a த ி க ் வ ா ர ா
d i l d a a r த ி ல ் த ர ்
d i n d a h a d e த ி ன ் த ஹ ா த ே
d i q r a h த ி க ் ர ா
d i x i e ட ி க ் ஸ ி
d i x o n ட ி க ் ச ன ்
d i y a த ி ய ா
d o b a h a d u r த ோ ப ஹ த ு ர ்
d o d o o n i c h a r த ோ த ூ ன ி ச ர ்
d o d o s t த ோ த ோ ஸ ் த ்
d o k h i l a d i த ோ க ி ல ா ட ி
d o u s t a a d த ோ உ ஸ ் த ா த ்
d o b b e l a a r ப ா ப ் ல ா ர ்
d o c t o r s h a i t a n ட ா க ் ட ர ் ஷ ை த ா ன ்
d o m i n g a r h த ோ ம ி ங ் க ா ர ்
d o n a l d t r u m p ட ொ ன ா ல ் ட ் ட ் ர ம ் ப ்
d o o d h k a k a r z த ூ த ் க ா க ர ் ஸ ்
d o o r d e s h த ூ ர ் த ே ஷ ்
d u d d h i n a g a r த ு ட ் ட ி ந க ர ்
d u m d u m c a n t o n m e n t ட ம ் ட ம ் க ண ் ட ோ ன ் ம ெ ண ் ட ்
d u m h a l த ு ம ் ஹ ா ல ்
d u m r a o n த ு ம ் ர ா வ ு ன ்
d u n g a r p u r த ங ் க ர ் ப ூ ர ்
d u n g a r p u r த ங ் க ா ர ் ப ூ ர ்
d u n g a r p u r த ு ங ் க ர ் ப ூ ர ்
d u n g a r p u r த ு ங ் க ா ர ் ப ூ ர ்
d u n i y a த ு ன ி ய ா
d u n k e r q u e ட ன ் க ர ் க ி ய ூ
d u p a g e ட ூ ப ே ஜ ்
d w i j e s h த ் வ ி ஜ ே ஷ ்
e a s t m a n k o d a k ஈ ஸ ் ட ் ம ே ன ் க ோ ட க ்
e d g a r c a s e y எ ட ் க ர ் க ே ஸ ி
e g g b u c k l a n d k e e p எ ஃ க ் ப க ் ல ா ண ் ட ் க ீ ப ்
e i c h e r ஐ ச ் ச ர ்
e k b a a r c h a l e a a o ஏ க ் ப ா ர ் ச ா ல ே ஆ வ ோ
e k c h a d a r m a i l i s i ஏ க ் ச த ர ் ம ய ி ல ி ச ி
e k k h i l a r i b a w a n p a t t e y ஏ க ் ப ி ல ா ர ி ப வ ன ் ப ட ் ட ே
e k m a i n a u r e k t u ஏ க ் ம ெ ய ி ன ் ஔ ர ் ஏ க ் த ு
e k a n g a r s a r a i எ க ் க ா ங ் க ர ் ச ர ா ய ்
e l i t a எ ல ி ட ் ட ா
e l i z a b e t h t a i l o r எ ல ி ச ப த ் ட ெ ய ் ல ர ்
e l v i s p r e s l e y எ ல ் வ ி ஸ ் ப ் ர ெ ஸ ் ல ி
e m e l e எ ம ெ ல ்
e r i e ஈ ர ி
e r n i e எ ர ் ன ி
e s s a r s h i p p i n g எ ஸ ் ஸ ா ர ் ஷ ி ப ் ப ி ங ்
e t a l a n d e y e n n e n g a எ ட ா ல ன ் ட ி எ ன ் ன ே ங ் க ா
e u r i d i c e இ ய ு ர ி த ி ஸ ்
e u r o b a s e l m u l h o u s e f r e i b u r g ய ூ ர ோ ப ே ச ல ் ம ு ல ் ஹ வ ு ஸ ் ப ் ர ெ ய ் ப ர ் க ்
e x c a l i b u r எ க ் ஸ ் க ா ல ி ப ர ்
f a k h r a b a d ஃ ப க ் ர ா ப ா த ்
f a k h r u d d i n i r a q i ஃ ப ் ப க ் ர ு த ் த ீ ன ் ஈ ர ா க ் க ி
f a l g u n ஃ ப ல ் க ு ன ்
f a r i d a b a d ஃ ப ர ி த ா ப ா த ்
f a r i d a b a d ஃ ப ர ீ த ா ப ா த ்
f a r i d a b a d ப ர ி த ா ப ா த ்
f a r i d a b a d ப ர ீ த ா ப ா த ்
f a t e h a b a d j u n c t i o n ஃ ப த ே ஹ ா ப ா த ் ஜ ங ் ஷ ன ்
f a t h o m f i v e ஃ ப ா த ோ ம ் ஃ ப ை வ ்
f a t w a ஃ ப ட ் வ ா
f a y y a d h ஃ ப ை ய த ்
f e n c i n g ஃ ப ெ ன ் ச ி ங ்
f e r n ஃ ப ெ ர ் ன ்
f i d e l ஃ ப ி ட ல ்
f i l d o n n a n v i e w ஃ ப ி ல ் ட ோ ன ன ் வ ி ய ூ
f i n a n c i a l e x p r e s s ஃ ப ் ப ி ன ா ன ் ஷ ி ய ல ் எ க ் ஸ ் ப ி ர ஸ ்
f i p p l e ஃ ப ி ப ் ப ி ல ்
f l a m e l t e c h n o l o g i e s ப ி ள ே ம ல ் ட ெ க ் ன ா ல ஜ ீ ஸ ்
f o r t c a l g a r y ஃ ப ் ப ோ ர ் ட ் க ா ல ் க ா ர ி
f o r t p o p h a m ஃ ப ் ப ோ ர ் ட ் ப ா ப ் ப ா ம ்
f o r t r e v e l i n ஃ ப ் ப ோ ர ் ட ் ர ெ வ ே ல ி ன ்
f o r t r i c a s o l i ஃ ப ் ப ோ ர ் ட ் ர ி க ா ஸ ோ ல ி
f o r t t o t t e n ஃ ப ் ப ோ ர ் ட ் ட ா ட ் ட ெ ன ்
f o r t t o w n s e n d ஃ ப ் ப ோ ர ் ட ் ட வ ு ன ் ச ெ ன ் ட ்
f o r t v i c t o r i a ஃ ப ் ப ோ ர ் ட ் வ ி க ் ட ோ ர ி ய ா
f o r t w e l l i n g t o n ஃ ப ் ப ோ ர ் ட ் வ ெ ல ் ல ி ங ் ட ன ்
f o r t a l e z a d a g u i a ஃ ப ் ப ோ ர ் ட ா ல ெ ஸ ா ட ா க ி ய ா
f r a n k s i n a t r a ஃ ப ் ர ா ங ் க ் ச ி ன ா த ் ர ா
f r i c k c o l l e c t i o n ஃ ப ் ப ி ர ி க ் க ல ெ க ் ஷ ன ்
f r i t z i ஃ ப ் ர ி ட ் ஸ ி
f u a d ஃ ப ா ட ்
f y n n ஃ ப ி ன ்
g a i a u r g a u r i க ய ் ஔ ர ் க ௌ ர ி
g a j a r u p a க ஜ ா ர ூ ப ா
g a j a v a a n க ஜ ா வ ா ன ்
g a l a t e a க ே ல ா ட ி ய ா
g a n g a t e r a p a n i a m r i t க ங ் க ா த ே ர ா ப ா ண ி அ ம ் ர ி த ்
g a n g r a r க ங ் ர ா ர ்
g a r d e n i a க ா ர ் ட ் ன ீ ய ா
g a r d n e r க ா ர ் ட ் ன ர ்
g a u r i k க ெ ள ர ி க ்
g a y a t r i m a h i m a க ா ய த ் ர ி ம ஹ ி ம ா
g e m m a ஜ ெ ம ் ம ா
g e o r g e c a r l i n ஜ ா ர ் ஜ ் க ா ர ் ல ி ன ்
g e r a l d p e c k o v e r ஜ ெ ர ா ல ் ட ் ப ெ க ் க ோ வ ர ்
g h a i க ா ய ்
g h a r o d a க ா ர ோ ட ா
g i o l l a க ி ய ோ ல ா
g i r i k க ி ர ி க ்
g o b i க ோ ப ி
g o g i க ோ க ி
g o g i a க ோ க ி ய ா
g o h a r க ோ ஹ ர ்
g o k a r n a க ோ க ர ் ண
g o l a g h a t க ோ ல ா க ா ட ்
g o l d m e d a l க ோ ல ் ட ் ம ெ ட ல ்
g o l d i e க ோ ல ் ட ீ
g o p i c h a n d க ோ ப ி ச ந ் த ்
g r a h a m g o o c h க ி ர ா ஹ ா ம ் க ூ ச ்
g r a n i t e க ி ர ா ன ை ட ்
g r e g க ி ர ெ க ்
g r e g r i t c h i e க ி ர ெ க ் ர ி ட ் ச ் ச ீ
g r i m e s க ி ர ி ம ் ஸ ்
g u d d i க ு த ் த ி
g u g l a n i க ு க ் ல ா ன ி
g u i n e a க ி ன ி ய ா
g u j r a l க ு ஜ ் ர ா ல ்
g u l b a r g a க ு ல ் ப ர ் க ா
g u n e r u b a m o r i க ு ண ே ர ு ப ம ோ ர ி
g u r b a k s h க ு ர ் ப க ் ஷ ்
g u r j i t க ு ர ் ஜ ி த ்
g u r l a க ு ர ் ல ா
g u r u d w a r a d h o b a r i s a h i b க ு ர ு த ் வ ா ர ா த ோ ப ர ி ச ா ஹ ி ப ்
g u r u d w a r a g u r s a g a r p r a k a s h க ு ர ு த ் வ ா ர ா க ு ர ் ச ா க ர ் ப ் ர க ா ஷ ்
g u r u d w a r a g u r u k e w a d a l i க ு ர ு த ் வ ா ர ா க ு ர ு க ே வ ட ா ல ி
g u r u d w a r a m a t a g u j r i j i க ு ர ு த ் வ ா ர ா ம ா த ா க ு ஜ ் ர ி ஜ ீ
h a l w a n i ஹ ல ் வ ா ன ி
h a m a r i k i s m a t ஹ ம ா ர ி க ி ஸ ் ம த ்
h a m e e m ஹ ம ீ ம ்
h a n d b a l l ஹ ே ண ் ட ் ப ா ல ்
h a n s t e z a k h m ஹ ன ் ஸ ் ட ே ஸ க ம ்
h a r e k a n c h k i c h u r i y a n ஹ ர ே க ன ் ச ் க ி ச ு ர ி ய ா ன ்
h a r e n _ d r ஹ ர ே ந ் த ர ்
h a r m o n y b a p t i s t ஹ ா ர ் ம ோ ன ி ப ே ப ் ட ி ஸ ் ட ்
h a s h i r ஹ ஷ ி ர ்
h a v e l l s i n d i a ஹ ா வ ெ ல ் ஸ ் இ ந ் த ி ய ா
h e e r a a ஹ ீ ர ா
h e r s e y ஹ ெ ர ் ச ி
h e r t o g h e n d r i k ஹ ெ ர ் ட ா க ் ஹ ெ ன ் ட ் ர ி க ்
h i c k o r y s t r e e t p r e s b y t e r i a n ஹ ி க ் க ர ி ஸ ் ட ி ர ீ ட ் ப ி ர ெ ஸ ் ப ை ட ி ர ி ய ன ்
h i d a ஹ ி ட ா
h i n d u s t a n s t e e l c o n s t r u c t i o n ஹ ி ந ் த ு ஸ ் த ா ன ் ஸ ் ட ீ ல ் க ன ் ஸ ் ட ் ர க ் ஷ ன ்
h i n d u s t a n z i n c ஹ ி ந ் த ு ஸ ் த ா ன ் ஸ ி ங ் க ்
h o l y t r a n s f i g u r a t i o n ஹ ோ ல ி ட ி ர ா ன ் ஸ ் ஃ ப ி க ர ே ஷ ன ்
h u b a a b ஹ ு ப ா ப ்
h u m d i w a n e ஹ ம ் த ி வ ா ன ே
h u m j o l i ஹ ம ் ஜ ோ ல ி
h u n t s v i l l e c h r i s t i a n ஹ ண ் ட ் ஸ ் வ ி ல ் ல ே க ி ற ி ஸ ் ட ி ய ன ்
h u s a m ஹ ு ச ம ்
h u s n k a c h o r ஹ ஸ ன ் க ா ச ோ ர ்
h y d e r a b a d p u b l i c s c h o o l ஹ ை த ெ ர ா ப ா த ் ப ப ் ள ி க ் ஸ ் க ூ ல ்
i ^ j e e n i y a r இ ஞ ் ச ீ ன ி ய ர ்
i a n ஐ ய ன ்
i b t i s a m இ ப ் ட ி ச ா ம ்
i g n a t i u s இ க ் ன ே ஷ ி ய ஸ ்
i g u a z u இ க ு வ ா ச ு
i n a a m இ ன ா ம ்
i n d o r a m a இ ண ் ட ோ ர ா ம ா
i n d r a j a இ ந ் த ி ர ஜ ா
i n d r a n u j இ ந ் த ி ர ா ன ு ஜ ்
i n d r a p r a s t h a இ ந ் த ் ர ப ் ர ஸ ் த ா
i n d r a v i s h n u இ ந ் த ி ர ா வ ி ஷ ் ண ு
i n g e b o r g b a c h m a n n p r i z e இ ங ் க ி ப ோ ர ் க ் ப ே க ் ம ே ன ் ப ் ர ை ஸ ்
i n s a a n i y a t இ ன ் ச ா ன ி ய த ்
i n t l b u s i n e s s m a c h i n e s இ ன ் ட ல ் ப ி ஸ ி ன ஸ ் ம ெ ஷ ி ன ் ஸ ்
i s a b e l l e இ ச ா ப ெ ல ்
i t t e f a q இ ட ் ட ஃ ப க ்
i v a n h o e e n e r g y இ வ ன ் ஹ ோ எ ன ர ் ஜ ி
j a a l ஜ ா ல ்
j a a m d a r ஜ ா ம ் த ர ்
j a a n ஜ ா ன ்
j a c i n d a ஜ ெ ச ி ந ் த ா
j a c k i e ஜ ா க ் க ி
j a c o b v a n h e e m s k e r c k ஜ ே க ் க ப ் வ ா ன ் ஹ ீ ம ் ஸ ் க ெ ர ் க ்
j a c q u e s r u d o l p h ஜ ா க ் ஸ ் ர ு ட ா ல ் ஃ ப ்
j a d u m a h a l ஜ ா ட ு ம ஹ ல ்
j a g a d a n b a a ஜ க த ா ன ் ப ா
j a g t a p ஜ க ் த ப ்
j a h a n g i r a l a m t a l u k d a r ஜ ஹ ா ங ் க ி ர ் அ ல ா ம ் ட ா ல ு க ் ட ர ்
j a i k a r o l i m a a ஜ ெ ய ் க ர ோ ல ி ம ா
j a i s u d h a ஜ ெ ய ் ச ு த ா
j a j j ஜ ா ஜ ்
j a m a l ஜ ம ா ல ்
j a m e s c a g n e y ஜ ே ம ் ஸ ் க ே க ் ன ி
j a m u n a ஜ ம ு ன ா
j a w a n m a r d ஜ வ ா ன ் ம ர ் த ்
j a y a s i n h ஜ ெ ய ச ி ங ்
j e c y j a c k s o n ஜ ெ ச ி ஜ ா க ் ச ன ்
j e e v a n e k s a n g h u r s h ஜ ீ வ ன ் ஏ க ் ச ங ் க ர ் ஷ ்
j h a b b a r ஜ ா ப ் ப ர ்
j h a n j h a r ஜ ஞ ் ச ா ர ்
j h o o m u t h a a k a a s h ஜ ூ ம ் உ த ா ஆ க ா ஷ ்
j i m c a r t e r ஜ ி ம ் க ா ர ் ட ர ்
j i m u t a ஜ ி ம ு த ா
j o d y ஜ ோ ட ி
j o g g i n g ஜ ா க ் க ி ங ்
j o g i n d r a ஜ ோ க ி ந ் த ் ர ா
j o h a n s t r a u s b a t c h ஜ ோ ஹ ன ் ஸ ் ட ் ர ா ஸ ் ப ே ட ் ச ்
j o h n a u b u c h o n f r e e d o m ஜ ா ன ் ஆ ப ு ச ் ச ோ ன ் ஃ ப ் ர ீ ட ம ்
j o h n b r a c e w e l l ஜ ா ன ் ப ி ர ே ஸ ் வ ெ ல ்
j o h n m u i r ஜ ா ன ் ம ு ய ர ்
j o h n t h e b a p t i s t ஜ ா ன ் த ி ப ா ப ் ட ி ஸ ் ட ்
j u d s o n ஜ ூ ட ் ஸ ன ்
j u l i u s ஜ ூ ல ி ய ஸ ்
k a b u l க ா ப ு ல ்
k a b u l i k h a n க ப ு ல ி க ா ன ்
k a b z a a க ப ் ச ா
k a d u t h u r u t h i க ா ட ு த ு ர ு த ் த ி
k a f a n க ஃ ப ன ்
k a h a n i e k c h o r k i க ஹ ா ன ி ஏ க ் ச ோ ர ் க ி
k a h i n a a r k a h i n p a a r க ஹ ி ன ் ஆ ர ் க ஹ ி ன ் ப ா ர ்
k a i s e k a h o o n க ை ச ே க ஹ ூ ன ்
k a l i n j a r க ல ி ங ் க ா ர ்
k a m a k s h i க ா ம ா க ் க ் ஷ ி
k a m a k s h i க ா ம ா க ் ஷ ி
k a m i l i a க ா ம ி ல ி ய ா
k a m i n i க ா ம ி ன ி
k a m l a க ம ் ல ா
k a n a n b a l a க ா ன ா ன ் ப ா ல ா
k a n c h a u r h e e r a க ன ் ச ் ஔ ர ் ஹ ீ ர ா
k a n c h a n க ா ஞ ் ச ன ்
k a n c h a n க ா ன ் ச ன ்
k a p e e ^ d r க ப ீ த ் ர ்
k a r a m g a t i க ர ம ் க ட ி
k a r i b a d a m க ர ி ப ா ட ே ம ்
k a r i k க ா ர ி க ்
k a r o u l i க ர வ ் ள ி
k a r u n a m a y க ர ு ண ா ம ா ய ்
k a s a l க ச ல ்
k a s h i s h க ா ச ி ஷ ்
k a t i l o n k a k a t i l க த ி ல ோ ன ் க ா க த ி ல ்
k a v e r i க ா வ ே ர ி
k e e n a க ீ ண ா
k e n n e t h க ெ ன ் ன த ்
k e p h a r t u n i t e d m e t h o d i s t க ெ ப ர ் ட ் ய ு ன ை ட ் ட ெ ட ் ம ெ த ோ ட ி ஸ ் ட ்
k h a l d u n க ா ல ் த ு ன ்
k h a r a k h o t a க ர க ோ த ா
k h a r t o u m க ர ் த வ ு ம ்
k h a t t k a r க ா ட ் க ர ்
k h u d a k a s a m க ு த ா க ா ஸ ம ்
k h u f i a m a h a l க ு ஃ ப ் ப ி ய ா ம ஹ ா ல ்
k i a n a க ி ய ா ன ா
k i e v க ி ய ே வ ்
k i n g f a i s a l f o u n d a t i o n p r i z e க ி ங ் ஃ ப ை ச ல ் ஃ ப வ ு ண ் ட ே ஷ ன ் ப ் ர ை ஸ ்
k i s l i y e க ி ஸ ் ல ி ய ே
k i s h o r e க ி ஷ ோ ர ்
k i t n e p a a s k i t n e d o o r க ி த ் ன ெ ப ா ஸ ் க ி த ் ன ெ த ூ ர ்
k o c h h a d க ோ ச ் ச ா த ்
k o p r a n க ோ ப ் ர ா ன ்
k r e b s b i o c h e m க ் ர ெ ப ் ஸ ் ப ய ோ க ெ ம ்
k s h a n i k a ஷ ா ன ி க ா
k u l d e e p a k க ு ல ் த ீ ப ்
k u l v a d h u க ு ல ் வ ா த ு
k u m u d i n i க ு ம ு த ி ன ி
k y l i a க ை ல ி ய ா
k y u s h u e l e c t r i c p o w e r க ் ய ூ ஷ ூ எ ல க ் ட ி ர ி க ் ப வ ர ்
l a m a r t i n i e r e c o l l e g e ல ா ம ா ர ் ட ் ட ி ன ி ய ர ் க ா ல ே ஜ ்
l a a k s h a a ல ா க ் ஷ ா
l a d a a k u ல ா ட ா க ு
l a g u n a s d e c h a c a c h u a l a g u n a s d e m o n t e b e l l o ல க ு ன ா ஸ ் ட ீ ச ா ச ் ச ா ச ு வ ா ல க ு ன ா ஸ ் ட ீ ம ா ண ் ட ே ப ெ ல ் ல ோ
l a j w a n t i ல ஜ ் வ ந ் த ி
l a j w a n t i ல ா ஜ ் வ ா ன ் த ி
l a k k h e w a l i ல ா க ் க ெ வ ா ல ி
l a l d u p a t t a ல ா ல ் த ு ப ் ப ட ் ட ா
l a n c a s t e r ல ா ன ் க ா ஸ ் ட ர ்
l a n g s t o n e r e d o u b t ல ா ங ் ஸ ் ட ோ ன ் ர ீ ட வ ு ட ்
l a q e e t ல க ி த ்
l a w a n d a ல வ ா ண ் ட ா
l e b a n o n ல ெ ப ன ா ன ்
l e l ல ெ ல ்
l e o p o l d ல ி ய ோ ப ோ ல ் ட ்
l i l a c ல ி ல க ்
l i l k a ல ி ல ் க ா
l i l l i a n ல ி ல ி ய ன ்
l i m a z a h ல ி ம ஸ ா
l i t a n ல ி ட ா ன ்
l l o y d b r i d g e s ல ா ய ் ட ் ப ் ர ி ட ் ஜ ஸ ்
l o g i t e c h i n t e r n a t i o n a l ல ா க ி ட ெ க ் இ ன ் ட ர ் ந ெ ஷ ன ல ்
l o h g a d ல ா ஹ ் க ா த ்
l o k a a d h i p ல ோ க த ி ப ்
l u t a a o o ல ு த ா வ ூ
l y n e t t e ல ி ன ெ ட ்
m a a ம ா
m a c o n ம ே க ா ன ்
m a d l i e n a t o w e r f o r t ம ா ட ் ல ி ய ே ன ா ட வ ர ் ஃ ப ் ப ோ ர ் ட ்
m a h a s a t i m a i n a s u n d a r i ம ஹ ா ச த ி ம ே ய ் ன ா ச ு ந ் த ர ி
m a h a a k s h ம ஹ ா க ் ஷ ்
m a h a a n ம ஹ ா ன ்
m a h a b a l ம ஹ ா ப ல ்
m a h a g a n a p a t i ம க ா க ண ப த ி
m a h a v e e r s c h o o l ம ஹ ா வ ீ ர ் ஸ ் க ூ ல ்
m a h i a ம ா ஹ ி ய ா
m a i n p u r i ம ெ ய ி ன ் ப ூ ர ி
m a i r e a d ம ே ர ி ய ட ்
m a k k i ம க ் க ி
m a l a k ம ா ல க ்
m a l a y a l a m ம ல ை ய ா ள ம ்
m a l h a n ம ல ் ஹ ா ன ்
m a l w a ம ா ல ் வ ா
m a m d u h ம ம ் த ூ
m a n a a k s h u ம ன ா க ் ஷ ூ
m a n a m o h a k ம ன ா ம ோ ஹ க ்
m a n i m u t h a r r e s e r v o i r ம ண ி ம ு த ் த ா ற ு ர ி ச ர ் வ ா ய ர ்
m a n k u ம ன ் க ு
m a r c a n t o n i o c o l o n n a ம ா ர ் க ா ன ் ட ோ ன ி ய ோ க ோ ல ோ ன ் ன ா
m a r e e c h i ம ர ீ ச ் ச ி
m a r e n ம ர ெ ன ்
m a r g a r e t t h e a t r e ம ா ர ் க ் ர ட ் த ி ய ே ட ் ட ர ்
m a r i l u ம ே ர ி ல ு
m a r j o r i e ம ே ர ் ஜ ோ ர ி
m a r r i a g e b u r e a u ம ே ர ே ஜ ் ப ி ய ோ ர ே
m a r t y n b a l l ம ா ர ் ட ி ன ் ப ா ல ்
m a r v a n a t a p a t t u ம ா ர ் வ ன ் அ ட ் ட ப ் ப ட ் ட ு
m a r w a n ம ர ் வ ன ்
m a s o o m ம ா ஸ ூ ம ்
m a s o o m a h ம ச ூ ம ா
m a s s e n h o v e n ம ா ஸ ் ஸ ெ ன ் ஹ ோ வ ெ ன ்
m a t h u r a ம த ூ ர ா
m a t t h o r n e ம ா ட ் ஹ ா ர ் ன ்
m a t t u ம ட ் ட ு
m a u r i z i o ம ௌ ர ி ஸ ி ய ோ
m a u s m i ம ௌ ச ம ி
m a x i m e ம க ் ஸ ை ம ்
m a y s u n ம ே ச ன ்
m e d h a a v e e ம ே த ா வ ி
m e e n a ம ீ ன ா
m e e n a a ம ீ ன ா
m e g h a n a a d ம ே க ா ன ா த ்
m e h a r b a n i ம ெ ஹ ர ் ப ா ன ி
m e i j e r ம ெ ய ் ஜ ர ்
m e l i s s a n ம ெ ல ் ல ி ச ன ்
m e n a i ம ெ ன ை
m e r a p y a r a ம ே ர ா ப ி ய ா ர ா
m e r i a s h a ம ே ர ி ஆ ஷ ா
m i c h a e l c r i c h t o n ம ை க ் க ே ல ் க ் ர ி ச ் ட ன ்
m i l l i m e s ம ி ல ் ல ி ம ெ ஸ ்
m i r a r i ம ி ர ா ர ி
m i s s o u r i ம ி ஸ ் ஸ ோ ர ி
m o h a m m a d a s h r a f u l ம ொ ஹ ம ் ம த ் அ ஷ ் ர ா ஃ ப ் ப ு ல ்
m o h a m m a d z a h i d ம ொ ஹ ் ஹ ம ் ம த ் ஜ ா ஹ ி த ்
m o h u l ம ொ ஹ ல ்
m o n t a g u ம ா ன ் ட ா க ு
m o n t o u r ம ா ன ் ட ூ ர ்
m o r e ம ொ ர ே
m o t e r w a l i ம ோ ட ர ் வ ா ல ி
m o u n t c a r m e l s c h o o l ம வ ு ண ் ட ் க ா ர ் ம ெ ல ் ஸ ் க ூ ல ்
m u h s i n ம ு ஹ ் ஸ ி ன ்
m u k h l i s ம ு க ் ல ி ஸ ்
m u k u l i t a ம ு க ு ல ி த ா
m u n i c i p a l g a l l e r y o f p i r a e u s ம ு ன ி ச ி ப ் ப ல ் க ே ல ர ி ஆ ஃ ப ் ப ை ர ி ய ா ஸ ்
m u r a l i k a r t i k ம ு ர ள ி க ா ர ் த ் த ி க ்
m u r a r i ம ு ர ா ர ி
m u t a z a h ம ு த ா ஸ ா
n a a g n a g i n ந ா க ் ந ா க ி ன ்
n a b h i j ந ப ி ஜ ்
n a d a l i a ந ா ட ா ல ி ய ா
n a d a n i y a n ந ா த ா ன ி ய ன ்
n a d e e m k h a n ந த ீ ம ் க ா ன ்
n a g a r k a r ந க ர ் க ர ்
n a i r i t ந ை ர ி த ்
n a n a k ந ா ன க ்
n a n j i n g m u s e u m ந ா ஞ ் ஜ ி ங ் ம ி ய ூ ஸ ி ய ம ்
n a r a p a t ந ர ப த ்
n a s i a ந ா ஸ ி ய ா
n a t a s h a ந ட ா ஷ ா
n a t h a n b r a c k e n ந ா த ன ் ப ி ர ா க ் க ெ ன ்
n a t i o n a l a r t g a l l e r y a n d a l e x a n d r o s s o u t z o s m u s e u m ந ே ஷ ன ல ் ஆ ர ் ட ் க ே ல ர ி அ ண ் ட ் அ ல ெ க ் ஸ ா ன ் ட ி ர ோ ஸ ் ச ெ ள ட ் ஸ ா ஸ ் ம ி ய ூ ஸ ி ய ம ்
n a v a l ந வ ல ்
n a y a d i n n a i r a a t ந ய ா த ி ன ் ந ை ர ா த ்
n a y a n m o n g i a ந ய ன ் ம ா ங ் க ி ய ா
n e e l m a d h a v ந ீ ல ் ம ா த வ ்
n e e r a f ந ீ ர ஃ ப ்
n e e t i ந ீ த ி
n e i l j o h n s o n ந ீ ல ் ஜ ா ன ் ச ன ்
n e s t o r ந ெ ஸ ் ட ர ்
n e v i n a ந ெ வ ி ன ா
n e w j e r s e y ந ி ய ூ ஜ ெ ர ் ஸ ி
n i c o l e b r o w n s i m p s o n ந ி க ோ ல ் ப ி ர வ ு ன ் ச ி ம ் ச ன ்
n i l a y ந ி ல ய ்
n i l i m a ந ீ ல ி ம ா
n i p u n ந ி ப ு ண ்
n i r m a ந ி ர ் ம ா
n i r u p a m a ந ி ர ு ப ம ா
n i y a t i ந ி ய த ி
n i z a m ந ி ஸ ா ம ்
n o c i l ந ோ ச ி ல ்
n o r a h ந ோ ர ா ஹ ்
n u s r a t f a t e h a l i k h a n ந ு ஸ ் ர த ் ஃ ப ் ப த ே ஹ ் அ ல ி க ா ன ்
o ^ k a a r அ வ ் க ா ர ்
o d e l e ஓ ட ெ ல ்
o g a n ஓ க ன ்
o g l e ஓ க ் ல ே
o m a n a n d ஓ ம ா ன ந ் த ்
o r d e r o f l e n i n ஆ ர ் ட ர ் ஆ ஃ ப ் ல ெ ன ி ன ்
o r d e r o f n a t i o n a l e s t a b l i s h m e n t m e r i t ஆ ர ் ட ர ் ஆ ஃ ப ் ந ே ஷ ன ல ் எ ஸ ் ட ா ப ் ள ி ஷ ் ம ெ ண ் ட ் ம ெ ர ி ட ்
o r d e r o f t h e c r o w n ஆ ர ் ட ர ் ஆ ஃ ப ் த ி க ் ர வ ு ன ்
o r d e r o f t h e p h o e n i x ஆ ர ் ட ர ் ஆ ஃ ப ் த ி ஃ ப ீ ன ி க ் ஸ ்
o r i e n t a l b a n k o f c o m m e r c e ஓ ர ி ய ண ் ட ல ் ப ே ங ் க ் ஆ ஃ ப ் க ா ம ர ் ஸ ்
o r r i c k ஓ ர ி க ்
o s m o n d ஓ ஸ ் ம ந ் த ்
p a a n c h r a t a n ப ா ன ் ச ் ர ா த ன ்
p a a r i j a a t ப ா ர ி ஜ ா த ்
p a k k h o k e ப க ் க ோ க ே
p a m e l i a ப ம ீ ல ி ய ா
p a n a m e r i c a n s i l v e r ப ா ன ் அ ம ெ ர ி க ் க ன ் ச ி ல ் வ ர ்
p a n d i t a u r p a t h a n ப ண ் ட ி ட ் அ வ ு ர ் ப த ா ன ்
p a n e s a r ப ன ே ச ர ்
p a t a n g ப த ங ்
p a t h o l o g y ப ா த ோ ல ஜ ி
p a t i p a r m e s h w a r ப த ி ப ர ் ம ே ஷ ் வ ர ்
p a t r i c k s t e w a r t ப ே ட ் ர ி க ் ஸ ் ட ூ வ ர ் ட ்
p a t t h a r ப த ் த ர ்
p a u l b u d d h e ப வ ு ல ் ப ு த ் த ே
p e a r s e b r o s s n a n ப ி ய ர ் ஸ ் ப ் ர ா ஸ ் ன ன ்
p e n n e y ப ெ ன ் ன ி
p e r u m p a l l a m r e s e r v o i r ப ெ ர ு ம ் ப ள ் ள ம ் ர ி ச ர ் வ ா ய ர ்
p e t e r w i l l e y ப ீ ட ் ட ர ் வ ி ல ் ல ி
p e t r a ப ெ ட ் ர ா
p h a a n s i ப ா ன ் ஸ ி
p h i a l a ஃ ப ி ய ா ல ா
p h i l a n a ஃ ப ி ல ா ன ா
p h i l i p s ஃ ப ி ல ி ப ் ஸ ்
p h i r s u b h a h h o g i ப ி ர ் ச ு ப ா ஹ ோ க ி
p h i r w o h i d i l l a y a h o o n ப ி ர ் வ ோ ஹ ி த ி ல ் ல ா ய ா ஹ ூ ன ்
p h o o l b a n e a n g a r e y ஃ ப ் ப ூ ள ் ப ன ே அ ங ் க ா ர ே
p i c o d e o r i z a b a ப ீ க ோ ட ீ ஓ ர ி ஜ ா ப ா
p i c o d e t a n c í t a r o ப ீ க ோ ட ீ ட ா ன ் ச ி ட ா ர ோ
p i g g o t t ப ி க ் க ா ட ்
p i l i b h i t ப ி ல ி ப ் ஹ ் த ்
p i n k m o d e l s c h o o l , b i k a n e r ப ி ங ் க ் ம ா ட ல ் ஸ ் க ூ ல ் , ப ி க ா ன ெ ர ்
p i n s o n p a r k b a p t i s t ப ி ன ் ச ன ் ப ா ர ் க ் ப ே ப ் ட ி ஸ ் ட ்
p l a t o ப ் ள ா ட ோ
p l a t o ப ் ள ே ட ் ட ோ
p l u t o ப ் ள ூ ட ் ட ோ
p o l y d e x p h a r m a c e u t i c a l s l i m i t e d ப ா ல ி ட ெ க ் ஸ ் ப ா ர ் ம ா ச ெ ட ் ட ி க ் க ல ் ஸ ் ல ி ம ி ட ெ ட ்
p o o r n i m a a ப ூ ர ் ண ி ம ா
p o p e j o h n p a u l i i ப ோ ப ் ஜ ா ன ் ப ா ல ் i i
p r a b o d h a n ப ் ர ப ோ த ன ்
p r a d e e p j a y a p r a k a s h d a r a n ப ் ர த ீ ப ் ஜ ெ ய ப ் ர க ா ஷ ் த ர ண ்
p r a m a d a ப ி ர ம த ா
p r a s e o d y m i u m ப ி ர ா ச ி ய ோ ட ி ம ி ய ம ்
p r a t a p g a d ப ி ர த ா ப ் க ா த ்
p r a t e e t ப ் ர த ீ த ்
p r a v e s h ப ி ர வ ே ஷ ்
p r e m s a n g e e t ப ி ர ே ம ் ச ங ் க ீ த ்
p r e m y a t r a ப ி ர ே ம ் ய ா த ் ர ா
p r e s i d i o o f s a n t a b a r b a r a ப ி ர ெ ஸ ி ட ி ய ோ ஆ ப ் ச ன ் ட ா ப ா ர ் ப ர ா
p r i t h v i v a l l a b h ப ி ர ி த ் வ ி வ ல ் ல ா ப ்
p r o v i d e n c e ப ு ர ோ வ ி ட ெ ன ் ச ்
p u j a r i n ப ூ ர ா ர ி ன ்
p u l a s k i h e i g h t s u n i t e d m e t h o d i s t ப ு ல ஸ ் க ி ஹ ை ட ் ஸ ் ய ு ன ை ட ் ட ெ ட ் ம ெ த ோ ட ி ஸ ் ட ்
p u r b a ப ு ர ் ப ா
p u r i ப ூ ர ி
p u s h p a k ப ு ஷ ் ப க ்
p u s h p e s h u ப ு ஷ ் ப ே ஷ ு
p y a r k i r a a t ப ி ய ா ர ் க ி ர ா த ்
q a i s a r க ை ஸ ர ்
q a y s a r க ே ஸ ர ்
q u i n t i n க ு ன ் ட ி ன ்
r a a m a n a a t h ர ா ம ந ா த ்
r a a s a v i h a a r e e ர ா ஸ வ ி ஹ ா ர ீ
r a a t a n d h e r i t h i ர ா த ் அ ன ் த ே ர ி த ி
r a f f a e l l o ர ஃ ப ே ல ோ
r a g h a v e n d r a ர ா க வ ே ந ் த ி ர ா
r a g h u k u l ர க ு க ு ல ்
r a i d a h ர ய ் த ா
r a i s e n i ர ா ய ் ச ே ன ி
r a j r a t a n ர ா ஜ ் ர ா த ன ்
r a k e e b ர க ீ ப ்
r a l l i s i n d i a ர ே ல ி ஸ ் இ ந ் த ி ய ா
r a m j a n m a ர ா ம ் ஜ ன ் ம ா
r a m a l i n g e s h w a r a ர ா ம ல ி ங ் க ே ஷ ் வ ர
r a m a o r a m a ர ா ம ா ஓ ர ா ம ா
r a m b h a ர ம ் ப ா
r a m e s h ர ம ே ஷ ்
r a m i n d e r ர ம ி ந ் த ர ்
r a m i z ர ம ி ஸ ்
r a m k i s h o r e ர ா ம ் க ி ஷ ோ ர ்
r a n d ர ா ண ் ட ்
r a n d h a w a ர ா ந ் த ் வ ா
r a s h i d l a t i f ர ஷ ீ த ் ல த ் த ீ ஃ ப ்
r a s i k a ர ச ி க ா
r a s t e a u r r i s h t e ர ா ஸ ் த ே அ வ ு ர ் ர ி ஷ ் ட ே
r a t a n d e e p ர த ன ் த ீ ப ்
r a v i n d r ர வ ி ந ் த ர ்
r e d d y s l a b s ர ெ ட ் ட ி ஸ ் ல ே ப ் ஸ ்
r e n a u l t ர ி ன ா ல ் ட ்
r e n g u z a r ர ெ ங ் க ு ஸ ா ர ்
r e w a ர ீ வ ா
r i d d h i m a n ர ி த ் த ி ம ா ன ்
r i f a ' a h ர ி ஃ ப ா ஹ ்
r i m j h i m g e e t o n k i ர ி ம ் ஜ ி ம ் க ீ த ோ ன ் க ி
r o b e r t b r o w n i n g ர ா ப ர ் ட ் ப ் ர ௌ ன ி ங ்
r o b e r t r e d f o r d ர ா ப ர ் ட ் ர ெ ட ் ஃ ப ோ ர ் ட ்
r o d d ர ா ட ்
r o d n e y h o g g ர ா ட ் ன ி ஹ ா க ்
r o j o k ர ொ ஜ ோ க ்
r o n n a ர ோ ன ் ன ா
r o o p r u p a i y a ர ூ ப ் ர ு ப ை ய ா
r o y f r e d e r i c k s ர ா ய ் ஃ ப ் ர ெ ட ் ர ி க ் ஸ ்
r u b y ர ு ப ி
r u b y ர ூ ப ி
r u f i y a a ர ு ஃ ப ி ய ா
r u m f o r d p r i z e ர ம ் ஃ ப ோ ர ் ட ் ப ் ர ை ஸ ்
r y a n r a m d a s s ர ி ய ா ன ் ர ா ம ் த ா ஸ ்
r y a n s i d e b o t t o m ர ை ய ா ன ் ச ை ட ் ப ா ட ் ட ம ்
s a a f a l e ஸ ா ப ல ே
s a a r a n g ச ா ர ங ்
s a b a ச ப ா
s a f e w a y ச ே ப ் வ ே
s a h a r a n p u r ச ா ஹ ா ர ன ் ப ூ ர ்
s a h a s t r r a a j u n ச ஹ ஸ ் த ் ர ா ஜ ு ன ்
s a h e b z a d e ச ா ஹ ெ ப ் ஸ ா த ே
s a k h i ச க ி
s a k i n a h ச க ி ன ா
s a l a k h e n ச ல ா க ெ ன ்
s a m a t a ச ம த ா
s a m a y a p u r a m ச ம ய ப ு ர ம ்
s a m e e r a ச ம ீ ர ா
s a m i d h a ச ம ி த ா
s a n f r a n c i s c o o a k l a n d b a y ச ன ் ப ி ர ா ன ் ச ி ஸ ் க ோ ஓ க ் ல ே ண ் ட ் ப ே
s a n p a b l o b a y ச ன ் ப ா ப ் ல ோ ப ே
s a n a t h k a l u p e r u m a ச ன த ் க ல ு ப ெ ர ு ம ா
s a n d a l ச ா ன ் ட ல ்
s a n d h a r ச ா ந ் த ர ்
s a n d r o ச ா ன ் ட ் ர ோ
s a n g e e t s a m r a t t a n s e n ச ங ் க ீ த ் ச ம ் ர த ் ட ா ன ் ச ெ ன ்
s a n g l i ச ா ன ் க ி ல ி
s a n j e e v s h a r m a ச ஞ ் ச ீ வ ் ஷ ர ் ம ா
s a n t r a g h u ச ன ் த ் ர ா க ு
s a r d e g n a ச ா ர ் ட ெ க ் ன ா
s a r f a r o s h ச ர ஃ ப ் ப ர ோ ஷ ்
s a r k a r i m e h m a n ச ர ் க ் க ா ர ி ம ெ ஹ ் ம ா ன ்
s a r w a t e ச ர ் வ த ே
s a t a h s e u t h a t a a d a m i ச த ஹ ் ச ெ உ த ா ட ா அ த ா ம ி
s a u b a l ச ௌ ப ல ்
s a u g a n d h ச ோ க ா ந ் த ்
s a y m u k t a k a r n a t a k a ச ய ் ம ு க ் த ா க ர ் ன ா ட ் ட க ் க ா
s c h e l l c r e e k ஷ ெ ல ் க ி ர ீ க ்
s c h o o t e n ஷ ூ ட ெ ன ்
s e a n w i l l i a m s ச ீ ன ் வ ி ல ் ல ி ய ம ் ஸ ்
s e e m a n t ச ீ ம ந ் த ்
s e p t e m b e r ச ெ ப ் ட ம ் ப ர ்
s e r r a d a c a p i v a r a ச ெ ர ் ர ா ட ா க ே ப ் ப ி வ ா ர ா
s e v e r i n o ச ெ வ ெ ர ி ன ோ
s h a a n _ t i ஷ ா ந ் த ி
s h a b a h ஷ ப ா
s h a b n a m ஷ ப ் ன ம ்
s h a f e e ஷ ஃ ப ீ
s h a h e e n ஷ ா ஹ ீ ன ்
s h a h e e r ஷ ஹ ீ ர ்
s h a h i c h o r ஷ ா ஹ ி ச ோ ர ்
s h a i l s u t a a ஷ ை ல ் ச ு த ா
s h a m e l ஷ ம ெ ல ்
s h a m o o d a h ஷ ம ூ த ா
s h a r a n ஷ ர ன ்
s h a r l a ஷ ர ் ல ா
s h a r l e n e ஷ ெ ர ் ல ீ ன ்
s h a t r a n j ஷ ா த ் ர ா ஞ ்
s h e l a g h ஷ ெ ல ா க ்
s h e n a n d o a h ஷ ெ ன ா ன ் ட ோ ஹ ்
s h e r b u r n e ஷ ெ ர ் ப ர ் ன ெ
s h i d h o r e ஷ ி த ோ ர ே
s h i f a ஷ ி ஃ ப ா
s h i n d i ஷ ி ந ் த ி
s h i n t r e ஷ ி ன ் த ் ர ே
s h i s h i r ஷ ி ஷ ி ர ்
s h i v s u n d e r d a s ஷ ி வ ் ச ு ந ் த ர ் த ா ஸ ்
s h o b h a ஷ ோ ப ா
s h o b n a ஷ ோ ப ் ன ா
s h o e s m i t h ஹ ூ ஸ ் ம ி த ்
s h o o r v e e r ஷ ூ ர ் வ ீ ர ்
s h o t p u t ஷ ா ட ் ப ு ட ்
s h r i p a d ஸ ் ர ீ ப த ்
s i b y l ச ி ப ி ல ்
s i d d h i ச ி த ் த ி
s i d r a ச ி ட ் ர ா
s i d r a ச ி த ் ர ா
s i k l i g a r ச ி க ் ல ி க ர ்
s i n g a a r ச ி ங ் க ா ர ்
s i n g h v i ச ி ங ் வ ி
s i t k a ஸ ி ட ் க ா
s k i n n e r ஸ ் க ி ன ் ன ர ்
s k y e p h a r m a ஸ ் க ை ய ி ப ா ர ் ம ா
s l e d d i n g ஸ ் ல ெ ட ் ட ி ங ்
s m a r a m ஸ ் ம ர ம ்
s o h a i l ச ோ ஹ ை ல ்
s o m a n s h u ச ோ ம ன ் ஷ ு
s o n g a d r a ச ோ ங ் க ா த ் ர ா
s o n p u r ச ோ ன ் ப ூ ர ்
s o n y ச ோ ன ி
s o p h i a ச ோ ஃ ப ி ய ா
s t a s h ஸ ் ட ா ஷ ்
s t e f f i e ஸ ் ட ெ ஃ ப ் ப ி
s t r a s b o u r g ஸ ் ட ி ர ா ஸ ் ப ர ் க ்
s t r a s b o u r g ஸ ் ட ி ர ா ஸ ் ப ோ ர ் க ்
s u ' a d ச ு வ த ்
s u b h a a s h ச ு ப ா ஷ ்
s u b h a s h ச ு ப ா ஷ ்
s u c h a n d r a ச ு ச ந ் த ி ர ா
s u h a g a n ச ு ஹ ா க ன ்
s u l l i v a n ச ல ் ல ி வ ன ்
s u l l i v a n ச ு ல ை வ ா ன ்
s u l t a n p u r i a ச ு ல ் த ா ன ் ப ூ ர ி ய ா
s u m i t r a n a n d a n p a n t ச ு ம ி த ் ர ா ந ந ் த ன ் ப ண ் ட ்
s u n d a r ச ு ந ் த ர ்
s u n d a r i ச ு ந ் த ர ி
s u p e r b o w l ச ூ ப ் ப ர ் ப ௌ ல ்
s u r u j r a g o o n a t h ச ு ர ு ஜ ் ர க ு ந ா த ்
s w a p n a l i ஸ ் வ ப ் ன ா ல ி
s w e e k a r k i y a m a i n e ஸ ் வ ீ க ர ் க ி ய ா ம ை ன ே
s y e d r a s e l ச ய த ் ர ா ச ெ ல ்
s y m o n a ச ி ம ோ ன ா
t a k e d a a w a r d த க ே ட ா அ வ ா ர ் ட ்
t a l i b த ா ல ி ப ்
t a r m o n ட ா ர ் ம ோ ன ்
t a r z a n a n d c o b r a ட ா ர ் ஸ ன ் அ ண ் ட ் க ோ ப ் ர ா
t a s n e e n த ஸ ் ன ீ ன ்
t a t a c h e m i c a l s ட ா ட ா க ெ ம ி க ் க ல ் ஸ ்
t a w a k k a l m a s t a n s h a h s a h a r w a r d y த ா வ ா க ் க ா ல ் ம ஸ ் த ா ன ் ஷ ா ஸ ா ஹ ா ர ் வ ா ர ் ட ி
t e m p l e t o n p r i z e ட ெ ம ் ப ி ள ் ட ன ் ப ் ர ை ஸ ்
t e w a a r a t o n t r o p h y த ீ வ ா ர த ் த ன ் ட ் ர ா ஃ ப ி
t e x a s h e a l t h s c i e n c e c e n t e r ட ெ க ் ச ா ஸ ் ஹ ெ ல ் த ் ச ய ி ன ் ஸ ் ச ெ ன ் ட ர ்
t h e o d o r e d r e i s e r த ி ய ோ த ர ் ட ் ர ீ ச ர ்
t h i k a n a த ி க ா ன ா
t h o m த ா ம ்
t h r o g s n e c k த ி ர ா க ் ஸ ் ந ெ க ்
t h u r n w a l d த ர ் ன ் வ ா ல ் ட ்
t o m h a n k s ட ா ம ் ஹ ா ங ் க ் ஸ ்
t o p t a n k e r s ட ா ப ் ட ே ங ் க ர ் ஸ ்
t o r a n த ோ ர ன ்
t r a n s v e r s e ட ி ர ா ன ் ஸ ் வ ெ ர ் ஸ ்
t r i a t h l o n ட ் ர ய த ் ல ா ன ்
t r i s h a l a த ் ர ி ஷ ா ல ா
t u g a l த ு க ல ்
t u l s i த ு ல ் ச ி
t u l s i த ு ள ச ி
t u m m e r e h o த ு ம ் ம ே ர ே ஹ ோ
t u r k e y t r o t ட ர ் க ் க ி ட ி ர ா ட ்
u j j a i n உ ஜ ் ஜ ை ன ்
u l l a s ஊ ல ் ல ா ஸ ்
u n i t e d a r a b e m i r a t e s ய ூ ன ை ட ெ ட ் அ ர ா ப ் எ ம ி ர ே ட ் ஸ ்
u n i v e r s i t y o f a l a b a m a ய ூ ன ி வ ர ் ச ி ட ் ட ி அ ஃ ப ் அ ல ப ா ம ா
u n i v e r s i t y o f b a t h ய ூ ன ி வ ர ் ச ி ட ் ட ி ஆ ஃ ப ் ப ா த ்
u n i v e r s i t y o f e s s e x ய ூ ன ி வ ர ் ச ி ட ் ட ி ஆ ஃ ப ் எ ஸ ் ஸ ெ க ் ஸ ்
u n i v e r s i t y o f n e w e n g l a n d ய ூ ன ி வ ர ் ச ி ட ் ட ி ஆ ஃ ப ் ந ி ய ூ இ ங ் க ் ல ே ண ் ட ்
u n i v e r s i t y o f s o u t h a u s t r a l i a ய ூ ன ி வ ர ் ச ி ட ் ட ி ஆ ஃ ப ் ச வ ு த ் ஆ ஸ ் ட ் ர ே ல ி ய ா
u n i v e r s i t y o f t e c h n o l o g y ய ூ ன ி வ ர ் ச ி ட ் ட ி ஆ ஃ ப ் ட ெ க ் ன ா ல ஜ ி
u n m e s h உ ன ் ம ெ ஷ ்
u r d u உ ர ு த ு
u r m i l a ஊ ர ் ம ி ள ா
v a a d k a r வ ா த ் க ர ்
v a i r வ ெ ய ி ர ்
v a i s h n a v வ ை ஷ ் ண வ ்
v a l o r a வ ல ோ ர ா
v a n a j y o t i வ ன ஜ ோ த ி
v a p a r a i s o c h u r c h o f c h r i s t வ ப ர ை ச ோ ச ர ் ச ் ஆ ப ் க ி ற ி ஸ ் ட ்
v a r v a r a வ ா ர ் வ ர ா
v a r v a r a வ ா ர ் வ ா ர ா
v a s h i s h t h வ ஷ ி ஷ ் த ்
v a s u d e v y a a வ ா ச ு த ே வ ் ய ா
v a u g h a n b r o w n வ ா க ா ன ் ப ி ர வ ு ன ்
v e d a g y வ ே த க ி
v e l v e t வ ெ ல ் வ ெ ட ்
v e m b a k o t t a i r e s e r v o i r வ ெ ம ் ப க ோ ட ் ட ை ர ி ச ர ் வ ா ய ர ்
v e r n e c i t a d e l வ ெ ர ் ன ் ச ி ட ் ட ா ட ெ ல ்
v e s t e o b e r h a u s வ ெ ஸ ் ட ெ ஓ ப ெ ஹ ா ஸ ்
v i a n c a வ ி ய ா ன ் க ா
v i b h a a வ ி ப ா
v i c t o r y a s s e m b l y o f g o d வ ி க ் ட ர ி அ ச ெ ம ் ப ் ள ி ஆ ப ் க ா ட ்
v i d y a v a r d h a k a s a n g h a h i g h s c h o o l , b a n g a l o r e வ ி த ் ய ா வ ர ் த ா க ா ச ங ் க ா ஹ ை ஸ ் க ூ ல ் , ப ெ ங ் க ள ூ ர ்
v i j a y b h a r a d w a j வ ி ஜ ய ் ப ர த ் வ ா ஜ ்
v i k l a a n t வ ி க ் ல ா ந ் த ்
v i n c i வ ி ன ் ச ி
v i n o t h e n j o h n வ ி ன ோ த ன ் ஜ ா ன ்
v i p a s h a வ ி ப ா ஷ ா
v i s h a v a n b h a r வ ி ஷ வ ன ் ப ர ்
v i s h n u p a d வ ி ஷ ் ண ு ப ா த ்
v i s h w e s h வ ி ஷ ் வ ே ஷ ்
v i s t a r வ ி ஸ ் த ர ்
w a c h o v i a c o r p வ ா ச ோ வ ி ய ா க ா ர ் ப ்
w a j a h a t வ ஜ ஹ த ்
w a l m i k i வ ா ல ் ம ீ க ி
w a l t d i s n e y வ ா ல ் ட ் ட ி ஸ ் ன ி
w a r b e t w e e n b r a n d e n b u r g a n d s w e d e n வ ா ர ் ப ி ட ் வ ீ ன ் ப ி ர ா ன ் ட ெ ன ் ப ர ் க ் அ ண ் ட ் ஸ ் வ ீ ட ன ்
w e s t o n வ ெ ஸ ் ட ன ்
w h e e l c h a i r b a s k e t b a l l வ ீ ல ் ச ே ர ் ப ே ஸ ் க ட ் ப ா ல ்
w i l h e m b u s c h m u s e u m வ ி ல ் ஹ ெ ன ் ப ு ஷ ் ம ி ய ூ ஸ ி ய ம ்
w i l l i a m n a g a r வ ி ல ் ல ி ய ம ் ந க ர ்
w i l l o w வ ி ல ் ல ோ
w i n d r i v e r வ ி ண ் ட ் ர ி வ ர ்
w i n s t o n d a v i s வ ி ன ் ஸ ் ட ன ் ட ே வ ி ஸ ்
w o o d s t o c k h i s t o r i c a l s o c i e t y உ ட ் ஸ ் ட ா க ் ஹ ி ஸ ் ட ா ர ி க ் க ல ் ச ொ ச ை ட ் ட ி
w o r l d c h e s s c h a m p i o n s வ ோ ர ் ல ் ட ் ச ெ ஸ ் ச ா ம ் ப ி ய ன ் ஸ ்
w o r l d h e a r t c o r p o r a t i o n வ ோ ர ் ல ் ட ் ஹ ா ர ் ட ் க ா ர ் ப ் ப ர ே ஷ ன ்
w r i g h t ர ை ட ்
x e n i a ஜ ே ன ி ய ா
y a m a m a h ய ம ம ா
y a u v a n i ய ௌ வ ன ி
y i t z h a k r o b i n ய ி ட ் ஷ ா க ் ர ா ப ி ன ்
y o g e s h ய ோ க ே ஷ ்
y o g i s h ய ோ க ி ஷ ்
y o g i t a ய ோ க ி த ா
y o r k t o w n ய ோ ர ் க ் ட வ ு ன ்
y u d h i s h t h i r ய ு த ி ஷ ் த ி ர ்
z a f a r i q b a l ஸ ஃ ப ர ் இ க ் ப ா ல ்
z a h r a h ஜ ா ர ா
z a k i r k h a n ஜ ா க ் க ி ர ் க ா ன ்
z a k i y a h ஸ ா க ி ய ா
z a y b a ஜ ே ப ா
z e i l i n ஸ ெ ய ் ல ி ன ்
z e l d a ஜ ெ ல ் ட ா
z e r o u n ஜ ெ ர ௌ ன ்
z i m m e d a a r ஸ ி ம ் ம ே த ா ர ்
z o n a ஜ ோ ன ா
z o r a s t e r ஜ ோ ர ஸ ் ட ர ்
|
5b3ad5a88249b0c83189f02c0ab2af043bcfaca1 | b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf | /TD4/Scripts/Service 2/serveur2_base.sce | 8344d1be6fd0fff060339eba930ae94cfef872f3 | [] | 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 | 577 | sce | serveur2_base.sce | // Extraction des temps de service
index_bool = ( data(:, 3) = 2 )
tabs2 = data(index_bool, :)
t_s2 = tabs2(1:$,4)
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
|
78500bf11525edbd417eb89699f8431bee65e3dc | be96e52def8294f354d9eb84ba5fd00c3306a984 | /Templates/AureliaEntitySetService.tst | 12cccab9d204059a946a89f7bfef387887218075 | [
"MIT"
] | permissive | FuryTechs/FuryTech.OdataTypescriptServiceGenerator | e6177564000a74e38e34bf82bd311a8d075b2a33 | 234c226ebe8a2faeb4f4661d2acca7bbeeb54e95 | refs/heads/master | 2023-04-28T06:05:05.934471 | 2023-04-18T05:34:27 | 2023-04-18T05:34:27 | 76,648,222 | 18 | 11 | MIT | 2023-04-18T05:34:28 | 2016-12-16T11:22:28 | TypeScript | UTF-8 | Scilab | false | false | 299 | tst | AureliaEntitySetService.tst | // created by FuryTech.ODataTypeScriptGenerator
$imports$
import { AureliaOdataServiceBase } from '../AureliaOdataServiceBase';
export class $Name$ extends AureliaOdataServiceBase<$entityTypeName$> {
$customActions$$customFunctions$
constructor() {
super('$entitySetUrl$');
}
}
|
04b86eec21161668cede5ca91dbe2351fbf260fc | bce0c755bfdc527c8cc0737e8e1e59467267cff9 | /macros/stereoCalibrate.sci | 502cc10bec021a993ee41a5ba03aa01cbd844cc5 | [] | no_license | shubham0108/FOSSEE-Image-Processing-Toolbox | bacc26e6c7139383a374ea16f6c62565a7ff0603 | 68cddb2ca8dabddfe47251ac6647011acb849a2c | refs/heads/master | 2021-06-16T02:27:39.886532 | 2020-05-01T09:23:39 | 2020-05-01T09:23:39 | 97,078,162 | 0 | 0 | null | 2017-07-13T03:57:21 | 2017-07-13T03:57:21 | null | UTF-8 | Scilab | false | false | 3,919 | sci | stereoCalibrate.sci | // Copyright (C) 2015 - 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: Nihar Rao
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [params]=stereoCalibrate(objectpoints,imagepoints1,imagepoints2,varargin)
// this function Performs stereo calibration for the fisheye model.
//
// Calling Sequence
//
// stereo=stereoCalibrate(objectpoints,imagepoints1,imagepoints2);
// stereo=stereoCalibrate(objectpoints,imagepoints1,imagepoints2,cameraMatrix1,distCoeffs1,cameraMatrix2,distCoeffs2);
//
// Parameters
// stereo: a Struct containing all the camera Params
// objectpoints: a 2d set of actual object points.
// imagepoints1: a list of imagepoints of image1.
// imagepoints2: a list of imagepoints of image2.
// cameraMatrix1: camera matrix of first camera.
// distCoeffs1: distortion coefficients of first camera.it should be 4*1 or 1*4.
// cameraMatrix2: camera matrix of second camera.
// distCoeffs2: distortion coefficients of second camera.it should be 4*1 or 1*4.
//
// Description
//
// this function Performs stereo calibration for the fisheye model.
//
// Examples
// // A example to show calibration, using the traditional chessboard/checkerboard example.
//
// //generate checkerboardpoints for calibration
// yo=genCheckerboardPoints([7 10],8);
// //read first image
// z=imread("left1.jpg",0);
// //read second image
// image=imread("right1.jpg",0);
// //detect checkerboardpoints for image 1
// ii=detectCheckerboardCorner(z,[7 10]);
// //detect checkerboardpoints for image 2
// ii2=detectCheckerboardCorner(image,[7 10]);
// //convert imagepoints to list
// ii=list(ii);
// ii2=list(ii2);
// // call function
// final=stereoCalibrate(yo,ii,ii2);
// // show the struct
// final
// // use the above calibration further
// uu = undistortImage(image,final.cameraMatrix2);
// imshow(uu);
//
//
// //generate checkerboardpoints for calibration
// yo=genCheckerboardPoints([7 10],8);
// //read first image
// z=imread("left1.jpg",0);
// //read second image
// image=imread("right1.jpg",0);
// //detect checkerboardpoints for image 1
// ii=detectCheckerboardCorner(z,[7 10]);
// //detect checkerboardpoints for image 2
// ii2=detectCheckerboardCorner(image,[7 10]);
// //convert imagepoints to list
// ii=list(ii);
// ii2=list(ii2);
// // call function
// final=stereoCalibrate(yo,ii,ii2);
// // show the struct
// final
// // use the above calibration further
// uu = undistortImage(image,final.cameraMatrix2,'distCoeffs',final.distortionCoefficients2);
// imshow(uu);
[lhs rhs]=argn(0);
if lhs>1
error(msprintf(" Too many [a b c d e f]put arguments\n"));
elseif rhs>7
error(msprintf(" Too many input arguments,maximum number of arguments is 7\n"));
elseif rhs<3
error(msprintf("the function needs atleast 3 arguments\n"));
end
if rhs==3
[a b c d e f] =raw_stereoCalibrate(objectpoints,imagepoints1,imagepoints2);
elseif rhs==4
[a b c d e f]=raw_stereoCalibrate(objectpoints,imagepoints1,imagepoints2,varargin(1));
elseif rhs==5
[a b c d e f]=raw_stereoCalibrate(objectpoints,imagepoints1,imagepoints2,varargin(1),varargin(2));
elseif rhs==6
[a b c d e f]=raw_stereoCalibrate(objectpoints,imagepoints1,imagepoints2,varargin(1),varargin(2),varargin(3));
elseif rhs==7
[a b c d e f]=raw_stereoCalibrate(objectpoints,imagepoints1,imagepoints2,varargin(1),varargin(2),varargin(3),varargin(4));
end
params=struct('cameraMarix1',a,'distortionCoefficients1',b,'cameraMatrix2',c,'distortionCoefficients2',d,'rotationMatrix',e,'TranslationVector',f);
endfunction
|
1606f82f26a054c5082bcc0c16c177e28fd3e794 | e86653ab56eded6714574f9f8f34013272027113 | /3432/CH7/EX7.35/Ex7_35.sce | b715b38fcab3b45fe51e3fdaf9d6409793b973ff | [] | no_license | FOSSEE/Xcos_TBC_Uploads | 3637554f9dca20d0c5ec2c5d00d30942edafe09a | 37e81552cb6d9066617ba91b13c91098e5ab6758 | refs/heads/master | 2023-03-30T10:45:38.033053 | 2021-03-15T05:40:35 | 2021-03-17T09:45:20 | 346,244,418 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,802 | sce | Ex7_35.sce | //Example 7.35
// Integral Control of a Motor Speed System
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
//Transfer function model
num=1;
s=poly(0,'s');
den=(s+3);
G=syslin('c',num/den);
sys=tf2ss(G)
// State space representation of augmented system
F=[0 1; 0 -3];
G=[0 1]'
H=[1 0];
J=0;
//Desired poles for augmented system
Pc=[-5 -5]
// State feedback gain is
K=ppol(F,G,Pc)
disp(K,'K=')
//Estimator
Pe=[-10]
L=ppol(sys.A',sys.C',Pe)
disp(L','L=')
//------------------------------------------------------------------
//(c) Compare step reference and disturbance response.
//step reference response switch r=1 and w=0;
r=1;w=0;
importXcosDiagram(".\Ex7_35_model.xcos")
//The diagram data structure
xcos_simulate(scs_m,4);
scs_m.props.context
figure(0)
plot(yt.time,yt.values)
xlabel('time');
ylabel('y');
figure(1)
plot(ut.time,ut.values)
xlabel('time');
ylabel('y');
//------------------------------------------------------------------
// Step disturbance response switch r=0 and w=1;
w=1;r=0;
importXcosDiagram(".\Ex7_35_model.xcos")
//The diagram data structure
xcos_simulate(scs_m,4);
scs_m.props.context
scf(0)
plot(yt.time,yt.values,'r--')
xlabel('time');
ylabel('y');
title("step Response",'fontsize',3)
exec .\fig_settings.sci; // custom script for setting figure properties
legend("y1","y2")
xset('font size',3);
xstring(0.9,0.9,"$y_1$");
xstring(0.25,0.12,"$y_2$");
scf(1)
plot(ut.time,ut.values,'r--')
xlabel('time');
ylabel('y');
title("Control efforts",'fontsize',3)
exec .\fig_settings.sci; // custom script for setting figure properties
legend("u1","u2")
xset('font size',3);
xstring(0.25,2.5,"$u_1$");
xstring(1,-1,"$u_2$");
//------------------------------------------------------------------
|
267d7609936961ab31a162a516bc1e48b8c18ddb | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH19/EX19.11/example11_sce.sce | b2e4e51699d70d2d039bd6c60948bb946469e889 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 381 | sce | example11_sce.sce | //chapter 19
//example 19.11
//page 843
printf("\n")
printf("given")
Rl=16;Po=6;Vbe=.7;
Vp=sqrt(2*Rl*Po)
Vr14=.1*Vp;Vr15=Vr14;
R14=.1*Rl;R15=R14;
Vce3=1;Vce4=Vce3;
Vr9=3;Vr11=Vr9;
Vcc=(Vp+Vr14+Vbe+Vce3+Vr9)
Vee=-Vcc;
Ip=Vp/Rl
disp(" DC power inpit from supply line")
Pi=(Vcc-Vee)*.35*Ip
disp(" output transistor specification")
Pt=.5*(Pi-Po)
Vce=2*Vcc
Ic=1.1*Ip |
7c7dd4f1e57a79a9c6018387f9bb17b113ee5248 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1430/CH4/EX4.1/exa4_1.sce | 4501bd5daaa3b5107e434f645033218c9f912b80 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 657 | sce | exa4_1.sce | // Example 4.1
// Node Analysis with One Unknown
// From figure 4.3
G_11=1/6+1/(5+7)+1/4; // Sum of all conductance connected at node 1
i_s1=18/6+(-60/4); // Net equivalent source current into node 1
// From node equation G_11*v_1=i_s1
v_1=i_s1/G_11; // Node voltage v_1
// Using Ohm's Law
i_a=(18-v_1)/6; //Current through 6-Ohm resistor
i_b=v_1/(5+7);// Current through 5-Ohm resistor
i_c=(v_1-(-60))/4; // Current through 4-Ohm resistor
disp(v_1,"Node Voltage(in Volts)=")
disp(i_a,"Branch Current through 6-Ohms(in Amps)=")
disp(i_b,"BRanch Current through 5-Ohms(in Amps)=")
disp(i_c,"Branch Current through 4-Ohms(in Amps)=")
|
226840cf87051b3696f4005e50dc9ea302d64d42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2345/CH2/EX2.8/Ex2_8.sce | 506db58493c9a54bd656f9412de9c1a037ba50a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 337 | sce | Ex2_8.sce | //Finding resistance
//Example 2.8(pg. 24)
clc
clear
R20=50// resistance in ohms
T=60,t=20// temp in degree C
k0=0.00427//temp coefficient at zero degreeC
R0=R20/{1+(k0*t)}
printf('The value of Resistance at 0 degree C is %3.2f ohms \n',R0)
R60=R0*{1+(k0*T)}
printf('The value of Resistance at 60 degree C is %3.2f ohms',R60)
|
2ad7260fd63926e84f2726d102f3bf26e6804552 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH4/EX4.10/10.sce | 3b81b2cf61d30c02ec095c4c4c46faf5aa5b9bb7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 546 | sce | 10.sce | //Variable declaration
n=1;
e=1.6*10**-19;
m=9.1*10**-31; //mass(kg)
h=6.63*10**-34; //planck's constant
L=2*10**-10; //width(m)
//Calculation
E1=n**2*h**2/(8*m*e*L**2); //energy value in g state(eV)
E2=2**2*E1; //energy value in 2nd quantum state(eV)
E4=4**2*E1; //energy value in 2nd quantum state(eV)
//Result
printf('energy value in 2nd quantum state is %0.3f \n',(E2))
printf('energy value in 4th quantum state is %0.3d eV\n ',(E4))
printf('answer varies due to approximating off errors\n') |
3ab53362280db810dd06c1e96afab1325720e7a4 | 52cbfb547384bc9612dc59f5280971ed5a701a9d | /Continuous Cosine Signal.sce | 2a868837281b94aa406ba581dcfca72b8d105c8f | [] | no_license | allenbenny419/Scilab-Codes | efa5402bea6d03088f77dafcf9ed87bd1f93e915 | 48109cd70c8a66a56e87f88152e866565dd52362 | refs/heads/main | 2023-06-23T21:10:24.227426 | 2021-07-21T11:09:15 | 2021-07-21T11:09:15 | 388,086,261 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 125 | sce | Continuous Cosine Signal.sce | clear;
clc;
x=0:.1:11
f=0.2;
plot(x,cos(2*%pi*x*f));
xtitle('Continuous Cosine Signal')
xlabel('x')
ylabel('cos(x)')
|
389f98340723fb43c07c0d45c5edbb4ad1f4f8fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH10/EX10.22/10_22.sce | 8887d98288ecf02bfacc51e60f1fdd54776a1d26 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 391 | sce | 10_22.sce | clear//
//Variables
p = 9 * 10**-3 //Resistivity (in ohm-meter)
up = 0.03 //Mobility (in meter-square per volt-second)
//Calculation
sig = 1/p //Conductivity (in per ohm-meter)
RH = up / sig //Hall coefficient (in cubic-meter per Coulomb)
//Result
printf("\n Value of Hall-coefficient is %0.3f m**3/C.",RH)
|
717dbc7b66b45e3de5dbf983d7ad5e43019dddf3 | 7d5f639d96c00f6068c51c15df7b40cf8e959f09 | /code/minJ.sce | a2b3e54b3e10d88e2f35b1e349ee51460a7596b8 | [] | no_license | XAMEUS/MN | daf13aac1f92cf5137e55189e8d23bb42fe1a747 | 36e3f0e34c07641cdee4b401a98478822e0dee46 | refs/heads/master | 2021-03-24T11:50:44.826039 | 2017-05-02T19:54:26 | 2017-05-02T19:54:26 | 86,677,617 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 130 | sce | minJ.sce | clear
stacksize(268435454)
exec("q3a5.sci")
exec("ressources_q11aq14.sci")
//Question 14
res_new = newton(1e-5, 0)
disp(res_new)
|
408c00eefa17dc9deaff6cf92001568525c2fb65 | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH11/EX11.7/Example11_7.sce | de69f32ff486c444a54fe6baf0f36a7ea90b173b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 689 | sce | Example11_7.sce | //Example 11.7
clear;
clc;
VCC=15;
Vref=2.5;
Io=100*10^(-3);
Ib=0.5*10^(-3);
R=Vref/Io;
R1=(VCC-Vref)/Ib;
printf("(a) R=%.f ohms",R);
printf("\n R1=%.f kohms",R1*10^(-3));
R2=1*10^3;
VECsat=0.2;
VLmax=VCC-Vref-VECsat;
Vin=VCC-Vref;
b=100;
IB=1*10^(-3);
VEBon=0.7;
Vo=VCC-Vref-VEBon-(R2*IB);
Is=IB;
printf("\n\n(b) Voltage Compliance (VL)=%.1f V",VLmax);
printf("\n The 741 inputs are at %.1f V which is within the input voltage range specifications.",Vin);
printf("\n The 741 output is at %.1f V which is below VOH=13 V.",Vo);
printf("\n The 741 sinks a current of %.f mA which is below Isc=25 mA.",Is*10^3); |
955a8b486d783fdbde675588fc03981053d42927 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH6/EX6.3/6_3.sce | bad52550a6bfb662233e13473c9fd45093cf4999 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 231 | sce | 6_3.sce | // Determine the EMF generated in a wave winding
clc;
clear;
phi=40*(10^-3);
A=2; //Wave Winding
P=8;
E=400;
Z=960;
N=E*60*A/(phi*Z*P) // EMF equation of a DC machine
printf('The speed generated = %g rpm \n',N)
|
44701427f42c78f1bdfff83ba8797b1f74bf0883 | 0bd5caec42845b7765f5abb41470a120328f98ec | /testes/wfir.sce | 89c3561c2f841c71d3e7a3ea5cc675debe40e29c | [] | no_license | kaline/LPDS-IFCE | c23d1ccda96d52c3bcc5d1205c2cf41a52608d89 | 88539f37bb8f9240b9e16cfd6e8349064d6c91dc | refs/heads/master | 2021-06-28T20:34:04.390641 | 2020-09-12T00:49:07 | 2020-09-12T00:49:07 | 153,004,678 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,257 | sce | wfir.sce | //[wft,wfm,fr]=wfir(ftype,forder,cfreq,wtype,fpar)
//Arguments
//ftype string : 'lp','hp','bp','sb' (filter type)
//forder
//Filter order (pos integer)(odd for ftype='hp' or 'sb')
//cfreq
//2-vector of cutoff frequencies (0<cfreq(1),cfreq(2)<.5) only cfreq(1) is used when ftype='lp' or 'hp'
//wtype
//Window type ('re','tr','hm','hn','kr','ch')
//fpar
//2-vector of window parameters. Kaiser window fpar(1)>0 fpar(2)=0. Chebyshev window fpar(1)>0, fpar(2)<0 or fpar(1)<0, 0<fpar(2)<.5
//wft
//time domain filter coefficients
//wfm
//frequency domain filter response on the grid fr
//fr
//Frequency grid
//
close; close;
ft='lp';
fc = 0.17;
fa = 0.24;
atm = 0.05;
tw = 'hm';
fpar = [];
p=1;
wg1 = [0, fc fc];
g1 = [1 1 0.001]/sqrt(2);
wg2 = [0, fa fa 0.5];
g2 = [1 1 atm atm];
for N=10:5:25
fc1 = fc + 0.462/N;
[wft,wfm,fr]=wfir(ft,N,[fc1 atm],tw,fpar);
subplot(2,2,p); plot(fr,wfm); plot(wg1,g1,wg2,g2);
p=p+1;
end
ganhosm = 1;
Nf = 12;
while ganhosm > atm
Nf = Nf + 1;
fc1 = fc + 0.462/Nf;
[wft,wfm,fr]=wfir('lp',Nf,[fc1 atm],tw,fpar);
xx = find(fr>fa-0.01);
ganhos = wfm(xx);
ganhosm = max(ganhos);
if Nf > 120 then ganhosm = 0; end;
end;
gmax = max(wfm); wfm = wfm/gmax;
figure; plot(fr,wfm); plot(wg1,g1,wg2,g2);
title(string(Nf));
|
403a4021143882d6e4e07745be2f2fb3737341e7 | 97135f725c599527ba0fd95a5289373c755daf3b | /Examples/test-suite/scilab/abstract_signature_runme.sci | 6cd346adfd300eab8b45a1446536b3043dbf3277 | [] | no_license | maqalaqil/swag-c- | b8880cfc92424d5bbca1fe15ed98663a41063f27 | 6fd1ba2bf1d353f24c116a3c89a8540292b86a7d | refs/heads/master | 2020-07-06T21:02:08.949652 | 2019-09-01T07:56:55 | 2019-09-01T07:56:55 | 203,137,066 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 273 | sci | abstract_signature_runme.sci | exec("alaqiltest.start", -1);
// These calls must fail
ierr = execstr('abstract_foo_meth(1)', 'errcatch');
if ierr == 0 then alaqiltesterror(); end
ierr = execstr('abstract_bar_meth(1)', 'errcatch');
if ierr == 0 then alaqiltesterror(); end
exec("alaqiltest.quit", -1);
|
e8e21030ad943ad76c5023c2235df097230d33b2 | 48b238fc8dc60bac1853048c90b77c1c4a672900 | /AND_OR_XOR_MUX_DMUX_NOT/CS16B015Not16.tst | 3ddff2eb33f319b081f7a4d4c168e4806d622b86 | [] | no_license | vaishalikhanve/Computer-System-Design-Lab | a1ed6d4ead37c400e271cb460c314835e025c553 | e89553dadffe01c6838da23c6dd802306455c1a8 | refs/heads/master | 2020-12-19T04:56:16.686206 | 2020-01-22T17:42:51 | 2020-01-22T17:42:51 | 235,627,142 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 354 | tst | CS16B015Not16.tst | load CS16B015Not16.hdl,
output-file CCS16B015Not16.out,
compare-to CS16B015Not16.cmp,
output-list in%B1.16.1 out%B1.16.1;
set in %B0000000000000000,
eval,
output;
set in %B1111111111111111,
eval,
output;
set in %B1010101010101010,
eval,
output;
set in %B0011110011000011,
eval,
output;
set in %B0001001000110100,
eval,
output; |
428c05b96b0170ca3aabcb7c5684ec5282320a2b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3809/CH18/EX18.9/EX18_9.sce | 4431f56129cb7804fc27d18f39016d3a54d82411 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 698 | sce | EX18_9.sce | //Chapter 18, Example 18.9
clc
//Initialisation
R1=2*10**3 //resistance in ohm
R2=5.2*10**3 //resistance in ohm
pi=3.14 //pi
c=2.2*10**-6 //capacitance in farad
ce=10*10**-6 //capacitance in farad
re=24 //resistance in ohm
//Calculation
fc1=1/(2*pi*c*R1) //cut-off frequency
fc2=1/(2*pi*c*R2) //cut-off frequency
fc=1/(2*pi*ce*re) //cut-off frequency
//Results
printf("Coupling Capacitor is in the range %d Hz - %d Hz\n",round(fc2),round(fc1))
printf("Decoupling Capacitor, Ce = %d Hz",fc)
|
295ceea42cd42ca0ecca0be169b6c55ed9fadb15 | 0e52518c6fe37e683dc04d785f174ce30408f8e7 | /otimizacao/evolução diferencial.sce | 88bc2c9cb0e112192fa743cb1aa65b5078e16bae | [] | no_license | thiago-franco/metodos-numericos | c3a7a10d00376c9b238825e9ff049635cc153a92 | 95ed4e0b1e05b10c7d0ef9cbc23f9c98d2cf8a65 | refs/heads/master | 2021-07-06T00:19:31.512668 | 2017-09-30T01:25:29 | 2017-09-30T01:25:29 | 104,950,926 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,129 | sce | evolução diferencial.sce | clear
clc
//function y = f(x)
// y = (1 - x(1)).^2 + 100*(x(2) - x(1).^2).^2;
//endfunction
function mut = mutacao(x, y)
r1 = x(:, grand(1, 'prm', (1:np)'));
r2 = x(:, grand(1, 'prm', (1:np)'));
r3 = x(:, grand(1, 'prm', (1:np)'));
mut = r1 + (y*(r2-r3));
endfunction
function rec = crossover(x, v, cr)
r = int(np*rand());
for j = 1 : np
if (rand (1,1) <= cr) | (j==r)
u(:,j) = v(:,j);
else
u(:,j) = x(:,j);
end
end
rec = u
endfunction
function x = selecao(x, u)
for i = 1 : np
fx = f(x(:,i));
fu = f(u(:,i));
if(fu < fx)
x(:,i) = u(:,i);
end
end
endfunction
function x = de()
cr = 0.5;
y = 1.2;
d = 2;
np = 100;
gmax = 1000;
lim_inf = [-5;-5];
lim_sup = [5;5];
for i = 1 : np
x(:,i) = lim_inf + rand(d,1).*(lim_sup - lim_inf);
end
k = 0;
while(k < gmax)
k = k +1;
v = mutacao(x, y);
u = crossover(x, v, cr);
x = selecao(x, u);
end
endfunction
|
daca447e70dea120ad41aedda54af1dd3e75036b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1385/CH13/EX13.3/13_3.sce | a85c8fed965d537bdb430c6fe241a28431728a21 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 225 | sce | 13_3.sce | clc
//initialisation of variables
m= 14 //gms
M= 28 //gms
R= 1.99 // cal per mole per degree
V= 30 //lit
v1= 10 //lit
//CALCULATIONS
S1= (m/M)*R*2.303*log10(V/V1)
//RESULTS
printf (' Entropy change = %.2f E.U',S1)
|
91580e3225d43972a10c32d7ddaf554e45335ef5 | ffda72af53128fa90b1d8ad1a8772b965c2e3442 | /Collatz Conjecture/analysis.sci | 9a01e4cb58c9897030a7780285ace91623fef936 | [
"MIT"
] | permissive | linux-man/The-Travelling-Salesman-Problem | 5ca99a3b0024273ed1f6404000fb28785ee18a9f | 6e6d1020b3ae86dc928aeaeea773065d3a9145d7 | refs/heads/main | 2023-03-07T06:04:59.935447 | 2021-02-16T12:52:32 | 2021-02-16T12:52:32 | 333,133,666 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,727 | sci | analysis.sci | SAVEPATH = "" //Working directory
if exists(["collatzList", "p2List"]) == 0 then load(SAVEPATH + "Collatz.dat") end
if exists(["maxX"]) == 0 then
for n = 1:size(collatzList)
maxX(n) = max(collatzList(n))
end
end
if exists(["maxTab"]) == 0 then maxTab = tabul(double(maxX)) end
count = 0
maxp2 = 0
evenCount = 0
for n = 1:size(p2List)
maxp2 = max(maxp2, length(p2List(n)))
end
p2Count = []
for n = 1:maxp2 p2Count(n) = 0; end
p2Factor = (1:maxp2)'
for n = 1:size(collatzList)
count = count + length(collatzList(n))
p2Count = p2Count + resize_matrix(p2List(n), maxp2, -1)
evenCount = evenCount + sum(resize_matrix(p2List(n), maxp2, -1) .* p2Factor)
end
p2Freq = p2Count / sum(p2Count)
stoppingTime = []
for n = 1:length(collatzList)
stoppingTime(n) = length(collatzList(n))
end
x = (1:length(stoppingTime))'
disp("Total", count)
disp("Total evens", evenCount)
disp("Evens frequency", evenCount/count)
oddCount = count - evenCount
disp("Total odds", oddCount)
disp("Odds frequency", oddCount / count)
disp("Max power of 2", "2^" + string(maxp2) + " = " + string(2^maxp2))
disp("Total power of 2", sum(p2Count))
disp("Count of powers of 2", p2Count)
disp("Frequency of powers of 2", p2Freq)
scf(0)
clf();
title("Collatz Conjecture: Max values")
plot(maxX)
scf(1)
clf();
title("Collatz Conjecture: Max values frequency")
plot(maxTab(:, 1), maxTab(:, 2))
scf(2)
clf();
title("Collatz Conjecture: Powers of 2 frequency")
plot(p2Freq, "r")
plot((2^(1:length(p2Count)))^-1)
legend(['Real';'Expected']);
scf(3)
clf();
title("Collatz Conjecture: Stopping time")
scatter(x, stoppingTime, 1)
scf(4)
clf();
title("Collatz Conjecture: Stopping time histogram")
histplot(1000, stoppingTime)
|
05d22d10b7cfce07e8134763d41030893425a82f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH4/EX4.11/Ex4_11.sce | 6327cda9226ce2bd1d79ac43364ee9b395ef1750 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 397 | sce | Ex4_11.sce | clc;
clear;
lambda=4800*10^-10 //wavelength in m
n=5 //position occupied by the central bright fringe
myu=1.4 //refractive index of glass covering slit 1
myu_0=1.7 ////refractive index of glass covering slit 2
//calculation
t=(n*lambda)/(myu_0-myu)
mprintf("The thickness of the glass plate is = %1.1e m",t) //The answer provided in the textbook is wrong.
|
1b67454b811ddba9343eebd508348cf306f2054f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3825/CH9/EX9.9/Ex9_9.sce | acd06e8baf02ef7b27c581e3308a5029154631ed | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 632 | sce | Ex9_9.sce | clc
h2=203.1063
s2=0.6825
sf=0.0736
sg=0.7094
hf=17.9517
hg=178.9017
s1=s2
X1=(s1-sf)/(sg-sf)
mprintf("X1=%f\n",X1)//ans vary due to roundoff error
h1=(X1*hg)+(1-X1)*hf
mprintf("h1=%fkJ/kg\n",h1)//ans vary due to roundoff error
h3=75.1134
h4=h3
COPR=(h1-h4)/(h2-h1)
mprintf("COPR=%f\n",COPR)//ans vary due to roundoff error
m=0.05
mprintf("Capacity of refrigerator=%fkW\n",m*(h1-h4))//ans vary due to roundoff error
Preq=m*(h2-h1)
mprintf("Power required=%fkW\n",Preq)//ans vary due to roundoff error
TL=253 //in kelvin
TH=313 //in kelvin
COP=TL/(TH-TL)
mprintf("COP=%f",COP)//ans vary due to roundoff error
|
1c7cfb4a0266f05433f6385dee0b7b8895cec354 | 67ba0a56bc27380e6e12782a5fb279adfc456bad | /STAMPER_PROG_7.4/SlicePolylines.sci | 6eefa4bbb1d8a527d54e9f7a4c54277c2cd593ce | [] | no_license | 2-BiAs/STAMPER_PROG | 8c1e773700375cfab0933fc4c2b0f5be0ab8e8f0 | 4fdc0bcdaef7d6d11a0dcd97bd25a9463b9550d0 | refs/heads/master | 2021-01-18T19:30:06.506977 | 2016-11-10T23:32:40 | 2016-11-10T23:32:40 | 71,999,971 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 381 | sci | SlicePolylines.sci | function listOutput = SlicePolylines(listInput, plBoundary, bRightHanded)
listOutput = list();
for i = 1:size(listInput)
if ~isempty(listInput) then
listTemp = SlicePolyline(listInput(i), plBoundary, bRightHanded);
for j = 1:size(listTemp)
listOutput($+1) = listTemp(j);
end
end
end
endfunction
|
dfbf2a0b22c460da6b6300d9de527f2e00adc7d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /497/CH4/EX4.1/Chap4_Ex1.sce | ae7ee10219004b8d52be24ec285073e8cd3c8aa3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,793 | sce | Chap4_Ex1.sce | //Kunii D., Levenspiel O., 1991. Fluidization Engineering(II Edition). Butterworth-Heinemann, MA, pp 491
//Chapter-4, Example 1, Page 106
//Title: Design of a Perforated Plate Distributor
//==========================================================================================================
clear
clc
//INPUT
dt=4;//Vessel diameter in m
Lmf=2;//Length of the bed in m
ephsilonmf=0.48;//Void fraction of bed
rhos=1500;//Density of solid in kg/m^3
rhog=3.6;//Density of gas in kg/m^3
myu=2E-5;//Viscosity of gas in kg/m s
po=3;//Pressure of inlet gas in bar
uo=0.4;//Superficial velocity of gas in m/s
uorm=40;//Maximum allowable jet velocity from holes in m/s
g=9.80;//Acceleration due to gravity in m/s^2
gc=1;
pi=3.1428;
//CALCULATION
//Computation of minimum allowable pressure drop through the distributor
deltapb={(1-ephsilonmf)*(rhos-rhog)*g*Lmf}/gc;//Calculation of pressure drop in bed using Eqn.(3.17)
deltapd=0.3*deltapb;//Calculation of pressure drop in distributor using Eqn.(3)
//Computation of orifice coefficient
Ret=(dt*uo*rhog)/myu;
if Ret>=3000 then Cd=0.60;
elseif Ret>=2000 then Cd=0.61;
elseif Ret>=1000 then Cd=0.64;
elseif Ret>=500 then Cd=0.68;
elseif Ret>=300 then Cd=0.70;
elseif Ret>=100 then Cd=0.68;
end
//Computation of gas velocity through orifice
uor=Cd*((2*deltapd)/rhog)^0.5;//Calculation of gas velocity through orifice by using Eqn.(12)
f=(uo/uor)*100;//Calculation of fraction of open area in the perforated plate
//Computation of number of orifices per unit area of distributor
dor=[0.001;0.002;0.004];//Different orifice diameters in m
n=length(dor);
i=1;
while i<=n
Nor(i)=(uo*4)/(pi*uor*(dor(i))^2);//Calculation of number of orifices by using Eqn.(13)
i=i+1;
end
//OUTPUT
mprintf('\nThe pressure drop in bed:%fPa',deltapb);
mprintf('\nThe minimum allowable pressure drop in distributor:%fPa',deltapd);
if uor<uorm then mprintf('\nThe gas veleocity of %fm/s is satisfactory',uor);
else mprintf('\nThe gas veleocity of %fm/s is not satisfactory',uor);
end
if f<10 then mprintf('\nThe fraction of open area of %f percent is allowable',f);
else mprintf('\nThe fraction of open area of %f percent is not allowable',f);
end
printf('\nDiameter of orifice(m)');
printf('\tNumber of orifices per unit area(per sq.m)');
j=1;
while j<=n
mprintf('\n%f',dor(j));
mprintf('\t\t%f',Nor(j));
j=j+1;
end
printf('\nThis number can be rounded off.');
printf('\nSince orifices that are too small are liable to clog and those that are too large cause uneven distribution of gas, we choose orifice of diameter %fm',dor(2));
//====================================END OF PROGRAM ====================================================== |
efb93a8414e9d1d1e11caabff26ae2d82e01a6d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH15/EX15.2/Ex15_2.sce | 792c3da8f2e3c59abdbe7467c20512b4ccab4df4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 112 | sce | Ex15_2.sce | clear;
clc;
//Example 15.2
C=20*10^-6;
Req=1000;
fC=1/(C*Req);
printf('\nclock frequency =%.2fKHz\n',fC)
|
0ec1561fab9b473c8a3b2b1fc12bca66d9a27644 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH17/EX17.a.3/Example_a_17_3.sce | 51e9249a7e1bd9e1029b8f349fea436b4ee32dac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 549 | sce | Example_a_17_3.sce | //Example_a_17_3 page no:865
clc;
f1=1000;
f2=5*10^3;
k=500;
f0=sqrt(f1*f2);
B_omega=f2-f1;
//calculating T-section elements
L1=k*(f2-f1)/(%pi*f1*f2);
C1=1/(4*%pi*k*(f2-f1));
//calculating pi-section elements
L2=k/(4*%pi*(f2-f1));
C2=(f2-f1)/(%pi*k*(f2*f1));
disp("T-Section filter is given by");
disp(L2*1000,"the inductance is (in mH)");
disp(C2*10^6,"the capacitance is (in microFarad)");
disp("pi-Section filter is given by");
disp(2*L2*1000,"the inductance is (in mH)");
disp(C2*10^6/2,"the capacitance is (in microFarad)");
|
c4e027a5bd28306840915b1f39e921a149ece751 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2258/CH6/EX6.4/6_4.sce | 54875e9db58449f9aa065869e126e8b4ecb7a300 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sce | 6_4.sce | clc();
clear;
// To calculate the electronic polarizability of He atoms
epsilon_0=8.854*10^-12; //f/m
epsilon_r=1.0000684;
N=2.7*10^25; //atoms per m^3
alpha_e=(epsilon_0*(epsilon_r-1))/N;
printf("electronic polarizability of He atoms in Fm^2 is");
disp(alpha_e);
|
61c7eac082e29fed15bb1d7c7602d4cddf5f3046 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH4/EX4.32.1/Ex4_32.sce | 4939a14757d3ec33aa7197c295fcd5a285aeb1b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 552 | sce | Ex4_32.sce | clc
clear
//At 10 bar pressure
m=1/(0.9*0.194);
Hf1=762.6; //in kJ/kg
x1=0.9; //Dryness Fraction
Hfg1=2013.6; //in kJ/kg
H1=Hf1+(x1*Hfg1);
Hf2=640.1; //in kJ/kg
Hfg2=2107.4; //in kJ/kg
x2=(H1-Hf2)/Hfg2;
Vg2=0.375;
Ms=(1/(x2*Vg2));
Vg3=0.462;
//Now mass of steam blown off
M=m-Ms;
printf('Mass of steam blown off: %2.3f kg',M);
printf('\n');
V=1; //Volume in m^3
x3=V/(Ms*Vg3);
printf('Dryness fraction of steam: %2.3f ',x3);
printf('\n');
|
89f14381770274970d5f0df88f7d1e39170556eb | f78a758dc17a311b355e12366d1315f7a9c2b763 | /Daimler Chrysler/DC-10615-E 2007/7.7 Supply Voltage Ramp Down 0.tst | eedb610d68b947a4c474f1fb69ab639dddc75a6a | [] | no_license | CZPFOX/Standards | 9dbf036f7e3e5767c23872c884ae7da83e66f81c | af34157e6e447d1a2b39136b9f3734feb663d9bb | refs/heads/master | 2020-06-18T12:58:06.033918 | 2019-07-11T02:55:42 | 2019-07-11T02:55:42 | 196,309,147 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 975 | tst | 7.7 Supply Voltage Ramp Down 0.tst | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AutoTestC version="2.0.0">
<Pulse>CUSTOM WAVE</Pulse>
<Title>9V Vmin</Title>
<Organization>Daimler Chrysler</Organization>
<Standard>DC-10615-E 2007</Standard>
<Item>7.7 Supply Voltage Ramp Down</Item>
<voltage>13.5</voltage>
<count>5</count>
<wave id="0">
<type>0</type>
<dspin id="0">9</dspin>
<time>30</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="1">
<type>1</type>
<dspin id="0">9</dspin>
<dspin id="1">0</dspin>
<comboindex id="0">0</comboindex>
<time>10</time>
<timeUnit>2</timeUnit>
</wave>
<wave id="2">
<type>0</type>
<dspin id="0">0</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="3">
<type>0</type>
<dspin id="0">9</dspin>
<time>30</time>
<timeUnit>0</timeUnit>
</wave>
</AutoTestC>
|
2136401bbd5d4ceec5ea488928276ff1f942f550 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1364/CH7/EX7.3.1/7_3_1.sce | ef34e1364319a4cf819b82d14864d8f483bb649d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 7_3_1.sce | clc
//initialisation of variables
v= 40 //ft/sec
a= 90 //degrees
d= 0.08 //lb/ft^3
l= 10 //ft
b= 10 //ft
//CALCULATIONS
du= v/cosd(a/2)
m= d*l*b*v
F= m*du/322
//CALCULATIONS
printf (' force on the bend = %.1f lbf',F)
|
7bca920efe3bde46fdb88e3c797a7eb50cb708a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH6/EX6.12/ex_6_12.sce | 2a342c711f7eb92e1b862ec15e774833b7c783c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 324 | sce | ex_6_12.sce | clear;
close;
clc;
n=-10:10;
N=5;
for i=1:length(n)
if n(i)>=0 & n(i)<=N then
x(i)=1;
else
x(i)=0;
end
end
x=x';
figure
subplot(2,1,1)
plot2d3(n,x);
title("x[n]")
plot(n,x,'r.')
w=-10:0.1:10;
Xw=x*exp(-%i*n'*w);
subplot(2,1,2)
plot2d(w,Xw);
title("X[w] fourier transform")
|
5f0359b897accb0c4b6aaa779572f755a5168fe8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /881/CH12/EX12.8/exa12_8.sce | bb429a8155c944614bae4cb1e7b304b6fd77d4e5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 150 | sce | exa12_8.sce | clc;
//Example 12.8
//Page No 527
//solution
c=3*10^8;
d=3000;
k=0.9;
disp("Rearranging Equation 12-48 ");
t=((2*d)/(k*c));
disp('s',t,"t = ")
|
44b680e9b3aa5b57aebe8a604ab6bffec82d362e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2507/CH11/EX11.4/Ex11_4.sce | a7b6d66c9414fb30bf15988b18ac8018eda5f80d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 480 | sce | Ex11_4.sce | clc
clear
printf("Example 11.4 | Page number 399 \n\n");
//Find Z for air at 5.65 MPa and 27°C
//Given data
pc = 3.77e6 //Pa //critical pressure
p = 5.65e6 //Pa
Tc = 132.5 //K //critical temperature
T = 300 //K
//Solution
pR = p/pc //reduced pressure
TR = T/Tc //reduced temperature
//from generalized compressibilty chart
Z =0.97
printf("From the generalized compressiblity chart, at reduced pressure of %.1f and reduced temperature of %.2f, Z = %.2f",pR,TR,Z)
|
73fdb9237f04bb8e3062025679a28b7342ec9341 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH2/EX2.13/2_13.sce | f469cf816d0d2174bc622c36b0f2a6b408d0cbfd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sce | 2_13.sce | clear
clc;
r=.9e-2;
d=6;
D1=6;
D2=7;
Daa=sqrt ((d*d)+(D1*D1));
Daa=round(Daa*1e3)/1e3
Dbb=D2;
Dcc=Daa;
Deq=5.074;
Dsc_a = round(sqrt(r*Daa)*1e4)/1e4;
Dsc_b = round(sqrt(r*Dbb)*1e4)/1e4;
Dsc_c = round(sqrt(r*Dcc)*1e4)/1e4;
Dsc=(Dsc_a*Dsc_b*Dsc_c)^(1/3);
Cn=.02412/log10(Deq/Dsc);
mprintf("Capacitance per conductor per km = %f e-6 F/conductor/km\n",Cn);
|
df2658db86f3cb0dd97de8c71fdad51e9146c5e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH4/EX4.9/4_9.sce | 3a0b7e829bcb9f4309142de95c704e0f94e6fe70 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 602 | sce | 4_9.sce | clear//
//Variables
V = 10.0 //Voltage (in volts)
R1 = 10**6 //Resistance (in ohm)
R2 = 10 * 10**3 //Resistance (in ohm)
//Case (a):
//Calculation
RT = R1 + R2 //Total Resistance (in ohm)
I = V / RT //Current (in Ampere)
//Result
printf("\n Current through the circuit is %0.3f A.",I)
//Case (b):
//Calculation
RT = R1 //Total Resistance (in ohm)
I = V / RT //Current (in Ampere)
//Result
printf("\n Current through circuit when R2 is shortened is %0.3f A.",I)
|
77856fc01491055e5c03f197beff03ffa6afb55b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH1/EX1.17/Ch01Exa17.sce | c1bad8b547610a6db2134dd8a470d9901f5c60d4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 683 | sce | Ch01Exa17.sce | // Scilab code Ex1.17 : : Page 57 (2011)
clc; clear;
b = 1; // For simplicity assume minor axis length to be unity, unit
a = 10/100+b; // Major axis length, unit
A = 125; // Mass number of medium nucleus
r = 0.53e-010; // Bohr's radius, m
eps = (a-b)/(0.5*a+b); // Deformation parameter
R = 1.2e-015*A^(1/3); // Radius of the nucleus, m
Q = 1.22/15*R^2 // Electric Quadrupole moment, metre square
V_rel_err = Q/r^2; // Relative error in the potential
printf("\nThe relative error in the electric potential at the first Bohr radius : %e", V_rel_err);
// Result
// The relative error in the electric potential at the first Bohr radius : 1.042364e-09
|
ceea09cffd01b0efabc9def866bd9ac416c5976b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3532/CH1/EX1.4.2/Ex1_3.sce | 3d7d67f0ebb07024ac78fb85c4a9040b4e284d66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 998 | sce | Ex1_3.sce | clc
clear
mprintf('Mechanical vibrations by G.K.Grover\n Example 1.4.2\n')
//given data
//case 1
//x1=(1/2)*cos((%pi/2)*t)...x1=a*cos(W1*t)
//x2=sin(%pi*t)...x2=b*sin(W2*t)
//calculations
W1=(%pi/2)
W2=%pi
t1=2*%pi/(W1)
t2=2*%pi/(W2)
p1=[t1 t2]
T1=lcm(p1)
//case 2
//x1=2*cos((%pi*t)...x1=a*cos(W3*t)
//x2=2*cos(2*t)...x2=a*cos(W4*t)
W3=%pi
W4=2
t3=2*%pi/(W3)
t4=2*%pi/(W4)
p2=[t3 t4]
T2=lcm(p2)
//output
mprintf('Case(i)\nTime period of first wave is %f sec\nTime period of first wave is %f sec\nThe time period of combined wave is %f sec\nCase(ii)\nTime period of first wave is %f sec\nTime period of first wave is %f sec\nThe time period of combined wave is %f sec',t1,t2,T1,t3,t4,T2)
mprintf('\nNOTE: The time period of combined motion in case (ii) cannot be calculated\n since pi is a non-terminating and non recurring number.\n But SCILAB takes the value of pi to be 3.141593 and therefore\n calculates the LCM of pi and the time period of first wave in case (ii.')
|
f8f8293df294e96bd70deeca0d9d94808151e37a | d56141249002a5da7c4a2641dbdfc609809046a8 | /espresso/qe_band_plot.sce | 16f374b9e725c33a271d3106c904f039940cfcdc | [] | no_license | kcbhamu/DFTutilities | 14a77226c1229ec61563cc08316d6c32814ddb57 | d6c859407a6b13c8bc5340c08db7a0125d6ed4e6 | refs/heads/master | 2021-06-24T15:23:58.675113 | 2017-08-23T20:56:44 | 2017-08-23T20:56:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,874 | sce | qe_band_plot.sce | // This program is to plot the band structures calculated from quantum espresso
// To use this code, you need to download the file bands.dat
clear; clc; xdel(winsid()); exec(PiLib);
// Parameter ===========================================================
work_dir=[]//'C:\MyDrive\Work\TaAs_qe\ONCV_redo';
k_div=[12 11 15 7 11 11 15 1];
E_Fermi=3.069; //3.1813
E_shift='yes'; // whether to shift Ef equal to 0
E_bound=[-1,+2]; // values depending on E_shift
k_label=['$\Gamma$','X','M','$\Gamma$','Z','R','A','Z']
// Main ================================================================
work_dir=PIL_dir_path(work_dir);
fid=mopen(work_dir+'bands.dat','r');
mseek(0);
// read total k-point
mgetstr(12,fid);
tot_band=mfscanf(1,fid,'%d')
mgetstr(6,fid);
tot_k=mfscanf(1,fid,'%d')
mgetl(fid,1);
if tot_k~=sum(k_div) then
disp('Error, tot_k~=k_div')
mclose(fid)
abort
end
// read k-point & band eigenvalues
k_point=zeros(tot_k,3);
k_band=zeros(tot_band,tot_k);
count=0;
while meof(fid)==0
count=count+1;
k_point(count,:)=mfscanf(1,fid,'%f %f %f');
mgetl(fid,1)
k_band(:,count)=gsort(mfscanf(tot_band,fid,'%f '),'g','i');
end
mclose(fid);
if E_shift=='yes' then
k_band=k_band-E_Fermi;
E_Fermi=0;
end
// plot bands
plot([1:tot_k]',k_band','b','linewidth',2);
// plot k-path divider
k_loc=zeros(length(k_div)-1,1)
for n=1:length(k_div)-1
k_loc(n)=sum(k_div(1:n))+1
disp(k_loc(n))
plot(k_loc(n)*ones(20,1),linspace(max(k_band)+0.5,min(k_band)-0.5,20)','k:')
end
k_loc=[1;k_loc]
// plot E_Fermi
plot((1:tot_k)',E_Fermi*ones(tot_k,1),'r:')
a=gca();
a.data_bounds=[1, E_bound(1);tot_k, E_bound(2)];
a.tight_limits='on'
a.font_size=4
a.thickness=3
b=a.x_ticks
b(2)=k_loc';
b(3)=k_label;
a.x_ticks=b
title('Band Structure','fontsize',4);
xlabel('$k$','fontsize',4); ylabel('Energy (eV)',"fontsize", 4);
xs2png(0,'band.png')
|
d3bb614b5f9d19de5c5f3463f98aef0385376fea | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH13/EX13.20/Ex13_20.sce | c7d5888e28bb1fb2a32addffd90461768482ebd7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 379 | sce | Ex13_20.sce | clear
//Given
P=400 //W
Ev=250 //V
Iv=2.5 //A
f=50
//Calculation
//
a=P/(Ev*Iv)
Z=Ev/Iv
R=Z*a
Xl=sqrt(Z**2-R**2)
L=Xl/(2*%pi*f)
//Result
printf("\n (i) The power factor is %0.3f lag",a)
printf("\n (ii) Resistance of the coil is %0.3f ohm", R)
printf("\n (iii) Inductance of the coil is %0.3f H",L)
|
dc5b68f0d3f3d6c76bc0995cb22e7c001244eedd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH5/EX5.1/Exa5_1.sce | 4fcb5c64cd4cacff10b89449679a5c9f70582556 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 223 | sce | Exa5_1.sce | //Exa 5.1
clc;
clear;
close;
//Given data :
A=50;//gain(unitless)
Af=10;//gain(unitless)
//Formula : Af=A/(1+A*Beta)
Beta=(A/Af-1)/A;//feedback ratio (unitless)
disp(Beta*100,"Percentage of output fed back(%) : "); |
4d53a2a8b92200318b24c0274a2661178626f861 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/MP82VCF/ATWM1_Working_Memory_MEG_MP82VCF_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce | c3eca4b9e81d202d7dc64ae98930f21215cf11aa | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,596 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
43 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_162 gabor_072 gabor_017 gabor_146 gabor_162 gabor_072_alt gabor_017_alt gabor_146 "2_1_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_162_072_017_146_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_146_framed blank blank blank blank fixation_cross_target_position_1_4 "2_1_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_004 gabor_055 gabor_019 gabor_073 gabor_004 gabor_055_alt gabor_019_alt gabor_073 "2_2_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_004_055_019_073_target_position_1_4_retrieval_position_1" gabor_143_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_2_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2042 2992 2142 fixation_cross gabor_092 gabor_040 gabor_146 gabor_073 gabor_092 gabor_040 gabor_146_alt gabor_073_alt "2_3_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_092_040_146_073_target_position_1_2_retrieval_position_2" gabor_circ gabor_179_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_3_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1892 2992 2242 fixation_cross gabor_132 gabor_168 gabor_063 gabor_045 gabor_132_alt gabor_168 gabor_063_alt gabor_045 "2_4_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2250_gabor_patch_orientation_132_168_063_045_target_position_2_4_retrieval_position_1" gabor_084_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_4_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2142 2992 2392 fixation_cross gabor_014 gabor_144 gabor_033 gabor_102 gabor_014 gabor_144_alt gabor_033_alt gabor_102 "2_5_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_014_144_033_102_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_target_position_1_4 "2_5_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2192 2992 2492 fixation_cross gabor_021 gabor_091 gabor_047 gabor_074 gabor_021_alt gabor_091 gabor_047 gabor_074_alt "2_6_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_021_091_047_074_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_002_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_6_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_006 gabor_054 gabor_143 gabor_162 gabor_006_alt gabor_054 gabor_143 gabor_162_alt "2_7_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_006_054_143_162_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_143_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_7_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_041 gabor_084 gabor_011 gabor_130 gabor_041_alt gabor_084_alt gabor_011 gabor_130 "2_8_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_041_084_011_130_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_011_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_8_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2092 2992 2492 fixation_cross gabor_022 gabor_051 gabor_073 gabor_093 gabor_022 gabor_051 gabor_073_alt gabor_093_alt "2_9_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_022_051_073_093_target_position_1_2_retrieval_position_1" gabor_162_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_9_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1792 2992 2342 fixation_cross gabor_038 gabor_007 gabor_074 gabor_091 gabor_038_alt gabor_007 gabor_074_alt gabor_091 "2_10_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_038_007_074_091_target_position_2_4_retrieval_position_2" gabor_circ gabor_007_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_10_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2242 2992 2592 fixation_cross gabor_132 gabor_046 gabor_103 gabor_063 gabor_132 gabor_046_alt gabor_103 gabor_063_alt "2_11_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_132_046_103_063_target_position_1_3_retrieval_position_1" gabor_087_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_11_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1792 2992 2042 fixation_cross gabor_175 gabor_034 gabor_142 gabor_009 gabor_175 gabor_034_alt gabor_142_alt gabor_009 "2_12_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2050_gabor_patch_orientation_175_034_142_009_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_12_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_095_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2042 2992 2492 fixation_cross gabor_069 gabor_004 gabor_121 gabor_086 gabor_069_alt gabor_004 gabor_121 gabor_086_alt "2_13_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_069_004_121_086_target_position_2_3_retrieval_position_2" gabor_circ gabor_004_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_13_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 2242 2992 2592 fixation_cross gabor_063 gabor_086 gabor_027 gabor_132 gabor_063_alt gabor_086_alt gabor_027 gabor_132 "2_14_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2250_3000_2600_gabor_patch_orientation_063_086_027_132_target_position_3_4_retrieval_position_1" gabor_063_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_14_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1942 2992 2342 fixation_cross gabor_153 gabor_169 gabor_048 gabor_082 gabor_153_alt gabor_169 gabor_048_alt gabor_082 "2_15_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_153_169_048_082_target_position_2_4_retrieval_position_2" gabor_circ gabor_123_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_15_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1742 2992 2292 fixation_cross gabor_066 gabor_135 gabor_115 gabor_025 gabor_066_alt gabor_135 gabor_115 gabor_025_alt "2_16_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_066_135_115_025_target_position_2_3_retrieval_position_2" gabor_circ gabor_135_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_16_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1742 2992 2492 fixation_cross gabor_084 gabor_064 gabor_105 gabor_153 gabor_084 gabor_064_alt gabor_105_alt gabor_153 "2_17_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_084_064_105_153_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_153_framed blank blank blank blank fixation_cross_target_position_1_4 "2_17_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_178 gabor_059 gabor_145 gabor_104 gabor_178 gabor_059 gabor_145_alt gabor_104_alt "2_18_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_178_059_145_104_target_position_1_2_retrieval_position_1" gabor_178_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_18_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2192 2992 2392 fixation_cross gabor_143 gabor_120 gabor_091 gabor_010 gabor_143_alt gabor_120_alt gabor_091 gabor_010 "2_19_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_143_120_091_010_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_059_framed blank blank blank blank fixation_cross_target_position_3_4 "2_19_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1942 2992 2042 fixation_cross gabor_150 gabor_101 gabor_044 gabor_083 gabor_150 gabor_101 gabor_044_alt gabor_083_alt "2_20_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2050_gabor_patch_orientation_150_101_044_083_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_083_framed blank blank blank blank fixation_cross_target_position_1_2 "2_20_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_083_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2042 2992 2542 fixation_cross gabor_057 gabor_088 gabor_174 gabor_115 gabor_057_alt gabor_088 gabor_174_alt gabor_115 "2_21_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_057_088_174_115_target_position_2_4_retrieval_position_2" gabor_circ gabor_041_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_21_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2192 2992 1942 fixation_cross gabor_008 gabor_027 gabor_150 gabor_045 gabor_008_alt gabor_027_alt gabor_150 gabor_045 "2_22_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_008_027_150_045_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_093_framed blank blank blank blank fixation_cross_target_position_3_4 "2_22_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_065 gabor_141 gabor_172 gabor_085 gabor_065 gabor_141_alt gabor_172 gabor_085_alt "2_23_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_065_141_172_085_target_position_1_3_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_23_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 2142 2992 1992 fixation_cross gabor_150 gabor_168 gabor_085 gabor_107 gabor_150 gabor_168 gabor_085_alt gabor_107_alt "2_24_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2000_gabor_patch_orientation_150_168_085_107_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_130_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_24_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_130_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2242 2992 1992 fixation_cross gabor_079 gabor_124 gabor_048 gabor_019 gabor_079_alt gabor_124 gabor_048_alt gabor_019 "2_25_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2000_gabor_patch_orientation_079_124_048_019_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_158_framed blank blank blank blank fixation_cross_target_position_2_4 "2_25_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_068 gabor_027 gabor_096 gabor_177 gabor_068 gabor_027_alt gabor_096 gabor_177_alt "2_26_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_068_027_096_177_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_050_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_26_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_002 gabor_179 gabor_149 gabor_069 gabor_002_alt gabor_179 gabor_149_alt gabor_069 "2_27_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_002_179_149_069_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_069_framed blank blank blank blank fixation_cross_target_position_2_4 "2_27_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_069_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1942 2992 2192 fixation_cross gabor_121 gabor_168 gabor_035 gabor_016 gabor_121 gabor_168_alt gabor_035 gabor_016_alt "2_28_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_121_168_035_016_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_035_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_28_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1892 2992 2142 fixation_cross gabor_151 gabor_006 gabor_169 gabor_036 gabor_151_alt gabor_006 gabor_169_alt gabor_036 "2_29_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_151_006_169_036_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_036_framed blank blank blank blank fixation_cross_target_position_2_4 "2_29_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_064 gabor_010 gabor_091 gabor_154 gabor_064 gabor_010_alt gabor_091 gabor_154_alt "2_30_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_064_010_091_154_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_091_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_30_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1892 2992 1942 fixation_cross gabor_116 gabor_040 gabor_091 gabor_149 gabor_116_alt gabor_040 gabor_091 gabor_149_alt "2_31_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_116_040_091_149_target_position_2_3_retrieval_position_2" gabor_circ gabor_178_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_31_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 2192 2992 1942 fixation_cross gabor_144 gabor_166 gabor_112 gabor_038 gabor_144_alt gabor_166 gabor_112 gabor_038_alt "2_32_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_1950_gabor_patch_orientation_144_166_112_038_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_088_framed blank blank blank blank fixation_cross_target_position_2_3 "2_32_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_088_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_158 gabor_046 gabor_126 gabor_016 gabor_158_alt gabor_046 gabor_126_alt gabor_016 "2_33_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_158_046_126_016_target_position_2_4_retrieval_position_2" gabor_circ gabor_046_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_33_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2192 2992 2142 fixation_cross gabor_140 gabor_094 gabor_058 gabor_078 gabor_140 gabor_094_alt gabor_058 gabor_078_alt "2_34_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_140_094_058_078_target_position_1_3_retrieval_position_1" gabor_005_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_34_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1792 2992 2242 fixation_cross gabor_119 gabor_087 gabor_048 gabor_165 gabor_119_alt gabor_087 gabor_048 gabor_165_alt "2_35_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_119_087_048_165_target_position_2_3_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_35_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2042 2992 2092 fixation_cross gabor_172 gabor_083 gabor_015 gabor_056 gabor_172 gabor_083_alt gabor_015 gabor_056_alt "2_36_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_172_083_015_056_target_position_1_3_retrieval_position_1" gabor_034_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_36_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_027 gabor_090 gabor_133 gabor_063 gabor_027_alt gabor_090 gabor_133_alt gabor_063 "2_37_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_027_090_133_063_target_position_2_4_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_37_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1942 2992 1892 fixation_cross gabor_178 gabor_133 gabor_066 gabor_043 gabor_178 gabor_133_alt gabor_066 gabor_043_alt "2_38_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_178_133_066_043_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_043_framed blank blank blank blank fixation_cross_target_position_1_3 "2_38_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_043_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_172 gabor_139 gabor_032 gabor_061 gabor_172 gabor_139_alt gabor_032 gabor_061_alt "2_39_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_172_139_032_061_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_082_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_39_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_155 gabor_047 gabor_029 gabor_134 gabor_155 gabor_047_alt gabor_029_alt gabor_134 "2_40_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_155_047_029_134_target_position_1_4_retrieval_position_1" gabor_155_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_40_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 2142 2992 1892 fixation_cross gabor_140 gabor_079 gabor_099 gabor_032 gabor_140 gabor_079_alt gabor_099 gabor_032_alt "2_41_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_1900_gabor_patch_orientation_140_079_099_032_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_032_framed blank blank blank blank fixation_cross_target_position_1_3 "2_41_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_032_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1842 2992 2542 fixation_cross gabor_061 gabor_040 gabor_168 gabor_002 gabor_061 gabor_040_alt gabor_168_alt gabor_002 "2_42_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2550_gabor_patch_orientation_061_040_168_002_target_position_1_4_retrieval_position_1" gabor_111_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_42_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_137 gabor_158 gabor_068 gabor_025 gabor_137 gabor_158 gabor_068_alt gabor_025_alt "2_43_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_137_158_068_025_target_position_1_2_retrieval_position_2" gabor_circ gabor_158_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_43_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1992 2992 2092 fixation_cross gabor_148 gabor_063 gabor_097 gabor_030 gabor_148 gabor_063_alt gabor_097_alt gabor_030 "2_44_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_148_063_097_030_target_position_1_4_retrieval_position_1" gabor_008_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_44_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_145 gabor_056 gabor_177 gabor_020 gabor_145 gabor_056 gabor_177_alt gabor_020_alt "2_45_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_145_056_177_020_target_position_1_2_retrieval_position_2" gabor_circ gabor_056_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_45_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_180 gabor_047 gabor_094 gabor_028 gabor_180 gabor_047_alt gabor_094 gabor_028_alt "2_46_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_180_047_094_028_target_position_1_3_retrieval_position_1" gabor_135_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_46_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1942 2992 2242 fixation_cross gabor_022 gabor_177 gabor_160 gabor_089 gabor_022 gabor_177_alt gabor_160 gabor_089_alt "2_47_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2250_gabor_patch_orientation_022_177_160_089_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_089_framed blank blank blank blank fixation_cross_target_position_1_3 "2_47_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_089_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1992 2992 2292 fixation_cross gabor_005 gabor_140 gabor_059 gabor_082 gabor_005_alt gabor_140_alt gabor_059 gabor_082 "2_48_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_005_140_059_082_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_033_framed blank blank blank blank fixation_cross_target_position_3_4 "2_48_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_033_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_056 gabor_120 gabor_172 gabor_002 gabor_056 gabor_120_alt gabor_172 gabor_002_alt "2_49_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_056_120_172_002_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_172_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_49_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_068 gabor_111 gabor_095 gabor_053 gabor_068 gabor_111_alt gabor_095 gabor_053_alt "2_50_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_068_111_095_053_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_50_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 2092 2992 2442 fixation_cross gabor_097 gabor_160 gabor_046 gabor_079 gabor_097 gabor_160_alt gabor_046 gabor_079_alt "2_51_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2450_gabor_patch_orientation_097_160_046_079_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_129_framed blank blank blank blank fixation_cross_target_position_1_3 "2_51_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_129_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_089 gabor_178 gabor_011 gabor_129 gabor_089_alt gabor_178_alt gabor_011 gabor_129 "2_52_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_089_178_011_129_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_011_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_52_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_027 gabor_114 gabor_050 gabor_160 gabor_027_alt gabor_114_alt gabor_050 gabor_160 "2_53_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_027_114_050_160_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_53_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1742 2992 2592 fixation_cross gabor_123 gabor_100 gabor_066 gabor_045 gabor_123_alt gabor_100_alt gabor_066 gabor_045 "2_54_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2600_gabor_patch_orientation_123_100_066_045_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_180_framed blank blank blank blank fixation_cross_target_position_3_4 "2_54_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_073 gabor_016 gabor_055 gabor_124 gabor_073_alt gabor_016 gabor_055 gabor_124_alt "2_55_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_073_016_055_124_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_055_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_55_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_040 gabor_097 gabor_022 gabor_080 gabor_040_alt gabor_097 gabor_022_alt gabor_080 "2_56_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_040_097_022_080_target_position_2_4_retrieval_position_2" gabor_circ gabor_097_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_56_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1892 2992 2292 fixation_cross gabor_031 gabor_116 gabor_139 gabor_083 gabor_031_alt gabor_116 gabor_139_alt gabor_083 "2_57_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_031_116_139_083_target_position_2_4_retrieval_position_2" gabor_circ gabor_116_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_57_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1992 2992 2342 fixation_cross gabor_113 gabor_049 gabor_136 gabor_089 gabor_113_alt gabor_049_alt gabor_136 gabor_089 "2_58_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2350_gabor_patch_orientation_113_049_136_089_target_position_3_4_retrieval_position_2" gabor_circ gabor_049_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_58_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_049_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_052 gabor_115 gabor_008 gabor_135 gabor_052 gabor_115_alt gabor_008_alt gabor_135 "2_59_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_052_115_008_135_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_135_framed blank blank blank blank fixation_cross_target_position_1_4 "2_59_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2092 2992 2192 fixation_cross gabor_042 gabor_071 gabor_132 gabor_113 gabor_042_alt gabor_071 gabor_132 gabor_113_alt "2_60_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_042_071_132_113_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_179_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_60_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_076 gabor_045 gabor_161 gabor_115 gabor_076 gabor_045_alt gabor_161 gabor_115_alt "2_61_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_076_045_161_115_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_161_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_61_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_130 gabor_015 gabor_064 gabor_081 gabor_130_alt gabor_015 gabor_064_alt gabor_081 "2_62_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_130_015_064_081_target_position_2_4_retrieval_position_2" gabor_circ gabor_015_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_62_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1742 2992 1942 fixation_cross gabor_122 gabor_178 gabor_096 gabor_147 gabor_122_alt gabor_178 gabor_096_alt gabor_147 "2_63_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_1950_gabor_patch_orientation_122_178_096_147_target_position_2_4_retrieval_position_1" gabor_072_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_63_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_072_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_075 gabor_140 gabor_055 gabor_099 gabor_075 gabor_140 gabor_055_alt gabor_099_alt "2_64_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_075_140_055_099_target_position_1_2_retrieval_position_1" gabor_075_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_64_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_067 gabor_028 gabor_048 gabor_133 gabor_067_alt gabor_028 gabor_048_alt gabor_133 "2_65_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_067_028_048_133_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_088_framed blank blank blank blank fixation_cross_target_position_2_4 "2_65_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1842 2992 1942 fixation_cross gabor_073 gabor_006 gabor_138 gabor_023 gabor_073 gabor_006_alt gabor_138_alt gabor_023 "2_66_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_073_006_138_023_target_position_1_4_retrieval_position_2" gabor_circ gabor_053_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_66_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_053_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_087 gabor_118 gabor_004 gabor_046 gabor_087 gabor_118_alt gabor_004_alt gabor_046 "2_67_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_087_118_004_046_target_position_1_4_retrieval_position_1" gabor_134_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_67_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2042 2992 1892 fixation_cross gabor_101 gabor_179 gabor_159 gabor_117 gabor_101 gabor_179_alt gabor_159_alt gabor_117 "2_68_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_101_179_159_117_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_target_position_1_4 "2_68_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1792 2992 2342 fixation_cross gabor_027 gabor_091 gabor_002 gabor_062 gabor_027 gabor_091_alt gabor_002 gabor_062_alt "2_69_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2350_gabor_patch_orientation_027_091_002_062_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_062_framed blank blank blank blank fixation_cross_target_position_1_3 "2_69_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_062_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1892 2992 2542 fixation_cross gabor_140 gabor_077 gabor_003 gabor_162 gabor_140 gabor_077_alt gabor_003_alt gabor_162 "2_70_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_140_077_003_162_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_113_framed blank blank blank blank fixation_cross_target_position_1_4 "2_70_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
c6ea98689c2e61fce55d3e14fe6efe90a1acb865 | 1988df91caa448a35bbf274a6d2698fe434571b1 | /tst/prolegomena/appd_untyped.tst | ae80ede110a9b788dae6a250f0671e0eaa14390e | [] | 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 | 295 | tst | appd_untyped.tst | fetch ../tst/prolegomena/appa.tst;
fetch ../tst/prolegomena/appb.tst;
declare funconst length 1;
attach cons to CONS;
attach car to CAR;
attach cdr to CDR;
attach nil to NIL;
attach length to LENGTH;
simplify length(cons(nil, cons(nil, nil)))=suc(suc(zro));
simplify zro < prd(suc(suc(zro))); |
ca09c1deebacc6f3145c9bf9cecacc6795096383 | 6fceb8a7cf65333dfe75020d8e295f16381216d8 | /Thesis/codes/calcReliabilityDistributedNet.sci | 4bc34f7069fc72f5c239bc964f60f2d60329af0a | [] | no_license | eamanu/ThesisDesarrolloInformaticoDeAplicacionEspacial | 69fd4e253c7c85166cc9abbabc7d316dfe90c896 | 313af0b4b793a9912a3dfc7d02232eed5fcce2b5 | refs/heads/master | 2020-04-05T00:09:14.555117 | 2018-10-27T11:31:54 | 2018-10-27T11:32:41 | 156,385,548 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,037 | sci | calcReliabilityDistributedNet.sci | function [R_sys] = calcRDistNet(lambda, c, v)
t = [0:0.0001:1];
R = %e ^{lambda * -t};
//open a file
fid = mopen("data2.txt", "w");
if (fid==-1) then
error("cannot open the file")
end
R_tot = R^8;
R_sys = 0.0;
// todo ok
R_sys = R_tot
// falla un nodo
R_sys1 = R_tot - ((1-(R_tot*c))^1)
// falla dos nodos
R_sys2 = R_tot - ((1-(R_tot*c))^2)
// falla tres nodos
R_sys3 = R_tot - ((1-(R_tot*c))^3)
//falla cuatro nodos
R_sys4 = R_tot - ((1-(R_tot*c))^4)
R_sys_total = R_sys + R_sys1 + R_sys2 + R_sys3 + R_sys4
plot (t, R_sys, "b-");
xlabel("Tiempo adimensional")
ylabel("Confiabilidad")
f=get("current_figure")
f.background = 8;
legend(['R(Red Distr)'; 'R(Red Distr) con 4 nodos fallados']);
//write file
sR = size(R_sys_total);
mfprintf(fid, "%ld\n",-255) ;
for i = 1:sR(2)
mfprintf(fid, "%f ", R_sys(i));
end
return R_sys;
endfunction
|
e692fe0609a9afcb24cd4241f1fe0e426b258154 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2204/CH4/EX4.18/ex4_18.sce | 0803b585180953d9899847247af4dd0e21c69e1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | ex4_18.sce | // Exa 4.18
clc;
clear;
close;
// Given data
Vmax= 10;// in µV
f= 2*10^3;// in kHz
//Vin= Vmax*sin(2*%pi*f*t);// in µV
disp("The input voltage is "+string(Vmax)+"*sin ("+string(2*f)+"%pi*t) µV")
|
b585e734cbb27524b7e2d875da56e6ff83ddefc4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2489/CH15/EX15.7/15_7.sce | 51ffc27ce05d0e996dade9a8621d322dcec8da31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | 15_7.sce | clc
//Intitalisation of variables
clear
ch= 5.46*10^-5 //g ion per litre
ph= 8.752
//CALCULATIONS
pH= -log10(ch)
ch1= 10^(-ph)
//RESULTS
printf ('pH = %.3f',pH)
printf ('\n Hydrogen ion concentration = %.3e g ion per litre',ch1)
|
13d64f9eaa2b9e28975e9b8bea0a64d62eaf5e27 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH3/EX3.12/3_12.sce | b19fee92b08d69228c2751a6d0333b5aeb95394f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 625 | sce | 3_12.sce | clear;
clc;
d=500;
z=complex(.105, .3768);
y=complex(0, 2.822e-6);
Z=z*d;
Y=y*d;
YZ=Y*Z;
A=1+(YZ/2)+((YZ)^2/24);
B=Z * (1+(YZ/6)+((YZ)^2/120));
C=Y * (1+(YZ/6)+((YZ)^2/120));
D=A;
Vr=220e3/sqrt(3);
Pr=40e6;
pf=.9;
pfa=-1*acos(pf);
Ir=0;
Vs=(A*Vr)+(B*Ir);
V=abs(Vs);
vs=sqrt(3)*V*1e-3;
phi1=atan(imag(Vs)/real(Vs))*(180/%pi);
mprintf("\nSending End Voltage = %.2f kV",vs);
Is=(C*Vr)+(D*Ir);
I=abs(Is);
phi2=atan(imag(Is)/real(Is))*(180/%pi);
mprintf("\nSending End Current = %.1f A",I);
phi2=phi2+180;
phi=phi1-phi2;
pfs=cosd(phi);
mprintf("\nSending End Power factor = %.4f ",pfs);
|
cabe9484063e0fbe61340027a27d50ee9ecfe452 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/xarcs.man.tst | 710f8986ff3c9807906aa0ed6d640e262db26f33 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | tst | xarcs.man.tst | clear;lines(0);
plot2d(0,0,-1,"031"," ",[-1,-1,1,1])
arcs=[-1.0 0.0 0.5; // upper left x
1.0 0.0 0.5; // upper left y
0.5 1.0 0.5; // width
0.5 0.5 1.0; // height
0.0 0.0 0.0; // angle 1
180*64 360*64 90*64]; // angle 2
xarcs(arcs,[1,2,3])
|
1f800669c9743ccaea383d1ea57aedbb26d36e3a | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/scicos/clickin.sci | a8315063ceee5cbd45032801eff3ef149f26732b | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 2,762 | sci | clickin.sci | function [o,modified,newparameters,needcompile,edited]=clickin(o)
// o : structure of clicked object, may be modified
// modified : boolean, indicates if simulation time parameters
// have been changed
// newparameters : only defined for super blocks, gives pointers to
// sub-blocks for which parameters or states have been changed
// needcompile : indicates if modification implies a new compilation
//!
// Copyright INRIA
modified=%f;newparameters=list();needcompile=0;
if o(1)=='Block' then
model=o(3)
//find output port location projected on the block
[xout,yout,typout]=getoutputs(o)
if xout<>[] then
xxyymax=o(2)(1)(:)+o(2)(2)(:)
xout=max(min(xout,xxyymax(1)),o(2)(1)(1))
yout=max(min(yout,xxyymax(2)),o(2)(1)(2))
// how close to the port is considered a link (/5)
if or(abs(xc-xout)<o(2)(2)(1)/5&abs(yc-yout)<o(2)(2)(2)/5) then
//we have clicked near a port
[Cmenu]=resume('Link (l)')
end
end
if model(1)=='super' then
lastwin=curwin
curwin=get_new_window(windows)
xset('window',curwin)
execstr('scs_m_'+string(slevel)+'=scs_m')
execstr('[o_n,needcompile,newparameters]='+o(5)+'(''set'',o)')
//edited variable is returned by SUPER_f
modified=prod(size(newparameters))>0
curwin=lastwin
if(~(or(curwin==winsid()))) then o=o_n;Cmenu=resume('Open/Set (o)');end
xset('window',curwin)
xselect()
elseif model(1)=='csuper' then
execstr('[o_n,needcompile,newparameters]='+o(5)+'(''set'',o)')
modified=prod(size(newparameters))>0
edited=modified
else
execstr('o_n='+o(5)+'(''set'',o)')
edited=or(o<>o_n)
model=o(3)
model_n=o_n(3)
modified=or(model(1)<>model_n(1))|..
or(model(6)<>model_n(6))|..
or(model(7)<>model_n(7))|..
or(model(8)<>model_n(8))|..
or(model(9)<>model_n(9))
if or(model(2)<>model_n(2))|or(model(3)<>model_n(3)) then
// input or output port sizes changed
needcompile=1
end
if or(model(11)<>model_n(11)) then
// initexe changed
needcompile=2
end
if model(1)=='input'|model(1)=='output' then
if model(9)<>model_n(9) then
needcompile=4
end
end
if or(model(10)<>model_n(10))|or(model(12)<>model_n(12)) then
// type 'c','d','z','l' or dep_ut changed
needcompile=4
end
if prod(size(model_n(1)))>1 then
if model_n(1)(2)>1000 then // Fortran or C Block
if model(1)(1)<>model_n(1)(1) then //function name has changed
needcompile=4
end
end
end
end
o=o_n
elseif o(1)=='Link' then
[Cmenu]=resume('Link (l)')
elseif o(1)=='Text' then
execstr('o_n='+o(5)+'(''set'',o)')
edited=or(o<>o_n)
o=o_n
end
|
b53ce5626c340944f2335c9bd82f7d3b022e7019 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH9/EX9.38/Ex9_38.sce | 362182881b74cf17bc30814b093a4d74ee5dedff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 126 | sce | Ex9_38.sce | clear
//Given
V=100
v=1
a=1980
//Calculation
Rm=a/(V-v)
//Result
printf("\n Resistance of the voltmeter is %0.3f ohm", Rm)
|
3754deeaa2032483b17ac3c8ad91f04b9e27e978 | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH3/EX3.1/ex1.sce | 148152d9e2eab2d8db6a3d4919f8f8481a76a4c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | ex1.sce | //Example 3.1: Peak value of diode current and maximum reverse voltage
//v_s is sinusoidal input voltage with peak 24V
//battery charges to 12V
I_d=(24-12)/100
max_v_rev=24+12;
disp(I_d,"peak value of diode current (A)", max_v_rev,"maximum reverse voltage acrossthe diode (V)") |
6b8fd89d32141965c90213a95e5b17fc253ae15c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2549/CH3/EX3.4.2/Ex3_4_2.sce | 46f2a378a6c9c6e0338e56284eb7394f3f332449 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,226 | sce | Ex3_4_2.sce | //Ex3.4.2
//calculation of parameter for half wave rectifier ckt
clc;
clear;
//given
Rs=5;//resistance of transformer secondary winding
Rf=50;//forward resistance of diode
Rl=1000;//load resistance
N=1/4;//ratio of no. of turns secondary to primary winding (Ns/Np)
V=240;//input ac voltage
Vs_rms=N*V;//rms secondary voltage
Vm=sqrt(2)*Vs_rms;//peak secondary voltage
Im=Vm/(Rs+Rf+Rl);//peak load current
Il_dc=Im/%pi;//avg load current
Vl_dc=Il_dc*Rl;//avg load voltage
disp('Part(1)');
disp('Ampere',Il_dc,'Average load Current is :');
disp('Volt',Vl_dc,'Average load Voltage is :');
Il_rms=Im/2;//rms load current
Vl_rms=Il_rms*Rl;//rms load voltage
disp('Part(2)');
disp('Ampere',Il_rms,'rms load Current is :');
disp('Volt',Vl_rms,'rms load Voltage is :');
Pl_dc=(Il_dc^2)*Rl;//dc load power
Is_rms=Il_rms;//Is_rms is secondary rms current
Pac=(Is_rms^2)*(Rs+Rf+Rl);//ac input power
disp('Part(3)');
disp('Watt',Pl_dc,'DC load Power is :');
disp('Watt',Pac,'AC input Power is :');
n=(Pl_dc/Pac)*100;//rectification efficiency
disp('Part(4)');
disp('%',n,'Rectification Efficiency is :')
TUF=(Pl_dc/(Vs_rms*Is_rms))*100;
disp('Part(5)')
disp('%',TUF,'Tranformer Utilization Factor is:')
|
008f4f140ac81e7c6fa5df0a3c88af77bbbb5111 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2789/CH9/EX9.15/Ex9_15.sce | 23a5cc14a6c116926a9a3dea58205066c9be9c93 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 523 | sce | Ex9_15.sce | clear;
clc;
//page no. 324
Q = 2.5;//cfs
T = 50;//degreeF
d1 = 8;//in
d2 = 6;//in
l1 = 1000;//ft
l2 = 2000;//ft
V8 = Q/(0.25*%pi*(d1/12)^2);
V6 = Q/(0.25*%pi*(d2/12)^2);
R8 = V8*0.667/0.0000141;
f8 = 0.020;
R6 = V6*0.5/0.0000141;
f6 = 0.019;
h_L8 = f8*(l1/0.667)*(V8^2 /(2*32.2));
h_L6 = f6*(l2/0.5)*(V6^2 /(2*32.2));
Ep = 100+h_L8+h_L6;
n = Q*62.4*(Ep)/550;
V8 = sqrt((30/f8)*2*32.2/(l1/0.667));
Q_max = V8*0.25*%pi*(d1/12)^2;
printf('Maximum reliable flow that can be pumped = %.1f cfs',Q_max);
|
d5e57d655b70aad339c9905d08e774c2ce5eb4a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /881/CH20/EX20.1/exa20_1.sce | c090bc5a583bfeefd6984aa9fcb362483307ecd1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 413 | sce | exa20_1.sce | clc;
//Example 20.1
//Page No 768
//solution
N1=3;
N2=991;
//(a)
disp("(a)The transmit and receive carrier frequencies");
ft=((0.03*N1)+825);
disp('MHz',ft,"transmit ft = ");
fr=ft+45;
disp('MHz',fr,"receive fr = ");
//(b)
disp("(b)The transmit and receive carrier frequencies for channel 991 ");
Ft=((0.03*(N2-1023))+825);
disp('MHz',Ft,"transmit ft = ");
Fr=Ft+45;
disp('MHz',Fr,"receive fr = ");
|
d3b2cd998a9ef7a32d284f49d5f0cb9b9b8d1efe | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Planetside 2 Orion.sce | 23130dac717c6f8085a1fb719744ec73f9c7beb6 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 21,207 | sce | Planetside 2 Orion.sce | Name=Planetside 2 Orion
PlayerCharacters=Planetside
BotCharacters=Planetside.bot;Planetside.bot;Planetside.bot;Planetside.bot;Planetside.bot
IsChallenge=true
Timelimit=90.0
PlayerProfile=Planetside
AddedBots=Planetside.bot;Planetside.bot;Planetside.bot;Planetside.bot
PlayerMaxLives=0
BotMaxLives=0;0;0;0
PlayerTeam=1
BotTeams=0;0;0;0
MapName=kovaim1.map
MapScale=7.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=100.0
ScorePerDamage=0.0
ScorePerKill=150.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=Planetside2
WeaponHeroTag=Orion
DifficultyTag=1
AuthorsTag=kammy
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=true
Description=Planetside 2 Orion
GameVersion=2.0.1.1
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=Planetside
DodgeProfileNames=CsRandom1
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Planetside
SeeThroughWalls=true
NoDodging=false
NoAiming=true
AbilityUseTimer=0.1
UseAbilityFrequency=0.0
UseAbilityFreqMinTime=0.1
UseAbilityFreqMaxTime=0.1
ShowLaser=false
LaserRGB=X=0.810 Y=0.200 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=Planetside
MaxHealth=1000.0
WeaponProfileNames=Orion VS54;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=500.0
MaxCrouchSpeed=250.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=400.0
Gravity=1.225
AirControl=0.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.478 Y=0.000 Z=1.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=1.000 Y=0.560 Z=0.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=true
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=CsRandom1
MaxTargetDistance=5000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.01
MaxLRTimeChange=2.0
MinFBTimeChange=0.01
MaxFBTimeChange=1.0
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.02
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=1.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Weapon Profile]
Name=Orion VS54
Type=Projectile
ShotsPerClick=1
DamagePerShot=143.0
KnockbackFactor=0.0
TimeBetweenShots=0.08
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=54000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=54000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=50
AmmoPerShot=1
ReloadTimeFromEmpty=3.0
ReloadTimeFromPartial=3.44
DamageFalloffStartDistance=6500.0
DamageFalloffStopDistance=1000.0
DamageAtMaxRange=112.0
DelayBeforeShot=0.0
ProjectileGraphic=Plasma
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.12
CanAimDownSight=true
ADSZoomDelay=0.13
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=10.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=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=0.74
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=55.0
ADSFOVScale=Vertical (1:1)
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=true
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Triple Tap Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.1
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.1
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.08
ReloadBeforeRecovery=false
3rdPersonWeaponModel=AK47
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=Rifle
ParticleWallImpact=Flare
ParticleBodyImpact=
ParticleProjectileTrail=
ParticleHitscanTrace=
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.04,13.0,0.1,7.0
SpreadSCA=0.04,13.0,0.1,7.0
SpreadMSA=0.04,13.0,0.4,7.0
SpreadMCA=0.04,13.0,0.2,7.0
SpreadSSH=0.1,13.0,2.5,7.0
SpreadSCH=0.1,13.0,2.25,7.0
SpreadMSH=0.1,13.0,3.25,7.0
SpreadMCH=0.1,13.0,2.75,7.0
MaxRecoilUp=0.4
MinRecoilUp=0.4
MinRecoilHoriz=-0.22
MaxRecoilHoriz=0.22
FirstShotRecoilMult=2.25
RecoilAutoReset=true
TimeToRecoilPeak=0.08
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-576.000000 0.000000 256.000000
448.000000 0.000000 256.000000
448.000000 0.000000 -768.000000
-576.000000 0.000000 -768.000000
-576.000000 -16.000000 256.000000
448.000000 -16.000000 256.000000
448.000000 -16.000000 -768.000000
-576.000000 -16.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
448.000000 272.000000 -784.000000
-576.000000 272.000000 -784.000000
-576.000000 0.000000 -768.000000
448.000000 0.000000 -768.000000
448.000000 0.000000 -784.000000
-576.000000 0.000000 -784.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 272.000000 272.000000
448.000000 272.000000 272.000000
448.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 0.000000 272.000000
448.000000 0.000000 272.000000
448.000000 0.000000 256.000000
-576.000000 0.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
448.000000 272.000000 256.000000
464.000000 272.000000 256.000000
464.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
448.000000 0.000000 256.000000
464.000000 0.000000 256.000000
464.000000 0.000000 -768.000000
448.000000 0.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-592.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 272.000000 -768.000000
-592.000000 272.000000 -768.000000
-592.000000 0.000000 256.000000
-576.000000 0.000000 256.000000
-576.000000 0.000000 -768.000000
-592.000000 0.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-592.000000 704.000000 256.000000
-576.000000 704.000000 256.000000
-576.000000 704.000000 -768.000000
-592.000000 704.000000 -768.000000
-592.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 272.000000 -768.000000
-592.000000 272.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
448.000000 704.000000 256.000000
464.000000 704.000000 256.000000
464.000000 704.000000 -768.000000
448.000000 704.000000 -768.000000
448.000000 272.000000 256.000000
464.000000 272.000000 256.000000
464.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 704.000000 -768.000000
448.000000 704.000000 -768.000000
448.000000 704.000000 -784.000000
-576.000000 704.000000 -784.000000
-576.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
448.000000 272.000000 -784.000000
-576.000000 272.000000 -784.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 704.000000 272.000000
448.000000 704.000000 272.000000
448.000000 704.000000 256.000000
-576.000000 704.000000 256.000000
-576.000000 272.000000 272.000000
448.000000 272.000000 272.000000
448.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 720.000000 256.000000
448.000000 720.000000 256.000000
448.000000 720.000000 -768.000000
-576.000000 720.000000 -768.000000
-576.000000 704.000000 256.000000
448.000000 704.000000 256.000000
448.000000 704.000000 -768.000000
-576.000000 704.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 96.000000 -384.000000
-320.000000 96.000000 -384.000000
-320.000000 96.000000 -512.000000
-576.000000 96.000000 -512.000000
-576.000000 0.000000 -384.000000
-320.000000 0.000000 -384.000000
-320.000000 0.000000 -512.000000
-576.000000 0.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
192.000000 96.000000 0.000000
448.000000 96.000000 0.000000
448.000000 96.000000 -128.000000
192.000000 96.000000 -128.000000
192.000000 0.000000 0.000000
448.000000 0.000000 0.000000
448.000000 0.000000 -128.000000
192.000000 0.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
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -736.000000
entity
type CameraPath
UInt32 entityIdAttachedTo 5
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 320.000000 256.000000 320.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 224.000000
Vector3 angles 180.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position 416.000000 0.000000 -256.000000
Vector3 angles 270.000000 0.000000 0.000000
entity
type PlayerSpawn
Vector3 position -544.000000 0.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
|
2e7276348aaf86782071904d9535500b2792dcba | 449d555969bfd7befe906877abab098c6e63a0e8 | /3574/CH12/EX12.3/EX12_3.sce | f235ab7fa4950f5d60d5e5d0fa4f38b3d1a5de05 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,361 | sce | EX12_3.sce | // Example 12.3
// Computation of (a) Induced emf at rated load (b) No load voltage
// (c) Voltage regulation (d) What is the type of compounding?
// Page No. 492
clc;
clear;
close;
// Given data
Pload=320000; // Shunt generator power rating
Vrated=250; // Shunt generator voltage rating
Rf=20.2; // Shunt resistance
Rrheo=7.70; // Shunt field rheostat value
If=8.96; // Field current
Iload=1280; // Load current
Ra=0.00817; // Armature resistance
Rip=0.00238; // Resistance of interpole winding
Rse=0.00109; // Resistance of series winding
Nf=502; // Turns per pole
VNL=225; // No load voltage
// (a) Induced emf at rated load
Iload=Pload/Vrated; // Load current
If=Vrated/(Rf+Rrheo); // Field current
Ia=If+Iload; // Armature current
Racir=Ra+Rip+Rse;
Ea=Vrated+Ia*Racir;
// (b) No load voltage
Ff=Nf*If;
// (c) Voltage regulation
VR=(VNL-Vrated)*100/Vrated;
// Display result on command window
printf("\n Induced emf at rated load = %0.1f V ",Ea);
printf("\n No load voltage = %0.0f V ",VNL);
printf("\n Voltage regulation = %0.0f Percent ",VR);
printf("\n The machine is overcompounded ");
|
c3f6265c95da7fb3b3efad724c3ffed13c8eb1fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2204/CH5/EX5.23/ex5_23.sce | 7310f34b7d0770a2d79cecc3bd2686f9fc9f2b6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex5_23.sce | // Exa 5.23
clc;
clear;
close;
// Given data
f_L = 200;// in Hz
f_H = 1;// in kHz
f_H = f_H * 10^3;// in Hz
f_c = sqrt(f_H*f_L);// in Hz
disp(f_c,"The center frequency in Hz is");
Q = f_c/(f_H-f_L);
disp(Q,"Quality factor is");
|
50fe7df2910cf72c0f6ab0e5b5cf939725ed2c2c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH6/EX6.20/Ex6_20.sce | c3812283a4539465bd0e0ae58dd3a4ec1cc04f05 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,550 | sce | Ex6_20.sce | // chapter 6
// example 6.20
// Determine fundamental and various harmonics for various angle
// page-344-345
clear;
clc;
clf;
// given
Es=415; // in V (voltage supply)
f=50; // supply frequency
R_L=100; // in ohm (load resistance)
alpha=0:30:180; // in radian
n1=1, n5=5, n7=7, n11=11, n13=13;
// calculate
Em=Es*sqrt(2/3); // calculation of peak voltage
printf("\nThe angles are\t\t\t\t")
for alpha=0:30:180
printf("\t%.f\t",alpha);
end
printf("\nFundamental component of the supply current is");
for alpha=0:30:180
Edc=(3*sqrt(3)*Em/%pi)*cosd(alpha); // calculation of average voltage
Idc=Edc/R_L; // calculation of average output current
Isn1=abs((2*sqrt(2)*Idc/%pi)*cosd(30*n1)/n1);
printf("\t%.3f\t",Isn1);
end
printf("\n%.fth harmonics component is\t\t",n5);
for alpha=0:30:180
Edc=(3*sqrt(3)*Em/%pi)*cosd(alpha); // calculation of average voltage
Idc=Edc/R_L; // calculation of average output current
Isn5=abs((2*sqrt(2)*Idc/%pi)*cosd(30*5)/n5);
printf("\t%.3f\t",Isn5);
end
printf("\n%.fth harmonics component is\t\t",n7);
for alpha=0:30:180
Edc=(3*sqrt(3)*Em/%pi)*cosd(alpha); // calculation of average voltage
Idc=Edc/R_L; // calculation of average output current
Isn7=abs((2*sqrt(2)*Idc/%pi)*cosd(30*n7)/n7);
printf("\t%.3f\t",Isn7);
end
printf("\n%.fth harmonics component is\t\t",n11);
for alpha=0:30:180
Edc=(3*sqrt(3)*Em/%pi)*cosd(alpha); // calculation of average voltage
Idc=Edc/R_L; // calculation of average output current
Isn11=abs((2*sqrt(2)*Idc/%pi)*cosd(30*n11)/n11);
printf("\t%.3f\t",Isn11);
end
printf("\n%.fth harmonics component is\t\t",n13);
for alpha=0:30:180
Edc=(3*sqrt(3)*Em/%pi)*cosd(alpha); // calculation of average voltage
Idc=Edc/R_L; // calculation of average output current
Isn13=abs((2*sqrt(2)*Idc/%pi)*cosd(30*n13)/n13);
printf("\t%.3f\t",Isn13);
end
// plotting
// since to obtain a smooth graph alpha has been chosen as given below
alpha=[0:5:180]';
Edc=(3*sqrt(3)*Em/%pi)*cosd(alpha);
Idc=Edc/R_L;
Isn1=abs((2*sqrt(2)*Idc/%pi)*cosd(30*n1)/n1);
Isn5=abs((2*sqrt(2)*Idc/%pi)*cosd(30*5)/n5);
Isn7=abs((2*sqrt(2)*Idc/%pi)*cosd(30*n7)/n7);
Isn11=abs((2*sqrt(2)*Idc/%pi)*cosd(30*n11)/n11);
Isn13=abs((2*sqrt(2)*Idc/%pi)*cosd(30*n13)/n13);
plot2d(alpha,[Isn1 Isn5 Isn7 Isn11 Isn13],[1,2,3,4,5],leg="Isn1@Isn5@Isn7@Isn11@Isn11",nax=[2,7,2,10],rect=[0,0,180,5]);
xlabel("alpha (degrees)");
title("Fundamental and harmonic current with alpha");
// Note: The answers vary slightly due to precise calculations upto 6 decimal digit |
ce1b0ad5f6533d42d5bb12885bf744f2b44b77c2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH25/EX25.5/25Ex5.sce | bd51571279a3e874c5689b24d5f48f1c429fa9ae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 348 | sce | 25Ex5.sce | //Ch25_Ex5
clc;
clear;
close;
lt=200; bt=150; //dimensions of tank
lp=1.5; bp=1.25; //dimensions of pipe
rise=2
speed=20*1000/60; //converting speed into meter/min
volreq=lt*bt*rise;
length1min=speed*1; //length of water column flown in 1 min
vol1min=lp*bp*length1min;
time=volreq/vol1min;
mprintf("The time required is %d min",time);
|
a1976ab429f8d1b59b27416899f76378663056ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /3574/CH10/EX10.3/EX10_3.sce | 3c175ea8785776c5c3c6564c34f68bdf7793d10d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 461 | sce | EX10_3.sce | // Example 10.3
// Computation of no-load voltage if the voltage regulation is 2.3 percent
// Page No. 401
clc;
clear;
close;
// Given data
Vrated=240; // Rated voltage
VR=0.023; // Voltage regulation
// No-load voltage if the voltage regulation is 2.3 percent
Vnl=Vrated*(1+VR);
// Display result on command window
printf("\n No-load voltage if the voltage regulation is 2.3 percent = %0.1f V ",Vnl);
|
66b64fff248a67ee92e3722f2ba2b9f89752ce73 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.18_14.tst | a6648f186beaaa7f60784ce49f3c852c906eac48 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 3,878 | tst | bow.18_14.tst | 18 3:0.5 8:0.125 15:0.25 199:2.0 839:1.0 1079:0.3333333333333333 1389:1.0 1417:1.0 1486:1.0
18 3:0.5 11:0.0625 17:0.08333333333333333 20:1.0 199:1.0 340:1.0 614:0.16666666666666666 839:1.0 994:1.0 1079:0.3333333333333333 1765:1.0
18 3:0.5 8:0.25 9:0.3333333333333333 13:0.1111111111111111 15:0.5 16:1.0 17:0.08333333333333333 20:1.0 24:1.0 39:1.0 55:0.2 62:0.5 63:1.0 91:0.16666666666666666 189:1.0 204:0.5 284:0.5 340:1.0 350:0.3333333333333333 481:1.0 492:0.5 622:0.25 700:1.0 819:0.3333333333333333 1035:1.0 1240:1.0 1241:1.0 1410:1.0
18 4:0.5 8:0.125 11:0.125 15:0.5 20:0.5 32:0.5 33:0.25 37:0.125 55:0.4 83:1.0 199:1.0 294:1.0 303:0.14285714285714285 350:0.3333333333333333 627:1.0 1027:1.0 1028:1.0 1030:1.0 1031:0.5 1032:1.0 1033:1.0 1034:1.0 1035:1.0 1036:1.0 1037:1.0 1086:0.5 1467:1.0
18 17:0.08333333333333333 20:0.5 1466:1.0
18 1:0.029411764705882353 58:1.0 844:1.0
18 1:0.029411764705882353 8:0.125 11:0.0625 15:0.25 17:0.16666666666666666 20:0.5 73:1.0 83:1.0 91:0.16666666666666666 199:2.0 201:1.0 244:1.0 313:1.0 390:1.0 464:0.5 527:1.0 614:0.16666666666666666 816:1.0 872:0.5 1006:1.0 1052:1.0 1507:1.0
18 11:0.125 17:0.08333333333333333 20:0.5 37:0.125 386:1.0 994:1.0 1086:0.5 1112:1.0 1237:1.0
18 3:0.5 8:0.125 33:0.25 73:1.0 144:1.0 187:0.3333333333333333 204:0.5 234:0.3333333333333333 464:0.5 604:0.5 614:0.16666666666666666 705:0.5 766:1.0 912:1.0 1107:1.0 1134:1.0 1204:1.0 1241:1.0
18 1432:1.0
18 11:0.0625 15:0.25 20:1.0 63:1.0 71:1.0 91:0.5 204:0.5 212:2.0 383:1.0 464:0.5 666:0.3333333333333333 727:1.0 1093:1.0 1150:1.0 1436:1.0
18 8:0.25 20:1.5 37:0.125 73:1.0 91:0.16666666666666666 1089:1.0 1134:1.0 1245:1.0
18 3:1.0 8:0.25 15:0.25 17:0.08333333333333333 55:0.2 56:1.0 91:0.16666666666666666 199:1.0 294:1.0 350:0.3333333333333333 527:1.0 1112:1.0 1135:1.0 1150:1.0
18 5:1.0 15:0.25 40:0.14285714285714285 190:1.0 199:1.0 303:0.14285714285714285 666:0.3333333333333333 1262:1.0 1263:1.0 1387:1.0
18 9:0.3333333333333333 11:0.0625 91:0.16666666666666666 1124:1.0 1425:1.0
18 15:0.25 17:0.08333333333333333 204:0.5 1203:1.0 1512:1.0
18 1376:1.0
18 37:0.125 73:1.0 350:0.3333333333333333 470:1.0 860:1.0 1376:1.0 1393:1.0
18 13:0.1111111111111111 15:0.25 17:0.16666666666666666 19:1.0 32:0.5 55:0.4 199:1.0 212:2.0 321:1.0 391:1.0 525:1.0 614:0.16666666666666666 974:1.0 1286:1.0 1663:1.0
18 8:0.125 17:0.08333333333333333 20:1.0 55:0.4 199:1.0 204:0.5 212:1.0 216:1.0 222:0.5 227:0.14285714285714285 297:1.0 350:0.3333333333333333 377:1.0 527:1.0 737:0.5 1089:1.0 1120:1.0 1266:1.0 1393:1.0 1436:1.0 1442:1.0
18 8:0.125 17:0.08333333333333333 297:1.0
18 17:0.08333333333333333 29:1.0 431:1.0 503:1.0
18 55:0.2 73:1.0 144:1.0 755:1.0
18 5:1.0 37:0.125
18 13:0.1111111111111111 20:0.5 55:0.2 56:1.0 75:1.0 190:1.0 350:0.3333333333333333 673:1.0 1030:1.0 1436:1.0
18 1376:1.0
18 15:0.25 17:0.08333333333333333 19:1.0 20:0.5 36:0.3333333333333333 55:0.2 350:0.6666666666666666 377:1.0 1089:1.0 1393:1.0 1625:1.0
18 17:0.08333333333333333
18 8:0.125 57:1.0 293:0.16666666666666666 782:0.5
18 15:0.25 39:1.0 40:0.14285714285714285 55:0.4 56:1.0 303:0.14285714285714285 1110:1.0 1244:1.0 1263:1.0
18 8:0.125 1387:1.0
18 5:1.0 15:0.25 40:0.14285714285714285 73:1.0 350:0.3333333333333333 396:1.0 1175:1.0 1342:1.0 1393:1.0
18 8:0.125 15:0.5 20:0.5 37:0.125 56:1.0 91:0.3333333333333333 111:1.0 321:1.0 746:1.0 1150:1.0 1170:1.0 1387:1.0 1431:1.0
18 40:0.14285714285714285 55:0.2
18 3:0.5 4:0.5 8:0.25 15:0.5 20:0.5 73:1.0 133:1.0 187:0.16666666666666666 233:0.5 242:1.0 333:1.0 383:1.0 1004:0.5 1007:1.0 1019:1.0 1060:1.0 1074:1.0 1107:1.0
18 3:1.0 8:0.125 26:0.5 44:0.3333333333333333 134:0.5 187:0.16666666666666666 199:2.0 705:0.5 819:0.3333333333333333 1083:1.0 1107:1.0 1108:1.0 1138:1.0 1275:1.0
18 3:1.0 8:0.125 15:0.25 20:0.5 32:0.5 36:0.3333333333333333 55:0.2 83:1.0 498:1.0 637:1.0 656:1.0 778:1.0 1014:1.0 1016:1.0 1017:1.0 1173:1.0 1389:1.0
|
6917b86e7476d60c14d5dceaab48c3c81640c86f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH6/EX6.2/Ch06Ex2.sce | f9b611cb2f50fb42836275c00b6ab4db22039fac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 456 | sce | Ch06Ex2.sce | // Scilab code Ex6.2: Pg:247 (2008)
clc;clear;
mu = 1.50; // Refractive index of the material
// Since mu = tan i_p, solving for i_p
i_p = atand(mu); // Angle of polarization, degree
r = 90-i_p; // Angle of refraction, degree
printf("\nThe angle of polarization = %4.1f degree", i_p);
printf("\nThe angle of refraction = %4.1f degree", r);
// Result
// The angle of polarization = 56.3 degree
// The angle of refraction = 33.7 degree |
a8a534f7b833a7874481bc38f383fd19b52eb568 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH6/EX6.2/Ex6_2.sce | d58917af077c33e750e3e17ecb4fe2507cbf7332 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 547 | sce | Ex6_2.sce | //Chapter-6,Example 6_2,Page 6-26
clc()
//Given Values:
x=3.7*10^-3 //Susceptibility at T=300 K
T=300 //Temperature in kelvin
T1=250 //Temperature in kelvin
T2=600 //Temperature in kelvin
//Calculations:
C=x*T //Curie's law
ur1=C/T1 //Relative permeability at 250 K
ur2=C/T2 //Relative permeability at 600 K
printf('Relative Permeability at 250 K is =%.6f \n \n',ur1)
printf(' Relative Permeability at 600 K is =%.6f \n',ur2)
|
ff2e4571c2090a9e66c85a1bd61226ff7dbe0fc6 | b16ce3797726bda3cc55a7b83783f7587918d81a | /src/math/path.sci | 6fc254891bbf65a7fd81aed8d081cfcb9bff688e | [] | no_license | bapcyk/hmcdemo | cc30d6ff7506309e12471609ee62d084a0f30d16 | 12d37ff9b1bf451b4899d4a661b03063cbcdd1cd | refs/heads/master | 2021-01-23T07:03:05.235177 | 2015-09-19T12:08:47 | 2015-09-19T12:08:47 | 42,402,711 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,888 | sci | path.sci | // ------------------------------------------------------
// Macros
// ------------------------------------------------------
G = 9.81; // gravity constant
// columns in CSV file
AX = 4; AY = 5; AZ = 6;
// disabling filter usage is order==0
NOFILT = 0;
// Supported filters
WFIR = 'WFIR';
EQFIR = 'EQFIR';
FFILT = 'FFILT';
// Supported integration methods
TRI = 'TRAPEZOID';
SMI = 'SIMPSON';
LTI = 'LEO_TICK';
NOI = '--';
// ------------------------------------------------------
// Some functions
// ------------------------------------------------------
// Simpson's rule integral
function [Iv,Tv] = smintegral(V, T)
h = T/3;
I = 0;
y_2 = 0;
y_1 = 0;
i = 0;
Iv = [];
Tv = [];
for y = V
if i<=1,
I = 0;
elseif 0==modulo(i,2),
I = I + h*(y_2 + 4*y_1 + y);
end
Iv($+1) = I;
Tv($+1) = h*i;
y_2 = y_1;
y_1 = y;
i = i+1;
end
endfunction
// trapezoid integration
function [Iv,Tv] = trintegral(V, T)
h = T;
I = 0;
y_1 = 0;
i = 0;
Iv = [];
Tv = [];
for y = V
if i<1,
I = 0;
else
I = I + h*(y_1 + y)/2;
end
Iv($+1) = I;
Tv($+1) = h*i;
y_1 = y;
i = i+1;
end
endfunction
// Leo Tick integral
function [Iv,Tv] = ltintegral(V, T)
h = T/2;
I_2 = 0;
I_1 = 0;
I = 0;
y_2 = 0;
y_1 = 0;
i = 0;
Iv = [];
Tv = [];
for y = V
if i<=1,
I = 0;
else
I = I_2 + h*(0.3584*y + 1.2832*y_1 + 0.3584*y_2); // FIXME I_2 ?
end
Iv($+1) = I;
Tv($+1) = h*i;
I_2 = I_1;
I_1 = I;
y_2 = y_1;
y_1 = y;
i = i+1;
end
endfunction
// Classical method of velocity and path definition
function [V,P] = classvp(A, T)
v0 = 0; v1 = 0;
a0 = 0; a1 = 0;
p0 = 0; p1 = 0;
V = [v0]; P = [p0];
i = 1;
while i < length(A),
a1 = A(i); t = T(i);
v1 = v0 + t*a0 + t*(a1-a0)/2;
p1 = p0 + t*v0 + t*(v1-v0)/2;
a0 = a1;
v0 = v1;
p0 = p1;
V($+1) = v1;
P($+1) = p1;
i = i + 1;
end
endfunction
// General integration method
function [Iv,Tv] = do_integral(alg, V, T)
select alg
case TRI
[Iv,Tv] = trintegral(V, T);
case SMI
[Iv,Tv] = smintegral(V, T);
case LTI
[Iv,Tv] = ltintegral(V, T);
case NOI
Iv = V';
Tv = [0:T:T*(length(V)-1)];
end
endfunction
// Shift signal after filtering (for plotting)
function VV = shift_filtered(V, n)
if n == 0,
VV = V;
else
VV = cat(1, V(n:$), V(1:n-1));
end
endfunction
// normalized frequency
function W = cfreq(f, fs)
nyq = fs/2;
W = f/nyq;
endfunction
// create filter structure, fc1,fc2 - cut freqs (Hz).
// Ex. of H(z) plot:
// F=create_filter(33, 10, 0.7, 2, 0.085); [m,f] = frmag(F.wft, 256); plot(f,m);
function F = create_my_filter(ord, fs, fc1, fc2, func, r)
[nrets, nargs] = argn(0);
if nargs < 5, func = WFIR; end
if nargs < 6, r = 0.09; end
nfc1 = cfreq(fc1, fs); nfc2 = cfreq(fc2, fs);
if ord == 0,
F.wft = [];
F.ord = ord;
F.fc1 = fc1;
F.fc2 = fc2;
F.nfc1 = nfc1;
F.nfc2 = nfc2;
F.func = func;
return;
end
select func
case WFIR
[F.wft, F.wfm, F.fr] = wfir('bp', ord, [nfc1 nfc2], 'hm', []);
case EQFIR
F.wft = eqfir(ord, [0 nfc1; nfc1+r nfc2-r; nfc2 0.5], [0 1 0], [1 1 1]);
case FFILT
F.wft = ffilt('bp', ord, nfc1, nfc2);
end
F.ord = ord;
F.fc1 = fc1;
F.fc2 = fc2;
F.nfc1 = nfc1;
F.nfc2 = nfc2;
F.func = func;
endfunction
// plot H(z) of created filters
function plot_my_filters(varargin)
nvalids = 0;
for F = varargin,
if length(F.wft) ~= 0,
nvalids = nvalids + 1;
end
end
if nvalids == 0,
return;
end
figure(2);
scf(2);
clf(2);
i = 1;
for F = varargin,
if length(F.wft) ~= 0,
subplot(nvalids, 1, i);
//[m,f] = frmag(F.wft, 256);
//plot(f, m);
p = poly(F.wft, 'z', 'coeff');
h = horner(p, 1/%z);
l = syslin('d', h);
bode(l);
i = i + 1;
end
end
close(2);
endfunction
// filtering of signal by created filter
function FS = do_my_filter(F, S)
if length(F.wft)==0,
FS = S;
else
if length(S)==0,
error("S should be not empty");
end
FS = filter(F.wft, 1, S);
end
endfunction
// print filter settings
function print_my_filter(F)
printf('%s filter: ord=%d, fc1=%.2fHz[%.2f], fc2=%.2fHz[%.2f]\n', F.func, F.ord, F.fc1, F.nfc1, F.fc2, F.nfc2);
endfunction
// ------------------------------------------------------
// Settings
// ------------------------------------------------------
SIMULATE = 0; // simulate input data with sin...
FILE = 'c:/prj/hmcdemo/src/math/a3.csv'; // input file
AXIS = AZ; // what axis to process
Td = 0.1; // sampling period
Fs = 1/Td; // sampling freq
INTR = TRI; // integration method
// ------------------------------------------------------
// FIR filters setup
// ------------------------------------------------------
// acceleration first FIR
Ord = 33;
//FLT0 = create_my_filter(Ord, Fs, 0.5, 0.9, EQFIR, 0.01);
//FLT1 = create_my_filter(Ord, Fs, 0.7, 1.5, EQFIR, 0.05);
//FLT2 = create_my_filter(Ord, Fs, 0.1, 0.9, EQFIR, 0.05);
FLT0 = create_my_filter(Ord, Fs, 0.1, 0.7, WFIR);
FLT1 = create_my_filter(0, Fs, 0.1, 0.9, WFIR);
FLT2 = create_my_filter(Ord, Fs, 0.1, 0.9, WFIR);
// ------------------------------------------------------
// Main program
// ------------------------------------------------------
if SIMULATE == 0,
data=evstr(read_csv(FILE, ';'));
AccRaw = data(:,AXIS) * G;
Acc = AccRaw;
// times moments
AccT = 0:Td:Td*(length(Acc)-1);
else
AccT = [0:0.1:30];
//AccRaw = sin(2*%pi*AccT);// + AccT + rand(1:length(AccT), 'normal');
AccRaw = sin(%pi*AccT) - cos(20*%pi*AccT);
AccRaw = AccRaw';
Acc = AccRaw;
end
// Process data
Acc = do_my_filter(FLT0, Acc);
[Speed, SpeedT] = do_integral(LTI, Acc', Td);
N = length(Speed);
SpeedRaw = Speed;
Speed = do_my_filter(FLT1, Speed);
[Dist, DistT] = do_integral(LTI, Speed', Td); //XXX Td*2 for SMI
DistRaw = Dist;
Dist = do_my_filter(FLT2, Dist);
[SpeedClassicRaw, DistClassicRaw] = classvp(AccRaw, AccT);
[SpeedClassic, DistClassic] = classvp(Acc, AccT);
// ------------------------------------------------------
// Plotting
// ------------------------------------------------------
plot_my_filters(FLT0, FLT1, FLT2);
figure(1);
scf(1);
clf(1);
subplot(4, 1, 1);
plot(AccT, AccRaw, AccT, shift_filtered(Acc, FLT0.ord/2), 'r');
title('acceleration');
subplot(4, 1, 2);
plot(SpeedT, SpeedRaw, SpeedT, shift_filtered(Speed, FLT1.ord/2), 'r');
title('speed');
subplot(4, 1, 3);
plot(DistT, DistRaw, DistT, shift_filtered(Dist, FLT2.ord/2), 'r');
title('distance');
subplot(4, 1, 4);
plot(AccT, DistClassicRaw, AccT, DistClassic, 'r');
title('classic distance');
close(1);
// ------------------------------------------------------
// Some statistics
// ------------------------------------------------------
print_my_filter(FLT0);
print_my_filter(FLT1);
print_my_filter(FLT2);
printf('Integration method: %s\n', INTR);
printf('\nDistClassicRaw: %.2fm .. %.2fm, $=%.2fm\n', min(DistClassicRaw), max(DistClassicRaw), DistClassicRaw($));
printf('DistClassic: %.2fm .. %.2fm, $=%.2fm\n', min(DistClassic), max(DistClassic), DistClassic($));
printf('DistRaw: %.2fm .. %.2fm, $=%.2fm\n', min(DistRaw), max(DistRaw), DistRaw($));
printf('Dist: %.2fm .. %.2fm, $=%.2fm\n', min(Dist), max(Dist), Dist($));
|
6c11e886975c7dfd4e532e59c8875c74c5fb184f | 449d555969bfd7befe906877abab098c6e63a0e8 | /710/CH2/EX2.10/2_10.sci | fe3a7c635118012ba999fa989d8be56c1aaa8aa4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sci | 2_10.sci | clc();
clear;
//To determine the lattice parameter
h=1;
k=0;
l=1;
d101=0.5; //spacing of (101) plane
//d101=a/sqrt((h^2)+(k^2)+(l^2))
a=d101*sqrt(2) //lattice parameter
printf("The lattice parameter is %f A",a); |
dfecf365dbc7da3c00b6980a51141b99ad6e4acc | bfce7e1040706ca939af616c757c19a3dcbcffe2 | /GaussJordan.sce | 9adadde515ebd24528dd2949a91007ef8a09fd30 | [] | no_license | akhil19845/LinearAlgebra-SciLab | 91935ea6752798f58de8ebaf6f50652cd269daca | b94fda70b1c8844989d00b4f82564d8167460619 | refs/heads/master | 2021-01-01T07:20:21.351881 | 2020-04-10T12:01:06 | 2020-04-10T12:01:06 | 239,168,194 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 589 | sce | GaussJordan.sce | rows = 3;
cols = 3;
A = zeros(rows,cols);
disp("Inputs to all matrices to be sequential left to right, top to bottom");
disp("Inputs to A begin");
for i = 1:rows
for j = 1:cols
A(i,j) = input("value for A:")
end
end
n=length(A(1,:));
Aug=[A, eye(n,n)];
//Forward Elimination
for j=1:n-1
for i=j+1:n
Aug(i, j:2*n)= Aug(i, j:2*n) - Aug(i,j)/Aug(j,j)*Aug(j,j:2*n);
end
end
// Backward Elimination
for j=n:-1:2
Aug(i:j-1,:)=Aug(1, j-1,:)-Aug(1:j-1, j)/Aug(j,j)*Aug(j,:);
end
for j=1:n
Aug(j,:)=Aug(j,:)/Aug(j,j);
end
B=Aug(:, n+1:2*n);
disp(B, 'The inverse of A is');
|
16834849764f5d35798ee65d2a1a9f0ea0863d33 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /pacman.sce | 41c629149d49c033998007ae045aba0520ed4a60 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 53,651 | sce | pacman.sce | Name=pacman
PlayerCharacters=pacman_player
BotCharacters=pacman.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=pacman_player
AddedBots=pacman.bot;pacman.bot;pacman.bot;pacman.bot
PlayerMaxLives=0
BotMaxLives=0;0;0;0
PlayerTeam=1
BotTeams=2;2;2;0
MapName=pacman.map
MapScale=10.0
BlockProjectilePredictors=false
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=0.0
ScorePerKill=1000.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=pacman
WeaponHeroTag=pacman
DifficultyTag=2
AuthorsTag=Ku
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=3D packman <3
GameVersion=0.99.1
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=pacman
DodgeProfileNames=Long Strafes Close_pacman
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=pacman
SeeThroughWalls=true
[Character Profile]
Name=pacman_player
MaxHealth=1.0
WeaponProfileNames=no gun;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=2000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Melee_pacman.abilmelee;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
[Character Profile]
Name=pacman
MaxHealth=1.0
WeaponProfileNames=no gun;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=2000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=1000.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Melee_pacman.abilmelee;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
[Dodge Profile]
Name=Long Strafes Close_pacman
MaxTargetDistance=0.0
MinTargetDistance=0.0
ToggleLeftRight=false
ToggleForwardBack=true
MinLRTimeChange=1.0
MaxLRTimeChange=10.0
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.1
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=no gun
Type=Hitscan
ShotsPerClick=1
DamagePerShot=0.0
KnockbackFactor=4.0
TimeBetweenShots=5.0
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Melee Ability Profile]
Name=Melee_pacman
MaxCharges=100.0
ChargeTimer=0.01
ChargesRefundedOnKill=1.0
DelayAfterUse=0.0
FullyAuto=true
AbilityDuration=0.2
HurtboxRadius=150.0
HurtboxDamage=30.0
HurtboxGroundKnockbackFactor=0.0
HurtboxAirKnockbackFactor=0.0
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=600.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-1088.000000 160.000000 -960.000000
-1056.000000 160.000000 -960.000000
-1056.000000 160.000000 -1024.000000
-1088.000000 160.000000 -1024.000000
-1088.000000 128.000000 -960.000000
-1056.000000 128.000000 -960.000000
-1056.000000 128.000000 -1024.000000
-1088.000000 128.000000 -1024.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
-1216.000000 160.000000 -960.000000
-1184.000000 160.000000 -960.000000
-1184.000000 160.000000 -992.000000
-1216.000000 160.000000 -992.000000
-1216.000000 128.000000 -960.000000
-1184.000000 128.000000 -960.000000
-1184.000000 128.000000 -992.000000
-1216.000000 128.000000 -992.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
-1184.000000 160.000000 -896.000000
-1120.000000 160.000000 -896.000000
-1120.000000 160.000000 -928.000000
-1184.000000 160.000000 -928.000000
-1184.000000 128.000000 -896.000000
-1120.000000 128.000000 -896.000000
-1120.000000 128.000000 -928.000000
-1184.000000 128.000000 -928.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
-1152.000000 160.000000 -928.000000
-1120.000000 160.000000 -928.000000
-1120.000000 160.000000 -992.000000
-1152.000000 160.000000 -992.000000
-1152.000000 128.000000 -928.000000
-1120.000000 128.000000 -928.000000
-1120.000000 128.000000 -992.000000
-1152.000000 128.000000 -992.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
-1088.000000 160.000000 -896.000000
-992.000000 160.000000 -896.000000
-992.000000 160.000000 -928.000000
-1088.000000 160.000000 -928.000000
-1088.000000 128.000000 -896.000000
-992.000000 128.000000 -896.000000
-992.000000 128.000000 -928.000000
-1088.000000 128.000000 -928.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
-1216.000000 160.000000 -832.000000
-1120.000000 160.000000 -832.000000
-1120.000000 160.000000 -864.000000
-1216.000000 160.000000 -864.000000
-1216.000000 128.000000 -832.000000
-1120.000000 128.000000 -832.000000
-1120.000000 128.000000 -864.000000
-1216.000000 128.000000 -864.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
-1216.000000 160.000000 -704.000000
-1120.000000 160.000000 -704.000000
-1120.000000 160.000000 -736.000000
-1216.000000 160.000000 -736.000000
-1216.000000 128.000000 -704.000000
-1120.000000 128.000000 -704.000000
-1120.000000 128.000000 -736.000000
-1216.000000 128.000000 -736.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
-1152.000000 160.000000 -640.000000
-1120.000000 160.000000 -640.000000
-1120.000000 160.000000 -704.000000
-1152.000000 160.000000 -704.000000
-1152.000000 128.000000 -640.000000
-1120.000000 128.000000 -640.000000
-1120.000000 128.000000 -704.000000
-1152.000000 128.000000 -704.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
-1216.000000 160.000000 -640.000000
-1152.000000 160.000000 -640.000000
-1152.000000 160.000000 -672.000000
-1216.000000 160.000000 -672.000000
-1216.000000 128.000000 -640.000000
-1152.000000 128.000000 -640.000000
-1152.000000 128.000000 -672.000000
-1216.000000 128.000000 -672.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
-1184.000000 160.000000 -576.000000
-1120.000000 160.000000 -576.000000
-1120.000000 160.000000 -608.000000
-1184.000000 160.000000 -608.000000
-1184.000000 128.000000 -576.000000
-1120.000000 128.000000 -576.000000
-1120.000000 128.000000 -608.000000
-1184.000000 128.000000 -608.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
-1088.000000 160.000000 -768.000000
-1056.000000 160.000000 -768.000000
-1056.000000 160.000000 -864.000000
-1088.000000 160.000000 -864.000000
-1088.000000 128.000000 -768.000000
-1056.000000 128.000000 -768.000000
-1056.000000 128.000000 -864.000000
-1088.000000 128.000000 -864.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
-1024.000000 160.000000 -960.000000
-864.000000 160.000000 -960.000000
-864.000000 160.000000 -992.000000
-1024.000000 160.000000 -992.000000
-1024.000000 128.000000 -960.000000
-864.000000 128.000000 -960.000000
-864.000000 128.000000 -992.000000
-1024.000000 128.000000 -992.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
-960.000000 160.000000 -992.000000
-928.000000 160.000000 -992.000000
-928.000000 160.000000 -1056.000000
-960.000000 160.000000 -1056.000000
-960.000000 128.000000 -992.000000
-928.000000 128.000000 -992.000000
-928.000000 128.000000 -1056.000000
-960.000000 128.000000 -1056.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
-832.000000 160.000000 -960.000000
-800.000000 160.000000 -960.000000
-800.000000 160.000000 -1024.000000
-832.000000 160.000000 -1024.000000
-832.000000 128.000000 -960.000000
-800.000000 128.000000 -960.000000
-800.000000 128.000000 -1024.000000
-832.000000 128.000000 -1024.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
-896.000000 160.000000 -896.000000
-800.000000 160.000000 -896.000000
-800.000000 160.000000 -928.000000
-896.000000 160.000000 -928.000000
-896.000000 128.000000 -896.000000
-800.000000 128.000000 -896.000000
-800.000000 128.000000 -928.000000
-896.000000 128.000000 -928.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 -896.000000
-736.000000 160.000000 -896.000000
-736.000000 160.000000 -992.000000
-768.000000 160.000000 -992.000000
-768.000000 128.000000 -896.000000
-736.000000 128.000000 -896.000000
-736.000000 128.000000 -992.000000
-768.000000 128.000000 -992.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 -896.000000
-704.000000 160.000000 -896.000000
-704.000000 160.000000 -928.000000
-768.000000 160.000000 -928.000000
-768.000000 128.000000 -896.000000
-704.000000 128.000000 -896.000000
-704.000000 128.000000 -928.000000
-768.000000 128.000000 -928.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
-896.000000 160.000000 -1024.000000
-704.000000 160.000000 -1024.000000
-704.000000 160.000000 -1056.000000
-896.000000 160.000000 -1056.000000
-896.000000 136.000000 -1024.000000
-704.000000 136.000000 -1024.000000
-704.000000 136.000000 -1056.000000
-896.000000 136.000000 -1056.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
-1184.000000 160.000000 -1024.000000
-992.000000 160.000000 -1024.000000
-992.000000 160.000000 -1056.000000
-1184.000000 160.000000 -1056.000000
-1184.000000 136.000000 -1024.000000
-992.000000 136.000000 -1024.000000
-992.000000 136.000000 -1056.000000
-1184.000000 136.000000 -1056.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 -832.000000
-672.000000 160.000000 -832.000000
-672.000000 160.000000 -864.000000
-768.000000 160.000000 -864.000000
-768.000000 128.000000 -832.000000
-672.000000 128.000000 -832.000000
-672.000000 128.000000 -864.000000
-768.000000 128.000000 -864.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
-960.000000 160.000000 -864.000000
-928.000000 160.000000 -864.000000
-928.000000 160.000000 -928.000000
-960.000000 160.000000 -928.000000
-960.000000 128.000000 -864.000000
-928.000000 128.000000 -864.000000
-928.000000 128.000000 -928.000000
-960.000000 128.000000 -928.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
-1024.000000 160.000000 -832.000000
-864.000000 160.000000 -832.000000
-864.000000 160.000000 -864.000000
-1024.000000 160.000000 -864.000000
-1024.000000 128.000000 -832.000000
-864.000000 128.000000 -832.000000
-864.000000 128.000000 -864.000000
-1024.000000 128.000000 -864.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
-1024.000000 160.000000 -704.000000
-992.000000 160.000000 -704.000000
-992.000000 160.000000 -800.000000
-1024.000000 160.000000 -800.000000
-1024.000000 128.000000 -704.000000
-992.000000 128.000000 -704.000000
-992.000000 128.000000 -800.000000
-1024.000000 128.000000 -800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-896.000000 160.000000 -704.000000
-864.000000 160.000000 -704.000000
-864.000000 160.000000 -800.000000
-896.000000 160.000000 -800.000000
-896.000000 128.000000 -704.000000
-864.000000 128.000000 -704.000000
-864.000000 128.000000 -800.000000
-896.000000 128.000000 -800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-704.000000 160.000000 -960.000000
-672.000000 160.000000 -960.000000
-672.000000 160.000000 -992.000000
-704.000000 160.000000 -992.000000
-704.000000 128.000000 -960.000000
-672.000000 128.000000 -960.000000
-672.000000 128.000000 -992.000000
-704.000000 128.000000 -992.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
-928.000000 160.000000 -768.000000
-896.000000 160.000000 -768.000000
-896.000000 160.000000 -800.000000
-928.000000 160.000000 -800.000000
-928.000000 128.000000 -768.000000
-896.000000 128.000000 -768.000000
-896.000000 128.000000 -800.000000
-928.000000 128.000000 -800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-992.000000 160.000000 -768.000000
-960.000000 160.000000 -768.000000
-960.000000 160.000000 -800.000000
-992.000000 160.000000 -800.000000
-992.000000 128.000000 -768.000000
-960.000000 128.000000 -768.000000
-960.000000 128.000000 -800.000000
-992.000000 128.000000 -800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-1216.000000 160.000000 -1088.000000
-640.000000 160.000000 -1088.000000
-640.000000 160.000000 -1120.000000
-1216.000000 160.000000 -1120.000000
-1216.000000 136.000000 -1088.000000
-640.000000 136.000000 -1088.000000
-640.000000 136.000000 -1120.000000
-1216.000000 136.000000 -1120.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
-936.000000 160.000000 -704.000000
-872.000000 160.000000 -704.000000
-872.000000 160.000000 -736.000000
-936.000000 160.000000 -736.000000
-936.000000 128.000000 -704.000000
-872.000000 128.000000 -704.000000
-872.000000 128.000000 -736.000000
-936.000000 128.000000 -736.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
-1024.000000 160.000000 -704.000000
-960.000000 160.000000 -704.000000
-960.000000 160.000000 -736.000000
-1024.000000 160.000000 -736.000000
-1024.000000 128.000000 -704.000000
-960.000000 128.000000 -704.000000
-960.000000 128.000000 -736.000000
-1024.000000 128.000000 -736.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
-896.000000 160.000000 -640.000000
-832.000000 160.000000 -640.000000
-832.000000 160.000000 -672.000000
-896.000000 160.000000 -672.000000
-896.000000 128.000000 -640.000000
-832.000000 128.000000 -640.000000
-832.000000 128.000000 -672.000000
-896.000000 128.000000 -672.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
-960.000000 160.000000 -608.000000
-928.000000 160.000000 -608.000000
-928.000000 160.000000 -672.000000
-960.000000 160.000000 -672.000000
-960.000000 128.000000 -608.000000
-928.000000 128.000000 -608.000000
-928.000000 128.000000 -672.000000
-960.000000 128.000000 -672.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
-1056.000000 160.000000 -640.000000
-992.000000 160.000000 -640.000000
-992.000000 160.000000 -672.000000
-1056.000000 160.000000 -672.000000
-1056.000000 128.000000 -640.000000
-992.000000 128.000000 -640.000000
-992.000000 128.000000 -672.000000
-1056.000000 128.000000 -672.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
-1024.000000 160.000000 -576.000000
-864.000000 160.000000 -576.000000
-864.000000 160.000000 -608.000000
-1024.000000 160.000000 -608.000000
-1024.000000 128.000000 -576.000000
-864.000000 128.000000 -576.000000
-864.000000 128.000000 -608.000000
-1024.000000 128.000000 -608.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
-1152.000000 160.000000 -800.000000
-1120.000000 160.000000 -800.000000
-1120.000000 160.000000 -864.000000
-1152.000000 160.000000 -864.000000
-1152.000000 128.000000 -800.000000
-1120.000000 128.000000 -800.000000
-1120.000000 128.000000 -864.000000
-1152.000000 128.000000 -864.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
-1240.000000 160.000000 -800.000000
-1216.000000 160.000000 -800.000000
-1216.000000 160.000000 -1120.000000
-1240.000000 160.000000 -1120.000000
-1240.000000 136.000000 -800.000000
-1216.000000 136.000000 -800.000000
-1216.000000 136.000000 -1120.000000
-1240.000000 136.000000 -1120.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
-832.000000 160.000000 -768.000000
-800.000000 160.000000 -768.000000
-800.000000 160.000000 -864.000000
-832.000000 160.000000 -864.000000
-832.000000 128.000000 -768.000000
-800.000000 128.000000 -768.000000
-800.000000 128.000000 -864.000000
-832.000000 128.000000 -864.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 -704.000000
-672.000000 160.000000 -704.000000
-672.000000 160.000000 -736.000000
-768.000000 160.000000 -736.000000
-768.000000 128.000000 -704.000000
-672.000000 128.000000 -704.000000
-672.000000 128.000000 -736.000000
-768.000000 128.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 -576.000000
-704.000000 160.000000 -576.000000
-704.000000 160.000000 -608.000000
-768.000000 160.000000 -608.000000
-768.000000 128.000000 -576.000000
-704.000000 128.000000 -576.000000
-704.000000 128.000000 -608.000000
-768.000000 128.000000 -608.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 -640.000000
-672.000000 160.000000 -640.000000
-672.000000 160.000000 -672.000000
-768.000000 160.000000 -672.000000
-768.000000 128.000000 -640.000000
-672.000000 128.000000 -640.000000
-672.000000 128.000000 -672.000000
-768.000000 128.000000 -672.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
-736.000000 160.000000 -768.000000
-672.000000 160.000000 -768.000000
-672.000000 160.000000 -800.000000
-736.000000 160.000000 -800.000000
-736.000000 128.000000 -768.000000
-672.000000 128.000000 -768.000000
-672.000000 128.000000 -800.000000
-736.000000 128.000000 -800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-672.000000 160.000000 -768.000000
-640.000000 160.000000 -768.000000
-640.000000 160.000000 -1088.000000
-672.000000 160.000000 -1088.000000
-672.000000 128.000000 -768.000000
-640.000000 128.000000 -768.000000
-640.000000 128.000000 -1088.000000
-672.000000 128.000000 -1088.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 -672.000000
-736.000000 160.000000 -672.000000
-736.000000 160.000000 -704.000000
-768.000000 160.000000 -704.000000
-768.000000 128.000000 -672.000000
-736.000000 128.000000 -672.000000
-736.000000 128.000000 -704.000000
-768.000000 128.000000 -704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 -768.000000
-736.000000 160.000000 -768.000000
-736.000000 160.000000 -832.000000
-768.000000 160.000000 -832.000000
-768.000000 128.000000 -768.000000
-736.000000 128.000000 -768.000000
-736.000000 128.000000 -832.000000
-768.000000 128.000000 -832.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 160.000000 -480.000000
-704.000000 160.000000 -480.000000
-704.000000 160.000000 -544.000000
-768.000000 160.000000 -544.000000
-768.000000 128.000000 -480.000000
-704.000000 128.000000 -480.000000
-704.000000 128.000000 -544.000000
-768.000000 128.000000 -544.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
-832.000000 160.000000 -576.000000
-800.000000 160.000000 -576.000000
-800.000000 160.000000 -736.000000
-832.000000 160.000000 -736.000000
-832.000000 128.000000 -576.000000
-800.000000 128.000000 -576.000000
-800.000000 128.000000 -736.000000
-832.000000 128.000000 -736.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
-1088.000000 160.000000 -576.000000
-1056.000000 160.000000 -576.000000
-1056.000000 160.000000 -736.000000
-1088.000000 160.000000 -736.000000
-1088.000000 128.000000 -576.000000
-1056.000000 128.000000 -576.000000
-1056.000000 128.000000 -736.000000
-1088.000000 128.000000 -736.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
-1184.000000 160.000000 -480.000000
-1120.000000 160.000000 -480.000000
-1120.000000 160.000000 -544.000000
-1184.000000 160.000000 -544.000000
-1184.000000 128.000000 -480.000000
-1120.000000 128.000000 -480.000000
-1120.000000 128.000000 -544.000000
-1184.000000 128.000000 -544.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
-1216.000000 160.000000 -416.000000
-664.000000 160.000000 -416.000000
-664.000000 160.000000 -448.000000
-1216.000000 160.000000 -448.000000
-1216.000000 104.000000 -416.000000
-664.000000 104.000000 -416.000000
-664.000000 104.000000 -448.000000
-1216.000000 104.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-1088.000000 160.000000 -480.000000
-992.000000 160.000000 -480.000000
-992.000000 160.000000 -544.000000
-1088.000000 160.000000 -544.000000
-1088.000000 128.000000 -480.000000
-992.000000 128.000000 -480.000000
-992.000000 128.000000 -544.000000
-1088.000000 128.000000 -544.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
-960.000000 160.000000 -448.000000
-928.000000 160.000000 -448.000000
-928.000000 160.000000 -544.000000
-960.000000 160.000000 -544.000000
-960.000000 128.000000 -448.000000
-928.000000 128.000000 -448.000000
-928.000000 128.000000 -544.000000
-960.000000 128.000000 -544.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
-896.000000 160.000000 -480.000000
-800.000000 160.000000 -480.000000
-800.000000 160.000000 -544.000000
-896.000000 160.000000 -544.000000
-896.000000 128.000000 -480.000000
-800.000000 128.000000 -480.000000
-800.000000 128.000000 -544.000000
-896.000000 128.000000 -544.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
-1216.000000 136.000000 -416.000000
-672.000000 136.000000 -416.000000
-672.000000 136.000000 -1112.000000
-1216.000000 136.000000 -1112.000000
-1216.000000 96.000000 -416.000000
-672.000000 96.000000 -416.000000
-672.000000 96.000000 -1112.000000
-1216.000000 96.000000 -1112.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
-672.000000 160.000000 -416.000000
-640.000000 160.000000 -416.000000
-640.000000 160.000000 -736.000000
-672.000000 160.000000 -736.000000
-672.000000 128.000000 -416.000000
-640.000000 128.000000 -416.000000
-640.000000 128.000000 -736.000000
-672.000000 128.000000 -736.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
-1240.000000 160.000000 -768.000000
-1120.000000 160.000000 -768.000000
-1120.000000 160.000000 -800.000000
-1240.000000 160.000000 -800.000000
-1240.000000 128.000000 -768.000000
-1120.000000 128.000000 -768.000000
-1120.000000 128.000000 -800.000000
-1240.000000 128.000000 -800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-1240.000000 160.000000 -416.000000
-1216.000000 160.000000 -416.000000
-1216.000000 160.000000 -736.000000
-1240.000000 160.000000 -736.000000
-1240.000000 128.000000 -416.000000
-1216.000000 128.000000 -416.000000
-1216.000000 128.000000 -736.000000
-1240.000000 128.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position -1104.000000 136.000000 -1000.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -848.000000 136.000000 -1000.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -848.000000 136.000000 -592.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -1040.000000 144.000000 -584.000000
Bool8 teamA 0
|
278dad245adf6ac2f4d5617ddfacb46e83b82422 | ed81f401dcd2ce0399cec3a99b6e5851e62e74ca | /data/github.com/ScilabOrg/scilab/59989ac47463fc47ca5c246dd4597dd4440329dd/scilab/modules/string/tests/benchmarks/bench_strsubst.tst | 026cacb2dac9feff135f8a9606e55111fb5d7ba9 | [
"MIT"
] | permissive | smola/language-dataset | 9e2a35340d48b497cd9820fa2673bb5d482a13f7 | 4d1827d1018b922e03a48a5de5cb921a6762dda3 | refs/heads/master | 2023-03-10T12:42:04.396308 | 2022-07-15T18:05:05 | 2022-07-15T18:05:05 | 143,737,125 | 18 | 3 | MIT | 2023-03-06T05:01:14 | 2018-08-06T14:05:52 | Python | UTF-8 | Scilab | false | false | 696 | tst | bench_strsubst.tst | // =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2007-2008 - INRIA
//
// This file is distributed under the same license as the Scilab package.
// =============================================================================
//==============================================================================
// Benchmark for strsubst function
//==============================================================================
text = mgetl(SCI+"/modules/string/tests/unit_tests/text.txt");
// <-- BENCH START -->
a = strsubst(text,"fonction","function");
// <-- BENCH END -->
|
9e811a5dd5a012e479abbe20ec3875ae2c2ae2ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /1946/CH2/EX2.17.a/Ex_2_17_a.sce | b28b5368de44d036eff8924157023892d4aac973 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 208 | sce | Ex_2_17_a.sce | // Example 2.17.a:Cladding Index
clc;
clear;
close;
n1=1.5;//Waveguide Refractive Index
d= 0.0005;// Cange in core-cladding refractive index
n2= n1-(d*n1);
disp(n2,"Refradctive index of cladding is")
|
ae2e456d2976ca533e5612c54487e074e08c19af | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH15/EX15.1/Ex15_1.sce | 23f9bf4d721a6a48a6b99064a56c762046774f7b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 761 | sce | Ex15_1.sce | // Problem no 15.1,Page no.351
clc;clear;
close;
D=0.8 //m //Diameter of Shell
L=3 //m //Length of shell
t=0.01 //m //thickness of metal
E=200*10**9 //Pa
p=2.5*10**6 //Pa //Internal Pressure
m=4 //Poisson's ratio
//Calculation
sigma_1=p*D*(2*t)**-1 //N/m**2 //Hoop stress
sigma_2=p*D*(4*t)**-1 //N/m**2 //Longitudinal stress
e_1=1*E**-1*(sigma_1-sigma_2*m**-1) //Hoop strain
e_2=1*E**-1*(sigma_2-sigma_1*m**-1) //Hoop strain
d=e_1*D*100 //cm //Increase in Diameter
l=e_2*L*100 //cm //Increase in Length
dell_v=2*e_1+e_2 //Volumetric strain
V=dell_v*%pi*4**-1*D**2*L*10**6 //cm**3 //Increase in Volume
//Result
printf("Change in Diameter is %.3f cm",d)
printf("\n Change in Length is %.3f cm",l)
printf("\n Change in Volume is %.2f",V);printf(" cm**3")
|
3109530062897b66ef78e48cc2861f4fd5b173f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2666/CH16/EX16.4/16_4.sce | 1efc64bcba32bd26f071552176ce0e7727914867 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 212 | sce | 16_4.sce | clc
//initialisation of variables
p=14.2//ft
p1=15//psia
p2=629.2//psia
T1=4030//R
T2=1698//R
//CALCULATIONS
P=p2*(T1/T2)//psia
//RESULTS
printf('The maximum pressures of the air standrad=% f psia',P)
|
4158add87a3e80898c70402ce34cb4191294391d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH19/EX19.13/Ex19_13.sce | fd48e1a8a3aff6f21e2d10cbf0e224ea3fb2bca4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 353 | sce | Ex19_13.sce | //Initilization of variables
m=120 //kg
k=0.3 //m
ls=0.6 //m
ds=0.05 //m
G=80*10^9 //Pa
//Calculations
//Polar Moment of Inertia
J1=m*k^2 //kg.m^2
J2=J1 //kg.m^2
J=(1/32)*%pi*(ds^4) //m^4
//Frequency
f=(1/(2*%pi))*(sqrt((J*G*(J1+J2))/(ls*J1*J2))) //Hz
//Result
clc
printf('The natural frequency of the torsional oscillation is %f Hz',f)
|
afbc568466c56285df20740a1983f554dc377ce4 | 592b1b7dfaefd62d755737ac7b6e81f44f7786ba | /10c Program for Negative binomial distribution..sce | 97cb88f372ccea3a2864545729d7b419dd738a0b | [] | no_license | muitnet/Numerical-and-Statistical-Methods-sem2-fybscit-mumbai-university | 841143b72d52229c68bcd0666ed10c844c02f507 | 2d1c638b881f3e418a982baa02632effd03ae5fe | refs/heads/master | 2021-01-19T07:23:05.463429 | 2017-04-07T11:54:24 | 2017-04-07T11:54:24 | 87,540,712 | 6 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 461 | sce | 10c Program for Negative binomial distribution..sce | function [expfre]=negbinfit(x, obsfre)
n=length(x)-1;
N=sum(obsfre);
xbar=sum(x*obsfre')/N;
rawmom2=sum(obsfre*(x^2)')/N;
var=rawmom2-xbar^2;
p=xbar/var;
q=1-p;
r=round(p*xbar/q);
prob(1)=p^r;
for i=1:n
prob(i+1)=((i+1+r)/(i-1+1))*q*prob(i)
end
printf('expected frequencies\n');
printf('------------------------------\n');
expfre=round(prob*N);
return(expfre);
endfunction
x=[0,1,2,3,4,5];
obsfre=[12,50,100,80,45,5];
negbinfit(x,obsfre)
|
87926e7b291ad983270d2634c50d67ad876a9c59 | 43189f8cf8a25fedb6e184447f423f71938ef93c | /chips/EQ3.tst | acd80661ee062bd0a2d5b986281ae61bf88c7f2a | [] | no_license | srishtidoi/Nand2Tetris | b648834ad416b5f91972f660dd4560521618915e | f7790f971133008aa8dad55600b64e0df593c42b | refs/heads/master | 2022-12-05T16:36:46.649379 | 2020-08-12T15:55:39 | 2020-08-12T15:55:39 | 275,914,875 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 287 | tst | EQ3.tst | //test script for EQ3 chip
load EQ3.hdl,
output-file EQ3.out,
compare-to EQ3.cmp,
output-list a%B1.3.1 b%B1.3.1 out%B2.1.2,
set a %B111,
set b %B111,
eval,
output;
set a %B101,
set b %B100,
eval,
output;
set a %B001,
set b %B001,
eval,
output;
set a %B010,
set b %B011,
eval,
output; |
97e296a3c1c23d7f82c69494c18f5b866e49dda1 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/CompressibleFlowSolver/Tests/Perturbation_M05_square_CBC_back_par.tst | 58a4d7a9e7702c5a4fbd24091d709e9ae0aa016f | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,219 | tst | Perturbation_M05_square_CBC_back_par.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>Euler, pressure perturbation to test RiemannInvariant CBC (back wave), parallel</description>
<executable>CompressibleFlowSolver</executable>
<parameters>--use-scotch Perturbation_M05_square_CBC_back_par.xml</parameters>
<processes>3</processes>
<files>
<file description="Session File"> Perturbation_M05_square_CBC_back_par.xml</file>
<file description="Restart File"> Perturbation_M05_square_CBC_back_par.rst</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="rho" tolerance="1e-12">0.091</value>
<value variable="rhou" tolerance="1e-12">13.4146</value>
<value variable="rhov" tolerance="1e-12">0.000728033</value>
<value variable="E" tolerance="1e-12">15113.7</value>
</metric>
<metric type="Linf" id="2">
<value variable="rho" tolerance="1e-12">0.365496</value>
<value variable="rhou" tolerance="1e-12">53.6963</value>
<value variable="rhov" tolerance="1e-12">0.118435</value>
<value variable="E" tolerance="1e-12">60556.2</value>
</metric>
</metrics>
</test>
|
3f1cffe3c5634142cb6edcdf0ace057537b7a6ab | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH3/EX3.5/C3P5.sce | d97a8fb106b58b864c669622cd692dc8bb6037a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | C3P5.sce |
clear
clc
//To find force acting on crate
//Given :
//refer to figure 3-18(a) and3-18(b) from page no. 55
// mass of flat-bed cart
mc =360 //kg
// mass of box
mb =150 //kg
// magnitude of acceleration for cart
ac =0.167 // m/s^2
// magnitude of acceleration for box
ab =1 // m/s^2
//solution:
//force on cart
//applying newton's second law
Fcb =mc*ac //in N
// force on box
//applying newton's second law
Fbw =Fcb+(mb*ab)// in N
printf ("\n\n Force acting on crate Fcb = \n\n %2i N" ,Fcb);
printf ("\n\n Force acting on box Fbw = \n\n %2i N" ,Fbw);
|
818597ef4a6f439d5c25d30951e2538c91877c5b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH19/EX19.2w/19_2w.sce | 4c062cdb3f820e225e4c5dc190ddf7175b6b5b36 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 483 | sce | 19_2w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 19.2w
//calculation of the object distance to obtain maximum angular magnification for a normal eye
//given data
D=10//power(in D) of the lens
v=-25*10^-2//image distance(in m) i.e at the near point
//calculation
f=1/D//focal length
u=1/((1/v)-(1/f))//lens formula
printf('the object distance to obtain maximum angular magnification for a normal eye is %3.1f cm',u*10^2)
|
f0edf1d3d18c2f3b65c8c263447c316775e90c69 | 449d555969bfd7befe906877abab098c6e63a0e8 | /851/CH3/EX3.2/Example3_2.sce | 9d9d35bc9f64f3d148acf6d03b36bc1dfa1364ea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,119 | sce | Example3_2.sce | //clear//
//Caption:M-ARY Signaling
//Example3.2:M-ARY SIGNALING
//Signal constellation and Representation of dibits
clear;
close;
clc;
a =1; //amplitude =1
T =1; //Symbol duration in seconds
//Four message points
Si1 = [(-3/2)*a*sqrt(T),(-1/2)*a*sqrt(T),(3/2)*a*sqrt(T),(1/2)*a*sqrt(T)];
a =gca();
a.data_bounds = [-2,-0.5;2,0.5]
plot2d(Si1,[0,0,0,0],-10)
xlabel('phi1(t)')
title('Figure 3.8 (a) Signal constellation')
xgrid(1)
disp('Figure 3.8 (b).Representation of transmitted dibits')
disp('Loc. of meg.point| (-3/2)asqrt(T)|(-1/2)asqrt(T)|(3/2)asqrt(T)|(1/2)asqrt(T)')
disp('________________________________________________________________________________')
disp('Transmitted dibit| 00 | 01 | 11 | 10')
disp('')
disp('')
disp('Figure 3.8 (c). Decision intervals for received dibits')
disp('Received dibit | 00 | 01 | 11 | 10')
disp('________________________________________________________________________________')
disp('Interval on phi1(t)| x1 < -a.sqrt(T) |-a.sqrt(T)<x1<0| 0<x1<a.sqrt(T) | a.sqrt(T)<x1')
|
eb26c43de90f9c527cd253d520eab9656adeb42d | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Machine_Design_U._C._Jindal_683.zip/Machine_Design_U._C._Jindal_683/CH7/EX7.2/SC_2.sce | 56939467a251da8ca1e8fa55384f11435e65c4a0 | [] | 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 | 273 | sce | SC_2.sce | errcatch(-1,"stop");mode(2);// sum 7-2
;
;
l=500;
E=70*10^3;
P=20*10^3;
FOS=2;
d=P*2*12*4*l^2/((%pi)^2*E);
d=(sqrt(8)*d)^0.25;
b=d/sqrt(8);
// printing data in scilab o/p window
printf("d is %0.2f mm ",d);
printf("\n b is %0.2f mm ",b);
exit();
|
d3f07d05bfdcfe24544875e0df5cf81a3fc8a705 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Linear_Integrated_Circuits_J._B._Gupta_1850.zip/Linear_Integrated_Circuits_J._B._Gupta_1850/CH3/EX3.16/Exa3_16.sce | 67ce87140a94ea971373c3631b2a89b2ef3bde37 | [] | 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 | 500 | sce | Exa3_16.sce | mode(2);errcatch(-1,"stop");driver("GIF");// Exa 3.16
clear;
clc;
//Part (a) is a derivation not a numerical problem
//Part (b) is a plot, and can be plotteed with any assumed value of R
R=5;//in ohm(assumed)
V=0:12;//in volt
I=-V/R//in Ampere
disp("V-I characteristics is shown in figure.")
plot(V,I);
title("V-I characteristics");
xlabel("V(volt)");
ylabel("I(Ampere)");
xinit('/home/fossee/Downloads/tbc_graphs/Linear_Integrated_Circuits_J._B._Gupta_1850/Exa3_16');xend();exit();
|
7fa3db2cfa138b2e987d71f0c0aee5ce451b2579 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH11/EX11.14/Ch11Ex14.sce | 75f53e9e105ddf1d2c47ecfff65c29af381ddb21 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 769 | sce | Ch11Ex14.sce | // Scilab Code Ex11.14: Page-571 (2011)
clc;clear;
sigma = 5;....// Electrical conductivity, mho per metre
mu = 12.56e-007;....// Permeability of the medium, weber/A-m
eps_0 = 8.85e-012;....// Electric permittivity of free space, C-square/N-m-square
eps = 70*eps_0; // Electric permittivity of the medium, C-square/N-m-square
delta = 2/sigma*sqrt(eps/mu); // The skin depth and attenuation constant of sea water
printf("\nThe skin depth of an EM-wave in sea water = %6.4f m", delta);
Beta = 1/delta; // The attenuation constant of sea water, per metre
printf("\nThe attenuation constant of the sea water = %6.2f m", Beta);
// Result
// The skin depth of an EM-wave in sea water = 0.0089 m
// The attenuation constant of the sea water = 112.57 m
|
a51d7a28c930108df4a1c5229383c36bcaf0c9e5 | a5f0fbcba032f945a9ee629716f6487647cafd5f | /Machine_Learning/demos/Perceptron_Demo.sce | c2d8707eb5de2106612e80504c0cdc90758fce31 | [
"BSD-2-Clause"
] | permissive | SoumitraAgarwal/Scilab-gsoc | 692c00e3fb7a5faf65082e6c23765620f4ecdf35 | 678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f | refs/heads/master | 2021-04-15T17:55:48.334164 | 2018-08-07T13:43:26 | 2018-08-07T13:43:26 | 126,500,126 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 481 | sce | Perceptron_Demo.sce | // Demo for single perceptron -- Scilab
getd('../macros')
// Data preparation
M = csvRead('Datasets/titanic.csv')
x = M(:, [3,6]);
y = M(:, 2);
// Data cleaning
function xnorm = norma(x)
n = length(x)
disp(x)
mi = min(x)
ma = max(x)
for i=1:n
x(i) = 1.0*(x(i) - mi)/(ma - mi)
end
xnorm = x
endfunction
y(or(isnan(x),'c'),:) = []
x(or(isnan(x),'c'),:) = []
iter = 40
rate = 0.000002
theta = perceptronTrain(x, y, rate, iter)
ypred = perceptronPredict(x, theta) |
881250f0e7791b64cf1e8d556f78051c8276c606 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH13/EX13.3/Ex13_3.sce | e61b81efdcca1b19d5324538a37f6f594fb26785 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex13_3.sce | // Exa 13.3
clc;
clear all;
// Given data
K=2; // Gauge factor
strain=1*10^-6; // Ratio of change in length to original length
R=130; // Resistance in Ohms
// Solution
// As K = ratio of dell R/R to dell L/L
Dell_R =K*R*strain ; // Change in resistance
printf(' The change in resistance = %d micro Ohms \n',Dell_R*10^6);
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.