blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4cf031ffa0ac53fd032a82af9f5dc1a85a284dec | 449d555969bfd7befe906877abab098c6e63a0e8 | /1238/CH8/EX8.4/8_4.sce | 6a3735884b9458015754637b00cd28e0ff4e92ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 458 | sce | 8_4.sce | //calculating required data//
//example 4//
clc
//clears the command window//
clear
//clears//
a=bin2dec('10010')
Vo=9*10^-3;//output voltage//
k=Vo/a;//proportionality factor//
b=bin2dec('11011')
Vo1=k*b;//analog output voltage//
printf('analog output voltage=%f volt\n',Vo1);
//maximum 5 bit digital input is 11111 i.e. 31 in decimal//
Vm=k*31;//maximum full scale output voltage//
printf('maximum full scale output voltage=%f volt',Vm);
|
90dd45554d941d7711aa6fb56368d94d194f90a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /75/DEPENDENCIES/aitken1.sce | 3e50ad87df02bbbdc5b8c9c63590a27ddacc8387 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 221 | sce | aitken1.sce | // this program is exclusively coded to perform one iteration of aitken method,
function x0aa=aitken(x0,x1,x2,g)
x0a=x0-(x1-x0)^2/(x2-2*x1+x0);
x1a=g(x0a);
x2a=g(x1a);
x0aa=x0a-(x1a-x0a)^2/(x2a-2*x1a+x0a);
endfunction
|
20cfa99ff79b2a1ef0e7972c5ca105f0c67f52f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1448/CH9/EX9.8.e/E9_8.sce | 2adf8867cba4234cf130dff19e4c9905bb2590b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 173 | sce | E9_8.sce | clc
//Initialization of variables
E0=-0.11 //V
H=10^-7
//calculations
pH=-log10(H)
E=E0-29.59*pH*10^-3
//results
printf("Biological standard potential = %.2f V",E)
|
8540e6f25d897cf8c62f1edecb133f8f6e4b5559 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1739/CH5/EX5.1/Exa5_1.sce | 1b629125743378c5609c362ffda97631258b0cf3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 286 | sce | Exa5_1.sce | //Exa 5.1
clc;
clear;
close;
//Given data :
format('v',6)
n=1.5;//refractive index
R=[(1-n)/(1+n)]^2;//unitless
disp(R*100,"Reflected light in % ");
disp(100-R*100,"The remainder transmitted light in % ");
loss=-10*log10(1-R);//in dB
disp(loss,"Transmission loss in dB : "); |
7a220c6c58bf938ae509a7beeba338d634d22cee | 449d555969bfd7befe906877abab098c6e63a0e8 | /3456/CH17/EX17.2/Ex17_2.sce | b82483733434b936a6c07def15958373378bfcef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 527 | sce | Ex17_2.sce | //Example 17.2
//Rolling Load
//Page No. 598
clc;clear;close;
h0=1.5; //in inches
mu=0.3; //no unit
D=36; //in inches
s_en=20; //in ksi
s_ex=30; //in ksi
h1=h0-0.3*h0;
dh=h0-h1;
h_=(h1+h0)/2;
Lp=sqrt(D/2*dh);
Q=mu*Lp/h_;
sigma0=(s_en+s_ex)/2;
P=sigma0*(exp(Q)-1)*s_ex*Lp/Q;
printf('\nRolling Load = %g kips',P);
P=sigma0*(Lp/(4*dh)+1)*s_ex*Lp;
printf('\nRolling Load if sticking friction occurs = %g kips',P);
|
b4772888b5d07cff5d7d78b3d41cc4c7a42460c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1595/CH16/EX16.3/ex16_3.sce | 267d9b226aac0c03ac321f7823bc1c1481044559 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex16_3.sce | //Microwaves and Lasers : example 16-3 : pg(756)
D=4.5;//diameter of parabolic reflector
k=0.62;//efficiency factor
x=(D/2)^2;
y=(k*%pi);
Ae=y*x;//aperture efficiency
i=(%pi*x);//ideal capture area
printf("\nAe = k.pi(D/2)^2 sq.m = %.2f sq.m",Ae);
mprintf("\nThe ideal capture area for %.1f m parabolic antenna is pi.(D/2)^2 = %.1f sq.m",D,i);
|
b67f6c8b8f9b5867c52f0872d000fb5e8e112acc | 6b85d1958ff11075634ed9e0f6dbef2de9548f1b | /ANN_Toolbox/macros/ann_FF_Std_batch_nb.sci | 3c01c596fe0fac6bd60839f30d9efd528c305ab6 | [
"Unlicense"
] | permissive | ademarazn/REDES_NEURAIS | 8a048c13aab33daa4068f52e18b263cc8325884f | a9a35744476d1f7e8405df04d5e4a9f8e4ed4595 | refs/heads/master | 2021-05-06T13:09:56.514632 | 2018-04-25T18:49:30 | 2018-04-25T18:49:30 | 113,248,743 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 922 | sci | ann_FF_Std_batch_nb.sci | function W = ann_FF_Std_batch_nb(x, t, N, W, lp, T, af, ex, err_deriv_y)
// This file is part of:
// ANN Toolbox for Scilab 5.x
// Copyright (C) Ryurick M. Hristev
// updated by Allan CORNET INRIA, May 2008
// released under GNU Public licence version 2
// Updates weight matrix of an ANN,
// based on standard backpropagation algorithm (batch version).
// this function is designed for networks without bias
// see ANN_FF (help)
// "af", "ex" and "err_deriv_y" are optional arguments
[lsh, rsh] = argn(0);
// define "af", "ex" and "err_deriv_y" if necessary
if rsh < 7, af = ['ann_log_activ','ann_d_log_activ'], end;
if rsh < 8, ex = " ", end;
if rsh < 9, err_deriv_y = 'ann_d_sum_of_sqr', end;
// repeat T times
for time = 1 : T
// find gradient
grad_E = ann_FF_grad_BP_nb(x, t, N, W, lp(2), af, err_deriv_y);
// update weights
W = W - lp(1) * grad_E;
// execute "ex"
execstr(ex);
end;
endfunction
|
e51a9abbae743e34cbc86043610d92f2ae7a2ece | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH16/EX16.3/Ex16_3.sce | 09feaa38390c93770190d9961bfd0325a0dc24c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex16_3.sce | //Example 16.3
T=0.400*10^-6;//Time period (s)
f=1/T;//Frequency (Hz)
printf('a.Frequency of oscillation = %0.2e Hz',f)
f1=264;//Frequency of middle C (Hz)
T1=1/f1;//Time period (s)
printf('\nb.Time period of oscillation = %0.2f ms',T1*1000)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
38f9289c59b28e2808f03a174d45f0844e067ce9 | b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf | /TD3/TD3 - 2/LogB.sce | 282398fa5e14c6df2cbab67f4c7ff775e76fac12 | [] | 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 | 605 | sce | LogB.sce | clear
clf
// variables du modèles
r = 1 ; A = 0.5 ; K = 2.5 ; C=0.4 ;
Bvect = 0.3:0.1:0.7; // variable qui varie
x = linspace(0, 2.5, 301);
function f = predation(x) // fonction qui calcule la vitesse d'accroissement
f =r * x .* (1 - x / K) - B * (x.^2 ./ (x.^2 + C^2)) // opération vectorielle
endfunction
for i=1:5 // Boucle qui va dessiner les différentes courbes
B=Bvect(i); // Assignation valeur qui varie
plot2d(x, predation(x), style = i); // Tracé de la vitesse d'accroissement
end
// Définition des paramètres d'affichages
a=gca();
a.x_location = "origin";
a.grid=[5,5];
|
12cabe6634f16932273ab1cccac893b15fffa4b3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3689/CH16/EX16.5/16_5.sce | bc703d58dc529ab6767849acfe174225bdf17af4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 595 | sce | 16_5.sce | ////
//Variable Declaration
R = 8.314 //Ideal Gas Constant, J/(mol.K)
T = 298 //Temperature of Gas, K
M = 0.040 //Molecular wt of Ar, kg/mol
P0 = 1013.25 //Pressure, N/m2
NA = 6.022e23 //Number of particles per mol
V = 1.0 //Volume of Container, L
k = 1.38e-23 //Boltzmann constant, J/K
t = 3600 //time of effusion, s
A = 0.01 //Area, um2
//Calculations
A = A*1e-12
V = V*1e-3
expo = (A*t/V)*(k*T/(2*%pi*M/NA))
P = P0*exp(-expo)
//Results
printf("\n Pressure after 1 hr of effusion is %4.3e Pa",P/101325)
|
bb17f80acdf13989ac0d72098d99ac4658c955a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2378/CH1/EX1.14/Exa_1_14.sce | 18e2807db5480f769c78a94338c9375d0771f606 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 836 | sce | Exa_1_14.sce | //Exa_1_14
//Graphical representation of fourier series
clc;
clear;
A = 1;
w = %pi;
tau = 2;
for i = 1: 101
t(i) = tau * (i-1)/100;
x(i) = A * t(i) / tau;
end
subplot(231);
plot(t,x);
ylabel('x(t)');
xlabel('t');
title('x(t) = A*t/tau');
for i = 1: 101
x1(i) = A / 2;
end
subplot(232);
plot(t,x1);
xlabel('t');
title('One term');
for i = 1: 101
x2(i) = A/2 - A * sin(w*t(i)) / %pi;
end
subplot(233);
plot(t,x2);
xlabel('t');
title('Two terms');
for i = 1: 101
x3(i) = A/2 - A * sin(w*t(i)) / %pi - A * sin(2*w*t(i)) / (2*%pi);
end
subplot(234);
plot(t,x3);
ylabel('x(t)');
xlabel('t');
title('Three terms');
for i = 1: 101
t(i) = tau * (i-1)/100;
x4(i) = A/2 - A * sin(w*t(i)) / %pi - A * sin(2*w*t(i)) / (2*%pi) - A * sin(3*w*t(i)) / (3*%pi);
end
subplot(235);
plot(t,x4);
xlabel('t');
title('Four terms');
|
2db8c8dad0175484b5e6f419b7200137d3f39496 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH12/EX12.10/Ex12_10.sce | a4b59ce9c1598cdc2e30cb2748fc0ab85351d319 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 260 | sce | Ex12_10.sce | clear
//Given
v=72 *(5/18.0) //Km/h
B=40*10**-6 //T
A=40
l=2 //m
t=1.0
N=1
//Calculation
A=l*v
a=B*A
e=N*a/t
//Result
printf("\n e.m.f generated in the axle of the car %0.3f mV", e*10**3)
|
7caa2516edf0dc0662e2402978da987b4cf535c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH1/EX1.13/Ex1_13.sce | f21faa004fce54dcb71596618ae211543fafd0ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 351 | sce | Ex1_13.sce |
//Ex1_13
clc;
//Given:
e=200; // in Mev
m=0.235; // weight of uranium atom in Kg
enthalpy=393.5; // in KJ/mol
Na=6.02*10^23;
//solution:
e1=e*1.6*10^-19*10^6;
atoms=Na/m;
e2=atoms*e1;//energy released in J
m1=(e2*12)/(393.5*1000*1000);// in Kg
m2=m1/1000;// in tons
printf("\n The amount of coal required in Kg is = %f", m2)
|
ab22a7fde1ddf1d093ca06e9c69dc197622ec182 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1364/CH9/EX9.7.2/9_7_2.sce | e1a03ae0290b2917127d62568d31976ca5293bbf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 247 | sce | 9_7_2.sce | clc
//initialisation of variables
w= 1 //gf/cm^3
Ss= 7.8
Sl= 0.9
D= 1 //cm
D1= 0.1 //cm
g= 981 //cm/sec^2
//CALCULATIONS
F= w*(Ss-Sl)*4*%pi*D^3/(3*8000)
v= F*g/(3*%pi*D1*2)
//RESULTS
printf (' coefficient of viscosity= %.2f poise',v)
|
1477c3aa06368115c6286ad06f5338c184a36bd7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2258/CH5/EX5.12/5_12.sce | eecab83663adca8db56847f5e744a35422f2d20a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 290 | sce | 5_12.sce | clc();
clear;
// To calculate the EM wave frequency
V=8.50; //voltage in micro Volts
V=V*10^-6; //in volts
e=1.6*10^-19; //electron charge in coulomb
h=6.626*10^-24;
new=2*e*V/h;
printf("EM wave frequency in Hz is");
disp(new);
//answer given in the book is wrong
|
68b641ac9fa875e2027045d9b58a8c27387b3e1e | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/m2sci/sci_pow2.sci | 5cc8503b4cbb83fd6cf8651e369763f822783fda | [
"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 | 334 | sci | sci_pow2.sci | function [stk,txt,top]=sci_pow2()
// Copyright INRIA
txt=[]
if lhs==1 then
if stk(top)(2)=='2' then stk(top)(2)='('+stk(top)(2)+')',end
stk=list('2.^'+stk(top)(1),'2',stk(top)(3),stk(top)(4),'1')
else
f=stk(top)(2);e=stk(top-1)(2);
if f=='2' then f='('+f+')',end
if e=='2' then e='('+e+')',end
stk=list(f+'.*+2 .^'+e)
end
|
140c2058ffa523cfd0a1839227e5994dd543a622 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH2/EX2.19/Ch02Ex19.sce | 41032271f310783660fbf80e5622e36f8b9ac446 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 578 | sce | Ch02Ex19.sce | // Scilab Code Ex2.19: : Page-2.16 (2009)
clc; clear;
lambda1 = 7000e-008; // Original wavelength of light, cm
lambda2 = 5000e-008; // New wavelength of light, cm
n1 = 10; // Order of the fringes with original wavelength
// As x = n*lambda*D/d, so n*lambda = constant
// n1*lambda1 = n2*lambda2, solving for n2
n2 = n1*lambda1/lambda2; // Order of visible fringe for changed wavelength of light
printf("\nThe order of visible fringe for changed wavelength of light = %2d", ceil(n2));
// Result
// The order of visible fringe for changed wavelength of light = 14
|
3578df7b5d946942fedaa815e494129e56343870 | 449d555969bfd7befe906877abab098c6e63a0e8 | /812/CH7/EX7.05/7_05.sce | e0e2e8ef6d0294a9d0bbc517e36238e26393b3b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 981 | sce | 7_05.sce | //speed force and power//
pathname=get_absolute_file_path('7.05.sce')
filename=pathname+filesep()+'7.05-data.sci'
exec(filename)
//Width of the model(in m):
wm=S*wp*0.3048
//Area of model (in m^2):
Am=S^2*Ap*0.305^2
[m n]=size(V)
i=1:n
//Aerodynamic drag coefficient():
Cd=2.*Fd(i)/d./(V(i))^2/0.0305
//Reynolds number:
Re=V(i)*wm/v
plot(Re,Cd);
a=gca()
a.data_bounds=[100000,0.4;500000,0.6]
xtitle('Aerodynamic drag coefficient vs drag force','Reynolds number','Model Drag Coeff.')
//It is seen that drag coefficient becomes constant at CD=0.46above Re=4*10^5 at which speed of air is 40m/s
CDc=0.46;
Va=40;
//Drag force (in N):
FDp=CDc/2*d*(Vp*5/18)^2*Ap*0.305^2
//Power required to pull prototype at 100 kmph(in W)
Pp=FDp*Vp*5/18
printf("\n\nRESULTS\n\n")
printf("\n\nSpeed above which Cd is constant: %.3f m/sec\n\n",Va)
printf("\n\nDrag Force: %.3f kN\n\n",FDp/1000)
printf("\n\nPower required to pull prototype at 100 kmph: %.3f kW\n\n",Pp/1000)
|
c2dbb524b3f0630f39609c24d8a78f23744d182b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH10/EX10.31/example10_31.sce | d4623cf15fe0d018d23ef2219b1631214164bfa9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 624 | sce | example10_31.sce | clc
// Given that
p = 1000 // power of lamp in W
d = 2 // distance of a point from lamp in meter
e0 = 8.85e-12 // electric permittivity of space
mu0 = 1.2567e-6 // magnetic permittivity of space
c = 3e8 // speed of light in meter/sec
// Sample Problem 31 on page no. 10.48
printf("\n # PROBLEM 31 # \n")
s = p / (4 * %pi * d^2) //calculation for
r = sqrt(mu0 / e0) // ratio of E,H
E = sqrt(s * r)//calculation for average value of intensity of electric field of radiation
printf("Standard formula used \n E_/H_=sqrt(mu_/e_),\nP=E*H.\n")
printf(" Average value of the intensity of electric field of radiation = %f v/m.",E)
|
2faf8ddc0c0aee304717a7dc3c7dcd55cf098deb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1709/CH8/EX8.4/8_4.sce | 71280dfec26b99e2b94199d30e25993ecae8eb78 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | sce | 8_4.sce | clc
//Initialization of variables
T=10 //K
td=315 //K
//calculations
cv=464.4 *(T/td)^3
//results
printf("specific heat of copper = %.5f cal/g mol K",cv)
|
16492089c6f736cafedc4868cf49abead877dd05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /26/CH3/EX3.2.13/3_2_13.sce | e879e9b4a151fc44d176ed72d8ac415c03aae870 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 452 | sce | 3_2_13.sce | disp('the given matrix is:')
a=[2 5 4 1;4 7 6 2;6 -2 -4 0;-6 7 7 0]
disp(a,'A=')
disp('performing row operations')
a(2,:)=a(2,:)-2*a(1,:)
disp(a)
disp('using cofactor expansion about fourth column')
a(1,:)=[]
a(:,4)=[]
disp(a,'det','det(A)= -1 X')
disp('performing row operations')
a(3,:)=a(3,:)+a(2,:)
disp(a)
disp('using cofactor expansion about first column')
a(2,:)=[]
a(:,1)=[]
disp(a,'det','det(A)= -1 X -6 X')
disp(6*det(a),'=') |
3e1ab5cd7089c895e0163f3a695eacea3a79b8da | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH10/EX10.10/10_10.sce | 298084739cdcdcb6b5af8c7030a7cb7d789baaeb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 707 | sce | 10_10.sce | //Chapter 10, Problem 10, figure 10.20
clc;
tc = 100E-6; // in s/cm
Vc = 2; // in V/cm
w = 5; // in cm ( width of one complete cycle for both waveform )
h1 = 2; // in cm ( peak-to-peak height of the display )
h2 = 2.5; // in cm ( peak-to-peak height of the display )
//calculation:
T = w*tc
f = 1/T
ptpv1 = h1*Vc
Vrms1 = ptpv1/(2^0.5)
ptpv2 = h2*Vc
Vrms2 = ptpv2/(2^0.5)
phi = 0.5*360/w
printf("\n\n (a)Frequency, f = %f kHz",f/1000)
printf("\n\n (b1)r.m.s voltage of 1st waveform = %.2f V",Vrms1)
printf("\n\n (b2)r.m.s voltage of 2nd waveform = %.2f V",Vrms2)
printf("\n\n (c)Phase difference = %.0f°",phi)
|
aeed7b50103c6235a90916e25fc8f51fac4f0fa1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /52/CH5/EX5.17/Example5_17.sce | b03a6a01e2103475763d98dec79bd77f4ade116f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sce | Example5_17.sce | //Example 5.17
//To Design an H.P.F. monotonic in passband using Bilinear Transform
clear;
clc ;
close ;
ap=3;//db
as=10;//db
fp=1000;//Hz
fs=350;//Hz
f=5000;
T=1/f;
wp=2*%pi*fp;
ws=2*%pi*fs;
op=2/T*tan(wp*T/2);
os=2/T*tan(ws*T/2);
N=log(sqrt((10^(0.1*as)-1)/(10^(0.1*ap)-1)))/log(op/os);
disp(ceil(N),'Order of the filter, N =');
s=%s;
HS=1/(s+1)//Transfer Function for N=1
oc=op//rad/sec
HS1=horner(HS,oc/s);
disp(HS1,'Normalized Transfer Function, H(s) =');
z=%z;
HZ=horner(HS,(2/T)*(z-1)/(z+1));
disp(HZ,'H(z) ='); |
b6219b2964b6c5cab497d935611e39f2ebe7c05c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH5/EX5.9/Ch05Ex9.sce | a934e238bda758f1d904813999cc955ba1ff3cd6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | sce | Ch05Ex9.sce | // Scilab Code Ex5.9: Page:300 (2011)
clc;clear;
D5 = 3.36e-003;....// Diameter of Newton's 5th ring, m
D15 = 5.90e-003;....// Diameter of Newton's 15th ring, m
m = 10; // Number of ring
R = 1;....// Radius of the plano-convex lens, m
lambda = (D15^2-D5^2)/(4*m*R);
printf("\nThe wavelength of the light used = %4d angstrom", lambda/1e-010);
// Result
// The wavelength of the light used = 5880 angstrom
|
111f87a09f4ae1d12ef8042f33bd5f74829f3fbb | 2875b7a7a87e6280e5aac1fb50dc04dfbcc23d3f | /lec/robo/scilab/wip2-bb.sce | 698f9e4ae1c27e39e44d4b5358eafd9e64ab3c57 | [] | no_license | ktysd/ktysd.github.io | eb8946c877a6cb209960be57bfbcc1fe429abedd | 1e29a628e63ea476b4891da5c12276d1ae11c4a7 | refs/heads/master | 2021-04-26T15:07:02.322758 | 2020-11-02T07:33:51 | 2020-11-02T07:33:51 | 123,993,111 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,231 | sce | wip2-bb.sce | clear;clf();
///// 左(赤)のバンバン入力 /////
function u=bang1(t)
P = 6; //バンバン入力の強度
/// 以下は3段の場合 ///
t1=0.36; t2=0.78; t3=0.39; //切替時間の変更は0.01単位
if (t<t1)
u = P;
elseif (t<t1+t2)
u = -P;
elseif (t<t1+t2+t3)
u = P;
else
u = 0;
end
endfunction
///// 右(青)のバンバン入力 /////
function u=bang2(t)
u = 0; //0を返す = 何もしない
endfunction
/////////////// 諸元 ///////////////
M=2, J=0.1, m=5, r=0.2, l=1, g=9.8;
bmax=0.9; //転倒角
mu=0.3; //摩擦係数
w0=3; //リンクの自然長
////////////////////////////////////
///// ステップ関数ほか /////
function y = step( x )
s = 100;
y = 1.0./(1.0+exp(-s*x)); //ステップ関数
endfunction
function y = trap( x, x0, w )
y = step((x-x0)+w).*step(-(x-x0)+w); //台形関数
endfunction
function y = sgn( x )
s = 1e4; //#1×10の4乗のこと = 10000
y = (2.0/(1+exp(-s*x))-1.0); //符号関数
endfunction
///// 床からの反力(ペナルティー法) /////
function ff = yuka(x)
a=x(1); da=x(2); b=x(3); db=x(4);
xm = [r*a+l*sin(b); r+l*cos(b)];
dxm = [r*da+l*db*cos(b); -l*db*sin(b)];
Kp=1e4; Cp=90; //これらの数値を変えると床の性質が変わる
R = step(-xm(2))*(-Kp*xm(2)-Cp*dxm(2)); //垂直抗力
F = -mu*R*sgn(dxm(1)); //摩擦力
ff = [F; R]; //床からの反力
endfunction
///// リンクからの反力 /////
function pp = rinku(x)
a1=x(1); da1=x(2); b1=x(3); db1=x(4);
a2=x(5); da2=x(6); b2=x(7); db2=x(8);
//リンクからの力
ww = [r*(a2-a1)+l*(sin(b2)-sin(b1));...
l*(cos(b2)-cos(b1))];
dww = [r*(da2-da1)+l*( db2*cos(b2)-db1*cos(b1));...
l*(-db2*sin(b2)+db1*sin(b1))];
w = norm(ww); //wwの長さ
dw = ( dww(1)*ww(1)+dww(2)*ww(2) )/w; //wwの長さの時間微分
uu = ww/w; //単位ベクトル化
ck = 5000; cw = 100; p = -ck*(w-w0)-cw*dw; //反力の大きさ
pp = p*uu;
endfunction
///// 振り子先端に作用する力→一般化力 /////
function Ff = sentan(x,F)
global r l;
b=x(3);
Ff = [r, 0; l*cos(b), -l*sin(b)]*F; //一般化力への変換公式
endfunction
///// 倒立制御入力 /////
function u = toritu(x,a0)
a=x(1); da=x(2); b=x(3); db=x(4);
/// 制御の打ち切り×(位置制御 + 倒立制御) ///
u = trap(b,0,bmax)*(15*b + 1*db); //対戦用に「倒立制御のみ」に変更
endfunction
///// 運動方程式の右辺 ////
function h = uhen(x,F)
a=x(1); da=x(2); b=x(3); db=x(4);
A = [ (M+m)*r^2+J, m*l*r*cos(b); ...
m*l*r*cos(b), m*l^2];
bb = [m*l*r*db^2 *sin(b); m*g*l*sin(b)] + F; //Fは一般化力
h = A\bb;
endfunction
///// 運動方程式の定義 /////
function dx = eom(t,x)
pp = rinku(x); //リンクからの反力
///// 左 /////
a=x(1); da=x(2); b=x(3); db=x(4);
ff=yuka([a; da; b; db]); //床反力
Ff=sentan([a; da; b; db], ff - pp); //振り子先端への力→一般化力
T =toritu([a; da; b; db],0); //倒立制御
T = T + bang1(t); //バンバン入力をトルクに加算
FT=[T; -T]; //トルク→一般化力
h=uhen([a; da; b; db], FT+Ff); //加速度で整理した右辺
dx(1) = x(2); dx(2) = h(1); //運動方程式
dx(3) = x(4); dx(4) = h(2);
///// 右 /////
a=x(5); da=x(6); b=x(7); db=x(8);
ff=yuka([a; da; b; db]); //床反力
Ff=sentan([a; da; b; db], ff + pp); //振り子先端への力→一般化力
T =toritu([a; da; b; db],w0/r); //倒立制御
T = T + bang2(t); //バンバン入力をトルクに加算
FT=[T; -T]; //トルク→一般化力
h=uhen([a; da; b; db], FT+Ff); //加速度の右辺
dx(5) = x(6); dx(6) = h(1); //運動方程式
dx(7) = x(8); dx(8) = h(2);
endfunction
///// 運動方程式を解く /////
tn=801; tt=linspace(0,0.01*tn,tn);
x01=[0; 0; 0; 0]; //左側の初期値
x02=[w0/r; 0; 0; 0]; //右側の初期値
xx=ode( [x01;x02], 0, tt, eom );
///// ロボット描画用の関数 /////
function R=Rot(a) //回転
R=[cos(a),-sin(a);...
sin(a), cos(a)];
endfunction
function yy=Trans(xx,rr) //平行移動
yy(1,:)=xx(1,:) + rr(1)*ones(xx(1,:));
yy(2,:)=xx(2,:) + rr(2)*ones(xx(2,:));
endfunction
function endp = draw_robot(a,b,x,sp) //ロボット描画
// x=r*a; //車輪中心の水平変位
sn=5; sq=linspace(0,2*%pi*(sn-1)/sn,sn);
spoke=r*[cos(sq);sin(sq)]; //原点にあるスポークの外周点
spoke=Rot(-a) * spoke; //角度a回転したスポークの外周点
spoke=Trans(spoke,[x;r]); //位置xのスポークの外周点
xv=[x*ones(1:sn);spoke(1,:)]; yv=[r*ones(1:sn);spoke(2,:)];
xsegs(xv,yv,2); xarc(x-r, 2*r, 2*r, 2*r, 0, 360*64); //スポーク; 車輪
rod=[0,0;0,l]; //原点にある棒の両端点
rod=Rot(-b) * rod; //角度βだけ回転した棒の両端点
rod=Trans(rod,[x;r]); //位置xの棒の両端点
plot( rod(1,:), rod(2,:),sp); //棒の描画
gc=gce(); gc.children.thickness=2; //線の太さ
endp=rod(:,2); //棒の先端
endfunction
function draw_pair(x)
a1=x(1); b1=x(3); a2=x(5); b2=x(7);
/// 重心まわりの描画 ///
xM1=r*a1; xM2=r*a2; xm1=xM1+l*sin(b1); xm2=xM2+l*sin(b2);
xG=(M*(xM1+xM2)+m*(xm1+xm2))/(2*M+2*m); //重心の座標
ep1=draw_robot(a1,b1,r*a1-xG,"r-"); //r 赤
ep2=draw_robot(a2,b2,r*a2-xG,"b-"); //b 青
plot([ep1(1),ep2(1)],[ep1(2),ep2(2)],"g-"); //リンクの描画
gc=gca(); gc.isoview="on"; //縦横比1
gc.data_bounds=[-3,0;3,2]; //座標軸の範囲
endfunction
drawlater; draw_pair( [x01;x02] ); drawnow;
sleep(2000); //2s待ち
realtimeinit(0.01); //アニメーションの時間刻み
for i=1:10:tn
realtime(i);
drawlater; clf(); //描画延期; 描画消去;
draw_pair( xx(:,i) ); //ロボット描画
xlabel(sprintf("%d / %d", i, tn));
drawnow; //画面更新
end
///// 転倒時刻の測定 /////
i_1win=0; i_2win=0;
for i=1:tn
b=xx(3,i); ep1=r+l*cos(b);
b=xx(7,i); ep2=r+l*cos(b);
if ( ep1<0 & i_2win==0 )
i_2win=i;
end
if ( ep2<0 & i_1win==0 )
i_1win=i;
end
end
///// 転倒時刻の表示 /////
sy=1.5;
if ( i_1win==0 & i_2win==0 ) //引き分け
xstring(-2,sy,"DRAW !");
elseif ( i_1win>0 & i_2win==0 ) //1の勝ち
t_win=tt(i_1win); //勝った時刻
xstring(-2,sy,sprintf("Red wins at t = %.2f (i=%d)",t_win,i_1win));
elseif ( i_1win==0 & i_2win>0 ) //2の勝ち
t_win=tt(i_2win); //勝った時刻
xstring(-2,sy,sprintf("Blue wins at t = %.2f (i=%d)",t_win,i_2win));
else
xstring(0,sy,"DRAW (both lose)"); //共倒れ
end
gc=gce(); gc.font_size=5; drawnow;
|
2a6e8fba51ff434d7fa110b282a309764e4ee3ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH10/EX10.1/1.sce | c965270e43348e6e4752a37a0b2e21828c7dae83 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 491 | sce | 1.sce | clc
t_db=293; //K
W=0.0095; //kg/kg of dry air
p_t=1.0132;
disp("(i) Partial pressure of vapour")
p_v=p_t*W/(W+0.622);
disp("p_v=")
disp(p_v)
disp("bar")
disp("(ii) Relative humidity phi :")
p_vs=0.0234; //bar; From steam tables corresponding to 20 0C
phi=p_v/p_vs;
disp("relative hmidity =")
disp(phi)
disp("(iii) Dew point temperature")
t_dp=13 + (14-13)/(0.01598 - 0.0150)*(0.01524-0.0150); //From stea table by interpolation
disp("t_dp=")
disp(t_dp)
disp("0C") |
299efd8798ee50f4434dfdadc7c61fa55e1d80b9 | f42e0a9f61003756d40b8c09ebfe5dd926081407 | /TP2/inverse.sci | b81bfc9bce446eb82760bf240d30dbc88061b80b | [] | no_license | BenFradet/MT09 | 04fe085afaef9f8c8d419a3824c633adae0c007a | d37451249f2df09932777e2fd64d43462e3d6931 | refs/heads/master | 2020-04-14T02:47:55.441807 | 2014-12-22T17:34:50 | 2014-12-22T17:34:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 194 | sci | inverse.sci | function[b] = inverse(a)
exec('resolG.sci', -1);
[m n] = size(a);
id = eye(n, n);
b = zeros(n, n);
for i = 1:n
b(:, i) = resolG(a, id(:, i));
end
endfunction
|
a8dc8707ac257e8f2a4d99507abbeab9cacf875c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH9/EX9.14/Example9_14.sce | 98af403ea66a8d3827e044ac28db21fa7e183007 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,152 | sce | Example9_14.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 2: CONSTANTS OF OVERHEAD TRANSMISSION LINES
// EXAMPLE : 2.14 :
// Page number 110-111
clear ; clc ; close ; // Clear the work space and console
// Given data
r = 6.0/1000 // Radius of conductor(m)
D_a_cc = 5.0 // Distance between conductor a & c'(m)
D_b_bb = 6.0 // Distance between conductor b & b'(m)
D_c_aa = 5.0 // Distance between conductor c & a'(m)
D_acc_bbb = 3.0 // Distance between conductor ac' & bb'(m)
D_bbb_caa = 3.0 // Distance between conductor bb' & ca'(m)
D_a_c = 6.0 // Distance between conductor a & c(m)
// Calculations
r_GMR = 0.7788*r // GMR of conductor(m)
D_a_b = (D_acc_bbb**2+((D_b_bb-D_a_cc)/2)**2)**(1.0/2) // Distance between conductor a & b(m)
D_a_bb = (D_acc_bbb**2+(D_a_cc+(D_b_bb-D_a_cc)/2)**2)**(1.0/2) // Distance between conductor a & b'(m)
D_a_aa = ((D_acc_bbb+D_bbb_caa)**2+D_c_aa**2)**(1.0/2) // Distance between conductor a & a'(m)
D_a_a = r_GMR // Self GMD of conductor a(m)
D_aa_aa = D_a_a // Self GMD of conductor a'(m)
D_aa_a = D_a_aa // Distance between conductor a' & a(m)
D_S1 = (D_a_a*D_a_aa*D_aa_aa*D_aa_a)**(1.0/4) // Self GMD in position 1(m)
D_bb_b = D_b_bb // Distance between conductor b' & b(m)
D_S2 = (D_a_a*D_b_bb*D_aa_aa*D_bb_b)**(1.0/4) // Self GMD in position 2(m)
D_S3 = (D_a_a*D_a_aa*D_aa_aa*D_aa_a)**(1.0/4) // Self GMD in position 3(m)
D_S = (D_S1*D_S2*D_S3)**(1.0/3) // Equivalent self GMD(m)
D_aa_bb = D_a_b // Distance between conductor a' & b'(m)
D_aa_b = D_a_bb // Distance between conductor a' & b(m)
D_AB = (D_a_b*D_a_bb*D_aa_b*D_aa_bb)**(1.0/4) // Mutual GMD(m)
D_BC = D_AB // Mutual GMD(m)
D_c_a = D_a_c // Distance between conductor c & a(m)
D_cc_aa = D_c_a // Distance between conductor a' & c'(m)
D_cc_a = D_a_cc // Distance between conductor c' & a(m)
D_CA = (D_c_a*D_c_aa*D_cc_a*D_cc_aa)**(1.0/4) // Mutual GMD(m)
D_m = (D_AB*D_BC*D_CA)**(1.0/3) // Equivalent Mutual GMD(m)
L = 0.2*log(D_m/D_S) // Inductance per phase(mH/km)
// Results
disp("PART II - EXAMPLE : 2.14 : SOLUTION :-")
printf("\nInductance per phase, L = %.2f mH/km", L)
|
4f7b2c39fd667ce992bdf827d52aa47341b593a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2642/CH2/EX2.5/Ex2_5.sce | 61e10018836497df8a8c76e406dae2feb6189ff1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 629 | sce | Ex2_5.sce | // FUNDAMENTALS OF ELECTICAL MACHINES
// M.A.SALAM
// NAROSA PUBLISHING HOUSE
// SECOND EDITION
// Chapter 2 : BESICS OF MAGNETIC CIRCUITS
// Example : 2.5
clc;clear; // clears the console and command history
// Given data
I = 15 // current through conductor in A
N = 10 // number of turns
myu_0 = 4*%pi*10^-7 // permiability
myu_r = 1 // relative permiability of air
r = 0.015
// caclulations
B = myu_0*myu_r*N*I/(2*%pi*r) // magnetic flux in T
// display the result
disp("Example 2.5 solution");
printf(" \n Magnetic flux \n B= %.0e T \n", B);
|
8f45e246b3ba9b3d36a72f38740be21899f4c58f | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH44/EX44.01/44_01.sce | 6f9669c26fe6f1889a13364526952016f36448cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 44_01.sce | //Problem 44.01:A parallel-wire air-spaced transmission line operating at 1910 Hz has a phase shift of 0.05 rad/km. Determine (a) the wavelength on the line, and (b) the speed of transmission of a signal.
//initializing the variables:
f = 1910; // in Hz
b = 0.05; // in rad/km
//calculation:
w = 2*%pi*f
//wavelength
Y = 2*%pi/b
//speed of transmission
u = f*Y
printf("\n\n Result \n\n")
printf("\n wavelength Y is %.1f km",Y)
printf("\n speed of transmission %.2E km/sec",u)
|
7422cc401eba16802b09e352169d05d1bf4e7bb6 | cf622797460fe779c299646d5a0139ad46c7ac50 | /test/basic.tst | ec2e4da65259835a3ae00bb61507e861c80da5c3 | [] | no_license | etanol/nnvect | 6a015532f341077910d5cdedc12cc14c58d66ddc | 646585186f9677b3955fab19e2e2e6156b7e0b0e | refs/heads/master | 2020-04-29T08:01:41.489778 | 2010-03-31T00:17:22 | 2010-03-31T00:17:22 | 175,972,233 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 896 | tst | basic.tst | 0 1:0 2:0 3:0
0 1:0 2:0 3:1
0 1:0 2:0 3:2
0 1:0 2:0 3:3
0 1:0 2:1 3:0
0 1:0 2:1 3:1
0 1:0 2:1 3:2
0 1:0 2:1 3:3
0 1:0 2:2 3:0
0 1:0 2:2 3:1
0 1:0 2:2 3:2
0 1:0 2:2 3:3
0 1:0 2:3 3:0
0 1:0 2:3 3:1
0 1:0 2:3 3:2
0 1:0 2:3 3:3
0 1:1 2:0 3:0
0 1:1 2:0 3:1
0 1:1 2:0 3:2
0 1:1 2:0 3:3
0 1:1 2:1 3:0
0 1:1 2:1 3:1
0 1:1 2:1 3:2
0 1:1 2:1 3:3
0 1:1 2:2 3:0
0 1:1 2:2 3:1
0 1:1 2:2 3:2
0 1:1 2:2 3:3
0 1:1 2:3 3:0
0 1:1 2:3 3:1
0 1:1 2:3 3:2
0 1:1 2:3 3:3
0 1:2 2:0 3:0
0 1:2 2:0 3:1
0 1:2 2:0 3:2
0 1:2 2:0 3:3
0 1:2 2:1 3:0
0 1:2 2:1 3:1
0 1:2 2:1 3:2
0 1:2 2:1 3:3
0 1:2 2:2 3:0
0 1:2 2:2 3:1
0 1:2 2:2 3:2
0 1:2 2:2 3:3
0 1:2 2:3 3:0
0 1:2 2:3 3:1
0 1:2 2:3 3:2
0 1:2 2:3 3:3
0 1:3 2:0 3:0
0 1:3 2:0 3:1
0 1:3 2:0 3:2
0 1:3 2:0 3:3
0 1:3 2:1 3:0
0 1:3 2:1 3:1
0 1:3 2:1 3:2
0 1:3 2:1 3:3
0 1:3 2:2 3:0
0 1:3 2:2 3:1
0 1:3 2:2 3:2
0 1:3 2:2 3:3
0 1:3 2:3 3:0
0 1:3 2:3 3:1
0 1:3 2:3 3:2
0 1:3 2:3 3:3
|
fe9d7ef43323836d7f975ebc0de0f9cbc8cffb23 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH40/EX40.07/40_07.sce | eb6adfe5a0358dc226feafd6c7db00d0c6b09db4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 929 | sce | 40_07.sce | //Problem 40.07: A concentric cable has a core diameter of 25 mm and an inside sheath diameter of 80 mm. The relative permittivity of the dielectric is 2.5, the loss angle is 3.5 x 10-3 rad and the working voltage is 132 kV at 50 Hz frequency. Determine for a 1 km length of the cable (a) the capacitance, (b) the charging current and (c) the power loss.
//initializing the variables:
e0 = 8.85E-12;
er = 2.5;
di = 0.08; // in m
d0 = 0.025; // in m
r = 1000; // in m
V = 132000; // in Volts
f = 50; // in Hz
del = 3.5E-3; // rad.
//calculation:
//core radius, a
a = d0/2
//internal sheath radius,
b = di/2
//capacitance
C = 2*%pi*e0*er*1E3/(log(b/a))
//Charging current
I = V*2*%pi*f*C
//power loss
P = (2*%pi*f*C*tan(del))*V^2
printf("\n\n Result \n\n")
printf("\n (a)capacitance for a 1 km length is %.2E F",C)
printf("\n (b)the charging current %.2E A/km",I)
printf("\n (c)power loss %.0f W",P) |
71218eb15eeae1e392f4ba4f3d7cff7dd745ee69 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH15/EX15.6/Ex15_6.sce | 662580636f1b928407dbf7477dbbb73aa2a1ef6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 136 | sce | Ex15_6.sce | clc;
slewrate=500000;
Vpk=0.001;
fmax=slewrate/(2*3.14*Vpk);
disp('Hz',fmax,"fmax=");
//The provided in the textbook is wrong
|
06cd7954585625e0c535e865231aa99323aa2c31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH15/EX15.12/15_12.sce | 4266c4f4559b416e2e0e2464a9811f4fc639830c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 15_12.sce | //Example 15.12
//Modified Midpoint Method
//Page no. 519
clc;clear;close;
deff('y=f(x,y)','y=y+x')
y=1;
h=0.2;
Z(1)=y;
Z(2)=Z(1)+h*f(0,Z(1))
printf('Z(%i) = %g',1,Z(2))
for i=2:5
x=(i-1)*h;
Y(i-1)=(Z(i)+Z(i-1)+h*f(x,Z(i)))/2
Z(i+1)=Z(i-1)+2*h*f(x,Z(i))
printf('\n Y(%i) = %g\n\n\n Z(%i) = %g',i-1,Y(i-1),i,Z(i+1))
end
printf('\n\n\n y4 = %g',(4*Y(4)-Y(2))/3) |
a01b51ac6fa60343e14185905bd5cd2bb29d6847 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2708/CH3/EX3.6/ex_3_6.sce | de57062191932f222035cfb89947a1ff8c4c49f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | ex_3_6.sce | //Example 3.6 // Thickness of Calcite plate
clc;
clear;
//given data :
Uo=1.658;//refractive index for O ray
Ue=1.486;//refractive index for E ray
w=589D-9;// wavelength of light used in m
n=1;//integer for odd multiples
t=(2*n-1)*w/(4*(Uo-Ue));//thickness of Calcite plate in m
t=t*100;// to convert in cm
disp(t,"thickness of Calcite plate in cm")
|
dca8ccbc904389f9a415d5ca9b40a326254ce66a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH16/EX16.15/16_15.sce | bdb6ab63790167d332dcff1af14d26f80f91d3e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 265 | sce | 16_15.sce | //ques-16.15
//Calculating activation energy for the reaction
clc
k2=5.16*10^4; k1=3.76*10^3;
T2=1125; T1=1085;//temperature (in K)
Ea=(log10(k2/k1)*2.303*8.314*T1*T2)/(T2-T1);//activation energy
printf("Activation energy for the reaction is %d J/mol.",Ea);
|
61f77f4a174c2f09af349883d1b1d3cde073fcc6 | 48b35d91574ad9ef85aefeb435059f8f75e3bebb | /DEVELOPMENT-LANGUAGES/uralic/vot.tst | bea621a6a709e091eed3532db7b6441cc4c13867 | [] | no_license | ElliotMouchon/task0-data | b3e96eea08b3eba08d5a889f9b385cf00ff5701d | 0d24b945ac96e08aa5a2f0080fa4de465f91b40a | refs/heads/master | 2023-04-16T11:48:39.575176 | 2021-04-29T04:04:17 | 2021-04-29T04:04:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,087 | tst | vot.tst | entši N;TRANS;PL
nain N;TRANS;SG
tševäd N;ESS;PL
tšäsi N;NOM;SG
lumi N;PRT;SG
üü N;PRT;PL
lintu N;GEN;SG
akkuna N;AT+ESS;PL
mätši N;COM;PL
seppä N;AT+ABL;SG
varõz N;IN+ALL;SG
pää N;IN+ESS;PL
ammaz N;TERM;SG
entši N;AT+ABL;PL
susi N;IN+ABL;SG
ammaz N;PRT;SG
kõrva N;IN+ALL;SG
ilozuz N;AT+ABL;SG
päivä N;ESS;PL
õźźa N;PRT;SG
sipuli N;GEN;PL
võtii N;NOM;PL
lintu N;IN+ESS;SG
pää N;GEN;PL
üü N;GEN;SG
tševäd N;COM;PL
jalka N;GEN;SG
opõnõ N;TERM;SG
lahsi N;COM;PL
staruha N;AT+ALL;PL
seppä N;AT+ESS;SG
akkuna N;TERM;PL
aika N;GEN;PL
mätši N;PRT;PL
nain N;ESS;PL
itšä N;COM;PL
pää N;AT+ALL;PL
pää N;TERM;PL
vesi N;TRANS;PL
uhsi N;AT+ALL;SG
tšäsi N;TRANS;SG
jõtši N;IN+ABL;SG
võtii N;TRANS;SG
aika N;AT+ALL;SG
isä N;PRT;PL
lammaz N;AT+ABL;SG
lammaz N;NOM;SG
akkuna N;TRANS;SG
leipä N;NOM;PL
aika N;IN+ABL;SG
uhsi N;PRT;PL
juusso N;AT+ALL;PL
kõrva N;TERM;PL
pää N;ESS;PL
nain N;IN+ABL;PL
susi N;AT+ESS;PL
tähti N;IN+ALL;SG
opõnõ N;TERM;PL
kurtši N;PRT;SG
lupa N;PRT;SG
tševäd N;IN+ABL;SG
kuu N;AT+ABL;SG
jalka N;NOM;PL
leipä N;AT+ALL;PL
tütär N;PRT;SG
varõz N;GEN;SG
vesi N;AT+ALL;PL
meez N;COM;PL
õźźa N;TRANS;PL
ilozuz N;IN+ABL;PL
luu N;IN+ALL;SG
kuu N;IN+ESS;PL
tševäd N;GEN;SG
koira N;ESS;PL
koira N;GEN;SG
luu N;TERM;PL
õlud N;IN+ESS;PL
kõrsi N;IN+ESS;SG
meez N;IN+ALL;PL
õlud N;AT+ALL;SG
susi N;GEN;PL
võtii N;AT+ESS;PL
meez N;PRT;PL
ilozuz N;ESS;PL
jalka N;NOM;SG
jää N;COM;SG
meez N;AT+ABL;PL
sõzar N;IN+ALL;SG
õźźa N;AT+ESS;SG
velli N;IN+ABL;PL
kõrva N;IN+ALL;PL
kurtši N;IN+ABL;PL
maa N;PRT;SG
õźźa N;ESS;PL
akkuna N;AT+ABL;SG
luu N;IN+ABL;SG
opõnõ N;TRANS;PL
üü N;COM;SG
silmä N;TRANS;SG
kõrsi N;IN+ABL;PL
tšivi N;AT+ESS;SG
töö N;IN+ESS;PL
varõz N;GEN;PL
silmä N;NOM;PL
lintu N;AT+ALL;PL
itšä N;PRT;SG
staruha N;IN+ESS;SG
vesi N;IN+ABL;PL
töö N;TERM;SG
ilozuz N;AT+ALL;PL
lumi N;TRANS;PL
tähti N;AT+ESS;PL
luu N;IN+ALL;PL
võtii N;IN+ALL;PL
tšivi N;TRANS;SG
vesi N;AT+ABL;SG
silmä N;AT+ABL;SG
lahsi N;GEN;PL
lammaz N;COM;SG
juusso N;COM;SG
juusso N;ESS;SG
leipä N;IN+ESS;PL
meez N;TRANS;PL
nain N;TERM;SG
opõnõ N;AT+ABL;SG
seppä N;IN+ABL;SG
sipuli N;TERM;SG
akkuna N;AT+ABL;PL
tševäd N;TRANS;SG
üü N;AT+ABL;SG
aika N;AT+ABL;SG
seppä N;PRT;PL
kurtši N;TRANS;SG
üü N;IN+ESS;PL
karu N;TRANS;SG
staruha N;AT+ABL;SG
lumi N;IN+ABL;SG
lupa N;AT+ESS;PL
seppä N;IN+ESS;PL
aika N;COM;PL
üü N;GEN;PL
süä N;IN+ESS;SG
pää N;IN+ALL;SG
sipuli N;IN+ALL;SG
ilozuz N;AT+ALL;SG
juusso N;PRT;PL
tütär N;IN+ESS;PL
sõzar N;AT+ALL;PL
tšivi N;COM;SG
staruha N;IN+ALL;SG
tširjai N;PRT;SG
kuu N;TERM;PL
päivä N;PRT;SG
juusso N;COM;PL
varõz N;IN+ESS;PL
jõtši N;GEN;PL
kõrva N;PRT;SG
seppä N;AT+ALL;PL
emä N;PRT;SG
meez N;TERM;PL
varõz N;NOM;SG
leipä N;AT+ABL;SG
susi N;AT+ESS;SG
lintu N;TERM;SG
akkuna N;ESS;SG
kõrva N;TERM;SG
jalka N;AT+ABL;PL
kõrsi N;GEN;SG
vesi N;ESS;SG
tšivi N;PRT;SG
tševäd N;IN+ESS;SG
silmä N;TRANS;PL
itšä N;AT+ESS;SG
sõbra N;COM;SG
võtii N;AT+ALL;PL
nain N;IN+ALL;SG
jää N;COM;PL
seppä N;ESS;SG
entši N;TERM;SG
karu N;IN+ABL;PL
isä N;NOM;PL
tšivi N;IN+ABL;SG
üü N;AT+ESS;PL
jõtši N;AT+ABL;PL
sõbra N;TRANS;PL
kuu N;TRANS;PL
lupa N;PRT;PL
emä N;NOM;PL
akkuna N;AT+ALL;PL
mätši N;PRT;SG
opõnõ N;COM;SG
staruha N;AT+ALL;SG
päivä N;IN+ALL;SG
võtii N;PRT;SG
staruha N;COM;SG
uhsi N;IN+ESS;PL
aika N;PRT;SG
tähti N;AT+ALL;PL
jalka N;TERM;SG
süä N;TERM;SG
jää N;IN+ABL;SG
opõnõ N;IN+ESS;PL
tšivi N;IN+ESS;PL
isä N;TERM;SG
õlud N;ESS;PL
meez N;IN+ALL;SG
süä N;GEN;PL
koira N;AT+ABL;PL
jalka N;ESS;PL
ilozuz N;AT+ABL;PL
vesi N;AT+ESS;PL
sõzar N;AT+ALL;SG
võtii N;TERM;PL
leipä N;AT+ABL;PL
tširjai N;COM;PL
kõrva N;TRANS;SG
töö N;TRANS;SG
leipä N;AT+ALL;SG
kõrsi N;TERM;PL
maa N;IN+ABL;SG
kurtši N;AT+ABL;SG
silmä N;PRT;PL
tševäd N;AT+ABL;SG
lammaz N;ESS;PL
õźźa N;IN+ESS;PL
tševäd N;PRT;SG
ammaz N;GEN;SG
emä N;TERM;SG
lintu N;IN+ABL;SG
seppä N;GEN;SG
lupa N;AT+ALL;SG
lahsi N;TERM;PL
leipä N;GEN;SG
tähti N;AT+ABL;PL
õźźa N;IN+ALL;SG
isä N;TRANS;PL
lintu N;PRT;PL
kõrsi N;AT+ESS;PL
tšäsi N;PRT;PL
tütär N;TRANS;PL
ammaz N;IN+ESS;PL
varõz N;ESS;SG
lahsi N;IN+ABL;PL
luu N;IN+ABL;PL
luu N;AT+ABL;PL
võtii N;COM;SG
uhsi N;NOM;SG
varõz N;IN+ESS;SG
sõzar N;COM;SG
sipuli N;IN+ABL;PL
pää N;TRANS;SG
karu N;TRANS;PL
velli N;IN+ALL;PL
ammaz N;AT+ABL;PL
võtii N;AT+ESS;SG
varõz N;AT+ALL;SG
mätši N;AT+ESS;PL
üü N;AT+ALL;PL
lammaz N;IN+ABL;SG
lammaz N;GEN;PL
tütär N;PRT;PL
velli N;TRANS;SG
võtii N;AT+ABL;PL
tširjai N;NOM;SG
sõbra N;NOM;SG
karu N;ESS;PL
päivä N;GEN;SG
velli N;ESS;SG
uhsi N;ESS;SG
lahsi N;IN+ALL;SG
süä N;GEN;SG
õlud N;TERM;PL
emä N;GEN;PL
emä N;PRT;PL
entši N;AT+ESS;SG
pää N;AT+ABL;PL
entši N;AT+ALL;PL
silmä N;TERM;PL
juusso N;AT+ALL;SG
kuu N;TERM;SG
tütär N;AT+ALL;SG
|
ef569445568c7bfe1aa8842ae7dee141318b69b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1202/CH22/EX22.3/22_3.sce | d93f2d307b9ae6af85c9149596017dbc4b71dffa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 871 | sce | 22_3.sce |
clear
clc
//Example 22.3
disp('Example 22.3')
//Parameters
p1=0.028735;p2=0.028344;p3=5.035E-5;V1=12;n=0.0926;
Ib=15;//basal
Gb=81;
//Diet function
function D=D(t)
D=9*exp(-0.05*t);
endfunction
//ODE model
function ydot=model(t,y,U)
G=y(1);X=y(2);I=y(3);
Gdot=-p1*G-X*(G+Gb)+D(t);
Xdot=-p2*X+p3*I;
Idot=-n*(I+Ib)+U/V1;
ydot=[Gdot Xdot Idot]';
endfunction
t=0:0.1:400;t0=0;
y0=[0 0 0]';//G,X,I are deviation variables
U=0;
y = Gb+ode(y0, t0, t, list(model,U))
subplot(3,1,1);
plot(t,y(1,:));
xtitle("","Time(min)","Glucose (mg/L)")
legend("$U=0\ mU/min$")
U=15;
y =Gb+ ode(y0, t0, t, list(model,U))
subplot(3,1,2);
plot(t,y(1,:));
xtitle("","Time(min)","Glucose (mg/L)")
legend("$U=15\ mU/min$")
U=25;
y = Gb+ode(y0, t0, t, list(model,U))
subplot(3,1,3);
plot(t,y(1,:));
xtitle("","Time(min)","Glucose (mg/L)")
legend("$U=25\ mU/min$")
|
99058b22544c4eac4335b236295e05f1d35668f4 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.1/Unix/scilab-2.1/macros/signal/lev.sci | 8b38988d424b86dd1eb32c9433fc8943bdfdb2d1 | [
"MIT",
"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 | 1,070 | sci | lev.sci | //[ar,sigma2,rc]=lev(r)
//[ar,sigma2,rc]=lev(r)
//Resolve the Yule-Walker equations:
//
// |r(0) r(1) ... r(N-1)|| a(1) | |sigma2|
// |r(1) r(0) ... r(n-1)|| a(2) | | 0 |
// | : : ... : || : |=| 0 |
// | : : ... : || : | | 0 |
// |r(N-1) r(N-2) ... r(0) ||a(N-1)| | 0 |
//
//using Levinson's algorithm.
// r :Correlation coefficients
// ar :Auto-Regressive model parameters
// sigma2 :Scale constant
// rc :Reflection coefficients
//!
// author: C. Bunks date: 24 August 1988
// revised: 9 April 1991
//get the size of the correlation vector
rsize=maxi(size(r));
r=matrix(r,1,rsize);
//initialize levinson's algorithm
ar=-r(2)/r(1);
rc(1)=ar;
sigma2=(1-ar*conj(ar))*r(1);
//iterative solution to yule-walker equations
for k=2:rsize-1,
ak1(k)=-(r(k+1)+ar(1:k-1)'*r(k:-1:2)')/sigma2;
rc(k)=ak1(k);
ak1(1:k-1)=ar(1:k-1)+ak1(k)*conj(ar(k-1:-1:1));
sigma2=(1-ak1(k)*conj(ak1(k)))*sigma2;
ar=ak1;
end,
//end
|
50a2fa94fd1ab48a359704556975302f729c64cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1627/CH4/EX4.10/Ex4_10.sce | 98e8ca1a2e8f3beea62958f1e2d811864f4bbcd9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | Ex4_10.sce | clc
//initialisation of variables
h=10//m
h1=20//m
g=9.8//m/s^2
//CALCULATIONS
V=sqrt(2*g*h)//m/s
T=sqrt((2)*(h1)/g)//s
L=V*T//m
//RESULTS
printf('The water steram touch the ground is=% f m',L)
|
e4238912b024f997090df614115f491d03b11eac | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH7/EX7.4/Ex7_4.sce | 47c82fe5211b8b7a34b95776f690766b6d4451ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 960 | sce | Ex7_4.sce | clear;
clc;
// Example 7.4
printf('Example 7.4\n\n');
printf('Page No. 204\n\n');
// This question doesnot contain any calculation part.
//Refer figure 7.3, 7.4, 7.5
T_max = 200;// Flue gas exit temperature in degree celcius
printf(' The company investigate four alternative methods of heat abstraction using the flue gas.\n\n System-1 The efficiency of the furnace without any air preheater is 79.2 per cent.\n System-2 The efficiency of the furnace, with the air preheater only in the system operating as shown in figure 7.3, is increased to 86.6 per cent.\n System-3 By the incorporation of the heat exchanger,the furnace efficiency is increased to 93.3 per cent using the arrangement shown in figure 7.4.\n System-4 Using no preheating,finally achievied an overall thermal efficiency of 93.7 per cent.\n \t The new air preheater scheme is shown in figure 7.5.\n\n The pay-back period in all instances is less than 3.5 years.')
|
8a5159c5556ec17279ce4552554c105543778bbf | 0896434fe17d3300e03ad0250029673ebf70bacc | /sheet_8/Scilab_codes/q1_d.sce | ceb9a2185a589d17b225c93a82e5b7a420b792c8 | [] | no_license | TheShiningVampire/EE324_Controls_Lab | 8ff1720b852bf24dca3c172082f5f898f80f69f3 | 9aea73eed3f5a4ac6c19a799f8aebe09f4af0be8 | refs/heads/main | 2023-07-09T17:30:38.041544 | 2021-08-23T12:14:29 | 2021-08-23T12:14:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 111 | sce | q1_d.sce | clear
close
clc
s = poly(0,'s');
G = (1)/(s*(s^2 + 4*s + 8));
Glin = syslin('c',G);
clf();
evans(Glin,5000);
|
3d03f7f55e2ba6e921a4583dbf69437e178e4bac | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH7/EX7.7/Ex7_7.sce | 14c54e7fcf658c09e96c5fbe8c69857aa0aba2a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 475 | sce | Ex7_7.sce | clc;
p=6; // number of poles
s=72; // number of slots
ts=4; // number of coil sides per slot
C=(s*ts)/2; // total number of coils
// To make commutator pitch an integer one coil is made dummy coil therefore
C=C-1;
yc=(C+1)/(p/2);
disp('commutator pitch');
disp(yc);
yw=((2*C)+2)/(p/2);
disp('Winding pitch is');
disp(yw);
// since back and front pitch should be odd choose
yb=49;
disp('Back pitch is');
disp(yb);
yf=47;
disp('Front pitch is');
disp(yf);
|
ccc322b2307e8debdf7e56bcbeb5d8ea60855bb7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3843/CH12/EX12.5/Ex12_5.sce | 6ea6242db0133209380d6d9a2e140199c3192650 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 780 | sce | Ex12_5.sce | // Example 12_5
clc;funcprot(0);
// Given data
T=25;// °C
P=1;// atm
// Assuming theoretical air C_3H_8+5(O_2+3.76N_2)--->3CO_2+4H_2O(l)+18.8N_2
N_CO2=3;// mol
N_H2O=4;// mol
N_N2=18.8;// mol
// From table B-7
hbar0_fp=-103850;// kJ/kmol (C_3H_8)
hbar_fgp=15060;// kJ/kmol (C_3H_8)
hbar0_fCO2=-393520;// kJ/kmol
hbar0_fH2O=-285830;// kJ/kmol
// Calculation
Q_gp=(N_CO2*hbar0_fCO2)+(N_H2O*hbar0_fH2O)-hbar0_fp;// The enthalpy of combustion of gaseous propane in kJ/kmol fuel
Q_lp=(N_CO2*hbar0_fCO2)+(N_H2O*hbar0_fH2O)-(hbar0_fp-hbar_fgp);// The enthalpy of combustion of liquid propane in kJ/kmol fuel
printf("\nThe enthalpy of combustion of gaseous propane,Q=%7.0f kJ/kmol fuel \nThe enthalpy of combustion of liquid propane,Q=%7.0f kJ/kmol fuel",Q_gp,Q_lp);
|
e5c7e8b5d058d07375835470c9914b995e56f578 | 9049acbad819265c431868accab46173ab28562d | /example/api/api2-1-ee.tst | 12dbc433f5f1d0b00d2845357144ce763a878ab4 | [
"MIT"
] | permissive | Linqiaosong/PyQTST | bc2d9542bb5412d9514baa840e841758263a01d6 | 83108af691f1f22e5f7925225c65e9c35da35824 | refs/heads/master | 2023-07-16T11:27:53.314126 | 2021-08-31T15:04:50 | 2021-08-31T15:04:50 | 268,427,540 | 5 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 4,552 | tst | api2-1-ee.tst |
=========================================================
Calculation Report
PyQTST v2.0
Q. Lin, Wuhan University, 2020
=========================================================
d8888b. db db .d88b. d888888b .d8888. d888888b
88 `8D `8b d8' .8P Y8. `~~88~~' 88' YP `~~88~~'
88oodD' `8bd8' 88 88 88 `8bo. 88
88~~~ 88 88 88 88 `Y8b. 88
88 88 `8P d8' 88 db 8D 88
88 YP `Y88'Y8 YP `8888Y' YP
PyQTST:
A software package for calculating chemical reaction
rate constant by using transition state theory.
Github Website: https://github.com/Linqiaosong/PyQTST
PyPI Website: https://pypi.org/project/PyQTST
Online Documents: https://github.com/Linqiaosong/PyQTST/wiki
PyQTST Citation:
Q. Lin, PyQTST (version),
https://github.com/Linqiaosong/PyQTST, (year)
API for Shermo:
An API of PyQTST for Shermo software.
Shermo Website: http://sobereva.com/soft/shermo/
Shermo Citation:
T. Lu, Q. Chen, Shermo: A general code for calculating
molecular thermodynamic properties, ChemRxiv (2020),
DOI: 10.26434/chemrxiv.12278801
---------------------------------------------------------
Part I
Reaction Molecule Infomations
---------------------------------------------------------
Reactant:
Electronic Energy + Zero Point Energy:
U(0 K)=EE+ZPE=-614815.7 kJ/mol
Gibbs Free Energy at T=373.15 K:
G(373.15 K)=-614977.2 kJ/mol
Total Partition Function without Zero Point Energy:
Q(V=0)/NA=4.04307539E+22
Transition State:
Imaginary Frequency:
freq=-597.29 cm-1
Electronic Energy + Zero Point Energy:
U(0 K)=EE+ZPE=-614728.8 kJ/mol
Gibbs Free Energy at T=373.15 K without Imaginary
Frequency:
G(373.15 K)=-614833.7 kJ/mol
Total Partition Function without Zero Point Energy:
Q(V=0)/NA=4.90035800E+14
Product:
Electronic Energy + Zero Point Energy:
U(0 K)=EE+ZPE=-614962.1 kJ/mol
Gibbs Free Energy at T=373.15 K:
G(373.15 K)=-615066.5 kJ/mol
Total Partition Function without Zero Point Energy:
Q(V=0)/NA=4.16476600E+14
---------------------------------------------------------
---------------------------------------------------------
Part II
Reaction Thermodynamics Infomations
---------------------------------------------------------
Pressure Thermodynamic Reference State:
p*=1.0E+05 Pa
Electronic energy + Single Point Energy Change:
drUm*(0 K)=-146.4 kJ/mol
Gibbs Free Energy Change:
drGm*(373.15 K)=-89.4 kJ/mol
Thermodynamic Equilibrium Constant:
Kp*(373.15 K)=1.029E+00
---------------------------------------------------------
---------------------------------------------------------
Part III
Reaction Kinetics Infomations
---------------------------------------------------------
Number of Reactive Molecule(s):
Nmol=2
Temperature of Reaction:
T=373.15 K
Pressure Thermodynamic Reference State:
p*=1.0E+05 Pa
Quantum Tunneling Transmission Coefficient:
Kappa=1.26
Contribution of Quantum Tunneling Effect in Reaction:
eta=20.71%
Reaction Energy Barrier dU(0 K):
dU=86.9 kJ/mol
Reaction Gibbs Free Energy Barrier dG(T=373.15 K):
dG(373.15 K)=143.4 kJ/mol
Reaction Rate Constant:
Gibbs Free Energy Method:
k(373.15 K, GMethod)=2.543E-06 (mol/L)-1*s-1
Partition Function Method:
k(373.15 K, QMethod)=2.544E-06 (mol/L)-1*s-1
---------------------------------------------------------
d8b db .d88b. d8888b. .88b d88. .d8b. db
888o 88 .8P Y8. 88 `8D 88'YbdP`88 d8' `8b 88
88V8o 88 88 88 88oobY' 88 88 88 88ooo88 88
88 V8o88 88 88 88`8b 88 88 88 88~~~88 88
88 V888 `8b d8' 88 `88. 88 88 88 88 88 88booo.
VP V8P `Y88P' 88 YD YP YP YP YP YP Y88888P
d88888b d8b db d8888b. db
88' 888o 88 88 `8D 88
88ooooo 88V8o 88 88 88 YP
88~~~~~ 88 V8o88 88 88
88. 88 V888 88 .8D db
Y88888P VP V8P Y8888D' YP
|
d4111047ede2568ec59e6cbd1e1deca1fb3539ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /3864/CH8/EX8.2/Ex8_2.sce | ea64b7d607b20b813acebdae3038ccae168aa24e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,398 | sce | Ex8_2.sce | clear
//
//
//Initilization of Variables
L=2000 //mm //Length
d=200 //mm // diameter
t=10 //mm //Thickness
dell_V=25000 //mm**3 //Additional volume
E=2*10**5 //n/mm**2 //Modulus of elasticity
mu=0.3 //Poissons ratio
//Calculations
//Let p be the pressure developed
//Circumferential Stress
//f1=p*d*(2*t)**-1 //N/mm**2
//After sub values and further simplifying
//f1=10*p
//f1=p*d*(4*t)**-1 //N/mm**2
//After sub values and further simplifying
//f1=5*p
//Diameterical strain = Circumferential stress
//Let X=dell_d*d**-1 ................................(1)
//X=e1=(f1-mu*f2)*E**-1
//After sub values and further simplifying
//e1=8.5*p*E**-1
//Longitudinal strain
//Let Y=dell_L*L**-1 ......................................(2)
//Y=e2=(f2-mu*f1)*E**-1
//After sub values and further simplifying
//e2=2*p*E**-1
//Volumetric strain
//Let X=dell_V*V**-1
//X=2*e1+e2
//After sub values and further simplifying
//X=19*p*E**-1
//After further simplifying we get
p=dell_V*(%pi*4**-1*d**2*L)**-1*E*19**-1 //N/mm**2
//Hoop Stress
f1=p*d*(2*t)**-1
//Sub value of X in equation 1 we get
dell_d=8.5*p*E**-1*d
//Sub value of Y in equation 2 we get
dell_L=2*p*E**-1*L
//Result
printf("\n Pressure Developed is %0.2f N/mm**2",p)
printf("\n Hoop stress Developed is %0.2f N/mm**2",f1)
printf("\n Change in diameter is %0.2f mm",dell_d)
printf("\n Change in Length is %0.2f mm",dell_L)
|
e11740f3d0a8285dd7684f9a4a62fd501ddd87a9 | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/is_ARP-007.tst | bb927507056e642c0643f4273ec19a404f9cb1c9 | [] | no_license | RP-pbm/Recurrence-plot | f86c5cd85460661b01a609f8f4281d2cda6b4e07 | b5da95f9b30c1a924a002102219bf0a2ad47df2c | refs/heads/master | 2022-07-24T12:11:34.163543 | 2022-07-09T19:32:43 | 2022-07-09T19:32:43 | 92,934,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 28 | tst | is_ARP-007.tst | ../inputs/determinism-03.ssv |
0ceb0a3b54fb086f88f648cf553d89a852deab5e | 299ec76be485b8d1574b9216bbe8ac6763b2ade3 | /AI_Lab_Ex5/sigmoid.sce | ee378364f4be59c24b96b19943a3cc385f44b429 | [
"MIT"
] | permissive | parth2608/Artificial-Intelligence-Basics | 65d42ff4e495c11a2ba536e730714570a58b56c7 | b3a0378c7f5b9dbad91df9a6c29b5f30b865e088 | refs/heads/master | 2022-11-21T01:41:07.713381 | 2020-07-15T07:00:34 | 2020-07-15T07:00:34 | 279,790,254 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 82 | sce | sigmoid.sce | function [y] = sigmoid(x)
y = ones(1,length(x))./(1 + (%e^(-x)));
endfunction
|
e0664e23854f97c6a0a945c0ae568b596b751f06 | ac1f8441b0319b4a391cd5a959bd3bb7988edfa7 | /data/news2015/news2015/SplitsNEWS15/EnTa/enta.1.tst | d83408cfe6aa688dd68d9899270664f224016ae5 | [
"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,586 | tst | enta.1.tst | a a g a l e l a g j a ஆ க ல ே ல ா க ் ஜ ா
a a c h a a r y n a n d a n ஆ ச ா ர ் ய ன ா ன ் த ன ்
a a c h a r y a s u t ஆ ச ா ர ் ய ா ச ு த ்
a a d i m u r t i ஆ த ி ம ூ ர ் த ் த ி
a a d m i a u r a p s a r a ஆ த ் ம ி அ வ ு ர ் அ ப ் ச ர ா
a a g n e y ஆ க ் ன ே
a a j k a g u n d a r a j ஆ ஜ ் க ா க ு ண ் ட ா ர ா ஜ ்
a a k h i r k y o n ஆ க ி ர ் க ி ய ோ ன ்
a a k h r i g o l i ஆ க ் ர ி க ோ ல ி
a a k r o s h ஆ க ் ர ோ ஷ ்
a a p a s k i b a a t ஆ ப ா ஸ ் க ி ப ா த ்
a a y u s h m a n ஆ ய ு ஷ ் ம ா ன ்
a b d u h s h a a h i d அ ப ் த ு ஸ ் ஷ ா ஹ ி த ்
a b d u l j a b b a a r அ ப ் த ு ல ் ஜ ப ் ப ா ர ்
a b d u l k h a a l i q அ ப ் த ு ல ் க ா ல ி க ்
a b d u l m u h a s i n அ ப ் த ு ல ் ம ு ஹ ச ி ன ்
a b d u l m u h a y a m e e n அ ப ் த ு ல ் ம ு ஹ ய ம ீ ன ்
a b d u l n a f e e அ ப ் த ு ல ் ந ா ஃ ப ீ
a b d u l n a f i அ ப ் த ு ல ் ந ா ஃ ப ி
a b d u l r a q e e b அ ப ் த ு ல ் ர ா க ீ ப ்
a b d u l t a w w a a b அ ப ் த ு ல ் த ா வ ் வ ா ப ்
a b d u l w a h a a b அ ப ் த ு ல ் வ ா ஹ ா ப ்
a b d u l z a l e e l அ ப ் த ு ல ் ஸ ா ல ீ ல ்
a b h i j w a l a a அ ப ி ஜ ் வ ல ா
a b h i k அ ப ி ஹ ி க ்
a b h i n a b h a a s அ ப ி ன ா ப ா ஸ ்
a b h i n a n d a அ ப ி ன ா ன ் த ா
a b h i n a n d a a அ ப ி ன ா ன ் த ா
a b h i v i r அ ப ி வ ி ர ்
a b o d h அ ப ோ த ்
a c h a l e n d r a அ ச ் ச ல ே ந ் த ி ர ா
a d a r s h a ஆ த ர ் ஷ ி
a d e c c o அ ட ெ க ் க ோ
a d e l p h i அ ட ெ ல ் ப ி
a d v a a k e e அ த ் வ ா க ீ
a f l a h அ ஃ ப ் ல ா
a f r a அ ஃ ப ் ர ா
a f s a n a p y a r k a அ ஃ ப ் ச ா ன ா ப ி ய ா ர ் க ா
a g n i k u m a r அ க ் ன ி க ு ம ா ர ்
a h l a m அ ஹ ் ல ா ம ்
a i t a n a ஐ ட ா ன ா
a j a i b p u r அ ஜ ய ் ப ூ ர ்
a j i n k y a ஆ ஜ ி ங ் க ி ய ா
a j m a n i அ ஜ ் ம ா ன ி
a k h l a a q அ க ் ல ா க ்
a k h t i y a r அ க ் த ி ய ர ்
a l a i r அ ல ை ர ்
a l a m e d a அ ல ம ே த ா
a l d o n a அ ல ் ட ோ ன ா
a l e e m a a அ ல ீ ம ா
a l e g r i a s அ ல ெ க ி ர ி ய ஸ ்
a l h a d அ ல ் ஹ ா த ்
a l i f l a i l a ஆ ல ி ஃ ப ் ல ை ல ா
a l l e g h e n y அ ல ் ல ே க ே ன ி
a l l e m a n d e அ ல ெ ம ா ன ் ட ெ
a l l e n d a l e அ ல ெ ன ் ட ே ல ்
a l p i n e அ ல ் ப ை ன ்
a l s t o m அ ல ் ஸ ் ட ா ம ்
a l s t o m அ ல ் ஸ ் த ோ ம ்
a m a d e u s அ ம த ே ஸ ்
a m a n a t h அ ம ா ன ா த ்
a m a y k h u r a s i y a அ ம ே க ு ர ா ஸ ி ய ா
a m b a r d e k a r அ ம ் ப ர ் த ே க ர ்
a m e l i e அ ம ா ல ீ
a m e y a அ ம ே ய ா
a m i n அ ம ி ன ்
a m y அ ம ி
a m y எ ம ் ம ி
a n a e s t h e s i o l o g y அ ன ஸ ் த ீ ஸ ி ய ல ஜ ி
a n a n d i n i ஆ ன ந ் த ி ன ி
a n a n t a r a a m அ ன ன ் த ் த ா ர ா ம ்
a n a r i அ ன ா ர ி
a n d r e a d o r i a அ ன ் ட ி ர ி ய ா ட ோ ர ி ய ா
a n d y f l o w e r ஆ ண ் ட ி ஃ ப ் ள வ ர ்
a n e e s அ ன ீ ஸ ்
a n g a r i k a a அ ங ் க ர ி க ் க ா
a n g o o r e e அ ங ் க ூ ர ீ
a n g u l அ ங ் க ு ல ்
a n i s u r r a h m a n அ ன ி ச ு ர ் ர ஹ ் ம ா ன ்
a n j u m a n அ ஞ ் ச ு ம ன ்
a n o u b o u s s o u i l அ ன வ ் ப ெ ள ஸ ோ ய ி ல ்
a n p a d h அ ன ் ப த ்
a n t a r e s அ ன ் ட ா ர ெ ஸ ்
a n t a r k t i k a அ ன ் ட ா க ் ட ி க ் க ா
a n t i e t a m அ ன ் ட ி ய ே ட ம ்
a n u r a d h a அ ன ு ர ா த ா
a p a r a j i t a அ ப ர ா ஜ ி த ் த ா
a p n a g h a r அ ப ் ன ா க ர ்
a p s a r a அ ப ் ச ர ா
a p s a r a அ ப ் ச ா ர ா
a p u r v a a அ ப ூ ர ் வ ா
a r a அ ர ா
a r a k o n i அ ர க ோ ன ி
a r c h i b a l d p r i z e ஆ ர ் ச ் ச ி ப ா ல ் ட ் ப ் ர ை ஸ ்
a r e n a அ ர ே ன ா
a r g e n t i n i a n t a n g o அ ர ் ஜ ெ ன ் ட ி ன ி ய ன ் ட ா ங ் க ோ
a r i a d n a h அ ர ி ய ட ் ன ா
a r i a d n e அ ர ி ய ா ட ் ன ்
a r i s h t a h a n அ ர ி ஷ ் ட ா ஹ ா ன ்
a r i v a r a s u அ ர ி வ ர ச ு
a r p a n அ ர ் ப ன ்
a r p a n அ ர ் ப ் ப ன ்
a s h o k m a n k a d அ ஷ ோ க ் ம ன ் க த ்
a s h w a k r a n t a ஆ ஷ ் வ க ி ர ந ் த ா
a s i t அ ச ி த ்
a s t e r அ ஸ ் ட ர ்
a t r e அ ட ் ர ீ
a t r e ஆ த ் ர ே
a t t a b i r a அ ட ் ட ா ப ி ர ா
a t t i l a j o z s e f p r i z e அ ட ் ட ி ல ் ல ா ஜ ோ ஸ ் ச ெ ஃ ப ் ப ் ர ை ஸ ்
a t u l w a s s a n அ ட ு ல ் வ ா ஸ ் ஸ ன ்
a u c k l a n d u n i v e r s i t y ஆ க ் ல ே ண ் ட ் ய ூ ன ி வ ர ் ச ி ட ் ட ி
a u d ஔ த ்
a u d r e y ஆ த ் ர ே
a v a n e e n d r a அ வ ன ீ ன ் த ி ர ா
a v a n i n d r a அ வ ன ி ன ் த ி ர ா
a v a n t i k a a அ வ ன ் த ி க ் க ா
a v i k s h i t அ வ ி க ் ஷ ி த ்
a x a ஆ க ் ஸ ா
a z a n அ ஸ ா ன ்
a z i z m a h m u d h u d a y i அ ஸ ி ஸ ் ம ா ஹ ் ம ு த ் ஹ ு த ா ய ி
b a a z b a h a d u r ப ா ஸ ் ப ஹ த ு ர ்
b a b b o o ப ா ப ு
b a b u g a r h ப ா ப ு க ா ர ்
b a b u p e t h ப ா ப ு ப ே ட ்
b a d i d i d i ப ட ா த ீ த ி
b a d r i y a h ப த ் ர ி ய ா
b a h a d u r n a r e s h ப ஹ த ு ர ் ந ர ே ஷ ்
b a h i r a ப ா ஹ ி ர ா
b a h u b a l i ப ா ஹ ு ப ா ல ி
b a l a g h a t ப ா ல ா க ா ட ்
b a l a j e e ப ா ல ா ஜ ி
b a l y o g i u p m a n y u ப ா ல ய ோ க ி உ ப ம ன ் ய ு
b a n a r a s i t h u g ப ன ா ர ச ி த ு க ்
b a n d h a n ப ந ் த ன ்
b a n g r o d ப ங ் ர ோ ட ்
b a n i ப ன ி
b a n i ப ா ன ி
b a n k o f a m e r i c a p l a z a ப ே ங ் க ் ஆ ப ் அ ம ெ ர ி க ் க ப ி ள ா ஸ ா
b a n k e b i h a r e e ப ா ங ் க ே ப ி ஹ ா ர ி
b a n n o ப ன ் ன ோ
b a n s e e l a a l ப ன ் ஸ ீ ல ா ல ்
b a q i ப ா க ி
b a s e r e k i h o o r ப ச ே ர ே க ி ஹ ூ ர ்
b a y e r i n d i a ப ா ய ர ் இ ந ் த ி ய ா
b e e s v i s a d i ப ீ ஸ ் வ ி ச ா த ி
b e i j i n g ப ெ ய ் ஜ ி ங ்
b e n i n ப ெ ன ி ன ்
b e n n e t t ப ெ ன ் ன ட ்
b e r k e l i u m ப ெ ர ் க ே ல ி ய ம ்
b e r n a r d j u l i e n ப ெ ர ் ன ா ர ் ட ் ஜ ூ ல ி ய ன ்
b e t h e l a p o s t o l i c ப ெ த ே ல ் அ ப ோ ஸ ் த ொ ல ி க ்
b h a d a n ப ா த ன ்
b h a d r a a k s h a ப ா த ் ர ா க ் ஷ ா
b h a d r a c h a l a m ப த ் ர ா ச ல ம ்
b h a i b h a i ப ா ய ் ப ா ய ்
b h a i s a h e b ப ா ய ் ச ா ஹ ே ப ்
b h a i n i k h u r d ப ய ி ன ி க ு ர ் த ்
b h a j a r a a m ப ஜ ர ா ம ்
b h a k t a k a b i r ப க ் த க ப ி ர ்
b h a n g u ப ா ங ் க ு
b h a p a ப ா ப ் ப ா
b h e e d e ப ீ ட ே
b h o j u d i h j u n c t i o n ப ோ ஜ ு த ி ஜ ங ் ஷ ன ்
b h o l a s h a n k a r ப ோ ல ா ஷ ங ் க ர ்
b h o n e ப ோ ன ே
b h o p a t k a r ப ோ ப த ் க ர ்
b h u l o n ப ு ல ோ ன ்
b h u p a l s a g a r ப ூ ப ா ல ் ச ா க ர ்
b h u p p a l ப ு ப ் ப ா ல ்
b h u t e s h ப ூ த ே ஷ ்
b h u v a n s h o m e ப ு வ ன ் ஷ ோ ம ்
b i j l i c h a m k e j a m a n a p a r ப ி ஜ ் ல ி ச ம ் க ே ஜ ம ா ன ா ப ர ்
b i k a n e r j u n c t i o n ப ி க ் க ா ன ெ ர ் ஜ ங ் ஷ ன ்
b i l q i s ப ி ல ் க ி ஸ ்
b i n d i y a ப ி ந ் த ி ய ா
b i n d i y a a u r b a n d o o k ப ி ந ் த ி ய ா ஔ ர ் ப ே ண ் ட ூ க ்
b i n d k i r o a d ப ி ண ் ட ் க ி ர ோ ட ்
b i o c o n ப ய ோ க ா ன ்
b i s h a n p a l ப ி ஷ ன ் ப ா ல ்
b i s h m i l l a h k i b a r k a t ப ி ஸ ் ம ி ல ் ல ா க ி ப ர ் க த ்
b i s m u t h ப ி ஸ ் ம ு த ்
b l a n d ப ி ள ா ண ் ட ்
b o d y b u l i d i n g ப ா ட ி ப ி ல ் ட ி ங ்
b o n n e t p l u m e ப ோ ன ட ் ப ி ள ம ்
b o o m p s - a - d a i s y ப ூ ம ் ப ் ஸ ் - ஆ - ட ெ ய ் ஸ ி
b o o t p o l i s h ப ூ ட ் ப ா ல ி ஷ ்
b o r i s y e l t s i n ப ோ ர ி ஸ ் எ ல ் ச ி ன ்
b o w d e n ப ெ ள ட ெ ன ்
b r a h m ப ் ர ஹ ம ்
b r e c o n b e a c o n s ப ் ர ே க ் க ன ் ப ீ க ் க ன ் ஸ ்
b r o o k l y n m u s e u m ப ு ர ூ க ் ல ி ன ் ம ி ய ூ ஸ ி ய ம ்
b r o o k s ப ு ர ூ க ் ஸ ்
b r u n e l u n i v e r s i t y ப ் ர ூ ன ல ் ய ூ ன ி வ ர ் ச ி ட ் ட ி
b u c h a r e s t ப ு க ர ெ ஸ ் ட ்
b u d d y h o l l y ப ட ் ட ி ஹ ோ ல ி
b u k i t t i g a p u l u h ப ு க ி த ் ட ீ க ா ப ு ல ு
c a d b u r y ' s க ே ட ் ப ர ி ஸ ்
c a e l க ா ய ே ல ்
c a m b r i a க ா ம ் ப ் ர ி ய ா
c a m b r i a க ே ம ் ப ் ர ி ய ா
c a m t e k க ா ம ் ட ெ க ்
c a n c e r a u r g u p t r o g க ே ன ் ச ர ் ஔ ர ் க ு ப ் த ் ர ோ க ்
c a n d r a க ே ன ் த ் ர ா
c a r t o o n m u s e u m க ா ர ் ட ூ ன ் ம ி ய ூ ஸ ி ய ம ்
c a t r i o n a க ே ட ் ட ி ய ோ ன ா
c e d r i c ச ெ ட ் ர ி க ்
c e n t r a l e u r o p e a n m e d i a e n t e r p r i s e s ச ெ ன ் ட ் ர ல ் ய ூ ர ோ ப ் ப ி ய ன ் ம ீ ட ி ய ா எ ன ் ட ர ் ப ி ர ை ச ஸ ்
c e n t u r i o n b a n k ச ெ ன ் ச ு ர ி ய ன ் ப ே ங ் க ்
c h a h a t ச ா ஹ த ்
c h a k r i n a r e u b e t ச க ் ர ி ந ா ர ே ய ் ப ெ ட ்
c h a m a n ச ா ம ா ன ்
c h a m a r a s i l v a ச ம ர ா ச ி ல ் வ ா
c h a n d r a g u p t a ச ந ் த ி ர க ு ப ் த ா
c h a n d r a k a n t ச ந ் த ி ர க ா ந ் த ்
c h a n g a n a c h e r i ச ங ் க ன ச ே ர ி
c h a n g q i n g w o r l d t r a d e c e n r e ச ா ங ் க ி ங ் வ ே ர ் ல ் ட ் ட ி ர ே ட ் ச ெ ன ் ட ர ்
c h a n n e r y ச ா ன ் ன ெ ர ி
c h a r d i w a r i ச ா ர ் த ி வ ா ர ி
c h a r u d u t t a ச ா ர ு த ு த ் த ா
c h e s t e r ச ெ ஸ ் ட ர ்
c h h o r a c h h o r i ச ோ ர ா ச ோ ர ி
c h h o t e n a w a b ச ோ ட ் ட ே ந வ ா ப ்
c h i r a g h ச ி ர ா க ்
c h i t t a p r a s a d ச ி த ் த ப ி ர ச ா த ்
c h o c o l a t e ச ா க ் க ல ே ட ்
c h r i s t t h e k i n g l u t h e r a n க ி ற ி ஸ ் ட ் த ி க ி ங ் ல ு த ெ ர ன ்
c i a r a ச ி ய ா ர ் ர ா
c i p l a ச ி ப ் ல ா
c i t a d e l l e o f q u e b e c ச ி ட ் ட ா ட ெ ல ் ஆ ப ் க ் ய ூ ப ெ க ்
c i t y u n i o n b a n k ச ி ட ் ட ி ய ூ ன ி ய ன ் ப ே ங ் க ்
c l a r i s s a க ி ள ா ர ி ஸ ா
c l a u d e t t e க ி ள ா ட ெ ட ்
c l y d e க ் ல ை ட ்
c o l l i n g w o o d க ோ ல ி ங ் வ ு ட ்
c o l l i n s o b u y a க ோ ல ி ன ் ஸ ் ஓ ப ு ய ா
c o l u m b u s க ொ ல ம ் ப ஸ ்
c o n d e c o r a c i o n m i g u e l h i d a l g o க ா ண ் ட ெ ஷ ோ ர ே ச ி ய ன ் ம ி க ் வ ெ ல ் ஹ ி ட ா ல ் க ோ
c o n g o க ா ங ் க ோ
c o n n e r க ோ ன ர ்
c o n o c o p h i l l i p s க ோ ன க ோ ப ி ல ி ப ் ஸ ்
c o r n e l i u s க ா ர ் ன ெ ல ி ய ஸ ்
c o t t o n - e y e d - j o e க ா ட ் ட ன ் - ஐ ட ் - ஜ ோ
c r e v a n க ் ர ே வ ன ்
c s i l l a ச ி ஸ ி ல ் ல ா
c u d d a l o r e j u n c t i o n க ூ ட ல ூ ர ் ஜ ங ் ஷ ன ்
c u t t e r க ட ் ட ர ்
c y b i l ச ி ப ி ல ்
d a h l e e z த ஹ ் ல ீ ஸ ்
d a k h l a த ா க ் ல ா
d a k s h a t a த க ் ஷ த ா
d a k u a u r j a w a n த ா க ் க ு ஔ ர ் ஜ வ ா ன ்
d a l e f o r t ட ே ல ் ஃ ப ் ப ோ ர ் ட ்
d a l l a s m u s e u m o f a r t ட ல ் ல ா ஸ ் ம ி ய ூ ஸ ி ய ம ் ஆ ஃ ப ் ஆ ர ் ட ்
d a n d u p u r த ண ் ட ு ப ூ ர ்
d a n i e l e r a s m u s ட ே ன ி ய ல ் இ ர ா ஸ ் ம ஸ ்
d a p p a r த ப ் ப ா ர ்
d a r a b a a r த ர ் ப ா ர ்
d a r r y l ட ே ர ி ல ்
d a r w a z a த ர ் வ ா ஸ ா
d a v i d t i k o l o ட ே வ ி ட ் ட ி க ் க ோ ல ோ
d e a n h e a d l e y ட ீ ன ் ஹ ெ ட ் ல ே
d e e p a p r a b h a த ீ ப ப ி ர ப ா
d e l f i n a ட ெ ல ் ஃ ப ி ன ா
d e l h i ட ெ ல ் ல ி
d e l h i ட ெ ல ் ஹ ி
d e l h i s a f d a r j u n g ட ெ ல ் ல ி ச ஃ ப ் த ா ர ் க ஞ ் ச ்
d e m e t e r ட ி ம ீ ட ் ட ர ்
d e n n i s l i l l e e ட ெ ன ் ன ி ஸ ் ல ி ல ் ல ீ
d e p a l s a r த ெ ப ா ல ் ச ர ்
d e r m a t o l o g y ட ெ ர ் ம ெ ட ் ட ா ல ஜ ி
d e s h k e d u s h m a n n த ே ஷ ் க ே த ு ஷ ் ம ன ்
d e v i l a l த ே வ ி ல ா ல ்
d e v o n m a l c o l m ட ெ வ ா ன ் ம ா ல ் க ா ம ்
d h a m a k a த ம ா க ா
d h a m n i த ா ம ி ன ி
d h a r t i k a h e p u k a r k e த ர ் த ி க ஹ ே ப ு க ா ர ் க ே
d h e n k a n a l த ெ ன ் க ன ல ்
d h e n k a n a l த ே ன ் க ன ா ல ்
d h i r g a n j த ீ ர ் க ஞ ் ச ்
d i a l ட ய ல ்
d i c k ட ி க ்
d i l த ி ல ்
d i l a u r m o h a b b a t த ி ல ் ஔ ர ் ம ொ ஹ ா ப த ்
d i l e k m a n d i r த ி ல ் ஏ க ் ம ந ் த ி ர ்
d i l k a s a t h i d i l த ி ல ் க ா ச த ி த ி ல ்
d i l s e m i l e d i l ப ி ல ் ச ே ம ி ல ே த ி ல ்
d i l d a r த ி ல ் த ர ்
d i l h a r a l o k u h e t t i g e த ி ல ் ஹ ா ர ா ல ோ க ு ஹ ெ ட ் ட ி க ே
d i l l a n ட ி ல ் ல ன ்
d i l s h a d த ி ல ் ஷ த ்
d i n a g a o n த ி ன க ா வ ு ன ்
d i n e s h k a r t h i k த ி ன ே ஷ ் க ா ர ் த ் த ி க ்
d i o n y s i u s ட ய ோ ன ி ச ி ய ஸ ்
d i p a த ி ப ா
d i s a b l e d s a i l i n g ட ி ச ே ப ி ல ் ட ் ச ெ ய ் ல ி ங ்
d i y o d a r த ி ய ோ த ர ்
d o d b e l e த ோ ட ் ப ே ல ே
d o i w a l a ட ோ ய ் வ ா ல ா
d o r a ட ோ ர ா
d o r o t h y ட ொ ர ோ த ் த ி
d u j a n a h ட ு ஜ ா ன ா
d u m b r a ட ு ம ் ப ் ர ா
d u r d a n a h த ர ் த ன ா
d y a n த ் ய ா ன ்
e ' j a a z இ ' ஜ ா ஸ ்
e a r l ஏ ர ் ல ்
e a s t e r ஈ ஸ ் ட ர ்
e k d i n b a h u k a ஏ க ் த ி ன ் ப ா ஹ ு க ா
e k s e b h a l e d o ஏ க ் ச ே ப ல ே த ோ
e k t h i l a d k i ஏ க ் த ி ல ட ் க ி
e l - a r a b i a எ ல ் - அ ர ே ப ி ய ா
e l i n o r எ ல ி ன ா ர ்
e m e l e a b o எ ம ி ல ி அ ப ோ
e m e r s o n எ ம ர ் ச ன ்
e m m e t எ ம ் ம ட ்
e n a எ ன ா
e t a h ஈ ட ா ஹ ்
e t h n o g r a p h i c a l h i s t o r i c a l m u s e u m o f l a r i s s a எ த ் ன ோ க ி ர ா ப ் ப ி க ் க ல ் ஹ ி ஸ ் ட ா ர ி க ் க ல ் ம ி ய ூ ஸ ி ய ம ் ஆ ஃ ப ் ல ா ர ி ஸ ் ஸ ா
e t n a எ ட ் ன ா
e v a n t h e இ வ ா ன ் த ே
e v e r e t t எ வ ர ெ ட ்
e w a n இ வ ா ன ்
e x m o u t h எ க ் ஸ ் ம வ ு த ்
e y r e ஐ ர ி
f a d i l a h ஃ ப ா த ி ல ா
f a d o ஃ ப ் ப ா ட ோ
f a i q a h ஃ ப ை ய ி க ் க ா
f a l n a ஃ ப ா ல ் ன ா
f a q i h ஃ ப க ீ ஹ ்
f a r r a h ஃ ப ர ா ஹ ்
f a t e h g a r h ஃ ப த ே க ா ர ்
f e d c u p ஃ ப ெ ட ் க ப ்
f e l l ஃ ப ெ ல ்
f i d e l i o ஃ ப ி ட ெ ல ி ய ோ
f i n e e n ஃ ப ி ன ீ ன ்
f i r o z p u r c i t y ஃ ப ி ர ோ ஸ ் ப ூ ர ் ச ி ட ் ட ி
f o l k l o r e m u s e u m o f s t e m n i t s a ஃ ப ் ப ோ க ் ல ோ ர ் ம ி ய ூ ஸ ி ய ம ் ஆ ஃ ப ் ஸ ் ட ெ ம ் ன ி ட ் ஸ ா
f o o t b a l l ஃ ப ு ட ் ப ா ல ்
f o r b e s g o k a k ஃ ப ோ ர ் ப ் ஸ ் க ோ க ா க ்
f o r b e s m e d i - t e c h ப ோ ர ் ப ் ஸ ் ம ெ ட ி - ட ெ க ்
f o r b e s g a n j ஃ ப ோ ர ் ப ெ ஸ ் க ஞ ் ச ்
f o r t b o k a r ஃ ப ் ப ோ ர ் ட ் ப ூ க ர ்
f o r t d a r n e t ஃ ப ் ப ோ ர ் ட ் ட ா ர ் ன ெ ட ்
f o r t d e c h a r t r e s ஃ ப ் ப ோ ர ் ட ் ட ி ச ா ர ் ட ி ர ெ ஸ ்
f o r t g r a n g e ஃ ப ் ப ோ ர ் ட ் க ி ர ா ன ் ஜ ்
f o r t h a l i f a x ஃ ப ் ப ோ ர ் ட ் ஹ ா ல ி ஃ ப ் ப ா க ் ஸ ்
f o r t h e n r y ஃ ப ் ப ோ ர ் ட ் ஹ ெ ன ் ர ி
f o r t r o n d u i t ஃ ப ் ப ோ ர ் ட ் ர ா ன ் ட ு ய ி ட ்
f o r t s a n f e l i p e d e l m o r r o ஃ ப ் ப ோ ர ் ட ் ச ா ன ் ஃ ப ் ப ெ ல ி ப ் ட ெ ல ் ம ோ ர ோ
f o r t s c o v e s t o n ஃ ப ் ப ோ ர ் ட ் ஸ ் க ா வ ெ ஸ ் ட ன ்
f o r t s m i t h ஃ ப ் ப ோ ர ் ட ் ஸ ் ம ி த ்
f o r t s t a r k ஃ ப ் ப ோ ர ் ட ் ஸ ் ட ா ர ் க ்
f r a n k z a p p a ஃ ப ் ர ா ங ் க ் ஸ ா ப ் ப ா
f r a n k l i n d . r o o s e v e l t ஃ ப ் ப ி ர ா ன ் க ் ல ி ன ் ட ி . ர ூ ஸ ெ வ ெ ல ் ட ்
f r e d d i e m a c ப ி ர ட ் ட ி ம ே க ்
f u n t o o s h ஃ ப ன ் ட ூ ஷ ்
f u r a y a h ஃ ப ு ர ய ா
g a a l i க ா ல ி
g a b o n க ப ோ ன ்
g a i l s h e e h y க ெ ய ் ல ் ஷ ீ ஹ ி
g a j a k a r n a க ா ஜ ா க ர ் ண ா
g a j r a u l a j u n c t i o n க ஜ ் ர ௌ ல ா ஜ ங ் ஷ ன ்
g a l a x y க ா ல ா க ் ஸ ி
g a l o p க ே ல ா ப ்
g a r f i e l d க ர ் ஃ ப ீ ல ் ட ்
g a r i e p d a m க ர ி ப ் ட ே ம ்
g a r y t r o u p க ா ர ி ட ் ர ூ ப ்
g a u r a n g க ெ ள ர ா ங ்
g a z a l க ஜ ல ்
g e n e v a r o a d b a p t i s t ஜ ெ ன ி வ ா ர ோ ட ் ப ே ப ் ட ி ஸ ் ட ்
g e o f f c o p e ஜ ி ய ோ ஃ ப ் க ோ ப ்
g e o r g i n a ஜ ா ர ் ஜ ீ ன ா
g e r a l d i n e ஜ ெ ர ா ல ் ட ி ன ்
g h a r g r i h a s t i க ர ் க ி ர ி ஹ ஸ ் த ி
g h a r k i l a a j க ர ் க ி ல ா ஜ ்
g h a z a l a h க ஜ ா ல ா
g h r i s h n e s h w a r க ி ர ி ன ே ஷ ் வ ர ்
g h u g u s க ூ க ஸ ்
g i a n c a r l o க ி ய க ா ர ் ல ோ
g i l m o r e க ி ல ் ம ோ ர ்
g i n a ஜ ீ ன ா
g i r l s h o s t e l க ே ர ் ள ் ஸ ் ஹ ா ஸ ் ட ல ்
g l a i n க ி ல ெ ய ் ன ்
g o l a b a r o o d க ோ ல ா ப ர ூ த ்
g o l d க ோ ல ் ட ்
g o l d e n க ோ ல ் ட ன ்
g o p i c h a n d க ோ ப ி ச ன ் ந ் த ்
g o r d y க ா ர ் ட ி
g o r e s u a r க ோ ர ே ச ௌ ர ்
g o u n a r o p o u l o s m u s e u m o f t h e m u n i c i p a l i t y o f z o g r a f o u க ோ ன ா ர ோ ப வ ு ல ோ ஸ ் ம ி ய ூ ஸ ி ய ம ் ஆ ஃ ப ் த ம ு ன ி ச ி ப ் ப ா ல ி ட ் ட ி ஆ ஃ ப ் ஸ ோ க ி ர ா ஃ ப ் ப ோ
g r a e m e f o w l e r க ி ர ா ய ெ ம ் ஃ ப ் ப ோ ல ெ ர ்
g r a h a m f o r d க ் ர ஹ ா ம ் ஃ ப ோ ர ் ட ்
g r a n v i l l e க ி ர ா ன ் வ ி ல ்
g r a n v i l l e க ி ர ா ன ் வ ெ ல ் ல ெ
g r a y s o n க ி ர ே ஸ ன ்
g r e g l o v e r i d g e க ி ர ெ க ் ல ோ வ ெ ர ி ட ் ஜ ்
g u a d e l o u p e க ு வ ா ட ெ ல ோ ப ்
g u e s t h o u s e க ெ ஸ ் ட ் ஹ வ ு ஸ ்
g u f i c b i o க ூ ஃ ப ி க ் ப ய ோ
g u i r o க ு ய ் ர ோ
g u j j a r க ு ஜ ் ஜ ா ர ்
g u l s h a n க ு ல ் ஷ ா ன ்
g u m t a l a க ு ம ் ட ா ல ா
g u n u n g g e d e p a n g r a n g o க ு ன ு ங ் க ீ ட ே ப ங ் ர ங ் க ோ
g u n w a n t i க ு ன ் வ ன ் த ி
g u r u d a k s h i n a க ு ர ு த க ் ஷ ி ண ா
g u r u d w a r a b e r i s a h i b க ு ர ு த ் வ ா ர ா ப ே ர ி ச ா ஹ ி ப ்
g u r u d w a r a h e e r a g h a t க ு ர ு த ் வ ா ர ா ஹ ீ ர ா க ா ட ்
g u r u d w a r a r a a d a s a h i b க ு ர ு த ் வ ா ர ா ர ா ட ா ச ா ஹ ி ப ்
g u r u d w a r a t i k a n a s a h i b க ு ர ு த ் வ ா ர ா ட ி க ா ன ா ச ா ஹ ி ப ்
g y a a n i j i க ி ய ா ஞ ் ச ி
h a a d s a ஹ ா ட ் ச ா
h a a r j e e t ஹ ா ர ் ஜ ீ த ்
h a b i b ஹ ப ி ப ்
h a f s ஹ ஃ ப ் ஸ ்
h a i m a v a t ஹ ை ம ா வ த ்
h a i t i a n r e v o l u t i o n ஹ ை ட ி ய ன ் ர ெ வ ல ் ய ூ ஷ ன ்
h a m a r i b a h u a l k a ஹ ம ா ர ி ப ா ஹ ு அ ல ் க ா
h a m e e d ஹ ம ீ த ்
h a n u m a n j a n m ஹ ன ு ம ன ் ஜ ன ் ம ்
h a r i s h c h a n d r a t a r a m a t i ஹ ர ி ஷ ் ச ந ் த ி ர த ா ர ா ம த ி
h a r r y p o t t e r ஹ ா ர ி ப ா ட ் ட ர ்
h e e r r a n j h a ஹ ீ ர ் ர ன ் ஜ ா
h e r r i t y ஹ ெ ர ி ட ் ட ி
h i d a y a t i n a y a t k h a n ஹ ி த ா ய ா த ் இ ன ா ய ா த ் க ா ன ்
h i n d k a l a l ஹ ி ந ் த ் க ா ல ா ல ்
h i r a n a n d a n i f o u n d a t i o n s c h o o l , m u m b a i ஹ ி ர ா ந ன ் த ன ி ஃ ப வ ு ண ் ட ே ஷ ன ் ஸ ் க ூ ல ் , ம ு ம ் ப ை
h o l l y w o o d w a l k o f f a m e ஹ ா ல ி வ ு ட ் வ ா க ் ஆ ஃ ப ் ஃ ப ே ம ்
h o n d u r a s ஹ ா ண ் ட ு ர ா ஸ ்
h o n d u r a s ஹ ா ன ் ட ு ர ா ஸ ்
h o n d u r a s ஹ ா ன ் ட ூ ர ா ஸ ்
h o n d u r a s ஹ ொ ண ் ட ூ ர ா ஸ ்
h o n d u r a s ஹ ொ ன ் ட ு ர ா ஸ ்
h o n d u r a s ஹ ோ ண ் ட ூ ர ா ஸ ்
h o n d u r a s ஹ ோ ன ் ட ூ ர ா ஸ ்
h o p m a n c u p ஹ ா ப ் ம ே ன ் க ப ்
h o r e s h o e s ஹ ா ர ் ஷ ூ ஸ ்
h o s h i a r p u r ஹ ோ ஷ ி ய ா ர ் ப ூ ர ்
h u m k a h a n j a r a h e h a i n ஹ ம ் க ஹ ா ன ் ஜ ா ர ா ஹ ே ஹ ெ ய ி ன ்
h u m p a n c h ஹ ம ் ப ஞ ் ச ்
h u m s e n a j e e t a k o i ஹ ம ் ச ே ந ா ஜ ீ த ா க ோ ய ்
h u r r a h ஹ ு ர ் ர ா
h u z a y l ஹ ு ஸ ை ல ்
i a n b e l l ஐ ய ன ் ப ெ ல ்
i a n c h a p p e l l ஐ ய ா ன ் ச ா ப ் ப ல ்
i k h l a s இ க ் ல ா ஸ ்
i m r a n f a r h a t இ ம ் ர ா ன ் ஃ ப ர ் ஹ த ்
i m r a n n a z i r இ ம ் ர ா ன ் ந ஸ ீ ர ்
i n a இ ன ா
i n d u s h e k h a r இ ந ் த ு ஷ ே க ் க ர ்
i n g u r s k a y a இ ன ் க ு ர ் ஸ ் க ய ா
i p s a இ ப ் ஸ ா
i r a w a t i இ ர ா வ த ் த ி
i s h a a r இ ஷ ா ர ்
i s i k a n a a m d u n i y a h a i இ ச ி க ா ந ா ம ் த ு ன ி ய ா ஹ ை
i s m a h இ ஸ ் ம ா
i t i h a a s இ த ி ஹ ா ஸ ்
j a a y e n t o j a a y e n k a h a n ஜ ா ய ே ன ் த ோ ஜ ா ய ே ன ் க ஹ ா ன ்
j a c k h e r o n ஜ ே க ் ஹ ெ ர ோ ன ்
j a g a n n a t h p u r i ஜ க ன ் ந ா த ் ப ு ர ி
j a g a t m o h i n i ஜ க த ் ம ோ க ி ன ி
j a g d e e p ஜ க த ீ ப ்
j a h m ஜ ம ்
j a i p r a k a s h y a d a v ஜ ெ ய ் ப ி ர க ா ஷ ் ய ா த ங ்
j a i p u r ஜ ெ ய ் ப ூ ர ்
j a l a u n ஜ ல வ ு ன ்
j a l i a ஜ ா ல ி ய ா
j a l w a ஜ ா ல ் வ ா
j a m a i r a j a ஜ ம ா ய ் ர ா ஜ ா
j a m e s b r o w n ஜ ே ம ் ஸ ் ப ி ர வ ு ன ்
j a m e s f r a n k l i n ஜ ே ம ் ஸ ் ஃ ப ் ப ி ர ா ன ் க ் ல ி ன ்
j a n e l l e ஜ ன ே ல ்
j a n h a v i ஜ ா ன வ ி
j a r a a h ஜ ர ா
j a r e e r ஜ ர ீ ர ்
j a r i y a h ஜ ர ி ய ா
j a t a a s h a n k a r e e ஜ ட ா ஷ ங ் க ர ி
j a w a n i k i k a h a n i ஜ வ ா ன ி க ி க ஹ ா ன ி
j a w a r a ஜ வ ா ர ா
j a y a l a l i t a ஜ ெ ய ல ல ி த ா
j a y e s h v a r ஜ ெ ய ே ஷ ் வ ர ்
j e e n e k i r a a h ஜ ீ ன ே க ி ர ா ஹ ்
j e e t h a m a r i ஜ ீ த ் ஹ ம ா ர ி
j e n n i f e r ஜ ெ ன ி ஃ ப ர ்
j e t a i r w a y s ஜ ெ ட ் ஏ ர ் வ ே ஸ ்
j h a l a k ஜ ா ல க ்
j i t m a n y u ஜ ி த ் ம ா ன ் ய ு
j u g n u ஜ ு க ் ன ு
j u l a k k a ஜ ு ல ா க ் க ா
j u r r a t ஜ ு ர ் ர த ்
j w a l a d a k u ஜ ் வ ா ல ா த ா க ் க ு
k a b h i a j n a b i t h e க ப ி அ ஜ ் ன ப ி த ே
k a j w a d k a r க ஜ ் வ ா த ் க ர ்
k a l a a j a u r k a l க ல ் ஆ ஜ ் ஔ ர ் க ல ்
k a l a c h a s h m a க ல ா ச ா ஷ ் ம ா
k a l e க ல ே
k a l e க ா ல ே
k a l i k a m b a l க ா ள ி க ா ம ் ப ா ள ்
k a l p a n a க ல ் ப ன ா
k a m a l e s h க ம ல ே ஷ ்
k a m e l l a க ா ம ெ ல ் ல ா
k a m l a k i m a u t க ம ் ல ா க ி ம ௌ த ்
k a n k e r க ன ் க ர ்
k a n u n க ன ூ ன ்
k a p o o r க ப ூ ர ்
k a r a h க ா ர ா
k a r d a w i y a h க ா ர ் ட வ ி ய ா
k a r t a r க ா ர ் ட ர ்
k a s h e l i k a r க ஷ ெ ல ி க ர ்
k e l k a r க ே ல ் க ர ்
k e n d u r k a r க ெ ந ் த ு ர ் க ர ்
k e n n y b e n j a m i n க ெ ன ் ன ி ப ெ ஞ ் ச ம ி ன ்
k e n o s h a b i b l e க ெ ன ோ ஷ ப ை ப ி ள ்
k e s h i k a க ே ஷ ி க ா
k h a d a k w a s l a க ட க ் வ ஸ ் ல ா
k h a m o s h i க ா ம ோ ஷ ி
k h o o n a u r s a z a a க ூ ன ் அ வ ு ர ் ச ா ஸ ா
k i a r a க ி ய ா ர ா
k i m h u g h e s க ி ம ் ஹ க ் ஸ ்
k i s h o r i க ி ஷ ோ ர ி
k o c h i n d u s t r i e s க ோ ச ் இ ண ் ட ஸ ் ட ி ர ீ ஸ ்
k o d g u க ோ ட ் க ு
k o n k a r க ொ ன ் க ர ்
k o p a r g a o n k a r க ோ ப ர ் க ோ ன ் க ர ்
k r a t z க ி ர ா ட ் ஸ ்
k u h a d க ு ஹ ா த ்
k u n j a l a t a க ு ஞ ் ச ல ா த ா
k u n t a a க ு ன ் ட ா
l a a ல ா
l a c k w a l e s a ல ா க ் வ ல ே ச ா
l a d k i j a w a n h o g a i ல ா ட ் க ி ஜ ா வ ா ன ் ஹ ோ க ா ய ்
l a k e m a l a w i ல ே க ் ம ல ா வ ி
l a l a ல ா ல ா
l a n i e r ல ா ன ி ய ர ்
l a p a r w a h ல ப ா வ ா ஹ ்
l a t i k a ல த ி க ா
l a u r e n ல ா ர ன ்
l e a n n ல ீ ன ்
l e a n n e ல ி ய ன ்
l e c e a ல ெ ச ி ய ா
l e e l a m a y e e ல ீ ல ா ம ய ி
l e n a w e e ல ி ன ா வ ீ
l i a m p l u n k e t t ல ி ய ம ் ப ி ள ன ் க ெ ட ்
l i b e r t e ல ி ப ெ ர ் ட ெ
l i b r e v i l l e ல ி ப ் ர ே வ ி ல ் ல ே
l i c i a ல ி ச ி ய ா
l i l i k a ல ி ல ி க ா
l i y a a k a t ல ி ய ா க த ்
l o r e l e i ல ோ ர ி ல ி
l o v e t t e ல ோ வ ெ ட ் ட ே
l u k a s ல ு க ா ஸ ்
l u m p s f o r t ல ம ் ப ் ஸ ் ஃ ப ் ப ோ ர ் ட ்
l u x o r ல க ் ச ர ்
l y c h n o s t a t i s o p e n - a i r m u s e u m ல ை க ் ன ா ஸ ் ட ை ட ி ஸ ் ஓ ப ன ் - ஏ ர ் ம ி ய ூ ஸ ி ய ம ்
m a c k i n a c ம ா க ் க ி ன ா க ்
m a d h a v d a s ம ா த வ ் த ா ஸ ்
m a d h u m a a n ம த ு ம ா ன ்
m a d h u m a t i ம த ு ம த ி
m a d r i d ம ட ் ர ி ட ்
m a d r i d ம த ் ர ி ட ்
m a d r i d ம ா ட ் ர ி ட ்
m a d u r a i ம த ு ர ை
m a g d a ம ே க ் ட ா
m a g n a n i m e ம ா க ் ன ா ன ி ம ்
m a h a c h o r ம ஹ ா ச ோ ர ்
m a h a d e v v e r m a ம ஹ ா த ே வ ் வ ர ் ம ா
m a h i n d r a g e s c o d e v e l o p e r s ம ஹ ி ந ் த ் ர ா க ெ ஸ ் க ோ ட ெ வ ல ப ் ப ர ் ஸ ்
m a h u m ம ஹ ு ம ்
m a i n a w a r a h o o n ம ே ன ் அ வ ா ர ா ஹ ூ ன ்
m a k a n ம ா க ா ன ்
m a k a y l a ம க ே ல ா
m a k h a y a n t i n i ம க ா ய ா ந ி ட ி ன ி
m a l a m a a l ம ா ல ா ம ா ல ்
m a l a n g ம ல ங ்
m a l i h ம ல ி ஹ ்
m a l i h ம ா ல ி ஹ ்
m a l i k a s a l o m i ம ல ி க ா ச ல ோ ம ி
m a m b o ம ா ம ் ப ோ
m a n d a k r a n t a ம ண ் ட க ் ர ந ் த ா
m a n i n d e r ம ன ி ந ் த ர ்
m a n j u k a p o o r ம ஞ ் ச ு க ப ூ ர ்
m a n j u s h r e e ம ஞ ் ச ு ஸ ் ர ீ
m a n o n ம ே ன ன ்
m a n s u r a h ம ன ் ச ூ ர ா
m a r c s m c g u i r e ம ா ர ் க ் ஸ ் ம ெ க ் க ு ர ே
m a r i k a k o t o p o u l i m u s e u m ம ா ர ி க ா க ோ ட ோ ப வ ் ல ி ம ி ய ூ ஸ ி ய ம ்
m a r i o n ம ா ர ி ய ன ்
m a r k t w a i n ம ா ர ் க ் ட ் வ ெ ய ் ன ்
m a r y a n t o i n e t t e ம ே ர ி ஆ ண ் ட ோ ய ் ன ெ ட ் ட ி
m a s s m u t u a l l i f e ம ா ஸ ் ம ் ய ூ ச ் ச ு வ ல ் ல ை ப ்
m a s s e y u n i v e r s i t y ம ஸ ் ஸ ி ய ூ ன ி வ ர ் ச ி ட ் ட ி
m a t a v - c a b l e s y s t e m s m e d i a ம ட ் ட வ ் - க ே ப ி ள ் ச ி ஸ ் ட ம ் ஸ ் ம ீ ட ி ய ா
m a t l o o b ம ட ் ல ூ ப ்
m a z d o o r ம ஸ ் த ூ ர ்
m c c u l l o c h ம ெ க ் க ு ல ோ ஷ ்
m e d a l o f v a l o u r ம ெ ட ல ் ஆ ஃ ப ் வ ே ல ர ்
m e d h a v i ம ே த ா வ ி
m e e r a ம ீ ர ா
m e e t ம ீ த ்
m e g h a c h a n d ம ே க ச ந ் த ்
m e g h n a d ம ே க ் ன ா த ்
m e h a r b a a n ம ெ ஹ ர ் ப ா ன ்
m e l v a ம ெ ல ் வ ா
m e n d e l e v i u m ம ெ ன ் ட ெ ல ே வ ி ய ம ்
m e r a g h a r m e r e b a c h c h e ம ே ர ா க ர ் ம ே ர ெ ப ச ் ச ே
m e r e b h a i y a ம ே ர ெ ப ை ய ா
m i d w a y ம ி ட ் வ ே
m i n a t i ம ி ன ா த ி
m i z m a r ம ி ஜ ் ம ா ர ்
m o b i l e ம ொ ப ை ல ்
m o h a b b a t i s k o k e h t e h a i n ம ொ ஹ ப த ் இ ஸ ் க ோ க ெ ஹ ் த ே ஹ ை ன ்
m o h a k ம ோ ஹ க ்
m o u n t o l i v e l u t h e r a n ம வ ு ண ் ட ் ஆ ல ி வ ் ல ு த ெ ர ன ்
m u f t i ம ு ஃ ப ் த ி
m u h t a d i ம ு ஹ ் த ா த ி
m u n g e r ம ு ன ் க ர ்
m u n i c i p a l m u s e u m o f t h e b a t t l e o f c r e t e a n d t h e n a t i o n a l r e s i s t a n c e ம ு ன ி ச ி ப ் ப ல ் ம ி ய ூ ஸ ி ய ம ் ஆ ஃ ப ் த ப ே ட ் ட ல ் ஆ ஃ ப ் க ி ர ே ட ் அ ண ் ட ் த ந ே ஷ ன ் ஸ ் ல ் ர ெ ச ி ஸ ் ட ன ் ஸ ்
m u n i m j i ம ு ன ி ம ் ஜ ி
m u r s h i d a ம ு ர ் ஷ ி த ா
m u s e u m o f j e w i s h h e r i t a g e ம ி ய ூ ஸ ி ய ம ் ஆ ஃ ப ் ஜ ூ வ ி ஷ ் ஹ ெ ர ி ட ் ட ே ஜ ்
m u s e u m o f w e l s h l i f e ம ி ய ூ ஸ ி ய ம ் ஆ ஃ ப ் வ ெ ல ் ஷ ் ல ை ஃ ப ்
m u s h f i q u r r a h m a n ம ு ஷ ் ஃ ப ் ப ி க ு ர ் ர ஹ ் ம ா ன ்
n a c h i y a r k o i l ந ா ச ் ச ி ய ா ர ் க ோ வ ி ல ்
n a g a r ந ா க ர ்
n a i m i s h a r a n y a ந ய ் ம ி ஷ ர ் ண ் ய
n a l a v a d e ந ள வ ா த ே
n a m o o n a ந ம ூ ன ா
n a n d k u m a r ந ந ் த ் க ு ம ா ர ்
n a n o w a l i a ந ா ன ோ வ ா ல ி ய ா
n a r s i m h a a v t a r ந ர ் ஸ ி ம ் ஹ ா அ வ ் த ா ர ்
n a t i o n a l g a l l e r y o f c a n n a d a ந ே ஷ ன ல ் க ே ல ர ி ஆ ஃ ப ் க ே ன ட ா
n a t i o n a w i d e ந ே ஷ ன ா வ ை ட ்
n a v e e n a ந வ ீ ன ா
n a v i o s m a r i t i m e h o l d i n g s ந ே வ ி ய ோ ஸ ் ம ா ர ி ட ை ம ் ஹ ோ ல ் ட ி ங ் க ் ஸ ்
n a v j o t s i n g h s i d h u ந வ ் ஜ ோ த ் ச ி ங ் ச ி த ் த ு
n a w a d a ந வ ா த ்
n a y a k a n o o n ந ய ா க ா ன ூ ன ்
n a y e e d u n i y a n a y e l o g ந ய ீ த ு ன ி ய ா ந ய ே ல ா க ்
n a z l i ந ஸ ் ல ி
n e a g l e ந ி ய ா க ி ல ்
n e e l ந ீ ல ்
n e e p a ந ீ ப ா
n e g i ந ே க ி
n e i l f a i r b r o t h e r ந ே ய ் ல ் ஃ ப ் ப ே ர ் ப ி ர த ர ்
n e l l i e ந ெ ல ி ய ே
n e w y o r k t r a n s i t m u s e u m ந ி ய ூ ய ா ர ் க ் ட ி ர ா ன ் ச ி ட ் ம ி ய ூ ஸ ி ய ம ்
n i c h o l a s p i r a m a ந ி க ் க ோ ல ஸ ் ப ி ர ம ா
n i c k y b o j e ந ி க ் க ி ஹ ோ ய ே
n i k h a t ந ி க ா த ்
n i k u n j a ந ி க ு ஞ ் ச ா
n i r m i t ந ி ர ் ம ி த ்
n i s b a t ந ி ஸ ் ப த ்
n i s h a d ந ி ஷ ா த ்
n i s h a n i ந ி ஷ ா ன ி
n i s h i t ந ி ஷ ி த ்
n i s h t h a ந ி ஷ ் த ா
n i t y a n a n d ந ி த ் ய ா ன ந ் த ்
n o o r - e - i s l a a m ந ூ ர ் - இ - இ ஸ ் ல ா ம ்
n o t h e f o r t ந ோ த ே ஃ ப ் ப ோ ர ் ட ்
n o t t i n g h a m t r e n t u n i v e r s i t y ந ா ட ் ட ி ங ் க ா ம ் ட ் ர ெ ண ் ட ் ய ூ ன ி வ ர ் ச ி ட ் ட ி
n o v a m e r i c a n s t e e l ந ோ வ ா ம ெ ர ி க ் க ன ் ஸ ் ட ீ ல ்
n r i p e s h ந ் ர ி ப ே ஷ ்
o b a l e s h ஓ ப ல ே ஷ ்
o l e s i a ஓ ல ி ஷ ி ய ா
o m a p r a k a a s h ஓ ம ா ப ி ர க ா ஷ ்
o r b o t e c h ஆ ர ் ப ோ ட ெ க ்
o r c h i d c h e m i c a l ஆ ர ் க ் க ி ட ் க ெ ம ி க ் க ல ்
o r d e r o f t h e d u t c h l i o n ஆ ர ் ட ர ் ஆ ஃ ப ் த ி ட ச ் ல ய ன ்
o r d e r o f t h e g o l d e n f l e e c e ஆ ர ் ட ர ் ஆ ஃ ப ் த ி க ோ ல ் ட ன ் ஃ ப ் ள ீ ஸ ்
o r g a n ஆ ர ் க ன ்
o r i a n a ஓ ர ி ய ா ன ா
o r i g i n a g r i t e c h l i m i t e d ஆ ர ி ஜ ி ன ் அ க ் ர ி ட ெ க ் ல ி ம ி ட ெ ட ்
o s a k a w o r l d t r a d e c e n t e r ஒ ச ா க ா வ ே ர ் ல ் ட ் ட ி ர ே ட ் ச ெ ன ் ட ர ்
o s i a s ஓ ச ை ஸ ்
o s s a m a ஓ ஸ ் ஸ ா ம ா
o s t r o h ஓ ஸ ் ட ி ர ா ஹ ்
o z a a f a r ஓ ச ா ஃ ப ் ப ர ்
p a a n c h f a u l a d i ப ா ன ் ச ் ஃ ப ் ப ெ ள ல ா ட ி
p a c i f i c r i m ப ஸ ி ஃ ப ி க ் ர ி ம ்
p a d m a p a t i ப த ் ம ப த ி
p a l i ப ா ல ி
p a r a m a n a n d ப ர ம ா ன ந ் த ்
p a r a m a r t h ப ர ம ா ர ் த ்
p a r a n j a p e ப ர ஞ ் ப ே
p a r d a ப ர ் த ா
p a r i s o r l y ப ா ர ீ ஸ ் ஓ ர ் ல ி
p a r o m a ப ர ோ ம ா
p a r t h ப ா ர ் த ்
p a r v a t i ப ா ர ் வ த ி
p a t a n g a ப த ங ் க ா
p a t m a n j a r i ப த ் ம ஞ ் ச ர ி
p a u l a n d a l e x a n d r a c a n e l l o p o u l o s m u s e u m ப ா ல ் அ ண ் ட ் அ ல ெ க ் ஸ ா ட ி ர ா க ா ன ெ ல ் ல ோ ப ோ ல ோ ஸ ் ம ி ய ூ ஸ ி ய ம ்
p e a c e ப ீ ஸ ்
p e a r l ப ே ர ் ல ்
p e k i n g u n i v e r s i t y ப ெ க ி ங ் ய ூ ன ி வ ர ் ச ி ட ் ட ி
p e r c y ப ெ ர ் ச ி
p e r i n o v e r ப ெ ர ி ன ் ஓ வ ர ்
p e r r i e r c o m e d y a w a r d ப ெ ர ் ர ி ய ர ் க ா ம ெ ட ி அ வ ா ர ் ட ்
p e t r o n a s t o w e r 2 ப ெ ட ் ர ோ ன ஸ ் ட வ ர ் 2
p h a d a t a r e ப த ா த ர ே
p h a g u n ப ா க ூ ன ்
p h i l e m e r y ப ி ல ் எ ம ெ ர ி
p h i l i p p i n e s ப ி ல ி ப ் ப ை ன ் ஸ ்
p h u l b a n i ப ூ ல ் ப ா ன ி
p i n g p o n g ப ி ங ் ப ா ங ்
p i p a ப ை ப ா
p i t s b e r g ப ி ட ் ஸ ் ப ர ் க ்
p i v a l ப ி வ ல ்
p o i n t p e l e e ப ா ய ி ண ் ட ் ப ே ல ீ
p o l h a w n f o r t ப ா ல ் ஹ ா ன ் ஃ ப ் ப ோ ர ் ட ்
p o l i c e d e t e c t i v e ப ோ ல ி ஸ ் ட ி ட ெ க ் ட ி வ ்
p o n k s h e ப ொ ன ் ஷ ே
p o o j i t ப ூ ஜ ி த ்
p r a b h m e e t ப ் ர ப ் ம ீ த ்
p r a b h r u p ப ி ர ப ் ர ூ ப ்
p r a g u n ப ் ர க ு ன ்
p r a n ப ் ர ா ண ்
p r a n a v ப ் ர ன வ ்
p r a s a d ப ி ர ச ா த ்
p r a s h a m ப ் ர ஷ ா ம ்
p r a s h a n t v a i d y a ப ி ர ஷ ா ந ் த ் வ ை த ் ய ா
p r a t e e k ப ் ர த ீ க ்
p r a t o s h ப ி ர த ோ ஷ ்
p r a v i n a m r e ப ி ர வ ீ ன ் ஆ ம ் ர ே
p r e c i s i o n v a l l e y c o r v e t t e m u s e u m ப ி ர ெ ச ி ஷ ன ் வ ா ல ி க ா ர ் வ ெ ட ் ம ி ய ூ ஸ ி ய ம ்
p r e e t k a g e e t ப ் ர ீ த ் க ா க ீ த ்
p r e e t k i d o r i ப ் ர ீ த ் க ி ட ோ ர ி
p r e m n a t h b a j a j ப ் ர ே ம ் ந ா த ் ப ஜ ா ஜ ்
p r i c e w a t e r h o u s e c o o p e r s ப ி ர ை ஸ ் வ ா ட ் ட ர ் ஹ வ ு ஸ ் க ூ ப ் ப ர ் ஸ ்
p r i n c e h a r r y ப ் ர ி ன ் ஸ ் ஹ ே ர ி
p r i n c i p e d i c a r i g n a n o ப ி ர ி ன ் ச ி ப ி ட ி க ா ர ி க ் ன ா ன ோ
p r i v a t e l i f e ப ி ர ை வ ெ ட ் ல ை ஃ ப ்
p r i x a r s e l e c t r o n i c a ப ் ர ி க ் ஸ ் அ ர ் ஸ ் எ ல க ் ட ் ர ா ன ி க ா
p r i y a d a r s h i n i ப ி ர ி ய த ர ் ஷ ி ண ி
p r i y a r a n j a n ப ் ர ி ய ர ஞ ் ச ன ்
p r o f e s s o r ப ு ர ொ ஃ ப ் ப ச ர ்
p u r a n i k ப ு ர ா ன ி க ்
p u r a s k a a r ப ு ர ா ஸ ் க ா ர ்
p u s h p i t a ப ு ஷ ் ப ி த ா
p y a r k i b a a z i ப ி ய ா ர ் க ி ப ா ஸ ி
p y a r k i m a a r ப ி ய ா ர ் க ி ம ா ர ்
q a b o o l க ா ப ூ ல ்
q u a s i - w a r க ு வ ா ஸ ி - வ ா ர ்
q u e e n e l i z a b e t h i க ு ய ி ன ் எ ல ி ச ப த ் i
q u e e n i e க ு ய ி ன ி
q u e e n s c o u n t y f a r m m u s e u m க ு ய ி ன ் ஸ ் க வ ு ன ் ட ி ஃ ப ் ப ா ர ் ம ் ம ி ய ூ ஸ ி ய ம ்
q u i c k s t e p க ு ய ி க ் ஸ ் ட ெ ப ்
q u r a y b a h க ு ர ே ப ா ஹ ்
r a a h i ர ா ஹ ி
r a a j a k a n _ y a a ர ா ஜ க ன ் ய ா
r a a j a p a a l ர ா ஜ ப ா ல ்
r a a j i v ர ா ஜ ி வ ்
r a c e ர ே ஸ ்
r a h i l a ர ஹ ி ல ா
r a i n e r ர ய ் ன ர ்
r a j k a n y a ர ா ஜ ் க ன ் ய ா
r a j a g o p i c h a n d ர ா ஜ ா க ோ ப ி ச ந ் த ்
r a j a n ர ஜ ன ்
r a j a n i ர ஜ ன ி
r a j k u m a r ர ா ஜ ் க ு ம ா ர ்
r a l e i g h ர ா ல ெ ய ் க ்
r a m a p o ர ா ம ா ப ோ
r a m r a t a n ர ா ம ் ர த ன ்
r a n a d e ர ன ட ே
r a n a v e e r ர ன வ ீ ர ்
r a n d o l p h ர ா ண ் ட ோ ல ் ப ்
r a n d o l p h ர ா ன ் ட ா ல ் ப ்
r a n e s h ர ன ே ஷ ்
r a n g n a t h a r ர ங ் க ந ா த ர ்
r a s t e a u r m a n z i l ர ா ஸ ் த ே அ வ ு ர ் ம ன ் ஸ ி ல ்
r a s t e p y a r k e ர ா ஸ ் த ே ப ி ய ா ர ் க ெ
r a y b r i g h t ர ே ப ி ர ை ட ்
r a y i l l i n g w o r t h ர ே இ ல ் ல ி ங ் வ ர ் த ்
r e e c e ர ீ ஸ ்
r e g i n a ர ெ ஜ ி ன ா
r e l f ர ெ ல ஃ ப ்
r h e i n l a n d ர ே ய ் ன ் ல ா ண ் ட ்
r h i a n n o n ர ய ன ் ன ன ்
r i a n n e ர ி ய ன ் ன ா
r i c h a r d e l l i s o n ர ி ச ் ச ர ் ட ் எ ல ் ல ி ச ன ்
r i d h d h i ர ி த ் த ி
r i j u ர ி ஜ ் ஜ ூ
r i n g o s t a r ர ி ங ் க ோ ஸ ் ட ா ர ்
r o b b i e h a r t ர ா ப ி ஹ ா ர ் ட ்
r o b e r t k e n n e d y ர ா ப ர ் ட ் க ெ ன ் ன ட ி
r o b e r t w a g n e r ர ா ப ர ் ட ் வ ா க ் ன ர ்
r o b i n s m i t h ர ா ப ி ன ் ஸ ் ம ி த ்
r o b i n s o n ர ா ப ி ன ் ச ன ்
r o c h a k ர ோ ச க ்
r o o k i e o f t h e y e a r a w a r d ர ூ க ் க ி ஆ ஃ ப ் த ி இ ய ர ் அ வ ா ர ் ட ்
r o s e ர ோ ஸ ்
r o s s s e a ர ா ஸ ் ச ீ
r o y a l a r c h ர ா ய ல ் ஆ ர ் ச ்
r o z a ர ோ ஸ ா
r u c h i ர ு ச ் ச ி
r u g g i e r o d i l a u r i a ர ு க ் க ி ய ா ர ோ ட ி ல ா ர ி ய ா
r u m b a ர ு ம ் ப ா
r u s t o m - e - b a g h d a d ர ு ஸ ் த ம ் - இ - ப ா க ் த ா த ்
s a b a d h u ச ப ா த ு
s a c c h i d a n a n d ச ச ் ச ி த ா ன ந ் த ்
s a c h a a i ஸ ச ் ச ா ய ி
s a d a s u h a g a n ச த ா ச ு ஹ ா க ா ன ்
s a d e e d ச த ீ த ்
s a f i y - a l l a h ச ஃ ப ி - அ ல ் ல ா
s a g a r ச க ர ்
s a g a r ச ா க ர ்
s a g h e e r ச க ீ ர ்
s a h a l p u r ச ஹ ல ் ப ூ ர ்
s a h a n i ச ஹ ா ன ி
s a i n t s t a n i s l a u s h i g h s c h o o l . m u m b a i ச ெ ய ி ண ் ட ் ஸ ் ட ா ன ி ஸ ் ல ா ஸ ் ஹ ை ஸ ் க ூ ல ் , ம ு ம ் ப ை
s a i n t x a v i e r s ' s s c h o o l , c h a n d i g a r h ச ெ ய ி ண ் ட ் ஸ ே வ ி ய ர ் ஸ ் ஸ ் க ூ ல ் , ச ண ் ட ி க ர ்
s a i r a h ச ை ர ா
s a j j a d a h m e d ச ா ஜ ் ஜ ா த ் அ ஹ ் ம த ்
s a k h i r o b i n ச க ி ர ா ப ி ன ்
s a l i l a ச ல ி ல ா
s a m a n j a y a n t h a ச ம ன ் ஜ ெ ய ந ் த ா
s a m p a d a ச ம ் ப த ா
s a m p a t t i ச ம ் ப த ி
s a m u d r a ச ம ு த ் ர ா
s a n m a t e o ச ன ் ம ே ட ோ
s a n m a t i a s ச ா ன ் ம ா ட ி ய ா ஸ ்
s a n a a ச ன ா
s a n d h y a c h h a y a ச ந ் த ி ய ா ச ா ய ா
s a n g d i l ச ங ் த ி ல ்
s a n j u l a ச ஞ ் ஜ ு ல ா
s a n n a t a ச ன ் ன ா ட ா
s a n t o s h ச ந ் த ோ ஷ ்
s a n t o s h ச ன ் த ோ ஷ ்
s a r l a ச ர ் ல ா
s a r l a ச ர ் ள ா
s a r y u ச ர ் ய ு
s a r y u ச ா ர ் ய ூ
s a s a r n a i y a ச ா ஸ ர ் ந ை ய ா
s a t y w a n s a v i t r i ச த ் ய வ ா ன ் ச ா வ ி த ் ர ி
s c a i l e x c o r p o r a t i o n ஸ ் க ை ல ெ க ் ஸ ் க ா ர ் ப ் ப ர ே ஷ ன ்
s c h n i e d e r e l e c t r i c ஷ ் ன ை ட ர ் எ ல க ் ட ் ர ி க ்
s e e t a s w a y a m v a r ச ீ த ா ஸ ் வ ய ம ் வ ர ்
s e e t a a s a r a n ச ி ய ன ் ன ா
s e r e n g e t i ச ெ ர ெ ண ் க ே ட ் ட ி
s e w s h i v n a r i n e ச ி ய ூ ஷ ி வ ் ந ா ர ா ய ் ண ்
s h a a n x i h i s t o r y m u s e u m ஷ ா ன ் க ் ஸ ி ஹ ி ஸ ் ட ர ி ம ி ய ூ ஸ ி ய ம ்
s h a d d i k a m a m l a ஷ ா த ் த ி க ா ம ா ம ் ல ா
s h a h n a z ஷ ஹ ் ன ா ஸ ்
s h a h n a z ஷ ா ஹ ் ன ா ஸ ்
s h a m s a v e r a ஷ ா ம ் ச வ ே ர ா
s h a m s h e r ஷ ா ம ் ஷ ெ ர ்
s h a n e b o n d ஷ ே ன ் ப ா ண ் ட ்
s h a n e w a t s o n ஷ ே ன ் வ ா ட ் ச ன ்
s h a r a d ஷ ர த ்
s h a r e e k ஷ ர ீ க ்
s h a r k ஷ ா ர ் க ்
s h a r m a ச ர ் ம ா
s h a s h i p r a b h a a ஷ ஷ ி ப ி ர ப ா
s h a t r u ஷ த ் ர ு
s h a t r u d a m a n ஷ த ் ர ு த ம ன ்
s h a t r u j e t a a ஷ த ் ர ு ஜ ே த ா
s h a u n p o l l o c k ஷ ா ன ் ப ொ ல ் ல ா க ்
s h a w m ஷ ா ம ்
s h e r s h i v a j i ஷ ே ர ் ஷ ி வ ா ஜ ி
s h e r d i l ஷ ே ர ் த ி ல ்
s h e r o o ஷ ெ ர ூ
s h i r e e s h ஷ ி ர ீ ஷ ்
s h i v n a r i n e c h a n d e r p a u l ஷ ி வ ் ந ா ர ா ய ் ண ் ச ந ் த ர ் ப ா ல ்
s h o b h a n a ச ோ ப ன ா
s h r a v a n a ஷ ர வ ன ா
s h r e e n a a t h ஸ ் ர ீ ந ா த ்
s h r i k r u s h n a ஸ ் ர ீ க ி ர ு ஷ ் ண ா
s h r i m a n s h r i m a t i ஸ ் ர ீ ம ா ன ் ஸ ் ர ீ ம த ி
s h u ' a a ஷ ு வ ா
s h u b h d i n ஷ ு ப ் த ி ன ்
s h u c h i ஷ ு ச ் ச ி
s h u n g a r e ஷ ு ன ் க ர ே
s i b a n i ச ி ப ன ி
s i b e r u t ச ி ப ே ர ு ட ்
s i d k i ச ி த ் க ி
s i j u d o b h a k o l ச ி ஜ ூ ட ோ ப ா க ோ ல ்
s i m e o n ச ி ம ி ய ோ ன ்
s i n a i ச ி ன ா ய ்
s i r g a r r y s o b e r s ச ர ் க ே ர ி ச ோ ப ர ் ஸ ்
s i r e e n ச ி ர ீ ன ்
s k a n s k a ஸ ் க ா ன ் ஸ ் க ா
s k y d i v i n g ஸ ் க ை ட ை வ ி ங ்
s n e h l a t a ஸ ் ன ே ஹ ் ல த ா
s o l s t i c e ச ோ ல ் ஸ ் ட ை ஸ ்
s o n y a ச ோ ன ் ய ா
s o o l a g i r i c h i n n a r r e s e r v o i r ச ூ ல க ி ர ி ச ி ன ் ன ா ர ் ர ி ச ர ் வ ா ய ர ்
s o u t h c h i n a ச ௌ த ் ச ை ன ா
s o u t h i n d b k ச ௌ த ் இ ந ் த ி ய ன ் ப ே ங ் க ்
s r i r a m a k r i s h n a v i d y a s h a l a , m y s o r e ஸ ் ர ீ ர ா ம க ி ர ு ஷ ் ண ா வ ி த ் ய ஷ ா ல ா , ம ை ச ூ ர ்
s r i v a g i s v a r i v i d y a m a n d i r , s a m a t h u r , p o l l a c h i ஸ ் ர ீ வ ா க ி ஸ ் வ ர ி வ ி த ் ய ா ம ந ் த ி ர ் , ச ம ா த ூ ர ் , ப ொ ல ் ல ா ச ் ச ி
s r i d h a r a n j e g a n a t h a n ஸ ் ர ீ த ர ண ் ஜ ெ க ந ா த ன ்
s t a b r o e c k ஸ ் ட ா ப ் ர ோ ய ெ க ்
s t a l i n ஸ ் ட ா ல ி ன ்
s t a t e f a r m i n s u r a n c e ஸ ் ட ே ட ் ப ா ர ் ம ் இ ன ் ஷ ூ ர ன ் ஸ ்
s t a v r o s ஸ ் ட வ ் ர ோ ஸ ்
s t e e n d o r p ஸ ் ட ீ ன ் ட ா ர ் ப ்
s t e i n e r l e i s u r e l i m i t e d ஸ ் ட ே ன ் ன ் ர ் ல ீ ஷ ர ் ல ி ம ி ட ெ ட ்
s t e r l i t e ஸ ் ட ெ ர ் ல ை ட ்
s t e v e p a l f r a m a n ஸ ் ட ீ வ ் ப ா ல ் ஃ ப ் ர ா ம ே ன ்
s u j a l a ச ு ஜ ல ா
s u m a n o l a t a ச ு ம ன ோ ல த ா
s u n i l j a y a s i n g h e ச ு ன ி ல ் ஜ ெ ய ச ி ங ் க ே
s u r a m a ச ு ர ம ா
s u s h i l a ச ு ஷ ி ல ா
s u z u k i m o t o r ச ு ச ூ க ் க ி ம ோ ட ் ட ா ர ்
s w a i n ஸ ் வ ை ன ்
s w a r a j e n g i n e s ஸ ் வ ர ா ஜ ் இ ன ் ஜ ி ன ் ஸ ்
s w i n b u r n e u n i v e r s i t y o f t e c h n o l o g y ஸ ் வ ை ன ் ப ர ் ன ் ய ூ ன ி வ ர ் ச ி ட ் ட ி ஆ ஃ ப ் ட ெ க ் ன ா ல ஜ ி
s y e d a k h t a r i m a m q u a d r i ச ய த ் அ க ் த ர இ ம ா ம ் க ா த ் ர ி
s y l v i e ச ி ல ் வ ி
s y n c l a i r ச ி ன ் க ி ள ை ர ்
t a l a l த ல ா ல ்
t a l l a d e g a ட ா ல ா ட ெ க ா
t a m a s ட ம ா ஸ ்
t a m a t h a ட ம ா த ா
t a m i l n a d u n e w s p r i n t த ம ி ழ ் ந ா ட ு ந ி ய ூ ஸ ் ப ி ர ி ண ் ட ்
t a r a v i n d a r த ர வ ி ந ் த ர ்
t a r u n b h a r a t த ர ு ன ் ப ா ர த ்
t a s m i n e த ஸ ் ம ீ ன ்
t a t e g a l l e r y ட ே ட ் க ே ல ர ி
t a v i a ட ா வ ி ய ா
t a w a n d a m u p a r i w a ட வ ா ண ் ட ா ம ப ு ர ி வ ா
t a w q e e r த ௌ க ் க ீ ர ்
t e g e l ட ீ க ல ்
t e h k h a n a த ே ஹ ் க ா ன ா
t e l u k c e n d r a w a s i h த ே ல ு க ் ச ே ந ் த ் ர வ ா ச ி
t e r a n i k a ட ெ ர ா ன ி க ா
t e r r e n c e ட ெ ர ன ் ஸ ்
t e r r i ட ெ ர ் ர ி
t e r r y d u f f i n ட ெ ர ் ர ி ட ஃ ப ் ப ி ன ்
t e v a p h a r m a c e u t i c a l i n d u s t r i e s l i m i t e d ட ெ வ ா ப ா ர ் ம ா ச ெ ட ் ட ி க ் க ல ் இ ண ் ட ஸ ் ட ி ர ீ ஸ ் ல ி ம ி ட ெ ட ்
t h a l a s s a த ல ா ஸ ா
t h a r த ா ர ்
t h a w a b த வ ா ப ்
t h e a s h e s த ி ஆ ஷ ஸ ்
t h e t r u m p b u i l d i n g த ி ட ி ர ம ் ப ் ப ி ல ் ட ி ங ்
t h e t i s த ே ட ி ஸ ்
t h i n a த ி ன ா
t h o s a r த ோ ச ர ்
t h o s a r த ோ ஸ ா ர ்
t i e r r a ட ி ய ர ா
t i l o t t a m a த ி ல ோ த ் த ம ா
t i m e s m u l t i m e d i a ட ை ம ் ஸ ் ம ல ் ட ி ம ீ ட ி ய ா
t i r u v a n a n t p u r a m த ி ர ு வ ன ந ் த ப ு ர ம ்
t o n b a c k ட ோ ன ் ப ே க ்
t o n y ட ோ ன ி
t o p p a n p r i n t i n g ட ா ப ் ப ன ் ப ி ர ி ண ் ட ி ங ்
t r e s s ட ் ர ெ ஸ ்
t r e v e t ட ் ர ெ வ ெ ட ்
t r i s h n a த ் ர ி ஷ ் ன ா
t r i y a t r i ட ி ர ி ய ா த ் ர ி
t r u d e ட ் ர ூ ட ்
t u l s i d a s த ு ள ் ச ி த ா ஸ ்
t w y l a த ் வ ை ல ா
u g o ய ூ க ோ
u l f a h ஊ ல ் ஃ ப ா
u m a p a t i உ ம ா ப த ி
u m a r g u l உ ம ர ் க ு ல ்
u n a y s a h உ ன ய ் ச ா
u n i v e r s i t y o f l o n d o n ய ூ ன ி வ ர ் ச ி ட ் ட ி ஆ ஃ ப ் ல ண ் ட ன ்
u n i v e r s i t y o f m i n n e s o t a ய ூ ன ி வ ர ் ச ி ட ் ட ி ஆ ஃ ப ் ம ி ன ் ன ச ோ ட ் ட ா
u r m i உ ர ் ம ி
u r o o j உ ர ூ ஜ ்
u t t a r a n c h a l உ த ் த ர ா ஞ ் ச ல ்
v a a g e e s h v a r வ ா க ீ ஷ ் வ ர ்
v a i r a a j வ ை ர ா ஜ ்
v a l e r o e n e r g y வ ா ல ெ ர ோ எ ன ர ் ஜ ி
v a n d a n a a வ ந ் த ன ா
v e d i k a a வ ே த ி க ா
v e e n a p a n i வ ீ ண ா ப ா ன ி
v e r i z o n c o m m u n i c a t i o n s வ ெ ர ி ச ா ன ் க ம ் ய ூ ன ி க ் க ே ஷ ன ் ஸ ்
v i k r a n t வ ி க ் ர ந ் த ்
v i k r a n t வ ி க ் ர ா ன ் த ்
v i l a s வ ி ல ா ஸ ்
v i n o d வ ி ன ோ த ்
v i r d i வ ி ர ் த ி
v i t t o r i o v e n e t o வ ி ட ் ட ோ ர ி ய ோ வ ெ ன ெ ட ோ
v o y a g e r வ ா ய ே ஜ ர ்
v r a h a d e e k a r a n வ ி ர ா ஹ த ீ க ர ன ்
v r i t t i வ ி ர ் த ் த ி
w a h h a j வ ா ஜ ்
w a h i d வ ஹ ி த ்
w a k a l a t வ க ா ல த ்
w a l l e c e c o l l e c t i o n வ ா ல ெ ஸ ் க ல ெ க ் ஷ ன ்
w a q t w a q t k i b a a t வ க ் த ் வ க ் த ் க ி ப ா த ்
w a r o f t h e c o n f e d e r a t i o n o f b a r i n p o l a n d வ ா ர ் ஆ ப ் த க ா ன ஃ ப ் ப ெ ட ர ே ஷ ன ் ஆ ப ் ப ா ர ் இ ன ் ப ோ ல ா ண ் ட ்
w a r i t h a h வ ர ி த ா
w a r n i x வ ா ர ் ன ி க ் ஸ ்
w a s i l a h வ ஸ ி ல ா
w e l l i n g t o n வ ெ ல ் ல ி ங ் ட ன ்
w e n t w o r t h வ ெ ன ் ட ் வ ொ ர ் த ்
w e s t c o a s t வ ெ ஸ ் ட ் க ோ ஸ ் ட ்
w e s t f a l l s c h r i s t i a n c o m m u n i t y வ ெ ஸ ் ட ் ப ா ல ் ஸ ் க ி ற ி ஸ ் ட ி ய ன ் க ம ் ய ு ன ி ட ் ட ி
w e s t m i n s t e r p r e s b y t e r i a n வ ெ ஸ ் ட ் ம ி ன ் ஸ ் ட ர ் ப ி ர ெ ஸ ் ப ை ட ே ர ி ய ன ்
w e s t m i n s t e r p r e s b y t e r i a n வ ெ ஸ ் ட ் ம ி ன ் ஸ ் ட ர ் ப ி ர ெ ஸ ் ப ை த ி ர ி ய ன ்
w h i t e ஒ ய ி ட ்
w i l k i n s o n வ ி ல ் க ி ன ் ச ன ்
w i m c o வ ி ம ் க ோ
w o h d i n a a y e g a வ ஹ ் த ி ன ் ஆ ய ே ங ் க ா
w o l c o t t வ ா ல ் க ோ ட ்
w o l f உ ல ஃ ப ்
w o o d y a l l e n உ ட ் ட ி ஆ ல ன ்
w r i g h t a w a r d s ர ை ட ் அ வ ா ர ் ட ் ஸ ்
w u a n k a r a உ வ ா ன ் க ா ர ா
w y a t t ய ா த ்
w y a t t வ ய த ்
y a a t n a ய ா த ் ன ா
y a m e e n ய ம ீ ன ்
y a n g q i n ய ா ங ் க ி ன ்
y a t e e m ய த ீ ம ்
y e h d e s h ய ே த ே ஷ ்
y e l l o w s e a ய ெ ல ் ல ோ ச ீ
y o g e e ^ d r ய ோ க ீ த ர ்
y o g e e s h ய ோ க ீ ஷ ்
y u s r ய ு ச ர ்
y u v a t i ய ு வ த ி
z a h e d g i l a n i ஸ ா ஹ ெ த ் க ி ல ா ன ி
z a i r a h ஜ ே ர ா
z a m e e l a h ஜ ம ீ ல ா
z a p o r i z h i a n s i c h ஸ ா ப ோ ர ி ஸ ி ய ா ன ் ஸ ி ச ்
z a r e e n a h ஜ ர ீ ன ா
z e l i g ஜ ெ ல ி க ்
z h u k o v ஸ ு க ோ வ ்
z i z i ஜ ீ ஜ ீ
z u l k i f ஜ ு ல ் க ி ஃ ப ்
|
ebe22b790ed21f6827857b01360e1ffa87a67578 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH3/EX3.6/3_6.sce | 1e93d11765245c43d82675179d1a22d0ae9e349b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,754 | sce | 3_6.sce | clear;
clc;
funcprot(0);
//Example - 3.6
//Page number - 88
printf("Example - 3.6 and Page number - 88\n\n");
//Given
T = 125+273.15;//[K] - Temperature
P1 = 1;//[bar] - Initial pressure
P1 = P1*10^(5);//[N/m^(2)]
P2 = 60;//[bar] - Final pressure
P2 = P2*10^(5);//[N/m^(2)]
R = 8.314;//[J/mol*K] - Universal gas constant
Tc = 416.3;//[K] - Critical temperature
Pc = 66.80*10^(5);//[N/m^(2)] - Critical pressure
// (1)
// Virial equation of state, Z = 1 + (B/V)+(C/V^(2))
// (P*V)/(R*T) = 1 + (B/V)+(C/V^(2))
// P = (R*T)/V+(B*R*T)/V^(2)+(C*R*T)/V^(3)
// w = integral(PdV)=R*T*log(V2/V1)-(B*R*T)*(1/V2-1/V1)-(C*R*T/2)*(1/V2^(2)-1/V1^(2))
B = -207.5;//[cm^(3)/mol] - Second virial coefficient
B = -207.5*10^(-6);//[m^(3)/mol]
C = 18200;//[cm^(6)/mol^(2)] - Third virial coefficient
C = 18200*10^(-12);//[m^(6)/mol^(2)]
// We need to calculate molar volume at state 1 and 2,
// At state 1,P = P1,
// V^(3)-(R*T/P)*V^(2)-(B*R*T/P)*V-(C*R*T/P)=0
// Solving the cubic equation
deff('[y]=f1(V)','y=V^(3)-(R*T/P1)*V^(2)-(B*R*T/P1)*V-(C*R*T/P1)');
V_1=fsolve(-1,f1);
V_2=fsolve(0,f1);
V_3=fsolve(10,f1);
// The cubic equation has only 1 real root,other two roots are imaginary.
V1 = V_3;
// Similarly at state 2,P=P2
// V^(3) - (R*T/P)*V^(2) - (B*R*T/P)*V - (C*R*T/P) = 0
// Solving the cubic equation
deff('[y]=f2(V)','y=V^(3)-(R*T/P2)*V^(2)-(B*R*T/P2)*V-(C*R*T/P2)');
V_4=fsolve(-1,f2);
V_5=fsolve(0,f2);
V_6=fsolve(1,f2);
V2 = V_6;
// Finally work done is given by,
w1 = R*T*log(V2/V1)-(B*R*T)*(1/V2-1/V1)-(C*R*T/2)*(1/V2^(2)-1/V1^(2));//[J/mol]
w1 = w1*10^(-3);//[kJ/mol]
printf(" (1).The work done using given virial equation of state is %f kJ/mol\n",w1);
// (2)
// Virial equation of state, Z = 1+(B*P)/(R*T)+((C-B^(2))/(R*T)^(2))*P^(2)
// (P*V)/(R*T)= 1+(B*P)/(R*T)+((C-B^(2))/(R*T)^(2))*P^(2)
// V = (R*T)/P+B+((C-B^(2))/(R*T))*P
// Differentiating both sides by P and integrating we get,
// w = integral(PdV)=-(R*T)*log(P2/P1)+((C-B^(2))/(2*R*T))*(P2^(2)-P1^(2))
w2 = -(R*T)*log(P2/P1) + ((C-B^(2))/(2*R*T))*(P2^(2)-P1^(2));//[J/mol]
w2 = w2*10^(-3);//[kJ/mol]
printf(" (2).The work done using given virial equation of state is %f kJ/mol\n",w2);
// (3)
// Van der Walls equation of state is given by,
a = (27*(R^(2))*(Tc^(2)))/(64*Pc);//[Pa*m^(6)/mol^(2)]
b = (R*Tc)/(8*Pc);//[m^(3)/mol]
// P = ((R*T)/(V-b))-a/(V^(2));//[N/m^(2)]
// w = integral(PdV)=R*T*log((V2-b)/(V1-a))+a*(1/V2-1/V1)
// The cubic form of van der Walls equation of state is given by,
// V^(3) - (b+(R*T)/P)*V^(2) + (a/P)*V - (a*b)/P = 0
// Solving the cubic equation for P=P1
deff('[y]=f3(V)','y=V^(3)-(b+(R*T)/P1)*V^(2)+(a/P1)*V-(a*b)/P1');
V2_1=fsolve(1,f3);
V2_2=fsolve(10,f3);
V2_3=fsolve(100,f3);
// The above equation has 1 real and 2 imaginary roots. We consider only real root (V2_3).
// Similarly at state 2,for P=P2,
deff('[y]=f4(V)','y=V^(3)-(b+(R*T)/P2)*V^(2)+(a/P2)*V-(a*b)/P2');
V2_4=fsolve(1,f4);
V2_5=fsolve(10,f4);
V2_6=fsolve(100,f4);
// The above equation has 1 real and 2 imaginary roots. We consider only real root (V2_6).
// Finally work done is given by
w3 = R*T*log((V2_6-b)/(V2_3-b))+a*(1/V2_6-1/V2_3);//[J/mol]
w3 = w3*10^(-3);//[kJ/mol]
printf(" (3).The work done using van der Walls equation of state is %f kJ/mol\n",w3);
// (4)
// Redlich Kwong equation of state,
a_1 = (0.42748*(R^(2))*(Tc^(2.5)))/Pc;//[Pa*m^(6)*K^(1/2)/mol]
b_1 = (0.08664*R*Tc)/Pc;//[m^(3)/mol]
// P = ((R*T)/(V-b_1))-(a_1/(T^(1/2)*V*(V+b_1)));//[N/m^(2)]
// Work done is given by
// w = R*T*log((V2-b)/(V1-b))-a/T^(1/2)*integrate('1/V*(V+b)',V',V1,V2)
// Using the factorization 1/(V*(V+b))=(1/b)*((1/V)-(1/V+b)),we get
// w = R*T*log((V2-b)/(V1-b))-(a/(b*T^(1/2)))*(log(V2/V1)-log((V2+b)/(V1+b))
// Now we have calculate V1 and V2,
// The cubic form of Redlich Kwong equation of state is given by,
// V^(3) - ((R*T)/P)*V^(2) - ((b_1^(2)) + ((b_1*R*T)/P) - (a/(T^(1/2)*P))*V - (a*b)/(T^(1/2)*P) = 0
// Solving the cubic equation at state 1,
deff('[y]=f5(V)','y=V^(3)-((R*T)/P1)*V^(2)-((b_1^(2))+((b_1*R*T)/P1)-(a_1/(T^(1/2)*P1)))*V-(a_1*b_1)/(T^(1/2)*P1)');
V3_1=fsolve(1,f5);
V3_2=fsolve(10,f5);
V3_3=fsolve(100,f5);
// The above equation has 1 real and 2 imaginary roots. We consider only real root (V3_3).
// Similarly at state 2,for P = P2,
deff('[y]=f6(V)','y=V^(3)-((R*T)/P2)*V^(2)-((b_1^(2))+((b_1*R*T)/P2)-(a_1/(T^(1/2)*P2)))*V-(a_1*b_1)/(T^(1/2)*P2)');
V3_4=fsolve(1,f6);
V3_5=fsolve(10,f6);
V3_6=fsolve(100,f6);
// The above equation has 1 real and 2 imaginary roots. We consider only real root (V3_6).
// Finally work done is given by
w4 = R*T*log((V3_6-b_1)/(V3_3-b_1))-(a_1/(b_1*T^(1/2)))*(log(V3_6/V3_3)-log((V3_6+b_1)/(V3_3+b_1)));//[J/mol]
w4 = w4*10^(-3);//[kJ/mol]
printf(" (3).The work done using Redlich Kwong equation of state is %f kJ/mol\n",w4);
|
1024b195098dbae43226b1a289561a887af21230 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH7/EX7.22/Ex7_22.sce | 4b152a71ca224db47319f8cea703ebe3f57b8841 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 876 | sce | Ex7_22.sce | //CHAPTER 7- SINGLE PHASE TRANSFORMER
//Example 22
clc;
disp("CHAPTER 7");
disp("EXAMPLE 22");
//6600/400 V single phase transformer
//VARIABLE INITIALIZATION
v1=6600; //primary voltage in Volts
v2=400; //secondary voltage in Volts
R1=2.5; //primary resistance
R2=0.01; //secondary resistance
//SOLUTION
//while finding equivalent resistance referrd to primary
//transfer R2 resistance to R'2
R_dash_2=R2*(v1/v2)^2;
R_e1=R1+R_dash_2;
//
//to find total equivalent resistance referred to secondary
//first calculate R'1
R_dash_1=R1*(v2/v1)^2;
R_e2=R2+R_dash_1;
//
disp(sprintf("The total equivalent resistance referred to primary is %.6f Ω",R_e1));
disp(sprintf("The total equivalent resistance referred to secondary is %.6f Ω",R_e2));
disp(" ");
//
//END
|
f60824f97b094fd08545a02631a1d8e5878d2190 | b6afd72138cc9b10fdb8d6cc49ee5f89ff47020e | /tp/optim_gfo.sce | f670d80e25d95c7bb912227ea4a3b62caa05d35c | [] | no_license | zhongming-unice/numerical-method | a38eb7fc555b5f8e8ffbd74613e8911eeb97e3ed | 8b82c67598000e715d003dc2a0a7afbfcdbf2618 | refs/heads/master | 2020-05-04T11:55:25.504216 | 2019-04-10T15:45:59 | 2019-04-10T15:45:59 | 179,118,358 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,295 | sce | optim_gfo.sce | //MAM_OPT_TP7
//auteur : ZHONG Ming
//
//exec('optim_fonction.sci')
function [J,G]=cost(v)
[J,G]=costR(v)
endfunction
N = 10
epsg = 10^-6
Kmax = 100
uk = rand(N,1)
J_cost_gf = zeros(Kmax,1)
J_cost_go = zeros(Kmax,1)
pas_fixe = 0.05
for k = 1:Kmax
[J,G] = cost(uk)
J_cost_gf(k) = J
// if(norm(G)<epsg) then break; end
u1 = uk - pas_fixe*G
uk = u1
end
//parabolique : f(t) = a0 + a1*t + a2*t^2 = J(uk - t*G(uk))
// f'(t) = a1 + 2*a2*t : f'(tk) = 0 ====> tk = -a1/(2*a2)
//f(0) = a0 = J(uk)
//f'(0) = a1 = -G(uk)*G(uk)
//f(tk-1) = a0 + a1*tk-1 + a2*tk-1^2 = J(uk - tk-1*G(uk)) ===> a2 = (J(uk - tk-1*G(uk)) - a0 - a1*tk-1) / tk-1^2
// = (J(uk - tk-1*G(uk)) - J(uk) - G(uk)*tk-1) / tk-1^2
u = rand(N,1)
kappa = 0.05
t = zeros(Kmax,1)
t(1) = 1
for k = 2:Kmax
[J,G] = cost(u)
if(norm(G)<epsg) then break
else
J_cost_go(k) = J
a0 = J
a1 = -norm(G)^2
[J1,G1] = cost(u-t(k-1)*G)
a2 = (J1-a0-a1*t(k-1)) / t(k-1)^2
t(k) = -a1/(2*a2)
t(k) = t(k) * kappa
u2 = u - t(k)*G
u = u2
end
end
scf(1)
plot2d(J_cost_gf,style=11)
plot2d(J_cost_go,style=22)
legend("pas fixe","pas optimal")
|
36721a10bb1338795e95a5ca20275eac347913b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH8/EX8.28/EX8_28.sce | 47db5c9b576f83886476db88dd5b2da2673cb660 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 250 | sce | EX8_28.sce | //EXAMPLE-8-28 PG NO-545-546
Avf=1.586;
R1=10;
R2=[Avf-1]*R1;
Fc=5000;
R=2000;
C=1/[2*%pi*R*Fc]
disp('ii) Resistance (R2) is = '+string (R2) +' Kohm ')
disp('ii) CAPACITOR (C) is = '+string (C) +' F ')
|
93f7420cab6165179424803b75cda6d4a90c1cef | 8a13c34cfdbdcbc5b8122af70a216bb1079ba147 | /config/packages/tests/webcams.yaml.tst | 336d16a0534e329a676f219968f1fe3e0f0a6693 | [] | no_license | maattdiy/home-assistant-config | 71edeebaacbce846fd92509440c63c8281897f24 | 033d71fe96504e0ad1db8ff3cd22ef60ea39f0c3 | refs/heads/master | 2022-02-05T12:07:20.861234 | 2022-01-23T19:10:33 | 2022-01-23T19:10:33 | 109,337,011 | 127 | 20 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | tst | webcams.yaml.tst | ## Webcams HASS Module
## https://home-assistant.io/components/android_ip_webcam/
##################################################
## Configuration
##################################################
android_ip_webcam:
- host: 192.168.1.10
port: 8080
name: phone01
|
0a92e9c41b4e2dbebda675f45cee02536c39bb1b | f61fc5f9d8415f72e01ba3158422f55376e459db | /session/papyros/stages/u2t/common/artwork/desktop_dash_background.sci | 8cc580e4fc6e613abe7299f5bd6d0c55922a6375 | [] | no_license | JosephMillsAtWork/u2t | 58c226eb15710affeceb41a747ca031dbaf0e5ca | b0f0f6de19ea21648cfd692f6f8afd8b60565fc9 | refs/heads/master | 2021-01-10T16:39:13.317851 | 2016-01-27T23:01:35 | 2016-01-27T23:01:35 | 50,544,130 | 2 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 152 | sci | desktop_dash_background.sci | border.left: 0
border.top: 0
border.bottom: 43
border.right: 44
source: desktop_dash_background.png
horizontalTileRule: Repeat
verticalTileRule: Repeat
|
5beed2dfdab6e6cb4326224c7d473dd26a233e8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH12/EX12.12/i_12.sce | db2b5b2fb5e4e27ea570a61106850637aced93bf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 398 | sce | i_12.sce | // To Compute the resistor, when operating voltage is altered.
clc;
clear;
V=120;
P=100;
Rd=(V^2)/P;
Vr=80; // Reduced voltage
Ir= Vr/Rd;// Reduced current
Rt=V/Ir; // The Total Resistance required to circulate the reduced current.
Re= Rt-Rd; // External resistance required.
disp('ohms',Re,'The external resistance required to be connected in series to operate at 80V')
|
15abc2f0f8ba0e0da6eeaabc03524cf1542fa631 | f3921ba261cdd9c9c4201d85a3b3bcbc42a26421 | /protobuflib/pblib_read_varint64.sci | d0dac4c37584e1b2eea3f10b1d01fd95d73a999d | [] | no_license | manojgudi/protobuf-scilab | 9bbe77a52ad8bd50d762a6e4a388236f88dacc0c | d5a8e967848b48c1628859f3f52fb59ac3502429 | refs/heads/master | 2020-12-02T15:54:15.894328 | 2015-01-08T19:04:45 | 2015-01-08T19:04:45 | 28,736,110 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,323 | sci | pblib_read_varint64.sci | function [num, num_read] = pblib_read_varint64(buffer, offset)
//pblib_read_varint64
// function [num, num_read] = pblib_read_varint64(buffer, offset)
// protobuf-matlab - FarSounder's Protocol Buffer support for Matlab
// Copyright (c) 2008, FarSounder Inc. All rights reserved.
// http://code.google.com/p/protobuf-matlab/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// * Neither the name of the FarSounder Inc. nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
// Author: fedor.labounko@gmail.com (Fedor Labounko)
// Support function used by Protobuf compiler generated .m files.
current_byte = uint64(buffer(offset));
num = bitset(current_byte, 8, 0);
index = 1;
while (current_byte > 127)
current_byte = uint64(buffer(offset + index));
num = bitor(bitset(current_byte, 8, 0) * (2 ** 7*index), num);
index = index + 1;
end
num_read = index;
endfunction
|
ce075630def3dd90847deef0bfb1e3d091899814 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3682/CH4/EX4.6/Ex4_6.sce | fadae8942db031e3d35148a28decb738cdd37e91 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,250 | sce | Ex4_6.sce | // Exa 4.6
clc;
clear;
// Given data
//Referring circuit in Fig. 4.26
// An op amp integrator and a low pass Rc circuit)
// Solution
printf(' Figure (4.26) is a simple op-amp integrator where Millers theorem is applied across the feedback capacitor Cf. \n The input time constant T = R1*Cf*(1-Av). \n Therefore, vi = V*(1-e^(-t/T));');
printf(' \n Therefore, vo = Av*Vi = Av* V*(1-e^(-t/R1*Cf*(1-Av))); ');
printf(' \n By expanding e^(-t/..) series by Taylors Expansion method we will reach to following approximation');
printf('\n vo ≈ (-V*t/R1*Cf) * [1- t/(2*R1*Cf*(1-Av))]; if Av>>1 ...eq (1) ');
printf('\n\n');
printf(' Also, we know that for a low pass RC integrating circuit network(without op-amp) the output vo for a step input of V becomes \n');
printf(' For a large Rc, vo ≈ (V*t)/R*C) * (1 - t/(2*R*C) .. eq(2)'); //Eq(2)
printf('\n\n');
printf(' It can be seen that the output voltages of both circuits varies aproximately linearly with time(for large RC) and \n for either case, derivative(vo) = V/RC. \n However, the second term in both the expression represent deviation from the linearity. \n we see that op-amp integrator is more linear than the simple RC circuit by a factor of 1/(1-Av).\n');
|
7d85e3e21b8917a309dd5545feb953bdc1c0b029 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2741/CH2/EX2.2/Chapter2_Example2.sce | 7b36951187c318e5cd6cb70c1acceeaa56ce8484 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sce | Chapter2_Example2.sce | clc
clear
//Input data
L=500;//The length of a steel rod in cm
t=40;//The increase in temperature in degree centigrade
y=2*10^12;//The youngs modulus of elasticity of steel in dynes/cm^2
e=12*10^-6;//The coefficient of linear expansion of steel in per degree centigrade
//Calculations
S=y*e*t;//The stress in the rod in dynes/cm^2
//Output
printf('The stress in the rod is %3g dynes/cm^2',S)
|
6aa248cb6ff48262ea7198db266957b9b0d09048 | 449d555969bfd7befe906877abab098c6e63a0e8 | /650/CH2/EX2.4/4.sce | c1315811a06061bdd68e44ac264502f7f1150be1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 622 | sce | 4.sce | clc
g=9.8; //m/s^2
dz=0.2; //m ; dz1=z1-z2=z1-z2
rho=1000; //kg/m^3
dz1=2; //m ; dz1=z1-z_A
dz2=0; //m ; dz2=z1-z_B
dz3=-1.5; //m ; dz3=z1-z_C
v2=sqrt(2*g*dz);
v_A=v2;
v_B=v2;
v_C=v2;
p_A=rho*g*(dz1-v_A^2/2/g);
p_B=rho*g*(dz2-v_B^2/2/g);
p_C=rho*g*(dz3-v_C^2/2/g);
disp("Velocity at pt. A =")
disp(v_A)
disp("m/s")
disp("Velocity at pt. B =")
disp(v_B)
disp("m/s")
disp("Velocity at pt. C =")
disp(v_C)
disp("m/s")
disp("Pressure at pt. A =")
disp(p_A)
disp("kN/m^2")
disp("Pressure at pt. B =")
disp(p_B)
disp("kN/m^2")
disp("Pressure at pt. C =")
disp(p_C)
disp("kN/m^2") |
bec8e81970d661cb6506d2f8863707e6b06f8946 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH11/EX11.8/11_8.sce | 91fa2d43001eb6298b40c35cf810af1dfb30559d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 157 | sce | 11_8.sce | clear; clc; close;
Vo = strcat([ string((20/(20+20)) * ((100+100)/100)),"*V1",string(-(100*10^3)/(100*10^3)),"*V2"]);
disp(Vo,'Output voltage = ');
|
056f703d7a299908992d7e223aad73df489986f7 | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/Deqplot.sci | 43d8ea6e87967e7077931cab145fef741a3e0083 | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,025 | sci | Deqplot.sci |
// 08.09.22
// 09.03.10
// 09.10.09 ( ` and order )
// 09.10.09b ( system )
// 09.11.12 ( debug for x<0 )
// 13.10.19 ( __ added to variables )
// 15.11.16 N changed to number of intervals
// 15.12.08 bug of optiion ( __ ) fixed
function P__=Deqplot(varargin)
global XMIN XMAX YMIN YMAX
Nargs__=length(varargin);
Eps__=10^(-5);
Fnstr__=varargin(1);
Fnstr__=strsubst(Fnstr__,Prime(),'`');
K__=mtlb_findstr(Fnstr__,'=');
Str__=part(Fnstr__,1:(K__-1));
Fnstr__=part(Fnstr__,(K__+1):length(Fnstr__));
JL__=mtlb_findstr(Str__,'`');
Yname__=part(Str__,1:(JL__(1)-1));
Yname__=strsubst(Yname__,',',';');
Tmp__=mtlb_findstr(Yname__,';');
if length(Tmp__)>0
Dim__=length(Tmp__)+1;
Order__=1;
Fnstr__=strsubst(Fnstr__,',',';');
else
Dim__=1;
Order__=length(JL__);
end;
Rgstr__=varargin(2);
K__=mtlb_findstr(Rgstr__,'=');
if K__~=[]
Xname__=part(Rgstr__,1:K__-1);
Rng__=evstr(part(Rgstr__,K__+1:length(Rgstr__)));
else
Xname__=Rgstr__;
Rng__=[XMIN,XMAX];
end;
X0__=varargin(3);
Y0__=varargin(4);
if size(Y0__,2)>1
Y0__=Y0__';
end;
N__=50;
if Nargs__>=5
Tmp__=varargin(5);
Tmp__=strsubst(Tmp__,"=","__="); // 15.12.08
Tmp__=strsubst(Tmp__,"____","__");
execstr(Tmp__);
end;
X1__=Rng__(1); X2__=Rng__(2);
dX__=(X2__-X1__)/(N__-1);
dX__=(X2__-X1__)/(N__); // 15.11.16
if Dim__>1
Tmp__=mtlb_findstr(Yname__,'[');
Data__=part(Yname__,Tmp__+1:length(Yname__));
Tmp__=mtlb_findstr(Data__,']');
Data__=part(Data__,1:Tmp__-1);
Data__=';'+Data__+';';
NL__=mtlb_findstr(Data__,';');
NameL__=list();
for I__=1:length(NL__)-1
Tmp__=part(Data__,NL__(I__)+1:NL__(I__+1)-1);
NameL__(I__)=Tmp__;
end;
Fnrep__=Fnstr__;
for I__=1:length(NameL__)
Tmp__=NameL__(I__);
Fnrep__=strsubst(Fnrep__,Tmp__,'Pt('+string(I__)+')');
end;
Tmp1__='Outf=Dfp__('+Xname__+',Pt)';
Tmp2__='Outf='+Fnrep__;
deff(Tmp1__,Tmp2__);
Y0p__=Y0__;
Tmp1__='Outf=Dfn__('+Xname__+',Pt)';
Tmp2__='Outf=-('+Fnrep__+')';
deff(Tmp1__,Tmp2__);
Y0n__=Y0__;
else
YL__=mtlb_findstr(Fnstr__,Yname__);
Fnrep__=part(Fnstr__,1:YL__(1)-1);
for I__=1:length(YL__)
Py__=YL__(I__);
J__=1;
K__=Py__+1;
while part(Fnstr__,K__:K__)=='`'
J__=J__+1; K__=K__+1;
end;
Fnrep__=Fnrep__+Yname__+'('+string(J__)+')';
if I__==length(YL__)
Fnrep__=Fnrep__+part(Fnstr__,K__:length(Fnstr__));
else
J__=YL__(I__+1)-1;
if J__>=K__
Fnrep__=Fnrep__+part(Fnstr__,K__:J__);
end;
end;
end;
Eqvec__='[';
for I__=1:Order__-1
Eqvec__=Eqvec__+Yname__+'('+string(I__+1)+');';
end;
Eqvec__=Eqvec__+Fnrep__+']';
Tmp1__='Outf=Dfp__('+Xname__+','+Yname__+')';
Tmp2__='Outf='+Eqvec__;
deff(Tmp1__,Tmp2__);
Y0p__=Y0__;
YL__=mtlb_findstr(Fnstr__,Yname__);
Fnrep__=part(Fnstr__,1:YL__(1)-1);
for I__=1:length(YL__)
Py__=YL__(I__);
J__=1;
K__=Py__+1;
while part(Fnstr__,K__:K__)=='`'
J__=J__+1; K__=K__+1;
end;
if modulo(J__,2)==1
Fnrep__=Fnrep__+Yname__+'('+string(J__)+')';
else
Fnrep__=Fnrep__+'(-'+Yname__+'('+string(J__)+'))';
end;
if I__==length(YL__)
Fnrep__=Fnrep__+part(Fnstr__,K__:length(Fnstr__));
else
J__=YL__(I__+1)-1;
if J__>=K__
Fnrep__=Fnrep__+part(Fnstr__,K__:J__);
end;
end;
end;
if modulo(Order__,2)==1
Fnrep__='-('+Fnrep__+')';
end;
Fnrep__=strsubst(Fnrep__,Xname__,'(-'+Xname__+')'); // 09.11.12
Eqvec__='[';
for I__=1:Order__-1
Eqvec__=Eqvec__+Yname__+'('+string(I__+1)+');';
end;
Eqvec__=Eqvec__+Fnrep__+']';
Tmp1__='Outf=Dfn__('+Xname__+','+Yname__+')';
Tmp2__='Outf='+Eqvec__;
deff(Tmp1__,Tmp2__);
Y0n__=[];
for I__=1:size(Y0__,1)
Y0n__=[Y0n__;(-1)^(I__-1)*Y0__(I__)];
end;
end;
if X0__<=X1__
X__=X1__:dX__:X2__;
Y__=ode(Y0p__,X0__,X__,Dfp__);
M__=min(size(X__,2),size(Y__,2));
if Dim__>1
PL__=Y__';
P__=PL__(1:M__,:);
else
P__=[X__(:,1:M__);Y__(1,1:M__)]';
end;
return;
end;
if X2__<=X0__
X__=(-X2__):dX__:(-X1__);
Y__=ode(Y0n__,-X0__,X__,Dfn__);
X__=-X__;
M__=min(size(X__,2),size(Y__,2));
if Dim__>1
PL__=Y__';
P__=PL__(1:M__,:);
else
P__=[X__(:,1:M__);Y__(1,1:M__)]';
end;
return;
end;
XP__=X0__:dX__:X2__;
YP__=ode(Y0p__,X0__,XP__,Dfp__);
M__=min(size(XP__,2),size(YP__,2));
XP__=XP__(:,1:M__);
YP__=YP__(:,1:M__);
XN__=(-X0__)+dX__:dX__:(-X1__);
YN__=ode(Y0n__,-X0__,XN__,Dfn__);
M__=min(size(XN__,2),size(YN__,2));
XN__=XN__(:,1:M__);
YN__=YN__(:,1:M__);
XN__=-XN__;
XN__=XN__(length(XN__):-1:1);
YN__=YN__(:,size(YN__,2):-1:1);
if Dim__>1
P__=[YN__';YP__']
else
X__=[XN__,XP__];
Y__=[YN__(1,:),YP__(1,:)];
P__=[X__;Y__]';
end;
endfunction;
|
6171b1d58034c1264432ec66fe76dea8645430c5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH1/EX1.5/Ex1_5.sce | 959c746e879521f0f8aa26fd593820f964e405d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 380 | sce | Ex1_5.sce | clc;
clear;
Ey=3*10^4 //electric field in y-axis in N/C
Ex=0 //electric field in x-axis in N/C
q=1.6*10^-19 //electric charge in C
me=9.1*10^-31 //in kg
//Calculation
//F=q*E
Fy=-q*Ey //Force in y direction
ay=Fy/me
format("e",8)
disp(ay,"Acceleration of the electron is =")
//The negative sign tells us that the direction of this acceleration is downward
|
3f452db2fe6cba82ce58cdac207b56348ddb29ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /3651/CH3/EX3.13/13.sce | 6ec8a3effc272f172dceb0bf43bc516e9d3cd875 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 134 | sce | 13.sce | //Variable declarations
k=1;
//Calculations
a=integrate('2*k*exp(-2*k*x)','x',2/k,3/k)
//Result
printf('a=%0.3f \n ',(a))
|
0def01fe53ede6554904ae27462750bf762af7fa | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.12_3.tst | a5f553deaa0dafbe9440f6409029e761ef553278 | [] | 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 | 23,825 | tst | bow.12_3.tst | 12 1:0.1111111111111111 6:0.023809523809523808 23:0.1111111111111111 25:0.25 45:0.5 56:0.3333333333333333 143:0.3333333333333333 150:0.027777777777777776 353:0.3333333333333333 505:1.0 3770:1.0 5398:1.0 5424:1.0 7323:1.0
12 4:1.0 6:0.023809523809523808 17:0.16666666666666666 75:0.5 97:0.3333333333333333 105:0.3333333333333333 128:0.07692307692307693 150:0.027777777777777776 201:1.0 320:1.0 350:0.14285714285714285 353:0.3333333333333333 542:0.5 573:1.0 707:1.0 1013:1.0 1345:1.0 1883:1.0 2175:0.5 2219:1.0 2235:1.0 5346:1.0 5347:1.0 5516:1.0 5858:1.0 7404:1.0 7582:1.0 7933:1.0
12 17:0.16666666666666666 320:2.0 1472:1.0 2057:1.0 2059:0.5 4162:1.0 5305:1.0
12 6:0.023809523809523808 17:0.16666666666666666 42:0.2 63:1.0 73:1.0 82:0.1 254:0.5 275:1.0 318:1.0 320:1.0 373:0.2 402:1.0 463:0.5 482:1.0 643:1.0 878:1.0 1274:1.0 1280:1.0 1992:1.0 2558:1.0 2678:1.0 3034:1.0 6118:1.0 6327:1.0 7461:1.0 7757:1.0
12 6:0.023809523809523808 97:0.6666666666666666 128:0.07692307692307693 171:0.5 320:1.0 441:1.0 463:0.5 549:1.0 774:1.0 3031:1.0 4167:1.0 4802:1.0 5453:1.0 5973:1.0 6557:1.0
12 4:1.0 5:2.0 6:0.047619047619047616 15:0.07142857142857142 17:0.16666666666666666 56:0.3333333333333333 128:0.07692307692307693 150:0.027777777777777776 164:1.0 191:0.25 201:1.0 206:1.0 320:1.0 397:0.5 561:0.3333333333333333 583:0.5 647:0.25 924:1.0 1123:0.5 1389:1.0 1759:1.0 2567:1.0 2942:1.0 4259:0.5 5453:1.0 5861:1.0 7426:1.0 7452:1.0
12 5:1.0 17:0.16666666666666666 42:0.2 97:0.3333333333333333 150:0.027777777777777776 171:0.5 181:0.25 185:1.0 681:0.16666666666666666 924:1.0 1502:1.0 1917:1.0 2497:1.0 3540:1.0 5817:1.0 6401:1.0 6617:1.0
12 1:0.1111111111111111 5:2.0 37:0.25 56:0.3333333333333333 73:1.0 135:0.5 191:0.5 235:1.0 344:1.0 353:0.3333333333333333 441:1.0 914:2.0 1236:1.0 1423:1.0 1572:1.0 1585:1.0 1700:1.0 2263:0.5 3214:1.0 5436:1.0 6198:1.0 6383:1.0 7437:1.0
12 1:0.1111111111111111 17:0.16666666666666666 24:1.0 42:0.2 51:0.2 56:0.3333333333333333 82:0.1 96:0.06666666666666667 106:1.0 281:1.0 399:0.5 488:0.6666666666666666 681:0.16666666666666666 3959:1.0 5424:1.0 5810:0.5
12 6:0.07142857142857142 17:0.16666666666666666 25:0.25 60:1.0 128:0.07692307692307693 155:0.08333333333333333 169:1.0 177:0.3333333333333333 185:1.0 359:0.5 443:0.5 644:1.0 1236:1.0 2146:1.0 2235:1.0 2987:1.0 2989:1.0 3603:1.0 4256:1.0 5158:0.5 5436:1.0
12 1:0.1111111111111111 4:1.0 56:0.3333333333333333 164:1.0 320:1.0 2119:1.0 2380:2.0 2919:1.0
12 6:0.047619047619047616 37:0.25 64:1.0 82:0.2 97:0.3333333333333333 320:1.0 359:0.5 441:1.0 511:0.5 681:0.16666666666666666 1500:1.0 1537:1.0 2238:1.0 2466:1.0 2688:1.0 3359:1.0 4364:1.0 4547:1.0 5500:1.0 5562:1.0
12 4:1.0 17:0.16666666666666666 42:0.1 73:1.0 97:0.6666666666666666 105:0.3333333333333333 176:1.0 185:1.0 190:1.0 441:1.0 644:1.0 1123:0.5 1416:1.0 2055:1.0 2295:1.0 2956:1.0 2989:1.0 5279:1.0
12 5:1.0 6:0.047619047619047616 23:0.1111111111111111 64:1.0 73:1.0 150:0.027777777777777776 180:2.0 226:1.0 238:0.1 275:1.0 421:1.0 531:0.5 561:0.3333333333333333 648:1.0 795:1.0 903:1.0 999:1.0 1090:1.0 1635:1.0 1647:1.0 2295:1.0 2609:1.0 2852:1.0 4262:1.0 4325:1.0 5077:1.0 5861:1.0 7288:1.0
12 5:1.0 6:0.047619047619047616 15:0.14285714285714285 23:0.1111111111111111 42:0.1 56:0.3333333333333333 64:1.0 94:0.5 128:0.07692307692307693 150:0.027777777777777776 181:0.25 191:0.5 226:1.0 399:0.5 409:1.0 461:1.0 473:0.3333333333333333 511:1.5 527:0.5 609:1.0 635:1.0 1241:0.5 1275:0.5 1474:1.0 1479:1.0 1661:1.0 2188:1.0 4402:1.0 6021:1.0
12 5:1.0 17:0.16666666666666666 42:0.2 54:0.5 75:0.5 128:0.07692307692307693 155:0.08333333333333333 204:1.0 399:0.5 438:0.08333333333333333 908:1.0 949:1.0 1363:1.0 2216:1.0 2235:1.0 2759:0.3333333333333333 3098:1.0 4209:1.0 6608:1.0
12 5:3.0 6:0.047619047619047616 17:0.16666666666666666 56:0.3333333333333333 97:0.3333333333333333 98:0.3333333333333333 128:0.07692307692307693 131:0.5 150:0.027777777777777776 473:0.3333333333333333 1360:0.25 1361:0.5 1712:1.0 2145:1.0 2235:1.0 2317:1.0 2716:1.0 3457:1.0 3567:1.0 3683:1.0 3892:1.0 4498:1.0 5810:0.5 5861:1.0 6522:1.0
12 1:0.1111111111111111 4:1.0 5:1.0 34:0.09090909090909091 42:0.1 56:0.3333333333333333 82:0.2 105:0.3333333333333333 147:0.5 150:0.027777777777777776 164:1.0 177:0.3333333333333333 201:1.0 220:1.0 488:0.3333333333333333 1189:1.0 1669:0.5 1675:1.0 1809:1.0 1992:1.0 2183:1.0 6203:1.0 6453:1.0 6605:1.0
12 6:0.023809523809523808 34:0.09090909090909091 98:0.3333333333333333 153:0.5 587:0.5 627:1.0 908:1.0 2747:0.3333333333333333 3892:1.0 5769:1.0 6196:1.0
12 4:1.0 5:1.0 6:0.023809523809523808 42:0.1 45:0.5 96:0.06666666666666667 97:0.3333333333333333 164:1.0 344:1.0 583:0.5 587:0.5 1345:1.0 1846:1.0 2312:0.5 4537:1.0 5240:0.5 5610:1.0 5666:1.0 7385:1.0
12 37:0.25 63:1.0 97:0.3333333333333333 206:1.0 320:1.0 966:0.5 1844:1.0 5175:1.0 6010:1.0 7478:1.0 7608:1.0
12 6:0.023809523809523808 17:0.16666666666666666 34:0.09090909090909091 37:0.25 56:0.3333333333333333 64:1.0 128:0.07692307692307693 135:1.0 317:1.0 344:1.0 443:0.5 488:0.3333333333333333 534:0.6666666666666666 671:1.0 1631:1.0 2298:1.0 2591:0.3333333333333333 3098:1.0 3169:1.0 3401:1.0 5175:1.0 5465:1.0
12 5:2.0 6:0.047619047619047616 17:0.16666666666666666 34:0.18181818181818182 42:0.1 56:0.3333333333333333 63:1.0 96:0.06666666666666667 135:0.5 191:0.25 266:1.0 322:1.0 323:1.0 433:1.0 488:0.3333333333333333 561:0.3333333333333333 587:0.5 966:0.5 1389:1.0 1474:1.0 2278:1.0 3928:1.0 4278:1.0 4805:1.0 5175:1.0 5221:1.0 6308:1.0 6993:1.0 7575:1.0 7652:1.0
12 15:0.07142857142857142 17:0.5 73:1.0 75:0.5 82:0.1 97:0.3333333333333333 146:1.0 171:1.0 185:2.0 191:0.25 235:1.0 302:1.0 373:0.2 423:0.3333333333333333 679:1.0 966:0.5 1421:1.0 1885:0.5 2249:0.3333333333333333 2646:1.0 2789:1.0 2819:1.0 3037:1.0 3355:1.0 3372:1.0 5158:0.5 5175:1.0 6387:1.0
12 5:1.0 6:0.047619047619047616 23:0.1111111111111111 34:0.18181818181818182 42:0.2 56:0.3333333333333333 63:1.0 96:0.06666666666666667 97:0.3333333333333333 105:0.3333333333333333 135:0.5 201:1.0 305:1.0 373:0.2 484:0.5 671:1.0 1426:1.0 1695:1.0 1867:1.0 1921:1.0 2113:1.0 2249:0.3333333333333333 2688:1.0 5276:0.5 7634:1.0
12 4:1.0 5:2.0 6:0.047619047619047616 37:0.25 42:0.1 56:0.6666666666666666 82:0.1 117:0.045454545454545456 164:1.0 190:1.0 204:1.0 206:1.0 249:0.3333333333333333 548:1.0 549:1.0 2199:1.0 2431:1.0 2695:1.0 3249:1.0 6480:1.0 7889:1.0
12 1:0.1111111111111111 3:1.0 6:0.047619047619047616 45:0.5 56:0.3333333333333333 73:1.0 97:0.3333333333333333 110:1.0 150:0.027777777777777776 186:1.0 219:0.25 344:1.0 587:0.5 647:0.25 1349:1.0 1434:1.0 2237:1.0 2819:1.0 2989:1.0 6374:1.0
12 5:1.0 6:0.023809523809523808 42:0.1 64:1.0 102:0.25 347:1.0 368:0.3333333333333333 462:1.0 497:1.0 648:1.0 681:0.16666666666666666 778:0.2 1098:1.0 1426:1.0 5908:1.0
12 5:1.0 23:0.1111111111111111 42:0.1 45:0.5 147:0.5 438:0.08333333333333333 1360:0.25 2298:1.0 4776:2.0
12 5:1.0 6:0.023809523809523808 97:0.6666666666666666 106:1.0 373:0.4 695:0.3333333333333333 1311:1.0 1541:1.0 1579:1.0 1717:1.0 2249:0.3333333333333333 2431:1.0 3582:1.0 5624:1.0 7014:1.0
12 5:1.0 34:0.09090909090909091 42:0.1 132:1.0 185:1.0 191:0.25 251:0.16666666666666666 323:1.0 444:1.0 473:0.3333333333333333 488:0.3333333333333333 1241:0.5 1614:1.0 1787:1.0 5164:1.0 5339:1.0 5436:1.0 5501:1.0 6721:1.0
12 4:1.0 5:1.0 6:0.023809523809523808 15:0.07142857142857142 17:0.16666666666666666 23:0.1111111111111111 42:0.2 56:0.6666666666666666 71:1.0 82:0.1 105:0.3333333333333333 116:1.0 164:1.0 191:0.25 219:0.25 233:1.0 266:1.0 275:1.0 286:1.0 373:0.2 522:1.0 819:1.0 870:1.0 1013:1.0 1109:1.0 1123:0.5 1265:0.5 1743:1.0 1885:0.5 1953:1.0 3698:1.0 4195:1.0 4770:1.0 5861:1.0 6336:1.0 7121:1.0
12 1:0.1111111111111111 6:0.023809523809523808 97:0.3333333333333333 160:1.0 191:0.25 530:1.0 850:0.5 951:0.5 1311:1.0 1389:1.0 1614:1.0 1787:1.0 1998:0.5 2249:0.3333333333333333 4031:1.0 5338:1.0 6383:1.0 7179:1.0 7930:1.0
12 6:0.023809523809523808 34:0.09090909090909091 549:1.0 688:1.0 776:1.0 1373:0.5 1787:1.0 1869:1.0 2478:0.2 6386:1.0
12 5:4.0 15:0.07142857142857142 34:0.09090909090909091 82:0.2 101:0.3333333333333333 105:0.3333333333333333 128:0.07692307692307693 150:0.027777777777777776 197:0.5 373:0.4 410:1.0 483:0.5 488:0.3333333333333333 561:0.3333333333333333 595:1.0 622:1.0 768:0.5 1407:1.0 1522:0.5 3355:1.0 5002:1.0 5214:1.0 5221:1.0 6505:1.0 7363:1.0
12 5:1.0 6:0.023809523809523808 42:0.2 57:2.0 73:1.0 97:0.3333333333333333 105:0.3333333333333333 185:1.0 527:0.5 647:0.25 763:1.0 2437:1.0 3515:1.0 3997:1.0 4800:1.0 5973:1.0 6557:1.0 7608:1.0
12 17:0.16666666666666666 23:0.1111111111111111 34:0.09090909090909091 42:0.3 94:0.5 97:0.3333333333333333 301:1.0 322:1.0 531:0.5 561:0.3333333333333333 671:3.0 941:1.0 949:1.0 1123:1.0 1281:1.0 1361:0.5 1452:0.5 1749:1.0 1780:0.5 2263:0.5 2934:1.0 5930:1.0 6153:1.0 7128:1.0
12 6:0.047619047619047616 15:0.07142857142857142 75:0.5 82:0.1 116:1.0 185:1.0 191:0.25 215:0.2 261:0.047619047619047616 292:0.5 484:0.5 901:1.0 927:1.0 1109:1.0 1145:1.0 1276:1.0 1882:1.0 1998:0.5 2279:1.0 4167:1.0 4316:1.0 5790:1.0 6118:1.0 7179:1.0 7595:1.0
12 5:1.0 6:0.023809523809523808 17:0.16666666666666666 56:0.3333333333333333 82:0.1 117:0.045454545454545456 128:0.23076923076923078 135:0.5 150:0.027777777777777776 176:1.0 191:0.25 223:0.5 251:0.16666666666666666 292:0.5 376:1.0 409:2.0 484:0.5 561:0.3333333333333333 908:1.0 1109:1.0 1241:0.5 1421:1.0 1423:1.0 2279:1.0 2652:1.0 3308:1.0 4028:1.0 5158:0.5 6118:1.0
12 53:1.0 117:0.045454545454545456 128:0.07692307692307693 155:0.08333333333333333 191:0.5 223:0.5 261:0.047619047619047616 339:0.5 347:1.0 485:1.0 488:0.3333333333333333 545:0.2 681:0.16666666666666666 2221:1.0 2384:0.5 3595:1.0 4340:1.0 6383:1.0
12 15:0.07142857142857142 37:0.25 42:0.1 94:0.5 160:1.0 185:1.0 261:0.047619047619047616 275:1.0 955:1.0 1318:1.0 1602:1.0 1876:1.0 2120:1.0 2180:1.0 5374:1.0 5590:1.0 7159:1.0
12 6:0.023809523809523808 73:1.0 185:1.0 261:0.047619047619047616 1384:1.0 1876:1.0 2180:1.0 7159:1.0
12 5:1.0 42:0.2 82:0.1 117:0.045454545454545456 197:0.5 215:0.2 251:0.16666666666666666 667:1.0 1162:1.0 1846:1.0 2919:1.0 5135:1.0
12 320:1.0 952:1.0 1344:1.0 2853:1.0
12 5:2.0 6:0.023809523809523808 15:0.07142857142857142 117:0.045454545454545456 155:0.08333333333333333 201:1.0 441:1.0 778:0.2 1013:1.0 1123:0.5 1522:0.5 1669:0.5 1743:1.0 3595:0.5 4221:1.0 5580:0.3333333333333333 6695:1.0
12 5:3.0 6:0.023809523809523808 23:0.1111111111111111 82:0.1 97:0.6666666666666666 117:0.045454545454545456 215:0.2 223:0.5 273:0.25 488:0.3333333333333333 534:0.3333333333333333 549:1.0 845:1.0 1021:1.0 1154:0.3333333333333333 1219:1.0 5119:1.0 5161:1.0 5191:1.0 5250:1.0 5879:1.0 6231:1.0 6261:1.0
12 5:1.0 6:0.047619047619047616 15:0.07142857142857142 34:0.09090909090909091 42:0.1 56:0.3333333333333333 82:0.1 117:0.045454545454545456 131:0.5 138:0.14285714285714285 140:0.5 150:0.027777777777777776 169:1.0 171:0.5 222:1.0 359:0.5 373:0.2 488:0.3333333333333333 497:1.0 534:0.3333333333333333 549:1.0 878:1.0 1210:1.0 2658:1.0 2688:1.0 3508:1.0 4278:1.0 5161:1.0 5810:0.5 6342:1.0 6408:1.0 7268:1.0 7811:1.0
12 6:0.023809523809523808 15:0.07142857142857142 17:0.16666666666666666 42:0.1 114:0.5 191:0.25 399:0.5 1281:1.0 1349:1.0 1361:0.5 1651:0.3333333333333333 3101:0.5 3623:1.0 3794:1.0 5420:1.0 5589:1.0 5924:1.0
12 3:1.0 6:0.023809523809523808 15:0.14285714285714285 23:0.1111111111111111 25:0.25 63:1.0 66:0.3333333333333333 95:1.0 96:0.06666666666666667 176:1.0 191:0.5 275:1.0 320:2.0 1003:0.5 1123:0.5 1421:1.0 1651:0.3333333333333333 2281:1.0 2716:1.0 5789:1.0 6383:1.0
12 5:1.0 6:0.047619047619047616 23:0.1111111111111111 42:0.1 54:0.5 143:0.3333333333333333 150:0.027777777777777776 191:0.25 275:1.0 350:0.14285714285714285 353:0.3333333333333333 409:1.0 457:1.0 483:0.5 549:1.0 908:1.0 955:1.0 1162:1.0 1423:1.0 1492:0.2 1751:0.5 2002:1.0 2004:1.0 2154:1.0 2478:0.4 3057:1.0 5158:0.5 5213:1.0 5250:1.0
12 6:0.023809523809523808 56:1.0 105:0.3333333333333333 147:0.5 150:0.05555555555555555 190:1.0 191:0.25 211:1.0 254:0.5 390:1.0 399:0.5 423:0.3333333333333333 767:1.0 2394:2.0 3087:0.5 3508:1.0 4966:1.0 5158:0.5 5358:1.0 7369:1.0 7538:1.0 7920:1.0
12 6:0.023809523809523808 34:0.09090909090909091 49:0.5 51:0.2 71:1.0 82:0.3 114:0.5 128:0.07692307692307693 155:0.08333333333333333 185:1.0 226:1.0 241:1.0 261:0.047619047619047616 1145:1.0 1298:1.0 1471:1.0 1535:2.0 1537:1.0 2249:0.3333333333333333 3087:0.5 5278:1.0 5623:0.5 5624:1.0 6118:1.0 6772:1.0
12 5:1.0 6:0.023809523809523808 15:0.07142857142857142 34:0.09090909090909091 42:0.1 128:0.07692307692307693 150:0.027777777777777776 211:1.0 215:0.2 397:0.5 427:0.3333333333333333 443:0.5 778:0.2 908:1.0 1256:1.0 1651:0.3333333333333333 2807:1.0 2919:1.0 3379:1.0 3401:1.0 3900:1.0 5214:1.0 5470:1.0
12 15:0.07142857142857142 42:0.2 56:0.3333333333333333 82:0.1 105:0.3333333333333333 128:0.07692307692307693 150:0.027777777777777776 165:0.1 190:2.0 191:0.25 366:1.0 839:1.0 927:1.0 1361:0.5 2217:1.0 2254:0.5 3567:1.0 3780:1.0 4259:0.5 5161:1.0 6130:1.0 7408:1.0 7499:1.0
12 5:1.0 6:0.047619047619047616 15:0.07142857142857142 42:0.1 71:1.0 94:0.5 116:1.0 128:0.07692307692307693 201:1.0 368:0.3333333333333333 399:0.5 473:0.3333333333333333 574:0.25 648:1.0 776:1.0 908:1.0 1013:1.0 1389:1.0 1790:0.5 1872:1.0 2020:1.0 4278:1.0 5329:1.0 6327:1.0 7318:1.0
12 42:0.1 56:0.3333333333333333 63:1.0 82:0.1 128:0.07692307692307693 320:1.0 482:1.0 595:1.0 908:1.0 2279:1.0
12 1:0.1111111111111111 6:0.023809523809523808 15:0.07142857142857142 17:0.16666666666666666 45:0.5 56:0.3333333333333333 73:1.0 117:0.045454545454545456 191:0.25 427:0.3333333333333333 531:0.5 1013:1.0 1361:0.5 3337:1.0 3744:1.0 5424:1.0 6381:1.0 6439:1.0 6571:1.0 7103:1.0
12 6:0.023809523809523808 23:0.1111111111111111 56:0.3333333333333333 82:0.1 96:0.06666666666666667 97:0.3333333333333333 191:0.25 215:0.2 223:1.0 320:1.0 531:0.5 717:1.0 1028:1.0 3375:1.0 5861:1.0 6985:1.0
12 34:0.18181818181818182 42:0.1 64:1.0 98:0.3333333333333333 128:0.07692307692307693 176:2.0 427:0.3333333333333333 648:1.0 1823:1.0 2350:0.3333333333333333 2852:1.0 5374:1.0 6387:1.0 6999:1.0
12 6:0.023809523809523808 97:0.3333333333333333 117:0.045454545454545456 128:0.07692307692307693 320:1.0 368:0.3333333333333333 373:0.2 574:0.25 2276:1.0 2478:0.2 3255:1.0 3425:1.0 6284:1.0
12 5:4.0 6:0.047619047619047616 23:0.1111111111111111 30:0.5 37:0.25 42:0.1 64:1.0 128:0.07692307692307693 165:0.1 215:0.2 238:0.1 266:1.0 399:0.5 473:0.3333333333333333 681:0.16666666666666666 778:0.2 1159:1.0 1162:1.0 1475:1.0 1631:1.0 1717:1.0 2263:0.5 2325:2.0 2374:1.0 2437:1.0 2759:0.3333333333333333 5345:1.0 5755:1.0 6166:1.0 7856:1.0
12 5:1.0 17:0.5 25:0.25 37:0.25 42:0.2 63:1.0 64:2.0 106:1.0 128:0.07692307692307693 191:0.25 238:0.1 272:0.3333333333333333 320:1.0 409:1.0 561:0.3333333333333333 778:0.2 1162:1.0 1317:1.0 1363:1.0 1846:1.0 1948:1.0 2263:0.5 2374:1.0 3628:1.0 4054:0.5 5137:1.0 5346:1.0 5597:1.0 7856:1.0
12 5:1.0 6:0.023809523809523808 17:0.3333333333333333 97:0.3333333333333333 128:0.07692307692307693 320:1.0 1447:1.0 1953:1.0 2053:1.0 2725:1.0 4498:1.0 5141:1.0
12 5:3.0 6:0.023809523809523808 30:0.5 54:0.5 82:0.2 105:0.3333333333333333 147:0.5 165:0.1 191:0.5 204:1.0 215:0.2 219:0.25 261:0.047619047619047616 353:0.3333333333333333 399:0.5 407:1.0 441:1.0 488:0.6666666666666666 534:1.0 714:1.0 1740:1.0 1885:0.5 2263:0.5 2651:1.0 2658:1.0 2939:1.0 6819:1.0
12 6:0.047619047619047616 45:0.5 56:0.3333333333333333 82:0.1 117:0.045454545454545456 185:1.0 240:1.0 286:1.0 320:1.0 344:1.0 484:0.5 534:0.3333333333333333 549:1.0 1861:1.0 2431:1.0 5513:1.0 5979:1.0
12 5:3.0 15:0.07142857142857142 63:1.0 64:1.0 95:1.0 96:0.06666666666666667 165:0.1 176:1.0 185:1.0 191:0.75 219:0.25 353:0.3333333333333333 561:0.3333333333333333 778:0.2 1123:0.5 1421:1.0 2317:1.0 3101:0.5 5623:0.5 5624:1.0 7530:1.0
12 6:0.023809523809523808 94:0.5 776:1.0 1373:0.5 1740:1.0 2020:1.0 5240:0.5 5785:1.0
12 5:2.0 6:0.023809523809523808 15:0.07142857142857142 34:0.09090909090909091 42:0.1 82:0.1 97:0.3333333333333333 171:0.5 191:0.25 238:0.1 454:1.0 488:0.3333333333333333 586:1.0 872:1.0 1098:1.0 1563:1.0 1896:1.0 2020:1.0 2054:1.0 2095:0.5 2683:0.5 4498:1.0 5892:1.0 6365:1.0 6640:1.0
12 5:1.0 6:0.023809523809523808 34:0.09090909090909091 64:1.0 82:0.1 128:0.07692307692307693 150:0.05555555555555555 191:0.5 215:0.2 273:0.25 339:1.0 838:1.0 4278:1.0 5239:1.0 7037:1.0 7779:1.0
12 15:0.07142857142857142 102:0.25 191:0.25 261:0.047619047619047616 1044:1.0 1346:1.0 4259:0.5 5239:1.0
12 24:1.0 64:1.0 82:0.1 117:0.045454545454545456 155:0.08333333333333333 191:0.25 261:0.047619047619047616 549:1.0 690:1.0 1806:1.0 2759:0.3333333333333333 5158:0.5 6659:1.0 6702:1.0
12 117:0.045454545454545456 191:0.25 261:0.047619047619047616 488:0.3333333333333333 534:0.3333333333333333 644:1.0 1492:0.2 2484:1.0 2688:1.0 2759:0.3333333333333333 6834:1.0
12 5:1.0 37:0.25 42:0.1 82:0.2 135:0.5 146:1.0 191:0.25 261:0.047619047619047616 399:0.5 534:0.6666666666666666 768:0.5 1097:1.0 1123:0.5 1298:1.0 1373:0.5 1614:1.0 1885:0.5 3169:1.0 4054:0.5 4774:0.5 6336:1.0 7083:1.0
12 15:0.07142857142857142 42:0.1 82:0.1 109:1.0 117:0.045454545454545456 185:1.0 191:0.25 206:1.0 219:0.25 261:0.047619047619047616 1299:1.0 1992:1.0 4221:2.0 5209:1.0
12 6:0.023809523809523808 42:0.1 45:0.5 96:0.06666666666666667 147:0.5 177:0.3333333333333333 191:0.75 219:0.25 261:0.047619047619047616 488:0.3333333333333333 681:0.16666666666666666 966:0.5 1298:1.0 1861:1.0 2211:1.0 2528:1.0 5955:1.0
12 6:0.023809523809523808 96:0.06666666666666667 191:0.25 215:0.2 443:0.5 461:1.0 473:0.3333333333333333 4723:1.0 5294:1.0
12 6:0.023809523809523808 17:0.16666666666666666 56:0.3333333333333333 63:1.0 64:1.0 94:0.5 97:0.3333333333333333 106:1.0 117:0.045454545454545456 138:0.14285714285714285 171:0.5 190:1.0 339:0.5 373:0.2 411:1.0 671:1.0 1298:1.0 1885:0.5 2500:1.0 3221:1.0 3344:1.0 3508:1.0 4371:1.0 5158:0.5 5230:1.0 5421:1.0 7538:1.0
12 117:0.045454545454545456 150:0.027777777777777776 219:0.25 908:1.0 2249:0.3333333333333333 4105:1.0 5135:1.0 6190:1.0 6373:1.0 7100:1.0
12 4:1.0 82:0.1 117:0.045454545454545456 128:0.07692307692307693 261:0.047619047619047616 399:0.5 872:1.0 1423:1.0 1445:0.5
12 4:1.0 6:0.07142857142857142 15:0.07142857142857142 17:0.16666666666666666 42:0.2 82:0.1 97:0.6666666666666666 117:0.045454545454545456 222:2.0 320:1.0 350:0.14285714285714285 373:0.2 423:0.3333333333333333 549:1.0 778:0.4 966:0.5 1298:1.0 1738:1.0 2053:1.0 2279:1.0 2651:1.0 5141:1.0 5435:1.0 5436:1.0 5453:1.0 6263:1.0 6385:1.0 6842:1.0
12 6:0.023809523809523808 42:0.1 117:0.045454545454545456 147:0.5 150:0.027777777777777776 155:0.08333333333333333 191:0.25 254:0.5 373:0.2 549:1.0 853:1.0 881:0.5 966:0.5 1109:1.0 1275:0.5 1298:1.0 1609:1.0 1738:1.0 2097:1.0 6263:1.0
12 1:0.1111111111111111 6:0.047619047619047616 15:0.14285714285714285 23:0.1111111111111111 42:0.1 44:0.5 71:1.0 82:0.3 160:1.0 177:0.3333333333333333 185:1.0 302:1.0 317:1.0 320:1.0 461:1.0 473:0.3333333333333333 767:1.0 776:1.0 966:0.5 1938:1.0 2020:1.0 2203:1.0 2261:1.0 2539:1.0 4135:1.0 4278:1.0 4481:1.0 5158:0.5 5448:1.0 6166:1.0 6851:1.0 6985:1.0
12 4:2.0 17:0.16666666666666666 23:0.1111111111111111 42:0.1 51:0.2 82:0.1 107:0.5 128:0.07692307692307693 150:0.027777777777777776 164:1.0 181:0.25 191:0.25 192:1.0 320:1.0 350:0.14285714285714285 1434:1.0 1441:1.0 1566:1.0 1609:1.0 4110:1.0 5158:0.5 5191:1.0 5204:1.0 5659:1.0
12 6:0.047619047619047616 34:0.09090909090909091 42:0.1 82:0.1 117:0.045454545454545456 128:0.07692307692307693 318:1.0 344:1.0 350:0.14285714285714285 427:0.3333333333333333 494:1.0 1345:1.0 4125:1.0 4498:1.0 5374:1.0 5385:1.0 6846:1.0
12 5:1.0 23:0.1111111111111111 42:0.1 82:0.1 117:0.045454545454545456 135:0.5 185:1.0 186:1.0 191:0.25 210:1.0 318:1.0 347:1.0 463:0.5 488:0.3333333333333333 561:0.3333333333333333 622:1.0 1013:2.0 1578:1.0 2255:1.0 2298:1.0 2299:1.0 4110:1.0 5030:1.0
12 1:0.1111111111111111 4:1.0 6:0.023809523809523808 42:0.1 53:1.0 56:0.6666666666666666 82:0.2 97:0.6666666666666666 128:0.15384615384615385 135:0.5 147:0.5 150:0.027777777777777776 185:1.0 191:0.5 219:0.25 220:1.0 261:0.047619047619047616 427:0.3333333333333333 506:0.5 549:1.0 648:1.0 1035:1.0 2263:0.5 2431:1.0 5762:0.5
12 6:0.023809523809523808 82:0.1 128:0.07692307692307693 191:0.25 261:0.047619047619047616 427:0.3333333333333333 534:0.3333333333333333 2297:1.0 2618:1.0 2648:1.0 3350:1.0
12 1:0.1111111111111111 2:1.0 6:0.023809523809523808 23:0.1111111111111111 82:0.2 114:0.5 117:0.045454545454545456 150:0.027777777777777776 245:1.0 424:1.0 1298:1.0 5770:1.0 6985:1.0
12 5:2.0 42:0.2 51:0.2 56:0.3333333333333333 71:1.0 82:0.2 97:0.3333333333333333 185:1.0 191:0.25 201:1.0 219:0.25 223:0.5 226:1.0 275:1.0 320:1.0 693:1.0 1013:1.0 1281:1.0 1941:1.0 2539:1.0 2735:1.0 3434:1.0 3705:1.0 5682:1.0 7356:1.0
12 6:0.023809523809523808 34:0.09090909090909091 42:0.1 82:0.1 117:0.045454545454545456 318:1.0 344:1.0 438:0.08333333333333333 1037:1.0 1097:1.0 4161:1.0 5385:1.0
12 1:0.1111111111111111 34:0.09090909090909091 64:1.0 95:1.0 97:0.3333333333333333 135:0.5 1209:1.0 1436:1.0 2020:1.0 4221:1.0
12 1:0.1111111111111111 4:1.0 6:0.023809523809523808 56:0.3333333333333333 64:1.0 95:1.0 97:0.3333333333333333 494:1.0 1436:1.0 2020:1.0 3183:1.0 4221:1.0
12 6:0.023809523809523808 23:0.1111111111111111 42:0.2 64:1.0 82:0.1 94:0.5 97:0.3333333333333333 107:0.5 135:0.5 150:0.027777777777777776 185:1.0 190:1.0 223:0.5 263:1.0 320:1.0 367:0.25 441:1.0 534:0.3333333333333333 561:0.3333333333333333 1013:1.0 1109:1.0 1434:1.0 1614:1.0 1657:1.0 1953:1.0 2020:1.0 2539:1.0 4723:1.0 6373:1.0 6400:1.0
12 64:1.0 82:0.1 96:0.06666666666666667 108:0.5 249:0.3333333333333333 438:0.08333333333333333 488:0.3333333333333333 561:0.3333333333333333 808:1.0 1016:1.0 3828:1.0 6373:1.0 6966:1.0
12 6:0.023809523809523808 15:0.07142857142857142 34:0.09090909090909091 42:0.1 56:0.3333333333333333 97:0.3333333333333333 185:1.0 223:0.5 246:1.0 344:1.0 488:0.3333333333333333 764:1.0 966:0.5 1013:1.0 1373:0.5 1651:0.3333333333333333 2484:1.0 2539:1.0 4526:1.0 6373:1.0
12 6:0.023809523809523808 97:0.3333333333333333 128:0.15384615384615385 150:0.027777777777777776 215:0.2 275:1.0 320:1.0 344:1.0 359:0.5 949:1.0 1013:1.0 1345:1.0 2478:0.2 2761:1.0 3794:1.0 5289:1.0 5973:1.0 6231:1.0 7762:1.0
12 6:0.07142857142857142 15:0.14285714285714285 17:0.16666666666666666 25:0.25 37:0.25 42:0.2 56:0.6666666666666666 135:0.5 147:0.5 150:0.08333333333333333 157:1.0 191:0.25 197:0.5 204:1.0 222:2.0 339:0.5 350:0.14285714285714285 411:1.0 440:1.0 443:0.5 531:0.5 707:1.0 908:1.0 1058:1.0 1361:0.5 2874:1.0 3687:1.0 3794:1.0 4050:1.0 4256:1.0 5137:1.0 5991:1.0 6535:1.0
12 5:3.0 6:0.023809523809523808 17:0.16666666666666666 25:0.25 42:0.2 56:0.3333333333333333 64:1.0 97:0.3333333333333333 128:0.07692307692307693 135:0.5 143:0.3333333333333333 146:1.0 177:0.3333333333333333 222:1.0 240:1.0 272:0.3333333333333333 322:1.0 323:1.0 359:0.5 399:0.5 462:1.0 473:0.3333333333333333 534:1.0 710:1.0 852:1.0 1075:0.5 1347:1.0 1885:0.5 2279:1.0 2558:1.0 2819:1.0 3133:1.0 4498:1.0 4717:1.0 5240:0.5 5294:1.0 6797:1.0
12 5:2.0 6:0.023809523809523808 42:0.2 63:1.0 73:1.0 95:1.0 96:0.06666666666666667 114:1.0 139:0.5 146:1.0 147:0.5 149:1.0 165:0.1 171:1.0 190:2.0 191:0.25 323:1.0 326:1.0 368:0.3333333333333333 427:0.6666666666666666 441:2.0 513:1.0 534:0.3333333333333333 549:1.0 587:0.5 609:1.0 759:0.5 773:1.0 778:0.2 779:1.0 938:1.0 1275:0.5 1423:1.0 1569:0.3333333333333333 1658:1.0 1712:1.0 1740:1.0 1980:1.0 2716:1.0 2789:1.0 2927:1.0 3208:1.0 6311:1.0
12 6:0.023809523809523808 15:0.07142857142857142 23:0.2222222222222222 42:0.2 56:0.6666666666666666 73:1.0 96:0.06666666666666667 97:0.6666666666666666 190:1.0 215:0.2 251:0.16666666666666666 320:1.0 322:1.0 323:1.0 369:1.0 373:0.2 397:0.5 461:1.0 473:0.3333333333333333 690:1.0 691:1.0 2279:2.0 2457:1.0 2500:1.0 3280:1.0 6118:1.0 6387:2.0 7524:1.0
|
6158712fb68a491f23cb3de9eb8ab355dde42e85 | 139d4a83f28a14dc04c48d99a492bec7abcc3229 | /lab1_v8/2a.sce | d1dfc79716e7c737efc1139341364c502efd0994 | [
"MIT"
] | permissive | s-kostyuk/labs_alg | 0f78d0a5df7b94f9190bc3b45a077fb3e68e74fb | 320902e94d9bfde9d7a13a427b315605929dec17 | refs/heads/master | 2021-01-10T03:54:40.483782 | 2015-12-03T22:52:39 | 2015-12-03T22:56:46 | 44,764,651 | 0 | 2 | null | 2015-12-01T15:07:01 | 2015-10-22T18:20:28 | Scilab | UTF-8 | Scilab | false | false | 508 | sce | 2a.sce | mode( -1 )
unit = input("Выберите единицу длины L: дм, км, м, мм или см: ")
L = input("Введите значение длины L в выбранных единицах: ")
select unit
case "дм" then
L = L / 10;
case "км" then
L = L * 1000;
case "м" then
L = L;
case "мм" then
L = L / 1000;
case "см" then
L = L / 100;
else
disp( "Неверная единица" )
return
end
mprintf( "\nДлина L в метрах: %d", L )
|
f4741269ef21d194735ce8ce28a42473f6b68dab | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH3/EX3.7c/eg3_7c.sce | ea129f90de71e89b2188792efd733cf087f0620a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 74 | sce | eg3_7c.sce | m = 5;
p =1/2;
disp( (m*p)/(1+((m-1)*p)), "The required probability is") |
588518c144a11c715571cc0a9135b96fafaa47d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/DEPENDENCIES/4_2_data.sci | d2bdc937a78145b7f2b1bb128ed6d444d034073d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 174 | sci | 4_2_data.sci | //Ratio of specific heats
y=1.4;
//rc = V3/V2
rc=1.95;
//Specific heat at constant volume(in kJ/kgK)
Cv=0.717;
//r=V1/V2
r=20;
//Increase in Cv ie. dCv/Cv
dCv=0.01; |
8e78923eb7ade300753ab185a7cb23dc6da6b615 | a5de878687ee2e72db865481785dafbeda373e2a | /trunck/OpenPR-0.0.2/macros/transpose.sci | dc37b441c5bebd75c530bb2717067cf9981c87f8 | [
"BSD-3-Clause"
] | permissive | Augertron/OpenPR | 8f43102fd5811d26301ef75e0a1f2b6ba9cbdb73 | e2b1ce89f020c1b25df8ac5d93f6a0014ed4f714 | refs/heads/master | 2020-05-15T09:31:08.385577 | 2011-03-21T02:51:40 | 2011-03-21T02:51:40 | 182,178,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,780 | sci | transpose.sci | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2009 OpenPR
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of OpenPR nor the names of its
// contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL HOLDER AND CONTRIBUTORS BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
///////////////////////////////////////////////////////////////////////////////
function mt = transpose(m)
mt = m';
endfunction
|
0aeac52291e0879e90b1a932df5060a128cec9a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2276/CH8/EX8.6/chapter8_ex6.sce | bec3aef83d0b40ac7a5d618ba86719e009442b0e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 590 | sce | chapter8_ex6.sce | clc
clear
//input
//three impedances are connected in delta each containing a resistor and a capacitor
r=15;//resistance in ohms
c=100*(10^-6);//capacitance in farad
v=415;//3phase supply voltage in volts
f=50;//frequency in hertz
//calculations
xc=1/(2*%pi*f*c);//capacitive reactance in ohms
zp=((r^2)+(xc^2))^0.5;//impedance per phase in ohms
ip=v/zp;//phase current in amperes
il=ip*(3^0.5);//line current in amperes
phi=(180/%pi)*acos(r/zp);//leading phase angle in degrees
//output
mprintf('the line current is %3.1f A and the phase angle is %3.1f lead',il,phi)
|
dec19799a7df56bdc0d87e8dfcb8a3ef0dded068 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3369/CH3/EX3.19/Ex3_19.sce | 06ffba79d0cfca7c5faf01b8cf42f820b163d0a3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 310 | sce | Ex3_19.sce | //Chapter 3, Exmaple 19, page 111
//Determine mean free path and ionization
clc
clear
//(a)Mean free path
//Based on equation 3.14 and 3.15
lambda = 1/(9003*0.5)
//(b)Ionization potential
Vi = 256584/9003
printf("\n lambda = %e m ",lambda)
printf("\n Vi = %f V ",Vi)
//answers may vary due to round off error
|
ab80064030bb7202bc7ead7eda98b4e6a0b95ed7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /833/CH11/EX11.1/Ex11_1.txt | 533bfaac90006970692e6cdabfceae6338960225 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | txt | Ex11_1.txt | //Caption: Find (a)Number of poles and (b)% slip
//Exa:11.1
clc;
clear;
close;
f=50//Frequency(in hertz)
n=960//Speed of induction motor on full load(in r.p.m)
n_s=1000//Synchronous speed(in r.p.m)
p=(f*120)/(n_s)
disp(p,'(a)Number of poles is=')
s=n_s-n
S=(s/n_s)*100
disp(S,'(b)%Slip is(in%)=') |
7e800ed6012afec5ee9bdd232d72982519b17192 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH7/EX7.3/Ex7_3.sce | 7ec62937844fa6f799d099e35d4ddb9ef2c42a94 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 286 | sce | Ex7_3.sce | //Ex_7_3
clc;
clear;
close;
format('v',6);
//given data :
alfa=0.90;//current gain
ICO=15;//micro A(reverse saturation currenrt)
IB=0.5;///mA(Base Current)
Beta=alfa/(1-alfa);//unitless
IC=Beta*IB+(1+Beta)*ICO/1000;//mA(Collector Current)
disp(IC,"Collector Current(mA)");
|
fdec7be984048b7a2240c04544f339c44991f7e7 | daabc3867b8f4cd1afe9ef0d39701a7d9c4d8acb | /hdf/util/README.TST | beb3062419015f59784f05f46ea11f1a60818c7c | [
"BSD-3-Clause",
"LicenseRef-scancode-hdf5"
] | permissive | schwehr/hdf4 | 142afe72520b32634d84494f51015eb8c7ab0b1f | 97ac2954ca6d6c2bba24ade9301b691b98135709 | refs/heads/master | 2023-03-18T03:48:07.616808 | 2023-03-09T20:49:55 | 2023-03-09T20:49:55 | 581,363,881 | 0 | 0 | NOASSERTION | 2022-12-23T01:17:44 | 2022-12-23T01:17:44 | null | UTF-8 | Scilab | false | false | 13,853 | tst | README.TST | All the input data files needed to test the utilities
are in the subdirectory testfiles/.
Instructions on testing the HDF utility programs:
hdf24to8 -- converts 24-bit raster images to hdf 8-bit images
Copy head.r24.Z from the testfiles/ directory to the util/ directory.
Type: uncompress head.r24.Z
Execute the following in the util/ directory:
cp testfiles/head.r24.Z .
uncompress head.r24.Z
./hdf24to8 head.r24 head8.hdf
View head8.hdf using any visualization tool available (mosaic, collage, etc).
Delete head.r24 and head8.hdf when you are done.
rm head.r24 head8.hdf
hdfed -- hdf file editor
Copy the file storm110.hdf from the testfiles/ directory to the
util/ directory.
Execute the following in the util/ directory:
cp testfiles/storm110.hdf .
./hdfed storm110.hdf
Running interactively, type the following commands:
info -all
prev tag = 300
info -long
dump -short
The latter two commands should result in the following responses:
(6) Image Dimensions : (Tag 300)
Ref: 110, Offset: 3459, Length: 20 (bytes)
0: 0 57 0 57 106 110
12: 1 0 0 0
Type help and experiment. Most of the information can be verified
with hdfls. Be sure to type 'close' then 'quit' when you are finished
and delete storm110.hdf when you are done.
rm storm110.hdf
Copy ntcheck.hdf from the testfiles/ directory to the util/ directory.
Execute the following in the util/ directory:
cp testfiles/ntcheck.hdf .
./hdfed ntcheck.hdf
ntcheck.hdf will be used as an input file to test the dump function.
The command:
dump -help
displays the list of formats supported by hdfed.
Commands:
prev tag=<tag> ref=<ref>
and
next tag=<rag> ref=<ref>
move you back and forth among the objects.
info -all
gives the tag and reference numbers for each object.
Look at the data in various objects and verify the data type.
For example:
next tag = 702 ref = 2
You will be past this data object and will receive the message
"Reached end of file. Not moved." Repeat the command using prev
instead of next.
dump -float
The first 5 lines of output should read as follows:
0: 0.000000e+00 1.000000e+00 2.000000e+00 3.000000e+00
16: 4.000000e+00 5.000000e+00 6.000000e+00 7.000000e+00
32: 8.000000e+00 9.000000e+00 4.000000e+01 4.100000e+01
48: 4.200000e+01 4.300000e+01 4.400000e+01 4.500000e+01
64: 4.600000e+01 4.700000e+01 4.800000e+01 4.900000e+01
next tag = 702 ref = 6
dump -short
The first 5 lines of output should read as follows:
0: 0 1 2 3 4 5
12: 6 7 8 9 6000 6001
24: 6002 6003 6004 6005 6006 6007
36: 6008 6009 12000 12001 12002 12003
48: 12004 12005 12006 12007 12008 12009
The following is a cross reference of ref number and data type if you
want to experiment:
ref number type
2 DFNT_FLOAT32
3 DFNT_INT8
4 DFNT_UINT8
5 DFNT_INT16
6 DFNT_UINT16
7 DFNT_INT32
8 DFNT_UINT32
Type 'close' and 'quit' when you are finished.
Delete ntcheck.hdf.
rm ntcheck.hdf
ristosds -- converts a series raster image hdf files into a
single 3D sds hdf file.
Copy the three HDF files storm110.hdf, storm120.hdf, and
storm130.hdf from the testfiles/ directory.
Execute the following in the util/ directory:
cp testfiles/storm110.hdf testfiles/storm120.hdf testfiles/storm130.hdf .
./ristosds storm*.hdf -o storm.hdf
Compare storm110.hdf with storm.hdf using the following commands:
hdfed storm.hdf
prev tag = 702
info -long
(*) dump -length 20 -byte
close
open storm110.hdf
prev tag = 302
info -long
(**) dump -length 20 -byte
close
quit
* In storm.hdf tag 702's element should be 9747 bytes.
** In storm110.hdf tag 302's element should be 1/3 of
9747, which is 3249. (It is a 57x57 image.)
Compare the first few numbers in storm110's image
with the first few numbers in storm.hdf's SDS.
They should be the same.
Remove storm*.hdf from the util/ directory before continuing.
rm storm*.hdf
hdfpack -- compacts an hdf file
Copy the file test.hdf from the testfiles/ directory.
Execute the following in the util/ directory:
cp testfiles/test.hdf .
./hdfpack test.hdf test.pck
./hdfpack -b test.hdf test.blk
Use hdfls to get a listing of test.hdf and test.pck. The only
difference between the 2 listings should be that test.pck
shouldn't have any special elements and it also shouldn't
have any "Linked Block Indicators."
./hdfls test.hdf
./hdfls test.pck
The file sizes should be as follows:
test.hdf - 11795
test.pck - 6747
test.blk - 7599
Depending on the platform, the file sizes may be one byte off
for test.pck and test.blk.
Remove test.cdf, test.blk, and test.pck.
rm test.hdf test.blk test.pck
hdftopal/paltohdf -- converts between a raw palette and an hdf
Copy the file palette.raw from the testfiles/ directory.
Execute the following in the util/ directory:
cp testfiles/palette.raw .
./paltohdf palette.raw palette.hdf
./hdftopal palette.hdf palette.raw.new
Use hdfls with the '-l' option to examine palette.hdf.
It should have an 'Image Palette-8' and an 'Image Palette,'
both with length 768 bytes. They should also have the same
reference number.
Use the Unix utility 'cmp' or something similar to do a byte-for-byte
comparison of palette.raw and palette.raw.new. They should be
identical.
cmp palette.raw palette.raw.new
Remove palette.*.
rm palette.*
r8tohdf/hdftor8 -- converts between 8-bit raster images and hdf files
Copy the files storm*.raw and palette.raw from the testfiles/ directory.
Execute the following in the util/ directory:
cp testfiles/storm*.raw .
./r8tohdf 57 57 storm.hdf storm*.raw
./r8tohdf 57 57 storm.hdf -p palette.raw -i storm110.raw
./hdftor8 storm.hdf
Use hdfls with the '-l' option to examine storm.hdf. It should
contain five raster image sets, one of which will be compressed
under IMCOMP compression. (If you do not put the '-p' in the
second r8tohdf command above, you should get an error message.)
The non-compressed raster images should be the same length as
the raw raster files. The compressed will be about 25% of that
size.
Use the Unix utility 'cmp' or something similar to do byte-for-byte
comparisons on the raw raster files produced by hdftor8:
cmp img001-057.057 storm110.raw
cmp img002-057.057 storm120.raw
cmp img003-057.057 storm130.raw
cmp img004-057.057 storm140.raw
There should be one more img* file than you had at the start. One of the
img files may not compare exactly with any one of the raw rasters, and the
rest will compare with one of the other raw rasters. There is no guarantee
about the order of the produced raw rasters, but it is likely they will be
produced in the order in which they went into the file, which would be
increasing numerical order, with the compressed image last.
Remove storm* and img* when you are done.
rm storm* img*
hdfcomp -- re-compress 8-bit raster hdf file
Copy the files storm*.hdf from the testfiles/ directory.
Execute:
cp testfiles/storm*.hdf .
./hdfcomp allstorms.hdf storm*.hdf
./hdfcomp allcomp.hdf -c storm*.hdf
Use hdfls with the '-l' option to examine the two HDF files. The first,
allstorms.hdf, should simply hold the raster together in one file,
with no compression. You can use hdfls to check the original files.
The second file, allcomp.hdf, should hold all the rasters in a
compress format. Run-Length Encoding (RLE) compression will result
in modest savings - about 10% to 15% for these files.
Remove allstorms.hdf and allcomp.hdf.
rm storm*.hdf all*.hdf
jpeg2hdf/hdf2jpeg
Copy the file jpeg_img.jpg from the testfiles/ directory.
Execute:
cp testfiles/jpeg_img.jpg .
./jpeg2hdf jpeg_img.jpg jpeg.hdf
./hdf2jpeg jpeg.hdf jpeg2.jpg
Use hdfls with the '-l' option to examine the HDF file. It should
contain one raster image set, which will be compressed with JPEG
compression. The JPEG compressed image will be 2922 bytes in size.
Use the Unix utility 'cmp' or something similar to do byte-for-byte
comparisons on the produced raw raster files by hdf2jpeg. The
initial jpeg_img.jpg file should be an exact match for the new
jpeg2.jpg file.
cmp jpeg_img.jpg jpeg2.jpg
Remove jpeg.hdf, jpeg_img.jpg, and jpeg2.jpg.
rm jpeg.hdf jpeg_img.jpg jpeg2.jpg
fp2hdf -- converts floating point 2D/3D datasets into hdf SDS or RIS.
To test this utility you must first create the ASCII and binary test
files with the fptest program. Then run fp2hdf on the test files that
get created, and analyze the output. Following are the steps to
do this:
1. Run fptest to create 2D/3D ASCII/binary test files:
./fptest
FILE TYPE DIMENSIONS
---- ---- ----------
ctxtr2 TEXT 3x4
ctxtr3 TEXT 5x3x4
cb32r2 FP32 3x4
cb32r3 FP32 5x3x4
cb64r2 FP64 3x4
cb64r3 FP64 5x3x4
Following are the values of the dimension scales and arrays that
get created:
row scale values start at 11 and increment by 1 => 11, 12, 13
column scale values start at 21 and increment by 2 => 21, 23, 25, 27
plane scale values start at 51 and increment by 5 => 51, 56, 61, 66, 71
data element value = row scale value + column scale value [+ plane
scale value, if rank=3]
For an array of [3][4], data values are:
3.200000E+01 3.400000E+01 3.600000E+01 3.800000E+01
3.300000E+01 3.500000E+01 3.700000E+01 3.900000E+01
3.400000E+01 3.600000E+01 3.800000E+01 4.000000E+01
For array of [5][3][4], data values are:
8.300000E+01 8.500000E+01 8.700000E+01 8.900000E+01
8.400000E+01 8.600000E+01 8.800000E+01 9.000000E+01
8.500000E+01 8.700000E+01 8.900000E+01 9.100000E+01
8.800000E+01 9.000000E+01 9.200000E+01 9.400000E+01
8.900000E+01 9.100000E+01 9.300000E+01 9.500000E+01
9.000000E+01 9.200000E+01 9.400000E+01 9.600000E+01
9.300000E+01 9.500000E+01 9.700000E+01 9.900000E+01
9.400000E+01 9.600000E+01 9.800000E+01 1.000000E+02
9.500000E+01 9.700000E+01 9.900000E+01 1.010000E+02
9.800000E+01 1.000000E+02 1.020000E+02 1.040000E+02
9.900000E+01 1.010000E+02 1.030000E+02 1.050000E+02
1.000000E+02 1.020000E+02 1.040000E+02 1.060000E+02
1.030000E+02 1.050000E+02 1.070000E+02 1.090000E+02
1.040000E+02 1.060000E+02 1.080000E+02 1.100000E+02
1.050000E+02 1.070000E+02 1.090000E+02 1.110000E+02
2. Run fp2hdf on the test files that were created:
./fp2hdf ctxtr2 -o ctxtr2.hdf
./fp2hdf ctxtr3 -o ctxtr3.hdf
./fp2hdf cb32r2 -o cb32r2.hdf
./fp2hdf cb32r3 -o cb32r3.hdf
./fp2hdf cb64r2 -o cb64r2.hdf
./fp2hdf cb64r3 -o cb64r3.hdf
./fp2hdf ctxtr2 -o ctxtr2_ris.hdf -raster -e 50 50
./fp2hdf cb64r2 -o cb64r2_ris.hdf -raster -i 50 50 -f
3. Use hdfls and hdfed to verify the correctness of the output
*.hdf files. The rank, dimension size, number type,
dimension scale and data values should agree with those
listed in item 1 above.
You can also use the hdp command. To use hdp from the
util/ directory, type:
For an SDS:
../../mfhdf/dumper/hdp dumpsds <hdf filename>
For a raster image:
../../mfhdf/dumper/hdp dumprig <hdf filename>
Collage can also be used to display the *.hdf files.
Display the spreadsheet and compare the values to those
in Item 1. For the Raster Images, display the image;
the values are interpolated, and will not match the
values as show in Item 1.
ctxtr2.hdf -- 2D SDS, display spreadsheet
ctxtr3.hdf -- 3D SDS, display spreadsheet along z axis.
cb32r2.hdf -- 2D SDS, display spreadsheet
cb32r3.hdf -- 3D SDS, display spreadsheet along z axis
cb64r2.hdf -- 2D SDS, display spreadsheet
cb64r3.hdf -- 3D SDS, display spreadsheet along z axis
ctxtr2_ris.hdf -- RIS, display image
cb64r2_ris.hdf -- 2D SDS, display spreadsheet
RIS, display image
4. Remove ctxtr* and cb*.
rm ctxtr* cb* *.hdf
|
75c85704a4aa174d146dd4fac347cce9bf09a775 | 449d555969bfd7befe906877abab098c6e63a0e8 | /70/CH2/EX2.3.3/2_3_3.sci | 1ae8111a34514faa893376e67b9223c5d5681393 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 170 | sci | 2_3_3.sci | clear;
close;
clc;
A=[3 4 2;0 1 5;0 0 2];
disp(A,'A=');
disp('The columns of the triangular matrix are linearly independent,it has no zeros on the diagonal');
//end |
1e836797e5d7544b0adca9764deb40caa0a4f5e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH43/EX43.13/43_13.sce | 3da123109a254226f9f77dcddc854ceed0046f8c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 855 | sce | 43_13.sce | //Problem 43.13:For the coupled circuit shown in Figure 43.16, determiine the values of currents I1 and I2.
//initializing the variables:
E1 = 250; // in Volts
thetae1 = 0; // in degrees
R1 = %i*50; // in ohm
R2 = 10; // in ohm
R3 = 10; // in ohm
R4 = %i*50; // in ohm
R5 = 50; // in ohm
M = %i*10; // in ohm
//calculation:
//voltage
E1 = E1*cos(thetae1*%pi/180) + %i*E1*sin(thetae1*%pi/180)
//Applying Kirchhoff’s voltage law to the primary circuit gives
//(R1 + R2)*I1 - M*I2 = E1
//Applying Kirchhoff’s voltage law to the secondary circuit gives
//-1*M*I1 + ( R3 + R4 + R5)*I2 = 0
//solving these two
I2 = E1/((R1 + R2)*(R3 + R4 + R5)/(M) + (-1*M))
I1 = I2*(R3 + R4 + R5)/(M)
printf("\n\n Result \n\n")
printf("\n primary current I1 is %.2f +(%.2f)i A",real(I1), imag(I1))
printf("\n secondary current I2 is %.2f +(%.2f)i A",real(I2), imag(I2))
|
f49162a049cb540a9f2e4a0e6db72da6ed999637 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1244/CH9/EX9.8/Example98.sce | e762495f1bec497df329c4d255461a124201e927 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 333 | sce | Example98.sce |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clc;
disp("Principles of Heat transfer, Seventh Edition, Frank Kreith, Raj M Manglik and Mark S Bohn, Chapter 9, Example 8")
// Theoretical Proof
disp("The given example is theoretical and does not involve any numerical computation")
|
d1dbf7818c6f98af7d942e5f41c2adc75f979b54 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1430/CH10/EX10.8/exa10_8.sce | 4ae2c7320ba78844d0a16c7d9a87e360b2598e76 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 330 | sce | exa10_8.sce | //Example 10.8
// Pole-Zero Pattern of a Fifth Order Network
s=poly(0,'s')
num=s^4+16*s^3+164*s^2;
K=-5;
den=(s+32)*(s^2+36)*(s^2+40*s+400)
H=(num*K)/den;// transfer functions
z=roots(num); // zeros of network
p=roots(den);// poles of network
disp(z,"Zeros of network functions=")
disp(p,"Poles of network functions=")
|
599409d9699c659550cc89ae36985f883ccdc8b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH9/EX9.8/Ex9_8.sce | b3fdb0201092c100d775cd75851007873717666d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 343 | sce | Ex9_8.sce | clear
//Given
m=1.67*10**-27 //Kg
v=4*10**5
B=0.3 //T
q=1.6*10**-19 //C
//Calculation
//
r=m*v*sin(60*3.14/180.0)/(q*B)
P=2*%pi*r*1/(tan(60*3.14/180.0))
//Result
printf("\n Pitch of the helix is %0.2f cm",P*10**2)
printf("\n Radius of helical path is %0.3f cm",r*10**2)
|
69182aaf6b46265883418eade3bc967724e4b6ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH1/EX1.5/Ch01Ex5.sce | bcb0bd176a206ffe6364cc2d34fdbcdbd0dff722 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 653 | sce | Ch01Ex5.sce | // Scilab Code Ex 1.5 : Page-18 (2006)
clc; clear;5
M_Na = 23; // Atomic weight of Na, gram per mole
M_Cl = 35.5; // Atomic weight of Cl, gram per mole
d = 2.18e+06; // Density of Nacl salt, g per metre cube
n = 4; // No. of atoms per unit cell for an fcc lattice of NaCl crystal
N = 6.023D+23; // Avogadro's No.
// Volume of the unit cell is given by
// a^3 = M*n/(N*d)
// Solving for a
a = (n*(M_Na + M_Cl)/(d*N))^(1/3); // Lattice constant of unit cell of NaCl
printf("\nLattice constant for the NaCl crystal = %4.2f angstorm", a/1e-010);
// Result
// Lattice constant for the NaCl crystal = 5.63 angsotrm
|
edfc58c38495fe3654f9faa3e1aa9db4e8413842 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2951/CH6/EX6.4.A/additional_ex_4.sce | 33637ae06b6a7965c7225bf1dc49678ff345662b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 178 | sce | additional_ex_4.sce | clc;
clear;
S=4;//number of stages
SNR_input=55;//input Signal to Noise ratio in dB
SNR_output=SNR_input-10*log10(S);
disp("Output SNR( in dB) is");
disp(SNR_output);
|
5dd2c55a36ee5295fe7680914c1bd8c0120a325d | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.12_2.tst | 210235a3478afe738bb11be5af54c88ff3852436 | [] | 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 | 24,022 | tst | bow.12_2.tst | 12 30:0.02857142857142857 39:0.5 76:1.0 82:0.1111111111111111 90:0.025 161:0.5 173:0.3333333333333333 263:0.25 286:0.14285714285714285 354:0.3333333333333333 845:0.5 1472:1.0 2909:1.0 5131:1.0 5153:1.0
12 30:0.02857142857142857 59:0.3333333333333333 90:0.025 100:0.14285714285714285 168:0.07142857142857142 230:1.0 234:0.06666666666666667 259:0.5 265:0.1 354:0.3333333333333333 362:1.0 385:1.0 767:1.0 785:1.0 896:0.5 984:1.0 1159:1.0 2052:1.0 3035:1.0 4832:1.0 4896:1.0 5078:1.0 5603:1.0 5844:1.0 7200:1.0 7368:1.0 7720:1.0 7724:1.0
12 100:0.14285714285714285 246:0.25 4046:1.0 4832:2.0 5038:1.0 5547:1.0 6090:1.0
12 10:0.125 11:0.14285714285714285 20:0.5 30:0.02857142857142857 64:0.3333333333333333 100:0.14285714285714285 153:1.0 156:0.5 176:1.0 369:0.14285714285714285 640:1.0 673:1.0 801:1.0 1028:1.0 1147:1.0 1204:1.0 1208:0.5 1404:1.0 2055:0.5 3343:1.0 4385:1.0 4832:1.0 5876:1.0 6106:1.0 6633:1.0 7547:1.0
12 30:0.02857142857142857 59:0.6666666666666666 96:1.0 162:1.0 168:0.07142857142857142 220:1.0 804:1.0 1208:0.5 2733:1.0 4832:1.0 5185:1.0 6333:1.0
12 28:0.07692307692307693 30:0.05714285714285714 39:0.5 46:2.0 68:0.125 90:0.025 100:0.14285714285714285 139:0.3333333333333333 168:0.07142857142857142 230:1.0 264:0.3333333333333333 344:0.5 385:1.0 388:0.25 390:1.0 414:1.0 545:0.3333333333333333 1165:1.0 1255:1.0 1546:0.5 1634:1.0 3773:1.0 4832:1.0 5185:1.0 5605:1.0 7218:1.0 7243:1.0
12 11:0.14285714285714285 44:1.0 46:1.0 53:1.0 59:0.3333333333333333 90:0.025 96:1.0 100:0.14285714285714285 332:0.2 424:0.5 1978:1.0 2037:1.0 2570:1.0 5351:1.0 5565:1.0 6397:1.0
12 39:0.5 46:2.0 63:0.2 68:0.25 156:0.5 286:0.14285714285714285 354:0.3333333333333333 380:0.3333333333333333 479:1.0 804:1.0 1000:1.0 1179:1.0 1681:1.0 1824:2.0 1869:1.0 1924:1.0 2930:0.5 3965:1.0 3966:1.0 4900:1.0 5969:1.0 6161:1.0
12 10:0.125 11:0.14285714285714285 39:0.5 89:0.07142857142857142 100:0.14285714285714285 126:0.25 138:0.5 242:1.0 286:0.14285714285714285 332:0.2 359:0.25 419:0.5 1210:1.0 1543:1.0 1880:1.0 2038:1.0 2504:0.3333333333333333 5153:1.0
12 30:0.08571428571428572 35:0.25 36:0.3333333333333333 37:0.5 53:1.0 100:0.14285714285714285 125:1.0 168:0.07142857142857142 173:0.3333333333333333 210:0.16666666666666666 212:1.0 306:0.5 372:1.0 1159:1.0 3276:1.0 3965:1.0 3966:1.0 4879:0.5 5182:1.0
12 22:1.0 39:0.5 230:1.0 286:0.14285714285714285 1165:1.0 1184:2.0 1516:1.0 2199:0.5 4832:1.0
12 10:0.25 30:0.05714285714285714 35:0.25 40:1.0 59:0.3333333333333333 63:0.2 170:0.1111111111111111 332:0.2 636:1.0 804:1.0 2390:1.0 2514:1.0 4313:1.0 4832:1.0 4918:1.0 5233:1.0 5298:1.0 7545:1.0
12 11:0.07142857142857142 12:1.0 36:0.3333333333333333 53:1.0 59:0.6666666666666666 100:0.14285714285714285 156:0.5 230:1.0 259:0.5 297:0.5 344:0.5 694:1.0 787:1.0 804:1.0 872:1.0 1544:1.0 3276:1.0 3482:1.0
12 7:1.0 12:1.0 30:0.05714285714285714 46:1.0 64:0.3333333333333333 82:0.1111111111111111 90:0.025 127:1.0 156:0.5 170:0.1111111111111111 264:0.3333333333333333 300:1.0 452:1.0 517:0.25 541:1.0 719:0.5 870:1.0 937:0.5 955:1.0 1242:1.0 2191:1.0 3722:1.0 4269:1.0 5011:1.0 5605:1.0 5740:1.0 7076:1.0
12 11:0.07142857142857142 14:0.3333333333333333 28:0.15384615384615385 30:0.05714285714285714 39:0.5 46:1.0 48:0.5 68:0.25 82:0.1111111111111111 90:0.025 126:0.25 142:0.5 168:0.07142857142857142 170:0.1111111111111111 300:1.0 326:0.1111111111111111 424:0.5 587:1.0 636:3.0 674:0.5 691:1.0 817:1.0 948:1.0 1076:0.5 1248:1.0 1518:1.0 2289:1.0 5778:1.0 6361:1.0
12 6:0.5 11:0.14285714285714285 46:1.0 100:0.14285714285714285 126:0.25 168:0.07142857142857142 210:0.16666666666666666 265:0.1 276:1.0 394:1.0 540:0.06666666666666667 611:1.0 778:1.0 947:0.5 1159:1.0 1569:0.3333333333333333 1982:1.0 6388:1.0
12 14:0.3333333333333333 30:0.05714285714285714 39:0.5 46:3.0 59:0.3333333333333333 90:0.025 100:0.14285714285714285 112:1.0 144:1.0 168:0.07142857142857142 236:1.0 531:0.5 1159:1.0 1365:1.0 1521:1.0 1606:1.0 1754:1.0 2157:1.0 2504:0.3333333333333333 2648:1.0 2788:1.0 4842:0.5 5484:1.0 5605:1.0 5773:0.3333333333333333 6301:1.0
12 10:0.25 11:0.07142857142857142 19:1.0 39:0.5 43:0.14285714285714285 46:1.0 90:0.025 153:1.0 230:1.0 259:0.5 286:0.14285714285714285 306:0.5 385:1.0 419:0.25 443:1.0 1073:0.5 1165:1.0 1565:1.0 1767:1.0 4203:1.0 5543:1.0 5974:1.0 6226:1.0 6386:1.0
12 29:0.5 30:0.02857142857142857 43:0.14285714285714285 531:0.5 559:1.0 611:1.0 2009:1.0 2142:0.5 2157:1.0 3001:1.0 5516:1.0 5648:1.0 5967:1.0
12 11:0.07142857142857142 29:0.5 30:0.02857142857142857 46:1.0 59:0.3333333333333333 89:0.07142857142857142 139:0.3333333333333333 161:0.5 230:1.0 768:0.5 896:0.5 1165:1.0 4862:1.0 4900:1.0 4969:0.5 5352:1.0 5404:1.0 5863:1.0 7181:1.0
12 59:0.3333333333333333 63:0.2 390:1.0 801:1.0 2384:0.5 4832:1.0 4894:1.0 5128:0.5 5765:1.0 6795:1.0 7392:1.0
12 30:0.02857142857142857 37:0.5 39:0.5 43:0.14285714285714285 63:0.2 91:0.5 100:0.14285714285714285 107:1.0 168:0.07142857142857142 170:0.1111111111111111 313:0.4 419:0.25 479:2.0 1864:1.0 1982:1.0 2095:1.0 2165:1.0 4894:1.0 4900:1.0 5194:1.0 6170:1.0 7534:1.0
12 11:0.07142857142857142 29:0.5 30:0.05714285714285714 39:0.5 43:0.2857142857142857 46:2.0 68:0.125 73:1.0 89:0.07142857142857142 100:0.14285714285714285 264:0.3333333333333333 414:1.0 419:0.25 479:1.0 801:1.0 1162:1.0 2215:1.0 2289:1.0 2458:1.0 2912:1.0 4894:1.0 4950:1.0 4973:1.0 5128:0.5 5208:1.0 5380:1.0 6085:1.0 6352:1.0 6772:1.0
12 10:0.125 18:0.5 28:0.07692307692307693 53:2.0 59:0.3333333333333333 68:0.125 96:2.0 100:0.42857142857142855 156:0.5 265:0.1 298:0.5 369:0.14285714285714285 586:0.14285714285714285 590:1.0 1506:0.3333333333333333 1924:1.0 2543:1.0 2701:1.0 2864:1.0 3862:1.0 4149:1.0 4879:0.5 4894:1.0 5128:0.5 6165:1.0 7680:1.0
12 11:0.14285714285714285 30:0.05714285714285714 39:0.5 40:1.0 43:0.2857142857142857 46:1.0 59:0.3333333333333333 82:0.1111111111111111 89:0.07142857142857142 107:1.0 259:0.5 369:0.14285714285714285 385:1.0 399:1.0 479:1.0 627:1.0 676:1.0 801:1.0 803:1.0 1506:0.3333333333333333 1537:0.5 1567:1.0 1900:1.0 3996:1.0 5012:0.5 7418:1.0
12 10:0.125 11:0.07142857142857142 30:0.05714285714285714 39:1.0 46:2.0 63:0.2 230:1.0 297:0.5 328:1.0 352:0.047619047619047616 390:1.0 394:1.0 445:1.0 451:1.0 1165:1.0 1306:0.2 2042:1.0 2733:1.0 2885:1.0 3894:1.0 6254:1.0
12 29:0.5 30:0.05714285714285714 39:0.5 59:0.3333333333333333 69:0.5 90:0.025 156:0.5 158:1.0 161:0.5 280:1.0 286:0.14285714285714285 287:1.0 388:0.25 2131:1.0 3276:1.0 3862:1.0 4131:1.0 4900:1.0 4972:1.0 6150:1.0
12 11:0.07142857142857142 30:0.02857142857142857 46:1.0 127:1.0 170:0.1111111111111111 206:0.16666666666666666 332:0.2 439:0.3333333333333333 676:1.0 806:1.0 1115:1.0 1137:0.3333333333333333 1741:1.0 1756:1.0 5654:1.0
12 11:0.07142857142857142 19:1.0 46:1.0 82:0.1111111111111111 161:0.5 540:0.06666666666666667 4981:2.0 5773:0.3333333333333333 7534:1.0
12 30:0.02857142857142857 46:1.0 59:0.6666666666666666 138:0.5 329:0.25 369:0.2857142857142857 415:1.0 1506:0.3333333333333333 1812:1.0 2042:1.0 2065:1.0 5366:1.0 5994:1.0 6189:1.0 6794:1.0
12 11:0.07142857142857142 14:0.3333333333333333 43:0.14285714285714285 46:1.0 48:0.5 53:1.0 68:0.125 237:1.0 419:0.25 756:0.125 1187:1.0 1385:1.0 3966:1.0 4621:1.0 4885:1.0 6352:1.0
12 10:0.125 11:0.14285714285714285 28:0.07692307692307693 30:0.02857142857142857 39:1.0 46:1.0 64:0.3333333333333333 68:0.125 69:0.5 73:1.0 82:0.1111111111111111 100:0.14285714285714285 187:1.0 230:1.0 259:0.5 298:0.5 344:0.5 363:1.0 369:0.14285714285714285 767:1.0 772:0.5 869:1.0 1165:1.0 1199:1.0 1281:1.0 1649:1.0 2626:1.0 2683:1.0 2840:1.0 3227:1.0 3386:1.0 5605:1.0 6512:1.0 6755:1.0 6829:1.0 6905:1.0 7326:1.0
12 30:0.02857142857142857 59:0.3333333333333333 68:0.125 286:0.14285714285714285 414:1.0 415:1.0 876:0.3333333333333333 1347:0.5 1506:0.3333333333333333 1767:1.0 2287:0.5 2790:1.0 2806:1.0 3407:1.0 4248:1.0 4557:1.0 5071:1.0 6161:1.0
12 30:0.02857142857142857 43:0.14285714285714285 626:0.3333333333333333 2733:1.0 2768:0.25 4710:1.0 4955:1.0 6164:1.0 6519:1.0
12 10:0.25 28:0.07692307692307693 43:0.14285714285714285 46:4.0 90:0.025 168:0.07142857142857142 204:0.5 259:0.5 264:0.3333333333333333 368:0.5 369:0.2857142857142857 419:0.25 521:0.5 568:0.3333333333333333 584:1.0 949:1.0 1396:1.0 1974:1.0 4684:1.0 4942:1.0 4950:1.0 5708:1.0 6281:1.0 7680:1.0
12 11:0.14285714285714285 30:0.02857142857142857 46:1.0 53:1.0 59:0.3333333333333333 156:0.5 220:1.0 256:1.0 259:0.5 388:0.25 674:0.5 1270:1.0 5022:1.0 6333:1.0 7392:1.0
12 11:0.21428571428571427 43:0.14285714285714285 59:0.3333333333333333 82:0.1111111111111111 100:0.14285714285714285 107:3.0 264:0.3333333333333333 326:0.1111111111111111 344:1.0 380:0.3333333333333333 654:0.5 719:0.5 778:1.0 1261:1.0 1430:1.0 2215:1.0 3462:1.0 4842:0.5 5400:1.0 5682:1.0 5915:1.0 6913:1.0
12 10:0.125 28:0.07692307692307693 30:0.05714285714285714 53:1.0 68:0.125 83:0.16666666666666666 118:1.0 187:1.0 265:0.1 351:1.0 363:1.0 510:1.0 876:0.3333333333333333 900:1.0 1045:1.0 1537:0.5 2023:1.0 2088:0.5 2692:1.0 2923:1.0 3325:0.2 4248:1.0 4656:1.0 5876:1.0 6088:1.0
12 10:0.125 30:0.02857142857142857 39:0.5 46:1.0 48:0.5 68:0.125 90:0.025 100:0.14285714285714285 118:1.0 142:1.0 168:0.21428571428571427 187:1.0 264:0.3333333333333333 352:0.047619047619047616 402:0.5 479:1.0 611:1.0 671:1.0 756:0.125 787:1.0 1000:1.0 1537:0.5 2088:0.5 2176:1.0 2203:1.0 4149:1.0 4879:0.5 5532:1.0 5876:1.0
12 68:0.25 168:0.07142857142857142 210:0.16666666666666666 268:1.0 332:0.2 352:0.047619047619047616 378:1.0 402:0.5 419:0.25 505:0.3333333333333333 724:0.2 806:1.0 2711:2.0 3325:0.2 4018:1.0 4249:1.0 6161:1.0
12 11:0.07142857142857142 28:0.07692307692307693 41:1.0 53:1.0 63:0.2 64:0.3333333333333333 233:1.0 326:0.1111111111111111 473:1.0 494:1.0 1921:1.0 2291:1.0 2722:1.0 3243:1.0 3325:0.2 3407:1.0 3706:1.0 5325:1.0
12 30:0.02857142857142857 53:1.0 156:0.5 473:1.0 494:1.0 1368:1.0 2722:1.0 3325:0.2 4824:1.0
12 10:0.125 11:0.14285714285714285 46:1.0 83:0.16666666666666666 352:0.047619047619047616 368:0.5 756:0.125 1108:1.0 1216:1.0 1516:1.0 4848:1.0 4862:1.0
12 621:1.0 4832:1.0
12 28:0.07692307692307693 30:0.02857142857142857 46:2.0 204:0.5 206:0.16666666666666666 210:0.16666666666666666 344:0.5 352:0.047619047619047616 385:1.0 762:1.0 767:1.0 804:1.0 1073:0.5 1199:1.0 1354:1.0 2711:1.0 3227:1.0 5318:0.3333333333333333
12 10:0.125 30:0.02857142857142857 46:3.0 59:0.6666666666666666 70:1.0 82:0.1111111111111111 83:0.16666666666666666 88:0.3333333333333333 313:0.2 352:0.047619047619047616 402:0.5 419:0.25 528:1.0 653:1.0 822:0.3333333333333333 1181:1.0 2409:1.0 2733:1.0 3259:1.0 3330:1.0 4829:1.0 4913:1.0 4982:1.0 6004:1.0 6033:1.0
12 10:0.125 11:0.07142857142857142 20:0.5 28:0.07692307692307693 30:0.05714285714285714 35:0.25 39:0.5 40:1.0 43:0.14285714285714285 46:1.0 90:0.025 96:1.0 109:1.0 212:1.0 236:1.0 313:0.2 352:0.047619047619047616 369:0.14285714285714285 419:0.25 551:1.0 1115:1.0 1191:1.0 2504:0.3333333333333333 2733:1.0 3259:1.0 5108:1.0 5754:1.0 6120:1.0 6184:1.0 7055:1.0 7599:1.0
12 11:0.07142857142857142 28:0.07692307692307693 30:0.02857142857142857 61:1.0 68:0.125 100:0.14285714285714285 126:0.25 158:1.0 281:0.3333333333333333 361:0.5 401:0.3333333333333333 1261:1.0 4290:1.0 4421:1.0 4756:0.5 4842:0.5 5003:1.0 5673:1.0
12 28:0.15384615384615385 30:0.02857142857142857 64:0.3333333333333333 68:0.25 82:0.1111111111111111 89:0.07142857142857142 173:0.3333333333333333 231:0.5 280:1.0 281:0.3333333333333333 327:1.0 344:0.5 787:1.0 801:1.0 1608:0.2 1754:1.0 4149:1.0 4832:2.0 5535:1.0 6161:1.0 7144:1.0
12 6:0.5 11:0.07142857142857142 30:0.05714285714285714 46:1.0 64:0.3333333333333333 68:0.125 82:0.1111111111111111 90:0.025 131:0.2 142:0.5 232:1.0 233:1.0 234:0.06666666666666667 263:0.25 354:0.3333333333333333 468:1.0 521:0.5 611:1.0 625:1.0 1000:1.0 1215:0.5 1216:1.0 1692:1.0 2303:1.0 2733:1.0 2768:0.5 4099:1.0 4879:0.5 4982:1.0
12 19:1.0 30:0.02857142857142857 39:1.5 68:0.125 90:0.05 95:1.0 126:0.25 259:0.5 297:0.5 302:1.0 367:0.5 586:0.14285714285714285 786:1.0 1582:0.5 2055:0.5 3551:1.0 4610:1.0 4879:0.5 5754:1.0 7164:1.0 7330:1.0 7711:1.0
12 10:0.375 30:0.02857142857142857 43:0.14285714285714285 53:1.0 61:1.0 168:0.07142857142857142 210:0.16666666666666666 300:1.0 359:0.25 518:1.0 965:0.5 1045:1.0 1506:0.3333333333333333 1582:0.5 2390:1.0 2766:1.0 3325:0.2 5014:1.0 5229:1.0 5365:0.5 5366:1.0 5876:1.0 6555:1.0 6829:1.0 7224:2.0
12 11:0.07142857142857142 28:0.07692307692307693 30:0.02857142857142857 37:0.5 43:0.14285714285714285 46:1.0 83:0.16666666666666666 90:0.025 91:0.5 136:1.0 168:0.07142857142857142 206:0.16666666666666666 281:0.3333333333333333 357:0.25 417:1.0 462:1.0 545:0.3333333333333333 611:1.0 616:1.0 786:1.0 1120:1.0 1516:1.0 4373:1.0 4942:1.0 5199:1.0
12 10:0.125 11:0.14285714285714285 28:0.07692307692307693 39:0.5 56:0.1 68:0.125 90:0.025 144:1.0 168:0.07142857142857142 259:0.5 297:1.0 887:1.0 967:1.0 1509:0.5 1546:0.5 2023:1.0 2523:1.0 2569:1.0 3259:1.0 4334:1.0 4842:0.5 5889:1.0
12 11:0.07142857142857142 14:0.3333333333333333 28:0.07692307692307693 30:0.05714285714285714 46:1.0 126:0.25 127:1.0 168:0.07142857142857142 250:0.1111111111111111 326:0.1111111111111111 363:1.0 385:1.0 414:1.0 522:0.25 611:1.0 767:1.0 1137:0.3333333333333333 1348:1.0 2308:1.0 4029:1.0 4708:1.0 4955:1.0 6106:1.0 6829:1.0 7108:1.0
12 10:0.125 11:0.07142857142857142 39:0.5 118:1.0 168:0.07142857142857142 611:1.0 673:1.0 801:1.0 1974:1.0 4832:1.0
12 28:0.07692307692307693 30:0.02857142857142857 39:0.5 68:0.125 100:0.14285714285714285 156:0.5 161:0.5 286:0.14285714285714285 352:0.047619047619047616 357:0.25 719:0.5 767:1.0 1778:1.0 4842:0.5 5153:1.0 5992:1.0 6156:1.0 6213:1.0 6885:1.0
12 10:0.125 30:0.02857142857142857 39:0.5 59:0.3333333333333333 68:0.125 82:0.1111111111111111 83:0.16666666666666666 89:0.07142857142857142 178:1.0 402:1.0 656:1.0 719:0.5 796:1.0 2079:1.0 4742:1.0 4832:1.0 5605:1.0
12 11:0.07142857142857142 43:0.2857142857142857 127:1.0 168:0.07142857142857142 170:0.1111111111111111 357:0.25 531:0.5 541:1.0 787:2.0 934:1.0 1921:1.0 2136:1.0 4241:1.0 6165:1.0
12 30:0.02857142857142857 59:0.3333333333333333 168:0.07142857142857142 352:0.047619047619047616 369:0.14285714285714285 522:0.25 1137:0.3333333333333333 1151:1.0 2768:0.25 4832:1.0 6059:1.0 7314:1.0
12 11:0.07142857142857142 14:0.3333333333333333 30:0.05714285714285714 46:4.0 56:0.1 63:0.2 73:1.0 82:0.1111111111111111 83:0.16666666666666666 126:0.25 140:1.0 168:0.07142857142857142 170:0.1111111111111111 206:0.16666666666666666 256:1.0 332:0.2 380:0.3333333333333333 517:0.25 708:1.0 753:1.0 1216:1.0 1473:1.0 1569:0.3333333333333333 1636:1.0 2065:1.0 3273:1.0 3624:2.0 5503:1.0 5934:1.0 6170:1.0 7648:1.0
12 11:0.14285714285714285 17:0.3333333333333333 46:1.0 63:0.2 68:0.125 100:0.42857142857142855 138:0.5 142:0.5 168:0.07142857142857142 170:0.2222222222222222 173:0.3333333333333333 206:0.16666666666666666 264:0.3333333333333333 370:0.5 380:0.3333333333333333 517:0.25 753:1.0 801:1.0 947:0.5 984:1.0 1216:1.0 1658:1.0 2342:1.0 4832:1.0 4850:1.0 4862:1.0 5335:1.0 6385:1.0 7648:1.0
12 30:0.02857142857142857 46:1.0 59:0.3333333333333333 100:0.2857142857142857 112:1.0 168:0.07142857142857142 262:1.0 1281:1.0 2825:1.0 4464:1.0 4832:1.0 4854:1.0
12 6:0.5 10:0.25 19:1.0 30:0.02857142857142857 46:3.0 56:0.1 68:0.25 69:0.5 79:1.0 83:0.16666666666666666 126:0.25 259:0.5 298:0.5 313:0.6 354:0.3333333333333333 380:0.3333333333333333 394:1.0 419:0.5 459:1.0 474:1.0 708:1.0 795:1.0 804:1.0 3325:0.2 6602:1.0
12 10:0.125 30:0.05714285714285714 39:0.5 53:1.0 161:0.5 313:0.2 352:0.047619047619047616 416:0.5 772:0.5 1250:1.0 1537:0.5 2042:1.0 2733:1.0 4832:1.0 4900:1.0 5245:1.0 5731:1.0
12 28:0.07692307692307693 46:3.0 53:1.0 56:0.1 68:0.375 69:0.5 89:0.07142857142857142 170:0.1111111111111111 206:0.16666666666666666 264:0.3333333333333333 327:1.0 344:0.5 354:0.3333333333333333 787:1.0 801:1.0 1365:1.0 3025:1.0 4149:1.0 4756:0.5 5365:0.5 5366:1.0
12 30:0.02857142857142857 326:0.1111111111111111 474:1.0 626:0.3333333333333333 2308:1.0 2402:1.0 2933:1.0 4955:1.0 4969:0.5
12 10:0.125 11:0.07142857142857142 28:0.07692307692307693 30:0.02857142857142857 43:0.14285714285714285 46:2.0 59:0.3333333333333333 68:0.125 96:1.0 112:1.0 353:0.2 419:0.25 517:0.25 832:1.0 942:1.0 1361:1.0 1741:1.0 2308:1.0 2647:1.0 3657:1.0 4536:1.0 5637:1.0 5912:1.0 6142:1.0 6419:1.0
12 10:0.125 30:0.02857142857142857 43:0.14285714285714285 46:1.0 68:0.25 83:0.16666666666666666 90:0.05 168:0.07142857142857142 170:0.1111111111111111 505:0.6666666666666666 822:0.3333333333333333 4042:1.0 4968:1.0 6817:1.0 7568:1.0
12 28:0.07692307692307693 68:0.125 439:0.3333333333333333 1388:1.0 1546:0.5 1683:1.0 3325:0.2 4665:1.0 4968:1.0
12 10:0.125 68:0.125 170:0.1111111111111111 210:0.16666666666666666 352:0.047619047619047616 1210:1.0 1569:0.3333333333333333 2733:1.0 3325:0.2 3714:1.0 4879:0.5 6440:1.0 6484:1.0 6990:1.0
12 36:0.3333333333333333 40:1.0 68:0.125 131:0.2 313:0.2 352:0.047619047619047616 419:0.25 1116:1.0 1569:0.3333333333333333 2293:1.0 3325:0.2 6617:1.0
12 10:0.25 11:0.07142857142857142 18:0.5 46:1.0 63:0.2 68:0.125 126:0.25 298:0.5 313:0.4 337:0.5 344:0.5 370:0.5 479:1.0 584:1.0 626:0.3333333333333333 682:1.0 1445:1.0 1864:1.0 2626:1.0 2766:1.0 3325:0.2 3903:1.0
12 10:0.125 11:0.07142857142857142 28:0.07692307692307693 53:1.0 68:0.125 69:0.5 153:1.0 352:0.047619047619047616 390:1.0 679:1.0 1354:2.0 2803:1.0 3016:1.0 3325:0.2 4935:1.0
12 11:0.07142857142857142 19:1.0 30:0.02857142857142857 68:0.375 69:0.5 89:0.07142857142857142 161:0.5 306:0.5 332:0.2 419:0.25 1250:1.0 2766:1.0 3125:1.0 3325:0.2 5128:0.5
12 14:0.3333333333333333 30:0.02857142857142857 37:0.5 68:0.125 83:0.16666666666666666 89:0.07142857142857142 948:1.0 4519:1.0 5027:1.0
12 30:0.02857142857142857 39:0.5 59:0.3333333333333333 96:1.0 100:0.14285714285714285 107:1.0 138:0.5 170:0.1111111111111111 294:1.0 297:0.5 298:0.5 326:0.1111111111111111 352:0.047619047619047616 369:0.14285714285714285 505:0.3333333333333333 801:1.0 1955:1.0 2766:1.0 3227:2.0 4281:1.0 4879:0.5 4960:1.0 5108:1.0 5150:1.0 5754:1.0 5783:1.0 5804:1.0 7330:1.0
12 69:0.5 90:0.025 352:0.047619047619047616 611:1.0 1506:0.3333333333333333 1615:1.0 2487:1.0 4848:1.0 5280:1.0 6882:1.0
12 10:0.125 126:0.25 168:0.07142857142857142 230:1.0 352:0.047619047619047616 453:0.5 1000:1.0 3325:0.2 4536:1.0
12 10:0.125 11:0.14285714285714285 28:0.07692307692307693 30:0.08571428571428572 59:0.6666666666666666 100:0.14285714285714285 109:2.0 118:1.0 206:0.3333333333333333 230:1.0 234:0.06666666666666667 352:0.047619047619047616 369:0.14285714285714285 506:1.0 586:0.14285714285714285 795:1.0 952:0.5 2733:1.0 2766:1.0 2825:1.0 3966:1.0 4832:1.0 4854:1.0 5128:0.5 5185:1.0 5700:1.0 6036:1.0 6163:1.0 6623:1.0
12 11:0.07142857142857142 19:1.0 30:0.02857142857142857 68:0.125 90:0.025 187:1.0 210:0.16666666666666666 241:1.0 352:0.047619047619047616 369:0.14285714285714285 1076:0.5 2055:0.5 2270:1.0 2733:1.0 2766:1.0 4985:1.0 5128:0.5 5700:1.0 6036:1.0
12 10:0.375 11:0.07142857142857142 14:0.3333333333333333 28:0.15384615384615385 30:0.05714285714285714 53:1.0 82:0.1111111111111111 160:0.25 226:1.0 286:0.14285714285714285 306:0.5 367:0.5 578:1.0 948:1.0 1379:1.0 1707:1.0 1724:1.0 2308:1.0 2864:1.0 2932:1.0 3407:1.0 3727:1.0 4742:1.0 4832:1.0 4879:0.5 4955:1.0 5128:0.5 5179:1.0 5550:1.0 5934:1.0 6829:1.0
12 10:0.125 11:0.07142857142857142 15:1.0 68:0.125 82:0.1111111111111111 90:0.025 100:0.14285714285714285 168:0.07142857142857142 230:2.0 234:0.06666666666666667 359:0.25 424:0.5 824:1.0 1165:1.0 2434:1.0 3158:1.0 4832:1.0 4879:0.5 4913:1.0 4927:1.0 4972:1.0 4985:1.0 5073:1.0 5396:1.0
12 10:0.125 11:0.07142857142857142 30:0.05714285714285714 43:0.14285714285714285 112:1.0 168:0.07142857142857142 234:0.06666666666666667 352:0.047619047619047616 357:0.25 539:0.3333333333333333 896:0.5 1404:1.0 1921:1.0 4900:1.0 5117:1.0 6628:1.0
12 10:0.125 11:0.07142857142857142 46:1.0 53:1.0 68:0.125 82:0.1111111111111111 264:0.3333333333333333 287:1.0 352:0.047619047619047616 419:0.25 479:1.0 767:2.0 806:1.0 949:1.0 1117:1.0 1208:0.5 1404:1.0 1416:1.0 1855:1.0 3699:1.0 5073:1.0 7534:1.0
12 10:0.25 11:0.07142857142857142 19:1.0 30:0.02857142857142857 39:1.0 53:1.0 59:0.6666666666666666 68:0.25 69:0.5 90:0.025 127:1.0 168:0.14285714285714285 230:1.0 286:0.14285714285714285 357:0.25 378:1.0 380:0.3333333333333333 443:1.0 479:1.0 1525:0.5 2042:1.0 2733:1.0 3325:0.2 4705:1.0 5510:0.5 5897:1.0
12 10:0.125 30:0.02857142857142857 68:0.125 168:0.07142857142857142 313:0.2 357:0.25 819:1.0 849:1.0 1167:1.0 2183:1.0 3325:0.2 5336:1.0
12 4:1.0 10:0.25 30:0.02857142857142857 61:1.0 82:0.1111111111111111 90:0.025 286:0.14285714285714285 352:0.047619047619047616 1621:1.0 2766:1.0 4742:1.0 5517:1.0 6367:1.0
12 10:0.25 11:0.14285714285714285 39:0.5 46:2.0 53:1.0 59:0.3333333333333333 64:0.3333333333333333 68:0.125 69:0.5 249:1.0 300:1.0 359:0.25 385:1.0 402:0.5 767:1.0 1261:1.0 1852:1.0 2040:1.0 2280:1.0 3294:1.0 3905:1.0 4832:1.0 5550:1.0 6829:1.0
12 10:0.125 11:0.07142857142857142 30:0.02857142857142857 43:0.14285714285714285 352:0.047619047619047616 540:0.06666666666666667 682:1.0 805:1.0 1404:1.0 4900:1.0 5117:1.0
12 43:0.14285714285714285 59:0.3333333333333333 170:0.1111111111111111 286:0.14285714285714285 327:1.0 479:1.0 1354:1.0 2308:1.0 3066:1.0 5053:1.0
12 30:0.02857142857142857 39:0.5 50:1.0 59:0.3333333333333333 170:0.1111111111111111 230:1.0 286:0.14285714285714285 327:1.0 539:0.3333333333333333 1354:1.0 2308:1.0 5053:1.0 6999:1.0
12 10:0.125 11:0.14285714285714285 30:0.02857142857142857 53:1.0 59:0.3333333333333333 82:0.1111111111111111 90:0.025 135:0.2 170:0.1111111111111111 187:1.0 264:0.3333333333333333 297:0.5 313:0.2 326:0.1111111111111111 402:0.5 479:1.0 767:1.0 804:1.0 824:1.0 1281:1.0 1359:1.0 1615:1.0 1728:1.0 2308:1.0 4519:1.0 4832:1.0 4972:1.0 5550:1.0 6177:1.0
12 10:0.125 89:0.07142857142857142 170:0.1111111111111111 264:0.3333333333333333 377:0.5 419:0.25 540:0.06666666666666667 1306:0.2 1615:1.0 1948:0.5 6746:1.0
12 11:0.07142857142857142 28:0.07692307692307693 30:0.02857142857142857 39:0.5 43:0.14285714285714285 53:1.0 59:0.3333333333333333 281:0.3333333333333333 402:0.5 419:0.25 626:0.3333333333333333 767:1.0 1116:1.0 1615:1.0 4900:1.0 4941:1.0 5128:0.5 5550:1.0
12 30:0.02857142857142857 35:0.25 59:0.3333333333333333 64:0.3333333333333333 83:0.16666666666666666 90:0.025 168:0.14285714285714285 220:1.0 401:0.3333333333333333 767:1.0 778:1.0 896:0.5 933:1.0 1484:1.0 2768:0.25 4107:1.0 4832:1.0 4900:1.0 5690:1.0 6004:1.0
12 11:0.14285714285714285 19:1.0 21:1.0 28:0.15384615384615385 30:0.08571428571428572 37:0.5 39:1.0 63:0.2 68:0.125 90:0.075 100:0.14285714285714285 109:2.0 173:0.3333333333333333 234:0.06666666666666667 254:1.0 294:1.0 368:0.5 394:1.0 401:0.3333333333333333 479:1.0 505:0.3333333333333333 611:1.0 719:0.5 1358:1.0 2351:1.0 4842:0.5 4850:1.0 4896:1.0 5743:1.0 6313:1.0
12 11:0.14285714285714285 14:0.3333333333333333 17:0.3333333333333333 18:0.5 30:0.02857142857142857 35:0.25 39:0.5 46:3.0 59:0.3333333333333333 100:0.14285714285714285 109:1.0 112:1.0 118:1.0 126:0.25 168:0.07142857142857142 170:0.1111111111111111 173:0.3333333333333333 263:0.25 298:0.5 306:0.5 313:0.6 416:0.5 479:1.0 844:1.0 1147:1.0 1355:1.0 1437:0.3333333333333333 1756:1.0 2215:1.0 3255:1.0 3862:1.0 3943:1.0 4454:1.0 4969:0.5 5027:1.0 6352:1.0 6580:1.0
12 11:0.14285714285714285 18:0.5 19:1.0 29:0.5 30:0.02857142857142857 46:2.0 56:0.1 61:2.0 68:0.125 89:0.07142857142857142 96:2.0 110:1.0 156:0.5 206:0.16666666666666666 297:1.0 313:0.2 327:1.0 357:0.5 411:1.0 474:1.0 484:1.0 549:1.0 562:0.5 801:1.0 804:2.0 817:1.0 1000:1.0 1076:0.5 1083:1.0 1137:0.3333333333333333 1438:1.0 1467:1.0 1665:1.0 1754:1.0 2543:1.0 2733:1.0 4882:0.5 5484:1.0 6352:1.0 7528:1.0
12 11:0.14285714285714285 14:0.3333333333333333 28:0.07692307692307693 30:0.02857142857142857 39:1.0 59:0.6666666666666666 74:1.0 82:0.2222222222222222 83:0.16666666666666666 89:0.07142857142857142 118:2.0 156:0.5 297:0.5 369:0.14285714285714285 545:0.3333333333333333 756:0.125 948:1.0 1955:1.0 2215:1.0 3714:1.0 4423:1.0 4832:1.0 5412:1.0 5876:1.0 6165:2.0 6269:1.0 6352:1.0 7318:1.0
|
19d3ef812dc549e5755c907ebb933c841fc9a497 | 449d555969bfd7befe906877abab098c6e63a0e8 | /343/CH1/EX1.53/ex_53.sce | c8704f68e2cd12c723ee6d7e9a2e4de968aa404a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 287 | sce | ex_53.sce | R1=2;
R2=10;
R3=5;
R4=15;
I1=1/3;
R5=3;
V1=10;
V2=18;
A=[8,-2;3,-9]; //Applying KCL at the two nodes
B=[50;-85];
V=inv(A)*B;
I1=(V1-V(1,1))/R1;
I5=(V(2,1)-V2)/R5;
disp("Amperes",I1,"Current in 2 Ohm resistor");
disp("Amperes",I5,"Current in 3 Ohm resistor"); |
6c3f44da5958c23b3f277aa4b59780b6e2225e71 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electric_Machines_D._P._Kothari_And_I._J._Nagrath_503.zip/Electric_Machines_D._P._Kothari_And_I._J._Nagrath_503/CH7/EX7.1/ch7_1.sci | 6aa71ec7ed495201f548e0f9210ff6d3e3cdc4b3 | [] | 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 | 213 | sci | ch7_1.sci | errcatch(-1,"stop");mode(2);// to calculate no of parrallel path
;
S=12; //no of commutator segments
P=4;
Y_cs=S/P; //slots
Y_b=2*Y_cs+1;
y_f=Y_b-2;
disp(y_f,'no of parralel path');
exit();
|
7afd2506d9b35bb2303125397e7d626b5841f8cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3812/CH1/EX1.14.a/1_14_a.sce | 1cde65ccde8710d47176a27754853b0fe6535bd5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sce | 1_14_a.sce | //Example 1.14<a>
//check the given signL is PERIODIC OR NOT//
clc ;
t=-10:.01:10;
x=%i*(exp(%i*10*t));
subplot (311)
plot (t,x);
disp ('(a) this shows that the given signal is periodic with period (.2*%pi)');
|
7a35e6b59bb240b0a0eaed7deb0d935bc6e5890e | 9d0d8cfb131efa34cafc47d938fac6ddcee0750c | /miniproject/1prob/signal_noise.sci | 57d99088c95adf882206e29464ce7c9a738576d0 | [] | no_license | kazipetasurya/ee340 | 52c688b028a28effa88dc4a9eb653735e4fc19bc | 3885ad37122817c03d9a51d9f7df2c9c9f5f7251 | refs/heads/master | 2021-01-18T15:10:53.081056 | 2012-09-07T06:43:54 | 2012-09-07T06:43:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sci | signal_noise.sci | exec("sinusoidal_vector.sci",-1)
exec("normalnoisevec.sci",-1)
function[yvec]=signalnoise(a,N,Variance)
xvec=sinusoidalvec(a,N)
vvec=gaussiannoise(Variance,N)
//disp(length(xvec))
//disp(length(vvec))
yvec=xvec+vvec
endfunction
|
f05f3bb3435514dafe21b8aa76ecb0ceccf19401 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3765/CH1/EX1.5/Ex1_5.sce | e6906bcad1630e80658fdbf97768a278484cf433 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,200 | sce | Ex1_5.sce | clc
// Example 1.5.py
// Consider the air in the pressure vessel in Example 1.2. Let us now heat
// the gas in the vessel. Enough heat is added to increase the temperature
// to 600 K. Calculate the change in entropy of the air inside the vessel.
// Variable declaration from example 1.2
V = 10 // volume of vessel (m^3)
p = 20.0 // pressure (atm)
T = 300.0 // initial temperature (K)
T2 = 600.0 // final temperature (Kelvin)
R = 287.0 // gas constant (J/Kg/K)
gamma1 = 1.4 // ratio of specific heats for air
// Calculations
p2_by_p = T2/T // p2/p, at constant volume p/T = constant
cv = R / (gamma1-1) // specific heat capacity at constant volume (J/Kg K)
cp = cv + R // specific heat capacity at constant pressure (J/Kg K)
p = p * 101000.0 // units conversion to N/m^2
rho = p/R/T // from ideal gas equation of state (Kg/m^3)
m = V * rho // total mass = volume * density (Kg)
//
del_s = cp*log(T2/T) - R*log(p2_by_p) // change in entropy per unit mass (J/ Kg K)
total_del_s = m*del_s // total change in entropy (J/K)
// Result
printf("\n Total change in entropy is %.3e J/K", total_del_s)
|
b7430269cbeb8ad9ee5d4cb8fffc3f201294bccd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1946/CH9/EX9.10.a/Ex_9_10_a.sce | d558560c78d0d30b66792e067149cd286762269f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex_9_10_a.sce | // Example 9.10.a;//noise equivalent power
clc;
clear;
close;
e=1.6*10^-19;//elecronic charge
h=1.3;//wavelength in micro meter
C=3*10^8;//SPEED of light in meter per second
n=0.55;//efficiency
ht=6.62*10^-34;//plank constt.
Id=8;//CURRENT IN nano AMPERE
NEP=((ht*C)*sqrt(2*e*Id*10^-9))/(n*e*h*10^-6);//noise equivalent power in watt
disp(NEP,"noise equivalent power in watt is")
|
7a8312beaefda6449d9c0aba1f74326f1f6d93b4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /165/CH4/EX4.16/ex4_16.sce | da1558df37eeef98ec146e8ce69cf3ce45edfa30 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sce | ex4_16.sce | //Example 4.16
clc;
Ifsd=100*10^-6; //Full scale deflection current
Rm=500; //Meter resistence
Erms=100; //RMS voltage
Range=0.45*Erms; //RMS to DC value
//Using Sensitivity
S=1/Ifsd; //Sentitivity of meter
Rs=S*Range-Rm; //Multiplier resistence
disp(Rs,'Multiplier Resistence using Sensitivity')
//Using KVl
Rs=0.45*Erms/Ifsd-Rm; //Multiplier resistence
disp(Rs,'Multiplier resistence ') |
046b45d10e95c43125a40958243de731737f9924 | 95beaf56de829d390a567f241221c582c4b682ed | /projet/KSVD_irls.sce | e02ac4f9c2a2fd5eee67379a50f3612a30e038ef | [] | no_license | the-mousaillon/compressive-sensing | 85d5d5ce814ad8ec20271a3b932144e35e640041 | bfa3acf166be6a8141d1eb2064523e7de8f19db7 | refs/heads/master | 2020-04-17T15:02:05.840745 | 2019-03-20T12:55:21 | 2019-03-20T12:55:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,279 | sce | KSVD_irls.sce | clear
// chargement des données
data = csvRead("/Users/nbreizh/Documents/compressive sensing/tp/data.csv")
[M,N] = size(data)
// normalization des données
for i=1:N
data(:,i) = data(:,i)/norm(data(:,i))
end
function y = calculCoeff(alpha, p, epsilon)
n = length(alpha)
W = zeros(n, n)
for i=1:n
W(i,i) = (abs(alpha(i))^2 + epsilon)^(p/2 -1)
end
y = W
endfunction
function y = irls(X, D, p, itermax, epsilon)
i = 0
alphak1 = D'*pinv(D*D')*X
W = calculCoeff(alphak1, p, epsilon)
Q=inv(W'*W)
alphak = Q*D'*pinv(D*Q*D')*X
while (i < itermax)
if (abs(norm(alphak) - norm(alphak1)) > sqrt(epsilon)/100) then
alphak1 = alphak
W = calculCoeff(alphak, p, epsilon)
Q=inv(W'*W)
alphak=Q*D'*pinv(D*Q*D')*X
i=i+1
else
if epsilon > 1e-8 then
alphak1 = alphak
epsilon = epsilon/10
W = calculCoeff(alphak, p, epsilon)
Q=inv(W'*W)
alphak= Q*D'*pinv(D*Q*D')*X
end
i=i+1
end
end
y = alphak
endfunction
// p est la norme à utiliser
function [D,Alpha]=KSVD(X,K,L,p,EPS)
[N,l]=size(X);
MAX_ITR=round(K/10);
D=X(:,1:K);
s=sqrt(diag(D'*D));
for i=1:K
D(:,i)=D(:,i)/s(i);
end
Alpha=zeros(K,l);
for j=1:L
for i_vect=1:l
Alpha(:,i_vect)=irls(X(:,i_vect), D, p, MAX_ITR, EPS);
end
for i_col=1:K
idx_k=find(Alpha(i_col,:)<>0);
if length(idx_k)>0 then l
E_k=X-D*Alpha+D(:,i_col)*Alpha(i_col,:);
Omega=zeros(l,length(idx_k));
for inz=1:length(idx_k)
Omega(idx_k(inz),inz)=1;
end
E_kR=E_k*Omega;
[U,delta,V]=svd(E_kR);
D(:,i_col)=U(:,1);
Alpha(i_col,idx_k)=delta(1,1)*V(:,1)';
else
g=grand(1,1,"uin",1,l);
D(:,i_col)=X(:,g)/norm(X(:,g));
end
end
end
endfunction
// Apprentissage à l'aide du stomp
N = 99
K = 100
L = 10
eps=1e-1;
[D,Alpha]=KSVD(data, K,L,0.1, eps);
// On arrondi Alpha pour mieux voir
|
11e49101b6033d9e608f8f5c32bb96a8b4427406 | a5de878687ee2e72db865481785dafbeda373e2a | /trunck/OpenPR-0.0.2/macros/kfda.sci | 81ed40853e55e18c2742194a3f3320dcec68cd51 | [
"BSD-3-Clause"
] | permissive | Augertron/OpenPR | 8f43102fd5811d26301ef75e0a1f2b6ba9cbdb73 | e2b1ce89f020c1b25df8ac5d93f6a0014ed4f714 | refs/heads/master | 2020-05-15T09:31:08.385577 | 2011-03-21T02:51:40 | 2011-03-21T02:51:40 | 182,178,910 | 0 | 0 | null | null | null | null | ISO-8859-9 | Scilab | false | false | 3,435 | sci | kfda.sci | ///////////////////////////////////////////////////////////////////////////////
// Author: Jia Wu
// Version: 0.1
// Date: Nov 2009
// Description: Kernel Fisher Discriminant Analysis
// Reference: S. Mika, G. Ratsch, J. Weston, B. Scholkopf, and K.-R. M¨¹ller,
// ¡°Fisher discriminant analysis with kernels,¡± in Neural Networks for
// Signal Processing IX, Y.-H. Hu, J. Larsen, E. Wilson, and S. Douglas,
// Eds. Piscataway, NJ: IEEE, 1999, pp. 41¨C48.
//
// Copyright (C) 2009 OpenPR
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of OpenPR nor the names of its
// contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL HOLDER AND CONTRIBUTORS BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// Note the function is used for two-class problems.
// Input:
// x - Data matrix of size dim*num. Each column is a data point.
// c - Class label vector of size 1*num or num*1.
// ker - Kernel, a struct variable.
//
// Output:
// alpha - The principal eigenvector.
///////////////////////////////////////////////////////////////////////////////
function alpha = kfda(x, c, ker)
class_label = unique(c);
x1 = x(:, (c==class_label(1)));
x2 = x(:, (c==class_label(2)));
num = size(x, 2);
num1 = size(x1, 2);
num2 = size(x2, 2);
M1 = sum(createkernel(x, x1, ker), 'c')/num1;
M2 = sum(createkernel(x, x2, ker), 'c')/num2;
M = (M1-M2)*(M1-M2)';
K1 = createkernel(x, x1, ker);
K2 = createkernel(x, x2, ker);
l1 = ones(num1, num1)/num1;
l2 = ones(num2, num2)/num2;
N = K1*(eye(num1, num1)-l1)*K1'+K2*(eye(num2, num2)-l2)*K2';
u = 100; ////////////////////////////////////
Nu = N + u*eye(num, num);
[eigvec, eigval] = spec(inv(Nu)*M);
[eigval, idx] = sort(diag(eigval));
eigvec = eigvec(:, idx);
alpha = eigvec(:, 1);
endfunction
|
27eccfd54a858cb51a3bb9e81a4cbb98f7a2021d | 39ae3a0860e66749f94b889f0c286e6903457911 | /Sistema_Reatores.sce | 6ac40365c4c2308ea64fd2faced5043f6316cc34 | [] | no_license | IgorLim98/Projeto-REA | 1215a2705317add4fa6849ae00ae8adf25657519 | 67fcaae58e7c51154d1f8e43716b209baffecde9 | refs/heads/main | 2023-05-18T16:51:48.726045 | 2021-06-08T18:33:04 | 2021-06-08T18:33:04 | 362,553,236 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 670 | sce | Sistema_Reatores.sce | // sistema de equações algébricas lineares
// utilizaremos a função Linsolve para resolver um sistema simulando a 5 reatores ligados entre si
// Queremos determinar as concetrações c1, c2, c3, c4, c5 (referente a cada reator)
clear, clc
//informe aqui a seu sistema do tipo Ax + b = 0
A = [8 0 -3 0 0;4 -4 0 0 0;0 -2 10 0 0; 0 0 -7 10 -3;4 2 0 0 -6] // matriz dos coeficientes
b = [-50; 0; -160; 0; 0] //vetor coluna dos termos independentes
x = linsolve(A, b)
printf("O vetor x é: \n")
mprintf("C1 = %6.4f \n", x(1))
mprintf("C2 = %6.4f \n", x(2))
mprintf("C3 = %6.4f \n", x(3))
mprintf("C4 = %6.4f \n", x(4))
mprintf("C5 = %6.4f \n", x(5))
|
ae870fb86e62a282b6d470ef589242abb411a102 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2223/CH18/EX18.1/Ex18_1.sce | 6019def928ff55229a267ec113bcb58a0794db44 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,352 | sce | Ex18_1.sce | // scilab Code Exa 18.1 Gas Turbine nozzle row
T1=600; // Entry Temperature of the gas in Kelvin
p1=10; // Inlet Pressure in bar
gamma_g=1.3;
delT=32; // Temperature drop of the gas(T1-T2) in K
cp_g=1.23*1e3; // Specific Heat of gas at Constant Pressure in kJ/(kgK)
pr1_2=1.3; // pressure ratio(p1/p2)
T2s=T1/(pr1_2^((gamma_g-1)/gamma_g));
delTs=T1-T2s;
// part(a) nozzle efficiency
n_N=delT/delTs;
disp("%",n_N*100,"(a) nozzle efficiency is")
// part(b)
disp("(b)(i)for ideal flow:")
p2=p1/pr1_2;
h_01=cp_g*T1;
h2s=cp_g*T2s;
c_2s=sqrt((h_01-h2s)/0.5);
disp("m/s",c_2s,"the nozzle exit velocity is")
R_g=cp_g*((gamma_g-1)/gamma_g);
M_2s=c_2s/(sqrt(gamma_g*R_g*T2s));
disp(M_2s,"and the Mach number is")
disp("(b)(ii)for actual flow:")
T2=T1-delT;
a2=sqrt(gamma_g*R_g*T2);
c_2=sqrt((cp_g*delT)/0.5);
disp("m/s",c_2,"the nozzle exit velocity is")
M2=c_2/a2;
disp(M2,"and the Mach number is")
// part(c) stagnation pressure loss across the nozzle
p01=p1;
p02=p2/0.79; // from isentropic gas tables p2/p02=0.79 at gamma=1.3 and M2=0.613
delp0=p01-p02;
disp("bar",delp0,"(c)the stagnation pressure loss across the nozzle is")
// part(d) nozzle efficiency based on stagnation pressure loss
delp=p1-p2;
n_N_a=1-(delp0/delp);
disp("%",n_N_a*100,"(d)the nozzle efficiency based on stagnation pressure loss is")
|
045f036d02ab54f868b1ddba3914ecdfbc0ca819 | a5f0fbcba032f945a9ee629716f6487647cafd5f | /Machine_Learning/tests/RunDemos.sce | 4399e28df529e9e6e71d15320c96331027c909c4 | [
"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 | 347 | sce | RunDemos.sce | getd('../macros')
scripts = dir('../demos')
numfiles = size(scripts.name)(1) - 1
disp(scripts)
for i = 1:numfiles
script = scripts.name(i);
disp('Running ' + string(i) + ' of ' + string(numfiles) + ' : ' + script)
if(strcmp('Datasets', script) ~= 0 && strcmp('Models', script) ~= 0 )
exec('../demos/' + script, -1)
end
disp('Complete')
end |
ea4b48c8ba7876b9ffcf149ca3b0206a6dc8ac2c | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /fuglaaRecoilFlicktrack.sce | ab1ca2a2793acadb718f339928b828b6ea9482eb | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 28,501 | sce | fuglaaRecoilFlicktrack.sce | Name=fuglaaRecoilFlicktrack
PlayerCharacters=PUBG memer
BotCharacters=Botz Bot.bot;Botz Bot.bot;Botz Bot.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=PUBG memer
AddedBots=Botz Bot.bot;Botz Bot.bot;Botz Bot.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=aimbotzpubg.map
MapScale=3.8125
BlockProjectilePredictors=false
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=0.0
ScorePerKill=1.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=pubg
WeaponHeroTag=track
DifficultyTag=2
AuthorsTag=fuglaa
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=flick to and track targets whilst compensating for recoil
GameVersion=1.0.6
ScorePerDistance=0.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=Botz Bot
DodgeProfileNames=Short Strafes;Long Strafes
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Botz Bot
SeeThroughWalls=false
[Character Profile]
Name=PUBG memer
MaxHealth=100.0
WeaponProfileNames=SCAR;;;;;;;
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=600.0
MaxCrouchSpeed=500.0
Acceleration=6000.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=;;;
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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Botz Bot
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=600.0
MaxCrouchSpeed=500.0
Acceleration=7000.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=280.0
MainBBRadius=25.0
MainBBHasHead=true
MainBBHeadRadius=25.0
MainBBHeadOffset=-20.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=;;;
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.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=Short Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Long Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=SCAR
Type=Hitscan
ShotsPerClick=1
DamagePerShot=25.0
KnockbackFactor=4.0
TimeBetweenShots=0.096
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=87000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=87000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=40
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Arrow
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.01
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=20.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
ForceFirstPersonInADS=true
Explosive=false
Radius=100.0
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,-1.0,0.0
SpreadSCA=0.0,0.1,-1.0,0.0
SpreadMSA=0.0,0.1,-1.0,0.0
SpreadMCA=0.0,0.1,-1.0,0.0
SpreadSSH=0.0,0.1,-1.0,0.0
SpreadSCH=0.0,0.1,-1.0,0.0
SpreadMSH=0.0,0.1,-1.0,0.0
SpreadMCH=0.0,0.1,-1.0,0.0
MaxRecoilUp=1.0
MinRecoilUp=1.0
MinRecoilHoriz=-0.6
MaxRecoilHoriz=0.6
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.01
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=false
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-256.000000 0.000000 512.000000
496.000000 0.000000 512.000000
496.000000 0.000000 -240.000000
-256.000000 0.000000 -240.000000
-256.000000 -16.000000 512.000000
496.000000 -16.000000 512.000000
496.000000 -16.000000 -240.000000
-256.000000 -16.000000 -240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000061 224.000000 -143.999939
-256.000061 0.000000 -255.999939
-160.000061 224.000000 -255.999939
-256.000061 0.000000 -143.999939
-160.000061 0.000000 -255.999939
-256.000061 224.000000 -255.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-160.000061 223.999985 -367.999939
-160.000061 223.999985 -255.999908
1184.000000 223.999985 -256.000000
1184.000000 223.999985 -368.000000
-160.000061 0.000000 -367.999939
-160.000061 0.000000 -255.999908
1184.000000 0.000000 -256.000000
1184.000000 0.000000 -368.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-368.000061 224.000000 928.000000
-256.000000 224.000000 928.000000
-256.000092 224.000000 -176.000031
-368.000092 224.000000 -176.000031
-368.000061 0.000000 928.000000
-256.000000 0.000000 928.000000
-256.000092 0.000000 -176.000031
-368.000092 0.000000 -176.000031
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
896.000000 16.000000 911.999939
896.000000 16.000000 511.999939
-272.000000 16.000000 512.000000
-272.000000 16.000000 912.000000
896.000000 0.000000 911.999939
896.000000 0.000000 511.999939
-272.000000 0.000000 512.000000
-272.000000 0.000000 912.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 224.000000 1072.000000
1184.000000 224.000000 1072.000000
1184.000000 224.000000 -256.000000
896.000000 224.000000 -256.000000
896.000000 0.000000 1072.000000
1184.000000 0.000000 1072.000000
1184.000000 0.000000 -256.000000
896.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
896.000000 224.000000 1200.000000
896.000000 224.000000 912.000000
-432.000061 224.000000 912.000000
-432.000000 224.000000 1200.000000
896.000000 0.000000 1200.000000
896.000000 0.000000 912.000000
-432.000061 0.000000 912.000000
-432.000000 0.000000 1200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 16.000000 512.000000
496.000000 16.000000 512.000000
496.000000 16.000000 -256.000000
-256.000000 16.000000 -256.000000
-256.000000 0.000000 512.000000
496.000000 0.000000 512.000000
496.000000 0.000000 -256.000000
-256.000000 0.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
488.000000 224.000000 504.000000
504.000000 224.000000 504.000000
504.000000 224.000000 -256.000000
488.000000 224.000000 -256.000000
488.000000 -8.000000 504.000000
504.000000 -8.000000 504.000000
504.000000 -8.000000 -256.000000
488.000000 -8.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
496.000000 224.000000 504.000000
496.000000 224.000000 488.000000
-256.000000 224.000000 488.000000
-256.000000 224.000000 504.000000
496.000000 0.000000 504.000000
496.000000 0.000000 488.000000
-256.000000 0.000000 488.000000
-256.000000 0.000000 504.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
496.000000 16.000000 512.000000
896.000000 16.000000 512.000000
896.000000 16.000000 -256.000000
496.000000 16.000000 -256.000000
496.000000 0.000000 512.000000
896.000000 0.000000 512.000000
896.000000 0.000000 -256.000000
496.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
-296.000000 232.000000 928.000000
928.000000 232.000000 928.000000
928.000000 232.000000 -272.000000
-296.000000 232.000000 -272.000000
-296.000000 224.000000 928.000000
928.000000 224.000000 928.000000
928.000000 224.000000 -272.000000
-296.000000 224.000000 -272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
504.000000 24.000000 512.000000
512.000000 24.000000 512.000000
512.000000 24.000000 504.000000
504.000000 24.000000 504.000000
504.000000 16.000000 512.000000
512.000000 16.000000 512.000000
512.000000 16.000000 504.000000
504.000000 16.000000 504.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
888.000000 224.000000 912.000000
896.000000 224.000000 912.000000
896.000000 224.000000 904.000000
888.000000 224.000000 904.000000
888.000000 16.000000 912.000000
896.000000 16.000000 912.000000
896.000000 16.000000 904.000000
888.000000 16.000000 904.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 16.000000 512.000000
700.000000 16.000000 712.000000
512.000000 16.000000 504.000000
700.000000 124.000008 704.000000
512.000000 23.999998 504.000000
700.000000 16.000000 704.000000
700.000000 124.000008 712.000000
512.000000 23.999998 512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
700.000000 16.000000 712.000000
888.000000 16.000000 912.000000
700.000000 16.000000 704.000000
888.000000 224.000000 904.000000
700.000000 124.000000 704.000000
888.000000 16.000000 904.000000
888.000000 224.000000 912.000000
700.000000 124.000000 712.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
504.000000 224.000000 312.000000
896.000000 224.000000 312.000000
896.000000 224.000000 304.000000
504.000000 224.000000 304.000000
504.000000 16.000000 312.000000
896.000000 16.000000 312.000000
896.000000 16.000000 304.000000
504.000000 16.000000 304.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
504.000000 224.000000 -8.000000
896.000000 224.000000 -8.000000
896.000000 224.000000 -16.000000
504.000000 224.000000 -16.000000
504.000000 16.000000 -8.000000
896.000000 16.000000 -8.000000
896.000000 16.000000 -16.000000
504.000000 16.000000 -16.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
328.000000 224.000000 888.000000
327.999969 224.000000 496.000000
319.999969 224.000000 496.000000
320.000000 224.000000 888.000000
328.000000 16.000000 888.000000
327.999969 16.000000 496.000000
319.999969 16.000000 496.000000
320.000000 16.000000 888.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
8.000000 224.000000 912.000000
7.999985 224.000000 496.000000
-0.000031 224.000000 496.000000
0.000000 224.000000 912.000000
8.000000 16.000000 912.000000
7.999985 16.000000 496.000000
-0.000031 16.000000 496.000000
0.000000 16.000000 912.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type PlayerSpawn
Vector3 position 120.000000 16.000000 96.000000
Bool8 teamB 0
entity
type CameraPath
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 -160.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 176.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 496.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 688.000000 16.000000 448.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 688.000000 16.000000 144.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 688.000000 16.000000 -176.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
|
2c52d12c4078807a4f43c8403d2b0ec814b7cdd3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1910/CH12/EX12.1/Chapter121.sce | 482a6ba249303a9f9e9f384f1f6dc42a9d4f92b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,537 | sce | Chapter121.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Introduction to heat transfer by S.K.Som, Chapter 12, Example 1")
//The pressure in the pipeline that transports helium gas at a rate of 4kg/s is maintained at pressure(p)=1 atm or 101*10^3 pascal.
//The internal daimeter of tube is (di)=6mm or .006m
//The temprature of both air and helium is (T)=25°C or 298 K.
//The diffusion coefficient of helium in air at normal atmosphere is(Dab)=7.20*10^-5 m^2/s
//The venting tube extends to a length(L)=20m in the atmosphere.
di=.006;
disp("The flow area is given by A=(pi*di^2)/4 in m^2")
A=(%pi*di^2)/4
p=101*10^3;;
R=8.31*10^3;//gas constant
T=298;
Dab=7.20*10^-5;
L=20;
//c is the molar concentration
disp("The molar concentration of mixture which is constant throughout is given by c=p/(R*T)")
c=p/(R*T)
//helium has been considered as species A so (helium mole fraction at the bottom of the tube)is Yao=1 and (helium mole fraction at the bottom of the tube)is Yal=0
Yal=0;
Yao=1;
//Nhe and Nair are molar rate of helium and air respectively
disp("Nhe=Nair=(A*c*Db*(Yao-yal))/L in kmol/sec")
Nair=(A*c*Dab*(Yao-Yal))/L
Nhe=Nair;
//Molecular weights of air and helium are 29kg/kmol and 4 kg/kmol respectively.
Mhe=4;
Mair=29;
//mass flow rate of helium is mhe
disp("mass flow rate of helium is given by m=Mhe*Nhe in kg/sec ")
mhe=Mhe*Nhe
//mass flow rate of air is mair
disp("mass flow rate of air is given by m=Mair*Nair in kg/sec ")
mair=Mair*Nair
|
eb1ef31a6c2b79b5efe0f7882baff3cf13b5d304 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1820/CH4/EX4.13/Example4_13.sce | 4d710fa452e9d9c3819fc2e6a3fda43b0e6c8087 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,051 | sce | Example4_13.sce | // ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
// TURAN GONEN
// CRC PRESS
// SECOND EDITION
// CHAPTER : 4 : OVERHEAD POWER TRANSMISSION
// EXAMPLE : 4.13 :
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
KV = 345 ; // Transmission line voltage in kV
V_R = KV ;
V_S = KV ;
x_L = 0.588 ;// Inductive reactance in Ω/mi/phase
b_c = 7.20*10^-6 ;// susceptance S phase to neutral per phase
l = 200 ;// Total line length in mi
// CALCULATIONS
// for case (a)
x_C = 1/b_c ;// Ω/mi/phase
Z_C = sqrt(x_C * x_L) ;
SIL = KV^2/Z_C ; // Surge impedance loading in MVA/mi . [1MVA = 1MW]
SIL1 = (KV^2/Z_C) * l ; // Surge impedance loading of line in MVA . [1MVA = 1MW]
// for case (b)
delta = 90 ; // Max 3-Φ theoretical steady-state power flow limit occurs for δ = 90 degree
X_L = x_L * l ; // Inductive reactance Ω/phase
P_max = V_S * V_R * sind(delta)/(X_L) ;
// for case (c)
Q_C = V_S^2 * (b_c * l/2) + V_R^2 *( b_c * l/2) ; // Total 3-Φ magnetizing var in Mvar
// for case (d)
g = %i * sqrt(x_L/x_C) ; // rad/mi
g_l = g * l ; // rad
V_R_oc = V_S / cosh(g_l) ; // Open-circuit receiving-end voltage in kV
X_C = x_C * 2 / l ;
V_R_oc1 = V_S * ( - %i * X_C/( - %i * X_C + %i * X_L) ) ; // Alernative method to find Open-circuit receiving-end voltage in kV
// DISPLAY RESULTS
disp("EXAMPLE : 4.13 : SOLUTION :-") ;
printf("\n (a) Total 3-Φ SIL of line , SIL = %.2f MVA/mi \n",SIL) ;
printf("\n Total 3-Φ SIL of line for total line length , SIL = %.2f MVA \n",SIL1) ;
printf("\n (b) Maximum 3-Φ theortical steady-state power flow limit , P_max = %.2f MW \n",P_max) ;
printf("\n (c) Total 3-Φ magnetizing var generation by line capacitance , Q_C = %.2f Mvar \n",Q_C) ;
printf("\n (d) Open-circuit receiving-end voltage if line is open at receiving end , V_R_oc = %.2f kV \n",V_R_oc) ;
printf("\n From alternative method ,") ;
printf("\n Open-circuit receiving-end voltage if line is open at receiving end , V_R_oc = %.2f kV \n",V_R_oc1) ;
|
cfb6284ffdfbc9094d2b9b25eb591caaccc0c2e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH3/EX3.8/Ex3_8.sce | 0e7eb7e107503e2fecff98fbf21e704e5ba90b8b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 673 | sce | Ex3_8.sce | //Ex3_8 Pg-185
clc
disp("Forward current I is given by ")
disp(" I=I0*exp(V/(n*Vt))-1")
I_22=poly(0,"I_22")
V=0.3 //voltage
n=1 //constant
T1=22+273 //temperature T1 in Kelvin
Vt1=T1/11600
I=I_22*(exp(V/0.025)-1)
disp("When temperature rises to 72 degree celcius, then")
T2=72+273 //temperature T2 in Kelvin
Vt2=T2/11600
TR=T2-T1 //temperature rise
I_72=poly(0,"I_72")
I_72=I_22*(2)^(TR/10)
I_hash=I_72*(exp(V/(Vt2))-1)
for_cur_rises=I_hash/I
disp("Thus, at 72 degree celcius Forward current rises by ")
disp(for_cur_rises)
cur_I=768849.72
cur_I_hash=162753.79
FCR=cur_I/cur_I_hash
printf("\n = %.2f",FCR)
//answer in the book is wrong
|
c5347e31da8f3062705c16f9cc6c11bfd04dda94 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1802/CH5/EX5.13/Exa5_13.sce | 922b0ca733868c1ecdfc66b52060ec1e6b8ffb37 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 571 | sce | Exa5_13.sce | //Exa 5.12
clc;
clear;
close;
//Given Data :
format('v',8);
R=1.5;//in ohm
X=4;//in ohm
VR=11*1000;//in volt
VRphase=VR/sqrt(3);//in volt/phase
P=6000;//in KVA(power delivered)
cos_fir=0.8;//unitless
I=P*1000/(3*VRphase);//in Ampere
Vs=VRphase+cos_fir*I*R+sqrt(1-cos_fir^2)*I*X;//in volt
Vs=Vs*sqrt(3);//in volt(not phase)
Reg=(Vs-VR)*100/VR;//in %
disp(Reg,"% Regulation : ");
losses=3*I^2*R/1000;//in Kw
Pr=P*cos_fir;//in wats(Receiving end power)
Psend=Pr+losses;//in watts
Eff=Pr*100/Psend;//unitless
disp(Eff,"Transmission efficiency (in %) :"); |
738d9bfd2eba2ff07282a45a148c683a7724b037 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3492/CH2/EX2.9/Ex2_9.sce | 36f2bdf7bc258298f520d1e87959130f86d8e27a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 615 | sce | Ex2_9.sce | clc
//Chapter2
//Ex_2.9
//Given
P=40 //in Watt
V=120 //in Volts
D=33*10^-6 //in meter
L=0.381 //in meter
To=293 // in kelvin
P_radiated=40//in watt
epsilon=0.35
sigma_s=5.6*10^-8 //in W/m2/K4
I=P/V
A=%pi*D^2/4
R=V/I // resistance of the filament
p_t=R*A/L // resistivity of tungsten
p_o=5.51*10^-8 // resistivity at room temperature in ohm*m
//p_t=p_o*(T/To)^1.2
T=To*(p_t/p_o)^(1/1.2)
disp(T,"Temperature of the bulb when it is operated at the rated voltage in Kelvin is ")
A=L*%pi*D
//Stefans Law
T=(P_radiated/(epsilon*sigma_s*A))^(1/4)
disp(T,"Temperature of the filament in kelvin is")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.