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
3e85a11f538d7d1bb3216bca7754232a62b07a39
85796c94fc9059fcb09697ae3509fd9488d77aa8
/getMove.sci
96dd9b9a1d16b97e4c3b7f6f78043b1cf6c556c2
[]
no_license
MyCSDegree/snakenladder
680d5cd7687da44a227c2b242765ab96e0b7534d
bedb901cbcede9ca3972514ec12686b33a9eaf85
refs/heads/master
2016-08-06T04:08:29.276575
2015-10-28T01:16:18
2015-10-28T01:16:18
42,781,425
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,572
sci
getMove.sci
function [q]=getMove(x, throw, str, player) q = x + throw; if (player = 1) then printGraph(q, p0, c, s_player, s_ai, c_player); else printGraph(q, c0, p, s_ai, s_player, c_ai); end sf_snake = %f; sf_ladder = %f; while (sf_snake = %f) and (sf_ladder = %f) for i = 1:sizesnake if (snake_head(1, i) == x) then printf("\t\tuh oh! snake at %i!\n\t\t %s moves to %i\n", x, str, snake_tail(1, i)); if (player = 1) then p0 = q; else c0 = q; end q = snake_tail(1, i); if (player = 1) then printGraph(q, p0, c, s_player, s_ai, c_player); else printGraph(q, c0, p, s_ai, s_player, c_ai); end sf_snake = %t; break; end end if (sf_snake = %f) then sf_snake = %t; end for i = 1:sizeladder if (ladder_bottom(1,i) == x) then printf("\t\tyay! ladder at %i!\n\t\t%s moves to %i\n", x, str, ladder_top(1, i)); if (player = 1) then p0 = q; else c0 = q; end q = ladder_top(1, i); if (player = 1) then printGraph(q, p0, c, s_player, s_ai, c_player); else printGraph(q, c0, p, s_ai, s_player, c_ai); end sf_ladder = %t; break; end end if (sf_ladder = %f) then sf_ladder = %t; end end // while endfunction
1434e8cc8d45378ef2f9767495fc655ad876fa3a
449d555969bfd7befe906877abab098c6e63a0e8
/2660/CH13/EX13.5/Ex13_5.sce
ea8756d10be4dbbe1806f222f86eaa8fef264fc3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
753
sce
Ex13_5.sce
clc d = 150 // diameter in mm h = 10 // thickness in mm R = d/2 // radius in mm mu = 0.2 // coefficient of friction sigma_0 = 200 // N/mm^2 Rs = R - (h/(2*mu))*log(1/(sqrt(3)*mu)) // sticking radius in mm Ps = sigma_0*exp(2*mu*(R-Rs)/h) // pressure at sticking radius in N/mm^2 function y=f(r) y=2*%pi*r*sigma_0*exp(2*mu/h*(R-r)) endfunction L_sld = intg(48.5,75,f) L_sld = L_sld/1000 // load on sliding portion in kN Pc = Ps + (2*sigma_0*Rs)/(h*sqrt(3)) // pressure at centre in N/mm^2 L_sp = (Pc+Ps)*%pi*(Rs)^2/(2*1000) // load on sticking portion in kN F_l = L_sld + L_sp // total forging load in kN printf("\n Sticking radius = %0.1f mm \n Total forging load = %0.3f MN",Rs ,F_l/1000) // 'Answers vary due to round off error'
22732ce7f4822d7c90bcf5b6aec59941559c0f54
676ffceabdfe022b6381807def2ea401302430ac
/solvers/IncNavierStokesSolver/Tests/ChanStability_adj_Ar.tst
fd312c62592051c47b9078e2a56f9d0c7a97224a
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
674
tst
ChanStability_adj_Ar.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>Adjoint stability (Arpack): Channel</description> <executable>IncNavierStokesSolver</executable> <parameters>ChanStability_adj_Ar.xml</parameters> <files> <file description="Session File">ChanStability_adj_Ar.xml</file> <file description="Session File">ChanStability_adj_Ar.bse</file> <file description="Session File">ChanStability_adj_Ar.rst</file> </files> <metrics> <metric type="Eigenvalue" id="0"> <value tolerance="0.001">1.00031,0.0349782</value> <value tolerance="0.001">1.00031,-0.0349782</value> </metric> </metrics> </test>
862edb671d705bbf35c6f539b0a45645e5b9d45c
449d555969bfd7befe906877abab098c6e63a0e8
/3835/CH1/EX1.13/Ex1_13.sce
527f55d3c748a934774820144dc256ba6843bec3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
263
sce
Ex1_13.sce
clear // //values are obtained from the graph i=10 //10t A for 0 to 1 second d=10 //where di/dt is 10 L=2 // at one second v=L*d printf("\n v= %0.1f v",v) //for 1 to 5 seconds d=-5 //at t=3 seconds voltage across the inductor is v=L*d printf("\n v= %0.1f v",v)
9fdfcc93ebc6fefa2f4e366bc6845ce4a5b7fb2e
449d555969bfd7befe906877abab098c6e63a0e8
/1445/CH2/EX2.7/Ex2_7.sce
a2b70e663553d6173d880b62c79d019ad35df853
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
704
sce
Ex2_7.sce
//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT //Example 7 clc; disp("CHAPTER 2"); disp("EXAMPLE 7"); //VARIABLE INITIALIZATION s1=300; //apparent power in kVA pf1=0.65; //power factor(lagging) pf2=0.85; //power factor(lagging) //SOLUTION //solution (a) p=s1*pf1; //active power q1=sqrt((s1^2)-(p^2)); disp(sprintf("(a) To bring the power factor to unity, the capacitor bank should have a capacity of %f kVAR",q1)); //solution (b) s2=p/pf2; q2=sqrt((s2^2)-(p^2)); disp(sprintf("(b) To bring the power factor to 85%% lagging, the capacitor bank should have a capacity of %f kVAR",q2)); //END
9eb9c0991742ce58abf8bd26470c371d90052d02
449d555969bfd7befe906877abab098c6e63a0e8
/3428/CH15/EX9.15.12/Ex9_15_12.sce
2acc3570bcc97eda9c4160346477aa80c330ce0d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
164
sce
Ex9_15_12.sce
//Section-9,Example-3,Page no.-E.13 //To calculate E0 cell for the given cell. clc; E0_cathode=0.77 E0_anode=0.76 E0=E0_anode+E0_cathode disp(E0,'Emf of the cell')
867d9a9fe9db3738c301b255676b854f82a014e7
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH2/EX2.1/Ex2_1.sce
c1d0dd40ed182e681e697d1c537c7a38607f9f3f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
393
sce
Ex2_1.sce
clc d = 1 // Assumption l = 1 // Assumption A_ACDB = (%pi/4)*(1/3)*((1.05*d)^2)*10.5*l - (%pi/4)*(1/3)*d^2*10*l // Area of ABCD A_AEFB = (%pi/4)*(1/3)*((1.1*d)^2)*11*l - (%pi/4)*(1/3)*d^2*10*l // Area of AEFB t = 100*(A_ACDB/A_AEFB) printf("\n Example 2.1") printf("\n The straight bore thermometer reading will be %f degree Celsius.",t) //The answers vary due to round off error
e6bc056c9612c19800f6a9c181df8e8fdcf01bd5
449d555969bfd7befe906877abab098c6e63a0e8
/572/CH11/EX11.4/c11_4.sce
224bad2789c284ce492467f46148376051ea7c00
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,877
sce
c11_4.sce
//(11.4)Using p–v–T data for saturated water, calculate at 100C (a) hg - hf, (b) ug - uf, (c) sg - sf. Compare with the respective steam table value. //solution //analysis //For comparison, Table A-2 gives at 100C, hgf =2257 //in kj/kg ugf = 2087.6 //in kj/kg sgf = 6.048 //in kj/kg.K printf('from table, hg-hf = %f',hgf) printf('\nfrom table, ug-uf = %f',ugf) printf('\nfrom table, sg-sf = %f',sgf) //(a) T = 373.15 //in kelvin //If we plot a graph between temperature and saturation pressure using saturation pressure–temperature data from the steam tables, the desired slope is: delpbydelT = 3570 //in N/(m^2.K) vg = 1.673 //in m^3/kg vf = 1.0435e-3 //in m^3/kg //from the Clapeyron equation hgf = T*(vg-vf)*delpbydelT*10^-3 //in kj/kg printf('\n\npart(a)using Clapeyron equation, hg-hf = %f',hgf) //(b) psat = 1.014e5 //in N/m^2 hgf = 2256 //can be obtained using IT software in kj/kg ugf = hgf - psat*(vg-vf)/10^3 //in kj/kg printf('\npart(b)ug-uf = %f',ugf) //(c) sgf =hgf/T //in kj/kg.K printf('\npart(c)sg-sf = %f',sgf)
4faad1b1b84a8ca118d8f937bc457172aec9a233
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH10/EX10.15/example10_15.sce
5bf3e996f39eb75159814f90e980f23c6828f92c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
135
sce
example10_15.sce
r1=0.4; r2=1; rl=2; v1=12; v2=15; i1=v1/r1; i2=v2/r2; vx=(i1+i2)/(1/r1+1/r2+1/rl); disp("the load voltage (in V) is");disp(vx);
82359e6b273cf0ede8148e9db6a2b2cf585dd886
449d555969bfd7befe906877abab098c6e63a0e8
/1938/CH7/EX7.16/7_16.sce
65a7ec5fdb2f870959888ac6f50e48d71c9f3385
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
616
sce
7_16.sce
clc,clear printf('Example 7.16\n\n') V_L=3300 V_ph=V_L/sqrt(3) E_bph=V_ph Z_s=complex(0.5,5) //synchronous impedance theta=(%pi/180)*phasemag(Z_s) //phasemag returns angle in degrees, not radians P=8,f=50 //pole and frequency delta_mech=3 //mechanical angle in degrees by which rotor is behind delta_elec=(P/2)*delta_mech //delta mech converted to electrical degrees E_Rph=sqrt( E_bph^2 + V_ph^2 -2*E_bph*V_ph*cosd(delta_elec) ) I_aph= E_Rph/abs(Z_s) //from the phasor diagram phi=theta- asin( sind(delta_elec)*E_bph/E_Rph ) pf=cos(phi) printf('power factor of the motor is %.5f lagging',pf)
599dee04fc03fe421a3811f95d09cd0cc6258748
449d555969bfd7befe906877abab098c6e63a0e8
/3809/CH6/EX6.1/EX6_1.sce
a1318dcda98e6bba07dd79ffbf6b1a86a630d065
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
258
sce
EX6_1.sce
//Chapter 6, Example 6.1 clc //Initialisation w=1000 //angular frequency L=10**-3 //inudctance in henry //Calculation Xl=w*L //reactance in ohm //Results printf("Reactance, Xl = %d Ohm",Xl)
aef9ae3a3c4ab0c7feeb00d665490502bc30a41c
ac1f8441b0319b4a391cd5a959bd3bb7988edfa7
/data/news2015/news2015/SplitsNEWS15/EnHi/enhi.4.tst
1e7cdfec892186c3fcce6f4fca15d0276dfa95f9
[ "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
67,732
tst
enhi.4.tst
a a c h a a r y a n a n d a n आ च ा र ् य न ं द न a a d h a d i n a a d h i r a a t आ ध ा द ि न आ ध ी र ा त a a h l a d आ ह ् ल ा द a a h u t i आ ह ु त ी a a k h r i g o l i आ ख ि र ी ग ो ल ी a a n c h a l k e p h o o l आ ँ च ल क े फ ू ल a a n k h o n a n n k h o n m e i n आ ँ ख ो ं आ ँ ख ो ं म े ं a a n s o o a u r m u s k a n आ ँ स ू औ र म ु स ् क ा न a a q i b j a v e d आ क ि ब ज ा व े द a a s आ स a a t i k आ त ि क a b b a s i अ ब ् ब ा स ी a b d u l g a n i अ ब ् द ु ल ग न ी a b d u l m a t i n अ ब ् द ु ल म त ी न a b d u l m u j i b अ ब ् द ु ल म ु ज ी ब a b d u l q a a d i r अ ब ् द ु ल क ा द ि र a b d u l w a d o o d अ ब ् द ु ल व द ू द a b d u l w a l e e अ ब ् द ु ल व ल ी a b d u r r a h a m a a n अ ब ् द ु र र ह म ा न a b d u r r a s h i d अ ब ् द ु र र श ी द a b d u r r e h m a n अ ब ् द ु र र ह म ा न a b d u s s u b b o o h अ ब ् द ु स स ु ब ् ब ू ह a b h a y n a n d a a अ भ य न न ् द ा a b h i l a s h a a अ भ ि ल ा ष ा a b h i m a n i अ भ ि म ण ि a b h i n e t r i अ भ ि न े त ् र ी a c a r y a t a n a y a अ क र ् य त न य ा a c h a l a a p a t i अ च ल ा प त ि a c h a l e s w a r a अ च ल े श ् व र a c h a n d अ च ं द a c h i n d r अ च ि ं द ् र a c k l a n d a r t m u s e u m अ क ल ै ं ड आ र ् ट म ् य ु ज़ ि य म a c t i v i t y ए क ् ट ी व ि ट ी a d a l a t अ द ा ल त a d a m s s h o r e b i b l e b a p t i s t ए ड म ् स श ॉ र े ब ा य ब ल ब ै प ट ि स ् ट a d a r s h आ द र ् श a d a s r o a d आ द स र ो ड a d e l a i d e ए ड ी ल े ड a d i d a s ए ड ी ड ा स a d m i r a l t y ए ड म ि र ै ल ् ट ी a d o n i s ए ड ो न ि स a d v a i t अ द ् व ै त a f s h a n अ फ ् श ा ं a g a a t h a अ ग ा थ ा a g r a c a n t o n m e n t आ ग र ा क ै न ट ॉ न म े ं ट a h i j i t अ ह ि ज ि त a h m a d a l - b a k k a i a l - k u n t i अ ह म द अ ल - ब क ् क ा ई अ ल - क ु ं त ी a h m a d p u r j u n c t i o n अ ह म द प ु र ज ं क ् श न a h m e d a r - r i f a i अ ह म द अ र - र ि फ ा ई a h w a a n i t आ ह ् व ा न ि त a i n s l i e ऐ ं स ् ल ी a j a y अ ज य a j a y j a d e j a अ ज य ज ड े ज ा a j e e b u s s h u k r i y a अ ज ी ब स श ु क ् र ि य ा a k a a r आ क ा र a k h i l a अ ख ि ल ा a k o r a अ क ो र ा a l h i l a l अ ल ह ि ल ा ल a l a i n अ ल ै न a l f r e d t e n n i s o n अ ल ् फ ़ ् र े ड ट े न ी स न a l g a w a n अ ल ् ग ा व न a l i g a r h अ ल ी ग ढ ़ a l i m a अ ल ी म ा a l i m a a अ ल ी म ा a l l a h a b a d c i t y अ ल ा ह ा ब ा द स ि ट ी a l m o d a अ ल ् म ो ड ा a l o y s i u s अ ल ो य स ि य स a l t h e a ए ल ् थ ि य ा a m a a n a t अ म ा न त a m a l a आ म ल ा a m a n a t h अ म ा न ा थ a m a n d a a अ म ा ं ड ा a m a r t y a अ म र ् त ् य a m e e n a अ म ी न ा a m e e r i g a r e e b i अ म ी र ी ग र ी ब ी a m g u r i अ म ग ु र ी a m i r अ म ी र a m m a s a n d r a अ म ् म ा स ं द ् र ा a m r e e k अ म र ी क a m r i t a s h अ म ृ त ा श a m r i t e s h a y a अ म ृ त े श य a n a h i d अ न ह ि द a n a p a r t i अ न ा प र ् त ी a n a r a अ न ा र ा a n a s t a s i a ए न े स ् ट े स ि य ा a n c h o r e t ए न ् क ो र े ट a n d h a k a n o o n अ ं ध ा क ा न ू न a n d r e a s आ ं द ् र ि य ा स a n d r o s m a r i t i m e m u s e u m ए ण ् ड ् र ॉ स म ै र ‍ ि ट ा इ म म ् य ु ज़ ि य म a n g a a r i k a अ ं ग ा र ि क ा a n g a d अ ं ग द a n g o o t h i अ ं ग ू ठ ी a n i m i s h अ न ि म ि श a n i r u d h a अ न ि र ु द ् ध a n i s a अ न ी स ा a n k l e s h w a r अ ं क ल े श ् व र a n m o l g h a d i अ न म ो ल घ ड़ ी a n n e l i s e ए न ् न े ल ी ज a n o k h a p r e m अ न ो ख ा प ् र े म a n o u t i m e d o u i n e अ न ा उ ट ा इ म ड ो य ू न a n t a r e s ए ं ट े य र ् स a n u p p u r j u n c t i o n अ न ु प प ु र ज ं क ् श न a n w e s h a अ न ् व े श ा a p a l a अ प ल ा a p h r o d i t e ए फ ् र ो ड ा इ ट a p n i c h h a y a अ प न ी छ ा य ा a p o l l o t y r e s अ प ो ल ो ट ा य र ् स a p p l e b e e ए प ल ब ी a r e t h a ए र े थ ा a r e t h a f r a n k l i n ए र ी थ ा फ ़ ् र े ं क ल ि न a r g h e s h w a r अ र ् घ े श ् व र a r g o n i a f r i e n d s अ र ् ग ो न ि य ा फ ् र े ं ड स a r i b अ र ी ब a r t s u n j e m u s e u m आ र ् ट स ं ज म ् य ु ज़ ि य म a r u n a c h a l अ र ु ण ा च ल a s a f p u r आ स फ प ु र a s h l e y m a l l e t t ए श ल े म ै ल े ट a s h r a f a l i अ श र फ अ ल ी a s i f m u j t a b a आ स ि फ म ु ज ् त ब ा a s o m i y a p r a t i d i n अ स ो म ‍ ि य ा प ् र त ि द ‍ ि न a s u n c i o n ए स ु स ि आ न a t a l o ए ट ल ो a t o n e m e n t l u t h e r a n अ ट ॉ न म े ं ट ल ु थ े र ा न a t r e y a अ त ् र े य ा a t t i l a j o z s e f p r i z e ए ट ी ल ा ज ो स फ प ् र ा इ ज़ a u l a d औ ल ा द a u t o n a i t o n ऑ ट ो न े श न a u z a a r औ ज ़ ा र a v r i l ए व ् र ि ल a y e m i l a n k i b e l a आ ई म ि ल न क ी ब े ल ा a z a r a a q अ ज़ र ा क a z a r a q i अ ज़ र ा क ी a z i z m a h m u d h u d a y i अ ज़ ी ज़ म ह म ू द ह ु द ा ई b a a l a g o p a a l ब ा ल ग ो प ा ल b a a l a k r i s h n a ब ा ल क ृ ष ् ण b a a l a m a n i ब ा ल म ण ि b a a l e e ब ा ल ी b a b a r p u r ब ा ब र प ु र b a c h w a r a ब च व ा र ा b a d a u r b a d n a a m ब द औ र ब द न ा म b a d h t i k a n a a m d a d h i ब ढ ़ त ी क ा न ा म द ा ढ ़ ी b a d l a a u r b a l i d a n ब द ल ा औ र ब ल ि द ा न b a d l i ब द ल ी b a d r i n a t h ब द ् र ि न ा थ b a d r i n a t h ब द ् र ी न ा थ b a d s h a h n a g a r ब ा द श ा ह न ग र b a g b a h r a ब ा ग ब ह र ा b a g h a w a t ब ग ा व त b a h a d u r g a r h ब ह ा द ु र ग ढ ़ b a j a r a n g a b a l e e ब ज र ं ग ब ल ी b a l a n c e b e a m ब ै ल े ं स ब ी म b a l h a r s h a h ब ल ् ह ा र श ा ह b a l v i n d a r ब ल व ि ं द र b a n d o n e o n ब ै ं ड ो न ि य न b a n g ब ं ग b a n g u i ब ै ं ग ई b a n k o f a m e r i c a p l a z a ब ै ं क ऑ फ अ म े र ि क ा प ् ल ा ज ़ ा b a n k o f c h i n a ब ै ं क ऑ फ च ा य न ा b a n n e r ब ै न र b a n s a r i ब ं स र ी b a p a t l a ब ा प त ् ल ा b a q e e ब क ी b a r h a r w a j u n c t i o n ब र ह र व ा b a r n e t t ब ा र ् न े ट b a r q i ब र ् क ि b a r s a t k i r a a t ब र स ा त क ी र ा त b a r u n a ब र ु ण ा b a s m a h ब स ् म ा ह b a s t a ब ा स ् त ा b a t r a ब त ् र ा b a y e r ब ा य र b a z a r b a n d k a r o ब ा ज़ ा र ब ं द क र ो b e a a b r o o ब े आ ब र ू b e a c h ब ी च b e a v e r h e a d ब े व र ् ह े ड b e d i ब े द ी b e e n k a j a d u ब ी न क ा ज ा द ू b e e s v i s a d i ब ी स व ी स द ी b e e t e d i n ब ी त े द ि न b e g u n a h ब े ग ु न ा ह b e l w a l k a r ब े ल व ल क र b e n a z i r b h u t t o ब े न ज ी र भ ु ट ् ट ो b e n s o n v a l e c o v e n a n t ब े न स ो न ् व ् ह ल े क ॉ न ् व ् ह े न ् ट b e o h a r i ब े व ह ा र ी b e r c h t e s g a d e n ब े र श े त ् ज ़ ग ै ड े न b e t h a n y e v a n g e l i c a l f r e e ब े थ ा न ी ए व न ग े ल ि क ल फ ़ ् र ी b h a d o h i भ द ो ह ी b h a d r a n भ द ् र न b h a g w a n p a r s h u r a m भ ग व ा न प र श ु र ा म b h a g w a t c h a n d r a s h e k h a r भ ा ग व त च न ् द ् र श े ख र b h a k t p r a l h a d भ क ् त प ् र ह ल ा द b h a l w a n भ ल ् व ा न b h a m भ ा म b h a n e s h भ ा न े श b h a n v a r a s i n h भ ं व र स ि ं ह b h a r a t i भ ा र त ी b h a r a t p u r भ र त प ु र b h a s i n भ स ी न b h a t k a l भ ट क ल b h a v e s h भ ा व े श b h e e l w a d a भ ी ल व ा ड ा b h o p a t k a r भ ो प ट क र b i g b r o t h e r a w a r d s ब ि ग ब ् र द र अ व ा र ् ड ् ‍ स b i l l i a r d s ब ि ल ि य र ् ड ् ‍ स b i l l y g r a h a m ब ि ल ी ग ् र ा ह म b i n d u ब ि न ् द ु b i r s r e s h t h o ब ी र श ् र े ष ् ठ ो b i s h a n ब ि श न b i s l a ब ि स ् ल ा b o b h o p e ब ॉ ब ह ो प b o e t a d i p p e n a a r ब ो ए ट ा ड ि प ् प े न ा र b o m b o ब ॉ म ् ब ो b o s e c o r p ब ो स क ॉ र ् प b o z e m a n ब ॉ ज म े न b r a d h o d g e ब ् र ै ड ह ॉ ज b r a x t o n ब ् र े क ् स ट न b r e a n d o w n f o r t ब ् र े न ड ा उ न फ ो र ् ट b r i a n c l o s e ब ् र े न क ् ल ो स b r i a n r o s e ब ् र े न र ो ज़ b r o o k l y n ब ् र ु क ल े b u a l i s h a h q a l a n d a r ब ू अ ल ी श ा ह क़ ल ं द र b u l g a r i a ब ु ल ् ग ा र ि य ा b y a d a r a h a l l i ब ् य ा द र ा ह ल ी c a h o r a b a s s a d a m क ह ो र ा ब स ् स ा ड ै म c a l l i a क ै ल ि य ा c a n a d a s o u t h e r n p e t r o l e u m क न ा ड ा स ा उ द र ् न प े ट ् र ो ल ि य म c a n y o n क े न ् य ॉ न c a p e c o d क े प क ॉ ड c a r l f r i e d r i c h g a u s s p r i z e क ा र ् ल फ ् र े ड र ि क ग ॉ स प ् र ा इ ज़ c a r l j u n g क ा र ् ल ज ं ग c a r l a क ा र ् ल ा c a r n i v a l q u e e n क ा र ् न ि व ल क ् व ी न c a s t l e c l i n t o n क ै स ल क ् ल ि ं ट न c a t e r p i l l a r क े ट र प ि ल र c a t h y b e t t s क ॅ थ े ब े ट ् स c e l e s t e स े ल े स ् ट ी c e n d a n t स े ड े ं ट c e n t r a l m i c h i g a n u n i v e r s i t y स े ं ट ् र ल म ि श ि ग न य ू न ि व र ् स ि ट ी c h a m a क ा म ा c h a m b a l k a b a d s h a h च ं ब ल क ा ब ा द श ा ह c h a m p a k a l i च म ् प क ल ी c h a n d a a u r b i j l i च ं द ा औ र ब ि ज ल ी c h a n d i s o n a च ा ँ द ी स ो न ा c h a n d i a r o a d च ं द ि य ा र ो ड c h a n d i g a d i a च ं ड ी ग ड़ ि य ा c h a n d p u r च ा ँ द प ु र c h a n d r a l e k s h a च ं द ् र ल े क ् ष ा c h a n d r a n च ं द ् र न c h a n d r i k a च ं द ् र ि क ा c h a n d r i m a च ं द ् र ि म ा c h a n p a t i a च न प ट ि य ा c h a r c h a n d च ा र च ा ँ द c h a r d a r v e s h च ा र द र व े श c h a r i t r a h e e n च र ि त ् र ह ी न c h a r l e m a g n e च ा र ् ल म ै ग ् न े c h a r l e s s t u r t u n i v e r s i t y च ा र ् ल ् स स ् ट र ् ट य ू न ि व र ् स ि ट ी c h a r u p r a b h a च ा र ु प ् र भ ा c h a t e च ा ट े c h a u g h u l e च ौ घ ु ल े c h a w a च ा व ा c h a w a p a l l च व ा प ल c h e t a n च े त न c h h a b i छ ब ि c h h a t r e छ त ् र े c h h i p a d o h a r छ ि प ा द ो ह र c h h u p a c h h u p e e छ ु प ा छ ु प ी c h i k m a n g l o o r च ि क म ं ग ल ू र c h i l l च ि ल c h i r a n j e e v i च ि र ं ज ी व ी c h i t r a w a d च ि त ् र व ा ड ़ c h i t t a p u r च ि त ् त प ु र c h o r i c h o r i च ो र ी च ो र ी c h r i s g a y l e क ् र ि स ग े ल c h r i s t i a n i t y क ् र ि श ् च ि य ा न ि ट ी c h r i s t o p h e r क ् र ि स ् ट ो फ र c l a r a क ् ल ा र ा c l a r i s s a क ् ल े र ि स ा c l e b u r n e क ् ल े ब र ् न c l e m e n t i n e क ् ल े म े ं ट ा इ न c o b h h e r i t a g e c e n t e r क ो ब ह े र ‍ ि ट े ज स े ं ट र c o b r a g i r l क ो ब र ा ग र ् ल c o l i n c r o f t क ॉ ल ि न क ् र ो फ ् ट c o l i s t a क ो ल ि स ् ट ा c o l o s s u s क ॉ ल ॉ स स c o m m a n d e r क म ा ं ड र c o m m e n c e m e n t b a y क म े ं स ् म े ं ट ब े c o m m e r z b a n k क ॉ म र ् ज ़ ब ै ं क c o n n o r क ो न र c o n s t e l l a t i o n e n e r g y क ॉ न ् स ट े ल े श न ए न र ् ज ी c o n t e v e r d e क ॉ न ् ट े व र ् ड े c o u n t r y w i d e f i n a n c i a l क ं ट ् र ी व ा इ ड फ ़ ा इ न े ं श ि य ल c r e s c e n t c i t y क ् र े स े ं ट स ि ट ी c r e t e m a r i t i m e m u s e u m क ् र े ट म ै र ी ट ा इ म म ् य ु ज़ ि य म c r i c k e t e r क ् र ि क े ट र c r o s s c o u n t r y s k i i n g क ् र ॉ स क ं ट ् र ी स ् क ी इ ं ग c u b a क ् य ू ब ा d a a k a ड ा क ा d a a m i n द ा म ि न d a b e e r ड ब ी र d a b u r i n d i a ड ा ब र इ ं ड ि य ा d a g a n द ग न d a i e i द ै ई d a i n i k a g r a d o o t द ै न ‍ ि क अ ग ् र द ू त d a l e v i l l e b a p t i s t ड े ल व ि ल े ब ै प ट ि स ् ट d a m a a d द ा म ा द d a n d a v i d p r i z e ड ै न ड े व ि ड प ् र ा इ ज़ d a n a द ा न ा d a n n i e l l ड े न ि य ल d a r l i n g d a r l i n g ड ा र ् ल ि ं ग ड ा र ् ल ि ं ग d a r r i u s ड ै र ि य स d a t i a द त ि य ा d a v i d s o n ड े व ि ड स न d e e p a s h i k h a द ी प श ि ख ा d e l h i j u n c t i o n ड े ल ् ह ी ज ं क ् श न d e l h i s h a h d a r a ड े ल ् ह ी श ा ह द र ा d e l o r a ड े ल ो र ा d e n e s h r a m d i n द े न े श र ा म द ि न d e t e c t i v e ड ि ट े क ् ट ि व d e u t s c h l a n d ड े ट स ् क ल ै ं ड d e v e n _ d r द े व े न ् द ् र d e v i p r a s a d द े व ी प ् र स ा द d e v o n s m i t h ड े व न स ् म ि थ d e w a l g a o n द े व ा ल ग ा ं व d e w e y ड े व े d h a k a ढ ा क ा d h a m n i ध म न ी d h a n o a ध न ो आ d h a r a m p u r i ध र म प ु र ी d h a r i t r i ध र ‍ ि त ् र ी d h a r i t r i ध ा र ि त ् र ि d h i r p u r ध ी र प ु र d h r u v ध ् र ु व d h u l k o t ध ु ल क ो ट d h w a n i ध ् व न ि d i l a k h i r d i l h a i द ि ल आ ख ि र द ि ल ह ै d i l r u b a t a n g e w a l i द ि ल र ु ब ा त ा ँ ग े व ा ल ी d i s p u r द ि स प ु र d i y a द ि य ा d o m a t w a l e द ो म त व ा ल े d o b r o ड ॉ ब र ो d o b r y ड ॉ ब र ी d o n a l ड ो न ल d o r j a n ड ॉ र ् ज न d o r o t h y ड ो र ो थ ी d u b a h a द ु ब ा ह ा d u d d h i n a g a r द ु ध ी न ग र d u d h a n i द ू ध ा न ी d u m r a o n द ु म र ा ं व d v o y a n k a द व ो य ं क ा e f f i n g h a m ए फ ि ं घ म e k b a a r m u s k u r a d o ए क ब ा र म ु स ् क ु र ा द ो e k s a a l ए क स ा ल e k a m b i r ए क म ब ी र e k a n j e e t ए क न ज ी त e k c h a r i इ क च र ी e l a i n e ए ल े न ा e l a n i इ ल े न ी e l b u r z ए ल ् ब ु र ् ज ़ e l d e r p h a r m a ए ल ् ड र फ ़ ा र ् म ा e l i z a b e t h c l a i r p r o p h e t ए ल ी ज ़ ा ब े थ क ् ल े य र प ् र ो फ ़ े ट e l y a s इ ल ि य ा स e m i l i e ए म ि ल ी e n d e s a ए न ् ड े स ा e r n a k u l a m t o w n इ र न ा क ु ल म ट ा उ न e r n e s e t t l e f o r t अ र ् न स े ट ल फ ो र ् ट e r o d e j u n c t i o n इ र ो ड ज ं क ् श न e r z h e r z o g f r a n z f e r d i n a n d अ र ् ज़ र ज ़ ो ग फ ् र ै ं ज फ र ् ड ि न ा ं ड e s c o n d i d o ए स ् क ो न ड ि ड ो e s s a r s t e e l ए स ् स ा र स ् ट ी ल e t a ए ट ा e v e l y n इ व े ल ि न e w a इ व ा e x c e l l e n t g l o r y ए क ् स ी ल े ं ट ग ् ल ो र ी e z r a m o s e l e y ए ज़ ् र ा म ो स े ल े f a h i m फ ह ी म f a k h i r a h फ ख ी र ा ह f a n i n d r a फ ण ी ं द ् र f a q i h फ ़ क ी ह f a r a s a t फ र ा स त f a t s d o m i n o फ ़ े ट ् स ड ो म ि न ो f a u n i a फ ॉ न ि य ा f a u v e फ ॉ व f e d e r a l e x p r e s s फ ़ े ड े र ल ए क ् स प ् र े स f e n e l l a फ े न े ल ा f e r n a d o d e n o r o n h a m a r i n e फ र ् न े ं ड ो ड ी न ॉ र ो न ् ह ा म र ी न f e r o k फ े र ो क f e r r i s फ े र ि स f i a फ ि य ा f i n l a y फ ि न ल े f i n n फ ि न f i o r e n z a फ ि य ो र े ं ज़ ा f o o l a n फ ू ल न f o r b e s g o k a k फ ़ ो र ् ब ् स ग ो क ा क f o r d o n फ ो र ् ड न f o r r e s t e r फ ॉ र े स ् ट र f o r t a l b a n y फ ो र ् ट ए ल ् ब न ी f o r t b e n g h i s a फ ो र ् ट ब े ं घ ि स ा f o r t b i j r h i j n a u w e n फ ो र ् ट ब ि ज ‍ र ि ज न ॉ व े न f o r t b i j t i e n h o v e n फ ो र ् ट ब ि ज त ी न ह ॉ व े न f o r t b o v i s a n d फ ो र ् ट ब ॉ व ि स ै ं ड f o r t b r i d g e r फ ो र ् ट ब ् र ि ज र f o r t c o l u m b i a फ ो र ् ट क ो ल ं ब ि य ा f o r t d e s o t o फ ो र ् ट ड े स ॉ ट ो f o r t d i x फ ो र ् ट ड ि क ् स f o r t e f f o r d फ ो र ् ट ए फ ो र ् ड f o r t e l s o n फ ो र ् ट ए ल ् स न f o r t l e b o e u f फ ो र ् ट ल े ब ॉ य ू फ f o r t l o u d o u n फ ो र ् ट ल ॉ ड ू न f o r t m a n d a n फ ो र ् ट म ै ं ड न f o r t m c a n d r e w फ ो र ् ट म ै क ए ण ् ड ् र य ू f o r t n a t h a n h a l e फ ो र ् ट न ै थ न ह े ल f o r t p i c k e n s फ ो र ् ट प ि क न ् स f o r t s a i n t p h i l i p फ ो र ् ट स े ं ट फ ि ल ि प f o r t s a n c r i s t o b a l फ ो र ् ट स ै न क ् र ि स ् ट ो ब ल f o r t s i l o s o फ ो र ् ट स ि ल ो स ो f o r t s t e u r g a t फ ो र ् ट स ् ट ् ‍ य ू र ् ग े ट f o r t w o o d फ ो र ् ट व ु ड f o r t a l e z a d a g u i a फ ो र ् ट ा ल े ज ़ ा द ा ग ु इ आ f o r t a l e z a d o m o n t e फ ो र ् ट ा ल े ज ़ ा ड ो म ॉ न ् ट े f o x फ ॉ क ् स f r a n c i s फ ् र ा ं स ि स f r a n c o - r u s s i a n w a r फ ् र े ं क ो - र श ि य न व ा र f r a n k l o y a d r i g h t फ ़ ् र े क ल ॉ य ड र ा इ ट f r a n k l i n d . r o o s e v e l t फ ् र े ं क ल ि न ड ी . र ू स ब े ल ् ट f r e d t i t m u s फ ् र े ड ट ि ट म स f u e l - t e c h फ ़ ् य ू ल - ट े क f u j i फ ू ज ी f u l l e r फ ु ल र g a g r o l i ग ग र ो ल ी g a h m a r ग े ह म र g a i d h a n i ग ा य ध न ी g a l e n a ग े ल े न ा g a l l i a ग ै ल ि य ा g a l l i u m ग ै ल ि य म g a n g a k i s a u g a n d h ग ं ग ा क ी स ौ ग ं ध g a n g a m a n g r a h i b a l i d a n ग ं ग ा म ा ँ ग र ह ी ब ल ि द ा न g a o n h a m a r a s h e h a r t u m h a r a ग ा ँ व ह म ा र ा श ह र त ु म ् ह ा र ा g a u n a ग ौ न ा g a u r i k a ग ौ र ि क ा g a u t a m e e ग ौ त म ी g a v i n ग ै व ि न g a w a i y a ग व इ य ा g e o f f c o o k ज ि ऑ फ क ु क g e o r g e c a r l i n ज ॉ र ् ज क ा र ् ल ि न g e o r g e p a c k ज ॉ र ् ज प ै क g e r a r d ग े र ा र ् ड g e t e y ग े ट े g h a m a n d e e घ म ं ड ी g h a n e k a r घ ा ण े क र g h a n i y a h ग ़ न ि य ा ह g h a r o d a घ र ो ड़ ा g h i t b a h ग ़ ि त ् ब ा ह g h o l v a d घ ो ल व द g h o r a d o n g r i घ ो र ा ड ो ं ग र ी g h u m a r घ ू म र g i d a r p i n d i ग ि ड र प ि ं ड ी g i l l e s p i e ग ि ल े स ् प ी g i n a ज ी न ा g i n n y ज ी न ी g i r i k ग ि र ि क g i t a n o ग ि ट े न ो g i u l i o ग ि उ ल ि ओ g o b i ग ो ब ी g o k h a l e m e m o r i a l g i r l s s c h o o l , c a l c u t t a ग ो ख ल े म े म ो र ‍ ि य ल ग र ् ल ् स स ् क ू ल , क ै ल क ट ा g o l a g o k a r a n a t h ग ो ल ा ग ो क र न ा थ g o l d ग ो ल ् ड g o l d e n t e m p l e ग ो ल ् ड न ट े म ् प ल g o m b e s t r e a m ग ो ं ब े स ् ट ् र ी म g o m e r ग ो म र g o m o h j u n c t i o n ग ो म ो ह ज ं क ् श न g o o n j ग ू ँ ज g o p a n ग ो प न g o r e s u a r ग ो र े स ु व र g o u r d e ग ौ र ड े g r a e m e p o r t e r ग ् र ी म प ो र ् ट र g r a f z e p p e l i n ग ् र े फ ज े प ल ि न g u a r a n i ग ु र ा न ी g u l s a n o v a r ग ु ल स न ो व र g u l a b p u r a ग ु ल ा ब प ु र ा g u n d a ग ु ं ड ा g u n d e r i p p a l a m r e s e r v o i r ग ु न ् द े र ी प ् प ल म र ि ज़ र व ा य र g u n j a t i ग ु ं ज त ी g u n n a r m y r d a l ग ु न ् न ा र म ि र ् ड ल g u n t h e r ग ु ं थ र g u r a i a ग ु र इ य ा g u r b h a g a t ग ु र भ ग त g u r i y a ग ु र ि य ा g u r u d w a r a b e t m a s a h i b ग ु र ू द ् व ा र ा ब े ट म ा स ा ह ि ब g u r u d w a r a b h a t t a s a h i b ग ु र ू द ् व ा र ा भ ट ् ट ा स ा ह ि ब g u r u d w a r a c h h i h a r t a s a h i b ग ु र ू द ् व ा र ा छ ि ह र ट ा स ा ह ि ब g u r u d w a r a p a r i w a r w i c h h o d a ग ु र ू द ् व ा र ा प र ि व ा र व ि छ ो ड़ ा g w e n d o l y n ग ् व े ं ड ो ल ि न h a b o o s ह ब ू स h a j g i r i ह ज ग ि र ी h a m a r a w a t a n ह म ा र ा व त न h a m b u r g ह ै म ब र ् ग h a m d i ह म ् द ी h a m i m ह म ी म h a m z a h f a n s u r i ह म ज़ ा ह फ ं स ू र ी h a n i ह न ी h a n i f ह न ी फ h a n u m a n g a r h ह न ु म ा न ग ढ ़ h a r e r a m a h a r e k r i s h n a ह र े र ा म ा ह र े क़ ृ ष ् ण ा h a r i d w a r ह र ि द ् व ा र h a r i n a r a y a n a p t e ह र ी न ा र ा य ण आ प ट े h a r s i n g a a r ह र स ि ं ग ा र h a t h u r ह ठ ु र h a w a l a t ह व ा ल ा त h a y t h a m ह ै द म h e e r a m o t i ह ी र ा म ो त ी h e m a n g b a d a n i ह े म ं ग ब द ा न ी h e m p s t e a d ह े म ् प स ् ट े ड h e n r i c o ह े न र ी क ो h e r a p h e r i ह े र ा फ े र ी h e w l e t t - p a c k a r d ह ् य ू ल े ट - प ै क र ् ड h i c k o r y s t r e e t p r e s b y t e r i a n ह ि क ॉ र ी स ् ट ् र ी ट प ् र े स ् ब ि ट े र ि ट न h i g h w a y h o l d i n g s ह ा ई व े ह ो ल ् ड ि ं ग ् स h i l l s l u m s h n o n g v i l l a g e ह ि ल ् स ल म ् स न ा ँ ग व ि ल े ज h i s h a a m ह ि श ा म h o l l y h u n t e r ह ॉ ल ी ह ं ट र h o m e r ह ो म र h o n e y ह न ी h o t s p u r ह ॉ ट स ् प र h u a s a v e r a ह ु आ स व े र ा h u g e g r a n t ह ् य ू ज ग ् र ा ं ट h u l c h a l ह ल च ल h u m d i w a n e ह म द ी व ा न े h u m s u b u s t a d h a i n ह म स ब उ स ् त ा द ह ै ं h u m t o c h a l e p a r d e s ह म त ो च ल े प र द े स h u m t u m a u r w h o ह म त ु म औ र व ो h u m a y r a h ह ु म य र ा ह h u r m a t ह ु र म त h u s n k a c h o r ह ु स ् न क ा च ो र h y u g a ह ् य ू ग ा h y u n d a i m o t o r ह ु ं ड ई म ो ट र i a i n b u t c h a r t इ आ न ब ु च र ् ट i b n k h a f i f इ ब ् न ख फ ी फ i c h h i t a इ च ् छ ि त ा i d a l e e इ ड े ल ी i d a n a इ ड े न ा i l a इ ल ा i l a r i o इ ल े र ि य ो i l l u s t r i o u s इ ल स ् ट ् र ी य स i n c r e d i m a i l इ ं क ् र े ड ि म े ल i n d i a n a p o l i s इ ं ड ि य ा न ा प ो ल ि स i n d r a इ ं द ् र ा i n d r a k a r m a n इ ं द ् र क र ् म ण i q b a l s i k a n d e r इ क ब ा ल स ि क न ् द र i r f a n b h a t t i इ र फ ा न भ ट ् ट ी i r f a n f a z i l इ र फ ा न फ ा ज़ ि ल i s r a e l p r i z e इ स ् र ा ए ल प ् र ा इ ज़ i t o c h u इ त ो च ु i y a a d इ य ा द j a b p y a r k i s e s e h o t a h a i ज ब प ् य ा र क ि स ी स े ह ो त ा ह ै j a b e e n ज ब ी न j a b i r ज ब ी र j a c o b o r a m ज े क ब ऑ र म j a c q u e s r u d o l p h ज ै क ् व े स र ु ड ॉ ल ् फ j a g a d i s h ज ग द ि श j a g a d i s h ज ग द ी श j a g a n ज ग न j a m e s k i r t l e y ज े म ् स क र ् ट ल े j a n a n i ज न न ी j a n a s a h ज न स ह j a p a ज प j a s o o s ज ा स ू स j a s r a j ज स र ा ज j a t a n ज त न j a w a n i k i k a h a n i ज व ा न ी क ी क ह ा न ी j a y a d e e p ज य द ी प j e e t a n p a t e l ज ी त े न प ट े ल j e f f w i l s o n ज े फ व ि ल ् स न j e n i b e l l e ज े न ि ब े ल j e r r e l l ज े र े ल j e r r i c a ज े र ि क ा j e s i m a e ज े स ि म ी j e t t ज े ट j h a j j a r झ ज ् ज र j i c h a h t a h a i ज ी च ा ह त ा ह ै j i r a n i m o ज ि र ा न ि म ो j i v a n a ज ी व न j i v i n ज ि व ि न j i y o r a j a ज ि य ो र ा ज ा j o a n b a z e ज ो ए न ब े ज ़ j o d i ज ो ड ी j o h n g r i s h a m ज ॉ न ग ् र ि श ॅ म j o h n t a s h ज ॉ न ट ॅ श j o n e r e v e r s e ज ो न र ि व र ् स j o r d a n ज ॉ र ् ड न j o s h ज ो श j u m a ' ज ु म ा j u r r a t ज ु र ् र त j w a h a r l a l n e h r u u n i v e r s i t y i n d i a ज व ा ह र ल ा ल न े ह र ु य ू न ि व र ् स ि ट ी इ ं ड ि य ा j y o t i s h m a t i ज ् य ो त ि ष ् म त ी k a a n c h k i d e e w a r क ा ँ च क ी द ी व ा र k a d a m b a r i क ा द ं ब र ी k a d a m b a r i क ा द म ् ब र ी k a h l o क ा ह ल ो k a i s e k a h o o n क ै स े क ह ू ँ k a i s h o r i क ै श ो र ी k a l k y a h o g a क ल क ् य ा ह ो ग ा k a l a c h o r क ा ल ा च ो र k a l a s a m u n d a r क ा ल ा स म ं द र k a l i k a m b a l क ा ल ी क म ् ब ा ल k a l i m a n t a n क ल ी म ा ं ट न k a l i m b a क ा ल ि म ् ब ा k a l l o l क ल ् ल ो ल k a m a l k e p h o o l क म ल क े फ ू ल k a m a l a b h a a n a s i n h क म ल भ ा न स ि ं ह k a m y a b क ा म य ा ब k a n e t k a r क ा न े ट क र k a n o o n k i a w a a z क ा न ू न क ी आ व ा ज ़ k a n t e l e क ै न ट ि ल े k a r e n b l i x e n m u s e u m क ै र े न ब ् ल ‍ ि क ् स न म ् य ु ज़ ि य म k a r i s h m a क र ि श ् म ा k a r s a n g h a v r i क र ् स न घ ा व र ी k a s h e l i k a r क श े ल ी क र k a s i b क ा स ि ब k a t a d a r e क ा ट द र े k a t e क े ट k a t h e r i n e क ै थ र ी न k e e n a क ी न ा k e e r t h i r a n a s i n g h e क ि र ् त ि र ा ण ा स ि ं घ े k h a d i k a r ख ड ी क र k h a l i s a h ख ल ि स ा ह k h a n j a r ख ं ज र k h a r q a ख ़ ा र ् क ा k h a r t o u m ख ा र ट ू म k h u l a y b a h ख ु ल य ब ा ह k i r a n b e d i क ि र ण ब े द ी k i r i n b r e w e r y c o m p a n y क ि र ि न ब ् र े व र ी क ं प न ी k i r l o s k a r f e r r o क ि र ् ल ो स ् क र फ ़ े र ो k i r t a n a क ी र ् त न ा k i s i s e n a k e h n a क ि स ी स े न क ह न ा k i y e d h क ि य े ध k o d g u क ो ड ग ू k o n k a n क ो ं क ण k r a s h n a a क ृ ष ् ण ा k r i s h n a क ृ ष ् ण k r i s h n a क ृ ष ् ण ा k r i s h n a क ृ ष ् ण ा ं ग k r i s h n a k a l i क ृ ष ् ण क ल ी k r o d h i क ् र ो ध ी k u b e r क ु ब े र k u m a r d h a r m a s e n a क ु म ा र ध र ् म स े न ा k u m k u m t h e d a n c e r क ु म क ु म द ड ा ं स र k u r a y b क ु र ा य ब k u s u m क ु स ु म k u t a i क ु त ा ई k u v a l e s h a y क ु व ल े श य l a d i e s o n l y ल े ड ी ज ़ ओ न ल ी l a h i ' a h ल ह ि य ा ह l a h u k i a w a z ल ह ू क ी आ व ा ज ़ l a k e ल े क l a k e m a n y a r a ल े क म न ् य ा र ा l a k h a n p a l ल ख न प ा ल l a l a r u k h ल ा ल ा र ु ख l a l a n ल ल न l a l o ल ै ल ो l a m e c k o n y a n g o ल ै म े क ओ न ् य ै ं ग ो l a m i s a h ल ै म ि स ा ह l a n k a d e s i l v a ल ं क ा ड े स ि ल ् व ा l a n z a r o t e ल े ं ज ़ र ो ट l a p a l i k a r ल प ा ल ी क र l a s v e g a s ल ा स व े ग ा स l a t o n a ल ै ट ो न ा l a u r e u s w o r l d s p o r t s a w a r d s ल ॉ र े स व र ् ल ् ड स ् प ो र ् ट ् ‍ स अ व ा र ् ड ् ‍ स l a v a c a ल व ै क ा l e e l a ल ी ल ा l e r a t o ल े र े ट ो l i b e r a c e ल ि ब ् र े स l i s b o n p o r t e l a ल ि स ् ब न प ो र ् ट े ल ा l i v i ल ि व ी l o k a d i ल ो क ा द ि l o k e s h ल ो क े श l o n d o n s t a n s t e d ल ं द न स ् ट ै न स ् ट े ड l o n g a s ल ॉ न ् ग ा स l o r i e ल ॉ र ी l o r i e ल ो र ी l o s m a r m o l e s ल ॉ स म ा र ् म ो ल ् स l o u ल ा ऊ l o v e i n g o a ल व इ न ग ो व ा l u l u a h ल ु ल ु अ l u t ल ु त l u t h a n d o ल ु थ े न ् ड ो l u x o r ल क ् ज ़ र m a a b a a p म ा ँ ब ा प m a c u m b o म ै क ू ं ब ा m a d b h a r e n a i n म द भ र े न ै न m a d h a v म ा ध व m a d h u b a l a म ध ु ब ा ल ा m a d h u n i s h a म ध ु न ि श ा m a d r a म ै ड ् र ा m a d r a s c e m e n t s म द ् र ा स स ी म े ं ट ् स m a d r a s f e r t l i s e r म द ् र ा स फ ़ र ् ट ी ल ा इ ज ़ र m a h a a n म ह ा न m a h a s w e t a म ह ा श ् व े त ा m a h a t m a म ह ा त ् म ा m a h e s h म ह े श m a h f u z म ह फ ू ज़ 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 i s h म ह ि श m a h m u d s h a b i s t a r i म ह म ू द श ब ि स ् त र ी m a h o n म ह ो न m a h o n म ा ह ो न m a i t r e y a म ै त ् र े य m a i t r e y a म ै त ् र े य ा m a j b o o r i म ज ब ू र ी m a j o r l e a g u e l a c r o s s e c o m m u n i t y s e r v i c e a w a r d म े ज र ल ी ग ल ै क ् र ो स क म ् य ु न ि ट ी स र ् व ि स अ व ा र ् ड m a j o r l e a g u e l a c r o s s e o f f e n s i v e p l a y e r o f t h e y e a r a w a r d म े ज र ल ी ग ल ै क ् र ो स ओ फ े ं स ि व प ् ल े य र ऑ फ द ई य र अ व ा र ् ड m a k h d o o m म ख द ू म m a l a y s i a म ल े श ि य ा m a l l a h म ल ् ल ा ह m a m a j i म ा म ा ज ी m a n k i a n k h e n म न क ी आ ँ ख े ं m a n d a l म ं ड ल m a n d u म ा ं ड ू m a n g a l p a n d e y म ं ग ल प ा ं ड े m a n g l a g a u r i म ं ग ल ा ग ौ र ी m a n i b a n d h म ण ि ब ं ध m a n j i s t h a म ं ज ि ष ् ठ ा m a n j u b a l a म ं ज ु ब ा ल ा m a n o r a t h a म न ो र थ ा m a n t h a n म ं थ न m a r k म ा र ् क m a r k r i c h a r d s o n म ा र ् क र ि च र ् ड स न m a r l o n b l a c k म ा र ् ल ो न ब ् ल ै क m a r m i t म र ् म ि त m a r u k a r म र ु क र m a r u n d e e s w a r a r म र ु न द ी स ् व र ा र m a r v i म ा र व ी m a t a v - c a b l e s y s t e m s m e d i a म ा त व - क े ब ल स ि स ् ट म ् स म ी ड ि य ा m a x i m u s म क ् स ि म स m a z d a m o t o r म ा ज ़ द ा म ो ट र m e d e r a म े ड े र ा m e e n a a म ी न ा m e e n a r म ी न ा र m e g h n a d म े घ न ा द m e l o d e o n म ै ल ो ड ि य न m e n a i म े न ा ई m e n g k u a n g d a m म े ं ग क ् व ा ं ग ड ै म m e r a g h a r m e r e b a c h c h e म े र ा घ र म े र े ब च ् च े m e r a l a d k a म े र ा ल ड़ क ा m e r a s a l a a m म े र ा स ल ा म m e r e g a r i b n a w a z म े र े ग र ी ब न व ा ज़ m e r e s a r t a a j म े र े स र त ा ज m e r i l a l k a a r म े र ा ल ल क ा र m e r i w e t h e r म े र ि व े द र m e r l e म े र ् ल े m e r v i n म े र ् व ि न m i k e b r e a r l e y म ा इ क ब ् र े य र ल े m i l t म ि ल ् ट m i n a s g e r a i s म ि न ा स ग े र ै स m i n n a म ि न ् न ा m i r a s h i म ि र ा श ी m i r r a म ि र ् र ा m i s s m a n o r a m a म ि स म न ो र म ा m i s s o u l a म ि स ौ ल ा m i t t e n म ि ट ् ट न m i z m a r म ि ज़ म ा र m o h a k म ो ह क m o h a m m a d a s h r a f u l म ो ह म ् म द अ श र ा फ ल m o h a m m a d h a f e e z म ो ह म ् म द ह फ ी ज़ m o h a m m a d s a l i m म ो ह म ् म द स ल ी म m o n i c a l e w i n s k y म ो न ि क ा ल ु इ ं स ् क ी m o n i t o r म ॉ न ी ट र m o r n e v a n w y k म ॉ र ् न व े न व ी क m o r o c c o म ो र क ् क ो m o u n t r e v e l s t o k e म ा उ ं ट र ि व े ल स ् ट ो क m o u t h r i v e r म ा उ ं ट र ि व र m r i t y u n j a i म ृ त ् य ु ं ज य m u a z a h म ु आ ज़ ा m u c h c h a l म ु च ् च ल m u h a m m a d म ु ह म ् म द m u h a r म ु ह ा र m u j a h i d j a m s h e d म ु ज ा ह ि द ज म श े द m u k t a a म ु क ् त ा m u n i म ु न ि m u n j a l s h o w a म ु ं ज ल श ो व ा m u n n a म ु न ् न ा m u q a d d a r म ु क द ् द र m u q t a s i d म ु क़ ् त स ि द m u r a l e e म ु र ल ी m u r s a l म ु र स ल m u s e u m o f a n t h r o p o l o g y म ् य ु ज़ ि य म ऑ फ ए न ् थ ् र ो प ॉ ल ॉ ज ी m u s e u m o f w o r k s b y t h e o p h i l o s म ् य ु ज़ ि य म ऑ फ व र ् क ् स ब ा य थ ‍ ि य ो फ ‍ ि ल स m u s l i m k a l a l म ु स ् ल ि म क ा ल ा ल m u s t a j a b म ु स ् त ज ा ब m u t a y y i b म ु त ा य ् य ि ब n a a g d e v t a न ा ग द े व त ा n a a g m a n i न ा ग म ण ि n a a g m o h i n i न ा ग म ो ह ि न ी n a a t u न ा त ू n a d e e न द ी n a d r न द ् र n a e e m a न ई म ा n a g e n d r a न ग े ं द ् र n a i i m a r a t न ई इ म ा र त n a i f a h न ै फ ा n a j l a न ज ल ा n a l a n d a न ा ल न ् द ा n a l v a d i न ल व ा ड ी n a m a k h a r a m न म क ह र ा म n a r h a r i न र ह र ि n a t a s h a न त ा श ा n a t h a n b r a c k e n न ा थ न ब ् र े क न n a t h d w a r a t e m p l e न ा थ द ् व ा र ा ट े म ् प ल n a t i o n a l h e r a l d न े श न ल ह े र ा ल ् ड n a t i o n a l j e w i s h b o o k a w a r d न े श न ल ज ् य ु श ब ु क अ व ा र ् ड n a t i o n a l m u s e u m o f d e n m a r k न े श न ल म ् य ु ज़ ि य म ऑ फ ड े न म ा र ् क n a t r a j न ट र ा ज n a u n i h a a l न ौ न ि ह ा ल n a v b h a r a t न व भ ा र त n a v a t h y e न व ा थ ् य े n a v e e d न व ी द n a y a g a r h न य ा ग ढ ़ n a y a n m o n g i a न य न म ो ं ग ि य ा n a z e e r न ज़ ी र n e c i न े क ि n e e c h a n a g a r न ी च ा न ग र n e e d l e s o l d b a t t e r y न ी ड ल ् स ओ ल ् ड ब ै ट र ी n e e l a m b a r न ी ल ा म ् ब र n e e l k a m a l न ी ल क म ल n e e l k a n t a न ी ल क ा ं त ा n e e r a a u r n a n d a न ी र ा औ र न ं द ा n e s t o r न े स ् ट र n e w h a v e n r o a d c h u r c h o f g o d न ् य ू ह े व न र ो ड च र ् च ऑ फ ग ॉ ड n e w s p r i n g s c h r i s t i a n न ् य ू स ् प ् र ि ं ग ् स क ् र ि श ् च ि य न n i a z a n d n a m a z न ि य ा ज़ ए ण ् ड न म ा ज़ n i c h o l a s p i r a m a न ि क ो ल स प ि र ा म ल n i c k न ि क n i d h i न ि ध ि n i n e t o w n s d i g i t a l w o r l d t r a d e h o l d i n g s l i m i t e d न ा इ न ट ा उ न ् स ड ि ज ी ट ल व र ् ल ् ड ट ् र े ड ह ो ल ् ड ि ं ग ् स ल ि म ि ट े ड n i n o n न ि न ो न n i p p o n o i l न ि प ् प ॉ न ऑ इ ल n i r a j न ी र ज n i r m a l न ि र ् म ल n i t y a g o p a l न ि त ् य ग ो प ा ल n o o r i न ू र ी n o r t h r o p g r u m m a n न ॉ र ् थ ग ् र ु म ् म न n o t h e f o r t न ो थ फ ो र ् ट n o t t i n g h a m e a s t m i d l a n d s न ॉ ट ि ं ग ह ॅ म ई स ् ट म ि ड ल ै ं ड ् ‍ स n o v a न ो व ा n u r e k न ् य ु र े क o b b a n ओ ब ् ब न o l f e r t f i s c h e r ऑ फ र ् ट फ ि श र o n c o l y t i c s b i o t e c h ऑ न क ो ल ि ट ि क ् स ब ा य ो ट े क o n k a r ओ ं क ा र o p t i m a l g r o u p ऑ प ् ट ी म ल ग ् र ु प o r d e r o f l e o p o l d ऑ ड र ऑ फ ल ि य ो प ो ल ् ड o r d e r o f p u b l i c s e r v i c e s m e r i t ऑ ड र ऑ फ प ब ् ल ि क स र ् व ि स े स म े र ि ट o r g a n ऑ र ् ग न o r i g i n s a w a r d ऑ र ि ज ि न ् स अ व ा र ् ड o s w a l d v e b l e n p r i z e i n g e o m e t r y ऑ स व ल ् ड व े ब ् ल े न प ् र ा इ ज़ इ न ज ् य ो म े ट ् र ी o t t a w a c h u r c h o f c h r i s t ओ ट ा व ा च र ् च ऑ फ क ् र ा इ स ् ट o u r r a - t u l - ' a i n औ र ा - त ु ल - ऐ न p a a n c h d u s h m a n प ा ँ च द ु श ् म न p a a p a u r p u n y a प ा प औ र प ु ण ् य p a a p i p e t k a s a w a l h a i प ा प ी प े ट क ा स व ा ल ह ै p a d m a n a b h a n प द ् म न ा भ न p a k s h i r a j प क ् ष ी र ा ज p a n c h a y a t प ं च ा य त p a n d i t j a s r a j प ं ड ि त ज स र ा ज p a n d o r a प ै ं ड ो र ा p a n i h a r i प न ि ह ा र ी p a n k a j d h a r m a n i प ं क ज ध र म ा न ी p a r i n d a प र ि ं द ा p a r t h प ा र ् थ p a t n i x o n प ॅ ट न ि क ् स न p a u l a l l o t t प ॉ ल ए ल ॉ ट p a u l c o l l i n g w o o d प ॉ ल क ो ल ि ं ग व ु ड p a u l s t r a n g प ॉ ल स ् ट ् र े ं ग p a u m प ौ म p a v a m a a n प व म ा न p a v a s e प ा व स े p a v i t r a p a p i प व ि त ् र प ा प ी p e a b o d y a w a r d प ी ब ॉ ड ी अ व ा र ् ड p e a r s e m u s e u m प ‍ ि य र ् स म ् य ु ज़ ि य म p e d r o प े ड ् र ो p e h l i s h a d i प ह ल ी श ा द ी p e r i y a r प े र ि य र p e r i y a r प े र ि य ा र p e t r a प े त ् र ा p f i z e r फ ़ ा य ज ़ र p f i z e r फ ़ ि ज ़ र p h i l j a q u e s फ ि ल ज ै क ् स p h i l a n d e r फ ि ल ै ं ड र p h i l a t e l i c m u s e u m फ ‍ ि ल े ट े ल ि क म ् य ु ज़ ि य म p h i l i p फ ि ल ि प p h o s p h o r u s फ ॉ स ् फ ो र स p i s a g a l i l e o g a l i l e i प ि स ा ग ै ल ि ल ि य ो ग ै ल ी ल ी p o c o n o प ॉ क ॉ न ो p o o j a प ू ज ा p o r t l o u i s प ो र ् ट ल ु ई स p o w e r t r a d i n g c o r p o r a t i o n प ॉ व र ट ् र े ड ि ं ग क ॉ र ् प ो र े श न p r a g a t i प ् र ग त ि p r a n j i v a n प ् र ा ण ज ी व न p r a s h a m प ् र ा श म p r a t a p g a r h प ् र त ा प ग ढ ़ p r a t i m a प ् र त ि म ा p r e m p a t r a प ् र े म प त ् र p r e m a s i n h प ् र े म स ि ं ह p r e m i o n a d a l प ् र े म ि य ो न ड ा ल 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 c o l प ् र ि क ॉ ल p r i n c e h a r r y प ् र ि ं स ह ॅ र ी p r i n c e s s a l i c e प ् र ि ं स े स ए ल ि स p r i y a s h a प ् र ि य श ा p r o m e t h i u m प ् र ो म ी थ ि य म p u b l i x s u p e r m a r k e t s प ब ् ल ि क ् स स ु प र म ा र ् क े ट ् स p y a r k a t o o f a n प ् य ा र क ा त ू फ ा न q a m a r क म र q a m a r क़ म र q i a g e n क ् व ि ए ज ़ न q u e s t a क ् व े स ् ट ा q w e s t c o m m u n i c a t i o n s क ् व े स ् ट क म ् य ु न ि क े श ं स r a a j a k u m a a r र ा ज क ु म ा र r a a j a m u n i र ा ज म ु न ि r a a m a l a a l र ा म ल ा ल r a c h n a र च न ा r a f f a e l l o र ै फ े ल ो r a i c h u r र ा य च ू र r a i s र ई स r a j र ा ज r a j k a n y a र ा ज क न ् य ा r a j a s a a b र ा ज ा स ा ब r a j a n e e र ज न ी r a j e n d r a र ा ज े ं द ् र r a j m a h a l र ा ज म ह ल r a m b a l r a m र ा म ब ल र ा म r a m b h a r o s e र ा म भ र ो स े r a m a v a t a r र ा म ा व त र r a m e n d r a र ा म े ं द ् र r a n g m a h a l र ं ग म ह ल r a n g e e l a r a j a र ं ग ी ल ा र ा ज ा r a s h t r a v e e r s h i v a j i र ा ष ् ट ् र व ी र श ि व ा ज ी r a t n a m a n j a r i र त ् न म ं ज र ी r a t u ऋ त ु r a v e r k a r र ा व े र क र r a v i s h a s t r i र व ि श ा स ् त ् र ी r a v i j र व ि ज r e d o u t e d e t a l l a e r t र ि ड ा उ ट ड े ट ै ल ा र ् ट r e g i s t a n k i r a n i र े ग ि स ् त ा न क ी र ा न ी r e l i a n c e i n d u s t r i e s र ि ल ा य ं स इ ं ड स ् ट ् र ी ज ़ r e l i a n c e n a t u r a र ि ल ा य ं स न ै च ् य ु र ा r e n a t a र े न ा ट ा r e n u र े ण ु r e w a d i k a r र े व ा ड ़ ी क र r h o d a र ो ड ा r i c a r d o p o w e l l र ि क ा र ् ड ो प ॉ व े ल r i o g r a n d e r i v e r र ि ओ ग ् र ा ं ड र ि व र r i s h t a k a g a z k a र ि श ् त ा क ा ग ज ़ क ा r i y a l र ि य ा ल r o b e r t w a g n e r र ॉ ब र ् ट व ॅ ग न र r o b i n s i n g h र ॉ ब ि न स ि ं ह r o g e r र ॉ ज र r o l a n d b u t c h e r र ॉ ल े ं ड ब ु च र r o l t a र ो ल ् ट ा r o m e l e o n a r d o d a v i n c i र ो म ल ि य ो न ा र ् द ो द व ि न ् स ी r o m e o र ो म ि य ो r o n h a r t र ो न ह ा र ् ट r o n a l d r e a g a n र ॉ न ा ल ् ड र े ग न r o n a l d r e a g a n र ो न ा ल ् ड र ी ग न r o o p k u m a r i र ू प क ु म ा र ी r o s i n a र ो ज ़ ी न ा r o t i र ो ट ी r u b i d i u m र ू ब ी ड ि य म r u b y र ू ब ी r u c h i r a र ु च ि र ा r u g g i e r o d i l a u r i a र ु ग े र ो द ी ल ॉ र ि य ा r u s h i l र ु श ि ल s a ' i m स ई म s a b a k a r i m स ब ा क र ी म s a c h e t a n स च े त न s a c h s e n स ा स े न s a d a s u h a g a n स द ा स ु ह ा ग न s a d e e p a n स द ी प न s a f o o r a h स फ ू र ा ह s a h a l p u r स ह ल प ु र s a i n t g e o r g e ' s c h a n n e l स े ं ट ज ॉ र ् ज ् स च ै न ल s a j a n स ज न s a j e e w a w e e r a k o o n स ज ी व ा व ी र ा क ू न s a j j o r a n i स ज ् ज ो र ा न ी s a l स ल s a l i h a h स ल ी ह ा ह s a l u j a स ल ू ज ा s a m a j p a t a n स म ा ज प त न s a m a n t स ा म ं त s a m a s t i p u r स म स ् त ी प ु र s a m p r e e t स म ् प ् र ी त s a n a a स ा न ा s a n a n d a स ा न न ् द s a n j h k i b e l a स ा ं झ क ी ब े ल ा s a n t a n स ं त ा न s a n w a r i a स ा ँ व र ि य ा s a p r e स प ् र े s a p t a h i k h i n d u s t a n स ा प ् त ा ह ‍ ि क ह ‍ ि न ् द ु स ् त ा न s a r a j e v o स र ा ज े व ो s a r a m a स र म ा s a r a y u स र य ू s a r o v a r p a r k स र ो व र प ा र ् क s a r r a स ा र ा s a s t i d u l h a n m a h e n g a d o o l h a स स ् त ी द ु ल ् ह न म ह ँ ग ा द ु ल ् ह ा s a s u r a l स स ु र ा ल s a t n a स त न ा s a t y a k a m स त ् य क ा म s a u t e l a p a t i स ौ त े ल ा प त ि s a v a g e स ै व े ज s a w a स ा व ा s a w a a l स व ा ल s a w a n b h a d o n स ा व न भ ा द ो ं s a y y a r स य ् य ा र s c o u t c a m p स ् क ा उ ट क ै ं प s e k h w a स े ख व ा s e m u l i k i स े म ् य ु ल ि क ी s e t h m u k a n d l a l i n t e r c o l l e g e , g h a z i a b a d स े ठ म ु क ु ं द ल ा ल इ ं ट र क ॉ ल े ज , ग ा ज ़ ि य ा ब ा द s e v e n m i l e s स े व न म ा इ ल ् स s e v i l l a स ि व ि ल ा s e v i l l a n a s स े व ि ल े न ा स s h a a l e e n श ा ल ी न s h a d श ा द s h a h e e r a h श ह ी र ा ह s h a i l a s u t a a श ै ल स ु त ा s h a k u n श क ु न s h a m p a श म ् प ा s h a m s श म ् स s h a n c r e e k c o m m u n i t y b i b l e श ा न क ् र ी क क म ् य ु न ि ट ी ब ा य ब ल s h a n e b o n d श े न ब ॉ न ् ड s h a n k a r s h a m b h u श ं क र श ं भ ू s h a p a t h श प थ s h a q e e q श क ी क s h a r a d श र द s h a s h i p r a b h श श ि प ् र भ s h a t r a n j k e k h i l a d i श त र ं ज क े ख ि ल ा ड़ ी s h e e s h a श ी श ा s h e k l e i p u i r e s e r v o i r श े क ल े ई प ु ई र ि ज़ र व ा य र s h e r d i l a u r a t श े र द ि ल औ र त s h e r w i n c a m p b e l l श र ् व ि न क ै म ् प ब े ल s h i k a r i श ि क ा र ी s h i r i n a श ि र ि न ा s h i v c h a r a n श ि व च र ण s h i v a p r i y a a श ि व प ् र ि य ा s h o a i b m a l i k श ो ए ब म ल ि क s h o b h a a श ो भ ा s h r e e p a t i श ् र ी प त ि s h r i l a x m i n a r a y a n श ् र ी ल क ् ष ् म ी न ा र ा य ण s h r i l e k h a श ् र ी ल े ख ा s h u ' a श ु आ s h u ' a a श ु आ s h u c h i t a श ु च ि त ा s h u r a f a श ु र फ ा s h y a a m श ् य ा म s h y a m a l i m a श ् य ा म ल ि म ा s i d d h e s h w a r स ि द ् ध े श ् व र s i d o n i e स ि ड ो न ी s i k a n d स ि क ं द s i l v e r s t a n d a r d r e s o u r c e s स ि ल ् व र स ् ट ै ं ड र ् ड र ि स ो र ् स े ज ़ s i m b a स ि ं ब ा s i v n i स ि व न ी s k i l l s o f t स ् क ि ल स ॉ फ ़ ् ट s k y s c r a p e r m u s e u m स ् क ा य स ् क ् र ै प र म ् य ु ज़ ि य म s m i t a स ् म ि त ा s n i g d h a स ् न ि ग ् ध ा s o d e x h o a l l i a n c e स ो ड े क ् ज ़ ो अ ल ा य ं स s o h a n स ो ह ण s o l s t i c e स ो ल स ् ट ि स s o m e n d r a स ो म े ं द ् र s o n a a l i स ो न ा ल ी s o n a k s h i स ो न ा क ् ष ी s o u r a b h i स ौ र भ ि s o u t h c h i n a स ा उ थ च ा य न ा s o u t h e r n s e a स द र ् न स ी s p a r s h स ् प र ् श s p a t h a r e i o n m u s e u m o f t h e s h a d o w t h e a t r e स ् प ा थ े र ‍ ि य न म ् य ु ज़ ि य म ऑ फ द श ै ड ो थ ‍ ि ए ट र s p r a g u e स ् प ् र े ग ु ए s r i a d h i k a r i श ् र ी अ ध ि क ा र ी s r i s a i l a m श ् र ी श ै ल म s t e d m a n स ् ट े ड म ै न s t e v e n j a c k स ् ट ी व न ज ै क s t e v e n s स ् ट ी व न ् स s t o l t - n i e l s e n स ् ट ॉ ल ् ट न ि ल स न s t u स ् ट ू s u c h a r i t a स ु च र ि त ा s u e z c a n a l स ् व े ज ़ क े न ा ल s u m m e r s i d e u n i t e d m e t h o d i s t स म र स ा इ ड य ू न ा इ ट े ड म े थ ो ड ि स ् ट s u n d a y c o m m u n i c a t i o n s l i m i t e d स न ड े क म ् य ु न ि क े श ं स ल ि म ि ट े ड s u n e e l स ु न ी ल s u n o c o स न ो क ो s u r d a s स ू र द ा स s u r i n a स ु र ी न ा s u r i n d e r k h a n n a स ु र ि ं द र ख न ् न ा s u v a r n a p r a b h a स ु व र ् ण प ् र भ ा s w a p n a स ् व प ् न ा s w e e k a r k i y a m a i n e स ् व ी क ा र क ि य ा म ै ं न े s y e d k i r m a n i स य ् य द क ि र म ा न ी s y m o n a स ि म ो न ा s y n c h r o n i s e d s w i m m i n g स ि ं क ् र ो न ा इ ज़ ् ड स ् व ि म ि ं ग t a c e y ट े स ी t a k h a t s h r i a k a l t a k h a t s a h i b , a m r i t s a r ( p u n j a b ) त ख त श ् र ी अ क ा ल त ख त स ा ह ि ब , अ म ृ त स र ( प ं ज ा ब ) t a l a t त ल त t a l i त ा ल ी t a l l i s ट े ल ि स t a n d e m c y c l i n g ट ै ं ड म स ा य क ल ि ं ग t a n d i l a t त ं द ी ल त t a n u j त न ु ज t a n w e e r त न व ी र t a r o p h a r m a c e u t i c a l i n d u s t r i e s ट ै र ो फ ़ ा र ् म ा स ् य ु ट ि क ल इ ं ड स ् ट ् र ी ज ़ t a r u n i m a त र ु ण ि म ा t a r y n ट ै र ि न t a w f e e q त ौ फ ी क t e e s r i a a n k h त ी स र ी आ ँ ख t e e s t a त ी स ् त ा t e l e d a t a ट े ल ी ड े ट ा t h a n o s थ न ो स t h a u b a n थ ौ ब ा न t h e a u s t r a l i a n / v o g e l l i t e r a r y a w a r d द ऑ स ् ट ् र े ल ि य न / व ो ग े ल ल ि ट ् र े र ी अ व ा र ् ड t h e k i n g s m e d a l o f m e r i t i n g o l d द क ि ं ग ् स म े ड ल ऑ फ म े र ि ट इ न ग ो ल ् ड t h e p e r f e c t m u r d e r द प र ् फ े क ् ट म र ् ड र t h e p i o n e e r ( d a i l y ) द प ा य ो न ‍ ि य र ( ड े ल ी ) t h e t i m e s o f i n d i a द ट ा इ म ् स ऑ फ इ ं ड ि य ा t h e r m o p y l a e थ र ् म ो प ा इ ल ी t i c t o r i a त ि क त ो र ि य ा t i k a m g a r h ट ी क म ग ढ ़ t i m o t h y ट ि म ो थ ी t i p p e r g o r e ट ि प र ग ो र t i r u v a n n a m a l a i s a m b u r w a r y a a r त ि र ु व न ् न ा म ल ा ई स ब ु ं र व र य ा र t i t u s ट ा इ ट स t o m a s ट ॉ म स t o n y a w a r d ट ो न ी अ व ा र ् ड t o r i ट ो र ी t r a n s a m e r i c a p y r a m i d ट ् र ा ं स म े र ी क ा प ि र ा म ि ड t r e g r o s s e ट ् र े ं ग ् र ो स ी t r e v a ट ् र े व ा t r i s t a n a त ् र ि स ् त न ा t u n a g i n m a i n s a p e r a त ू न ा ग ि न म ै ं स प े र ा t y a n n e ट ा य न ी u d a y s a h उ द ै स ा ह u m a s h a n k a r j o s h i उ म ा श ं क र ज ो श ी u m m a y y a h उ म ् म य ् य ा ह u n i t e d w e s t e r n य ू न ा इ ट े ड व े स ् ट र ् न u n i v e r s i t y o f a l a s k a य ू न ि व र ् स ि ट ी ऑ फ अ ल ा स ् क ा u n i v e r s i t y o f d u r h a m य ू न ि व र ् स ि ट ी ऑ फ ड र ह ै म u n i v e r s i t y o f s o u t h q u e e n s l a n d य ू न ि व र ् स ि ट ी ऑ फ स ा उ थ क ् व ी न ् स ल ै ं ड u r a n य ु र न u r a n i a य ू र े न ि य ा u s m a n उ स ् म ा न u t t a r k a n n a d a उ त ् त र क न ् न ड ़ v a a g e e s h व ा ग ी श v a a g e e s h a a व ा ग ी श ा v a a g e e s h v a r e e व ा ग ी श ् व र ी v a a h i d व ा ह ि द v a i k o m m a h a d e v a r व ै क ॉ म म ह ा द े व ा र v a i r a a g e e व ै र ा ग ी v a j h e व झ े v a l e u r e u s e व ै ल े र े उ स v a l l a r i व ल ् ल र ी v a l l e t t a व े ल ि ट ् ट ा v a n a d e v e e व न द े व ी v a r a j व र ज v a s u व स ु v e d a g y व े द ज ् ञ v e d i व े द ी v e l a व े ल ा v e m b a k o t t a i r e s e r v o i r व े म ् ब क ो त ् त ा ई र ि ज़ र व ा य र v e r n e व र ् न ी v i j a y y a d a v व ि ज य य ा द व v i j a y a a व ि ज य ा v i j u l व ि ज ु ल v i k r a m s o l a n k i व ि क ् र म स ो ल ं क ी v i k r a m v e t a l व ि क ् र म ब े त ा ल v i n a t i व ि न त ी v i p r a व ि प ् र v i s h a l a व ि श ा ल ा v r i t t i व ृ त ् त ि w a e l h e m व े ल ह े म w a j e e h व ज ी ह w a j i h a h व ज ी ह ा ह w a q t w a q t k i b a a t व क ् त व क ् त क ी ब ा त w a r c r o s s w i t h s w o r d व ा र क ् र ा स व ि द स ् व ॉ र ् ड w a r d a h व र ् द ा ह w a r n i x व ॉ र न ि क ् स w a t e r t o n l a k e s व ॉ ट र ट ॉ न स र ो व र w e d d e l l व े ड े ल w e d l o c k व े ड ल ॉ क w e l h a m b o y s ' s c h o o l , d e h r a d u n व े ल ् ह ै म ब ॉ य ज ़ स ् क ू ल , द े ह र ा द ू न w e s t s p i t s b e r g e n व े स ् ट स ् प ी ट ् ‍ स ब र ् ग न w i l l a व ि ल ा र ् ड w i l l i e b r o w n व ि ल ी ब ् र ा उ न w i n i f r e d व ि न ि फ ् र े ड w o l f p r i z e i n m a t h e m a t i c s व ॉ ल ् फ प ् र ा इ ज़ इ न म ै थ म े ट ि क ् स w o o d r o w व ु ड ् र ो w o r l d h e a r t c o r p o r a t i o n व र ् ल ् ड ह ा र ् ट क ॉ र ् प ो र े श न w o r t h व ॉ र ् थ x e r x e s ज ़ े र क ् स े स x o n g o ज़ ो ं ग ो y a u v a n i य ौ व न ी y a v a l k a r य ा व ल क र y a w a t m a l य व त म ा ल y o l a n d a य ो ल ा न ् ड ा y u d h i s t h i r य ु ध ि ष ् ठ ि र y u v r a j s i n g h य ु व र ा ज स ि ं ह y u y u t s u य ु य ु त ् स ु z a f e e r a h ज़ फ ी र ा ह z a h i d s a e e d ज़ ा ह ि द स ई द z a r e h ज़ ा र े ह z o l a ज़ ो ल ा z o r i o n ज ़ ो र ि य न
85085dd70add1760b1a84b787586425bc607cdbd
449d555969bfd7befe906877abab098c6e63a0e8
/2741/CH6/EX6.8/Chapter6_Example8.sce
72b73dcbae30cdf4d197c883252c28ca98dc2a1a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
416
sce
Chapter6_Example8.sce
clc clear //Input data t1=100;//The temperature at steam point in degree centigrade t2=0;//The temperature at ice point in degree centigrade //Calculations T1=t1+273;//The temperature at steam point in K T2=t2+273;//The temperature at ice point in K n=(1-(T2/T1))*100;//The efficiency of the carnots engine in percent //Output printf('The efficiency of the Carnot engine is %3.2f percent ',n)
86fabf34352ea56375caa97e8503cad8c14cd835
449d555969bfd7befe906877abab098c6e63a0e8
/32/CH4/EX4.05/4_05.sce
84825091d3cdec25f71f6a771c9eadb79aa507c5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
403
sce
4_05.sce
//pathname=get_absolute_file_path('4.05.sce') //filename=pathname+filesep()+'4.05-data.sci' //exec(filename) //Temperature inside the house(in K): T1=25+273.15 //Temperature outside the house(in K): T2=-1+273.15 //Heating load(in MJ/h): Q1=125 //COP: COP=1/(1-T2/T1) //Minimum power required(in MJ/h): W=Q1/COP printf("\nRESULTS\n") printf("\nMinimum power required = %f kW",W/(3600/10^3))
9ecb4a049aaa6f1f80ff8bca5d1fd4181261b9c2
449d555969bfd7befe906877abab098c6e63a0e8
/1076/CH10/EX10.2/10_2.sce
cfb8b26cb53317affad4c49b97ffc8356f0dc40e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
256
sce
10_2.sce
clear clc s=50 v=11 x=.15 S=50 V=11 Xe=.15/4 FMVA= round(10000/Xe)/10000 Fault=FMVA * S mprintf("\n(a)fault level = %.3f pu", Fault) sga=.5*Fault sgb=800-sga xb=.15/2 X=(S/sgb)-xb x=X*(V*V/S) mprintf("\n(b)X = %.3f ohms", x)
f49e0dfe239f4775b294d869b5cb3b6908c2f994
fd6a414e5722e920e5ebe08c77fe0f70b29e77cf
/CallthePowerSpectrum.sce
5a41114b6e8f53b496df892daba173a1c76e5fc9
[]
no_license
JBouis/AudioProcessing
e774bdfaf38207643d441f975a96773ae3cbbd24
c9f81b8d5ce447b014707b309ef209530219adc0
refs/heads/master
2021-05-18T02:21:40.839402
2020-03-29T15:22:16
2020-03-29T15:22:16
251,063,576
0
0
null
null
null
null
UTF-8
Scilab
false
false
22
sce
CallthePowerSpectrum.sce
PowerSpectra_PAM()
b6cccc7e566c6fee394ecd78471cc4f4cfd10a5b
04101e89f0980b65ec0350667a3cbf16ccd56630
/Broyden_Fletcher_Goldfar_Shanno.sce
478d783a07419c826d72b8f080d3c4df025e7d68
[]
no_license
francissinco/Numerical-Analysis-in-Scilab
a810d30dc1ba032a6a9bc37a6f5345185781380e
51f9d2da4d31e865be158bea2b7cf563ccbe21eb
refs/heads/master
2021-01-10T11:45:15.197910
2016-05-06T10:34:45
2016-05-06T10:34:45
52,008,949
0
0
null
2016-05-06T10:34:45
2016-02-18T13:27:34
Scilab
UTF-8
Scilab
false
false
1,676
sce
Broyden_Fletcher_Goldfar_Shanno.sce
//Francis Brylle G. Sinco //MS Applied Mathematics //Math 288 //University of the Philippines - Diliman //12 March 2011 //Broyden-Fletcher-Goldfar-Shanno(BFGS) Algorithm with Line Search Algorithm using the Strong Wolfe Conditions applied to minimize the Rosenbrock Function //INITIALIZATION OF QUANTITIES k=1; M=1000; alpha=10e-4;//alpha b=0.8;//beta rho=0.5; epsilon=10e-6; x0=[1.2;1.2];//initial guess for the minimizer B0=eye(2,2);//initial guess for the approximate inverse of the Hessian I=eye(2,2); //FUNCTION DEFINITIONS function z = f(x)//Rosenbrock Function z = 100*(x(2)-x(1)^2)^2 + (1-x(1))^2; //z = 2*x(1)^2 + 2*x(1)*x(2) + x(2)^2 + x(1) - x(2);//dummy function endfunction; function g = gradient(x) g = [-400*x(1)*(x(2)-x(1)^2)-2*(1-x(1)); 200*(x(2)-x(1)^2)]; //g = [4*x(1)+2*x(2)+1; 2*x(1)+2*x(2)-1];//dummy gradient endfunction; //MAIN xstar = [1;1]; //actual minimizer x=x0; B=B0; while (norm(gradient(x)) > epsilon)//main loop d = -B*gradient(x); t=1;//initial guess for the steplength while ((f(x+t*d) > f(x)+a*t*gradient(x)'*d) | (abs(gradient(x+t*d)'*d) > b*abs(gradient(x)'*d))) //Strong Wolfe conditions loop t = rho*t; end; if (abs(t)>epsilon) then temp = gradient(x); x = x + t*d; s = t*d; y = gradient(x)-temp; P = y'*s; Q = s*y'; R = y*s'; S = s*s'; B = [I-Q/P]*B*[I-R/P] + S/P; k=k+1; else break; end; end; t//prints final step length used before termination k//prints the latest iteration number before termination x//prints the final answer (computed minimizer) err = norm(x-xstar) //prints the absolute difference between the actual and the computed minimizer
06ad1da5b2f9d6e52bc185f0eff0cf0699fd9582
449d555969bfd7befe906877abab098c6e63a0e8
/1793/CH9/EX9.3/9q3.sce
71679a4268ed0c5dee606a222490df08a1400557
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
481
sce
9q3.sce
clc //initialisation of variables G= 2.68 e= 0.52 g= 9.81 //kN/m^3 h1= 0.7 //m h2= 1 //m h3= 1.5 //m h4= 2 //m //calculations //for soil A sa= (G+e)*g/(1+e) //point a Sa= h1*g+h2*sa u= (h2+h1+h3/2)*g Es= Sa-u //point b sb= h1*g+h4*sa ub= (h4+h1+h3)*g Eb= sb-ub i= h3/2 s= i*g //results printf ('effective stress at point a= % 2f kN/m^2 ',Es) printf ('effective stress at point b= % 2f kN/m^2 ',Eb) printf ('seepage force per unit voume = % 2f kN/m^3 ',s)
329403a286f2b35b9e3c3a4d3a3fa61040d8d47d
449d555969bfd7befe906877abab098c6e63a0e8
/1871/CH5/EX5.6/Ch05Ex6.sce
7958ac2ecbd93608743dacc6f3fa8d46763c90e1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
586
sce
Ch05Ex6.sce
// Scilab code Ex5.6: Pg:217 (2008) clc;clear; Lambda = 6e-05; // Wavelength of spectral line, cm n = 1; // First order principal maxima aplusb = 1/160; // Grating element where a is the width of slit and b is the width of opaque region in a grating, cm // since the grating equation is given by (a +b)*sint_theta = n*Lambda. On solving fot theta, we have theta = asind(n*Lambda/aplusb); // Direction of principal maxima, minutes printf("\nThe direction of principal maxima = %2d minutes", theta*60); // Result // The direction of principal maxima = 33 minutes
f7f9059ff0e94857fa38b8c14fdb3ee4d24d679c
91da29a7783c3162b1b743ad75d48814bd1f556e
/2_año/MN/LU_Scilab.sce
3597a9c63cc4e732eb2da3e0539b0d0a4934f09c
[]
no_license
jfarizano/LCC
a149631059129b07a7c603bf16df0c1b25479edb
70cb03b0ff0a788b1bbbf1a6bcd51beff48460fe
refs/heads/master
2022-11-15T14:46:36.171561
2022-11-10T21:15:13
2022-11-10T21:15:13
246,933,544
0
0
null
null
null
null
UTF-8
Scilab
false
false
379
sce
LU_Scilab.sce
clc clear // Utilizaremos la factorización LU de Scilab para resolver el sistema A*x=b A = [0 2 3; 2 0 3; 8 16 -1] b = [7 13 -3]' [L,U,P] = lu(A) disp(P) disp(L) disp(U) // Modificamos el vector b usando la matriz de permutación c = P*b // La solución del sistema A*x=b mediante la factorización LU procede en dos etapas: y = L\c x = U\y disp(x)
ae3b0a4903d76376eddbc6b76d2a0adc86702201
1bf3cbe37018ca88ab0cd7a031c1e835b51adeeb
/qbases/general.tst
6e6bee9f6824416fa82c21c2625096a96d28a3ad
[]
no_license
leotrubach/tester
4dbae7f1310ecd732d0d28978f7d87d7d94276ad
3d72a54d22e98100ef7e1dc400a7efe397f4cf9b
refs/heads/master
2021-01-13T01:50:52.258365
2011-09-18T11:07:25
2011-09-18T11:07:25
2,409,112
0
0
null
null
null
null
UTF-8
Scilab
false
false
13,176
tst
general.tst
bQya2DqfmYMyUIJLUUP3UA== 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
e765c84067f626924367d8842b4da291ae5b0ceb
0e637a0e41450cddb847e0328eaebb9365cefdd4
/1st assignment/ramp.sce
7720942faa5c2445e17bc661703f779dee8cf67e
[]
no_license
mehtasankets/CASP
32c7ea00fca072e85d664f4acd050edee5f26a5f
5dbdd3c14b1b2620c29ab5bfdad640f4529d779c
refs/heads/master
2020-04-28T09:20:00.026745
2011-11-03T08:33:12
2011-11-03T08:33:12
2,700,756
0
0
null
null
null
null
UTF-8
Scilab
false
false
57
sce
ramp.sce
x = -10:100; t = 0:100; y = [zeros(-10:-1),t]; plot(x,y);
8730a8705048583a9a066a8e285e583d5fb34ae0
449d555969bfd7befe906877abab098c6e63a0e8
/3434/CH14/EX14.3/Ex14_3.sce
3cd7bdc9f549189faebda63103b9dd0783c3ac2b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
189
sce
Ex14_3.sce
clc //given data F=100000 // final amount in rs i=6 // interest rate in % n=10 // time in years P=F*(1/(1+i/100.0)**n) // initial amount printf("The initial value is Rs %.2f",P)
94aa29425d3cc9951d00f38eefbad70bd9136029
717ddeb7e700373742c617a95e25a2376565112c
/3424/CH7/EX7.7/Ex7_7.sce
71497bc7e7f547f49d822ad84d16deb6b8628ad5
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
371
sce
Ex7_7.sce
clc // Intialization of variables Rw = 1/15 // Ratio of widths Q = 125 // m^3/s t = 24 // hr w = 20 //m //calculations Qm = Q*(Rw)^2.5 tm = t*(Rw)^0.5 wm = w*Rw // results printf(" the required model width is %.3f m",wm) printf(" \nthe required model flow rate is %.3f m^3/s",Qm) printf(" \nthe operating model for a 24 hr period prototype is %.2f hr",tm)
ccf901f73f8b08fb034d4c65a40338df22cba6ce
449d555969bfd7befe906877abab098c6e63a0e8
/3176/CH6/EX6.16/Ex6_16.sce
ebae21bf09f5c3a5d9d5386a8a375e4bf38ed743
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,236
sce
Ex6_16.sce
//Ex6_16 //Edge Detection Vector Space // Version : Scilab 5.4.1 // Operating System : Window-xp, Window-7 //Toolbox: Image Processing Design 8.3.1-1 //Toolbox: SIVP 0.5.3.1-2 //Reference book name : Digital Image Processing //book author: Rafael C. Gonzalez and Richard E. Woods clc; close; clear; xdel(winsid())//to close all currently open figure(s). rgb=imread("Ex6_16.tif"); [nr nc]=size(rgb2gray(rgb)); // find the size of image figure,ShowColorImage(rgb,'Color Image'); title('Original Image','color','blue','fontsize',4); R=rgb(:,:,1); //Separation of red component from image G=rgb(:,:,2); //Separation of green component from image B=rgb(:,:,3); //Separation of blue component from image Image_Edge=edge(R,'canny',0.18); // Gradient Computation by Canny figure,ShowImage(Image_Edge,'Edge Image'); title('Gradient Image','color','blue','fontsize',4); Image_Edge=edge(G,'canny',0.17); // Gradient Computation by Canny figure,ShowImage(Image_Edge,'Edge Image'); title('Gradient Image','color','blue','fontsize',4); Image_Edge=edge(B,'canny',0.19); // Gradient Computation by Canny figure,ShowImage(Image_Edge,'Edge Image'); title('Gradient Image','color','blue','fontsize',4);
f7f86510f69832ab1af2875ca993ef0498a9f92b
971b52073b0a9541c928a42091aba77bddc0743c
/A3/results/result0s0.tst
e9a9a8755fb01ee12f01dbd79c2347c85e6409b6
[]
no_license
minminmail/FARCHD_Negative_Rules
66cb7fd637a9394939688d5a9a804bdcdb9e7f47
eb69bae9ffe5b94f3191b5456ea15fffacaa3e76
refs/heads/master
2023-07-22T15:50:10.413213
2021-08-27T06:03:30
2021-08-27T06:03:30
327,358,135
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,439
tst
result0s0.tst
@relation @attribute 3.61646249686014 real[0.032626572772507245,15.99550170609938] @attribute 11.61879710931984 real[0.01308043209846943,15.989311852037073] @attribute red{red,green} @inputs 3.61646249686014,11.61879710931984 @outputs red @data red green red green red green red green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green green
341a42cce5d561f897aea8aca9851108b784f975
449d555969bfd7befe906877abab098c6e63a0e8
/1247/CH6/EX6.5/example6_5.sce
6ac5614c2270109210cd7f548446bd1a9bfe1174
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,067
sce
example6_5.sce
clear; clc; // Stoichiometry // Chapter 6 // Stoichiometry and Unit Operations // Example 6.5 // Page 356 printf("Example 6.5, Page 356 \n \n"); // solution //(a) printf("(a) \n \n") // basis 50000 m^3/h of gas mix at 295.5K 100kPa v = 24.57 //m^3/kmol sp vol of gas at 295.5K and 100kPa n1 = 50000/v // kmol/h flow of incoming gas NO2in = n1*.0546 N2O4in = n1*.0214 N2in = n1-NO2in-N2O4in //N2 is unaffected n2 = 1880.34/.95 //kmol/h outgoing gas flow // using tables 6.3 and 6.4 on page 357 NO2rem = NO2in - (n2*.0393) N2O4rem = N2O4in - (n2*.0082) // rxn (ii) NaOHreac2 = 2*40*N2O4rem NaNO2pro2 = 69*N2O4rem NaNO3pro2 = 85*N2O4rem H2Opro2 = 18*N2O4rem // rxn (iii) NO2reac3 = 3*n2*.0025 NaOHreac3 = 2*4.95*40 NaNO3pro3 = 2*4.95*85 H2Opro3 = 4.95*18 NO2abs2 = 33.33-NO2reac3 NaOHreac1 = 18.48*40 NaNO2pro1 = 69*NO2abs2/2 NaNO3pro1 = 85*NO2abs2/2 H2Opro1 = 18*NO2abs2/2 NaNO2t = NaNO2pro2 + NaNO2pro1 NaNO3t = NaNO3pro2+NaNO3pro3 H2Ot = H2Opro1+H2Opro2+H2Opro3 NaOHt = NaOHreac1+NaOHreac2+NaOHreac3 liq = 37500 //kg/h NaOHin = liq*.236 NaOHout = NaOHin-NaOHt moist = n2*.045*18 water = liq-NaOHin-H2Ot-moist //kg/h printf("Composition of final liquor : \n Component mi (kg/h) \n NaOH "+string(NaOHout)+" \n NaNO2 "+string(NaNO2t)+" \n NaNO3 "+string(NaNO3t)+" \n H2O "+string(water)+" \n \n \n (b)") //(b) //heat effect of scrubbing //using tables 6.6 and 6.7 //fi1 = integ{59865.7+4545.8+10^-3 *T + 15266.3*10^-6*T^2-705.11*10^-9*T^3} fi1 = -155941.3/3600 //kW //similarly fi2 = 75.778 //kW dH1 = (-346.303-450.1-285.83-(2*(-468.257)+2*33.18))/2 //kJ/mol NO2 dH2 = -346.303-450.1-285.83-(2*(-468.257)+9.16) //kJ/mol N2O4 dH3 = (2*(-450.1)-285.83+90.25-(2*(-468.257)+3*33.18))/3 // kJ/mol NO2 dHdil = -469.837-(-468.257) //kJ/mol NaOH fi3 = (dH1*1000*18.48+dH2*1000*27.32+dH3*1000*14.85+dHdil*1000*138.23)/3600 //kW fi4 = -fi1+fi2+fi3 printf("Heat efeet of scrubbing system = "+string(fi4)+" kW.")
46321f2a64b4394025d689e9ff0098b62245f543
449d555969bfd7befe906877abab098c6e63a0e8
/2489/CH6/EX6.1/6_1.sce
8241feebdcf8f20880972fd634a34923ff564af2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
227
sce
6_1.sce
clc //Intitalisation of variables clear d1= 5.9 //deg d2= 5.3 //deg //CALCULATIONS r= sind(d1)/sind(d2) vr= r^3 //RESULTS printf ('Ratio of inter planar distance = %.2f ',r) printf ('\n Ratio of volumes = %.2f ',vr)
20942e79bfc4d52fc1a356a88ecb9784609ce02f
449d555969bfd7befe906877abab098c6e63a0e8
/545/CH4/EX4.7/ch_4_eg_7.sce
db80bd9c931cfe569fe7a7d522fd0cfc057c5693
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
884
sce
ch_4_eg_7.sce
clc disp("the soln of eg 4.7-->Simultaneous O.D.E.") function dx_dt=fw(t,x,y); dx_dt=x+2*y, endfunction function dy_dt=fq(t,x,y); dy_dt=3*x+2*y endfunction y=4,x=6 //initial values //solving by Runge-Kutta method for t=0:.1:.2, h=.1 //step increment of 0.1 k1=h*fw(t,x,y) l1=h*fq(t,x,y) k2=h*fw(t+h/2,x+k1/2,y+l1/2) l2=h*fq(t+h/2,x+k1/2,y+l1/2) k3=h*fw(t+h/2,x+k2/2,y+l2/2) l3=h*fq(t+h/2,x+k2/2,y+l2/2) k4=h*fw(t+h,x+k3,y+l3) l4=h*fq(t+h,x+k3,y+l3) x=x+(k1+2*k2+2*k3+k4)/6 y=y+(l1+2*l2+2*l3+l4)/6 end x=x-(k1+2*k2+2*k3+k4)/6 y=y-(l1+2*l2+2*l3+l4)/6 disp(y,x,"the values of x and y repectively are"); t_an=.2 x_an=4*exp(4*t)+2*exp(-t) y_an=6*exp(4*t)-2*exp(-t) disp(y_an,x_an,"the analytical values of x and y are respectively");
03c9d0b23f9e8d744cbe5215e4fd86f5ab6d0dfb
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH3/EX3.8/3_08.sce
3f8f1510fca4affd4857af1adb8f3cb4ad4bf2b9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
318
sce
3_08.sce
//Chapter 3, Problem 8 clc; R0=100; //resistance at 0◦C T=70; //tempreture in ◦C a=0.0043; //temperature coefficient of resistance at 0◦C Rt=R0*(1+(a*T)); //calculating resistance at 70◦C printf("Resistance at 70◦C = %f ohm",Rt);
720b9585259e36980326d7a88f615e50bbd418f6
676ffceabdfe022b6381807def2ea401302430ac
/solvers/AcousticSolver/Tests/APE_2DVariableC_WeakDG_MODIFIED.tst
a1e9af9e62944fe2fb95fd85495a7285966901f8
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
843
tst
APE_2DVariableC_WeakDG_MODIFIED.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>desc P=10</description> <executable>AcousticSolver</executable> <parameters>APE_2DVariableC_WeakDG_MODIFIED.xml</parameters> <files> <file description="Session File">APE_2DVariableC_WeakDG_MODIFIED.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="p" tolerance="1e-4">47.2682</value> <value variable="u" tolerance="1e-7">0.242422</value> <value variable="v" tolerance="1e-7">0.0671381</value> </metric> <metric type="Linf" id="2"> <value variable="p" tolerance="1e-4">58.295</value> <value variable="u" tolerance="1e-7">0.278645</value> <value variable="v" tolerance="1e-7">0.105514</value> </metric> </metrics> </test>
3f3cd98df6c9b438a6bde910a104a13bb0295172
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH5/EX5.9/5_9.sce
18c94368660de1149db1493e8ec1c91e0690410b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
299
sce
5_9.sce
//Minimum force required //refer fig. 5.13 //Applying Lami's theorem to system of forces on block R1=20*sind(145)/sind(140) //kN R2=20*sind(75)/sind(140) //kN //Applying Lami's theorem to system of forces on wedge P=R2*sind(130)/sind(105) //kN printf("required force is P=%0.2f kN",P)
52eeda76b8109e8910d54165c1c67a1b6ecbda9c
449d555969bfd7befe906877abab098c6e63a0e8
/3866/CH6/EX6.13/Ex6_13.sce
134b40459404def6a3f1209c576a141bd32138ef
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
506
sce
Ex6_13.sce
clc; clear; close; LEinv=1; LEnor=5/3; LEnand=4/3; Cload=20;//in fF Cin=10;//in fF Pinv=1/2; Pnor=3/2; Pnand=1; path_effort=LEinv*LEnand*LEnor*Cload/Cin; disp(path_effort,'total path effort='); SE=path_effort^(1/4); disp(SE,'optimal stage effort='); delay=(4*SE)+(2*Pinv)+Pnor+Pnand; disp(delay,'normalised delay='); Z=LEinv*Cload/SE; disp(Z,'Z='); Y=LEnand*Z/SE; disp(Y,'Y='); X=LEnor*Y/SE; disp(X,'X='); Cin1=LEinv*X/SE; disp(Cin1,'Cin='); //answers vary due to round off error
32f2f39859136182c9716afc6497a017d832e516
449d555969bfd7befe906877abab098c6e63a0e8
/3831/CH16/EX16.10/Ex16_10.sce
2d64a15c23a167a218842aa683ff9f7e6fa9c27a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
376
sce
Ex16_10.sce
// Example 16_10 clc;funcprot(0); // Given data m=5.00*10^-3;// kg T=20.0+273.15;// K p=101.3*10^3;// kg/(m.s^2) R=286;// m^2/(s^2.K) D=3.00*10^-3;// m g=9.81;// m/s^2 g_c=1;// The gravitational constant // Calculation W=(m*g)/g_c;// N rho=p/(R*T);// kg/m^3 V_in=((4*g_c*W)/(rho*%pi*D^2))^(1/2);// m/s printf("\nThe velocity of the jet,V_in=%2.1f m/s",V_in);
12ad3c10dd88f050609ffbe423dedcee75babb69
449d555969bfd7befe906877abab098c6e63a0e8
/1994/CH10/EX10.11/Example10_11.sce
040a2900d65a35e5a7fc5ca00639436e53a1eecd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
204
sce
Example10_11.sce
//Chapter-10,Example10_11,pg10_42 Tsh=190 P=8 f=50 fr=1.5 ML=700 s=fr/f Ns=120*f/P N=Ns*(1-s) Po=Tsh*(2*%pi*N/60) Pm=Po+ML Pc=Pm*s/(1-s) printf("rotor copper loss\n") printf("Pc=%.3f W",Pc)
2f6e686656662c58aaa96693dfb067ebf5ea097b
449d555969bfd7befe906877abab098c6e63a0e8
/3689/CH12/EX12.6/12_6.sce
249c99e6422e1d62db1a355c3efef6e1503bf0c2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
263
sce
12_6.sce
//// //Variable Declaration n = 52 //Number of cards in std . pack j = 5 //Number of cards in subset //Calculation C = factorial(n)/(factorial(j)*factorial(n-j)) //Results printf("\n Maximum Possible 5-card combinations are %8d",C)
ba5f6a8e2d8ae13b0989b54221e05256098ef08b
ed81f401dcd2ce0399cec3a99b6e5851e62e74ca
/data/github.com/scilab/scilab/0068b70ee75ebbfd7f0201abec7a5e56df5469b0/scilab/modules/xcos/tests/nonreg_tests/bug_11821.tst
038f17e592fc4967cf610cc5f27ed89448fd6453
[ "MIT" ]
permissive
smola/language-dataset
9e2a35340d48b497cd9820fa2673bb5d482a13f7
4d1827d1018b922e03a48a5de5cb921a6762dda3
refs/heads/master
2023-03-10T12:42:04.396308
2022-07-15T18:05:05
2022-07-15T18:05:05
143,737,125
18
3
MIT
2023-03-06T05:01:14
2018-08-06T14:05:52
Python
UTF-8
Scilab
false
false
781
tst
bug_11821.tst
// ============================================================================= // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab // Copyright (C) 2012 - Scilab Enterprises - Alexandre HERISSE // // This file is distributed under the same license as the Scilab package. // ============================================================================= // <-- XCOS TEST --> // // <-- Non-regression test for bug 11821 --> // // <-- Bugzilla URL --> // http://bugzilla.scilab.org/show_bug.cgi?id=11821 // // <-- Short Description --> // Running XcosPalAdd example from help led to deadlock pal = xcosPal(); pal = xcosPalAddBlock(pal, "SUM_f"); pal = xcosPalAddBlock(pal, "BIGSOM_f"); status = xcosPalAdd(pal, "my Summation blocks"); assert_checktrue (status);
dd343202acb91c1d8aa743d681837e82d8bcd4b0
449d555969bfd7befe906877abab098c6e63a0e8
/61/CH15/EX15.7/ex15_7.sce
e0f20b2b06bc3de24bfb9d8f24ae94a79262def3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
298
sce
ex15_7.sce
//ex15.7 R4=10^3; C1=0.022*10^-6; R7=R4; C2=C1; R6=R4; R5=100*10^3; f_c=1/(2*%pi*R4*C1); //critical frequency in hertz for each integrator f0=f_c //center frequency Q=(1+(R5/R6))/3; BW=f0/Q; disp(f0,'center frequency in hertz') disp(Q,' value of Q') disp(BW,'bandwidth in hertz')
619541fa837fa76e36b1c90355c2050c49d74011
449d555969bfd7befe906877abab098c6e63a0e8
/3511/CH5/EX5.2/Ex5_2.sce
b2a16acc24096c02a36a5a3cea48f2eb88d1cbc0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex5_2.sce
clc; p1=1; // Pressure before compression in bar T1=350; // Temperature before compression in kelvin T3=2000; // Temperature after combustion in kelvin rp=1.3; // Pressure ratio Cp=1.005; // Specific heat at constant pressure in kJ/kg K r=1.4; // Specific heat ratio R=287; // Characteristic gas constant in J/kg K T2=T1*(rp)^((r-1)/r); // Temperature at the end of the compression T4=T3*(1/rp)^((r-1)/r); // Temperature after expansion Wc=Cp*(T2-T1); // Work done during compression WT=Cp*(T3-T4); // Work done during expansion WN=WT-Wc; // Net work done T5=T4; // For a perfect heat exchange q=Cp*(T3-T5); // Heat added eff2=WN/q; // Efficiency of a modified Joule cycle eff1=0.072220534; // Efficiency of a joule cycle disp ("%",eff2*100,"Efficiency of a modified Joule cycle = "); disp (eff2/eff1,"Improvement in efficiency = ");
022c680aead535500ee8810884c313ad7cc339cb
449d555969bfd7befe906877abab098c6e63a0e8
/1151/CH8/EX8.18/example18.sce
0c1cd75c8e2fa09a7e13d264ff38c15c4900dd4c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
207
sce
example18.sce
s=%s ;// convert to state space TFcont=syslin ('c',20*(4*s+2)/(s^3+5*s^2+8*s+2)) SScont=tf2ss (TFcont ) [Ac ,Bc ,U, ind ]=canon( SScont( 2 ) , SScont( 3 ) ) disp(Ac,"Matrix A=") disp(Bc,"Matrix B=")
8f5d73945ad55b8e6e0d7b66404b9db9f0e45a1b
e41b69b268c20a65548c08829feabfdd3a404a12
/3DCosmos/BCK/Scripts/Test/test_blob.SCI
21f52869d178fab9686bdb41e624004b2804e3bc
[ "LicenseRef-scancode-khronos", "MIT" ]
permissive
pvaut/Z-Flux
870e254bf340047ed2a52d888bc6f5e09357a8a0
096d53d45237fb22f58304b82b1a90659ae7f6af
refs/heads/master
2023-06-28T08:24:56.526409
2023-03-01T12:44:08
2023-03-01T12:44:08
7,296,248
1
1
null
2023-06-13T13:04:58
2012-12-23T15:40:26
C
UTF-8
Scilab
false
false
1,808
sci
test_blob.SCI
codeblock readtextfile(ScriptDir+"\TOOLS.sci"); id=3; #break; b=Blob; if id==4 then { b.Addtorus(point(-3,0,0),vector(0,1,0),2,0.5,2); b.Addtorus(point( 0,0,0),vector(0,0,1),2,0.5,2); b.Addtorus(point( 3,0,0),vector(0,1,0),2,0.5,2); b.Addtorus(point( 6,0,0),vector(0,0,1),2,0.5,2); } if id==3 then { b.AddSphere(point(0.2,0,0),1.5,3,-0.25); b.AddTorus(point(2,0,0),vector(0,0,1),2,0.5,1.5); b.AddTorus(point(1,0,0),vector(0,1,0),2,0.5,2,); b.AddDisc(point(0,0,0),vector(0,0,1),2,0.5,2); } if id==1 then { b.AddSegment(point(-1,0,0),point(2,0,0),0.5,0.8); b.AddSegment(point(-1,-2,0),point(1,2,0),0.5,0.8); } if id==2 then { b.AddSphere(point(0,0,0),1,2.5); b.AddSphere(point(1,0,0),0.5,1.5,-1); b.AddSphere(point(2,0,0),1,2.5); b.AddSphere(point(3,0,0),1,2.5); b.AddSphere(point(0,1,0),1,2.5); b.AddSphere(point(0,2,0),1,2.5); b.AddSphere(point(0,3,1),0.75,2.5); b.AddSphere(point(0,4,2),0.5,2.5); } s=b.CreateSolidShape(0.07); #s=s-Cylinder(point(0,0,0),vector(3,0,0),1); #s=CreateSurface(fnc,0.1,7,point(0,0,0),false); sf=T_scene_create; sss=T_getscene; sss.ambientlightcolor=color(0.15,0.15,0.15); #sss.VolumeShadowAdd(0,color(0,0,0,0.5),0.002,20); refframe=sss.addsubframe("refframe"); #break; obj=refframe.add("SolidObject"); obj.CreateShape(s); #obj.RenderOutLine=true; obj.renderfront=true; obj.renderback=true; obj.canbuffer=true; obj.setcolor(0,color(0.4,0.4,0.8)); obj.setcolor(1,color(0.4,0.8,0.4)); obj.setcolor(2,color(0.8,0.4,0.4)); obj.SpecularValue=30; obj.SpecularColor=color(0.35,0.35,0.35); refframe.add("Sphere","Radius":0.1,"Position":point(0,0,0)); refframe.add("Sphere","Radius":0.1,"Position":point(2,0,0)); root.time=time(2008,1,1,0,0,0); root.TimeSpeed=0.001; while true do { incrtime; render; }
04e7705b20f608f9dcf39e03cb94bc34e058b477
449d555969bfd7befe906877abab098c6e63a0e8
/2078/CH11/EX11.4/Example11_4.sce
5e3b94cc5db98fcefacb3d9bfb58e38dc8f4f931
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
630
sce
Example11_4.sce
//Exa 11.4 clc; clear; close; //Given data : V1=11000;//Volt f=50;//Hz a=0.645;//cm^2 d=sqrt(4*a/%pi);//cm d=d/100;//m D=2.18/100;//m epsilon_r=3.5;//relative permitivity V=V1*sqrt(2)/sqrt(3);//V(assuming 3 phase system) gmax=2*V/d/log(D/d);//V/m gmax=gmax/10^5;//KV/cm disp(gmax,"Maximum electrostatic stress(kV/cm)"); gmin=2*V/D/log(D/d);//V/m gmin=gmin/10^5;//kV/cm disp(gmin,"Minimum electrostatic stress(kV/cm)"); C=0.024*epsilon_r/log10(D/d);//micro F disp(C*10^-6,"Capacitance per km length(F)");// Vp=V1/sqrt(3);//V Ic=2*%pi*f*C*10^-6*Vp;//A disp(Ic,"Charging Current per phase per km length(A)");
b4f24a972b422d4e3f82a9857a70679568c4cf4c
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set5/s_Digital_Signal_Processing_R._Babu_52.zip/Digital_Signal_Processing_R._Babu_52/CH4/EX4.16.b/Example4_16_b.sce
f904ebbf1fdcfb8c630d5f46c782f1f6c4c80045
[]
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
270
sce
Example4_16_b.sce
errcatch(-1,"stop");mode(2);//Example 4.16 (b) //Program to Evaluate and Compare the 8-point DFT of the given Sequence //x2[n]=1, 0<=n<=6 using DIT-FFT Algorithm. ; ; ; x2=[1,1,1,1,1,1,1,0]; //FFT Computation X2 = fft (x2 , -1); disp(X2,'X2(k) = '); exit();
0e7b8a0678f9bf56cfdc86a65b7b7f5a1c7aa169
449d555969bfd7befe906877abab098c6e63a0e8
/1583/CH3/EX3.6/NNID_Ex_3_6.sce
c39f70dffbe0a8f48c558b5647a30dbb874d4164
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
401
sce
NNID_Ex_3_6.sce
clc //Chapter 3:Network noise and intermodulation distortion //example 3.6 page no 82 //given NF=8//noise figure in dB B=2.1*10^3//bandwidth Rs=50//sourse resistance Si_dB=NF-144+log10(B)//available input power in dBm Si_W=(10^(Si_dB/10))/10^3//available input power in W Ei=sqrt(Si_W*4*Rs)//minimum detectable signal mprintf('the minimum detectable signal is %f uV',round(Ei*1e6*100)/100)
7e77510231595045b6c1a856002cfde4c4f62e7f
449d555969bfd7befe906877abab098c6e63a0e8
/1004/CH2/EX2.4/Ch02Ex4.sci
50e5ed53ef3228798451899618cb88feb72bed10
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
553
sci
Ch02Ex4.sci
// Scilab Code Ex2.4 Longest wavelength of incident radiation: Pg:45 (2008) h = 6.624e-034; // Planck's constant, Js c = 3e+08; // Speed of light, m/s e = 1.6e-019; // Energy equivalent of 1 eV, joule/eV phi = 6*e; // Work function of metal, joule f0 = phi/h; // Threshold frequency for metal surface, Hz L0 = c/f0; // Threshold (Longest) wavelength for metal, m printf("\nThe longest wavelength of incident radiation = %4d angstrom", L0/1e-010); // Result // The longest wavelength of incident radiation = 2070 angstrom
10018cd625e7c1dfea4ff82cfaad7827f1be80e5
99602a3df67f0bf806ffb5e714bbafcdd7d6ae88
/tp/tp4/proba.sce
bc525349efd882242acffe5859748f706fa586d1
[]
no_license
BenjaminVanRyseghem/RDF
cbe77b76bb18680c03f16360fdad40723de25a68
e9ed372d66fa4152426b3b1115448323ed0e9b58
refs/heads/master
2023-08-31T14:15:37.668811
2013-04-11T15:49:58
2013-04-11T15:49:58
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
663
sce
proba.sce
// example 1: Gaussienne " ' //d = rand(1,10000,'normal'); //clf(); // 20 baton //histplot(20,d,leg='rand(1,10000,''normal'')',style=16,rect=[-3,0,3,0.5]); // example 2: Binomiale n = 6, p = 0.5 // fail 6 fois avant success et probabilite de success de 0.5 //d = grand(1000,1,"bin",6,0.5); // creer un vector de -0.5 a 6.5 avec 8 element //c = linspace(-0.5,6.5,8); //clf(); //histplot(c,d,style=2); // example 3: Exponentielle lambda = 2; x = grand(100000, 1, "exp", 1/lambda); Xmax = max(x); clf(); histplot(40, x, style=2); x = linspace(0, max(Xmax), 100)'; plot2d(x,lambda*exp(-lamda*x), strf="000", style=5) legend(["histogram" "la courbe exacte"]);
01c485a558b7052f9926c28fd69dade67a2336f6
e388dc46e41d78403f4e7481eb3fd52f640bd20e
/sy27/ecart_pente_frenet.sci
a8c1d31b5db89675e5866d270341393f039c2e96
[]
no_license
roddehugo/utc
4ef822c019cb4a00775bdde6b908e258cd6ac1a5
1f81e64c13eed562b95ed67faedca24f0e583492
refs/heads/master
2021-06-02T02:01:33.907859
2020-05-04T16:31:54
2020-05-04T16:31:54
58,293,385
3
2
null
null
null
null
UTF-8
Scilab
false
false
830
sci
ecart_pente_frenet.sci
function [d,p]=ecart_pente_frenet(A,B,x) //Le repère de Frenet a A pour origine et B définit l'axe x //x est une position (ou bien une pose 2D) //d= ecart latéral signé //p= pente signée du segment [AB] //PhB nov 2015 M = x(1:2); xa=A(1);ya=A(2); xb=B(1);yb=B(2); alpha=atan((yb-ya),(xb-xa)); //mat homogène O_T_A=[cos(alpha), -sin(alpha), xa;... sin(alpha), cos(alpha), ya;... 0 , 0 , 1 ;] //dans RA (repère de frenet) A_M = inv(O_T_A)*[M;1]; axm=A_M(1);aym=A_M(2); A_B = inv(O_T_A)*[B;1] axb=A_B(1);ayb=A_B(2); if (axm<0) then d=sign(aym)*norm(A-M); elseif (axm>axb) then d=sign(aym)*norm(B-M); else d=aym; end p=alpha; endfunction
f846166442d799e2f688f48460f56d1da52a1c7d
f8bb2d5287f73944d0ae4a8ddb85a18b420ce288
/Scilab/machine-sliding-mode/final-smc/M=I test/2自由度機械システム.sce
b68b32816036375d33d295268f09a3592b7d9ca2
[]
no_license
nishizumi-lab/sample
1a2eb3baf0139e9db99b0c515ac618eb2ed65ad2
fcdf07eb6d5c9ad9c6f5ea539046c334afffe8d2
refs/heads/master
2023-08-22T15:52:04.998574
2023-08-20T04:09:08
2023-08-20T04:09:08
248,222,555
8
20
null
2023-02-02T09:03:50
2020-03-18T12:14:34
C
UTF-8
Scilab
false
false
2,430
sce
2自由度機械システム.sce
//------------------------------------------------ //■2013.10.09 秋山殿 // 対称化された最終SMC(極配置)+チャタリング除去 //------------------------------------------------ // ▼2自由度機械システムの定義 L=[1 0; 0 1]; //アクチュエータに加わる力を表す行列 k=10; //到達則のスカラ関数 m1=1; m2=10; //質量 k1=1.1; k2=2.2; //ばね定数 d1=1.2; d2=2.1; //減衰定数 M=[m1 0; 0 m2]; //質量行列 T = [0 sqrt(m2);sqrt(m1) 0]; T1 = [inv(T) zeros(2,2);zeros(2,2) inv(T)] K = [k1 -k1; -k1 k1+k2]; D = [d1 -d1; -d1 d1+d2]; K1=inv(T')*K*inv(T); D1=inv(T')*D*inv(T); L1=inv(T')*L; disp(K1); disp(D1); disp(L1); AF = [zeros(2,2) eye(2,2); -K1 -D1]; BF = [zeros(2,2); L1 ]; // ▼切換超平面Sの定義(設計済) S1=[4 0; 0 3]; //(対称) //S1=[1 2; -3 6]; //(非対称1) //S1=[2 2; -1 5]; //(非対称2) S2=[eye(2,2)] S = [S1 S2]; //切換超平面 // ▼コンソールでフィードバックゲインの値を確認 F={inv(S*BF)*S*AF}; Ct=F; disp(F); disp(Ct); // ▼離散化システム h = 0.02; // サンプリング時間 cont = syslin('c',AF,BF,S); disc = dscr(cont,h); // Discretized system // [A,B,Sd] = abcd(disc); // ▼初期値 X=[0.5 1.0 1.5 2.0]';//初期状態 //=========== シミュレーション ============== lines(0) for i = 1:250; sigma = S*X; // switching function // U = -inv(S*BF)*(S*AF*X)-k*sigma/{norm(sigma)};//等価制御入力 dX =(A*X+B*U); //状態方程式 // ▼データの保存 //disp(T1*X); Xh1(:,i) = T1*X; Uh1(:,i) = U; // 弄った Sh1(:,i) = sigma;// 弄った X = dX; end // ▼プロット clf() tt =0:h:(i-1)*h; //=========== グラフ描画 ============== //▼第1象限:制御入力 subplot(222),plot(tt,Uh1(1,:),tt,Uh1(2,:)),xgrid(2) title('制御入力') xlabel('Time [s]') ylabel('Control Input [N]') //▼第2象限:状態変数 //subplot(221),plot(tt,Xh1(3,:),tt,Xh1(4,:)),xgrid(2) subplot(221),plot(tt,Xh1(1,:),tt,Xh1(2,:),tt,Xh1(3,:),tt,Xh1(4,:)),xgrid(2) title('状態変数') xlabel('Time [s]') ylabel('Displacement [m]') //▼第3象限:切換関数 subplot(223),plot(tt,Sh1),xgrid(2) title('切換関数') xlabel('Time [s]') ylabel('Swiching Function') //▼第4象限:位相平面 subplot(224),plot(Xh1(1,:),Xh1(3,:),Xh1(2,:),Xh1(4,:)),xgrid(2) title('位相平面') xlabel('x1') ylabel('x2') // ▼クリア clear tt Uh1 Xh1 Sh1;
d815805c653e02b3115877fc36dbdafdd541a00d
449d555969bfd7befe906877abab098c6e63a0e8
/2087/CH6/EX6.10/example6_10.sce
1d114e835e2c5a567292b8b00b8af0df4c1201ad
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
837
sce
example6_10.sce
//example 6.10 //calculate //minimum capacity of reservior //the initial storage storage required to maintain uniform demand clc;funcprot(0); //given in=[2.83 4.25 5.66 18.4 22.64 22.64 19.81 8.49 7.1 7.1 5.66 5.66]; //inflow(x10^5) s=0; for i=1:12 s=s+in(i); end avd=s/12; //average demand(x10^5) s=0;t=0; for i=1:12 e(i)=avd-in(i); if e(i)<0 then S(i)=-e(i); //surplus(x10^5) s=s+S(i); else D(i)=e(i); //Deficit(x10^5) t=t+D(i); end end d=(s-(t-D(1)-D(2)-D(3))); s=s; mprintf("minimum capacity of reservior=%fD+5 cumec.",s); mprintf("\nstorage required to maintain uniform demand=%fD+5 cumec",d);
211a20b2546b156274cf195ee4bb03e105612247
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/CreatingPlots/testgetset.sce
5a097106bd3501d9f09b259535ba67778296725b
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
296
sce
testgetset.sce
plot();F=gcf(); F.type // type of handle F= Figure F.visible // on <=> the figure is visible F.visible="off";// off <=> the figure becomes invisible F.figure_id // figure number 0 F.figure_id=1; // in the graphics window, the number changes to 1 delete(F) //to delete
0b49e8ecc815783a3e9caeffae736f04117e0e8b
8d84f0f9896b6d830524723e9edec1c30f50cc7b
/Unit 4/Rayleigh power method.sce
277016dc4046f00c5bf610d5a98b39d93ae8810f
[]
no_license
saveri1205/Linear-Algebra
29a40be2c04213cec652cee72ce14411ab0eeb9a
0d2b0b23bbb9f693f4c1b4e34a1b434378ab3e18
refs/heads/master
2021-01-01T13:23:18.102349
2020-06-03T10:50:23
2020-06-03T10:50:23
239,297,246
0
0
null
null
null
null
UTF-8
Scilab
false
false
506
sce
Rayleigh power method.sce
clear;clc;close(); // Given martrix A=[3 0 1;2 2 2;4 2 5]; disp(A,'The given matrix is') //Initial vector u0=[1 1 1]; disp(u,'The initial vector is') v=A*u0; a=max(u0); disp(a,'First approximation to eigen value is') while abs(max(v)-a)>0.002 disp(v,'current eigen vector is') a=max(v); disp(a,'current eigen vlaue is') u0=v/max(v); v=A*u0; end format('v',4); disp(max(v),'The largest Eigen value is: ') format('v',5) disp(u0,'The corresponding Eigen vector is: ')
4d64f614dc4613525fc9921d0ea0aae4db4f722a
931090e82489a96a263c3a3f0747d2cf703d4672
/tests/cmd-rv.tst
45203a9c563ea3aa8ba4ee7d47bbecce0abcaa8a
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-other-permissive", "BSD-2-Clause", "Zlib", "BSD-3-Clause" ]
permissive
darindf/hyperion
2b70924f94fc5fa62eed330c3736f1adf9ff7c44
05652fb9d7993d942138196c4e9bad6b1c7a63e1
refs/heads/master
2020-12-03T10:29:01.460015
2016-07-30T09:37:00
2016-07-30T09:37:00
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
436
tst
cmd-rv.tst
* #------------ defsym cmd r #------------ * defsym arch S/370 script $(testpath)/cmd-rv-2K.subtst * defsym arch S/390 script $(testpath)/cmd-rv-4K-32.subtst * defsym arch z/Arch script $(testpath)/cmd-rv-4K-64.subtst * #------------ defsym cmd v #------------ * defsym arch S/370 script $(testpath)/cmd-rv-2K.subtst * defsym arch S/390 script $(testpath)/cmd-rv-4K-32.subtst * defsym arch z/Arch script $(testpath)/cmd-rv-4K-64.subtst
08bdd9ac7191be4f88de13ffded1b2eccb0bfaab
449d555969bfd7befe906877abab098c6e63a0e8
/929/CH2/EX2.5.b/Example2_5_b.sce
bf63017713d0e621f4c47b9c38f0b8f71635775f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
253
sce
Example2_5_b.sce
//Example 2.5(b) clear; clc; R1=15*10^3;//From the result of Example 2.4 p=0.001;//For 1% tolerance p=t/100=1/100=0.01 emax=4*p;//imbalace factor Romin=R1/emax; printf("Ro can be anywhere in the range Ro>=%.2f Mohms",Romin*10^(-6));
8f078a716428be2fab02958edcd20f5c4586bb26
449d555969bfd7befe906877abab098c6e63a0e8
/2699/CH12/EX12.14/Ex12_14.sce
0b88e0570e1c3203246a0c3bbef1db5aea39f3d1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
291
sce
Ex12_14.sce
//EX12_14 Pg-12.30 clc clear m=0.5;// modulation index It=12;//antenna current when AM transmitter is 50% modulated Ic=It/sqrt(1+m^2/2);//carrier current m=0.9;//when modulation depth is increase to 0.9 It=Ic*sqrt(1+m^2/2) printf("Therefore total antenna current It=%.2f A",It)
9ec72e2251f87863364668026f31f084672f6cf5
449d555969bfd7befe906877abab098c6e63a0e8
/62/CH5/EX5.54/ex_5_54.sce
1c107bbd54f631420a385a4e8680690b75a12bc1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
497
sce
ex_5_54.sce
syms t w0 W w=-10:0.1:10; wc=2; for i=1:length(w) if w(i)>-wc & w(i)<wc then Hw(i)=1; else Hw(i)=0; end end a=gca(); plot(w,Hw); poly1=a.children.children; poly1.thickness=3; poly1.foreground=2; xtitle('x(t)','t') disp("we know y(t)=x(t) for w<wc"); Xw=ones(1,length(w))./(2+%i*w); ex=integ(exp(-4*t),t,0,%inf); disp("energy in x(t) is 1/4"); ey=(1/(2*%pi))*integ(1/(4+W^2),W,-wc,wc); ratio=ey/ex; disp("the ratio is two therefore wc=2 rad/s ");
ddb0134118afac86af2db79d48f1ce3cc2bb6d85
b891303eb65fe7f18e45744097cd94c1a605c36b
/zad2.sce
fa0dcc0405ea7b0cf3505bceaed9a439f16ec8d0
[]
no_license
julialaska/pu
3d6c87c0fd8928683c96b3083fe38919e8b5be42
e33e70462fe0e021eac1dbcdd99b5a14c883b1fd
refs/heads/main
2023-02-17T00:04:51.726784
2021-01-20T12:54:06
2021-01-20T12:54:06
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
190
sce
zad2.sce
clear clf clc x = [-1:0.01:6]; y = 2**(x+4)+3; z = (x**3+4*x)/x**2+5; plot(x,y,'LineWidth',3) plot(x,z,'r','LineWidth',3) xgrid title('Plot of 2**(x+4)+3 and (x**3+4*x)/(x**2+5)')
9ed32bf5da614ffcf86a2339818c9045c7034347
56c6f6a051cef6f7d5f48b0ce6931a759a22ea76
/plugins/SimpleCronClone/tab.sce
4e762e04ce21a20801f58772d47eff1baac79fdf
[]
no_license
admalledd/mcserver_scripts
28caaa96aaa215542a6cd1f021335f7a8d2f6101
5816a321717b876eb2d93c382116f7a22b7fbaf1
refs/heads/master
2021-01-17T13:57:53.323676
2016-07-21T00:52:01
2016-07-21T00:52:01
10,610,030
0
0
null
null
null
null
UTF-8
Scilab
false
false
881
sce
tab.sce
playerJoin: - command: 'do adm_log allevents::$0:::$1::$2::$3' playerFirstJoin: - command: 'do adm_log allevents::$0:::$1::$2::$3' playerQuit: - command: 'do adm_log allevents::$0:::$1::$2::$3' serverEmpty: - command: 'do adm_log allevents::$0:::$1::$2::$3' serverNotEmpty: - command: 'do adm_log allevents::$0:::$1::$2::$3' playerTeleportWorld: - command: 'do adm_log allevents::$0:::$1::$2::$3' worldEmpty: - command: 'do adm_log allevents::$0:::$1::$2::$3' worldNotEmpty: - command: 'do adm_log allevents::$0:::$1::$2::$3' hourChange: # - command: 'do say allevents:::$0:$1:$2' dawn: # - command: 'do say allevents:::$0:$1' midday: # - command: 'do say allevents:::$0:$1' dusk: # - command: 'do say allevents:::$0:$1' night: # - command: 'do say allevents:::$0:$1' midnight: # - command: 'do say allevents:::$0:$1'
64ac0e81b7d2a42d8b2ed544e6dd17fe590b1af8
449d555969bfd7befe906877abab098c6e63a0e8
/2417/CH11/EX11.17/Ex11_17.sce
b453bf07b76e9a5a43d5ae78962f77072eb6e3fc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,478
sce
Ex11_17.sce
//scilab 5.4.1 clear; clc; printf("\t\t\tProblem Number 11.17\n\n\n"); // Chapter 11 : Heat Transfer // Problem 11.17 (page no. 578) // Solution //The first step is to check Reynolds number.It will be recalled that the Reynolds number is given by (D*V*rho)/mu and is dimensionless.Therefore,we can use D, diameter in feet;V velocity in ft/hr;rho density in lbm/ft^3 and mu viscosity in lbm/(ft*hr). //Alternatively,the Reynolds number is given by (D*G)/mu,where G is the mass flow rate per unit area (lbm/(hr*ft^2)). G=((20*60)*(4*144)/(%pi*0.87^2)); //Unit:lbm/(hr*ft^2) //Inside diameter=0.87 inch ////1 in.^2=144 ft^2 //20 lbm/min of water(min converted to second) //the viscosity of air at these conditions is obtained from figure 11.17 as 0.062 lbm/(ft*hr).So, mu=0.33; //the viscosity of air //unit:lbm/(ft*hr) D=0.87/12; //Inside diameter //1 in^2=144 ft^2 //Therefore Reynolds number is Re=(D*G)/mu; //Reynolds number //which is well into the turbulent flow regime. printf("The Reynolds number is %f\n",Re); //The next step is to enter Figure 11.18 at W/1000 of 20*(60/1000)=1.2 and 400F to obtain h1=630. //From the figure 11.20,we obtain F=1.25 for an inside diameter of 0.87 inch.So, h1=630; //basic heat transfer coefficient //unit:Btu/(hr*ft^2*F) F=1.25; //correction factor h=h1*F; //heat transfer coefficient //the inside film coefficient //unit:Btu/(hr*ft^2*F) printf("The heat-transfer coefficient is %f Btu/(hr*ft^2*F)\n",h);
5ca551ccd694a438197fc3e3a4aca884a80fc067
449d555969bfd7befe906877abab098c6e63a0e8
/199/CH8/EX8.5/Example_8_5.sce
6337880a7161b8d9c79d2ef2377456bc8a7dabd8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
276
sce
Example_8_5.sce
// Chapter8 // Page.No-335, Figure.No-8.25(a) // Example_8_5 // Output voltage // Given clear;clc; vin=100*10^-3; t=0:0.1:2*%pi; i=1; for t=0:0.1:2*%pi; if t<=%pi v(i)=vin*sin(t); else v(i)=0; end i=i+1; end t=0:0.1:2*%pi; plot(t,v)
02a1ee8bd329c078d98b0942a04ba7d3fbf05a5b
0e175f1d3cd0577b4c11412e79d40f48015dd488
/lqr_pendulo1.sce
18da457b8368aadc23188338f9fd9daf028f3b51
[]
no_license
carbonmansp/Laboratorio3Linealizacion
eff813c9795ca10a16c69109da9bcbc8a46c6261
4b37a2e749014eae97c90dee73dfd412a83eabdf
refs/heads/master
2022-11-28T21:17:21.870111
2020-08-16T04:17:15
2020-08-16T04:17:15
287,871,235
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,171
sce
lqr_pendulo1.sce
// Form the state space model (assume full state output) A = [0 1 0 0;0 -0.0014 0.1271 0;0 0 0 1;0 -0.025 19.1713 0]; B = [0;1.7777;0;3.4296]; C = [1 0 0 0 //dy1 0 0 1 0];//dy2 D=[0;0]; //inputs u and e; outputs dy1 and dy2 P = syslin("c",A, B, C, D); //The compensator weights Q=[800 0 0 0;0 0 0 0;0 0 200 0;0 0 0 0] //Weights on states R=1; //Weight on input K=lqr(P,Q,R); dt=0.1; Pd=dscr(P, dt); Pda=Pd.a Pdb=Pd.b Pdc=Pd.c Pdd=Pd.d // Set the noise covariance matrices Q_e=0.1; //additive input noise variance R_vv=0.01*eye(2,2); //measurement noise variance Q_ww=Pd.B*Q_e*Pd.B'; //input noise adds to regular input u //----syntax [K,X]=lqe(P,Qww,Rvv [,Swv])--- H=lqe(Pd,Q_ww,R_vv); //observer gain Qcom=sysdiag(Q,R); Qobs=sysdiag(Q_ww,R_vv); J=lqg(Pd,Qcom,Qobs); Ja=J.a Jb=J.b Jc=J.c Jd=J.d // Form the closed loop Sys=Pd/.(-J); // Compare real and Estimated states for initial state evolution t = 0:dt:30; // Simulate system evolution for initial state [1;0;0;0; y = flts(zeros(t),Sys,eye(8,1)); clf; plot2d(t',y') e=gce();e.children.polyline_style=2; L=legend(["$dy_1$","$dy_2$"]);L.font_size=4; xlabel('Time (s)')
5d8731685a81e07616ab700f54bb562f9f8c96d4
449d555969bfd7befe906877abab098c6e63a0e8
/3863/CH1/EX1.16/Ex1_16.sce
deb4a461007670b8d7cfc28a002ebf956eb2a967
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
367
sce
Ex1_16.sce
clear // //Given //Variable declaration D1=30 //Larger diameter in mm D2=15 //Smaller diameter in mm L=350 //Length of rod in mm P=5.5*10**3 //Axial load in N dL=0.025 //Extension in mm //Calculation E=int((4*P*L)/(%pi*D1*D2*dL)) //Modulus of elasticity in N/sq.mm //Result printf("\n Modulus of elasticity,E = %.5eN/mm^2",E)
3682412ed3b9a0265bf49cedf6eed6063aa2ee8a
449d555969bfd7befe906877abab098c6e63a0e8
/3517/CH4/EX4.10/Ex4_10.sce
539cc911970a4e59ee01990363af07f7732dec7e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
457
sce
Ex4_10.sce
//Caption:Determine output voltage when (a)Device is cutoff (b)Device is switched on //Ex4.10 clc; clear; close; Idf=0.25//Drain current at cutoff(in ns) rd=40//Drain resistance at switched on(in ohm) Vdd=15//Drain voltage(in volts) Rd=6.8//Drain resistance(in kilo ohm) Vo=Vdd-(Idf*Rd*10^(-6)) disp(Vo,'Output voltage when device is cutoff(in volts)=') Id=Vdd/Rd Vo2=Id*rd disp(Vo2,'Output voltage when device is switched on(in milli volts)=')
965b5575b4f877c6371cc4ec04d315f57ddc9fe8
449d555969bfd7befe906877abab098c6e63a0e8
/992/CH9/EX9.9/Ex9_9.sce
b1b4c4f22a158c619b9e8ac0b640bd5847151492
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
183
sce
Ex9_9.sce
//Exa:9.9 clc; clear; close; //Given: SNR=32; Actual_snr=10^(SNR/10); w1=300;//in Hz w2=3400;//in Hz w=w2-w1; c=w*log2(1+Actual_snr); printf("\n Capacity=%f bits/sec",c);
266b5ca57f7671bbd6c2fd53c5fde11dbce1b8e4
449d555969bfd7befe906877abab098c6e63a0e8
/2198/CH1/EX1.40.10/Ex1_40_10.sce
d6b95afd1c556ed915fe04645d866fa9fae569d5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
273
sce
Ex1_40_10.sce
//Ex 1.40.10 clc;clear;close; format('v',9); //Given : rho=9.6*10^-2;//ohm-m mu_n=1300;//cm^2/V-s q=1.6*10^-19;//Coulomb sigma_n=1/rho;//(ohm-m)^-1 ND=sigma_n/q/(mu_n*10^-4);//per m^3 ni=5*10^22*10^6;//per m^3 disp(ND/ni,"Ratio of donor atom to Si atom : ");
332ffc91bfa52c7803b2ee6e64e2059bbf0bd013
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/TE44.prev.tst
6ad184ffcf2c66b0074961962395befa383bc25f
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
4,226
tst
TE44.prev.tst
TranspositionSet={[0,1,3,2],[1,0,2,3],[1,0,3,2],[2,3,0,1],[2,3,1,0],[3,2,1,0],[3,2,0,1]} considerNonPrimitive Expanding for base=2, level=2, reasons+features=base,transpose,primitive,same,similiar,evenexp invall,norm Refined variables=a,b,c,d [0+1a,0+1b,0+1c,0+1d]: unknown -> [1] [0,0,0,0] a²+b²-c²-d² -> solution [0,0,0,0],trivial(3) [1,0,1,0],trivial(3) [0,1,1,0],trivial(3) [1,0,0,1],trivial(3) [0,1,0,1],trivial(3) [1,1,1,1],trivial(2) ---------------- level 0 expanding queue[0]^-1,meter=[2,2,2,2]: a²+b²-c²-d² [0+2a,0+2b,0+2c,0+2d]: non-primitive -> solution [0,0,0,0],trivial(3) [2,0,2,0],trivial(3) [0,2,2,0],trivial(3) [2,0,0,2],trivial(3) [0,2,0,2],trivial(3) [2,2,2,2],trivial(2) [1+2a,0+2b,1+2c,0+2d]: unknown -> [1] [1,0,1,0] a+a²+b²-c-c²-d² -> solution [1,0,1,0],trivial(3) [3,0,3,0],trivial(3) [1,2,1,2],trivial(2) [3,2,3,2],trivial(2) [0+2a,1+2b,1+2c,0+2d]: transposed [1] by [3,2,0,1] [1+2a,0+2b,0+2c,1+2d]: transposed [1] by [2,3,1,0] [0+2a,1+2b,0+2c,1+2d]: transposed [1] by [3,2,1,0] [1+2a,1+2b,1+2c,1+2d]: unknown -> [2] [1,1,1,1] a+a²+b+b²-c-c²-d-d² -> solution [1,1,1,1],trivial(2) [3,1,3,1],trivial(2) [1,3,3,1],trivial(2) [3,1,1,3],trivial(2) [1,3,1,3],trivial(2) [3,3,3,3],trivial(2) endexp[0] ---------------- level 1 expanding queue[1]^0,meter=[2,2,2,2]: a+a²+b²-c-c²-d² [1+4a,0+4b,1+4c,0+4d]: unknown -> [3] [0,0,0,0] a+2a²+2b²-c-2c²-2d² -> solution [1,0,1,0],trivial(3) [5,0,5,0],trivial(3) [1,4,1,4],trivial(2) [5,4,5,4],trivial(2) [3+4a,0+4b,1+4c,0+4d]: negative-1 [3] by {a=>-a-1} -> solution [3,4,5,0],trivial(1) [1+4a,0+4b,3+4c,0+4d]: negative-1 [3] by {c=>-c-1} -> solution [5,0,3,4],trivial(1) [3+4a,0+4b,3+4c,0+4d]: negative-1 [3] by {a=>-a-1,c=>-c-1} -> solution [3,0,3,0],trivial(3) [7,0,7,0],trivial(3) [3,4,3,4],trivial(2) [7,4,7,4],trivial(2) [1+4a,2+4b,1+4c,2+4d]: unknown -> [4] [0,1,0,1] a+2a²+2b+2b²-c-2c²-2d-2d² -> solution [1,2,1,2],trivial(2) [5,2,5,2],trivial(2) [1,6,1,6],trivial(2) [5,6,5,6],trivial(2) [3+4a,2+4b,1+4c,2+4d]: negative-1 [4] by {a=>-a-1} [1+4a,2+4b,3+4c,2+4d]: negative-1 [4] by {c=>-c-1} [3+4a,2+4b,3+4c,2+4d]: negative-1 [4] by {a=>-a-1,c=>-c-1} -> solution [3,2,3,2],trivial(2) [7,2,7,2],trivial(2) [3,6,3,6],trivial(2) [7,6,7,6],trivial(2) endexp[1] expanding queue[2]^0,meter=[2,2,2,2]: a+a²+b+b²-c-c²-d-d² [1+4a,1+4b,1+4c,1+4d]: unknown -> [5] [0,0,0,0] a+2a²+b+2b²-c-2c²-d-2d² -> solution [1,1,1,1],trivial(2) [5,1,5,1],trivial(2) [1,5,5,1],trivial(2) [5,1,1,5],trivial(2) [1,5,1,5],trivial(2) [5,5,5,5],trivial(2) [3+4a,1+4b,1+4c,1+4d]: negative-1 [5] by {a=>-a-1} -> solution [7,1,5,5],trivial(2) [1+4a,3+4b,1+4c,1+4d]: negative-1 [5] by {b=>-b-1} -> solution [1,7,5,5],trivial(2) [3+4a,3+4b,1+4c,1+4d]: negative-1 [5] by {a=>-a-1,b=>-b-1} [1+4a,1+4b,3+4c,1+4d]: negative-1 [5] by {c=>-c-1} -> solution [5,5,7,1],trivial(2) [3+4a,1+4b,3+4c,1+4d]: negative-1 [5] by {a=>-a-1,c=>-c-1} -> solution [3,1,3,1],trivial(2) [7,1,7,1],trivial(2) [3,5,3,5],trivial(2) [7,5,7,5],trivial(2) [1+4a,3+4b,3+4c,1+4d]: negative-1 [5] by {b=>-b-1,c=>-c-1} -> solution [1,3,3,1],trivial(2) [1,7,7,1],trivial(2) [5,3,3,5],trivial(2) [5,7,7,5],trivial(2) [3+4a,3+4b,3+4c,1+4d]: negative-1 [5] by {a=>-a-1,b=>-b-1,c=>-c-1} [1+4a,1+4b,1+4c,3+4d]: negative-1 [5] by {d=>-d-1} -> solution [5,5,1,7],trivial(2) [3+4a,1+4b,1+4c,3+4d]: negative-1 [5] by {a=>-a-1,d=>-d-1} -> solution [3,1,1,3],trivial(2) [3,5,5,3],trivial(2) [7,1,1,7],trivial(2) [7,5,5,7],trivial(2) [1+4a,3+4b,1+4c,3+4d]: negative-1 [5] by {b=>-b-1,d=>-d-1} -> solution [1,3,1,3],trivial(2) [5,3,5,3],trivial(2) [1,7,1,7],trivial(2) [5,7,5,7],trivial(2) [3+4a,3+4b,1+4c,3+4d]: negative-1 [5] by {a=>-a-1,b=>-b-1,d=>-d-1} [1+4a,1+4b,3+4c,3+4d]: negative-1 [5] by {c=>-c-1,d=>-d-1} [3+4a,1+4b,3+4c,3+4d]: negative-1 [5] by {a=>-a-1,c=>-c-1,d=>-d-1} [1+4a,3+4b,3+4c,3+4d]: negative-1 [5] by {b=>-b-1,c=>-c-1,d=>-d-1} [3+4a,3+4b,3+4c,3+4d]: negative-1 [5] by {a=>-a-1,b=>-b-1,c=>-c-1,d=>-d-1} -> solution [3,3,3,3],trivial(2) [7,3,7,3],trivial(2) [3,7,7,3],trivial(2) [7,3,3,7],trivial(2) [3,7,3,7],trivial(2) [7,7,7,7],trivial(2) endexp[2] ---------------- level 2 Maximum level 2 [6] mod 2: a²+b²-c²-d²
7b2372b9365a0b258acbe8a4173be9d8193ad8ce
449d555969bfd7befe906877abab098c6e63a0e8
/61/CH4/EX4.4/ex4_4.sce
11bf7b5ef93f14b218840a49e5254a6948c37ae3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
268
sce
ex4_4.sce
//ex4.4 V_CE_sat=0.2; V_BE=0.7; V_BB=3; V_CC=10; B_DC=50; R_B=10*10^3; R_C=1*10^3; I_C_sat=(V_CC-V_CE_sat)/R_C; I_B=(V_BB-V_BE)/R_B; I_C=B_DC*I_B; if I_C>I_C_sat then disp('transistor in saturation') else disp('transistor not in saturation') end
814ca54ae9f9c04df430a01d15f198a010ed8575
449d555969bfd7befe906877abab098c6e63a0e8
/2192/CH4/EX4.2/4_2.sce
57aa9be25171ab9afc67e06f1da25ce68a764867
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
797
sce
4_2.sce
clc,clear printf('Example 4.2\n\n') P=16*1000 //power supplied in watts V=220 //supply voltage e=0.9;k=0.57; //emissivity and radiant efficiency rho=1.09*10^-12//resistivity in ohm-metre l_by_d2 = %pi*V^2/(4*rho*P) //ratio of l and d^2 (i) T1=1170+273; T2=500+273; //temperatures of wire and charge H=5.72*k*e*(T1^4-T2^4)/100^4 //heat dissipated from surface //Surface area = %pi*d*l //total heat dissipated = electric power input and squaring the equation d2l2= ( P/(H*%pi) )^2 //d^2*l^2 (ii) //multiplying expression (i) and expression (ii) l =(1/100)*(d2l2*l_by_d2)^(1/3) printf('Length of wire = %.0f metre',l) d=1000*sqrt(d2l2)/l //d=sqrt( l/l_by_d2 ) printf('\nDiameter of wire = %.2f mm',d)
21de95a369f15fe0b0d602e3d16cee392c04a935
a2845a06ebac1138c6854d691780b120cdd556ab
/bisection.sce
4001d1a194da2e3e6060f40e6d6984a6b0201653
[]
no_license
asp2809/Scilab-Programs
d734202084dc70e2b4e3281410833d315ce1558c
6a49e9401ee81dd3ffc909fe6a3954b5e184c70c
refs/heads/master
2020-03-10T15:11:33.831289
2018-10-05T09:50:06
2018-10-05T09:50:06
129,443,439
1
0
null
2018-10-05T09:50:07
2018-04-13T19:10:50
Scilab
UTF-8
Scilab
false
false
580
sce
bisection.sce
//program to implement bisection method function []=bisection(r) xl=0 xu=r xm=xl+xu/2 p=poly([3.993*10^-4,0, -0.165,1],'x','coeff') p1=horner(p,xl) p2=horner(p,xu) if p1*p2<0 then xu=xm else xl=xm end xmn=(xl+xu)/2 e=abs((xmn-xm)/xmn)*100 while e>5 xm=xmn p1=horner(p,xl) p2=horner(p,xu) if p1*p2<0 then xu=xm else xl=xm end xmn=(xl+xu)/2 e=abs((xmn-xm)/xmn)*100 disp(e,xmn) end endfunction
fbb4fb5d128ed224e1bed84337db45ff8093c065
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH15/EX15.30/Ex15_30.sce
16920f893d31690a183a8ce0407e2de3829f5114
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex15_30.sce
//Initilization of variables rho=490 //lb/ft^3 t=0.02 //in d=4 //in r=d/2 //in g=32.2 //ft/s^2 //Calculations W=(%pi*r^2*t*rho)/1728 //lb //Mass m=W/g //slugs //Momemt of inertia I=(1/4)*m*(r/12)^2 //slug-ft^2 //Result clc printf('the moment of inertia is %fslug-ft^2',I)
31982af44b8770cd53a753fce3aa8b7b80b2d731
449d555969bfd7befe906877abab098c6e63a0e8
/1376/CH16/EX16.9/16_9.sci
41e4b2c097672db6a580050aad510ba9fab7e596
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
306
sci
16_9.sci
//16.9 clc; IL=11000; Eph=IL/3^0.5; printf("\nLine to neutral voltage=%.2f V",Eph) E_Each_phase=Eph; printf("\nVoltage induced in Each phase winding=%.2f V",E_Each_phase) T=(242/360)*(1/50)*1000; printf("\nTime interval=%.2f ms",T) IL_peak=(2^0.5)*IL; printf("\nPeak line voltage=%.2f V",IL_peak)
b9280ef0148973e901610467251b259782e5539e
449d555969bfd7befe906877abab098c6e63a0e8
/1808/CH5/EX5.4/Chapter5_Exampl4.sce
79f9596e5fdaf96083993c22bb8744ac840674b9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,115
sce
Chapter5_Exampl4.sce
clc clear //INPUT DATA n=1.35;//for cylinders p1=1;//pressure in bar v1=1;//volume in m^3 p2=7;//pressure in bar nm=0.85;//mechanical efficiency in percentage nt=0.9;//Turbine efficiency in percentage N=300;//speed in rpm //CALCULATIONS //(a)single acting cylinder ip1=((n/(n-1))*p1*10^2*v1*(((p2/p1)^((n-1)/n))-1))/60;//indicated power in kW bp1=ip1/nm;//brake power in kW mp1=bp1/nt;//motor power in kW d1=((v1*4/(1.5*N*3.14))^(1/3))*100;//cylinder bore in single acting cylinder in cm l1=(1.5)*d1;//stroke in cm //Double acting cylinder d2=((v1*4/(1.5*N*2*3.14))^(1/3))*100;//cylinder bore in double acting cylinder l2=1.5*d2;//stroke in cm //OUTPUT printf('(a)Single acting cylinder \n (i)Indicated power is %3.3f kW \n (ii)Power input to the compressor %3.3f kW \n (iii) cylinder bore in single acting cylinder is %3.4f cm \n stroke is %3.2f cm \n',ip1,mp1,d1,l1) printf('(a)Double acting cylinder \n (i)Indicated power is %3.3f kW \n (ii)Power input to the compressor %3.3f kW \n (iii) cylinder bore in double acting cylinder is %3.4f cm \n stroke is %3.2f cm',ip1,mp1,d2,l2)
65064523c350c25569a34418eaf254a9cdffd4e3
e9d5f5cf984c905c31f197577d633705e835780a
/data_reconciliation/nonlinear/scilab/nonlin_ammonia/flowsheet_res_s.sci
e8ae02768391be52b5f6b9639e79f4412ed63b1b
[]
no_license
faiz-hub/dr-ged-benchmarks
1ad57a69ed90fe7595c006efdc262d703e22d6c0
98b250db9e9f09d42b3413551ce7a346dd99400c
refs/heads/master
2021-05-18T23:12:18.631904
2020-03-30T21:12:16
2020-03-30T21:12:16
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,977
sci
flowsheet_res_s.sci
function res = flowsheet_residuals(x, K_coef, cp1_coef, h_hx_coef, frac) //********************************************************************* // Data Reconciliation Benchmark Problems From Literature Review // Author: Edson Cordeiro do Valle // Contact - edsoncv@{gmail.com}{vrtech.com.br} // Skype: edson.cv //********************************************************************* // this function is prepared to use the automatic derivatives toolbox of // Scilab. This toolbox can be instaled using the ATOMS installer (package name: diffcode). // This function evaluates the residuals of the flowsheet of the problem proposed by Swartz, 1989 // // Outputs: // y: the contraints residuals // Inputs: // x: the column vector of the variables: x = [flow, temperatures] // all the equations are coded "by hand": xc = matrix(x(1:$-3), 11,8)'; Q_heater1 = x($-2); Q_heater2 = x($-1); advance = x($); //eq_const = x($); press = xc(1,:); flows = xc(2,:); temper = xc(3,:); comps = xc(4:$,:); res = zeros(83,1); A1 = cp1_coef(1,:); B1 = cp1_coef(2,:); C1 = cp1_coef(3,:); D1 = cp1_coef(4,:); tt = (temper(3) + 273.15 + temper(4) + 273.15)/2 Cp_t = 8.314*(A1 + B1.*tt + C1.*(tt).^2 + D1.* (tt).^-2); // (in J/(mol.K) //pause // Mixer (M) // - mixing heat = 0 (in this consideration we are assuming an error of ~ 0.2% ) // mass compound balance (5 equations) res(1:5) = flows(10)*comps(:,10) + flows(2)*comps(:,2) - flows(3)*comps(:,3); // energy balance need a scaling factor here //res(6) = ((flows(10)*temper(10) + flows(2)*temper(2)) -flows(3)*temper(3))/10000; res(6) = ((flows(10)*temper(10) + flows(2)*temper(2)) -flows(3)*temper(3)); // pressures res(7) = press(10) - press(3); res(8) = press(2) - press(3); // Heater (H) // mass balance res(9:13) = flows(3)*comps(:,3) - flows(4)*comps(:,4); // energy balance this may result in a large error, but the relative error is small, we use a scalling factor here res(14) = (Q_heater1 - flows(3)*(comps(1,3)*Cp_t(1) + comps(2,3)*Cp_t(2) + comps(3,3)*Cp_t(3) + comps(4,3)*Cp_t(4) + comps(5,3)*Cp_t(5) )*(temper(4)-temper(3)))/10000; // pressure - pressure drop of 1 bar in heater H1 // this will be accounted in constraints limits res(15) = press(3) - press(4); // Reactor (R) // pressure are fixed (controled) // equilibrium constant k_eq = (10^(-2.691122*log10(temper(5) + 273.15) - (temper(5) +273.15)*5.519265e-5 +((temper(5) + 273.15)^2)*1.848863e-7 +(2001.6/(temper(5)+273.15) + 2.6899)))^2; // conversion //res(16) = comps($,5) - (comps(1,5)^(0.5)*comps(2,5)^(1.5))*press(5)*k_eq; res(16) = comps($,5)^2 - ((comps(1,5)^(3)*comps(2,5))*press(5)^2)*k_eq; // Ammonia // no: total moles in the reactor inlet //no =flows(4)*(comps(1,4) + comps(2,4) + comps($,4)); //res(17) = (flows(4) - advance)*comps($,5) - (flows(4)*(comps($,4)) + advance); res(17) = (flows(4) - 2*advance)*comps($,5) - (flows(4)*(comps($,4)) + 2*advance); // Hydrogen res(18) = (flows(4) - 2*advance)*comps(1,5) - (flows(4)*(comps(1,4)) - 3*advance); // Nitrogen res(19) = (flows(4) - 2*advance)*comps(2,5) - (flows(4)*(comps(2,4)) - 1*advance); // Inherts (CH4 and Ar) res(20) = flows(4)*comps(3,4) - flows(5)*comps(3,5); res(21) = flows(4)*comps(4,4) - flows(5)*comps(4,5); // Heater 2 (H 2) // Mass balance res(22:26) = flows(5)*comps(:,5) - flows(6)*comps(:,6); // Energy Balance h1 = h_hx_coef(1,1)*temper(5) + h_hx_coef(1,2); // adjusted from simulation data h2 = h_hx_coef(2,1)*temper(6) + h_hx_coef(2,2); // adjusted from simulation data // we need to add an scalling factor here res(27) = (Q_heater2 - flows(5)*(-h2+h1))/10000; // Pressure - pressure drop of 1 bar in heater H2 // this will be accounted in constraints limits res(28) = press(6) - press(5); // Flash (F) // Ki calculation res(29:33) = comps(:,11).*(K_coef(:,1)*temper(6) + K_coef(:,2)) - comps(:,7); //res(14) = comps(2,9)*(coef(1,2)*temper(4) + coef(2,2)) - comps(2,5); //res(15) = comps(3,9)*(coef(1,3)*temper(4) + coef(2,3)) - comps(3,5); //res(16) = comps(4,9)*(coef(1,4)*temper(4) + coef(2,4)) - comps(4,5); //res(17) = comps(5,9)*(coef(1,5)*temper(4) + coef(2,5)) - comps(5,5); // mass balance res(34:38) = flows(6)*comps(:,6) - flows(7)*comps(:,7) - flows(11)*comps(:,11); // sum xi = 1 must be set in the upper and lower bounds res(39) = sum(comps(:,7)) ; res(40) = sum(comps(:,11)) ; // energy and pressure res(41) = temper(6) - temper(7) ; res(42) = temper(6) - temper(11) ; res(43) = press(6) - press(7) ; res(44) = press(6) - press(11) ; // Splitter (S) // mass balance res(45:49) = flows(8)*comps(:,8) - flows(7)*comps(:,7) * frac ; res(50:54) = flows(9)*comps(:,9) - flows(7)*comps(:,7) * (1- frac) ; // energy and pressure res(55) = temper(7) - temper(8) ; res(56) = temper(7) - temper(9) ; res(57) = press(7) - press(8) ; res(58) = press(7) - press(9) ; // Compressor 2 (C2) // mass balance res(59:63) = flows(9)*comps(:,9) - flows(10)*comps(:,10); // energy and pressure // need to add to independent terms //(-69.27) and -11 respectivelly res(64) = temper(10) - temper(9) - ( 0.348713*press(10)); //res(64) = temper(10) - ( 0.348713*press(10)); res(65) = press(9) - press(10) ; // Compressor 1 (C1) // mass balance res(66:70) = flows(1)*comps(:,1) - flows(2)*comps(:,2); // energy and pressure // need to add to independent terms (222) and -200 respectivelly res(71) = temper(2) - temper(1) - ( 0.975429*press(2)); //res(71) = temper(2) - ( 0.975429*press(2)); res(72) = press(1) - press(2) ; // The last equations helps to add redundancy to the system // for stream 7 and 11 the equations were already added in the flash res(73) = sum(comps(:,1)) ; res(74) = sum(comps(:,2)) ; res(75) = sum(comps(:,3)) ; res(76) = sum(comps(:,4)) ; res(77) = sum(comps(:,5)) ; res(78) = sum(comps(:,6)) ; res(79) = sum(comps(:,8)) ; res(80) = sum(comps(:,9)) ; res(81) = sum(comps(:,10)) ; res(82) = temper(4) - temper(5); res(83) = press(4) - press(5); //res(84) = temper(10) - temper(9); endfunction
8b9c22c35ac8a2135695c702d388880d230aefcb
f4d3c7f7e8954cdeb6eb0c7b54a056242b07da22
/BCPST UTT/Old/UTT.sce
d636433fe30b04363bb3914f86be7133ac834252
[]
no_license
ThibaultLatrille/Slides-Sciencework
bfdf959dbbe4a94e621a3a9a71ccbcd06c5fc338
84b53f3901cbdb10fab930e832dc75431a7dce05
refs/heads/master
2020-04-27T07:53:52.313720
2019-03-06T16:17:57
2019-03-06T16:17:57
174,151,758
0
0
null
null
null
null
ISO-8859-1
Scilab
false
false
2,232
sce
UTT.sce
//Marqueur de l'activité du programme on=1; //Blabla d'intro disp(" Ultimate Traveler''s toolbox "); disp(" V 1.0 "); disp(" "); disp(" "); disp(" Ultimate traveller''s toolbox est l''outil idéal pour tous les grands voyageurs soucieux de préparer leur voyage."); disp(" Grâce à sa fabuleuse base de donnée, il vous permettra de connaître la distance entre deux étapes de votre voyage !"); disp(" Pour cela, il vous suffit de suivre les instructions données."); disp(" "); disp(" "); //Boucle permettant la fermeture du programme par un menu while on==1 do //Menu classique, on va pas s'étendre sur le concept RMenu=0; while RMenu <> 1 & RMenu <> 2 do RMenu=x_choose(["Calculer une distance","Quitter Ultimate Traveler''s toolbox"],'Que voulez-vous faire ?'); end //Réponse au menu if RMenu==2 then on=0; else ville1=x_dialog("Entrez le nom de la 1ere ville : ","");// Première ville //Remplacement de tous les symboles foireux nville1=cleaner(ville1); disp(" "); ville2=x_dialog("Entrez le nom de la 2eme ville : ",""); // Seconde ville //Remplacement de tous les symboles foireux nville2=cleaner(ville2); //On remplit les variables correspondant à chaque ville en utilisant la fonction finder() rang1=finder(nville1); rang2=finder(nville2); //Si les villes n'existent pas : if rang1==0 then disp("La première ville n''est pas référencée dans notre base de données"); disp("Vérifiez l''orthographe, on ne sait jamais."); elseif rang2==0 then disp("La seconde ville n''est pas référencée dans notre base de données"); disp("Vérifiez l''orthographe, on ne sait jamais."); else //Creation de la matrice de coordonnées (différente si il existe des doublons) if Value(rang1+1,3)==1|Value(rang2+1,3)==1 then C=doublon(rang1,rang2,ville1,ville2); //On vérifie si il y a des doublons et on remplit la matrice. else C=coord(rang1,rang2); //Remplissage normal end //Calcul de la distance d=calculdistance(C); //Affichage du résultat final. disp(" "); disp(" "); affichage(C,ville1,ville2,d); end end end
4ad26d511df374eeb8dd52189e451b7f820503b4
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH11/EX11.3/Ex11_3.sce
0af8b179b72f7c4232e34f9c5a719b1a15aa428e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
337
sce
Ex11_3.sce
//Variable declaration: syms l //Wavelength (mu.m) I = 40*exp(-l**2) //Intensity of radiation (Btu/h.ft^2.mu.m) //Calculation: E = eval(integrate(I, l,0,%inf)) //Total emissive power (Btu/h.ft^2) //Result: printf("The total emissive power is : %.1f Btu/h.ft^2.",E)
fbffc88089d0dfb4357cea687747c71ad2fe670e
449d555969bfd7befe906877abab098c6e63a0e8
/1475/CH3/EX3.26/Example_3_26.sce
521a00ba9c94492fc5cb1c48b60a66dd9c49ff84
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
276
sce
Example_3_26.sce
//Example 3.26 The mean of a certain normal distribution is equal to the standard error clc; clear; n=49; disp("Mean = S.E in sample size of 25 i.e s_d=5(m)",49,"Total Sample = "); disp(1-0.9192,"Probab. of P(x<0), when n=40. Since the population is normal = P(x<0)=");
3765204bbc3ed3fcc0b29d8d83950174906f3d56
449d555969bfd7befe906877abab098c6e63a0e8
/1133/CH5/EX5.9/Example5_9.sce
646749b7f7b9ce5358bf637f1fd86497becdbefd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
359
sce
Example5_9.sce
//Example 5.9 clc disp("The function can be implemented with a 8 to 1 multiplexer, as shown in fig. 5.22. Three variables A, B and C are applied to the select lines. The minterms to be included (1, 3, 5 and 6) are chosen by making their corresponding input lines equal to 1. Mintems 0, 2, 4 and 7 are not included by making their input lines equal to 0.")
640ddc359c5223f04ec90487926fb31704688423
449d555969bfd7befe906877abab098c6e63a0e8
/1466/CH7/EX7.5/7_5.sce
d07c8aca6fdfdc4a942a610ba440c41189f4f4d9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
292
sce
7_5.sce
clc //initialisation of variables f=0.01 l=2640 d1=0.5*16 d2=0.25 k1=0.03125 h=100//ft pi=22/7 g=32.2 //CALCULATIONS k2=(4*f*l)/(d1) k3=(4*f*l)/(d2) //results k=k1+k2+k3+0.5+1 v2=sqrt(2*g*h/k) dis=pi*d2*d2*v2*60*6.24/4 //Results printf (' Discharge= %.1f gal/min',dis)
041cb532ad52e11b015ed2468f00b0e54057c32b
3cbee2296fd6b54f80587eead83813d4c878e06a
/sci2blif/sci2blif_added_blocks/sigma_delta.sce
0b71d0f56401e6dfe302175e58834682bc4702ca
[]
no_license
nikhil-soraba/rasp30
872afa4ad0820b8ca3ea4f232c4168193acbd854
936c6438de595f9ac30d5619a887419c5bae2b0f
refs/heads/master
2021-01-12T15:19:09.899590
2016-10-31T03:23:48
2016-10-31T03:23:48
71,756,442
0
0
null
2016-10-24T05:58:57
2016-10-24T05:58:56
null
UTF-8
Scilab
false
false
944
sce
sigma_delta.sce
//**************************** sigmadelta ************************************** if (blk_name.entries(bl) =='sigma_delta') then mputl("# sigmadelta",fd_w); for ss=1:scs_m.objs(bl).model.ipar(1) sigma_str= '.subckt sigma_delta_fe in[0]=net' + string(blk(blk_objs(bl),2))+"_"+ string(ss) +" in[1]=net"+string(blk(blk_objs(bl),3))+"_1 in[2]=net"+string(blk(blk_objs(bl),4))+"_1 out[0]=net'+ string(blk(blk_objs(bl),2+numofip))+"_" + string(ss)+" #sd_ota_bias[0] =" +string(sprintf('%1.3e',scs_m.objs(blk_objs(bl)).model.rpar(3*ss-2)))+"&sd_ota_bias[1] =" +string(sprintf('%1.3e',scs_m.objs(blk_objs(bl)).model.rpar(3*ss)))+"&sd_ota_bias[2] =" +string(sprintf('%1.3e',scs_m.objs(blk_objs(bl)).model.rpar(3*ss-1)))+"&sigma_delta_fe_fg[0] =0&sd_ota_bias[3] =2e-6&sd_ota_p_bias[0] =500e-9&sd_ota_n_bias[0] =700e-9&sd_ota_p_bias[1] =500e-9&sd_ota_n_bias[1] =700e-9"; mputl(sigma_str,fd_w); mputl(" ",fd_w); end end
62eb7801b172dc96330a941d2d22d036179140c1
449d555969bfd7befe906877abab098c6e63a0e8
/1985/CH7/EX7.6/Chapter7_Example6.sce
96ec9f51addb0eeda21ef23ad2f906761990204b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
532
sce
Chapter7_Example6.sce
clc clear //Input data b1=80//Intensity levelof the sound produced by the electric generator in dB b2=70//Intensity level of the room in dB //Calculations I2=10^(b1/10)*10^-12//Intensity of the sound produced by the electric generator in W/m^2 I4=10^(b2/10)*10^-12//Intensity of the sound existing in the room in W/m^2 I=I2+I4//Total sound intensity when the generator is operating in W/m^2 b=10*log10(I/10^-12)//Relative intensity in dB //Output printf('The resultant intensity level of the sound is %3.3f dB',b)
32bfc2e9a5a034fa564287f08bdc4d4318159b0a
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set13/s_Irrigation_And_Water_Power_Engineering_B._C._Punmia_2087.zip/Irrigation_And_Water_Power_Engineering_B._C._Punmia_2087/CH4/EX4.42/example4_42.sce
4b2769d2d047318fd8033a2c88bbbc374b6007af
[]
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
601
sce
example4_42.sce
mode(2);errcatch(-1,"stop");driver("GIF"); //example 4.42 //calculate mean precipitaion using thiesson polygon method clc;funcprot(0); //given a=4; //dimension of plot sides P1=4.8;P2=13;P3=8;P4=5.4;P5=3.2;P6=9.4; //precipitaion at respective stations A1=a^2/8+a^2/(4*1.73); A2=a^2/8; A3=A2;A4=A1; A5=a^2/(4*1.73); A6=a^2/2; A=A1+A2+A3+A4+A5+A6; Pavg=(P1*A1+P2*A2+P3*A3+P4*A4+P5*A5+P6*A6)/A; mprintf("Mean precipitaion=%f cm.",Pavg); xinit('/home/fossee/Downloads/tbc_graphs/Irrigation_And_Water_Power_Engineering_B._C._Punmia_2087/example4_42');xend();exit();
16d4a79ddc7d5df0c8f09938e1e94c5ad5421bf7
449d555969bfd7befe906877abab098c6e63a0e8
/2120/CH9/EX9.3/ex9_3.sce
2d21a203611e4d6288840d708a6d285accf9598f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
382
sce
ex9_3.sce
// Exa 9.3 clc; clear; close; // Given data H2 = 3055;// in kj per kg H3 = 2550;// in kj per kg fie_1 = 7.15;// kj per kg k fie_2 = 7.57;// kj per kg k d_fie= fie_2 - fie_1;// in kj per kg k disp(d_fie,"Change in entropy during throttling process in kJ/kg-K is :"); dH = H2 - H3;// in kj per kg disp(dH,"Change in enthalpy during isentropic process in kJ/kg is : ");
2fd2fd86e0cfd417b23fb79fceff7b0bd742ebfc
dc628e7d8425aa0bb1460d2583f04c9969b4ec9c
/dlog-server/src/test/iocasteDBsimple.tst
c618071eb3e3fa8148b14e673f6d6c0380f12fe5
[]
no_license
logicmoo/DLog
bc2c43523ccbc3747c381f2eb0e25960cfc8d6e1
855774c38c1eea119405fde0057cfdb1032006f0
refs/heads/master
2021-05-28T14:03:35.596790
2015-01-12T22:49:56
2015-01-12T22:49:56
27,461,790
1
1
null
null
null
null
UTF-8
Scilab
false
false
993
tst
iocasteDBsimple.tst
options([abox_target(allinonefile), tbox_target(allinonefile), indexing(yes)]). options([abox_target(allinonefile), tbox_target(allinonefile), indexing(no)]). %All DB -> indexing doesn't help at all options([indexing(no)]). options([indexing(yes)]). concept('Good'). concept('Patricide'). role(hasChild). equiv(and([some(arole(hasChild), and([aconcept('Patricide'), some(arole(hasChild), not(aconcept('Patricide')))]))]), aconcept('Good')). dbConnection(iodb, iocaste). dbAccess('Patricide'/1, iodb, query('SELECT name FROM people WHERE patricide')). dbAccess(not('Patricide')/1, iodb, query('SELECT name FROM people WHERE NOT patricide')). dbAccess(hasChild/2, iodb, query('SELECT parent, child FROM hasChild')). query(instances(aconcept('Good')), [i1]). query(instance(i1, aconcept('Good'))). %default answer: true query(instance(i2, aconcept('Good')), false). query(roleFillers(i1, arole(hasChild)), [i2, i3]). query(relatedIndividuals(arole(hasChild)), [i1-i2, i1-i3, i3-i4, i2-i3]).
5687150cc3a3c86ea4933641215eb24dc311e344
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.3/Unix-Windows/scilab-2.3/macros/scicos_blocks/DELAYV_f.sci
3d04115fdab88c59988f62d919b80e7867fdce02
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,465
sci
DELAYV_f.sci
function [x,y,typ]=DELAYV_f(job,arg1,arg2) x=[];y=[];typ=[]; select job case 'plot' then //normal position standard_draw(arg1) case 'getinputs' then [x,y,typ]=standard_inputs(arg1) case 'getoutputs' then [x,y,typ]=standard_outputs(arg1) case 'getorigin' then [x,y]=standard_origin(arg1) case 'set' then x=arg1; graphics=arg1(2);label=graphics(4) model=arg1(3);nin=model(2)(1) z0=model(7);zz0=z0(1:$-1);told=z0($); while %t do [ok,nin,zz0,T,label]=getvalue('Set delay parameters',.. ['Number of inputs'; 'Register initial condition'; 'Max delay'],.. list('vec',1,'vec',-1,'vec',1),.. label); if ~ok then break,end if size(zz0,'*')<2 then message('Register length must be at least 2') ok=%f end if T<=0 then message('Delay must be positive') ok=%f end if ok then [model,graphics,ok]=check_io(model,graphics,[nin;1],nin,1,[1;1]) end if ok then graphics(4)=label; model(7)=[zz0;told];model(8)=T/(size(zz0,'*')); x(2)=graphics;x(3)=model break end end case 'define' then nin=1 z0=zeros(11,1);zz0=z0(1:$-1); T=1 model=list(list('delayv',1),[nin;1],nin,1,[1;1],[],z0,T,[],'d',[0 -1],[%t %t],.. ' ',list()) label=[string(nin);strcat(string(zz0),';');string(T)]; gr_i=['txt=[''Variable'';''delay''];'; 'xstringb(orig(1),orig(2),txt,sz(1),sz(2),''fill'');'] x=standard_define([2.5 2.5],model,label,gr_i) end
e3708d1b4d6cc7f42428c36ad5acbe3441eb3647
449d555969bfd7befe906877abab098c6e63a0e8
/1802/CH5/EX5.7/Exa5_7.sce
285bf0c4f2f472df1bba77502cf2a6dc4f34ae15
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
437
sce
Exa5_7.sce
//Exa 5.7 clc; clear; close; //Given Data : format('v',7); I=180;//in Ampere cos_fir=0.8;//unitless R=0.7;//in ohm/phase X=1.2;//in ohm/phase ETA=90;//in % Pdev_BY_VR=3*I*cos_fir;//in KW Psending_BY_VR=Pdev_BY_VR/(ETA/100);//in kW Losses=3*I^2*R;//in watt VR=Losses/(Psending_BY_VR-Pdev_BY_VR);//in volt Vs=sqrt((VR*cos_fir+I*R)^2+(VR*sqrt(1-cos_fir^2)+I*X)^2); disp(Vs*sqrt(3),"Sending end voltage Vs(line) in volts :");
75839994f029da3e84a1c972cb2e9dc21a827a4d
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH15/EX15.5/S_5.sce
086d491a81131ff3febbfce39436425f2a7fe80c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
618
sce
S_5.sce
// sum 15-5 clc; clear; d=200; r=d/2; N=300; P=5000; D=500; R=D/2; u=0.3; E=205*10^3; G=84*10^3; Ta=60; Kb=1.5; Kt=2; w=2*%pi*N/60; beta1=20*%pi/180; V=r*w; v=R*w; // Let T1-T2 =T T=P/V; x=u*%pi/sin(beta1); T2=T/((exp(x)-1)); T1=T2*exp(x); t=P/v; y=u*%pi; T3=t/((exp(x)-1)); T4=T3*exp(x); T=P/w; Rc=2612;; RA=645.1; MB=96.76; MC=-208.96; d=16*10^3*sqrt((Kb*MC)^2+(Kt*T)^2)/(%pi*Ta); d=d^(1/3); l=380; J=%pi*d^4/32; theta=T*10^3*l/(G*J); theta=theta*180/%pi; // printing data in scilab o/p window printf("d is %0.1f mm ",d); printf("\n theta is %0.2f deg ",theta);
24f417e69b3c3d871c7ab5617daa14b34de9799e
449d555969bfd7befe906877abab098c6e63a0e8
/2579/CH2/EX2.34/Ex2_34.txt
2bad7973776b89ce9b455d60f184603074249140
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
416
txt
Ex2_34.txt
//Ex:2.34 clc; clear; close; // For a closed surface, a sphere of radius r is choosen. To find the total radiated power, the radiated component of the power density is integrated over its surface. therefore, // Wt=double integration of (ar.Ao.(sin(x)/r^2))*(ar.r^2.sin(x)) with limits from 0 to 2*pi and from 0 to pi, and on integration we get , pi^2*Ao watts printf("The total radiated power= pi^2*Ao watts");
f7f207cc75275d31b6c7380b4d306d0968891a5a
0940381bdf69cd29be4b4c641a519ae596d697aa
/test/cflow.tst
cdc50c21bfa4310e8e806d785cc1b31e071d28aa
[ "MIT" ]
permissive
kevinmel2000/nanac
bfbad2085179cf3e8d5a71fc56657a31109bb5be
577e270790fc00f9c1257b1b7bbf3de8c226c32f
refs/heads/master
2020-03-11T08:51:33.769511
2017-04-18T19:53:46
2017-04-18T19:53:46
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
122
tst
cflow.tst
@0 op jmp 3 0 @1 op sav 1 0 @2 jmp to 4 0 @4 reg win 1 0 @5 jmp ret 0 1 @5 jmp to 3 0 @3 jmp die 0 0
70662275d4e7fcfa91c73b596d33266748fa379b
449d555969bfd7befe906877abab098c6e63a0e8
/431/CH3/EX3.12/EX3_12.sce
ce25d3eb8bc19a2724ba9d1b53c1ebeab21ec5a9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
925
sce
EX3_12.sce
//Calculating equivalent impedence referred to primary //Chapter 3 //Example 3.12 //page 216 clear; clc; disp("Example 3.11") f=50; //frequency in hertz r=6; //turns ratio R1=0.90; //primary resistance in ohms R2=0.03; //secondary resistance in ohms X1=5; //primary reactance in ohms X2=0.13; //secondary reactance in ohms I2=200; //full-load current Re=(R1+(R2*r^2)); printf("equivalent resistance reffered to primary,Re=%fohms",Re); Xe=(X1+(X2*r^2)); printf("\nequivalent reactance reffered to primary,Xe=%fohms",Xe); Ze=sqrt(Re^2+Xe^2); printf("\nequivalent impedance reffered to primary,Ze=%fohms",Ze); Ii2=r*I2; printf("\nsecondary current reffered to primary side=%fA",Ii2); printf("\n(a)Voltage to be applied to the high voltage side=%dvolts",(Ii2*Ze)); printf("\n(b)Power factor=%f",(Re/Ze));
bf3ea4296a271473b4728e8382a2929067829a00
449d555969bfd7befe906877abab098c6e63a0e8
/914/CH12/EX12.2/ex12_2.sce
2ef8a2015222168944d2a39c9ad3e181b5601bb3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
532
sce
ex12_2.sce
clc; warning("off"); printf("\n\n example12.2 - pg562"); p=1.2047*0.06243; //[lb/ft^3] mu=(18.17*10^-6)*(0.6720); //[lb/ft*sec] v=mu/p; x=2; //[ft] U=6; //[ft/sec] Nre=(x*U)/v; disp("The Reynolds number is well within the laminar region",Nre,"Nre="); del=5*x*(Nre)^(-1/2); C1=0.33206; Cd=2*C1*(Nre)^(-1/2); L2=2; //[ft] L1=1; //[ft] b=1; F=((2*(C1)*U*b))*((mu*p*U)^(1/2))*(((L2)^(1/2))-((L1)^(1/2))); gc=32.174; F=F/gc; printf("\n\n The value of F properly expressed in force units is \n F=%e lbf",F);
da015210385ee45b11a3bf809fbac4954770db38
a159f59d19e2b03b234e9c2977ba4a932180e648
/Software/GreenScilabV0.9/bin/gl_exportlig.sci
89c398cfd150d485aeebcd41a0f12383ae66643d
[]
no_license
OpenAgricultureFoundation/openag_sim
e052bbcc31b1d7f9b84add066327b479785f8723
425e678b55e24b5848d17181d25770175b8c2c3f
refs/heads/master
2021-07-01T06:25:08.753260
2017-09-20T21:44:18
2017-09-20T21:44:18
80,540,145
0
1
null
null
null
null
UTF-8
Scilab
false
false
100
sci
gl_exportlig.sci
exec(INTER_SYS_DIR+'/bin/gl_draw_phy.sci'); exec(INTER_SYS_DIR+'/bin/gl_retrieve_exportlig.sci');
4b3a0702d624d0b1b012edab91a38e264c436fc0
449d555969bfd7befe906877abab098c6e63a0e8
/2045/CH5/EX5.4/Ex5_4.sce
0afe20cb0969324d7fcf392bfca6b62cef2890fb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
438
sce
Ex5_4.sce
//pagenumber 287 example 4 clear ib=20*10^-6;//ampere beta1=500; re=10;//ohm correction in the book r1=4.7*10^2;//ohm correction in the book ic=ib*beta1; voltag=ic*r1;//voltage drop at 4.7*10^3ohm vc=(10-voltag); rb=(vc-0.6)/ib; disp("rb = "+string((rb))+"ohm"); //re included voltag=ic*re;//voltage drop at re vb=(0.6+voltag); rb=(vc-vb)/ib; disp("rb including emitter resistance = "+string((rb))+"ohm");
5f9866724a257af531db0f79b559f4fab47f4836
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/FN AK Highground.sce
25a35839a9c0dad51ee1328dbd1478c11cf7dde5
[]
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
27,350
sce
FN AK Highground.sce
Name=FN AK Highground PlayerCharacters=A_air_pistol_frozen BotCharacters=target.bot;target.bot;target.bot;target.bot;target.bot IsChallenge=true Timelimit=30.0 PlayerProfile=A_air_pistol_frozen AddedBots=target.bot;target.bot;target.bot PlayerMaxLives=0 BotMaxLives=0;0;0 PlayerTeam=1 BotTeams=2;2;2 MapName=square_1wall_reducedspawns.map MapScale=1.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=45.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=true ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=FN AK Highground WeaponHeroTag=Heavy AR DifficultyTag=2 AuthorsTag=Wilymox BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Use the Heavy AR to shoot lowground enemies! GameVersion=1.0.7.2 ScorePerDistance=0.0 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=target DodgeProfileNames=Mimic DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=BFer SeeThroughWalls=false NoDodging=false NoAiming=true [Character Profile] Name=A_air_pistol_frozen MaxHealth=100.0 WeaponProfileNames=AK-47;;;;;;; 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=0.0 MaxCrouchSpeed=500.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=0.0 AirControl=1.0 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=BFer MaxHealth=100.0 WeaponProfileNames=AN-94 Abakan;;;;;;; MinRespawnDelay=0.1 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.7 CrouchAnimationSpeed=1.5 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=2.0 MovementType=Base MaxSpeed=1000.0 MaxCrouchSpeed=300.0 Acceleration=6960.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=0.75 JumpVelocity=800.0 Gravity=2.5 AirControl=1.0 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=true EnemyBodyColor=X=0.468 Y=0.195 Z=0.095 EnemyHeadColor=X=0.546 Y=0.546 Z=0.546 TeamBodyColor=X=0.000 Y=0.000 Z=0.771 TeamHeadColor=X=0.149 Y=0.542 Z=1.000 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=true BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=280.0 MainBBRadius=50.0 MainBBHasHead=true MainBBHeadRadius=35.0 MainBBHeadOffset=-35.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=290.0 ProjBBRadius=60.0 ProjBBHasHead=true ProjBBHeadRadius=45.0 ProjBBHeadOffset=-45.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; 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=Mimic 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=0.0 DamageReactionResetTimer=0.0 JumpFrequency=0.5 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Mimic TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Weapon Profile] Name=AK-47 Type=Hitscan ShotsPerClick=1 DamagePerShot=45.0 KnockbackFactor=0.2 TimeBetweenShots=0.4 Pierces=false Category=SemiAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=10000 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=4000.0 DamageFalloffStopDistance=7500.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.02 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.2 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=390.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Vertical (1:1) ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=4.0,15.0,-9.0,2.5 SpreadSCA=4.0,15.0,-9.0,2.5 SpreadMSA=4.0,15.0,-9.0,2.5 SpreadMCA=4.0,15.0,-9.0,2.5 SpreadSSH=2.0,27.0,-9.0,1.5 SpreadSCH=2.0,27.0,-9.0,0.0 SpreadMSH=100.0,1000.0,5.0,20.0 SpreadMCH=4.0,15.0,-9.0,1.8 MaxRecoilUp=0.4 MinRecoilUp=0.4 MinRecoilHoriz=-0.3 MaxRecoilHoriz=0.3 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.0001 TimeToRecoilReset=0.075 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.1 AAMaxSpeed=5.0 AADeadZone=0.0 AAFOV=10.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=10 PSRViewRecoilTracking=0.45 PSRCapUp=90.0 PSRCapRight=90.0 PSRCapLeft=90.0 PSRTimeToPeak=0.16 PSRResetDegreesPerSec=35.0 PSR0=0.5,0.0 PSR1=1.2,-0.1 PSR2=1.7,0.2 PSR3=1.7,0.2 PSR4=1.7,-0.85 PSR5=1.3,-0.45 PSR6=1.3,-0.75 PSR7=0.9,0.75 PSR8=-0.4,2.55 PSR9=0.75,0.95 PSR10=0.75,0.4 PSR11=-0.6,0.4 PSR12=0.35,1.0 PSR13=0.4,0.25 PSR14=-0.9,-1.5 PSR15=0.4,-1.0 PSR16=0.5,-1.3 PSR17=0.1,-1.6 PSR18=-0.7,-1.25 PSR19=0.2,-0.5 PSR20=0.2,0.1 PSR21=0.0,0.5 PSR22=0.3,0.1 PSR23=0.2,0.5 PSR24=0.5,-1.0 PSR25=-0.1,1.2 PSR26=-0.3,1.1 PSR27=-1.2,2.0 PSR28=0.1,1.4 PSR29=-0.1,0.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=AN-94 Abakan Type=Hitscan ShotsPerClick=1 DamagePerShot=25.0 KnockbackFactor=0.1 TimeBetweenShots=0.1 Pierces=false Category=SemiAuto BurstShotCount=2 TimeBetweenBursts=0.05 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.1 MagazineMax=30 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=3000.0 DamageFalloffStopDistance=5500.0 DamageAtMaxRange=18.4 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=true ADSZoomDelay=0.1 ADSZoomSensFactor=0.5 ADSMoveFactor=0.5 ADSStartDelay=0.0 ShootSoundCooldown=0.01 HitSoundCooldown=0.01 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=true ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=false FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.1 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=51.5 ADSFOVScale=Vertical (1:1) ADSAllowUserOverrideFOV=true IsBurstWeapon=true ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=4.0,5.0,0.2,0.2 SpreadSCA=4.0,5.0,0.2,0.2 SpreadMSA=4.0,5.0,0.2,1.0 SpreadMCA=4.0,5.0,0.2,1.0 SpreadSSH=4.0,5.0,0.2,2.5 SpreadSCH=4.0,5.0,0.2,2.0 SpreadMSH=4.0,5.0,0.2,3.0 SpreadMCH=4.0,5.0,0.2,2.5 MaxRecoilUp=2.0 MinRecoilUp=2.0 MinRecoilHoriz=-0.2 MaxRecoilHoriz=0.3 FirstShotRecoilMult=0.2 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.1 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=5.0 AADeadZone=0.0 AAFOV=10.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -952.000000 920.000000 -768.000000 1080.000000 920.000000 -768.000000 1080.000000 920.000000 -1104.000000 -952.000000 920.000000 -1104.000000 -952.000000 -1096.000000 -768.000000 1080.000000 -1096.000000 -768.000000 1080.000000 -1096.000000 -1104.000000 -952.000000 -1096.000000 -1104.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 -952.000000 920.000000 1520.000000 1216.000000 920.000000 1520.000000 1216.000000 920.000000 1216.000000 -952.000000 920.000000 1216.000000 -952.000000 -1088.000000 1520.000000 1216.000000 -1088.000000 1520.000000 1216.000000 -1088.000000 1216.000000 -952.000000 -1088.000000 1216.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 -1008.000000 -1088.000000 1488.000000 1216.000000 -1088.000000 1488.000000 1216.000000 -1088.000000 -936.000000 -1008.000000 -1088.000000 -936.000000 -1008.000000 -1152.000000 1488.000000 1216.000000 -1152.000000 1488.000000 1216.000000 -1152.000000 -936.000000 -1008.000000 -1152.000000 -936.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 1064.000000 912.000000 1216.000000 1216.000000 912.000000 1216.000000 1216.000000 912.000000 -856.000000 1064.000000 912.000000 -856.000000 1064.000000 -1088.000000 1216.000000 1216.000000 -1088.000000 1216.000000 1216.000000 -1088.000000 -856.000000 1064.000000 -1088.000000 -856.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -960.000000 1032.000000 1240.000000 1136.000000 1032.000000 1240.000000 1136.000000 1032.000000 -856.000000 -960.000000 1032.000000 -856.000000 -960.000000 912.000000 1240.000000 1136.000000 912.000000 1240.000000 1136.000000 912.000000 -856.000000 -960.000000 912.000000 -856.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 -1120.000000 912.000000 1320.000000 -936.000000 912.000000 1320.000000 -936.000000 912.000000 -784.000000 -1120.000000 912.000000 -784.000000 -1120.000000 -1088.000000 1320.000000 -936.000000 -1088.000000 1320.000000 -936.000000 -1088.000000 -784.000000 -1120.000000 -1088.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 entity type PlayerSpawn Vector3 position -4.000000 -56.000000 -696.000000 Bool8 teamB 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type CameraPath UInt32 entityIdAttachedTo 132 UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type PlayerSpawn Vector3 position -736.000000 -40.000000 1080.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -600.000000 -48.000000 1080.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -480.000000 -48.000000 1080.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.000000 -48.000000 1080.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -208.000000 -48.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.000000 -48.000000 1120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 56.000000 -48.000000 1112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 208.000000 -48.000000 1088.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.000000 -48.000000 1104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 496.000000 -48.000000 1088.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 632.000000 -48.000000 1088.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 776.000000 -48.000000 1112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -736.000000 -416.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -600.000000 -424.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -480.000000 -424.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.000000 -424.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -208.000000 -424.000000 1056.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.000000 -424.000000 1104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 56.000000 -424.000000 1096.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 208.000000 -424.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.000000 -424.000000 1088.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 496.000000 -424.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 632.000000 -424.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 776.000000 -424.000000 1096.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -736.000000 352.000000 1120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -600.000000 344.000000 1120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -480.000000 344.000000 1120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.000000 344.000000 1120.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -208.000000 344.000000 1112.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.000000 344.000000 1160.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 56.000000 344.000000 1152.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 208.000000 344.000000 1128.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.000000 344.000000 1144.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 496.000000 344.000000 1128.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 632.000000 344.000000 1128.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 776.000000 344.000000 1152.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -736.000000 536.000000 1048.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -600.000000 528.000000 1048.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -480.000000 528.000000 1048.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.000000 528.000000 1048.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -208.000000 528.000000 1040.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.000000 528.000000 1088.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 56.000000 528.000000 1080.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 208.000000 528.000000 1056.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.000000 528.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 496.000000 528.000000 1056.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 632.000000 528.000000 1056.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 776.000000 528.000000 1080.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -736.000000 152.000000 1040.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -600.000000 144.000000 1040.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -480.000000 144.000000 1040.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.000000 144.000000 1040.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -208.000000 144.000000 1032.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.000000 144.000000 1080.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 56.000000 144.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 208.000000 144.000000 1048.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.000000 144.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 496.000000 144.000000 1048.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 632.000000 144.000000 1048.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 776.000000 144.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -744.000000 -200.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -608.000000 -208.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -488.000000 -208.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -352.000000 -208.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -216.000000 -208.000000 1056.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -80.000000 -208.000000 1104.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.000000 -208.000000 1096.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 200.000000 -208.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 352.000000 -208.000000 1088.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 488.000000 -208.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 624.000000 -208.000000 1072.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 768.000000 -208.000000 1096.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -744.000000 -616.000000 1056.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -608.000000 -624.000000 1056.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -488.000000 -624.000000 1056.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -352.000000 -624.000000 1056.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -216.000000 -624.000000 1048.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -80.000000 -624.000000 1096.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.000000 -624.000000 1088.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 200.000000 -624.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 352.000000 -624.000000 1080.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 488.000000 -624.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 624.000000 -624.000000 1064.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 768.000000 -624.000000 1088.000000 Bool8 teamA 0
dff177fce127ef758c9b028d2b6ed858cdb538dd
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH12/EX12.22/example12_22.sce
eb3ebe7c90bc50c5a208d868a561e666387163de
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
451
sce
example12_22.sce
clc // Given that E = 3 // kinetic energy of proton in Mev m1 = 1.007276 // mass of H(1) in a.m.u. m2 = 3.016056 // mass of H(3) in a.m.u. m3 = 1.008665 // mass of neutron in a.m.u. m4 = 3.016036 // mass of He(3) in a.m.u. // Sample Problem 22 on page no. 12.39 printf("\n # PROBLEM 22 # \n") printf("Standard law used \n") printf(" Law of conservation of Energy \n") k = m1 + m2 - m3 - m4 E = k * 931.5 printf("\n Q value of reaction is %f MeV.",E)
ed8f3497296904c524dd46b32cfcaf0e13d631aa
449d555969bfd7befe906877abab098c6e63a0e8
/3739/CH6/EX6.9/EX6_9.sce
cb7f5d6e1483ee3dbe36087b065880bc36b348cf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
344
sce
EX6_9.sce
//Chapter 6, Example 6.9, page 245 clc //Initialisation d=5 //in dB h=20 //Transmitter initial height //Calculation ht=h*10**(0.25) //Transmitter ultimate antenna height //Results printf("(1) Antenna Height = %.2f m",round(ht))
3c88375718d1fbedf0802b740277ec1c582e7e40
449d555969bfd7befe906877abab098c6e63a0e8
/2381/CH7/EX7.2/ex_2.sce
c7b914e8344b6bc31841c9a058428818055c25c9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
412
sce
ex_2.sce
//Example 2 // intensity clc; clear; close; I=1;//assume a1=1*I;// a2=4*I;// ph1=0;//degree i1=(a1+a2)+a2*cosd(ph1);// disp("intensity where phase difference is zero is "+string(i1)+"*I") ph2=90;//degree i2=(a1+a2)+a2*cosd(ph2);// disp("intensity where phase difference is pi/2 is "+string(i2)+"*I") ph3=180;//degree i3=(a1+a2)+a2*cosd(ph3);// disp("intensity where phase difference is pi is "+string(i3)+"*I")
bacca2a33fa0f80d89281bc25fc3fbd2d92f4660
449d555969bfd7befe906877abab098c6e63a0e8
/788/CH6/EX6.3.b/6_3_soln.sce
15673b0df120211c7dca4d93e3d0d137b31c17bb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
331
sce
6_3_soln.sce
clc; pathname=get_absolute_file_path('6_3_soln.sce') filename=pathname+filesep()+'6_3_data.sci' exec(filename) // Solution: // Inclination of Weight, theta=(theta*%pi)/180; //rad // Cylinder Force, F=W*sin(theta); //lb // Results: printf("\n Results: ") printf("\n The Cylinder Force at constant velocity is %.0f lb.",F)
d85f27039f1f356baabf032aa33b167ccaa8b578
e4657d526ddb006886c9fca8229ddb7dc9b6c6cf
/two/OddCounter.tst
92de57d2e1a33164f5bca7a571528c6a94f28912
[]
no_license
marcusshepp/computer_arch
14cfcf65c13a5db1c2255a011a743601a55ac4cb
564dd2bcf32e7791b33e5ff41a3ec63e08b2b69e
refs/heads/master
2021-01-10T07:54:53.011805
2016-04-16T22:37:38
2016-04-16T22:37:38
43,556,935
1
0
null
null
null
null
UTF-8
Scilab
false
false
383
tst
OddCounter.tst
load OddCounter.hdl, output-file OddCounter.out, compare-to OddCounter.cmp, output-list time%S1.4.1 reset%D1.3.1 out%B1.16.1; set reset 0, tick,output, tock,output; tick,output, tock,output; tick,output, tock,output; tick,output, tock,output; set reset 1, tick,output, tock,output; tick,output, tock,output; set reset 0, tick,output, tock,output; tick,output, tock,output;
55e95ded09a69539cf0dde961b88a77b4eb30c48
449d555969bfd7befe906877abab098c6e63a0e8
/3720/CH6/EX6.2/Ex6_2.sce
123dc43712471404a3b44addbb21602637daf662
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
885
sce
Ex6_2.sce
//Example 6_2 clc;clear; // Given values m=14;//Water flow rate in kg/s rho=1000;//The density of water in kg/m^3 A_1=0.0113;// The cross sectional area of the elbow at inlet in m^2 A_2=7*10^-4;// The cross sectional area of the elbow at outlet in m^2 z_2=0.3;// m z_1=0;// m g=9.81;// The acceleration due to gravity in m/s^2 theta=30;// degree b=1.03;// The momentum-flux correction factor // Calculation //(a) v_1=m/(rho*A_1); v_2=m/(rho*A_2);//The inlet and the outlet velocities in m/s P_1g=(rho*g*(((v_2^2-v_1^2)/(2*g))+(z_2-z_1)))/1000;// kPa printf("The gage pressure at the center of the inlet of the elbow=%0.1f kPa\n",P_1g); //(b) z F_Rx=b*m*(((v_2*cosd(theta))-v_1))-(P_1g*1000*A_1);// N F_Rz=b*m*v_2*sind(theta);// N printf("The anchoring force of the elbow be F_Rx=%0.0f N,F_Rz=%0.0f N\n",F_Rx,F_Rz); // The answer vary due to round off error
c468632d809c3b72af573dcca69bb28e3d5fbcb8
449d555969bfd7befe906877abab098c6e63a0e8
/2741/CH3/EX3.5/Chapter3_Example5.sce
49eb1bd440be73dcb515ec0fecb558e277bec0ba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
666
sce
Chapter3_Example5.sce
clc clear //Input data t=6;//Time taken for a liquid to cool from 80 to 60 degree centigrade in minutes T=10;//To find the temperature after the time in minutes t11=80;//The initial temperature of the liquid in degree centigrade t12=60;//The final temperature of the liquid in degree centigrade ts=30;//The temperature of the surrounding in degree centigrade //Calculations K=(log((t12-ts)/(t11-ts)))/(-t);//The constant value for the first case at ts x=((exp(-T*K))*(t12-ts))+ts;//The temperature after the next 10 minutes in degree centigrade //Output printf('The temperature after the next 10 minutes is x = %3.2f degree centigrade ',x)
b9b0ae36cb07299aeb0fcbe1d97f28dd4b943416
449d555969bfd7befe906877abab098c6e63a0e8
/1085/CH3/EX3.29/ex3_29.sce
49bfb4a44342aa3fe58d2f50934d1df24b5e91f7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
271
sce
ex3_29.sce
//Exam:3.29 clc; clear; close; n_1=1;//1st order reflection index angle_1=10;//1st order reflection angle n_3=3;//3rd order reflection index //sind(angle_1)/sind(angle_3)=n_1/n_3 angle_3=asind(n_3*sind(angle_1)/n_1);// disp(angle_3,'3rd order reflection angle=')