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
49bc28d02181edb0269e6763b4d845869315c52f
449d555969bfd7befe906877abab098c6e63a0e8
/2837/CH13/EX13.6/Ex13_6.sce
a1622cf173b5738502c73a5ea4cc765f77d33396
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
649
sce
Ex13_6.sce
clc clear //Initialization of variables x1=0.885 //mole fraction of Ch4 x2=0.115 //mole fraction of c2h6 x3=0.4/100 //mole fraction of N2 n1=2 //Moles of Ch4 n2=3.5 //Moles of c2h6 n3=1 //moles of ch4 in case 2 n4=2 //moles of c2h6 in case 2 //calculations y1=n1*x1 y2=n2*x2 y=y1+y2 vec2=[y1 y2] air=y/0.21 y3=n3*x1 y4=n4*x2 yy=y3+y4 vec3=[y3 y4] air2=y/0.21 *0.79 //results printf("Theoretical air = %.2f moles of air per mole of fuel",air) disp("Oxygen analysis") disp(vec2) printf("\n Amount of nitrogen = %.2f moles of nitrogen per mole of fuel",air2) disp("Dry analysis") disp(vec3) printf('total = %.3f moles',yy)
8ac8fea740a73e6e7d3cc7709fee3b664a4738d6
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH14/EX14.11/Ex14_11.sce
67476a79d5ef1c3b72f23ec85fd8ebe3115309c4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
537
sce
Ex14_11.sce
//Variable declaration: Dx = 0.049/12.0 //Thickness of copper plate (ft) h1 = 208.0 //Film coefficient of surface one (Btu/h.ft^2.°F) h2 = 10.8 //Film coefficient of surface two (Btu/h.ft^2.°F) k = 220.0 //Thermal conductivity for copper (W/m.K) //Calculation: U = 1.0/(1.0/h1+Dx/k+1.0/h2) //Overall heat transfer coefficient (Btu/h.ft^2.°F) //Result: printf("The overall heat transfer coefficient is : %.2f Btu/h.ft^2.°F.",U)
2d6ab3f156148ae782b6bc2ecce04b7c69331afe
449d555969bfd7befe906877abab098c6e63a0e8
/49/CH6/EX6.5/ex5.sce
4d0ab154e6b3594c8449f3dab24c329f35b2ac0a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,000
sce
ex5.sce
//CHAPTER 6 _ PRESSURE AND SOUND MEASUREMENT //Caption : Pressure Gage // Example 5 // Page 347 p_max=10*10^6 //('Enter the maximum differential pressure') fn=20000 //(' Enter the frequency') E=200*10^9; // modulus of elasticity v=0.3; // poissons ratio p=7800 // density of steel disp("Let t/R be represented by TR ") TR=((3*p_max*(1-v^2))/(4*E))^(1/4) // we know R^2/t = r2t=10.21(Et^2/12(1-v^2)p)^0.5/R^2 using it , we have r2t=(10.21*sqrt(E/(12*(1-v^2)*p)))/fn R=TR*r2t; printf('value of R is %fd m\n', R) t=R*TR; printf(' value of t is %fd m \n',t) eo=8.85*10^-12 er=1.0006; d=.001 //('Enter the distance between the plates of capacitor=:') S=-(eo*er*%pi*R^2)/d^2; // variation of capacitor distance with respect to pressure is given by q=(3*R^4*(1-v^2))/(16*E*t^3) // total sensitivity of the pressure transducer is given by sensitivity=S*q*10^18; printf(' So the total sensitivity of the pressure transducer is given by %1.2f pF/MPa\n',sensitivity)
38b5666ffd6791f4833378df66c730d8c43eeef4
449d555969bfd7befe906877abab098c6e63a0e8
/135/CH7/EX7.7/EX7.sce
5a41039cb86ab281bfadf385282f597aeff5346f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,422
sce
EX7.sce
// Example 7.7: IDQ, VDSQ, VGSQ clc, clear ID=5e-3; // in amperes VGS=6; // in volts VT=3; // in volts // From Fig. 7.39(a) VDD=24; // in volts R1=10; // in mega-ohms R2=6.8; // in mega-ohms RD=2.2e3; // in ohms RS=0.75e3; // in ohms // Applying Thevnin's theorem to obtain simplified circuit in Fig. 7.39(b) VGG=VDD*R2/(R1+R2); // in volts // Plotting transfer characteristics k=ID/(VGS-VT)^2; // in amperes per volt square VGS=[3:0.01:VGG]; // Gate source voltage in volts ID=k*(VGS-VT)^2; // Drain current in amperes ............ (i) ID=ID*1e3; // Drain current in mili-amperes plot(VGS,ID); xtitle("Transfer Characteristics","VGS (V)","ID (mA)"); // Plotting bias line VGS=[0:0.01:VGG]; // Gate source voltage in volts // Writing KVL for the gate-source loop ID=(VGG-VGS)/RS; // Source current in amperes ID=ID*1e3; // Source current in mili-amperes plot(VGS,ID,"RED"); // Intersection of transfer curve with the bias curve // Putting VGS = VGG-ID*RD in equation (i) and solving, we get ID^2*RS^2 + (2*RS*VT - 2*VGG*RS - 1/k)*ID + (VGG-VT)^2 // Solving the equation p_eq = poly([(VGG-VT)^2 (2*RS*VT-2*VGG*RS-1/k) RS^2],"x","coeff"); p_roots= roots(p_eq); IDQ=p_roots(1); // in amperes VGSQ=VGG-IDQ*RS; // in volts // From the output circuit VDSQ=VDD-IDQ*(RD+RS); // in volts IDQ=IDQ*1e3; // in mili-amperes disp(IDQ,"IDQ (mA) ="); disp(VDSQ,"VDSQ (V) ="); disp(VGSQ,"VGSQ (V) =");
ac5783ced6742fa389da7af414760efbb6a3b16f
449d555969bfd7befe906877abab098c6e63a0e8
/3511/CH7/EX7.2/Ex7_2.sce
fb25c7b5fa6fb9fce91dc19c97d461f3283a5634
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,694
sce
Ex7_2.sce
clc; T03=1200; // Maximum turbine inblet temperature in kelvin rc=4.25; // Pressure ratio across compressor ma=25; // Mass flow rate in kg/s eff_C=0.87; // Isentropic efficiency of the compressor eff_T=0.915; // Isentropic efficiency of turbine eff_n=0.965; // Propelling nozzle efficiency eff_Tr=0.985; // Transmission efficiency del_pcomb=0.21; // Combustion chamber pressure loss in bar Cpa=1.005; // Specific heat at constant pressure of air in kJ/kg K ra=1.4; // Specific heat ratio of air Cpg=1.147; // Specific heat of fuel in kJ/kg K rg=1.33; // Specific heat of fuel T01=293; // Ambient temperature in kelvin p01=1; // Ambient pressure in bar A_F=50; // Air Fuel ratio p02=rc/p01; T02=(T01*((rc)^((ra-1)/ra)-1)/eff_C)+T01; // Actual temperature at state 2 T04=T03-((Cpa*(T02-T01))/(eff_Tr*Cpg)); // Temperature at state 4 rt=(1/(1-((T03-T04)/(eff_T*T03))))^(1/((rg-1)/rg)); // Pressure ratio across turbine p04=(p02-del_pcomb)/rt; // Pressure at 4 p5=p01; T_5=T04/(p04/p5)^((rg-1)/rg); // Temperature at 5 T5=T04-eff_n*(T04-T_5); c5=sqrt (2*Cpg*10^3*(T04-T5)); F=ma*c5; // Total design thrust p04_pc=1/(1-((1/eff_n)*((rg-1)/(rg+1))))^(rg/(rg-1)) pc=p04*(1/p04_pc); Tc=T04*(1/p04_pc)^((rg-1)/rg); R=Cpg*10^3*(rg-1)/rg; cj=sqrt (rg*R*Tc); row_c=(pc*10^5)/(R*Tc); A=ma/(row_c*cj); // Area of the propelling nozzle d=sqrt (4*A/3.14); // Diameter of the nozzle pa=p01; Fp=(pc-pa)*10^5*A;// Pressure thrust Fm=ma*cj; Ft=Fp+Fm; // Total thrust sfc=(ma/A_F)*3600/Ft; disp ("N (roundoff error)",F," Total design thrust/s = "); disp ("N (roundoff error)",Ft,"Total thrust /s = "); disp ("kg/ N thrust h",sfc, "Specific fuel consumption = ");
a2458d4942c88e0c8cc4e158562d7456eca6fd45
449d555969bfd7befe906877abab098c6e63a0e8
/2459/CH13/EX13.11/Ex13_11.sce
d7e17d095fb46858bb590918746a659336140f29
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
281
sce
Ex13_11.sce
//chapter13 //example13.11 //page284 R1=40 // kilo ohm R2=10 // kilo ohm Re=2 // kilo ohm Vcc=10 // V Vbe=0.7 // V V2=Vcc*R2/(R1+R2) // voltage across R2 Ve=V2-Vbe // voltage across Re Ie=Ve/Re re_dash=25/Ie printf("ac emitter resistance = %.3f ohm \n",re_dash)
144189563cf6a4ea9383b56e219395b8c1275915
686c6780efada0e19458c60522827d17366b9cc1
/Project2/P2Codes/LeftLogicBitshift.tst
f0c1f7853b9088baf83edb00226c1e589941f7b1
[]
no_license
OnlyOneByte/CSCE312-Fall2019
98b4f46c643ac7a5bda8dc6a279dbb901ee6c921
7bf877ddec8eb3bd9ea32ae1b9b16626c354465c
refs/heads/master
2020-07-25T14:52:35.308731
2020-01-30T02:05:24
2020-01-30T02:05:24
208,329,625
4
0
null
null
null
null
UTF-8
Scilab
false
false
535
tst
LeftLogicBitshift.tst
// This file is part of www.nand2tetris.org // and the book "The Elements of Computing Systems" // by Nisan and Schocken, MIT Press. // File name: projects/02/Add16.tst load LeftLogicBitshift.hdl, output-file LeftLogicBitshift.out, compare-to LeftLogicBitshift.cmp, output-list x%B1.16.1 y%B1.16.1 out%B1.16.1; set x %B0000000010101011, set y %B0000000000000001, eval, output; set x %B1111111111111111, set y %B0000000000001000, eval, output; set x %B1111111111111111, set y %B0000000000000000, eval, output;
5da662f06d4c252d51eb6dea32b68ce688bd6da7
449d555969bfd7befe906877abab098c6e63a0e8
/2735/CH9/EX9.10/Ex9_10.sce
f08f1c72c8bf597ed704c534a8adafaa7b04d0f4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
281
sce
Ex9_10.sce
clc clear //Initialization of variables pb=14.696 //psia pa=150 //psia tb=300 //F //calculations disp("From steam tables,") hb=1192.8 //Btu/lbm ha=hb hf=330.51 //Btu/lbm hfg=863.6 //Btu/lbm x=(ha-hf)/hfg //results printf("Quality of wet steam = %.1f percent",x*100)
d65d5f55afdc4e9eb4c7320a9e186d33bf122945
c9cea368728effc50ef3a05f10679bcc5c63382a
/Clase_03-04/opt_03-04-2019(1).sce
c087940e36ca9b4f3e807040f5c85863866ff75a
[]
no_license
juancllanos/Optimizacion
dbb30315da1b6b3bfac0d1ace5d8e468557565d3
ef85b725af392290dd46febc839f27944a5ed9d7
refs/heads/master
2020-04-28T05:46:38.128903
2019-05-21T21:59:16
2019-05-21T21:59:16
175,032,693
0
0
null
null
null
null
UTF-8
Scilab
false
false
641
sce
opt_03-04-2019(1).sce
// METODO DEL GRADIENTE function fx = f1(x) fx = 10*(x(1)-1)**2 + (x(2)-2)**2 endfunction function tp = tk(g,h) tp = (-g'*-g)/(-g'*h*-g) endfunction /////////////////////////////////////////////////////////////////////////////////////////////////////// x0 = [0 ; 0] disp(f1(x0),'f(x)') g = numderivative(f1,x0)' disp(g,'Gradiente') h = [20 0 ; 0 2] d = -g tp = tk(g,h) disp (tp,'tk') x = x0 + tp*d for i= 1:10 disp(f1(x),'f(x)',x,'x') g1 = numderivative(f1,x)' disp(-g1,'d') tp = tk(g1,h) disp(tp,'tk') x = x + tp*-g1 disp('-----------------------------') end
f43d929e6e23f9302f59f3e485ae925a707932e5
9ba84a7f7b27fc82fdfcfb8dd03498c4cc91f124
/Parcial 2/DiazAgustin1.sce
a6b303a87b86f9d1533aae86276736ba38be81cc
[]
no_license
ignaciolitma/LCC-Metodos-Numericos
8120eba09ea160e3252542373afc5ddad49a04c9
e63728e5f15bb469dff205a74901a5b930e1271d
refs/heads/main
2023-03-12T11:34:36.940908
2021-03-01T20:56:12
2021-03-01T20:56:12
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,644
sce
DiazAgustin1.sce
// Dado un sitema de ecuaciones F y un punto inicial x, // obtiene una solución aproximada al sistema F(v) = 0 con el método de newton multivariable // con una tolerancia de epsilon y un máximo iter de iteraciones function v = metodo_newton_multivariable(F, x, eps, iter) for i = 1: iter Jinv = inv(numderivative(F, x)) x = x - (Jinv * F(x)) if norm(F(x)) < eps then v = x; return end end v = %nan endfunction function y = F10(x) y(1) = x(1)^2 + (x(1) * x(2)^3) - 9 y(2) = (3 * x(1)^2 * x(2)) - 4 - x(2)^3 endfunction // Item a) x = metodo_newton_multivariable(F10, [1.2, 2.5]', 1e-8, 100) disp("Item a", x) disp("Corroboramos que de aproximadamente 0", F10(x)) // Item b) x = metodo_newton_multivariable(F10, [-2, 2.5]', 1e-8, 100) disp("Item b", x) disp("Corroboramos que de aproximadamente 0", F10(x)) // Item c) x = metodo_newton_multivariable(F10, [-1.2, -2.5]', 1e-8, 100) disp("Item c", x) disp("Corroboramos que de aproximadamente 0", F10(x)) // Item d) x = metodo_newton_multivariable(F10, [2, -2.5]', 1e-8, 100) disp("Item d", x) disp("Corroboramos que de aproximadamente 0", F10(x)) // Resultado de Scilab: // "Item a" // 1.3363554 // 1.7542352 // "Corroboramos que de aproximadamente 0" // -1.776D-15 // -1.776D-15 // "Item b" // -0.9012662 // -2.0865876 // "Corroboramos que de aproximadamente 0" // 7.726D-10 // 1.821D-10 // "Item c" // -0.9012662 // -2.0865876 // "Corroboramos que de aproximadamente 0" // 1.776D-15 // 3.553D-15 // "Item d" // -3.0016249 // 0.148108 // "Corroboramos que de aproximadamente 0" // -4.086D-14 // 5.381D-13
e48c4c4cebbeeb94717f09eee8edd40e04382961
449d555969bfd7befe906877abab098c6e63a0e8
/3830/CH4/EX4.2/Ex4_2.sce
69016bfc602eb0de8b884d21171e59a37aebfbb3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,348
sce
Ex4_2.sce
// Exa 4.2 clc; clear; // Given f = 83.3 ; // frequency of sinusoidal voltage in KHz // Solution // part a printf('Being sunchronised, the frequency of the saw-tooth wave will be a submultiple of the signal. \n'); printf(' Frequency of saw-tooth curve = %.2f kHz \n',f/10); F = f/10; printf(' Period of the saw-tooth curve = %.1f microsec \n',(1/F)*10^3); // since, Sine wave y = A sin theta // but y/A = 0.5(since, end of trace was at position half the amplitide away from x-axis) theta = asind(1/2) ; printf(' The 10th wave is in short of a complete since wave by %d degrees \n',theta); printf(' Therefore, No of full waves of sine form seen on the screen are 9 11/12 waveforms \n'); // Rise time +decay time = period of wave = 120 microsec T = 120 ; // period in microsec Rise_by_decay = (119/12) / (10- 119/12); DecayTime = Rise_by_decay/T; printf(' Decay time = %.1f microsec \n',round(DecayTime)); printf(' Rise time = %.1f microsec \n',T-DecayTime); // part b printf(' Since, increase time base frequency = 10/4 times the final value \n'); L = (10/4)* theta ; printf(' Length of trace blanked in degrees due to flyback time = %d degrees \n ',L); T_new = T*4/10; printf('Period of new time base = %d microsec \n',T_new); printf(' Rise time as per new time base = %d microsec \n',T_new-1);
76ff907595fcf058da2db4af5193e42b65fd6f8c
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH28/EX28.6/Ex28_6.sce
05adff08993adced57c23428456d6199013e19c4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
231
sce
Ex28_6.sce
//Example 28.6 m=1*10^-3;//Mass (kg) c=3*10^8;//Speed of light (m/s) E_0=m*c^2;//Rest energy (J) printf('Rest energy = %0.2e J',E_0) //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
5e52b0e86dab5df4937a668ba837b38d59a0ebf2
449d555969bfd7befe906877abab098c6e63a0e8
/3773/CH2/EX2.5/Ex2_5.sce
d28b6bd8dfcb34f6fce9b06017c7de0f035b9918
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
975
sce
Ex2_5.sce
//Chapter 2: Antenna Basics //Example 2-7.1 clc; clear; //Variable declaration n = 10 //Number of isotropic point sources dr = %pi/2 //Distance(radians) hpbw = 40 //Half power beamwidth (degrees) //Calculation deff('z=f(x,y)','z=(sin(%pi/20)*(sin((%pi/2)*(5*cos(y)-6))/sin((%pi/20)*(5*cos(y)-6))))**2') X=[0 0;%pi/2 %pi/2;%pi/2 0]; Y=[0 0;2*%pi 2*%pi;0 2*%pi]; [g1,err]=int2d(X,Y,f) gain = (4*%pi)/g1 //Gain (unitless) gain_db = 10*log10(gain)//Gain (dB) gain_hpbw = 40000/(hpbw**2) //Gain from approx. equation (unitless) gain_hpbw_db = 10*log10(gain_hpbw) //Gain from approx. equation (dB) gain_diff = gain_hpbw_db - gain_db //Difference in gain (dB) //Result mprintf("The Gain G is %.2f dB",gain_db) mprintf("\nThe Gain from approx. equation is %.0f dB",gain_hpbw_db) mprintf("\nThe Difference is %.2f dB",gain_diff) //An error arises due to incorrect integration of the normalized power pattern //Subsequently, the difference in gain is varying
3d8a9e93858b8f58f429a56e69795b2425ca4385
449d555969bfd7befe906877abab098c6e63a0e8
/1691/CH1/EX1.14/Example1_14.sce
f8ca30278d542c7cf7f872be16fdea407fa76114
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
366
sce
Example1_14.sce
//Example 1.14 clc disp("Given A_vf = 120") disp("A_v = Vo/V_s = Vo/60mV") disp("and A_vf = Vo/0.5") vo=0.5*120 format(3) disp(vo,"Therefore, Vo(in V) =") disp("with Vo = 60 V we have,") av=60/(60*10^-3) format(5) disp(av,"A_v =") b=((1000/120)-1)/1000 format(8) disp("We know that,") disp("A_vf = A_v / 1+A_v*beta") disp(b,"Therefore, beta =")
3dfdc9e2a48ed635cea0c706b13b863ed547df71
67ba0a56bc27380e6e12782a5fb279adfc456bad
/STAMPER_PROG_7.4/PolylineIntersection.sci
f97af3ac3f9e2c38ab1cca0fe26a3bb73c7973c4
[]
no_license
2-BiAs/STAMPER_PROG
8c1e773700375cfab0933fc4c2b0f5be0ab8e8f0
4fdc0bcdaef7d6d11a0dcd97bd25a9463b9550d0
refs/heads/master
2021-01-18T19:30:06.506977
2016-11-10T23:32:40
2016-11-10T23:32:40
71,999,971
0
0
null
null
null
null
UTF-8
Scilab
false
false
341
sci
PolylineIntersection.sci
function bIntersect = PolylineIntersection(plA, plB) bIntersect = %F; for i = 1:size(plA, 1) - 1 for j = 1:size(plB, 1) - 1 if Intersect(plA(i:i+1,:), plB(j:j+1,:)) then bIntersect = %T; break; end end if bIntersect then break; end end endfunction
0ed2a3befa94a2c88455093e570bceedb43915ac
6813325b126713766d9778d7665c10b5ba67227b
/Chapter6/Ch_6_Eg_6.33.sci
2c155f95e49671c0c31ec8e674835cdfae544cba
[]
no_license
arvindrachna/Introduction_to_Scilab
955b2063b3faa33a855d18ac41ed7e0e3ab6bd1f
9ca5d6be99e0536ba1c08a7a1bf4ba64620ec140
refs/heads/master
2020-03-15T19:26:52.964755
2018-05-31T04:49:57
2018-05-31T04:49:57
132,308,878
1
0
null
null
null
null
UTF-8
Scilab
false
false
130
sci
Ch_6_Eg_6.33.sci
//A program to illustrate the multiple evaluation of a function with single argument. deff('[z]=f(x)','z=x^2') feval (1:10, f)
8fe94080342ed6d70fe71d5630c9986f1b8cc7fc
449d555969bfd7befe906877abab098c6e63a0e8
/1955/CH3/EX3.5/example5.sce
9197837cf20ad52fa8b075fedd8d717430f84703
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,027
sce
example5.sce
clc clear //input data N=16500//The running speed ofradial blade of a centrifugal compressor in rpm P=4//The total pressure ratio P01=1//The atmospheric pressure in bar T01=298//THe atmospheric temperature in K Dh=0.16//The hub diameter at impeller eye in m Ca=120//The axial velocity at inlet in m/s C1=Ca//The absolute velocity at inlet in m/s sp=0.7//The pressure coefficient C3=120//The absolute velocity at diffuser exit in m/s m=8.3//The mass flow rate in kg/s nc=0.78//The adiabatic total-to-total efficiency r=1.4//The ratio of specific heats of air R=287//The universal gas constant in J/kg.K Cp=1005//The specific heat of air at constant pressure in J/kg.K //calculations T1=T01-((C1^2)/(2*Cp))//The inlet temperature in K P1=P01*(T1/T01)^(r/(r-1))//The inlet pressure in bar d1=(P1*10^5)/(R*T1)//The inlet density of air in kg/m^3 Dt=(((4*m)/(3.14*d1*Ca))+(0.16^2))^(1/2)//The eye tip diameter in m T=((T01)*((P^((r-1)/r))-1))/nc//The overall change in temperature in K ssps=sp/nc//The product of slip factor and power factor U2=(T*Cp/ssps)^(1/2)//Peripheral velocity of impeller top at exit in m/s D2=(U2*60)/(3.14*N)//The impeller tip diameter in m Uh=(3.14*Dh*N)/60//Peripheral velocity of eye hub in m/s bh=atand(C1/Uh)//Blade angle at eye hub in degree Ut=(3.14*Dt*N)/60//Peripheral velocity of eye tip in m/s bt=atand(C1/Ut)//Blade angle at eye tip in degree T03=T01+T//Temperature at the exit in K T3=T03-((C3^2)/(2*Cp))//Exit static temperature in K P3=(P*P01)*(T3/T03)^(r/(r-1))//Exit static pressure in bar W=m*Cp*(T03-T01)*10^-6//Power required to drive the compressor in mW //output printf('(a)The main dimensions of the impeller are\n (1)Eye tip diameter is %3.3f m\n (2)Impeller tip diameter is %3.3f m\n (3)Blade angle at the eye hub is %3.2f degree\n Blade angle at the eye tip is %3.2f degree\n(b) (1)The static exit temperature is %3.1f K\n (2)The static exit pressure is %3.3f bar\n(c)The power required is %3.3f MW',Dt,D2,bh,bt,T3,P3,W)
4386df1278a843ccb5c6a21116a88e824a6aff87
449d555969bfd7befe906877abab098c6e63a0e8
/32/CH3/EX3.21/3_21.sce
29d8b510c384f4d439eaa9bf4656f3b0437e78c7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
972
sce
3_21.sce
//pathname=get_absolute_file_path('3.21.sce') //filename=pathname+filesep()+'3.21-data.sci' //exec(filename) //Volume of bottle(in m^3): v1=0.3 //Pressure in the bottle(in bar): p1=35 //Temperature in the bottle(in K): T1=40+273 //Turbo generator's actual output(in kJ/s): w1=5 //Final prssure(in bar): p2=1 //Final volume(in m^3): v2=v1 //Gas constant for air(in kJ/kg.K): Ra=0.287 //Compression ratio: r=1.4 //% of output which is consumed= 60% //Specific heat at const volume(in kJ/kg): Cv=0.718 //Specific heat at const pressure(in kJ/kg): Cp=1.005 //Final temperature(in K): T2=T1*(p2/p1)^((r-1)/r) //Initial mass in the bottle(in kg): m1=p1*10^2*v1/(Ra*T1) //Final mass in the bottle(in kg): m2=p2*10^2*v2/(Ra*T2) //Maximum work that can be obtained(in kJ): W=(m1*Cv*T1-m2*Cv*T2)-(m1-m2)*Cp*T2 //Input to the turbo generator(in kJ/s): i=w1/0.6 //Time duration(in s): t=W/i printf("\nRESULT\n") printf("\nDuration = %f seconds",t)
aa8484094002f551bdaa22d4bc48c5b9ecef45be
449d555969bfd7befe906877abab098c6e63a0e8
/3754/CH14/EX14.3/14_3.sce
117bbd8c0687e7f86cd2501348027cc2125b68a3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
14_3.sce
clear// //Variables alpha = 0.967 //common base current gain IE = 10 //Emitter current (in milli-Ampere) //Calculation IC = alpha * IE //Collector current (in milli-Ampere) IB = IE - IC //Base current (in milli-Ampere) //Result printf("\n Base current is %0.3f mA." ,IB)
2c6ecf3067fefa76c1da55c62538e0b44ebb0f4e
449d555969bfd7befe906877abab098c6e63a0e8
/3557/CH18/EX18.6/Ex18_6.sce
23cd0d564814d302dda689d0a234268ee0ac8188
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex18_6.sce
//Example18.6// a=8.9*10^4;//(amperes/m)(webers/m^2) // Area mprintf("a= %e (amperes.webers)/m^3",a) //one ampere weber is equal to 1joule. The area is then a volume density of energy ,or e=8.9*10^4//J/m^3 //energy loss b= 10^-3; //As 1Kilogram = 10^3 gram e1=e*b mprintf("\ne1 = %i kJ/m^3 (per cycle) (As 1Kilogram = 10^3 garm)",e1)
2d8f34c307597429da5abd14f90f27a3ac449313
449d555969bfd7befe906877abab098c6e63a0e8
/3782/CH3/EX3.11/Ex3_11.sce
4b37395af15d614399ee0eb9cbc3ad293bb9c7fc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
567
sce
Ex3_11.sce
// // bearingOB=140+(15/60)//given bearingOA=30+(30/60)//given angleAOB=bearingOB-bearingOA deg=int(angleAOB) mins=(angleAOB-deg)*60//finding minutes printf("\n AngleAOB= %0.3f degrees %0.3f minutes",deg,mins) bearingOC=220+(45/60)//given angleBOC=bearingOC-bearingOB deg=int(angleBOC) mins=(angleBOC-deg)*60//finding minutes printf("\n AngleBOC= %0.3f degrees %0.3f minutes",deg,mins) bearingOD=310+(30/60)//given angleCOD=bearingOD-bearingOC deg=int(angleCOD) mins=(angleCOD-deg)*60//finding minutes printf("\n AngleCOD= %0.3f degrees %0.3f minutes",deg,mins)
2e0405f4ff4846e14e7e580e6d80230f67a4e4a2
449d555969bfd7befe906877abab098c6e63a0e8
/67/CH7/EX7.12/example712.sce
d14d7b7bfb958ec35a73bb72e790b1c3eb432ca1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
196
sce
example712.sce
//Example 7.12 //Ztransform of x[n]=(n^2)*u[n] done by Diffrentiation property clc; syms z n; x=1; X1=symsum(x*(z^-n),n,0,%inf); X2=(-z)*(diff(X1,z)); X=(-z)*(diff(X2,z)); disp(X,'X(z)=');
aef9a4e07febbc62584a3d25f45572efbb1a31f9
881e0bcc7118244a24f736786ac36140acfb885e
/pima/results/GAssist-ADI-C.pima-3/result2s0.tst
5a42811968fd884f117d45cfa70b9467d1359db5
[]
no_license
woshahua/Experiment_File
3e34e5a4a622d6d260fbdf8d5ef2711712aad9bc
6a139cd3f779373799cb926ba90d978235b0de0d
refs/heads/master
2021-01-01T06:57:13.285197
2017-07-28T08:17:38
2017-07-28T08:17:38
97,557,409
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,871
tst
result2s0.tst
@relation pima-3 @attribute Preg real [0.0, 17.0] @attribute Plas real [0.0, 199.0] @attribute Pres real [0.0, 122.0] @attribute Skin real [0.0, 99.0] @attribute Insu real [0.0, 846.0] @attribute Mass real [0.0, 67.1] @attribute Pedi real [0.078, 2.42] @attribute Age real [21.0, 81.0] @attribute Class {tested_negative, tested_positive} @inputs Preg, Plas, Pres, Skin, Insu, Mass, Pedi, Age @outputs Class tested_positive tested_positive tested_negative tested_negative tested_negative tested_positive tested_negative tested_negative tested_negative tested_negative tested_positive tested_positive tested_positive tested_negative tested_positive tested_negative tested_positive tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_positive tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_positive tested_positive tested_positive tested_positive tested_positive tested_positive tested_negative tested_positive tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_positive tested_negative tested_positive tested_positive tested_positive tested_positive tested_positive tested_positive tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_positive tested_negative tested_positive tested_positive tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_positive tested_negative tested_negative tested_positive tested_negative tested_positive tested_positive tested_negative tested_positive tested_negative tested_positive tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_positive tested_positive tested_positive tested_negative tested_positive tested_positive tested_positive tested_positive tested_negative tested_positive tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_negative tested_positive tested_negative tested_negative tested_negative tested_negative tested_negative tested_positive tested_positive tested_positive tested_positive tested_negative tested_positive tested_positive tested_negative tested_negative tested_negative tested_positive tested_negative tested_negative tested_negative tested_negative tested_positive tested_positive tested_positive tested_positive tested_positive tested_positive tested_negative tested_negative tested_negative tested_negative tested_negative tested_positive tested_negative tested_negative tested_negative tested_positive
758e7381ec25b8a128150b812333acf741132c11
449d555969bfd7befe906877abab098c6e63a0e8
/2318/CH5/EX5.13/ex_5_13.sce
3b6fa50e5f6fdb89885ae7cfedee2f020e347ff1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
221
sce
ex_5_13.sce
//Example 5.13 //hysteresis loss clc; clear; close Hx=125;//AT/m ah=200;//cm^2 ba=0.15;//Wb/m^2 le=ah*Hx*ba;//J/m^3 lo=50;//loos po=lo*le;//W/m^3 kg=8.5*10^3;//kg/m^3 lkg=po/kg;//watt disp(lkg,"hysteresis loss is ,(W)=")
16f5fbc82affe5a5f6884d206dc2f8483d089134
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/form-split/GOLD-TEST/bod.tst
8c5206bd1941646cd8f774ccf5fec5d9b445a008
[]
no_license
davidgu13/Lemma-vs-Form-Splits
c154f1c0c7b84ba5b325b17507012d41b9ad5cfe
3cce087f756420523f5a14234d02482452a7bfa5
refs/heads/master
2023-08-01T16:15:52.417307
2021-09-14T20:19:28
2021-09-14T20:19:28
395,023,433
3
0
null
null
null
null
UTF-8
Scilab
false
false
35,781
tst
bod.tst
འཁྱོང་། འཁྱོང་། V;FUT གཡབ། གཡོབ། V;PST གྱར། གྱར། V;PST དྲ། དྲ། V;FUT གླ། གློས། V;IMP གློད། གློད། V;FUT ལན། ལན། V;PST མཚོན། མཚོན། V;PRS འགྱེལ། འགྱེལ། V;PST འབྱོར། འབྱོར། V;PST བཙུམ། བཙུམ། V;FUT ཡུར། ཡུར། V;IMP ལང་། ལོངས། V;IMP ལབ། ལབ། V;PST བརྫུ། བརྫུས། V;PRS བཤོར། གཤོར། V;PST གཏུག། གཏུགས། V;IMP བསག། བསགས། V;PRS ཀེར། ཀེར། V;PRS ལྷུང་། ལྷུང་། V;PST བཙོག། འཚོག། V;PST བསྟང་། བསྟངས། V;PRS འཐེན། འཐེན། V;FUT བཤེད། བཤེད། V;PRS བླང་། བླངས། V;PRS བཅག། བཅགས། V;PRS བསྐུམ། བསྐུམས། V;PRS སྤྱད། སྤྱད། V;PRS བསྲོ། སྲོ། V;PST བམ། བམ། V;FUT བརྣབ། བརྣབས། V;PRS བརྩིག། བརྩིག། V;FUT བསྟིང་། སྟིངས། V;IMP བསྒུར། སྒུར། V;IMP སྤུར། སྤུར། V;IMP བཅོས། འཆོས། V;PST བརྫུ། རྫུས། V;IMP བལྡབ། ལྡོབས། V;IMP བབ། བབ། V;PRS བཅང་། ཆོངས། V;IMP བཏེག། ཐེག། V;PST སྦོལ། སྦོལ། V;IMP ལྡོབ། ལྡོབས། V;PRS བཟི། བཟི། V;FUT ཐེ། ཐེ། V;PRS བསྐྱོར། སྐྱོར། V;IMP ཕྱོགས། ཕྱོགས། V;PST འཚོ། འཚོ། V;FUT བཅོལ། བཅོལ། V;FUT འཕྱ། འཕྱོས། V;IMP བསྟབ། བསྟབས། V;PRS འབྱོལ། བྱོལ། V;IMP གཅིལ། གཅིལ། V;IMP འཁྱོག། འཁྱོག། V;FUT མཉམ། མཉམ། V;PRS འབྱི། འབྱི། V;FUT ཟད། ཟད། V;FUT འཕྱོ། འཕྱོས། V;PRS དོགས། དོགས། V;PRS འཆལ། འཆལ། V;FUT འཚོ། འཚོ། V;FUT བསྡེབ། བསྡེབས། V;PRS སྦྱང་། སྦྱོང་། V;PST བགྲུ། བགྲུ། V;PST མགར། མགར། V;FUT འཁྱུར། འཁྱུར། V;PRS བསྙག། སྙོག། V;PST མཉེས། མཉེས། V;FUT འབྱོར། འབྱོར། V;PRS བཤུ། ཤུས། V;IMP དཔོད། དཔོད། V;FUT གོན། གོན། V;PRS བསྣན། བསྣན། V;FUT ལན། ལན། V;FUT བསྒྲོན། སྒྲོན། V;PST འབྱོན། འབྱོན། V;FUT ཡེར། ཡེར། V;PST དམུལ། དམུལ། V;FUT གཞག། འཇོག། V;PST གོན། གོན། V;FUT བསྒབ། སྒོབ། V;IMP འཐོབ། ཐོབ། V;PRS གཅུར། འཇུར། V;PST གཞེས། གཞེས། V;PRS བསྣོར། སྣོར། V;PST འཕྱོར། འཕྱོར། V;IMP འཛུལ། འཛུལ། V;PST གླེབ། གླེབས། V;IMP ཡོད། ཡོད། V;PST དམན། དམན། V;PRS རེད། རེད། V;FUT བརྒྱུ། བརྒྱུས། V;PRS བཞུགས། བཞུགས། V;IMP གོག། གོག། V;FUT བསྲུལ། སྲུལ། V;PST དགས། ཁོས། V;IMP བརྟུལ། རྟུལ། V;IMP སྦོལ། སྦོལ། V;FUT བཀླུབ། ཀླུབས། V;IMP མགུ། མགུ། V;PST མནལ། མནོལ། V;IMP གཏུག། གཏུག། V;FUT སྡང་། སྡང་། V;PRS བསྡམ། སྡོམ། V;PST བྲི། འབྲི། V;PST འགྱུར། འགྱུར། V;PST བསྒག། བསྒགས། V;PRS མནོལ། མནོལ། V;FUT བླད། བློད། V;IMP འཚག། འཚོགས། V;IMP སོན། སོན། V;PRS བཞུད། བཞུད། V;FUT བསྒྲེ། སྒྲེས། V;IMP བཤོལ། བཤོལ། V;IMP ཞ། ཞ། V;PST དཀྲི། དཀྲི། V;PST རྨོངས། རྨོངས། V;PST བསྒྲིག། བསྒྲིག། V;FUT གནོང་། གནོངས། V;PRS གཙབ། གཙབ། V;FUT འདྲོང་། འདྲོང་། V;FUT དགྱེལ། དགྱེལ། V;FUT གཏུལ། གཏུལ། V;IMP གཅེས། གཅེས། V;PRS བདའ། འདེད། V;PST བསྙལ། བསྙལ། V;PRS གྱག། གྱག། V;FUT འབྲི། བྲི། V;PRS འགྲིལ། འགྲིལ། V;PST སྐྱོ། སྐྱོ། V;PRS བགྲུ། བགྲུས། V;PRS འཕྱུག། འཕྱུགས། V;PRS བསྐྱུར། བསྐྱུར། V;PRS བསླུག། སླུག། V;PST འབྲང་། འབྲང་། V;PST ཞེན། ཞེན། V;PRS བརྩོན། བརྩོན། V;PRS ཤན། ཤན། V;IMP བྲན། བྲན། V;FUT གཏམས། གཏམས། V;PST བསྒྲིལ། བསྒྲིལ། V;FUT མཁྱེན། མཁྱེན། V;FUT བསྒྲོ། བསྒྲོ། V;FUT བསྲུང་། བསྲུངས། V;PRS འབྱང་། འབྱང་། V;PST འཐུལ། ཐུལ། V;PRS དྲན། དྲན། V;FUT རྙེད། རྙེད། V;FUT བདག། བདག། V;PST འཁྱུད། འཁྱུད། V;PRS ལྷགས། ལྷགས། V;FUT འཁྲུ། འཁྲུས། V;PRS བསྒྲིམ། སྒྲིམས། V;IMP བསྒྲིན། བསྒྲིན། V;PRS དགོངས། དགོངས། V;FUT ཁྲུལ། ཁྲུལ། V;PST བཟློ། བཟློས། V;PRS བསོད། བསོད། V;FUT བགྱེད། བགྱེད། V;FUT རྔུལ། རྔུལ། V;FUT གཡོལ། གཡོལ། V;FUT བརླིང་། རླིང་། V;PST གདོན། གདོན། V;FUT གཞོམ། བཅོམ། V;PRS བཤོལ། བཤོལ། V;PST འཛག། འཛག། V;PST རྒྱ། རྒྱ། V;FUT བྲེག། བྲེགས། V;IMP དཀྲི། དཀྲིས། V;PRS དབོག། འབོགས། V;PST ཧྲལ། ཧྲལ། V;FUT ཡལ། ཡལ། V;PST སྦྱར། སྦྱར། V;PRS གཞེས། གཞེས། V;FUT དགར། བཀར། V;PRS བསྐུམ། སྐུམས། V;IMP མཐུན། མཐུན། V;PST གསུར། གསུར། V;PST གཅག། ཆོག། V;IMP བཞོ། གཞོས། V;IMP བཞེས། བཞེས། V;PRS འཆལ། འཆལ། V;PRS རྒ། རྒ། V;FUT ངེར། ངེར། V;PST བཀོལ། ཁོལ། V;IMP དོར། འདོར། V;PST དཔྲུལ། དཔྲུལ། V;PST འཕྲོད། འཕྲོད། V;PRS འགྱང་། འགྱང་། V;FUT སྤར། སྤོར། V;IMP བརྔོན། རྔོན། V;IMP དགྱེད། དགྱེད། V;PRS འཕྱི། འཕྱི། V;PST འབག། འབག། V;FUT བསྔས། བསྔས། V;PRS བཤང་། གཤོང་། V;PST འཕམ། འཕམ། V;PST གསང་། གསང་། V;PST བརྡབ། རྡེབ། V;PST བགོར། བགོར། V;PRS བཙུམ། བཙུམས། V;PRS འཕྱིང་། འཕྱིང་། V;PST འཚམ། འཚམས། V;PRS བཀོན། བཀོན། V;PST དར། དར། V;PRS གཡུར། གཡུར། V;PST ཡོར། ཡོར། V;PST ཧད། ཧད། V;PRS དཔྲུལ། དཔྲུལ། V;FUT ནུད། ནུད། V;PRS འགྲོགས། འགྲོགས། V;PST འདར། འདར། V;FUT སྤྲུལ། སྤྲུལ། V;PST བགྲད། བགྲད། V;FUT ཐེང་། ཐེང་། V;FUT བཅང་། འཆང་། V;PST བཀྱོན། བཀྱོན། V;IMP འཆོར། ཤོར། V;PRS ཞོམ། ཞོམ། V;PST བཞུགས། བཞུགས། V;PST བསྣུབ། བསྣུབས། V;PRS བསྡུར། སྡུར། V;IMP གསུར། གསུར། V;PRS འཁྲེན། འཁྲེན། V;FUT མཉན། ཉན། V;PST བཏིག། གཏིག། V;PST བརྙང་། རྙང་། V;PST གཟུང་། འཛིན། V;PST གཞོབ། གཞོབ། V;FUT ལྡང་། ལྡངས། V;PRS ཚ། ཚ། V;PRS འཛོལ། འཛོལ། V;PST གཡེང་། གཡེངས། V;PRS གཟབ། གཟབ། V;PST བཤམ། གཤོམ། V;PST འཁོབ། འཁོབས། V;PRS སྐྱེངས། སྐྱེངས། V;FUT བརྒྱུང་། བརྒྱུངས། V;PRS གཏོད། གཏོད། V;FUT འཚང་། འཚང་། V;FUT དགོལ། དགོལ། V;FUT སྤུང་། སྤུངས། V;PRS སླེབ། སླེབ། V;PST བསྒོམ། སྒོམས། V;IMP དབྲི། ཕྲིས། V;IMP བཤེར། བཤེར། V;FUT བསྟང་། སྟོངས། V;IMP བབ། བབ། V;FUT བསྣན། སྣོན། V;IMP འབུང་། འབུངས། V;PRS བསྡུར། བསྡུར། V;FUT ཉོག། ཉོག། V;FUT བསྡོང་། སྡོངས། V;IMP དཀྲིག། དཀྲིག། V;FUT བླད། བླད། V;PST གཏོག། གཏོག། V;PST གཉིད། གཉིད། V;FUT སྨན། སྨན། V;PRS འཁོང་། འཁོང་། V;PRS བཟོ། བཟོ། V;FUT བརྒལ། བརྒལ། V;PRS བསླང་། སློངས། V;IMP གཡོག། གཡོགས། V;IMP བཤུང་། བཤུང་། V;PST དགལ། འཁེལ། V;PST བལྡེག། བལྡེགས། V;PRS མཚོན། མཚོན། V;FUT བསྐྱུར། སྐྱུར། V;PST རེམ། རེམས། V;IMP གུས། གུས། V;FUT བཀླག། ཀློགས། V;IMP གློད། གློད། V;PST སྤྱུག། སྤྱུག། V;FUT ཕན། ཕན། V;FUT སྤར། སྤར། V;PRS འབྲལ། བྲལ། V;PRS སྤྱོ། སྤྱོ། V;PST འཐིབ། འཐིབ། V;PST བཤུམ། ཤུམ། V;PST ཤིང་། ཤིང་། V;PRS སྦང་། སྦང་། V;FUT བསྐོང་། སྐོངས། V;IMP འགྲས། འགྲས། V;PRS བསྟུན། སྟུན། V;PST འཁྱམ། འཁྱམ། V;FUT བུངས། བུངས། V;PRS བརློང་། རློངས། V;IMP བཀྲེས། བཀྲེས། V;PRS བཀྱག། ཁྱོགས། V;IMP བསྣོར། བསྣོར། V;PRS དོར། དོར། V;IMP གདམ། གདམས། V;PRS ཆེས། ཆེས། V;PST འཕོག། འཕོག། V;FUT གདེང་། གདེང་། V;PST ཉོབ། ཉོབ། V;PRS གཟིང་། གཟིང་། V;PST དབྲལ། དབྲོལ། V;IMP མནར། མནར། V;PRS གདང་། གདང་། V;PST བཏོག། ཐོགས། V;IMP བསལ། སེལ། V;PST སྨྱུང་། སྨྱུངས། V;PRS བསླེ། བསླེས། V;PRS མནོ། མནོ། V;PST འཁུན། འཁུན། V;FUT ལྡུར། ལྡུར། V;PST གསེད། གསེད། V;PST དགྲོང་། འགྲོངས། V;PST སྦྲེང་། སྦྲེང་། V;FUT འཁེང་། འཁེང་། V;FUT ཟེར། ཟེར། V;PST ལྟོགས། ལྟོགས། V;PST ཞེད། ཞེད། V;PST ངོམས། ངོམས། V;PST བཤའ། བཤའ། V;FUT འཁྱུག། འཁྱུག། V;PST ཧོལ། ཧོལ། V;PRS ཡན། ཡན། V;PST དབང་། དབང་། V;PRS བཙོང་། བཙོང་། V;FUT འབྲིད། འབྲིད། V;PST ལགས། ལགས། V;FUT བསྟན། བསྟན། V;FUT འདྲོག། འདྲོག། V;FUT བསྙུན། སྙུན། V;PST ཁེག། ཁེགས། V;PRS དབོག། ཕོགས། V;IMP འཛེག། འཛེགས། V;PRS འབྱོང་། འབྱངས། V;PRS བརློང་། བརློང་། V;FUT གཙེ། གཙེ། V;FUT འཆད། འཆད། V;FUT ཁྱག། ཁྱག། V;PST བལྟ། ལྟོས། V;IMP འཁྲིམས། འཁྲིམས། V;PST བསྟུན། སྟུན། V;IMP འཛོལ། འཛོལ། V;PRS སྦང་། སྦོངས། V;IMP མནན། མནན། V;FUT འབབ། བབས། V;PRS བརྒྱལ། བརྒྱལ། V;PRS སྦྱིན། སྦྱིན། V;FUT འཁྲེབ། འཁྲེབ། V;PST འཁྲུང་། འཁྲུངས། V;PRS བྲིན། བྲིན། V;FUT འབྱང་། འབྱང་། V;FUT གོག། གོག། V;PST གདུལ། བཏུལ། V;PRS མདུད། མདུད། V;IMP བྲུབ། བྲུབས། V;PRS གླེང་། གླེངས། V;IMP འཕོག། ཕོག། V;PRS མཆོད། མཆོད། V;FUT བགྲོད། བགྲོད། V;IMP བརྒྱང་། བརྒྱང་། V;FUT རྒྱ། རྒྱས། V;PRS ཚར། ཚར། V;PRS བསྙེན། བསྙེན། V;FUT ཞལ། ཞལ། V;PRS བསྙིལ། སྙིལ། V;PST འཕོ། འཕོ། V;PST འཐེང་། འཐེང་། V;PRS འཆག། འཆག། V;PST བགྲེས། བགྲེས། V;PRS ཞུམ། ཞུམ། V;PRS ངེར། ངེར། V;PRS བསུབ། སུབས། V;IMP མནབ། མནབས། V;PRS བཅིབ། བཅིབས། V;PRS བསོ། བསོས། V;PRS བཞད། བཞད། V;FUT བརྔོ། རྔོ། V;PST གཏམ། གཏོམས། V;IMP དོང་། དོང་། V;PRS ཤིས། ཤིས། V;FUT རལ། རལ། V;PRS བགྱི། བགྱིས། V;PRS གཡོར། གཡོར། V;IMP མྱུལ། མྱུལ། V;PST གདིང་། འདིང་། V;PST འཆར། འཆར། V;PST གཏུབ། གཏུབ། V;FUT ལྡང་། ལངས། V;PRS བསིལ། གསིལ། V;PST བསྒྲོ། བསྒྲོས། V;PRS རེང་། རེངས། V;PRS རེ། རེ། V;PRS འབྱོན། བྱོན། V;IMP འཁྲོག། འཁྲོག། V;FUT བཙིར། འཚིར། V;PST གླེབ། གླེབ། V;PST གཞིལ། འཇིལ། V;PST འཕྱུག། འཕྱུག། V;FUT བརྒལ། བརྒལ། V;FUT བདལ། བདོལ། V;IMP ཁེན། ཁེན། V;PRS འཕང་། འཕང་། V;FUT ཀླས། ཀླས། V;PST བསྲི། སྲིས། V;IMP འཕྲེང་། འཕྲེང་། V;PRS འཁྲིད། ཁྲིད། V;PRS གྱེད། གྱེད། V;FUT བསྐྱུད། སྐྱུད། V;PST ཧང་། ཧང་། V;FUT ནུ། ནུ། V;PST འཁམས། འཁམས། V;PST བརྒལ། བརྒལ། V;FUT ཚིམ། ཚིམ། V;FUT འཁྱལ། འཁྱལ། V;PST འབྲུལ། བྲུལ། V;PRS འཐད། འཐད། V;FUT བགམ། བགམ། V;FUT བརྙབ། བརྙབ། V;FUT ཧྲོལ། ཧྲོལ། V;PST འགག། འགགས། V;PRS བདག། བདག། V;PRS དཀྲོག། དཀྲོག། V;FUT འཛེར། འཛེར། V;PRS ཟིང་། ཟིང་། V;PST ཞུད། ཞུད། V;IMP གནོང་། གནོང་། V;FUT སྤྱིང་། སྤྱིང་། V;FUT མཉེལ། མཉེལ། V;FUT བཀྱིག། བཀྱིགས། V;PRS གཟིར། གཟིར། V;IMP འབག། འབགས། V;PRS ཟེར། ཟེར། V;PST གྱེར། གྱེར། V;FUT ཡོར། ཡོར། V;FUT འཇོ། འཇོ། V;PST བསྟང་། བསྟང་། V;FUT གཞོག། གཞོགས། V;IMP གཟའ། གཟའ། V;FUT གསོར། གསོར། V;IMP གཏོར། གཏོར། V;PRS ཟེགས། ཟེགས། V;IMP བད། བད། V;FUT རོལ། རོལ། V;PST དྲེད། དྲེད། V;PRS བརྙོག། བརྙོག། V;PST བརྡལ། བརྡལ། V;FUT བསྐྲུན། སྐྲུན། V;PST ཤེས། ཤེས། V;PST གླན། གླན། V;FUT འདེད། ཐེད། V;IMP བསྙོན། བསྙོན། V;FUT ཐིམ། ཐིམ། V;FUT འབའ། འབའ། V;PRS བསྒྲང་། སྒྲང་། V;PST བསྐྱབ། སྐྱོབ། V;PST བདའ། བདའ། V;PST འགུལ། འགུལ། V;PST མཆོང་། མཆོང་། V;PST བསྒྲེང་། བསྒྲེངས། V;PRS བསབ། བསབ། V;FUT བསྒྲིབ། སྒྲིབ། V;PST བྲ། བྲ། V;PST བཤོར། བཤོར། V;PRS ཐེ། ཐེ། V;PST ལྕེབ། ལྕེབ། V;FUT འཕར། འཕར། V;PRS བསྲབ། སྲབ། V;PST སྨྱུར། སྨྱུར། V;PRS ཁེང་། ཁེང་། V;PST གསེང་། གསེང་། V;PRS བསྐྲུ། བསྐྲུ། V;FUT འབྲི། འབྲི། V;PST བགད། བགད། V;PRS དགྱེལ། དགྱེལ། V;IMP སངས། སངས། V;PRS བསྟད། བསྟད། V;PRS རྨྱ། རྨྱ། V;PST སྙིགས། སྙིགས། V;PST ཁྱབ། ཁྱབ། V;FUT བྲོད། བྲོད། V;PST གཉེར། གཉེར། V;FUT མཆེད། མཆེད། V;FUT གཞུར། གཞུར། V;PRS གཟར། གཟར། V;PST ཡན། ཡན། V;FUT བསྒྲག། བསྒྲག། V;FUT སྦ། སྦེད། V;PST གཉེར། གཉེར། V;IMP བསྡེབ། བསྡེབ། V;FUT འཁྱོང་། འཁྱོང་། V;PST གཉག། གཉོག། V;PST རངས། རངས། V;PST བརྗེ། རྗེ། V;PST གཡོར། གཡོར། V;PST བསྐྲོག། བསྐྲོག། V;FUT སྐྱོ། སྐྱོ། V;PST གདིང་། བཏིངས། V;PRS འཁུམ། འཁུམས། V;PRS གསང་། གསོངས། V;IMP བཟོ། བཟོ། V;PST སྤྲུག། སྤྲུགས། V;PRS འཚོབ། འཚོབ། V;FUT རྩེན། རྩེན། V;FUT གཡེམ། གཡེམ། V;IMP དཔྲུལ། དཔྲུལ། V;PRS འབྲལ། འབྲལ། V;PST བསྒྱེལ། བསྒྱེལ། V;FUT སྤག། སྤོགས། V;IMP འགྱོད། འགྱོད། V;PRS བསྒབ། སྒབ། V;PST གཏོད། བཏོད། V;PRS བཀྲུ། ཁྲུས། V;IMP བརྒྱུང་། བརྒྱུང་། V;FUT འཁྱོམ། འཁྱོམ། V;PST བརྟིབ། བརྟིབས། V;PRS ཐེབས། ཐེབས། V;PRS བསླན། བསླན། V;PRS བཅོལ། ཆོལ། V;IMP རྨྱ། རྨྱ། V;PRS ལྷོང་། ལྷོངས། V;PRS སྲེད། སྲེད། V;PRS སྤུད། སྤུད། V;PST བསྐྱུད། སྐྱུད། V;IMP གསན། གསོན། V;PST བརྡར། བརྡར། V;PRS སྤེལ། སྤེལ། V;IMP འཚལ། འཚལ། V;PRS བསག། གསོག། V;PST བྱ། བྱས། V;PRS འབུར། འབུར། V;PST འགེམ། འགེམས། V;PRS འཕྱུར། འཕྱུར། V;PST འགྲུལ། འགྲུལ། V;PST བརྟབ། བརྟབས། V;PRS མྱོས། མྱོས། V;PRS མཁས། མཁས། V;FUT འཐུལ། འཐུལ། V;FUT གཤེགས། གཤེགས། V;FUT དབུབ། ཕུབ། V;PRS འཕྲོ། འཕྲོ། V;FUT གཏན། གཏན། V;FUT སྤང་། སྤོང་། V;PST དགོག། བཀོག། V;PRS གདང་། གདོངས། V;IMP ཚིམ། ཚིམས། V;PRS འཕྲ། འཕྲ། V;PST བསྟར། བསྟར། V;PRS གློང་། གློངས། V;PRS འཚང་། འཚང་། V;FUT ཡེར། ཡེར། V;FUT ལྡོབ། ལྡོབ། V;PST དགྲོལ། བཀྲལ། V;PRS འཁར། འཁར། V;PST བཏིག། བཏིགས། V;PRS གནས། གནས། V;PRS ལབ། ལོབ། V;IMP བདལ། བདལ། V;PRS བསབ། བསབས། V;PRS དབྱུང་། དབྱུང་། V;FUT གཙུབ། གཙུབ། V;FUT བརྩམ། རྩོམ། V;PST ཟེམ། ཟེམ། V;FUT བསྒྲེང་། སྒྲེང་། V;PST ལྡོན། ལྡོན། V;PST གཞའ། གཞའ། V;FUT ཕྱེད། ཕྱེད། V;PST བཅུ། བཅུས། V;PRS ཐེ། ཐེ། V;FUT ཀུམ། ཀུམ། V;PRS བྲི། བྲིས། V;PRS རྨེལ། རྨེལ། V;FUT ལྡིང་། ལྡིང་། V;FUT འདྲོང་། འདྲོངས། V;PRS ཚོས། ཚོས། V;PRS བརྣང་། རྣོངས། V;IMP འགྲིག། འགྲིག། V;PST ལབ། ལབ། V;PRS ཕྱག། ཕྱགས། V;PRS འཇོལ། འཇོལ། V;PST དད། དད། V;PST བསྐྱང་། སྐྱོང་། V;PST བརྒྱོ། རྒྱོ། V;PST བསྡམ། སྡོམས། V;IMP བརྩད། རྩོད། V;IMP སྦྲེལ། སྦྲེལ། V;PRS དྲི། དྲི། V;FUT འཆི། འཆི། V;PST བསྐྱེད། སྐྱེད། V;PST འཆུ། འཆུ། V;FUT བསྟིམ། སྟིམ། V;PST འབྲིད། འབྲིད། V;FUT གླེབ། གླེབ། V;FUT ཆུམ། ཆུམ། V;PST བྱང་། བྱང་། V;FUT ལྡན། ལྡན། V;FUT གཏོག། གཏོགས། V;PRS གཏུལ། གཏུལ། V;FUT སད། སད། V;PST གཟོ། གཟོས། V;PRS གཞར། གཞོར། V;IMP བརྫང་། བརྫངས། V;PRS རིགས། རིགས། V;PRS བསླུག། བསླུག། V;FUT ལྡན། ལྡན། V;PST སྤྱིལ། སྤྱིལ། V;PST གླེབ། གླེབས། V;PRS བཏིག། བཏིག། V;FUT ལད། ལད། V;FUT བསྐྱོག། སྐྱོགས། V;IMP བསྟིང་། བསྟིང་། V;FUT བླག། བླགས། V;PRS དམས། དམས། V;FUT འབ། འབ། V;PST དང་། དང་། V;FUT བཙིར། བཙིར། V;PRS སྤོ། སྤོས། V;IMP འཆི། འཆི། V;FUT བསྒྲད། བསྒྲད། V;PRS བསྒར། བསྒར། V;FUT བཅའ། བཅས། V;PRS བསྐུལ། བསྐུལ། V;FUT བཙལ། འཚོལ། V;PST བཟླུམ། ཟླུམས། V;IMP གློང་། གློང་། V;FUT བསྣད། སྣད། V;PST བསྣོ། སྣོ། V;PST ངར། ངར། V;PST འདང་། འདང་། V;PST ཚད། ཚད། V;PST དགོས། དགོས། V;FUT གླལ། གླལ། V;PST དབྲལ། དབྲོལ། V;PST བསྙེར། བསྙེར། V;PRS གཏང་། ཐོངས། V;IMP བསྩལ། བསྩལ། V;PRS ཟུག། ཟུག། V;FUT གསེང་། གསེང་། V;IMP འཚོབ། འཚོབ། V;PST དགུག། ཁུག། V;IMP སྐྲུག། སྐྲུག། V;PRS ཡེང་། ཡེང་། V;FUT བསུམ། སུམ། V;PST གཞབ། བཞབས། V;PRS མནལ། མནལ། V;PRS འཁྱོམ། འཁྱོམས། V;PRS བརྣོག། བརྣོགས། V;PRS བཀྲི། བཀྲིས། V;IMP བསྣོལ། སྣོལ། V;IMP མྱག། མྱག། V;FUT བཀྱིག། ཁྱིགས། V;IMP འཛར། འཛར། V;PRS འཕེར། འཕེར། V;PST བཤད། ཤོད། V;IMP འགལ། འགལ། V;PST གཅུན། ཆུན། V;IMP ཟག། ཟག། V;FUT ཁེབས། ཁེབས། V;PRS གཙུབ། གཙུབས། V;PRS རྙིད། རྙིད། V;PRS སླེབ། སླེབ། V;FUT གཞིག། གཞིགས། V;PRS འབྲ། བྲེས། V;PRS སྣང་། སྣང་། V;PST སྦག། སྦག། V;PST དབྱུང་། ཕྱུངས། V;IMP བསྒྲུབ། བསྒྲུབ། V;FUT བསྐྱར། སྐྱོར། V;PST བརྔ། རྔོས། V;IMP བརྩེད། བརྩེད། V;PST འཁྱུས། འཁྱུས། V;PST ཡོག། ཡོག། V;FUT དགྲོལ། འགྲེལ། V;PST མཆི། མཆི། V;PST བསྣུབ། སྣུབ། V;PST ལྷག། ལྷག། V;FUT འགྲུབ། འགྲུབ། V;FUT བསྒྱུར། བསྒྱུར། V;PRS གཤིབ། གཤིབས། V;IMP འཁོབ། འཁོབ། V;FUT བྲུག། བྲུག། V;FUT ཟློ། ཟློས། V;PRS འཇོལ། འཇོལ། V;FUT ཐེགས། ཐེགས། V;PRS མནམ། ནོམ། V;PST འགྲོ། འགྲོ། V;FUT བཟོད། བཟོད། V;PST འདེང་། འདེང་། V;PST ཟུམ། ཟུམ། V;PRS བཞེད། བཞེད། V;FUT སྤུར། སྤུར། V;FUT ཉལ། ཉལ། V;PST གཏང་། བཏང་། V;PRS དབྱི། འབྱིད། V;PST མགུ། མགུ། V;FUT རྒུད། རྒུད། V;FUT བརྫེ། རྫེས། V;IMP བླུ། བླུས། V;IMP ངུར། ངུར། V;PRS ཁྱག། ཁྱག། V;FUT འཕྱུར། འཕྱུར། V;FUT དབུར། དབུར། V;FUT འདའ། འདའ། V;FUT ཚར། ཚར། V;FUT འབྲིད། བྲིད། V;PRS བསྒྱུར། བསྒྱུར། V;FUT བརྐུ། རྐུ། V;PST བཙལ། འཚོལ། V;IMP རིག། རིག། V;PST བརྟིབ། རྟིབ། V;PST གཏད། གཏོད། V;PST བསྒྲུན། བསྒྲུན། V;FUT བསྙོར། བསྙོར། V;FUT བསྟེན། བསྟེན། V;PRS དྲི། འདྲི། V;PST གཏོགས། གཏོགས། V;PST གཅུ། གཅུས། V;IMP བདུང་། བདུངས། V;IMP བསྐྱུང་། སྐྱུང་། V;PST མཐུད། མཐུད། V;PRS བཙམ། བཙམ། V;FUT འཐད། འཐད། V;PRS གྱེར། གྱེར། V;PRS བསྐོ། སྐོ། V;PST བརློང་། རློང་། V;PST འགོང་། འགོང་། V;FUT བདམ། བདམས། V;IMP བཟླུམ། ཟླུམ། V;PST བསྐུག། སྐུགས། V;IMP གཤེ། གཤེས། V;PRS སྤར། སྤོར། V;PST བམ། བམ། V;PST བསྐྱལ། བསྐྱལ། V;PRS བཙམ། འཚམ། V;PST བསག། གསོགས། V;IMP གཤིབ། གཤིབ། V;PST འཐེམ། འཐེམས། V;PRS བླུག། ལྡུག། V;PST བཀླུབ། ཀླུབ། V;PST རྒྱལ། རྒྱལ། V;FUT བསྙེལ། བསྙེལ། V;FUT འཛོམ། འཛོམས། V;PRS འཁུན། འཁུན། V;PRS སྤྲུག། སྤྲུགས། V;PRS བརྔུབ། བརྔུབ། V;FUT དབྲི། དབྲི། V;FUT དཀྲུག། དཀྲུག། V;PST བསྲེ། བསྲེ། V;FUT བལྟབ། བལྟབ། V;FUT འགྲུལ། འགྲུལ། V;PRS བསོད། བསོད། V;PRS གཅགས། ཆོགས། V;IMP བསྒབ། བསྒབ། V;FUT རྣག། རྣག། V;FUT དྲང་། དྲང་། V;FUT འཆུ། འཆུ། V;FUT འཐོན། འཐོན། V;FUT ཆོམ། ཆོམ། V;PRS བགྱང་། བགྱོངས། V;IMP གདས། གདས། V;PST གཟར། འཛར། V;PST འཁྱེར། ཁྱེར། V;PRS རོལ། རོལ། V;IMP འཁུལ། འཁུལ། V;FUT འཁྱིལ། འཁྱིལ། V;FUT འཕུལ། འཕུལ། V;FUT བསྐྱོར། སྐྱོར། V;PST ཞུལ། ཞུལ། V;FUT བཙག། བཙག། V;FUT ཕེབས། ཕེབས། V;PST མངའ། མངའ། V;PST དགོས། དགོས། V;PST ཀླས། ཀླས། V;PRS འཚེམ། འཚེམས། V;PRS འཁྱུག། འཁྱུགས། V;PRS བརྒྱོ། རྒྱོས། V;IMP འབྱོར། འབྱོར། V;FUT བྲེག། བྲེག། V;FUT བསྡད། བསྡད། V;PRS མྱུག། མྱུག། V;PRS བརྒྱལ། བརྒྱལ། V;PST མཚོན། མཚོན། V;PST བསྣུར། བསྣུར། V;FUT ཕྱིད། ཕྱིད། V;PST བཞུད། བཞུད། V;PST གདལ། གདལ། V;PRS མཆོང་། མཆོང་། V;FUT ཧལ། ཧལ། V;PST ཁྲོ། ཁྲོ། V;FUT འཕགས། འཕགས། V;FUT བཀྲབ། བཀྲབ། V;PST བསམ། སེམས། V;PST མྱག། མྱགས། V;PRS བསྔགས། བསྔགས། V;IMP འཇང་། འཇངས། V;PRS འཕོངས། འཕོངས། V;PST འཁྱིག། འཁྱིག། V;FUT བཤག། ཤོགས། V;IMP ཐེགས། ཐེགས། V;FUT དབབ། འབེབས། V;PST བཀྲལ། བཀྲལ། V;FUT མཐོང་། མཐོང་། V;PST བསྐམ། སྐོམས། V;IMP གཙི། གཙིས། V;IMP སྤྱོ། སྤྱོ། V;FUT ཡར། ཡར། V;PST ཐིང་། ཐིངས། V;PRS བསྙོར། བསྙོར། V;PRS བསྐུག། བསྐུགས། V;PRS མྱུལ། མྱུལ། V;PST དཔྱ། དཔྱ། V;PST སྦྲིད། སྦྲིད། V;FUT གཤོ། གཤོས། V;IMP གཏོགས། གཏོགས། V;FUT འཇེབས། འཇེབས། V;PST དཀུ། དཀུ། V;FUT མཛད། མཛད། V;PST བཙོག། བཙོག། V;FUT དྲག། དྲག། V;FUT བགྲུ། གྲུས། V;IMP གཤག། གཤོག། V;PST འཁྲེང་། འཁྲེང་། V;FUT བཅམ། བཅམ། V;FUT བསྡོང་། བསྡོངས། V;PRS དམིགས། དམིགས། V;IMP གུས། གུས། V;PST དཀྲུག། དཀྲུགས། V;IMP སྤྱུག། སྤྱུགས། V;PRS གཅག། གཅོག། V;PST གཏུགས། གཏུགས། V;PRS ཞུ། ཞུ། V;PRS འཁང་། འཁང་། V;FUT འཕྲིག། འཕྲིག། V;PST བྱུག། འབྱུག། V;PST འཚམ། འཚམ། V;FUT གཉུལ། གཉུལ། V;PST རི། རི། V;PRS གདག། འདོག། V;PST བསྙོན། སྙོན། V;PST འཕྲད། འཕྲད། V;PST གདལ། གདལ། V;PST ངུར། ངུར། V;PST གཤག། གཤག། V;FUT ཤིང་། ཤིང་། V;FUT མཆོད། མཆོད། V;PRS བལྡག། བལྡག། V;FUT དྲན། དྲན། V;PST གསད། བསད། V;PRS བརྟན། རྟོན། V;PST བསྐྱིལ། སྐྱིལ། V;IMP འཇའ། འཇའ། V;PST འབྲ། བྲེས། V;IMP གཡའ། གཡའ། V;PST བལྡག། ལྡག། V;PST བསྟེན། སྟེན། V;IMP བསྲུང་། བསྲུང་། V;FUT འཛེར། འཛེར། V;PRS འགྲན། འགྲན། V;PRS འབབ། བོབས། V;IMP སྤོབས། སྤོབས། V;PRS འབོག། འབོག། V;FUT བསྐྱོག། བསྐྱོག། V;FUT ཤབ། ཤབ། V;FUT བཞུད། བཞུད། V;PRS འཁུམ། འཁུམས། V;PRS དྲིལ། དྲིལ། V;IMP བསྡུ། སྡུས། V;IMP བསྙེན། སྙེན། V;PST བསྐྱུང་། བསྐྱུངས། V;PRS བསྡུམ། སྡུམས། V;IMP བསྒྲུང་། བསྒྲུང་། V;FUT བརྫུ། བརྫུ། V;FUT གཡར། གཡར། V;FUT འཆུམ། འཆུམ། V;FUT འཛེམ། འཛེམས། V;IMP བྲབ། ཕྲོབས། V;IMP བགད། བགད། V;FUT དགྱེལ། དགྱེལ། V;PRS བཤའ། བཤས། V;PRS འབད། འབད། V;FUT བཟློ། ཟློ། V;PST བགྱེད། འགྱེད། V;PST འབོག། འབོག། V;FUT འབྱོ། བྱོས། V;IMP སྦོ། སྦོ། V;PST འདྲུ། དྲུས། V;IMP སད། སད། V;PST འཕག། འཕག། V;PRS བརྔོན། རྔོན། V;PST བསླན། སློན། V;IMP གསུད། གསུད། V;PRS བསྣོག། བསྣོགས། V;PRS འཐུས། འཐུས། V;FUT བླག། བློགས། V;IMP འགྲས། འགྲས། V;FUT ལྷོད། ལྷོད། V;PST སྦྱང་། སྦྱངས། V;PRS བཀུ། བཀུ། V;FUT འཕྲིག། འཕྲིགས། V;PRS དངར། དངར། V;PRS བསྒྲུག། བསྒྲུག། V;FUT མངལ། མངལ། V;PRS བཀྲ། བཀྲ། V;PRS བསྒྲིབ། བསྒྲིབ། V;FUT འཇེབས། འཇེབས། V;PRS ཀེར། ཀེར། V;PST རངས། རངས། V;FUT བཀྱིག། བཀྱིག། V;FUT བརྟག། རྟོག། V;PST འཕུད། ཕུད། V;IMP བཤུག། བཤུག། V;FUT ཧྲིངས། ཧྲིངས། V;PST བསྒྲིན། སྒྲིན། V;PST གཅགས། འཇགས། V;PST སྦྲུ། སྦྲུ། V;FUT བསྡུ། བསྡུས། V;PRS འབྲིད། བྲིད། V;IMP འགོང་། འགོང་། V;PST བཤམ། བཤམས། V;PRS འཆུམ། འཆུམ། V;PST བརྒལ། བརྒལ། V;PRS བསྟིང་། བསྟིངས། V;PRS བརྣུ། རྣུར། V;IMP བྲ། བྲ། V;PRS སྟེག། སྟེགས། V;PRS བསུབ། བསུབས། V;PRS བསྲུབ། བསྲུབས། V;PRS བསྡིག། སྡིགས། V;IMP བགྱི། གྱིས། V;IMP བརྙས། བརྙས། V;IMP འཐེང་། འཐེང་། V;PST བསྡིག། བསྡིག། V;FUT འབོད། བོས། V;IMP འཇབ། འཇབས། V;PRS བསྟོད། བསྟོད། V;FUT ལྡར། ལྡར། V;FUT འཁྱོར། འཁྱོར། V;PRS འདར། འདར། V;PRS བཅེར། བཅེར། V;FUT འགལ། འགལ། V;FUT བསྐྲུ། སྐྲུས། V;IMP
c985db4e76f09315bba03d2facd892645e882d5f
449d555969bfd7befe906877abab098c6e63a0e8
/1892/CH2/EX2.1/Example2_1.sce
f0150cb29b0ce7c756628b037615ce9eba279daf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,432
sce
Example2_1.sce
// Example 2.1 clear; clc; close; format('v',6); // Given data Is=220;//in Ampere //For no load Vo=220;//in volt Io=6;//in Ampere wo=350;//in watt //From locked rotor test Vsc=125;//in volt Isc=15;//in Ampere Wsc=580;//in watt R1=1.5*1.2;//in Ω //Calculations Zeq=Vsc/Isc;//in Ω Req=Wsc/Isc^2;//in Ω Xeq=sqrt(Zeq^2-Req^2);//in Ω R1=1.5*1.2;//1.5 times more R2=Req-R1;//in Ω //assume X1=X2; Xeq=X1+X2=2*X2 X2=Xeq/2;//in Ω X1=X2;//in Ω r2=R2/2;//in Ω x2=X2/2;//in Ω cos_fio=wo/(Vo*Io);//unitless fi_o=acosd(cos_fio);//in degree Io=Io*expm(%i*-fi_o*%pi/180);//in Ampere(polar form) VAB=Vo-Io*[R1+r2/2+%i*(X1+X2/2)];//in volt Xo=abs(VAB)/abs(Io);//in ohm Xeq=2*Xo;//in ohm S=5/100;//slip Zf=Xo*expm(%i*%pi/2)*(r2/S+%i*X2/2)/(r2/S+%i*(X2/2+Xo));//in ohm Z1=R1+%i*X1;//in ohm Z2=6.4819+%i*3.416;//in ohm Zeq=Z1+Z2+Zf;//in ohm I1=Vo/Zeq;//in Ampere PF=cos(atan(imag(I1),real(I1)));//lagging Power factor disp(PF,"Power factor(lagging) : "); Vf=I1*Zf;//in volt I2f=Vf/(r2/S-%i*X2/2);//in Ampere Zb=Zf;//in ohm Vb=I1*Zb;//in Volt I2b=Vb/(r2/(2-S)+%i*X2);//in Ampere Pf=abs(I2f)^2*r2/S;//in watts Pb=abs(I2b)^2*r2/(2-S);//in watts Pm=(1-S)*(Pf-Pb);//in watts Wo=350;//in watts Pout=Pm-Wo;//in watts Pin=Vo*abs(I1)*PF;//in watts Eff=Pout/Pin*100;//in % disp(Eff,"Efficiency in % : "); //Answer in the book is wrong. Lots of mistake in the solution while calculating Zf.
487414c82e40342e44691fe11ef37dba5e0dedfe
449d555969bfd7befe906877abab098c6e63a0e8
/3850/CH45/EX45.1/Ex45_1.sce
3b1656f0ee576c5af3a9b5119a5d8362acbd9deb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
501
sce
Ex45_1.sce
//To Find the Electric Field which gives 1eV average energy to a conduction electron //Example 45.1 clear; clc; e=1.6*10^-19;//Charge on an electron in Coloumbs Eav=1*e;//Energy to the Conduction Electron in Joules l=4*10^-8;//Mean Free Path of Conduction Electrons in Copper E=Eav/(e*l);//Electric field which can give, on an average, 1eV to a conduction electron printf("Electric field which can give, on an average, 1eV to a conduction electron = %.1f*10^7 V/m",E*10^-7);
c2b139f85e81926ea61e716661eedfd74eed8443
449d555969bfd7befe906877abab098c6e63a0e8
/2081/CH5/EX5.10/Ex5_10.sce
a30c4d1e19b63de9577b959312c8dbc2bf015561
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
307
sce
Ex5_10.sce
N=312 K=7 Nspc=3 Ntcpc=N/K Ntcps=Ntcpc/Nspc//number of traffic channels per sector disp(Ntcps,'number of traffic channels per sector for System A') N1=312 K1=4 Nspc1=6 Ntcpc1=N1/K1 Ntcps1=Ntcpc1/Nspc1//number of traffic channels per sector disp(Ntcps1,'number of traffic channels per sector for System B')
8306b5ab6323476f4583af2e37ee276a979bde05
449d555969bfd7befe906877abab098c6e63a0e8
/3756/CH3/EX3.13/Ex3_13.sce
12d9e615376d27272f7835c9fbf7cdacedc9dc82
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
245
sce
Ex3_13.sce
clc // // // //Variable declaration lambdaa=5086*10**-7 //Wavelength s=29.73 //Specific rotation //Calculations delmu=((s*lambdaa)/180)*10**5 //Result printf("\n The Difference in RI is %1.1f *10**-5",delmu)
059768c95180330563f10738f05cc7cbfd54ffe7
66106821c3fd692db68c20ab2934f0ce400c0890
/test/jintgen/redef_inst_01.tst
01c7d1d94fde2ac542b4127dc7adac6c6cf3b77c
[]
no_license
aurelf/avrora
491023f63005b5b61e0a0d088b2f07e152f3a154
c270f2598c4a340981ac4a53e7bd6813e6384546
refs/heads/master
2021-01-19T05:39:01.927906
2008-01-27T22:03:56
2008-01-27T22:03:56
4,779,104
2
0
null
null
null
null
UTF-8
Scilab
false
false
237
tst
redef_inst_01.tst
// @Harness: verifier // @Purpose: "Test for redefinitions of instructions" // @Result: "RedefinedInstr @ 11:15" architecture redef_inst_01 { operand-type A[5]: int [0,31]; instruction "I" { } instruction "I" a: A { } }
594bfd3756d96ffece6e39b1304fd7260d0effac
449d555969bfd7befe906877abab098c6e63a0e8
/1409/CH5/EX5.12/5_12.sce
6d11d4e1c24fdb02018bbeeafa68dfdb04d5142e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
496
sce
5_12.sce
clc; //page no 5-23 //Example 5.12 //Given s(t)=10*sin[(5.7*10^8*t)+5*sin(12*10^3*t)] //Comparing it with standard FM: s(t)= Ac(wc*t+beta*sin(wm*t)) Ac=10; wc=5.7*10^8; wm=12*10^3; beta1=5; fc=(wc/(2*%pi))*10^(-6); disp(+'MHz',fc,'Carrier frequency='); fm=(wm/(2*%pi))*10^(-3); disp(+'kHz',fm,'Modulating frequency='); disp(beta1,'Modulation index='); fd=beta1*fm; disp(+'kHz',fd,'Frequency deviation='); R=100;//in ohms p=[(Ac/sqrt(2))^2]/R; disp(+'W',p,'Power dissipated=');
623eb840a27bb2bb3416cf40e85fe9480ef236bc
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.2/Unix/scilab-2.2/macros/auto/csim.sci
6c15c79067abf152151837174be1f5be5b8a705f
[ "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
2,800
sci
csim.sci
function [y,x]=csim(u,dt,sl,x0) //Syntax: // [y [,x]]=csim(u,dt,sl,[x0]) // simulation of the controlled linear system sl. // sl is assumed to be a continuous-time system. // u is the control and x0 the initial state. // //u can be: // - a macro // [inputs]=u(t) // - a list // list(ut,parameter1,....,parametern) such that // inputs=ut(t,parameter1,....,parametern) // - the chracter string 'impuls' for impulse response calculation // (here sl is assumed SISO without direct feedthrough and x0=0) // - the character string 'step' for step response calculation // (here sl is assumed SISO without direct feedthrough and x0=0) //dt is a vector of instants with dt(1) = initial time // that is: x0=x // dt(1) // //y matrix such that: // y=[y y ... y ] // dt(1) dt(2) dt(n) //x matrix such that: // x=[x x ... x ] // dt(1) dt(2) dt(n) // //See also: // dsimul flts ltitr rtitr ode impl //! [lhs,rhs]=argn(0) // if rhs<3 then error(39),end //-compat type(sl)<>15 retained for list/tlist compatibility if type(sl)<>15&type(sl)<>16 then error(56,1),end select sl(1) case 'lss' then , case 'r' then sl=tf2ss(sl) else error(97,1), end; if sl(7)<>'c' then error(93,1),end // [a,b,c,d]=sl(2:5) [ma,mb]=size(b); // imp=0;text='if t=0 then y=0, else y=1,end' // select type(u) case 10 then // if mb<>1 then error(95,1);end; if part(u,1)='i' then imp=1; if norm(d,1)<>0 then warning('direct feedthrough (d) <> 0;set to zero'); d=0*d; end; end; deff('[y]=u(t)',text);comp(u); case 11,comp(u) case 13, case 15 then uu=u(1), if type(uu)=11 then comp(uu), u(1)=uu, end else error(44,2) end; // if rhs=3 then x0=sl(6),end if imp=1 then x0=0*x0,end nt=prod(size(dt));x=0*ones(ma,nt) [a,v,bs]=bdiag(a,1);b=v\b;c=c*v;x0=v\x0 // if type(u)<>15 then deff('[ydot]=%sim2(%tt,%y)','ydot=ak*%y+bk*u(%tt)');comp(%sim2) ut=ones(mb,nt);for k=1:nt, ut(:,k)=u(dt(k)),end else %sim2=u tx=' ';for l=2:size(u), tx=tx+',%'+string(l-1);end; deff('[ydot]=sk(%tt,%y,u'+tx+')','ydot=ak*%y+bk*u(%tt'+tx+')'); comp(sk) %sim2(0)=sk;u=u(1) deff('[ut]=uu(t)',... ['['+part(tx,3:length(tx))+']=%sim2(3:'+string(size(%sim2))+')'; 'ut=ones(mb,nt);for k=1:nt, ut(:,k)=u(t(k)'+tx+'),end']) comp(uu); ut=uu(dt); end; //simulation k=1; for n=bs', kk=k:k+n-1 ak=a(kk,kk) bk=b(kk,:) nrmu=maxi([norm(bk*ut,1),norm(x0(kk))]) if nrmu > 0 then atol=1.d-7*nrmu;rtol=atol/100 x(kk,:)=ode('adams',x0(kk),dt(1),dt,rtol,atol,%sim2) if imp=1 then x(kk,:)=ak*x(kk,:)+bk*ut,end end; k=k+n end; if imp=0 then y=c*x+d*ut,else y=c*x,end if lhs=2 then x=v*x,end
119822816c7f552b2b2e945c0d4762a957620f95
449d555969bfd7befe906877abab098c6e63a0e8
/876/CH2/EX2.4/Ex2_4t.txt
c159d99b9be4f2a873e74363d3be102a7b3f56d0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
266
txt
Ex2_4t.txt
//caption:Find limiting error //Ex2.4 clc clear close V1=500//referance reading of voltmeter(in V) V2=150//Voltage at which limiting error to be calculated(in V) Ar=0.015//magnitude of accuracy limit dA=Ar*V1 er=(dA/V2)*100 disp(er,'limiting error(in %)=')
c830f7b97fb68fdb18f96ed8bbd381572bd5823b
449d555969bfd7befe906877abab098c6e63a0e8
/1223/CH13/EX13.1/Ex13_1.sce
4f09099591196500df92311069026f92fc11cdc4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
413
sce
Ex13_1.sce
clear; clc; //Example 13.1 V1=15;//positive supply voltage V2=-15;//negative supply voltage Veb12=0.6; Vbe11=0.6; Rs=40; Iref=(V1-V2-Veb12-Vbe11)/Rs; printf('\nreference current=%.2f mA\n',Iref) Ic10=19; Ic1=Ic10/2; printf('\nIc1=Ic2=Ic3=Ic4= %.3fmicroA\n',Ic1) Ic1=Ic1*0.001;//mA Vbe7=0.6; Vbe6=0.6; Ic6=Ic1; R2=1; Vc6=Vbe7+Vbe6+Ic6*R2+V2; printf('\nvoltage at collector of Q6=%.2f V\n',Vc6)
5ae187d56a88d82fb8d202122a9d580a14177c11
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH4/EX4.35/Ex4_35.sce
d3e35916775ff830b2f2cfa8db24301ea9619386
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,148
sce
Ex4_35.sce
clc; V=230;//supply current Pout=15000;//output voltage Ra=0.2;//armature circuit resistance Rse=0.1;//resistance of series field winding Nf=1000;//shunt field turns per pole //Data for magnetization curve at 1500 rpm If_=[0 0.2 0.4 0.6 0.8 1.02 1.15 1.32 1.56 1.92 2.4];//field current at 1500 rpm Ea=[6 40 80 120 160 200 220 240 260 280 300];//counter emf at 1500 rpm and respective field current plot(If_,Ea);//Magnetization curve at 1500 rpm Ia_1=4;//armature current at rated voltage and rated load Ia_2=70;//armature current at 1200rpm //At no load Ea_=V-Ia_1*Ra;//counter emf //field current required for Ea_(ie.229.2 V),from O.C.C. is 1.23 A. //At load Ea__=V-Ia_2*(Ra+Rse);//counter emf at 1200 rpm Ea___=209*(1500/1200);//Ea at speed of 1500 rpm //Field current corresponding to Ea___(ie.261.25 V),from O.C.C. is 1.575 A. //Total D-axis mmf per pole=Nf*If+Ns*Is If=1.23;//field current at 229.2 V is 1.23 A If1=1.23;//field current at 261.25 V is 1.575 A //1.575*1000=1.23*1000+Ns*(70) Ns=(0.345*1000)/70;//series field turns printf('For long-shunt connection, series field turns is equal to %f.',round(Ns));
28dc68541b881bd8dc483c571bfb072344cfc593
449d555969bfd7befe906877abab098c6e63a0e8
/1364/CH8/EX8.4.1/8_4_1.sce
9a75f8c4c8794b0f3351f31cff292c6c81ef1aca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
294
sce
8_4_1.sce
clc //initialisation of variables g= 981 //cm/sec^2 d= 0.1 //mm v= 35 //centi-stokes d1= 10 //mm d2= 1 //mm //CALCULATIONS u= g*d^2*100/(18*v*d1^2) ub= (d2/d)^2*u //RESULTS printf (' rate for diameter 0.1 mm= %.4f cm/sec',u) printf (' \n rate for diameter 1 mm= %.2f cm/sec',ub)
b5d3b7805d608a2ca05592a429b892c62ec35d94
449d555969bfd7befe906877abab098c6e63a0e8
/842/CH5/EX5.9/Example5_9.sce
f03ae023fdabedefa490e1c176507ecb8f5bd86f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
sce
Example5_9.sce
//clear// //Example 5.9:Time Expansion Property of DTFT clear; close; clc; n = -1:11; x = [0,1,2,1,2,1,2,1,2,1,2,0,0]; y = [1,1,1,1,1]; y_2_n =zeros(1,2*length(y)+1); y_2_n(1:2:2*length(y)) = y; y_2_n = [0 y_2_n 0]; y_2_n_1 = [0,y_2_n(1:$-1)]; x_r = y_2_n+2*y_2_n_1; y = [0,y,zeros(1,7)]; figure subplot(4,1,1) plot2d3('gnn',n,y) title('y[n]') subplot(4,1,2) plot2d3('gnn',n,y_2_n) title('y(2)[n]') subplot(4,1,3) plot2d3('gnn',n,y_2_n_1) title('y(2)[n-1]') subplot(4,1,4) plot2d3('gnn',n,x) title('x[n]=y(2)[n]+2*y(2)[n-1]')
b0c2df79c40d30ff575ee9923df927c51eabe8d5
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH6/EX6.1/example6_1.sce
a9c77873fb7edd845527c07d2fe62b5244982dc3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
197
sce
example6_1.sce
//Chapter 6 //Example 6_1 //Page 109 clear;clc; kw=300; pf=0.6; kva=kw/pf; p=kva-kw; printf("kVA = %0.f kW \n\n", kva); printf("Increased power supplied by the alternator = %0.f kW \n\n", p);
83940a49d80dc7825f0a7c32ca5675922d9388c2
4246cbb6bfbd96e60074b607df96d71e7b4ee070
/opp6code/11g_emplu.tst
9d9af94ef26832bbc7e262b8ab28714b89faf0cb
[]
no_license
thangduong3010/PL-SQL
bc0fa5c3400e46acc0ab63156573590935607b5d
1415772c87750bd30625eacf2bd116fb7e0c0aae
refs/heads/master
2020-05-22T06:57:54.352234
2016-12-26T04:47:27
2016-12-26T04:47:27
39,061,697
1
3
null
null
null
null
UTF-8
Scilab
false
false
895
tst
11g_emplu.tst
/* Compare performance of repeated querying of data to caching in the PGA (packaged collection) and the new Oracle 11g Result Cache. To compile and run this test script, you will first need to run the following script. Note that to compile the my_session package and display PGA usage statistics, you will need SELECT authority on: sys.v_$session sys.v_$sesstat sys.v_$statname Author: Steven Feuerstein */ @@plvtmr.pkg @@mysess.pkg @@11g_emplu.pkg @@11g_emplu_compare.sp SET SERVEROUTPUT ON BEGIN test_emplu (100000); /* With 100000 iterations: PGA before tests are run: session PGA: 2057168 Execute query each time Elapsed: 5.65 seconds. Factored: .00006 seconds. session PGA: 1139664 Oracle 11g result cache Elapsed: .3 seconds. Factored: 0 seconds. session PGA: 1139664 Cache table in PGA memory Elapsed: .12 seconds. Factored: 0 seconds. session PGA: 1336272 */ END; /
66eea5c6af687c9f27e27499585c190bc1697e37
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/GR3.prev.tst
c07baebf163dbf73e3ba40e57479975b3c9cc848
[ "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
165
tst
GR3.prev.tst
(" - 48 + 16*x + 96*x^2 + 256*x^3 + 256*x^4 - 16*y^4 - 112*z - 64*z^2").getGrowingFactors (" - 8 + 8*x + 24*x^2 + 32*x^3 + 16*x^4 - 16*y^4 - 24*z - 16*z^2") = null
1a7de2682abff023890372a8192a4ff782104560
449d555969bfd7befe906877abab098c6e63a0e8
/3689/CH2/EX2.7/2_7.sce
7fe090746548fbbb1431a5e02f28b0e1b9104e40
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
524
sce
2_7.sce
//// //Variable Declaration Part d h1 = 1000.0 //initial Altitude of cloud, m hf = 3500.0 //Final Altitude of cloud, m p1 = 0.802 //Pressure at h1, atm pf = 0.602 //Pressure at hf, atm T1 = 288.0 //Initial temperature of cloud, K cp = 28.86 //Specific heat of air, J/mol.K R = 8.314 //Gas constant, J/mol.K //Calculations Tf = exp(-(cp/(cp-R)-1)/(cp/(cp-R))*log(p1/pf))*T1 //Results printf("\n Final temperature of cloud %4.1f K",Tf)
cf8aa9606e8f537ca9ae6d01f3e051c78bd7632b
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set7/s_Electronics_Devices_And_Circuit_Theory_R._L._Boylestad_And_L._Nashelsky_69.zip/Electronics_Devices_And_Circuit_Theory_R._L._Boylestad_And_L._Nashelsky_69/CH7/EX7.17/7_17.sce
7957522318c26a96223c349a4a9e89665ff5b897
[]
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
196
sce
7_17.sce
errcatch(-1,"stop");mode(2);; ; Id_on = 4*10^(-3); Vgs_on = 6; Vgs_th = 3; Vgs = Vgs_on; Vdd = 2*Vgs; Vds = Vgs; Id = Id_on; Rd = (Vdd-Vds)/Id; disp(Rd,'Rd(Ohms) = '); exit();
dd842aa589706ecc13203638095d73d7907149c8
449d555969bfd7befe906877abab098c6e63a0e8
/2138/CH4/EX4.1/ex_4_1_a.sce
f240167149f74c33ff7469d4ce8a1b41b99b7191
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
182
sce
ex_4_1_a.sce
//Example 4.1.a // resistance clc; clear; close; //given data : I=11; // current in A V1=55; // voltage in V V2=220; // voltage in V V=V2-V1; R=V/I; disp(R,"resistance,R(ohm) = ")
df916c7afcb3efc57a8912bc562b4a3d50501edd
1573c4954e822b3538692bce853eb35e55f1bb3b
/DSP Functions/allpassrateup/test_6.sce
a1ad7430d918065974a0c7a6ee382fcd4028abfb
[]
no_license
shreniknambiar/FOSSEE-DSP-Toolbox
1f498499c1bb18b626b77ff037905e51eee9b601
aec8e1cea8d49e75686743bb5b7d814d3ca38801
refs/heads/master
2020-12-10T03:28:37.484363
2017-06-27T17:47:15
2017-06-27T17:47:15
95,582,974
1
0
null
null
null
null
UTF-8
Scilab
false
false
204
sce
test_6.sce
// Test #5 :For input of type double exec('./allpassrateup.sci',-1); [n,d]=allpassrateup(4.8); //N must be an integer //at line 37 of function allpassrateup called by : //[n,d]=allpassrateup(4.8);
de8a101eecc2a786b343c243ec550650591e5425
449d555969bfd7befe906877abab098c6e63a0e8
/281/CH11/EX11.11/example11_11.sce
2583f265caa5b16d6b770e712a01c18f156cbe81
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
530
sce
example11_11.sce
disp('chapter 11 ex11.11') disp('given') disp('design a bandpass filter to have f1=10.3kHz f2=10.9kHz") f1=10300 f2=10900 disp("select C1=C2=1000pF") C1=1000*10^(-12) C2=1000*10^(-12) disp("fo=sqrt(f1*f2)") fo=sqrt(f1*f2) disp('Hz',fo) disp("R5=R6=1/(2*%pi*C1*f1)") R6=1/(2*%pi*C1*f1) R5=R6 disp('ohms',R6) disp("Use 15kohm std value") R5=15000 disp("R1=R3=R4=R7=R8=R6=R5=15kOhm") disp("Q=fo/(f2-f1)") Q=fo/(f2-f1) disp(Q) R1=R5 disp("R2=R1*(2Q-1)") R2=R1*(2*Q-1) disp('ohms',R2) disp("use 511kohm+/- 1%")
1627b3fe56bf7c661d69181ab98f05b5db333f38
449d555969bfd7befe906877abab098c6e63a0e8
/3363/CH3/EX3.2/Ex3_2.sce
73337b5a51ee3d664f96b74907471082a891f847
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
232
sce
Ex3_2.sce
//Example 3.2, Page 80 clc h=6.63*10^-34//Joule-sec v=1.635*10^3//m/s M=4*10^-3//in kg/mole No=6.02*10^23//atom/mole m=M/No printf("\n Mass of Helium atom is %e kg",m) lambda=h/(m*v) printf("\n De broglie wavelength is %e m",lambda)
99d427fc7d3ab3457da0863cca6817165bfb8f65
449d555969bfd7befe906877abab098c6e63a0e8
/2939/CH8/EX8.5/Ex8_5.sce
aba7ac4051a737922b9cfa300d2feb578fefeeae
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
338
sce
Ex8_5.sce
// Ex8_5 clc; // Given: ma1=3600;// counts in 3 min mb1=2400;// counts in 5 min mab1=9900;// counts in 6 min // Solution: ma=ma1/3; mb=mb1/5; mab=mab1/6; t1=(ma+mb-mab)/(mab^2-ma^2-mb^2); t2=t1*60;// in seconds t=t2*1000000;// in microseconds printf("The resolving time of the given system in microseconds is = %f",t)
2f3c8e584217e2b50061372e364b4c67cfeea564
244971ae8af51184d278cdc2be1c80775413adae
/SSSFiberLinear.sci
27f6f2d0a06ce51dd2e2a827dc5ca544fef50420
[]
no_license
MSCA-SIMFREE/748767
5879f1f139b608c7cd2f1bd62325b281c9c1e7d1
4726206e514f1e47e939e73b9339c056057866db
refs/heads/master
2020-12-27T15:21:13.646362
2020-02-03T11:40:00
2020-02-03T11:40:00
237,951,088
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,759
sci
SSSFiberLinear.sci
// The code was developed under Horizon2020 Framework Programme // Project: 748767 — SIMFREE function Out=SSSFiberLinear(In,Fiber) // Linear Fiber // // Calling Sequence // Out=SSSFiberLinear(In,Fiber) // // Parameters // In : Optical Input // Fiber : Fiber Parameters list (Length [km], Attenuation [dB/km], Dispersion [ps/nm/km], Dispersion Slope [ps/nm^2/km]) // Out : Optical Output // // Description // This is a model for linear propagation in fiber that is not polarization dependent, i.e. signals propagate the same in both the X and the Y polarizations. // The Dispersion Slope describes the change of the dispersion away from the band center. // The model employs a frame of reference moving at the group velocity of signals at the center of the optical spectrum; i.e. signals at the center of the optical spectrum experience zero propagation delay. // global MFR MLA; [lhs,rhs]=argn(0); select rhs case 0 then error("Expect at least one argument"); case 1 then Fiber=list(50,0.2,17,0.085); z_km=Fiber(1); a_dBkm=Fiber(2); D_psnmkm=Fiber(3); S_ps2nmkm=Fiber(4); end z_km=Fiber(1); a_dBkm=Fiber(2); D_psnmkm=Fiber(3); S_ps2nmkm=Fiber(4); c = 299792458; L = 1e-9*MLA; z = 1e3*z_km; alpha = log(10)*1e-4*a_dBkm; D =1e-6 * D_psnmkm; S = 1e3 * S_ps2nmkm; betap(1) = 0; betap(2) = -2*%pi*D*L.^2/c; betap(3) =2*%pi* (S*L.^4+2*D*L.^3)/(c^2); w =1e9*MFR; operL = -alpha/2; for ii = 1:length(betap) operL = operL - %i*betap(ii)*w.^ii/factorial(ii); end Out(:,1)= exp(operL*z).*In(:,1); Out(:,2)= exp(operL*z).*In(:,2); endfunction
449856f204af580b789df8a5bbffd34c084ba433
449d555969bfd7befe906877abab098c6e63a0e8
/416/CH13/EX13.3/example13_3.sce
454a2f6cdc9460950ecbe1c7717d0f121b5be9c1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
994
sce
example13_3.sce
clc clear disp('example 13.3') pa1=20000 ;pa2=30000 //kva in in 3 ph power va1=11 ;va2=11 //voltage in kilo volts pt1=20000 ;pt2=30000//kva of 3 ph transformer vpt1=11 ;vpt2=11//voltage of primery of transformer vst1=132 ;vst2=132//voltage of secondary of transformer xg1=0.5 ;xg2=0.65 //reactance of generator xt1=0.05 ;xt2=0.05 //reactance of transformer with their own kva pb=pa2;vbg=va2;vbt=vpt2;//assumeing base quantoties xtn1=xt1*pb/pa1 ;xtn2=xt2*pb/pa2 //transformer reactance with new base xgn1=xg1*pb/pa1;xgn2=xg2*pb/pa2 xn1=xtn1+xgn1;xn2=xtn2+xgn2 //reactancee up to fault from each generator xn=(xn1*xn2)/(xn1+xn2) //equalent reactance between generator and fault sckva=pb/xn ; //short circuit KVA pf=50000 //fault kva rating xf=pb/pf //reactance from fault xx=xf*xn1/(xn1-xf) x=xx-xn2 //reactance to be added bi=(vst1^2)*1000/(pb) xo=x*bi printf(" reactance to be added in circuit of generator 2 have %.1f p.u. \n reactance in ohms %.1f",x,xo)
ac1216fbb9f6aafee7362a94f458646bdb7b4619
449d555969bfd7befe906877abab098c6e63a0e8
/1739/CH2/EX2.8/Exa2_8.sce
d39fedf02085087cc497fd34ee36cb98a3d8bb13
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
564
sce
Exa2_8.sce
//Exa 2.8 clc; clear; close; //Given data : d=60;//in um a=d/2;//in um delta=1;//relative refractive index difference in % lambda=0.80;//in um n1=1.5;//Unitless //Part (a) //Formula : v=2*%pi*a*n1*NA/lambda; //NA=sqrt(2*delta) v=2*%pi*a*n1*sqrt(2*delta/100)/lambda;//Normalized frequency disp(v,"Normalized frequency for the fiber : "); //Part (b) disp("Only the modes with cut-off v numbers below this value will propagate."); N=v^2/2;//No. of modes supported disp(round(N),"Number of modes supported : "); //Note : Answer in the book is wrong.
a3ad26998a6e605f1f0af435493092371aba0930
ac1f8441b0319b4a391cd5a959bd3bb7988edfa7
/data/news2015/news2015/SplitsNEWS15/ChEn/chen.7.tst
9ff38220a8ebea4e34c2515e3971dc031e8eb957
[ "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
97,906
tst
chen.7.tst
丁 吉 万 d i n g i v a n 丁 宁 d i n n i n g 丁 格 尔 代 因 d i n g e l d e i n 万 格 w a n g e r 万 纳 w a n n e r 丘 尔 c u l l e 丘 尔 k e w e r 丘 恩 c h u n n 丘 恩 c u e n 丘 恩 c u n e 丘 普 c h u p p 丘 纳 德 c u n a r d 丘 萨 克 c u s a c k 丹 皮 尔 d a m p i e r 丹 纳 d a n n e r 丹 罗 伊 特 d a n n r e u t h e r 丹 顿 d a i n t o n 丹 顿 d a n t o n 丹 齐 克 d a n z i g 乌 奇 o u c h i 乌 姆 弗 拉 维 尔 u m f r a v i l l e 乌 姆 赫 弗 u m h o e f e r 乌 尔 德 o u l d 乌 尔 斯 坦 u l l s t e i n 乌 尔 曼 u h l m a n n 乔 j o 乔 j o e 乔 伊 西 j o i c e y 乔 基 尔 森 j o c h e l s o n 乔 姆 利 c h o l m e l e y 乔 姆 利 c h o m l e y 乔 德 雷 尔 j o d r e l l 乔 纳 c h a w n e r 乔 纳 j o n a h 亚 历 克 a l e c 亚 历 克 a l e c k 亚 历 克 西 娅 a l e x i a 亚 德 y a r d e 亚 莫 林 斯 基 y a r m o l i n s k y 亨 宁 h e n n i n g 亨 尼 根 h e n n i g a n 亨 廷 顿 h u n t i n g t o n 亨 斯 利 h e n s l e e 亨 斯 利 h e n s l e i g h 亨 特 g e n t 亨 特 h u n t 亨 特 h u n t e r 亨 里 h e n r e y 亨 里 厄 特 h e n r i o t 伊 丁 斯 i d d i n g s 伊 什 沃 i s h w e r 伊 佐 i z z o 伊 克 林 i k e r r i n 伊 姆 勒 i m l e r 伊 娃 e v a 伊 尔 丁 y i e l d i n g 伊 巴 拉 y b a r r a 伊 弗 雷 姆 e p h a r a i m 伊 德 尔 e a d e r 伊 德 尔 e e d l e 伊 斯 雷 尔 i s r a e l 伊 普 森 i p s e n 伊 格 尼 科 i g n i c 伊 泽 尔 e z e l l 伊 泽 尔 e z e l l e 伊 特 伯 格 y t t e r b e r g 伊 瑟 e a t h e r 伊 瓦 拉 i b a r r a 伊 瓦 特 e v a t t 伊 瓦 诺 斯 基 e v a n o s k i 伊 莱 亚 e l i a 伊 莱 扎 e l i z a 伊 莱 泽 e l i z u r 伊 萨 马 尔 i t h a m a r 伊 迪 克 e d i c k 伊 里 特 e e r i t t 伍 尔 加 w o o l g a r 伍 尔 德 v o o r d e 伍 尔 芬 登 w o o l f e n d e n 伍 尔 里 奇 w o o l r i c h 伍 德 森 w o o d s o n 伍 德 沃 德 w o o d w a r d 伍 德 福 德 w o o d f o r d 伍 顿 w o o t o n 伍 顿 w o o t t o n 休 伊 h u e y 休 伊 h u g h e y 休 伊 h u i e 休 塞 尔 h e u s e l 休 姆 h u l m e 休 姆 h u m e 休 恩 梅 克 s c h o o n m a k e r 休 斯 曼 h u e s m a n n 休 曼 h u g h m a n 休 曼 h u m a n 休 曼 s h e w m a n 休 曼 s u m a n 休 珀 h u e p e r 伦 尼 l e n n i e 伦 尼 l u n n e y 伦 尼 r e n n e 伦 尼 r e n n i e 伦 托 宁 l e n t o n e n 伦 普 金 l u m p k i n 伦 达 特 r e n d a l t 伯 丁 纳 尔 b o d i n n a r 伯 伊 德 尔 b o y d e l l 伯 伊 登 b o y d e n 伯 伦 巴 克 b o l l e n b a c h 伯 克 哈 特 b u r c k h a r d 伯 克 哈 特 b u r k h a r d 伯 克 哈 特 b u r k h a r d t 伯 克 哈 特 b u r k h a r t 伯 克 托 尔 德 b e r c h t o l d 伯 克 特 b u r k e t 伯 克 特 b u r k e t t 伯 克 纳 姆 b o k e n h a m 伯 利 伯 b o l i b a u g h 伯 南 诺 b o n a n n o 伯 基 b e r k e y 伯 基 b u e r k i 伯 基 b u r k e e 伯 基 厄 斯 b o c k i u s 伯 奇 纳 尔 b u r c h e n a l 伯 奇 纳 尔 b u r c h i n a l 伯 奇 纳 尔 b u r c h n a l l 伯 宁 b o n i n e 伯 尔 斯 b o l e s 伯 尔 斯 b o l l e s 伯 尔 斯 b o l s 伯 尔 特 b o l d t 伯 尔 特 b o l t 伯 尔 特 b o l t e 伯 尼 奥 尔 b o n i o r 伯 恩 巴 克 b e r n b a c h 伯 恩 斯 蒂 尔 b o n e s t e e l 伯 扬 b o y a n 伯 斯 b u r s e 伯 斯 b y r c e 伯 杜 安 b e a u d o i n 伯 林 格 b o e h r i n g e r 伯 根 b e r g a n 伯 根 b e r g e n 伯 根 b o g a n 伯 根 b o g e n 伯 根 b o g g a n 伯 根 b o r g e n 伯 根 b u r g o n 伯 格 斯 托 勒 b u r g s t a l l e r 伯 琴 斯 基 b o c h e n s k i 伯 福 特 b e a u f o r t 伯 罗 曼 b o r r o w m a n 伯 耶 b o y e r 伯 肯 黑 德 b i r k e l a n d 伯 让 b e a u j o n 伯 赫 特 b o r c h e r d t 伯 达 尼 尔 b e r d a n i e r 佐 勒 z o l l e r 佐 特 z o e t e 佩 内 洛 p e n e l l o 佩 利 尼 p e l l i n i 佩 因 顿 p a i n t o n 佩 因 顿 p a y n t o n 佩 塞 克 p e s e c k 佩 尔 兹 曼 p e l z m a n 佩 廷 吉 尔 p e t t i n g i l l 佩 恩 p a y n 佩 恩 p a y n e 佩 恩 p e n n 佩 滕 吉 尔 p e t t e n g i l l 佩 特 曼 p a t e m a n 佩 特 林 p e t r i n 佩 珀 p e p p e r 佩 珀 马 斯 特 p a p e r m a s t e r 佩 登 p e d e n 佩 罗 特 p e r o t t 佩 罗 特 p e r r o t 佩 罗 特 p e r r o t t 佩 蒂 p a t e y 佩 蒂 p e t t e e 佩 蒂 p e t t i e 佩 蒂 p e t t y 佩 西 布 里 奇 p e t h y b r i d g e 保 利 森 p a u l i s o n 保 罗 p a o l o 保 罗 p a u l 克 伦 普 c r u m p 克 兰 伯 恩 c r a n b o r n e 克 兰 佩 尔 k l e i n p e l l 克 兰 克 c r a n k 克 兰 霍 尔 兹 k l e i n h o l z 克 内 布 尔 k n e b e l 克 利 文 格 c l e a v e n g e r 克 利 文 格 c l e a v i n g e r 克 利 曼 k l e e m a n 克 利 曼 k l i m a n 克 利 蒙 兹 c l y m o n d s 克 努 扬 茨 k n u y a n t s 克 劳 c r a w 克 劳 德 尔 c l a u d e l 克 劳 斯 科 普 夫 k r a u s k o p f 克 劳 斯 科 普 夫 k r u s k o p f 克 劳 泽 c l a u s e r 克 劳 泽 c l o u s e r 克 劳 迪 厄 斯 c l a u d i u s 克 勒 格 c l u r g 克 卢 德 k l u d 克 卢 特 c l u e t t 克 卢 特 c l u t e 克 拉 丽 莎 c l a r i s s a 克 拉 丽 贝 尔 c l a r i b e l 克 拉 伊 切 克 k r a j i c e k 克 拉 克 尔 c r a c k e l 克 拉 斯 特 罗 c r a s t r o 克 拉 普 顿 c l a p t o n 克 拉 滕 伯 格 c l a t t e n b u r g 克 拉 珀 顿 c l a p p e r t o n 克 拉 米 什 k r a m i s h 克 拉 芬 c l a f i n 克 拉 赖 娜 c l a r i n a 克 斯 特 k e r s t 克 朗 肖 c r o n s h a w 克 朗 霍 尔 姆 k r o n h o l m 克 林 扎 c r e a n z a 克 林 斤 k l i n z i n g 克 林 根 斯 坦 k l i n g e n s t e i n 克 林 格 尔 k l i n g e l 克 洛 因 c l o y n e 克 洛 弗 c l o v e r 克 洛 茨 k l o t s 克 洛 茨 k l o t z 克 纳 布 尔 k n a b l e 克 罗 克 韦 尔 c r o c k w e l l 克 罗 嫩 伯 格 k r o n e n b e r g 克 罗 嫩 伯 格 k r o n e n b e r g e r 克 罗 斯 克 里 c r o s k e r y 克 罗 斯 菲 尔 德 c r o s f i e l d 克 罗 斯 韦 特 c r o s t h w a i t 克 罗 斯 韦 特 c r o s t h w a i t e 克 罗 珀 c r o p p e r 克 莱 文 c l e v e n 克 莱 沃 斯 c l e w o t h 克 赖 斯 伯 格 k r e i s b e r g 克 里 利 c r i l l e y 克 里 夫 林 c r e v e l i n g 克 里 奇 洛 c r i c h l o w 克 里 奇 洛 c r i t c h l o w 克 里 托 尔 c r i t t a l l 克 里 斯 特 尔 c r i s t a l 克 里 斯 特 尔 c r s t a l 克 里 斯 特 洛 c h r i s t e l o w 克 里 斯 琴 森 c h r i s t i a n s e n 克 里 斯 科 c h r i s c o 克 里 斯 蒂 c h r i s t i e 克 里 斯 蒂 c h r i s t y 克 里 斯 蒂 c h r y s t i e 克 里 斯 蒂 安 娜 c h r i s t i a n a 克 里 根 c r e e g a n 克 里 根 k e r i g a n 克 里 根 k e r r i a n 克 里 森 c h r i s t e n 克 里 森 c r e a s o n 克 里 茨 c r i t z 克 里 香 c r i s h a m 克 隆 德 k l u n d e r 克 雷 加 文 c r a i g a v o n 克 雷 勒 k r o e h l e r 克 雷 姆 尔 k r e m l 克 雷 顿 c r e t o n 克 鲁 伊 什 k e r r u i s h 克 鲁 克 斯 顿 c r o o k s t o n 克 鲁 格 k r u e g e r 克 鲁 格 k r u g 克 鲁 格 k r u g e r 克 鲁 潘 斯 基 k r u p a n s k y 克 龙 c r o n 克 龙 c r o n e 兰 l a n 兰 l a n g 兰 兹 曼 l a n d s m a n 兰 多 尔 特 l a n d o l t 兰 巴 赫 r a m b a c h 兰 布 伊 l a m b o o y 兰 德 斯 l a n d e r s 兰 德 斯 l a n d e s 兰 格 雷 布 l a n d g r e b e 兰 梅 德 l a n g m a d e 兰 梅 德 l a n g m a i d 兰 森 l a n g s o n 兰 森 r a n s o n 兰 米 尔 l a n g m u i r 兰 迪 斯 l a n d i s 内 戈 拉 n e g o l a 内 文 森 n e v i n s o n 内 斯 廷 根 n e s t i n g e n 内 斯 比 特 n e s b i t 内 斯 比 特 n e s b i t t 内 格 勒 n a e g e l e 内 格 里 n e g r i 内 森 n a s o n 内 森 n a t h a n 内 森 n e s e n 内 森 n e s s e n 内 特 尔 希 普 n e t t l e s h i p 内 特 尔 斯 n e t t e l s 内 特 尔 斯 n e t t l e s 内 甲 科 n e j a k o 内 赫 尔 n a e h e r 冈 宁 g u n n i n g 冈 尼 森 g u n n i s o n 冈 布 尔 g u m b l e 冈 普 g u m p 冈 特 g a u n t 冈 特 g u n t e r 冈 珀 斯 g o m p e r s 冈 纳 尔 斯 g u n n e l s 凯 克 威 克 k e k w i c h 凯 兰 k e l l a n d 凯 勒 杰 曼 k e l e g e r m a n 凯 吉 尔 c a y g i l l 凯 夫 利 k o e p f l i 凯 姆 斯 k a m e s 凯 尔 奇 k o e l s c h 凯 拉 姆 k e l l a m 凯 拉 赫 k e l l a h e r 凯 洛 克 k e l l o c k 凯 特 曼 k e t t e m a n 凯 瑟 琳 娜 c a t h a r i n a 凯 莱 蒂 k e l e t i 切 希 尔 c h e s h i r e 切 恩 c h e y n e 切 斯 c h e s s 切 斯 特 斯 c h e s t e r s 切 泽 尔 登 c h e s e l d e n 切 金 c h e g i n 利 什 l e i s h 利 伯 维 茨 l i e b o w i t z 利 伯 蒂 l i b e r t y 利 勒 加 德 l i l l e g a r d 利 卡 科 斯 l a c a c o s 利 厄 l e a h 利 奇 曼 l e a c h m a n 利 奇 曼 l e e c h m a n 利 嫩 l i n e n 利 安 德 里 l e a n d r i 利 平 科 特 l i p p i n c o t t 利 弗 西 奇 l i v e r s i d g e 利 德 代 尔 l i d d e r d a l e 利 德 基 l u e d k e 利 德 盖 特 l y d g a t e 利 撒 特 l e a t h a r t 利 斯 l e a t h 利 斯 l e a t h e s 利 斯 l e e c e 利 斯 l e e s 利 斯 l e e s e 利 斯 l e i t h 利 斯 l e y s 利 斯 l i s 利 斯 l i s s 利 昂 l e o n 利 明 顿 l e a m i n g t o n 利 普 斯 基 l i p s k y 利 曼 l e a m a n 利 曼 l e e m a n 利 汉 l e h a n 利 特 代 尔 l i t t l e d a l e 利 特 菲 尔 德 l i t t l e f i e l d 利 纳 恩 l e n a h a n 利 蒙 l e a m o n 利 蒙 l i m o n 利 西 亚 克 l y s i a k 利 诺 维 茨 l i n o w i t z 利 齐 奥 斯 l i t s i o s 加 万 g a v a n 加 兰 特 g a l a n t e 加 勒 g a l l e r 加 勒 尔 茨 g a r r e l t s 加 勒 德 g a l l a r d 加 勒 德 g a r r a r d 加 尔 珀 g a l p e r 加 尔 迪 g a l d i 加 尼 尔 g a g n i e r 加 尼 尔 g a r n i e r 加 弗 里 g a v e r y 加 斯 珀 g a s p e r 加 斯 金 斯 g a s k i n s 加 特 利 g a r t l e y 加 特 霍 夫 g a r t h o f f 加 瓦 根 g a v a g a n 加 纳 姆 g a r n h a m 加 莫 伊 尔 g a r m o y l e 加 蒂 g a t t i 加 蒂 g a t t i e 加 西 亚 g a r c i a 加 西 亚 g a r s i a 加 贝 尔 曼 g a b e l m a n 加 里 森 g a r r i s o n 加 鲁 g a r e a u 努 普 k n o o p 努 涅 斯 n u n e s 努 涅 斯 n u n e z 劳 l a u 劳 l a w 劳 l a w e 劳 r a u 劳 r a u h 劳 克 伦 l a u c h l a n 劳 因 格 l a u i n g e r 劳 威 尔 l a w w i l l 劳 尔 斯 顿 r a u l s t o n 劳 希 宁 r a u s c h n i n g 劳 恩 斯 伯 里 l o u n s b e r r y 劳 里 斯 l a u r i e s 劳 韦 里 斯 l a u w e r y s 勒 内 r e n e 勒 加 西 l e g a s s i e 勒 梅 林 l e m e l i n 勒 梅 热 勒 l e m e s u r i e r 勒 特 威 奇 l u t w i d g e 勒 瓦 尔 l e r v a l 勒 纳 l e r n e r 勒 顿 l u r t o n 勒 顿 l u t t o n 南 尼 n a n n y 卡 代 尔 c a r d a l e 卡 伦 德 c a l l e n d e r 卡 伯 k a r b e r 卡 伯 特 c a b o t 卡 伯 特 c u l b e r t 卡 佐 夫 k a t z o f f 卡 内 特 c a n e t 卡 内 特 k a n e t 卡 利 基 k a l i c k i 卡 利 弗 c a l i v e r 卡 利 森 c a l l i s o n 卡 利 森 c u l l i s o n 卡 勒 里 c a l l e r y 卡 南 c a n a n 卡 多 夫 c a r d o f f 卡 姆 利 克 c a m e l i c k 卡 姆 利 特 k a m l e t 卡 尔 弗 利 c a l v e r l e y 卡 尔 弗 韦 尔 c u l v e r w e l l 卡 尔 罗 斯 c u l r o s s 卡 尔 蒙 特 c a l m o n t 卡 尔 顿 c a r l e t o n 卡 尔 顿 c a r l t o n 卡 弗 c a r v e r 卡 德 c a r d 卡 德 伯 里 c a d b u r y 卡 德 曼 c a d m a n 卡 恰 c a c c i a 卡 扬 k a y a n 卡 拉 克 里 斯 蒂 c a r a c r i s t i 卡 拉 多 克 c a r a d o c 卡 撒 c a r t h a 卡 斯 克 k a s k 卡 斯 勒 k a s l e r 卡 斯 勒 k a s s l e r 卡 斯 滕 迪 克 k a s t e n d i e c k 卡 斯 特 伯 格 c a s t b e r g 卡 斯 特 罗 c a s t r o 卡 斯 鲍 姆 k a s s e b a u m 卡 林 c a r i n 卡 林 c a r l i n 卡 林 c a r l i n g 卡 林 c u l l i n g 卡 林 k a r i n 卡 林 k a r l i n 卡 梅 伦 c a m e r o n 卡 梅 尼 希 c a m e n i s c h 卡 洛 佩 克 k a l o u p e k 卡 特 兰 c a r t l a n d 卡 特 利 奇 c a r t l e d g e 卡 特 利 奇 c a t l e d g e 卡 特 维 利 k a r t v e l i 卡 瑟 利 c a s s e r l e y 卡 瑟 利 c a s s e r l y 卡 瓦 隆 c a v a l l o n 卡 登 c a d b e n 卡 登 c a r d e n 卡 登 c a r d o n 卡 登 k a d a n e 卡 米 莱 蒂 c a m i l l e t t i 卡 纳 普 c a r n a p 卡 罗 塞 拉 c a r o s e l l a 卡 肖 蒂 c a s c i o t t i 卡 莱 克 k a l l e c k 卡 菲 c a f f e e 卡 菲 c a f f e y 卡 蓬 c a r b o n e 卡 西 尔 c a s s i l l 卡 赫 伦 c a c h r e n 卡 里 尔 c a r r i e r 卡 里 尔 c a r r i e r e 卡 里 尔 c a r y l 卡 里 尔 c a r y l e 卡 里 特 c a r r i t t 卡 钦 斯 c a t c h i n g s 卡 门 斯 克 k a m e n s k e 卡 鲁 西 c a r u s i 卡 齐 尔 c a r z i e r 卢 l e w 卢 l l e w 卢 l o u 卢 卡 特 l u i k a r t 卢 卡 西 l u c a s e y 卢 因 l e w i n 卢 因 l e w i n e 卢 埃 林 l e w e l l e n 卢 埃 林 l e w e l y n 卢 埃 林 l l e w e l l y n 卢 埃 林 l l e w e l y n 卢 奥 托 l u o t o 卢 斯 利 l o o s l e y 卢 斯 利 l o o s l i 卢 汉 l u h a n 卢 汉 l u j a n 卢 特 林 斯 l u t r i n s 卢 特 金 l u t k i n 卢 里 l o o r y 卢 里 l u r i e 卢 顿 l u t o n 厄 内 斯 特 e r n e s t 厄 基 拉 e r k k i l a 厄 威 克 u r w i c k 厄 尔 e a r l 厄 尔 e a r l e 厄 尔 e r l e 厄 尔 e u r e 厄 布 e r b e 厄 恩 利 e r n l e 厄 恩 肖 e a r n s h a w 厄 福 德 u f f o r d 古 尔 德 g o o l d 古 尔 德 g o u l d 古 尔 德 g o u l d e 古 尔 德 g o u r d 古 德 伊 尔 g o o d y e a r 古 德 休 g o o d h e w 古 德 休 g o o d h u e 古 德 哈 姆 g o o d e r h a m 古 德 尼 g o o d n e y 古 德 费 洛 g o o d f e l l o w 古 拉 尔 尼 克 g u r a l n i k 古 根 海 默 g u g g e n h e i m e r 古 贝 尔 曼 g u b e l m a n n 古 金 g o o k i n 史 蒂 倍 克 s t u d e b a k e r 吉 利 亚 斯 g i l l e a s 吉 勒 拉 普 g i e l l e r u p 吉 塔 g i t t a 吉 塞 尔 g i e s e l 吉 姆 森 g i m s o n 吉 尔 帕 特 里 克 g i l p a t r i c k 吉 尔 本 g e l b e n 吉 尔 肯 g e e r k e n 吉 尔 马 里 g i l m a r y 吉 德 维 茨 g i d w i t z 吉 杜 j i d d u 吉 纳 德 g u i n a r d 吉 维 登 j i v i d e n 吉 迪 恩 g i d e o n 哈 什 菲 尔 德 h a r s h f e l d 哈 伦 伯 格 h a l l e n b e r g 哈 伯 利 h a b b e r l e y 哈 伯 利 h a b e r l i e 哈 克 尼 h a c k n e y 哈 克 沃 斯 h a c k w o r t h 哈 利 h a l e y 哈 利 h a l l e 哈 利 h a l l e y 哈 利 h a l l i e 哈 利 h a r l e y 哈 勒 尔 h a r r e l 哈 勒 尔 h a r r e l l 哈 基 h a a k e 哈 基 h a r k e y 哈 夫 h a f f 哈 夫 h a l f 哈 尔 比 希 h a l b i g 哈 希 h a s c h e 哈 弗 里 h a f r e y 哈 弗 里 h a v e r y 哈 德 卡 斯 尔 h a r d c a s t l e 哈 德 洛 克 h a d l o c k 哈 拉 普 h a r a p 哈 斯 丘 h a s k e w 哈 斯 克 特 h a s k e t 哈 斯 布 罗 h a s b r o 哈 斯 拉 姆 h a s l a m 哈 斯 普 雷 h a s p r a y 哈 斯 林 格 h a s l i n g e r 哈 斯 里 克 h a s s r i c k 哈 斯 金 h a s k i n 哈 曼 h a h m a n 哈 曼 h a m a n 哈 曼 h a r m a n 哈 格 尔 h a g e l 哈 格 里 夫 斯 h a r g r e a v e s 哈 格 雷 夫 h a r g r a v e 哈 梅 利 h a m e l e 哈 比 森 h a r b e s o n 哈 比 森 h a r b i s o n 哈 泽 德 h a z a r d 哈 泽 德 h a z z a r d 哈 特 h a r d t 哈 特 h a r t 哈 特 h a r t e 哈 特 h a r t t 哈 特 h a t t 哈 特 h e a r t 哈 特 h e a r t t 哈 特 伍 德 h a t w o o d 哈 特 基 h a r t k e 哈 特 斯 利 h a t t e r s l e y 哈 特 森 h a r t s o n 哈 特 福 德 h a r t f o r d 哈 特 里 h a r t r e e 哈 特 里 奇 h a r t r i c h 哈 索 克 h a r t s o c k 哈 维 h a r v e 哈 维 h a r v e y 哈 罗 h a r r o w 哈 肯 森 h a c k e n s o n 哈 莫 曼 h a r m o m a n 哈 西 亚 利 斯 h a s s i a l i s 哈 迪 格 里 h a r d e g r e e 哈 迪 特 h a r d i t 哈 金 h a c k i n g 哈 金 h a r k i n 哈 默 密 斯 h a m m e r s m i t h 唐 林 d o n e l i n 唐 皮 埃 尔 d o m p i e r 唐 皮 埃 尔 d o m p i e r r e 唐 纳 d o n n e r 唐 纳 d o w n e r 唐 金 d o n k i n 唐 隆 d o n l o n 图 韦 尔 t e w w e l l 圣 玛 丽 s a i n t m a r i e 坎 伯 兰 c u m b e r l a n d 坎 塞 尔 c a n c e l l 坎 尼 森 c u n n i s o n 坎 巴 拉 k a n b a r a 坎 布 里 奇 c a m b r i d g e 坎 托 c a n t o r 坎 斯 c a n c e 坎 斯 c a n s e 坎 普 迈 耶 k a m p m e i e r 坎 格 莱 k a n g l i e 坎 波 利 c a m p o l i 坎 特 菲 尔 c a n t f i l 坎 米 奇 c a m m i d g e 坦 丁 t a n d i e n 坦 佐 斯 t a n c z o s 坦 尼 希 尔 t a n n e h i l l 坦 普 尔 敦 t e m p l e t o w n 埃 丝 特 e s h t e r 埃 伦 霍 尔 特 e h r e n h a l t 埃 克 伯 格 e k b e r g 埃 克 伯 格 e k e b e r g 埃 克 斯 利 e c k e r s l e y 埃 克 斯 利 e x l e y 埃 克 萨 姆 e x u m 埃 利 科 特 e l l i c o t 埃 利 科 特 e l l i c o t t 埃 加 马 茨 e g a r m a t z 埃 勒 克 e l l e r k e r 埃 吉 e g i 埃 塞 丽 达 e t h e l r e d a 埃 塞 伍 尔 夫 e t h e l w u l f 埃 塞 尔 e t h e l 埃 塞 尔 伯 特 e t h e l b e r t 埃 多 斯 e d d o w e s 埃 夫 登 a v e d o n 埃 尔 姆 e l m 埃 尔 姆 斯 e l m e s 埃 尔 姆 斯 e l m s 埃 尔 德 e l d e r 埃 尔 斯 佩 斯 e l s p e t h 埃 尔 斯 纳 e l s n e r 埃 尔 林 顿 e l r i n g t o n 埃 尔 森 e l l s o n 埃 尔 森 e l s o n 埃 尔 芬 e l f a n 埃 尔 芬 e l f i n 埃 尔 莫 e l m o 埃 尔 莫 尔 e l m o r e 埃 尔 里 斯 e l r e a t h 埃 布 森 e b b e s e n 埃 布 纳 里 e b n e r y 埃 廷 e t t i n 埃 弗 林 厄 姆 e v e r i n g h a m 埃 弗 纳 姆 e v e r n h a m 埃 弗 罗 姆 森 e f r o y m s o n 埃 弗 谢 德 e v e r s h e d 埃 弗 里 斯 特 e v e r e s t 埃 弗 里 茨 e v e r t t s 埃 德 尔 斯 伯 格 e d e l s b e r g 埃 德 尔 霍 克 e d e l h o c h 埃 德 明 斯 特 e d m i n s t e r 埃 德 林 e d e l i n 埃 德 林 e d l i n 埃 德 米 斯 顿 e d m i s t o n 埃 德 蒙 森 e d m o n d s o n 埃 德 蒙 森 e d m o n s o n 埃 德 蒙 森 e d m u n d s o n 埃 德 里 克 e d r i c 埃 斯 卡 菲 尔 e s c a f f i e r 埃 斯 德 拉 斯 e s d r a s 埃 斯 特 班 e s t e b a n 埃 林 杰 e l l i n g e r 埃 格 曼 e g e r m a n 埃 格 顿 e g g e r t o n 埃 比 沙 姆 e b b i s h a m 埃 滕 森 e t t e n s o n 埃 瑟 里 奇 e t h e r e d g e 埃 瑟 里 奇 e t h e r r i d g e 埃 科 尔 a c h o r 埃 米 a m e y 埃 米 a m y 埃 米 e m m y 埃 米 勒 斯 e m e l e u s 埃 米 森 e m i s o n 埃 纳 森 e n a r s o n 埃 茨 e t z 埃 莉 奥 诺 拉 e l e o n o r a 埃 莉 斯 e l i s e 埃 莉 诺 e l e a n o r 埃 莉 诺 e l i n o r 埃 莱 兹 e l e z 埃 西 尔 特 e s y l t 埃 迪 a d y e 埃 迪 e d d e y 埃 迪 e d d i e 埃 迪 e d d y 埃 迪 e d e y 埃 默 林 e m e r l i n g 基 切 尔 k i t c h e l 基 切 尔 k i t c h e l l 基 利 安 k i l l i a n 基 利 恩 k i l i a n 基 利 恩 k i l l e e n 基 利 普 k i l l i p 基 利 金 k i l l i g i n 基 南 k e e n a n 基 奇 森 k i t c h i s o n 基 尔 希 斯 坦 k i r s c h s t e i n 基 尔 泽 k i l z e r 基 尔 舍 k i r c h e r 基 尔 赫 夫 纳 k i l h e r f n e r 基 尔 迪 k i l d e e 基 布 k i e b 基 托 k i t t o 基 托 k i t t o e 基 特 马 斯 特 k i t t e r m a s t e r 基 纳 德 k i n a r d 塔 克 特 t a c k e t t 塔 利 亚 布 t a g l i a b u e 塔 卢 拉 t a l l u l a h 塔 嫩 t a n e n 塔 尔 伯 特 t a l b e r t 塔 尔 伯 特 t a l b o t 塔 尔 伯 特 t a l b o t t 塔 尔 伯 特 t a l b u r t 塔 尔 伯 特 t a l b u t t 塔 尔 诺 夫 t a r n o f f 塔 彻 t a r c h e r 塔 斯 基 t a s k e y 塔 班 金 t a b a n k i n 塔 费 尔 t a f e l 塔 韦 尔 t a v e l 塞 万 提 斯 c e r v a n t e s 塞 克 尔 s e c k e l 塞 克 斯 顿 s e x t o n 塞 利 姆 s e l i m 塞 塔 罗 s e t a r o 塞 夫 s e i f f 塞 奇 s a g e 塞 奇 威 克 s e d g w i c k 塞 姆 勒 s e m l e r 塞 尔 布 s e l b 塞 尔 温 s e l w y n 塞 尔 西 s c e l s i 塞 居 尔 s e g u r 塞 巴 斯 蒂 安 s e b a s t i a n 塞 希 s e r s h e y 塞 弗 斯 s a v o u r s 塞 弗 斯 s e y f e r t h 塞 德 曼 s e i d e m a n 塞 德 曼 s e i d e m a n n 塞 德 曼 s e i d m a n 塞 格 尼 厄 斯 s e i g n i o u s 塞 登 菲 尔 德 s e i d e n f e l d 塞 纳 s e n a 塞 纳 s e n e r 塞 纳 斯 s e n e s e 塞 茨 勒 s e t z l e r 塞 萨 姆 斯 s e s s u m s 塞 里 恩 t h e r r i e n 塞 阔 亚 s e q u o y a 塞 阔 亚 s e q u o y a n 夏 因 s h i n e 夏 帕 s c h i a p p a 多 d a u 多 伊 斯 尔 d e u s c h l 多 伯 特 d a u b e r t 多 克 d o a k 多 克 d o c k 多 克 d o k e 多 利 奥 d o l i o 多 哈 诺 斯 d o h a n o s 多 尔 宾 d o l b e n 多 尔 斯 特 里 d a l l s t r e a m 多 尔 森 d o l s o n 多 布 斯 d o b b s 多 布 金 d o b k i n 多 平 d o p p i n g 多 戈 洛 夫 d o g o l o f f 多 拉 德 d o l l a r d 多 梅 尼 西 d o m e n i c i 多 森 d o t s o n 多 比 尔 d a l b y 多 比 尔 d o l b e a r 多 洛 雷 斯 d o l o r e s 多 琳 d o r e e n 多 米 克 d o m i c k 多 米 克 d o m i k e 多 纳 d o h n e r 多 纳 d o n a g h 多 纳 d o n e r 多 维 尔 d o v e l l 多 赫 勒 d o e h l e r 太 勒 t a i l o r 太 勒 t a y l e r 太 勒 t a y l o r 太 勒 t h e i l e r 太 格 森 t h y g e s o n 太 森 t h e i s e n 太 特 t a i t 太 特 t a i t e 太 特 t a t e 太 特 t e t e r 太 特 t e y t e 奇 克 林 c h i c k e r i n g 奇 尔 德 斯 c h i l d e r s 奇 尔 德 雷 斯 c h i l d r e s s 奇 彭 代 尔 c h i p p e n d a l e 奇 彭 多 尔 c h i p p e n d a l l 奇 斯 托 利 尼 c h i s t o l i n i 奇 蒂 c h i t t y 奇 诺 伊 c h i n o y 奈 什 n a i s h 奈 尔 n a i l l 奈 尔 n a i r 奈 弗 n i p h e r 奈 斯 比 n a i s b y 奈 斯 比 特 n a i s b i t t 奈 普 k n e i p 奈 普 k n i p e 奈 菲 n a i f e h 奎 亚 蒂 克 k w i a t e k 奎 克 q u i c k 奎 利 q y e a l y 奎 尔 哈 斯 q u e r h u s 奎 尔 金 q u i l k i n 奎 斯 q u i s 奎 格 利 q u i g l e y 奥 乔 亚 o c h o a 奥 伊 洛 o y l o e 奥 伯 哈 特 o b e r h a r d t 奥 伯 格 o b e r g 奥 伯 沃 斯 o b e r w a r t h 奥 伯 霍 尔 策 o b e r h o l t z e r 奥 佩 尔 o p e l 奥 佩 尔 o p p e l 奥 克 利 o a k e l e y 奥 克 利 o a k l e y 奥 克 利 o c k l e y 奥 克 斯 利 o x l e y 奥 兹 利 a u d s l e y 奥 兹 蒙 o z m u n 奥 劳 克 林 o l a u g h l i n 奥 古 斯 塔 a u g u s t a 奥 古 斯 滕 堡 a u g u s t e n b o r g 奥 吉 利 a u g e l l i 奥 基 夫 o k e e f e 奥 基 夫 o k e e f f e 奥 姆 o h m 奥 姆 o r m 奥 姆 o r m e 奥 尔 巴 尼 a l b a n y 奥 尔 布 里 顿 a l b r i t o n 奥 尔 布 里 顿 a l b r i t t a i n 奥 尔 布 里 顿 a l b r i t t o n 奥 尔 弗 里 a l l f r e y 奥 尔 德 罗 伊 德 o l d r o y d 奥 尔 斯 o w l e s 奥 尔 斯 瓦 尔 德 a u e r s w a l d 奥 尔 曼 a l l m a n 奥 尔 曼 o e l m a n 奥 尔 曼 o l l m a n 奥 尔 沃 斯 a l w o r t h 奥 尔 纳 a l l n e r 奥 尔 纳 a u r n e r 奥 尔 纳 特 a l l n u t t 奥 尔 莫 o l m o 奥 尔 达 克 o l d a k e r 奥 尔 韦 布 a l w e b b 奥 布 赖 恩 o b r i a n 奥 布 赖 恩 o b r i e n 奥 布 赖 恩 o b r y a n 奥 希 尔 o s h i e l 奥 弗 拉 斯 o v e r a t h 奥 弗 莱 厄 蒂 o f l a h e r t i e 奥 弗 莱 厄 蒂 o f l a h e r t y 奥 德 兰 o d l a n d 奥 德 姆 o d e m 奥 德 姆 o d u m 奥 恩 o r n e 奥 拉 姆 o r a m 奥 斯 塔 德 a u s t a d 奥 斯 特 a u s t e r 奥 斯 特 o s t e r 奥 斯 特 o w s t 奥 斯 特 曼 o s t e r m a n 奥 斯 特 比 o s t b y 奥 斯 特 洛 夫 o s t e r l o f f 奥 普 勒 o p l e r 奥 本 海 姆 o p p e n h e i m 奥 查 森 o r c h a r d s o n 奥 根 o g a n 奥 根 o r g a i n 奥 根 o r g a n 奥 格 尔 比 o g i l b y 奥 格 斯 a u g u s 奥 格 本 o g b u r n 奥 沙 利 文 o s u l l i v a n 奥 洛 o r l o 奥 洛 克 林 o l o u g h l i n 奥 滕 a u t e n 奥 滕 o a t e n 奥 滕 o u t e n 奥 特 利 o t t l e y 奥 特 利 o u t l e y 奥 特 森 o t t e r s o n 奥 特 森 o u g h t e r s o n 奥 特 纳 德 o t t e n a d 奥 瓦 尔 o r v a l 奥 维 塔 o v e t a 奥 罗 克 o r o r k e 奥 罗 克 o r o u r k e 奥 罗 拉 a u r o r a 奥 耶 o y e 奥 耶 o y e r 奥 萨 尔 斯 顿 o s s u l s t o n 奥 里 尔 o r e a r 奥 里 尔 o r i e l 奥 里 恩 斯 o r i a n s 奥 里 森 o r i s o n 奥 雷 尔 o r e l l 威 什 尼 克 w i s h n i c k 威 伦 布 克 w i l l e n b u c h e r 威 伦 茨 w i l e n t z 威 伯 格 w i e b e r g 威 克 斯 特 龙 w i c k s t r o m 威 克 沙 姆 w i c k e r s h a m 威 克 瑟 姆 w i x o m 威 利 厄 斯 w i l l i u s 威 利 尔 w i l l i e r 威 基 泽 w i c k i z e r 威 奇 w e e c h 威 奇 w y c h 威 奇 w y c h e 威 尔 克 森 w i l k e r s o n 威 尔 吉 斯 w i l g i s 威 尔 库 克 w i l c o o k 威 尔 斯 w i l l e s 威 尔 斯 w i l l s 威 尔 格 雷 斯 w i l g r e s s 威 尔 森 w i l l s o n 威 尔 森 w i x o n 威 尔 特 w i l t 威 尔 肯 斯 w i k e n s 威 尔 马 斯 w i l m a r t h 威 尔 齐 w i l t s e y 威 尼 克 w i n i c k 威 廉 米 w i l h e l m y 威 拉 德 w i e l a a r d 威 拉 德 w i l l a r d 威 泽 w i e s e r 威 特 科 尔 w i t t k o w e r 威 福 德 w y f o l d 威 肯 斯 w i c k e n s 威 金 斯 w i c k i n s 威 金 斯 w i g g i n s 威 金 斯 w i k i n s 威 顿 w i t t o n 威 齐 格 w i t z i g 孔 兹 k u n z 孔 斯 曼 k o n n s m a n 安 克 尔 a n c h e r 安 妮 特 a n n e t t e 安 尼 a n n e y 安 布 罗 a m b r o 安 布 罗 斯 a m b r o s e 安 布 里 斯 特 a r m b r i s t e r 安 德 林 加 a n d r i n g a 安 德 烈 森 a n d r e s e n 安 扎 隆 a n z a l o n e 安 托 维 尔 a n t o v i l l e 安 斯 特 德 a n s t e a d 安 杰 a n g e r 安 格 布 兰 特 a n g e b r a n n d t 安 格 斯 a n g u s 安 特 卫 普 a n t w e r p 安 特 里 姆 a n t r i m 安 迪 a n d y 安 迪 a n s y 安 默 曼 a m m e r m a n 富 塞 尔 f u s s e l l 富 格 勒 f u g l e r 富 特 曼 f o o t m a n 富 特 曼 f u t t e r m a n 尚 克 利 s h a n k l e y 尚 克 尔 s h a n k l e 尚 克 斯 s h a n k s 尤 勒 e u l e r 尤 勒 u h l e r 尤 多 拉 e u d o r a 尤 妮 斯 e u n i c e 尤 尔 斯 e w e r s 尤 德 尔 u d a l 尤 德 尔 u d a l l 尤 格 y o u g h 尤 里 克 e u r i c h 尤 里 克 u h r i c h 尤 里 克 u r i c k 尼 亚 斯 n i a s 尼 尔 森 n e i l s o n 尼 尔 森 n i e l s e n 尼 尔 森 n i e l s o n 尼 尔 森 n i l s e n 尼 尔 森 n i l s s o n 尼 布 拉 克 n i b l a c k 尼 斯 代 尔 n i t h s d a l e 尼 曼 n i e m a n n 尼 波 特 n e p o t e 尼 瑟 林 n e a t h e r l i n 尼 科 迪 默 斯 n i c o d e m u s 尼 莫 尔 n e m o r e 尼 豪 斯 n i e h a u s 尼 达 姆 n e e d h a m 尼 迈 耶 n e m e y e r 尼 迈 耶 n i e m e y e r 尼 迪 n e e d y 巴 克 纳 b u c k n e r 巴 克 达 尔 b a r k d u l l 巴 兰 坦 b a l l a n t i n e 巴 兰 坦 b a l l a n t y n e 巴 因 斯 利 b a r n s l e y 巴 基 b a k e y 巴 基 b a k k e 巴 夫 b u f f 巴 夫 顿 b o f t o n 巴 尔 德 施 维 勒 b a l d e s c h w i e l e r 巴 尔 默 b a l m e r 巴 希 巴 赫 b a s c h b a c h 巴 恩 比 b a r n b y 巴 恩 贝 b a r n e b e y 巴 恩 韦 尔 b a r n w e l l 巴 托 什 b a r t o s h 巴 托 尔 德 b a r t h o l d 巴 斤 b a r z i n 巴 斯 克 维 尔 b a s k e r v i l l e 巴 斯 基 b u s k i e 巴 斯 塔 曼 特 b u s t a m a n t e 巴 斯 奈 特 b a s n i g h t 巴 格 b a g g 巴 格 b u g g 巴 格 b u g g e 巴 格 尔 伯 b a r g l e b a u g h 巴 格 比 b a g b y 巴 格 比 b u g b e e 巴 比 诺 维 奇 b a b i n o w i c h 巴 特 利 b a r t l e y 巴 特 利 b a t l e y 巴 特 利 b a t t l e y 巴 特 利 特 b a r t l e t t 巴 特 利 特 b a r t l e t t e 巴 特 利 特 b a r t l i t 巴 特 尔 特 b a r t e l t 巴 特 希 尔 b a t t e r s h i l l 巴 特 斯 比 b a t t e r s b y 巴 索 b a s s o 巴 索 b a s s o w 巴 索 b a t h o 巴 罗 b a r e a u 巴 罗 b a r r o 巴 罗 b a r r o w 巴 罗 克 b a r o c h 巴 赫 莱 b a h l a y 巴 达 拉 科 b a d a r a c c o 巴 里 根 b a r r i g a n 巴 龙 b a r o n e 布 什 曼 b u s h m a n 布 什 金 b u s h k i n 布 伦 纳 b l e n n e r 布 伦 纳 b r e n n e r 布 伦 纳 b r u n n e r 布 伦 迪 奇 b r u n d i d g e 布 伦 韦 尔 b r u m w e l l 布 克 斯 潘 b o o k s p a n 布 克 曼 b o o k m a n 布 克 曼 b u c h m a n 布 兰 尼 夫 b r a n i f f 布 兰 特 利 b r a n t l e y 布 兰 特 利 b r a n t l y 布 兰 福 德 b l a n d f o r d 布 兰 福 德 b r a n f o r d 布 兰 科 b l a n c o 布 兰 肯 海 默 b l a n k e n h e i m e r 布 兰 芬 b l a m p h i n 布 利 克 b l e e c k e r 布 利 克 b l i c k 布 利 克 利 b l e a k l e y 布 利 特 曼 b l i t m a n 布 劳 利 b r a w l e y 布 劳 因 b l o u i n 布 卢 斯 坦 b l u s t e i n 布 尔 b o o l e 布 尔 b u e h h l 布 尔 b u g h e r 布 尔 b u h l 布 尔 b u l l 布 尔 多 b o u r d e a u x 布 希 b u s c h 布 希 b u s h e 布 希 b u s h e y 布 恩 b o o n 布 恩 b o o n e 布 拉 克 b r a c k e r 布 拉 克 斯 利 b l a x l e y 布 拉 夫 b r o u g h 布 拉 夫 b r u f f 布 拉 姆 斯 b r a h m s 布 拉 德 沃 丁 b r a d w a r d i n e 布 拉 德 沃 尔 b r a d w a l l 布 拉 戈 尼 尔 b r a g o n i e r 布 拉 斯 b l a s 布 拉 斯 b r a s c h 布 拉 斯 b r a s s 布 拉 斯 韦 尔 b r a s w e l l 布 拉 瑟 特 b r a s s e r t 布 拉 肯 b r a c k 布 斯 b o o s 布 斯 b o o t h 布 斯 b u h s e 布 斯 b u s e 布 朗 洛 b r o w n l o w 布 林 克 b r i n c k 布 林 克 b r i n k 布 查 特 b u t c h a r t 布 泽 克 b u z e k 布 洛 瑟 姆 b l o s s o m 布 洛 瓦 b u l o v a 布 海 b u h a y 布 特 罗 维 奇 b u t r o v i c h 布 皮 b u p p e e 布 罗 姆 瑟 b r o e m s e r 布 罗 姆 菲 尔 德 b r o m f i e l d 布 罗 姆 韦 尔 b r o m w e l l 布 罗 德 伍 德 b r o a d w o o d 布 罗 德 布 里 奇 b r o a d b r i d g e 布 罗 德 里 布 b r o d r i b b 布 罗 曼 b r o e m a n 布 罗 曼 b r o m a n 布 罗 肯 伯 勒 b r o c k e n b o r o u g h 布 罗 肯 布 尔 b r o k e n b u r r 布 莱 克 利 奇 b l a c k l e d g e 布 莱 克 尼 b l a c k n e y 布 莱 克 尼 b l a k e n e y 布 莱 克 尼 b l a k n e y 布 莱 克 斯 利 b l a k e s l e e 布 莱 克 曼 b l a c k m a n 布 莱 克 曼 b l a k e m a n 布 莱 克 曼 b l a k m a n 布 莱 克 曼 b l e c h m a n 布 莱 克 洛 b l a c k l o w 布 莱 克 韦 尔 b l a c k w e l l 布 莱 文 斯 b l e v i n s 布 莱 泽 b l a s e r 布 莱 泽 b l a z e r 布 莱 顿 b l a y t o n 布 莱 顿 b l y t o n 布 赖 特 b r i g h t 布 辛 森 b u t h i n s o n 布 里 克 斯 b r i x 布 里 尔 利 b r e a r l e y 布 里 尔 顿 b r e a r t o n 布 里 尔 顿 b r e r e t o n 布 里 恩 b r e h o n 布 里 斯 托 b r i s t o r 布 里 斯 托 b r i s t o w 布 里 斯 班 b r i s b a n e 布 里 斯 金 b r e e s k i n 布 里 斯 金 b r i s k i n 布 里 根 斯 b r i g a n c e 布 里 格 斯 b r i g g s 布 里 滕 b r i t e 布 里 滕 b r i t t e n 布 里 翁 b r i o n 布 里 金 b r e c h i n 布 阿 哈 拉 b u a c h a l l a 布 雷 克 利 b r a k e l e y 布 雷 布 鲁 克 b r a y b r o o k e 布 雷 德 b r a i d 布 雷 斯 尼 克 b r e s n i c k 布 雷 汉 b r e i h a n 布 雷 泽 尔 b r a z e l 布 雷 泽 尔 b r a z e l l 布 雷 滕 巴 赫 b a r y t e n b a h 布 雷 西 特 b r e a t h i t t 布 雷 赫 特 b r e c h t 布 雷 默 b r e m e r 布 顿 b o u t o n 布 鲁 姆 b r o o m 布 鲁 姆 b r o o m a n 布 龙 克 尔 b r o u n c k e r 希 南 h e e n a n 希 夫 s c h i f f 希 夫 s h e a f 希 姆 金 s h i m k i n 希 尔 伯 h i l l e b o e 希 尔 伯 特 h i l b e r t 希 尔 莫 尔 h i l l m o r e 希 尔 蒂 h e a l t y 希 尼 克 h i n i k e r 希 弗 h e a v e r 希 弗 s c h i e f f e r 希 弗 s h i v e r 希 德 h e e d e 希 德 s h e e d e r 希 德 s h e y d 希 拉 比 h i l l a b y 希 斯 利 普 h e a s l i p 希 斯 梅 森 h e a t h m a s o n 希 斯 金 s h i s k i n 希 普 斯 h e a p s 希 普 斯 h i p p s 希 普 曼 s h i p m a n 希 普 韦 s h i p w a y 希 格 斯 h i g g s 希 瑟 林 顿 h e a t h e r i n g t o n 希 罗 s h e r o 希 莱 h i l a y 希 达 尔 戈 h i d a l g o 帕 什 利 p a r s h l e y 帕 伦 斯 基 p a l e n s k y 帕 克 p a c h 帕 克 p a c k 帕 克 p a c k e 帕 克 p a c k e r 帕 克 p a r k 帕 克 p a r k e 帕 克 p a r k e r 帕 勒 姆 p a r h a m 帕 姆 p a l m e 帕 姆 p a m 帕 姆 奎 斯 特 p a l m q u i s t 帕 尔 托 克 p a l t o c k 帕 尔 斯 p u l s 帕 尔 莫 利 夫 p a l m o l i v e 帕 德 尔 福 德 p a d e l f o r d 帕 拉 拉 斯 p a r a r a s 帕 斯 卡 利 斯 p a s c h a l i s 帕 斯 菲 尔 德 p a s s f i e l d 帕 斯 蒂 诺 p a s t i n o 帕 特 莫 尔 p a t m o r e 帕 特 里 基 夫 p a t r i k e e f f 帕 纳 p a n a 帕 里 菲 p a r r i f y 帕 顿 p a r t o n 席 尔 瓦 s i l v a 平 塔 p i n t a 平 奇 贝 克 p i n c h b e c k 平 尼 p i n n e y 平 琼 p y n c h o n 库 伦 斯 k u r e n s 库 克 曼 c o o k m a n 库 利 格 k u l i g 库 尔 森 c o u l s o n 库 尔 森 c o u r l s o n 库 尼 什 k u n e s h 库 尼 奥 c u n e o 库 布 利 克 k u b e l i k 库 拉 汉 c o o l a h a n 库 斯 罗 k u s s e r o w 库 普 卡 k u p k a 库 林 斯 c o o l i n g s 库 林 斯 c o o l i n s 库 特 尼 c o u t n e y 库 菲 尔 德 k u h f e l d 库 贝 克 k o u b e k 库 金 安 c o o k i n g h a m 库 齐 厄 斯 k u r z i u s 庞 帕 p o m p a 庞 普 p u m p 康 克 尔 k o n k e l 康 弗 c o n f e r 康 弗 c o n v e r 康 弗 斯 c o n v e r s e 康 德 伦 c o n d r o n 康 恩 c o n n 康 托 斯 k o n t o s 康 诺 特 c o n n a u g h t 康 迪 c o n d y 廷 肯 t i e n k e n 弗 伦 奇 f r e n c h 弗 伯 f u r b e r 弗 克 f u r k 弗 兰 森 f r a n s o n 弗 劳 尔 斯 f l o w e r s 弗 劳 德 f r o u d e 弗 劳 德 f r o w d 弗 劳 德 f r o w d e 弗 卢 尔 f l u o r 弗 吉 尼 厄 斯 v i r g i n i u s 弗 吕 霍 夫 f r u d h a u f 弗 拉 克 斯 f l a x 弗 拉 特 曼 f l a t m a n 弗 罗 尔 克 f r o e h l k e 弗 罗 梅 尔 特 f r o m m e l t 弗 罗 温 f r o w e n 弗 罗 萨 f r o s s a r d 弗 莱 尼 肯 f l e n i k e n 弗 莱 明 顿 f l e m i n g t o n 弗 莱 特 f l a t 弗 莱 特 f l e t t 弗 莱 特 f l i g h t 弗 赖 尔 f r e i l e 弗 赖 尔 f r y e r 弗 里 希 尔 f r e e h i l l 弗 里 德 利 克 f r i e d l i c h 弗 雷 亚 f r e y a 弗 雷 利 克 f r a l i c k 弗 雷 德 f r e d 弗 雷 德 尔 f r e d e l l 弗 鲁 克 f r u g 弗 鲁 姆 金 f r o o m k i n 弗 鲁 曼 v r o o m a n 张 伯 c h a m b e r 张 布 利 斯 c h a m b l i s s 彭 哈 洛 p e n h a l l o w 彭 廷 p e n t i n 彭 德 p e n d e r 彭 德 格 拉 斯 p e n d e r g r a s s 彭 斯 顿 p e n s t o n 彭 特 里 奇 p e n t r i d g e 彭 纳 p e n n e r 彭 诺 克 p e n n o c k 彭 里 p e n r y 彻 伯 格 c h e r b e r g 彻 伯 格 c h e r b e r g e r 彻 尔 尼 科 夫 c h e r n i c o f f 彻 巴 c h u r b a 彻 马 克 c h e r m a k 彼 得 伯 勒 p e t e r b o r o u g h 德 丁 d u r d i n 德 万 斯 d e v a n s 德 克 斯 特 d e x t e r 德 克 梅 吉 恩 d e u k m e j i a n 德 克 特 勒 d e c h t e l e r 德 克 雷 斯 皮 尼 d e c r e s p i g n y 德 内 尔 d u r n e l l 德 利 夸 迪 d e l l i q u a r d i 德 利 奥 d e l e o 德 劳 特 d r a u t 德 劳 特 d r o u g h t 德 劳 罗 d e l a u r o 德 卡 德 d e c k a r d 德 尔 克 d e l k 德 尔 克 d e l k e r 德 尔 布 鲁 克 d e l b r u c k 德 尚 d e c h a n t 德 尚 d e s h o n g 德 巴 茨 d e b u t t s 德 拉 克 曼 d r a c h m a n 德 拉 加 尔 萨 d e l a g a r z a 德 拉 戈 d r a g o r 德 拉 普 兰 d e l a p l a i n e 德 拉 罗 西 埃 d e l a r o s i e r e 德 拉 贡 内 特 d r a g o n e t t e 德 拜 d e b y e 德 斯 顿 d u r s t o n 德 斯 默 斯 d e t h m e r s 德 普 d e p p 德 曼 d e m a n 德 曼 d e r m a n 德 朗 d e l o n g 德 林 克 沃 特 d r i n k w a t e r 德 林 卡 德 d r i n k a r d 德 格 林 d e g e r i n g 德 格 鲁 特 d e g r o o t 德 梅 尼 d e m e n y 德 沃 尔 d e v a l l 德 沃 尔 d e v o r 德 沃 恩 d e v a u g h n 德 波 特 d e p o r t e 德 泽 纳 d e z e r n e 德 特 斯 d e t e r s 德 瓦 斯 d e v a s 德 瓦 斯 d e w a s 德 科 拉 d e c o r a 德 罗 斯 特 d r o s t e 德 莱 尚 d e l e c h a n t 德 莱 特 尔 d e l a i t t r e 德 诺 姆 d e n h o l m 德 贝 利 斯 d e b e l l i s 德 赖 伯 格 d r i b e r g 德 赖 伯 格 d r y b e r g 德 路 透 d e r e u t e r 德 通 克 d e t u n c q 德 里 斯 勒 d r i s c h l e r 德 里 茨 d r i t z 德 金 d u r g i n 德 金 d u r k i n 德 雷 布 斯 d r e b e s 德 韦 林 d w e l i n g 德 马 拉 海 德 d e m a l a h i d e 德 龙 德 d e r o n d e 怀 特 赫 斯 特 w h i t e h u r s t 怀 科 夫 w y k o f f 恩 斯 洛 e n s l o w 恩 格 尔 巴 赫 e n g e l b a c h 恩 格 尔 布 雷 希 特 e n g e l b r e c h t 恩 特 加 特 e n t e g a r t 恩 特 威 斯 尔 e n t w i s t l e 恩 齐 e n z i e 惠 克 w h i c h k e r 惠 斯 纳 w h i s n e r 惠 普 尔 w h i p p l e 惠 特 尔 斯 通 w h i t t l e s t o n e 惠 特 尔 西 w h i t t l e s e y 惠 特 贝 克 w h i t b e c k 戈 什 科 g o s h k o 戈 克 尔 g o k u l 戈 勒 姆 g o r h a m 戈 勒 斯 特 g o l l u s t 戈 卢 布 g o l u b 戈 尔 兹 伯 勒 g o l d s b o r o u g h 戈 尔 桑 g o l s a n 戈 德 伯 尔 g o d b o l e 戈 德 利 g o d l e y 戈 德 尔 g o d e l 戈 德 尼 g o l d n e y 戈 德 巴 赫 g o l d b a c h 戈 德 布 拉 特 g o l d b l a t t 戈 德 斯 通 g o l d s t o n e 戈 德 温 g o d w i n 戈 德 西 蒙 g o l d s y m o n 戈 斯 g o e s s 戈 斯 g o s e 戈 斯 g o s s 戈 斯 g o s s e 戈 比 g o b b i 戈 特 沙 尔 g o t t s c h a l l 戈 申 g o s c h e n 戈 申 g o s h e n 戈 策 尔 g o e r t z e l 戈 西 克 g o s s i c k 戈 西 奇 g o s s a g e 戈 迪 斯 g o l d i s 戈 迪 斯 g o r d i s 戴 利 奥 d a l i o 戴 奇 d a g e 戴 奇 d a i t c h 戴 奇 d y c h e 戴 尔 斯 d y e r s 戴 弗 西 d i v e r s e y 戴 曼 d i e m a n 戴 萨 特 d y s a r t 戴 蒙 d a m o n 戴 蒙 d i m o n 戴 里 d a i r e 戴 顿 d a y t o n 戴 顿 d e i g h t o n 戴 顿 d i g h t o n 扎 戈 林 z a g o r i n 扎 拉 纳 z a r a n a 扎 潘 塔 z a p a n t a 扎 纳 z a e h n e r 扎 纳 克 z a n u c k 托 伊 伯 t a e u b e r 托 利 弗 t a l i a f e r r o 托 奇 t a u c h 托 姆 西 克 t h o m s i c 托 尼 t a n e y 托 尼 t a w n e y 托 门 t h o m e n 扬 克 洛 维 奇 y a n k e l o v i c h 拉 万 r a v i n s 拉 克 索 尔 特 l a x a l t 拉 南 r a n a n 拉 塔 l a t t a 拉 夫 伯 勒 l o g h b o r o u g h 拉 姆 斯 代 尔 r a m s d a l e 拉 姆 斯 特 德 r a m s t a d 拉 姆 齐 r a m s a y 拉 姆 齐 r a m s e y 拉 姆 齐 r u m s e y 拉 尔 曼 r u l m a n 拉 弗 朗 布 瓦 兹 l a f r a m b o i s e 拉 德 梅 克 r a d e m a k e r 拉 文 德 l a v e n d e r 拉 斤 r a t z i n 拉 斯 冯 r a t h v o n 拉 斯 卡 拉 l a s c a r a 拉 斯 塔 德 r u s t a d 拉 斯 科 l a s k o 拉 斯 科 r a s c o 拉 斯 科 r a s c o e 拉 斯 罗 普 l a t h r o p 拉 普 利 r a p p l e y e 拉 普 斯 利 l a p s l e y 拉 格 比 r u g b y 拉 梅 尔 r u m m e l 拉 梅 尔 r u m m e l l 拉 波 特 l a p o r t e 拉 波 特 r a p p o r t 拉 滕 r a t t e n 拉 滕 w r a t t e n 拉 热 尔 l a z u r e 拉 特 巴 赫 l a r t e r b a c h 拉 特 格 斯 r u t g e r s 拉 特 雷 r a t t r a y 拉 盖 瑟 l a g a t h e r 拉 福 莱 特 l a f o l l e t t e 拉 米 尼 l a r m i n i e 拉 米 斯 l u m m i s 拉 肯 l a r k e n 拉 茨 l a t e s 拉 萨 尔 l a s s a l l e 拉 萨 拉 l a s a l a 拉 迪 克 r u d i c k 拉 铁 摩 尔 l a t i m o r e 拉 铁 摩 尔 l a t t i m o r e 拉 马 迪 l a m a d e 拉 鲁 法 l a r u f f a 拜 兰 b y l a n d 拜 厄 斯 b y a r s 拜 厄 斯 b y a s s 拜 德 尔 b y d e r 拜 福 德 b y f o r d 摩 西 m o s e s 撒 尔 本 t h a l b e n 文 兹 v e n z 文 图 拉 v e n t u r a 斤 克 z i n k 斤 布 尔 z i m b l e 斯 丘 斯 s k u c e 斯 丘 斯 s k u s e 斯 佩 克 s p e c k 斯 佩 克 特 s p e c t o r 斯 佩 兰 迪 奥 s p e r a n d e o 斯 佩 希 特 s p e c h t 斯 佩 里 s p e r r y 斯 克 拉 雷 维 茨 s k l a r w i t z 斯 克 林 s k r i n e 斯 克 林 杰 s c r i m g e o u r 斯 克 林 杰 s c r y m g e o u r 斯 克 林 肖 s c r i m s h a w 斯 克 罗 金 s c r o g g i n 斯 克 里 布 纳 s c r i b n e r 斯 克 鲁 顿 s c r u t t o n 斯 凯 夫 s c a i f e 斯 卡 尔 拉 普 s k a l l e r u p 斯 卡 曼 s c a r m a n 斯 卡 格 斯 s c a g g s 斯 卡 格 斯 s k a g g s 斯 图 勒 s t u l l e r 斯 图 尔 特 s t e u a r t 斯 图 尔 特 s t e w a r t 斯 图 尔 特 s t u a r t 斯 图 拉 托 s t e w l a t o 斯 坎 伦 s c a n l a n 斯 坎 伦 s c a n l o n 斯 坦 伍 德 s t a n w o o d 斯 坦 哈 特 s t a n h a r d t 斯 坦 哈 特 s t e i n h a r d t 斯 坦 哈 特 s t e i n h a r t 斯 坦 斯 伯 里 s t a n s b e r r y 斯 坦 斯 伯 里 s t a n s b u r y 斯 坦 曼 s t e i n m a n 斯 坦 格 林 s t a n g l i n 斯 坦 福 德 s t a m f o r d 斯 坦 福 斯 s t a i n f o r t h 斯 坦 韦 s t a n w a y 斯 坦 韦 s t e i n w a y 斯 基 尔 贝 克 s k i l b e c k 斯 基 恩 s k e e n 斯 基 恩 s k e n e 斯 基 芬 顿 s k i f f i n g t o n 斯 塔 克 s t a c k 斯 塔 克 s t a r c k 斯 塔 克 s t a r k 斯 塔 克 s t a r k e 斯 塔 克 s t u c k 斯 塔 尔 茨 s t u l t s 斯 塔 布 菲 尔 德 s t u b b l e f i e l d 斯 塔 格 斯 s t a g g e r s 斯 塔 格 斯 s t a g g s 斯 塔 迪 s t a d i e 斯 塔 迪 s t u d d y 斯 塔 迪 s t u d y 斯 太 德 尔 s t e i d l e 斯 太 斯 s t a c e 斯 太 曼 s t a i m a n 斯 太 纳 s t a y n e r 斯 奎 勒 尔 s q u i r r e l l 斯 威 德 勒 s w e e d l e r 斯 威 德 勒 s w i d l e r 斯 威 格 s w i g e r 斯 威 特 哈 特 s w e e t h e a r t 斯 威 里 斯 s w e e r i s 斯 廷 奇 菲 尔 德 s t i n c h f i e l d 斯 彭 斯 s p e n c e 斯 彭 斯 s p e n s 斯 托 克 布 鲁 克 s t o c k b r o k e r 斯 托 克 维 斯 s t o k v i s 斯 托 克 豪 森 s t o c k h a u s e n 斯 托 尼 s t o n e y 斯 托 纳 s t o n e r 斯 托 纳 s t o n o r 斯 托 茨 弗 斯 s t o l t z f u s 斯 托 达 尔 s t o r d a h l 斯 托 里 s t o r e y 斯 托 里 s t o r r i e 斯 托 里 s t o r y 斯 文 加 利 s v e n g a l i 斯 旺 克 s w a n k 斯 旺 戈 s w a n g o 斯 普 尔 霍 夫 s p o e l h o f 斯 普 拉 特 s p r a t 斯 普 拉 特 s p r a t t 斯 普 林 格 s p r i n g e r 斯 林 斯 比 s l i n g s b y 斯 梅 瑟 斯 特 s m e t h u r s t 斯 洛 维 特 s l o v i t e r 斯 派 德 尔 s p e i d e l 斯 派 德 尔 s p i d l e 斯 温 德 勒 s w i n d l e r 斯 温 格 尔 s w i n g l e 斯 温 登 s w i n d o n 斯 温 纳 顿 s w i n e r t o n 斯 温 纳 顿 s w i n n e r t o n 斯 温 纳 顿 s w y n n e r t o n 斯 滕 代 尔 s t e r n d a l e 斯 滕 尼 斯 s t e n n i s 斯 滕 黑 根 s t e r n h a g e n 斯 潘 格 拉 德 s p a n g r u d 斯 特 兰 克 斯 s t r a n k s 斯 特 兰 奇 洛 夫 s t r a n g e l o v e 斯 特 兰 隆 s t r a n d l u n d 斯 特 劳 布 s t r a u b 斯 特 劳 布 s t r a u b e 斯 特 尔 曼 s t e l l m a n 斯 特 岑 穆 勒 s t e l z e n m u l l e r 斯 特 布 尔 s t a b l e 斯 特 布 尔 斯 s t a b l e s 斯 特 布 尔 福 斯 s t a b l e f o r t h 斯 特 德 s t e a d 斯 特 恩 s t e a r n 斯 特 恩 s t e a r n e 斯 特 恩 s t e r n 斯 特 恩 s t u r n 斯 特 拉 勒 姆 s t r a l e m 斯 特 拉 斯 登 s t r a t h e d e n 斯 特 森 s t e t s o n 斯 特 罗 瑟 s t r o t h e r 斯 特 罗 纳 克 s t r o n a c h 斯 特 罗 维 格 s t r o w i g 斯 特 罗 萨 克 s t r o s a c k e r 斯 特 赖 德 尔 s t r e i d l 斯 特 赖 茨 s t r e i t z 斯 特 里 布 s t r e e b 斯 特 鲁 伊 克 s t r u y k 斯 特 鲁 克 s t r o o k 斯 特 龙 瓦 尔 s t r o m v a l l 斯 瓦 恩 s v a h n 斯 瓦 茨 曼 s h w a r t z m a n 斯 皮 尔 s p e a r 斯 皮 尔 s p e a r e 斯 皮 尔 s p e e r 斯 皮 尔 s p e i r 斯 皮 尔 s p i e r 斯 皮 德 s p e e d 斯 皮 格 尔 曼 s p i e g e l m a n 斯 科 兰 德 s c h o l l a n d e r 斯 科 尔 尼 克 s k o l n i k 斯 穆 特 s m o o t 斯 米 亚 洛 夫 斯 基 s m i a l o w s k y 斯 维 里 根 s v e r i g a n 斯 罗 克 莫 顿 t h r o c k m o r t o n 斯 莫 尔 卡 s m o l k a 斯 莫 尔 金 s m o l k i n 斯 莱 奇 s l e d g e 斯 莱 恩 s l a n e 斯 莱 文 s l a v i n 斯 莱 文 s l e v i n 斯 蒂 宾 s t u e b i n g 斯 蒂 布 斯 s t i b b s 斯 蒂 弗 斯 s t e v e r s 斯 蒂 弗 斯 s t i v e r s 斯 蒂 特 s t i t t 斯 蒂 芬 s t e f a n 斯 蒂 芬 s t e p h a n 斯 蒂 芬 s t e p h e n 斯 蒂 芬 尼 s t i p h a n i e 斯 蒂 芬 斯 s t e f f e n s 斯 蒂 芬 斯 s t e p h e n s 斯 雷 尔 克 德 t h r e l k e l d 斯 韦 尔 斯 s w a l e s 斯 韦 策 s w e i t z e r 斯 顿 普 s t u m p 斯 顿 茨 s t u n t z 方 森 f o n n s o n 方 特 罗 伊 f a u n t r o y 方 齐 v a n z i 施 伦 克 s c h r u n k 施 利 施 曼 s c h l i e s s m a n n 施 利 考 s c h l i c k a u 施 利 茨 s c h l i t z 施 尼 特 曼 s c h n i t t m a n n 施 托 格 伦 s h t o g r e n 施 拉 克 s c h r a c k 施 拉 布 索 尔 s h r u b s o l e 施 文 克 s c h w e n c k 施 文 克 s c h w e n k 施 文 德 曼 s c h w e n d e m a n 施 梅 克 比 尔 s c h m e c k e b i e r 施 梅 尔 策 s c h m e l t z e r 施 沃 特 s c h w e r d t 施 瓦 布 s c h w a b 施 瓦 布 s c h w a b e 施 穆 尔 茨 s c h m u l t s 施 维 恩 s c h w i e n 施 莱 特 尔 s c h l e i t e r 施 莱 默 s c h l e m m e r 施 赖 伯 s c h r e i b e r 施 赖 伯 s c h r i b e r 施 韦 克 s c h w e i k e r 施 韦 特 s c h w e i t e r 旺 特 纳 w o n t n e r 昂 德 霍 尔 u n d e r h a l l 昂 格 雷 尔 u n g e r e r 昂 比 冈 u n b e g a u n 昂 温 u n w i n 昂 特 里 纳 u n t e r i n e r 昂 蒂 u n t i 昆 塔 斯 q u i n t u s 昆 比 q u i m b y 昆 比 q u i n b y 昆 顿 q u a i n t o n 昆 顿 q u e n t o n 昆 顿 q u i n t o n 明 德 林 m i n d l i n 明 歇 尔 m i n s h a l l 普 伦 基 特 p l u n k e t 普 伦 基 特 p l u n k e t t 普 伦 普 特 里 p l u m p t r e 普 利 特 p l e a t e r 普 利 特 p l i t t 普 利 蒙 p l i m m o n 普 劳 特 p l a u t 普 劳 特 p r o u t 普 卢 托 p l u t o 普 尔 特 尼 p u l t e n e y 普 帕 p u p p a 普 拉 多 p r a d o 普 拉 梅 拉 p l a m e l l a 普 拉 滕 p l a t t e n 普 林 塞 普 p r i n s e p 普 林 斯 p r i n c e 普 林 斯 p r i n s 普 林 格 p u l l i n g e r 普 珀 p u p p e 普 瓦 p o i x 普 罗 克 斯 p r o u l x 普 罗 富 莫 p r o f u m o 普 罗 巴 斯 科 p r o b a s c o 普 罗 斯 佩 里 p r o s p e r i 普 罗 斯 罗 p r o t h r o 普 莱 恩 p l a i n 普 莱 恩 p u l l e i n 普 莱 曾 顿 p l e a s o n t o n 普 西 p u s e y 普 谢 克 p u s c h e c k 普 赖 克 p r y k e 普 赖 姆 p r i m e 普 赖 泽 p r i z e r 普 赖 默 斯 p r i m u s 普 里 p u r e y 普 里 p u r y 普 里 斯 p r e e c e 普 里 斯 特 兰 p r i e s t l a n d 普 里 斯 特 曼 p r i s s t m a n 普 雷 斯 蒂 奇 p r e s t i g e 普 雷 沃 斯 特 p r e v o s t 普 雷 蒂 曼 p r e t t y m a n 普 鲁 p r e w 曼 克 尔 m a n k e l 曼 宁 m a n n i n 曼 宁 m a n n i n g 曼 库 西 m a n c u s i 曼 德 沙 伊 德 m a n d e r s c h e i d 曼 根 m a n g a n 曼 根 m a n g u n 曼 格 尔 斯 多 夫 m a n g e l s d o r f 曼 特 尔 m a n t e l l 曼 福 德 m a n f o r d 曼 纽 尔 m a n u e l 曼 考 尔 m a n c a l l 曼 蒂 m a n t e y 曼 蒂 m a n t l e 曼 里 m a n r y 曾 佩 尔 z e m p e l 朗 伯 顿 l o n g b o t t o m 朗 卡 w r o n k a 朗 宁 根 r o n n i n g e n 朗 尼 l o n n i e 朗 布 尔 斯 r u m b l e s 朗 布 雷 克 l o n g b r a k e 朗 德 r o u n d 朗 德 尔 r o u n d e l l 朗 德 尔 r u n d a l l 朗 德 尔 r u n d e l l 朗 德 尔 r u n d l e 朗 根 l o n g a n 朗 格 斯 特 l o n g e s t 朗 登 l o n g d e n 朗 登 r o n d o n 朗 莫 尔 l o n g m o r e 本 宁 b e n n i n g 本 尼 斯 b e n n i s 本 布 里 b e m b r y 本 戈 b e n g o u g h 本 托 内 利 b e n t o n e l l i 本 斯 旺 格 b e n s w a n g e r 本 斯 科 特 b e n s c o t e r 本 森 b e n s o n 本 特 尔 b e n t e l 朱 克 曼 z u c k e r m a n 朱 安 j u h a n 朱 斯 伯 里 j e w s b u r y 朱 里 j u r y 李 普 曼 l i p m a n 李 普 曼 l i p m a n n 李 普 曼 l i p p m a n 李 普 曼 l i p p m a n n 杜 伦 d u r e n 杜 尔 德 d u a l d 杜 布 罗 d u b r o w 杜 德 尔 d u d e r 杜 戈 夫 d u g o f f 杜 科 蒙 d u c o m m u n 杜 莫 里 埃 d u m a u r i e r 杜 萨 德 d u s a r d 杜 西 特 d o u t h i t 杜 里 龙 d u r i r o n 杰 克 曼 j a c k m a n 杰 利 g e r l y 杰 利 j e l l e y 杰 利 j e l l y 杰 卡 隆 j a c k a l o n e 杰 夫 特 j e f t 杰 尔 斯 特 鲁 普 j e l s t r u p 杰 戈 j a g o 杰 拉 蒂 g e r a g h t y 杰 森 j a y s o n 杰 森 j e s s o n 杰 西 纳 j a c y n a 杰 里 米 j e r e m y 杰 马 德 g e r m a d 杰 鲁 尔 j e r o o l 杰 鲁 撒 j e r u t h a 林 乔 德 l i n d j o r d 林 伯 l i m b a u g h 林 克 l i n c k 林 克 l i n k 林 克 r i n c k 林 克 r i n k e r 林 兰 r i n g l a n d 林 哈 德 l i e n h a r d 林 布 雷 l i m b r a y 林 托 特 l i n t o t t 林 格 勒 r i n g l e r 林 格 尔 巴 克 l i n g e l b a c h 林 肯 l i n c o l n 林 肯 巴 克 r i n k e n b a c h 查 卡 莱 斯 c h a k a l e s 查 塔 姆 c h a t h a m 查 德 韦 尔 c h a d w e l l 查 斯 特 克 c h a s t e k 查 林 杰 c h a l l e n g e r 查 迪 c h a r d y 查 里 顿 c h a r i t o n 柯 克 伍 德 k i r k w o o d 柯 克 斯 k i r k s 柯 姆 c u r m e 柯 特 兰 k i r t l a n d 柯 肯 德 尔 k i r k e n d a l l 柯 蒂 亚 c u r t i a 格 伦 康 纳 g l e n c o n n e r 格 伦 迪 g l e n d a y 格 伦 迪 g r u n d y 格 利 克 g l e e c k 格 利 克 g l i c k 格 利 姆 g l y m 格 利 德 g l e e d 格 劳 特 g r o u t 格 卢 克 曼 g l u c k m a n 格 威 内 特 g w i n e t t 格 宾 斯 g u b b i n s 格 尼 g u r n e y 格 廷 g e t t i n g 格 廷 g u e r t i n 格 廷 斯 g e t t i n g s 格 怀 尔 g w y e r 格 拉 什 g l a s h 格 拉 宁 格 g r a n i n g e r 格 拉 斯 福 德 g l a s s f o r d 格 拉 芬 g r a f f i n 格 拉 韦 尔 g r a v e l 格 文 g i r v i n 格 斯 特 尔 g e r s t e l l 格 斯 里 g u t h e r y 格 普 g u p 格 曾 g u t z o n 格 杰 g e r g e r 格 林 宁 g r i n n i n g 格 林 希 尔 g r e e n h i l l 格 林 斯 蒂 德 g r i n s t e a d 格 沃 特 金 g w a t k i n 格 特 鲁 德 g e r t r u d e 格 瓦 尔 科 g u a r c o 格 申 克 龙 g e r s c h e n k r o n 格 纳 姆 g n a m 格 罗 尔 克 g r o a r k 格 罗 斯 尼 克 尔 g r o s s n i c k l e 格 罗 纳 g r o n e r 格 罗 霍 斯 基 g r o h o w s k i 格 莱 兹 g l a d e s 格 莱 塞 g l e s z e r 格 莱 尼 丝 g l e n y s 格 莱 德 希 尔 g l e d h i l l 格 莱 纳 德 g l e n a r d 格 菲 g u f f y 格 赖 德 g r y d e r 格 里 姆 肖 g r i m s h a w 格 里 宾 g r i b b i n 格 里 尔 g r e e l 格 里 尔 g r e e r 格 里 尔 g r i e r 格 里 尔 g r i l l e 格 里 尼 翁 g r i g n o n 格 里 普 g r e e p 格 里 茨 g e r r i t s 格 里 茨 g r i t s 格 里 蒙 普 g r i m o n p 格 雷 姆 g r a e m e 格 雷 姆 g r e i m 格 雷 森 斯 g r e s s e n s 格 雷 珀 g r a p e r 格 雷 维 尔 g r e v i l l e 格 雷 西 g r a c e y 格 雷 西 g r a c i e 格 韦 茨 曼 g w e r t z m a n 格 鲁 奇 g r u t s c h 格 鲁 辛 德 g r u s i n d e 桑 兹 s a n d e s 桑 兹 s a n d s 桑 兹 s a n d y s 桑 基 s a n k e y 桑 德 加 德 s o n d e r g a r d 桑 德 尔 斯 s a n d e l s 桑 德 比 s a u n d b y 桑 德 豪 斯 s a n d h a u s 桑 森 s a n s o n 桑 特 曼 s a n t m a n 桑 瑟 姆 s a n s o m 桑 瑟 姆 s a n s o m e 桑 登 s a n d o n 梅 利 莎 m e l i s s a 梅 哈 菲 m e h a f f e y 梅 哈 菲 m e h a f f y 梅 因 m a i n 梅 因 m a i n e 梅 因 兰 m a i n l a n d 梅 尔 彻 m e l c h e r 梅 尔 斯 m a i e r s 梅 尔 斯 m a i r s 梅 尔 滕 斯 m e h r t e n s 梅 尔 豪 斯 m e l h o u s e 梅 尔 齐 纳 m i e l z i n e r 梅 岑 鲍 姆 m e t z e n b a u m 梅 德 兰 m e d l a n d 梅 德 福 m e d f o r d 梅 德 韦 m e d w a y 梅 斯 基 尔 m e s k i l l 梅 热 勒 m e s u r i e r 梅 瑟 密 斯 m e s s e r s m i t h 梅 茨 曼 m e t z m a n 梅 霍 内 m e h o r n a y 森 德 伯 格 s u n d b o r g 森 纳 瓦 尔 德 s e n n e w a l d 森 蒂 莫 尔 s e n t i m o r e 森 达 克 s e n d a k 欣 德 h i n d 欣 德 h i n d e 欣 德 曼 h i n d m a n 欣 谢 尔 伍 德 h i n s h e l w o o d 欣 鲍 姆 s h e i n b a u m 欧 文 e r v i n 欧 文 e r v i n e 欧 文 e r w i n 欧 文 i r v i n e 欧 文 i r v i n g 欧 文 i r w i n 欧 文 o w a i n 欧 文 o w a n 欧 文 o w e n 比 伊 斯 b u i s 比 伦 b i l l e n 比 克 利 b e a k l e y 比 克 利 b i c k l e y 比 利 拉 基 斯 b i l i r a k i s 比 尔 b e a l 比 尔 b e a l e 比 尔 b e a l l 比 尔 b e a r e 比 尔 b e e r 比 尔 b i e r 比 尔 b i l l 比 尔 b u e l 比 尔 b u e l l 比 尔 兹 莫 尔 b e a r d s m o r e 比 尔 德 伍 德 b e a r d w o o d 比 尔 沃 斯 b i e r w i r t h 比 尼 恩 b i n i o n 比 尼 恩 b i n y o n 比 彻 姆 b e a c h a m 比 彻 姆 b e a u c h a m p 比 彻 姆 b e e c h a m 比 德 米 德 b i d m e a d 比 德 韦 尔 b i d w e l l 比 恩 b e a n 比 恩 b e a n e 比 恩 b i e n 比 拉 b e u l a h 比 格 利 b e e g h l y 比 格 利 b i g l e y 比 格 斯 b i g g e r s 比 格 斯 b i g g s 比 洪 b i h u m 比 登 兹 b u d e n z 比 萨 特 b i s a t 比 达 姆 b e e d h a m 汉 堡 h a m b u r g 汉 堡 h a m b u r g e r 汉 夫 曼 h a n f m a n n 汉 斯 福 德 h a n s f o r d 汉 普 斯 特 德 h a m p s t e a d 汉 普 斯 通 h u m p s t o n e 汉 纳 福 德 h a n n a f o r d 汉 迪 赛 德 h a n d y s i d e 汉 默 h a m o r 汉 默 h a n m e r 沃 乔 恩 w a t c h o r n 沃 伊 沃 达 v o j v o d a 沃 伊 齐 v o y s e y 沃 兰 v o l l a n d 沃 兰 v o r a n 沃 塞 尔 v u r s e l l 沃 塞 尔 w a s e l 沃 尔 卡 斯 v o l k a r s 沃 尔 夫 基 尔 w o l f k i l l 沃 尔 夫 森 w o l f s o n 沃 尔 夫 森 w o r f s o n 沃 尔 廷 v o l t i n 沃 尔 德 伦 w a l d r o n 沃 尔 德 罗 普 w a l d r o p 沃 尔 登 w a l d e n 沃 尔 登 w a l d o n 沃 尔 罗 德 w a l r o d 沃 尔 韦 勒 v o l w i l e r 沃 德 尔 w a d d e l l 沃 德 尔 w a d d l e 沃 德 尔 w a r d a l l 沃 德 尔 w a r d e l l 沃 德 尔 w a r d l e 沃 德 尔 w e r d e l 沃 德 里 v a w d r e y 沃 德 里 v o d r e y 沃 德 雷 普 w a r d r e p 沃 恩 v a u g h a n 沃 恩 v a u g h n 沃 恩 w a l n 沃 恩 w a n n 沃 恩 w a r n 沃 恩 w a r n e 沃 恩 w e a r n 沃 恩 w e r n 沃 托 v o t o 沃 斯 尼 普 w o r s n i p 沃 林 斯 w o l i n s 沃 森 w a d s o n 沃 森 w a r t h e n 沃 森 w a s o n 沃 森 w a s s o n 沃 森 w a t h e n 沃 森 w a t h o n 沃 森 w a t s o n 沃 森 w o r t h e n 沃 特 利 w a t t l e y 沃 特 利 w o r t l e y 沃 特 尔 斯 w a t t l e s 沃 特 尔 顿 w h a t t l e t o n 沃 特 罗 斯 w a t r o u s 沃 特 金 w a t c y n 沃 特 金 w a t k i n 沃 登 伯 格 w a r d e n b u r g 沃 谢 尔 v o s h e l l 沃 里 斯 v o o r h e e s 沃 里 斯 v o o r h i s 沃 里 斯 v o r i s 沃 里 斯 v o r i s e 沃 里 斯 w a r i t h 沃 里 斯 w a r r i s 沃 霍 尔 w a r h o l 沃 顿 w a r t o n 沃 顿 w a t t o n 沃 顿 w a u t o n 沃 顿 w h a r t o n 沃 顿 w h a t t o n 沃 顿 w o r t o n 沃 顿 w o t t o n 沃 默 斯 利 w o m e r s l e y 沙 伊 德 曼 s c h e i d e m a n n 沙 勒 s c h a l l e r 沙 勒 s c h a r e r 沙 勒 s c h a r r e r 沙 多 维 茨 s h a d o w i t z 沙 洛 s h a l l a w 沙 洛 s h a l l o w 沙 洛 s h a r l o w 沙 罗 克 s h a r r o c k 法 伦 瓦 尔 德 f a h r e w a l d 法 伯 f a r b e r 法 兰 克 豪 特 f r a n k f u r t e r 法 尔 布 雷 斯 f a l b r a i t h 法 尔 茨 格 拉 夫 p f a l t z g r a f f 法 巴 克 f a r b a c h 法 布 勒 f a b l e r 法 恩 科 姆 f a r n c o m b 法 扎 尔 f a z a r 法 斯 塔 德 f a r s t a d 法 林 登 f a r i n g d o n 法 西 克 f a s i c k 法 雷 尔 f a r r e l l 波 伊 利 p o i l e y 波 克 p a u k 波 利 佐 伊 迪 斯 p o l y z o i d e s 波 利 多 尔 p o l y d o r e 波 因 廷 p o y n t i n g 波 塔 莫 斯 p o t a m o s 波 夫 p o f f 波 尔 森 p o l s o n 波 尔 森 p o u l s e n 波 尔 森 p o u l s o n 波 托 卡 雷 罗 p o r t o c a r r e r o 波 拉 克 p o l l a c k 波 拉 克 p o l l a k 波 拉 尼 p o l a n y i 波 拉 德 p o l l a r d 波 斯 盖 特 p o s e g a t e 波 林 p a u l i n 波 林 p a u l i n e 波 林 p a u l i n g 波 林 p a u l l i n 波 林 p a u l l i n g 波 林 p o l i n g 波 林 p o l l i n 波 林 p o u l i n 波 林 顿 p o l l i n g t o n 波 格 伦 p o g r u n d 波 沃 斯 p o w a r s 波 特 哈 斯 特 p o t t h a s t 波 维 p o v e y 波 茨 p o a t e s 波 茨 p o a t s 波 茨 p o t t s 波 茨 克 p a u t z k e 泽 弗 奈 亚 z e p h a n i a h 泽 弗 特 z e f f e r t 泽 拜 纳 z e b i n a 泽 文 z e v i n 泽 格 尔 s o e r g e l 泽 特 兰 z e t l a n d 泽 特 尔 z e t t l e 泽 赫 伦 z u r h e l l e n 洛 伦 斯 l o r a n c e 洛 伦 斯 l o w r a n c e 洛 克 利 尔 l o c k l e a r 洛 克 哈 特 l o c k h a r t 洛 基 l o c k e y 洛 基 l o c k i 洛 基 l o k e y 洛 多 威 克 l o d o w i c k 洛 多 威 克 l o d o w i c k e 洛 夫 凯 l o v k a y 洛 夫 格 伦 l o f g r e n 洛 夫 特 豪 斯 l o f t h o u s e 洛 夫 登 l o v e d e n 洛 夫 莱 斯 l o v e l a c e 洛 夫 莱 斯 l o v e l e s s 洛 夫 里 奇 l o v e r i d g e 洛 布 拉 诺 l i b r a n o 洛 布 森 兹 l o b s e n z 洛 希 l o e s c h 洛 斯 罗 普 l o t h r o p 洛 格 l o g u e 洛 沙 克 l o s h a k 洛 维 茨 l o w i t z 洛 莱 斯 l o w l e s 洛 雷 特 l o r e t 洛 顿 l o r t o n 洛 马 基 l o m a c k y 洛 马 森 l o m a s o n 洛 鲁 索 l o r u s s o 派 尔 斯 p y l e s 海 克 h a y e k 海 克 h u y c k e 海 史 密 斯 h i g h s m i t h 海 因 吉 斯 h e i n t g e s 海 因 德 尔 h e i n d e l 海 因 策 尔 h e i n z e l 海 姆 斯 h i m e s 海 斯 克 尔 h e i s k e l l 海 斯 勒 h e i s l e r 海 斯 坦 h e i s t a n d 海 涅 曼 h e i n e m a n 海 涅 曼 h e i n e m a n n 海 特 兰 h e i t l a n d 海 纳 尔 h e i n l 海 蒙 德 h a y m o n d 海 门 丁 杰 h e m m e n d i n g e r 海 默 尔 h i g h m o r e 温 丁 斯 塔 德 w i n d i n g s t a d 温 伯 利 w i m b e r l y 温 伯 利 w y m b e r l e y 温 加 登 w y n g a a r d e n 温 加 登 w y n g a r d e n 温 塞 尔 w e n s e l 温 布 尔 w i m b l e 温 弗 雷 德 w i n f r e d 温 弗 雷 德 w y n f r e d 温 德 班 克 w i n d e b a n k 温 斯 w e i n s 温 斯 w i n c e 温 珀 w h y m p e r 温 达 斯 w i n d u s 潘 恩 p a n e 特 克 西 多 t e x i d o 特 利 t e l l y 特 利 t e r l e y 特 劳 t e r l a u 特 尔 费 夫 t e l f e v 特 德 t e d 特 德 t e d d e r 特 斯 拉 t e s l a 特 明 t e m i n 特 曼 t e r m a n 特 里 萨 t e r e s a 特 里 萨 t h e r e s a 特 龙 森 t h r o n s o n 玛 丽 m a r i e 玛 丽 m a r y 玛 尔 塔 m a r t a 玛 莎 m a r s h a 珀 内 尔 p u r n e l l 珀 加 维 p u r g a v i e 珀 尔 p e a r l 珀 尔 p e r l e 珀 尔 曼 p e r l m a n 珀 柳 p e l l e w 珀 森 p e r s o n 珀 纳 尔 p e r n a l l 班 厄 姆 b a n g h a m 班 宁 b a n n i n g 班 尼 斯 特 b a n n i s t e r 班 纳 德 b a n n a r d 班 纳 罗 特 b a n n e r o t 理 查 兹 r i c h a r d s 瑟 坎 普 s u r k a m p 瑟 法 蒂 s e r f a t y 瓦 伊 格 v i g a r 瓦 伊 格 v i g e r 瓦 伦 w a h l e n 瓦 伦 w a r e n n e 瓦 克 w a c k 瓦 内 v a r n a y 瓦 卢 切 克 v a l u c h e k 瓦 卢 瓦 v a l o i s 瓦 尔 斯 特 龙 w a h l s t r o m 瓦 尼 什 v a n e c h 瓦 弗 尔 v a r v l e 瓦 恩 兰 w i n e l a n d 瓦 恩 斯 w i n e s 瓦 拉 塞 克 v a l a s e k 瓦 斯 v a s s 瓦 斯 v a s s e 瓦 茨 v a g t s 瓦 达 曼 v a r d a m a n 瓦 高 v a g a w 甘 兹 g a n z 甘 兹 弗 赖 德 g a n z f r i e d 甘 利 g a n l e y 甘 蒙 g a m m o n 甲 宁 j a n e e n 甲 宁 j a n i n 甲 曼 j a r m a n 甲 纳 金 j a r n a g i n 甲 维 斯 j a r v i s 甲 维 斯 j u r v i s 甲 西 j a s z i 申 肯 伯 格 s c h e n k e n b e r g 登 伯 d e m b e r 登 伯 d e n b o 登 内 尔 d e n n e l l 登 特 里 蒙 特 d e n t r e m o n t 皮 克 斯 利 p i x l e y 皮 克 索 姆 p i c k t h o r m 皮 卡 弗 p i c c a v e r 皮 尔 尼 p i r n i e 皮 尔 庞 特 p i e r p o n t 皮 尔 庞 特 p i e r r e p o n t 皮 尔 登 p e a r d o n 皮 尤 p e w 皮 尤 p u e 皮 尤 p u g h 皮 查 p i c h a 皮 特 p e a t 皮 特 p e e t 皮 特 p e t e 皮 特 p i e t 皮 特 p i t t 皮 特 p i t t e r 皮 索 尔 p i e r s o l 盖 g e h 盖 尼 g a i n e y 盖 拉 特 g e l a t t 盖 斯 曼 g a i s m a n 盖 斯 福 德 g a s i f o r d 盖 根 g e o g h e g a n 盖 格 纳 g e n g e r 盖 泽 尔 g e i s e l 盖 特 森 g a t e s o n 盖 瑟 g a i s s e r 盖 瑟 g a i t h e r 盖 米 林 g a m e l i n 盖 纳 姆 g a i n h a m 盖 茨 克 尔 g a i t s k e l l 盖 蒙 g a m o n 盖 顿 g u y t o n 福 f a w 福 克 尔 f o r q u e r 福 克 斯 沃 格 f o x v o g 福 克 诺 f a l k n o r 福 内 尔 f o r n e l l 福 利 克 f o l l i c k 福 卡 斯 特 f o r e c a s t e r 福 奇 f o e g e 福 奇 f o u c h 福 奇 f o u t c h 福 奇 斯 p h o d g e s 福 尔 克 斯 f o w l k e s 福 尔 克 纳 f a l c o n e r 福 尔 曼 f o l l m a n 福 尔 曼 f o r e m a n 福 尔 茨 f o l t s 福 尔 茨 f o l t z 福 尔 茨 f o l z 福 阿 f o a 科 休 c o c h o u 科 休 c o h u 科 利 根 c o l l i g a n 科 吉 歇 尔 c o g g e s h a l l 科 塔 伦 c o a t a l e n 科 尔 宾 c o r b i n 科 尔 宾 c o r b y n 科 尔 弗 c o l v e r 科 尔 弗 莱 什 c o l f l e s h 科 尔 斯 顿 c o l s t o n 科 尔 格 罗 夫 c o l e g r o v e 科 尔 登 c o l d e n 科 尔 福 德 c o l f o r d 科 尔 科 k o l k o 科 尔 钦 k o l c h i n 科 德 斯 曼 c o r d e s m a n 科 扎 德 c o z a d 科 托 斯 c o t t o s 科 拉 略 c o r r a l l o 科 拉 科 特 c o l l a c o t t 科 拉 贝 克 k o r a b a c k 科 斯 坦 萨 c o s t a n z a 科 斯 格 里 夫 c o s g r i f f 科 斯 特 斯 k o s t e r s 科 斯 蒂 克 c o s t i c k 科 普 利 c o p l e y 科 潘 k o p a n 科 特 基 k o t t k e 科 特 尔 c o t t l e 科 特 里 尔 c o t t e r i l l 科 特 里 尔 c o t t r i l l 科 纳 汉 c o n a h a n 科 芬 达 弗 c o f f i n d a f f e r 科 莉 娜 c o l i n a 科 萨 尔 c o s s a r 科 西 c o r s i 科 西 c o s s e y 科 迪 斯 k o d i s 科 雷 特 c o r e t t e 科 顿 c o t t o n 科 顿 c o t t o n e 科 默 福 德 c o m e r f o r d 穆 兰 m u r a n e 穆 利 诺 斯 m u l i n o s 穆 塞 尔 m e u s e l 穆 尔 菲 尔 德 m o o r f i e l d 穆 尼 奥 斯 m u n o z 穆 拉 m o o r a 穆 拉 卡 米 m u r a k a m i 穆 拉 特 m u r a t 穆 斯 布 鲁 格 m o o s b r u g g e r 穆 泽 m e u s e r 穆 迪 m o o d i e 穆 迪 m o o d y 穆 霍 宁 m u h o n e n 米 什 肯 m i s h c o n 米 伦 m i l l a n 米 伦 m i l l e n 米 克 m e a k e r 米 克 m e e k 米 克 m e e k e r 米 克 m i c k 米 克 m u e c k e 米 克 尔 雷 德 m e i k l e r e d 米 切 姆 m e c h e m 米 切 姆 m i t c h e m 米 切 森 m i t c h e s o n 米 利 安 希 普 m i l l i a n s h i p 米 勒 m i l e u r 米 勒 m i l l a r 米 勒 m i l l e r 米 勒 m i l l o r 米 勒 m u e l l e r 米 哈 尔 斯 基 m i c h a l s k i 米 夫 萨 德 m i f s u d 米 姆 m e e m 米 姆 斯 m i m m s 米 姆 斯 m i m s 米 尔 威 m i l l w e e 米 尔 斯 基 m i r s k y 米 尔 特 m i l t 米 尔 索 普 m i l l s o p 米 尔 索 普 m i l t h o r p e 米 库 m i c o u 米 德 尔 布 鲁 克 m i d d l e b r o o k 米 拉 贝 利 m i r a b e l l i 米 斯 克 m e e s k e 米 特 m e e t 米 特 m e t e r 米 特 m i t t e r 米 诺 格 m i n o g u e 米 金 m e a k i n 米 金 m e e k i n 米 金 m i c k i n g 米 钦 森 m i t c h i n s o n 米 陶 尔 m i t t a u e r 米 顿 m i t t o n 索 伊 弗 特 s e u f e r t 索 切 克 s o u c e k 索 尔 顿 s a l t o n 索 尔 顿 s a l t o u n 索 恩 伯 勒 t h o r n b u r g h 索 拉 纳 s o l a n a 索 斯 s a u s e 索 斯 s o t h 索 斯 s o u t h 索 斯 科 特 s o u t h c o t e 索 斯 科 特 s o u t h c o t t 索 普 t h o r p 索 普 t h o r p e 索 瑟 姆 s o u t h a m 索 瓦 格 s o v a g 索 皮 特 s o p p i t t 索 科 拉 尔 s o c o l a r 索 罗 金 s o r o k i n 索 莫 兹 加 德 t h o r m o d s g a r d 索 莱 尔 s o h l e r 索 莱 尔 s o l e r 索 莱 尔 s o l l e r 索 莱 尔 s o w l e r 索 萨 蒙 s o s s a m o n 索 萨 诺 s o r z a n o 索 西 s a u t h e y 索 西 s o u t h e e 索 里 s a w r e y 索 里 s o w r e y 索 马 里 兹 s a u m a r e z 索 马 里 兹 s a u s m a r e z 约 伊 克 j e u c k 约 克 j o c h e r 约 克 y o c k 约 克 y o r k 约 克 y o r k e 约 吉 y o g i 约 埃 y o h e 约 恩 e o i n 约 恩 y o h n 约 特 y a c h t 约 瑟 夫 j o s e f 约 瑟 夫 j o s p h 约 翰 娜 j o h a n n a 约 翰 尼 j o h n n i e 约 翰 尼 j o h n n y 纳 尔 德 n a l d e r 纳 斯 比 n a s b y 纳 洛 夫 n e r l o v e 纳 特 威 克 n a t w i c k 纳 特 森 n a t s o n 纳 特 森 n u t s o n 纳 索 n a s s a u 纳 金 n a g e a n 纽 伦 n e w l u n 纽 兰 兹 n e w l a n d 纽 兰 兹 n e w l a n d s 纽 厄 尔 n e w e l l 纽 哈 特 n e u h a r t 纽 扎 姆 n e w z a m 纽 林 n e w l i n 纽 林 n e w l i n g 纽 沃 斯 n e u w o r t h 纽 米 勒 n e u m i l l e r 绍 默 s c h o m e r 维 勒 v e i l l e r 维 勒 v i e l e 维 勒 v i l l a r 维 基 奥 拉 v i c c h i o l l a 维 塔 v i t a 维 奇 尼 v i c i n i 维 奥 拉 v i o l a 维 布 朗 斯 基 v e r b l u n s k y 维 德 v e d d e r 维 德 v e i d 维 戈 v e g o 维 拉 斯 v i l a s 维 格 哈 特 w i e g h a r t 维 格 诺 德 v i g n e a u d 维 特 尔 v e t t e r 维 特 拉 西 尔 v y t l a c i l 维 纳 亚 克 v i n a y a k 维 绍 w i s c h o w 维 诺 克 v i n o c u r 维 里 克 v e r e k e r 维 里 克 v e r r i c k 维 雷 里 斯 v e r e r i s 维 齐 v e a s e y 维 齐 v e a z e y 维 齐 v e a z i e 维 齐 v e y s e y 罗 伊 斯 r e u s s 罗 伊 斯 r o y c e 罗 伊 斯 r o y s 罗 伊 斯 r o y s e 罗 伊 科 r o y k o 罗 伊 贝 尔 r o y b e l 罗 伯 肖 r o b e r t s h a w 罗 克 林 r o c h l i n 罗 兰 兹 r o e l a n d s 罗 切 斯 特 r o c h e s t e r 罗 利 克 r o l l i c k 罗 塞 利 尼 r o s e l l i n i 罗 塞 利 尼 r o s s e l l i n i 罗 姆 尼 r o m n e y 罗 弗 r o e v e r 罗 弗 r o v e r 罗 德 r h o d e 罗 德 r o a d 罗 德 r o d 罗 德 r o d d 罗 德 r o d e 罗 德 r o e d e r 罗 德 r o h d e 罗 德 布 什 r o d e b u s h 罗 恩 r a w n 罗 恩 r h a w n 罗 恩 r h o n e 罗 恩 r o a n 罗 恩 r o a n e 罗 恩 r o n 罗 恩 r o w a n 罗 恩 r o w e n 罗 文 斯 坦 r o v e n s t i n e 罗 斯 克 兰 斯 r o s e c r a n s 罗 斯 基 r a w s k i 罗 斯 林 r o s l i n g 罗 斯 林 r o s s l y n 罗 斯 维 尔 r o s e v e a r e 罗 明 杰 r o m i n g e r 罗 普 肖 r o p s h a w 罗 林 斯 r a w l i n g s 罗 林 斯 r a w l i n s 罗 林 斯 r o l l i n s 罗 林 森 r a w l i n s o n 罗 林 森 r o l l i n s o n 罗 林 森 r o w l i n g s o n 罗 梅 尔 r o m m e l 罗 森 代 尔 r o s e n d a l e 罗 森 曼 r o s e n m a n 罗 森 沃 尔 r o s e n w a l l 罗 森 洛 夫 r o s e n l o f 罗 森 茨 韦 格 r o s e n z w e i g 罗 比 切 克 r o b i c h e k 罗 比 斯 琼 r o b i s c h o n 罗 洛 克 r o l l o c k 罗 滕 哈 默 r o t e n h a m m e r 罗 特 曼 r o t t m a n 罗 瑟 威 克 r o t h e r w i c k 罗 米 格 r o m i g 罗 维 尔 r o v e r e 罗 萨 斯 科 r o s a s c o 罗 迪 斯 r o d i s 罗 马 r o m a 耀 亨 j a u c h e m 考 厄 姆 c o w h a m 考 尔 德 黑 德 c a l d e r h e a d 考 尔 迪 科 特 c a l d i c o t t 考 德 里 c a u d l e 考 德 里 c o w d r y 考 特 c a w t e 考 特 c o u r t 考 茨 c o u r t s 考 茨 k a u t z 考 茨 k o u t s 耶 尔 德 y e l d e l l 耶 恩 斯 y e a r n s 耶 扎 y e r z a 耶 普 尔 y e a p l e 耶 洛 利 斯 y e l l o w l e s s 耶 洛 特 y e l l o t 耶 胡 迪 y e h u d i 肖 s c h a w 肖 s h a w 肖 s h o w 肖 塔 s c h o t t a 肖 夫 勒 s c h a u f f l e r 肖 尔 代 斯 s h o u l d i c e 肖 沃 斯 s h o w e r s 肖 维 尔 s h o v e l l 肖 维 尔 s h o w e l 肖 维 尔 s h o w e l l 肖 赫 s c h o c h 肖 赫 s c h o e c h 肯 k e n 肯 尼 迪 k e n n e d y 肯 德 尔 k e n d a l 肯 德 尔 k e n d a l l 肯 斯 基 k e n s k y 肯 西 特 k e n s e t t 胡 佛 h o o v e r 胡 克 h o o k 胡 克 h o o k e 胡 克 h o o k e r 胡 克 h u g 胡 布 勒 h o o b l e r 胡 希 h u s c h 胡 森 h o o s o n 胡 珀 h o o p e r 舍 夫 纳 克 c h e r v e n a k 舍 科 尔 s h i r c o r e 舒 利 克 s c h u l i c k 舒 加 特 s h u g a r t 舒 尔 坎 德 s c h u l k i n d 舒 尔 蒂 斯 s h u l t i s 舒 尔 迪 纳 s c h u l d i n e r 舒 特 克 s h u t t k e 舒 福 德 s h u f o r d 舒 韦 勒 s c h u w e i l e r 艾 伦 多 弗 a l l e n d o e r f e r 艾 伯 塔 斯 a l b e r t u s 艾 伯 茨 a l b e r t s 艾 伯 茨 a l b e r t z 艾 伯 蒂 a l b e r t y 艾 克 e i k e r 艾 克 i k e 艾 塞 尔 e y s s e l l 艾 夫 洛 i v e l a w 艾 奇 逊 a c h e s o n 艾 奇 逊 a i t c h i s o n 艾 奇 逊 a t c h i s o n 艾 尔 芒 格 i r e m o n g e r 艾 尔 默 a y l m e r 艾 斯 特 e i s t e r 艾 斯 特 e y s t e r 艾 林 e y r i n g 艾 梅 a i m e 艾 森 斯 坦 e i s e n s t e i n 艾 沙 姆 i s h a m 艾 肯 伯 格 e i c h e n b e r g 艾 肯 伯 格 e i c h e n b e r g e r 艾 肯 伯 格 e i k e n b e r g 艾 西 特 i s i t t 艾 达 i d a 芒 丁 格 m u n d i n g e r 芒 内 克 m u n n e c k e 芒 加 雷 特 m o u n t g a r r e t 芒 尼 克 海 森 m u n n i k h y s e n 芒 格 m u n g e r 芬 宁 f e n n i n g 芬 斯 克 f e n s k e 芬 特 尔 f i n t e l 芬 特 尔 f i n t e l l 芬 纳 里 f i n n e r y 芬 莱 特 f i n l a t o r 苏 尔 s u h r 苏 尔 s u r 苏 尔 泽 s u l s e r 苏 泽 s o u s a 苏 特 s o u t e r 苏 特 s o u t t e r 苏 特 s u t e r 苏 里 纳 s u r i n a 英 弗 克 莱 德 i n v e r c l y d e 英 戈 利 亚 i n g o l i a 英 戈 尔 德 i n g o l d 英 林 y i n g l i n g 英 格 伦 e n g l u n d 英 格 兰 e n g l a n d 英 格 利 多 i n g e l i d o 英 格 雷 斯 i n g r e s s 英 沃 德 i n w a r d 英 索 尔 i n s a l l 范 伯 纳 f a n g b o n e r 范 佩 尔 v a m p e l l 范 塔 西 f a n t a c i 范 妮 f a n n i e 范 妮 f a n n y 范 安 登 v a n a n d e n 范 德 v a n d e 范 德 v a n d e r 范 德 利 普 v a n d e r l i p 范 德 林 v a n d e r l y n 范 德 鲁 滕 v a n d r u t e n 范 戈 科 姆 v a n g o r k o m 范 法 滕 v a n p h a t e n 范 胡 泽 v a n h o o s e r 范 迪 维 尔 v a n d i v e e r 范 迪 维 尔 v a n d i v i e r 莫 m a w 莫 m o e 莫 伊 尔 m o i r 莫 伊 尔 m o y l e 莫 伦 m o e r a n 莫 伦 m o l l a n 莫 伦 m o r l e n 莫 伦 m o r o n 莫 伦 m o r r a n 莫 伦 m o r r e n 莫 伦 m o r r o n 莫 伯 利 m o b e r l y 莫 厄 m o u a 莫 厄 特 m o w a t 莫 厄 特 m o w a t t 莫 基 尔 m o r k i l l 莫 尔 m a u e r 莫 尔 m a u l e 莫 尔 m a u l l 莫 尔 m a u r 莫 尔 m o h r 莫 尔 m o l e 莫 尔 m o l l 莫 尔 m o r 莫 尔 m o r e 莫 尔 m o r l e 莫 尔 m o r r 莫 尔 m o u l e 莫 尔 m o w l l 莫 尼 尔 m o n i e r 莫 尼 梅 克 m o n e y m a k e r 莫 希 m o e r s c h 莫 德 芬 m o r d f i n 莫 拉 莱 斯 m o r a l e s 莫 斯 m o h s 莫 斯 m o s s 莫 斯 m o s s e 莫 斯 伯 格 m o s s b e r g 莫 斯 克 里 普 m o s c r i p 莫 斯 兰 m o r t h l a n d 莫 斯 廷 m o s t y n 莫 格 里 奇 m o g g r i d g e 莫 特 m a u t h e 莫 特 m o a t e 莫 特 m o r t 莫 特 m o t e 莫 特 m o t t 莫 特 m o t t e r 莫 特 斯 黑 德 m o t t e r s h e a d 莫 琼 尼 尔 m o j o n n i e r 莫 茨 m a u t z 莫 茨 m o t e s 莫 茨 m o t z 莫 萨 克 m o s a k 莫 蒂 尔 m o t t i e r 莫 蒂 斯 通 m o t t i s t o n e 莫 诺 尔 m o n o r 莫 迪 卡 m o d i c a 莫 里 茨 m o r i t z 莫 阿 特 m o u a t 莫 雷 利 m o r e l l i 莫 龙 m o r o n g 莱 什 利 l a i s h l e y 莱 夫 科 维 茨 l e f k o w i t z 莱 姆 尼 策 l e m n i t z e r 莱 尔 利 l y e r l y 莱 尔 夫 l y u l p h 莱 尼 l a n e y 莱 帕 特 l e p p a r t 莱 德 劳 l a i d l a w 莱 恩 汉 l i n e h a n 莱 文 斯 l e v i n g s 莱 文 斯 l e v i n s 莱 斯 塔 l e s t a 莱 斯 曼 l e s m a n 莱 斯 特 兰 奇 l e s t r a n g e 莱 格 勒 l e g l e r 莱 格 沃 尔 德 l e g v o l d 莱 森 林 l e i s e n r i n g 莱 比 l e b b y 莱 特 尔 l a i t t r e 莱 特 尔 l y t l e 莱 瑟 l a e a t h e r 莱 瑟 l e t h e r 莱 申 l e y s h o n 莱 盖 托 l e g a t o r 莱 纳 l a i n e r 莱 纳 l e h n e 莱 维 斯 l e v i s 莱 蒂 卡 l e t i c a 莱 蒙 斯 l e m o n s 莱 贡 l e g o n 菲 利 翁 f i l i o n 菲 尔 宾 p h i l b i n 菲 尔 盖 特 f i l g a t e 菲 德 利 娅 f i d e l i a 菲 斯 克 f i s k 菲 斯 克 f i s k e 菲 斯 贝 克 f i s c h b e c k 菲 格 斯 f i g g e s s 菲 森 p h e r s o n 菲 比 p h o e b e 菲 泽 f i e s e r 菲 特 斯 p h e e t e r s 菲 特 罗 f i t t r o 菲 罗 兹 汉 f i r o z k h a n 菲 茨 哈 丁 f i t z h a r d i n g e 菲 顿 f i t t o n 菲 齐 p f u e t z e 萨 伦 格 s u l l e n g e r 萨 克 拉 里 兹 s a k e l l a r i d e s 萨 克 维 尔 s a c k v i l l e 萨 内 拉 s a n e r a 萨 卡 尔 s a r k a r 萨 吉 斯 s a r g i s 萨 夫 利 s a f l e y 萨 奇 曼 s u c h m a n 萨 姆 欣 s u m s i o n 萨 姆 沃 特 s u m w a l t 萨 姆 特 s u m t e r 萨 巴 塔 s a b a t a 萨 巴 罗 s a b a r r o 萨 平 顿 s a p p i n g t o n 萨 弗 纳 克 s a v e r n a k e 萨 德 利 s u d l e y 萨 德 拉 克 s a d l a k 萨 曼 莎 s a m a n t h a 萨 根 多 夫 s a g e n d o r p h 萨 特 伦 s a t t e r l u n d 萨 瑟 兰 s o u t h e r l a n d 萨 瑟 兰 s u t h e r l a n d 萨 费 s a f a y 萨 里 s a a r i 萨 里 s u r r e y 萨 马 蒂 诺 s a m m a r t i n o 萨 默 斯 比 s u m m e r s b y 蒂 亚 诺 t i a n o 蒂 尔 尼 t i e r n e y 蒂 尔 尼 t i l n e y 蒂 彻 t e a c h e r 蒂 普 尔 t e p o e l 蒙 扎 基 斯 m o n z a k i s 蔡 尔 兹 c h i l d s 蔡 斯 c h a s e 蔡 斯 c h a y e s 蔡 斯 z a i s 蔡 斯 z e i s 蔡 特 c h a i t 蔡 特 c h a t e r 蔡 特 c h a y t o r 蔡 特 z e i t e r 西 丁 s e e d i n g 西 伊 s e a y 西 伊 s e e 西 克 s i e c k 西 兹 s e e d s 西 利 c i l e y 西 利 s e a l e y 西 利 s e a l y 西 利 s e e l e y 西 利 s e e l y 西 利 s e e l y e 西 利 托 s i l l i t o e 西 利 格 s e e l i g 西 奥 利 诺 s c i o l i n o 西 姆 勒 s i m l e r 西 姆 金 斯 s i n m k i n s 西 尔 万 s i l v a n 西 尔 万 s y l v a i n e 西 尔 万 s y l v a n 西 尔 克 尼 特 s i l k n i t t e r 西 尔 弗 伯 格 s i l v e r b e r g 西 尔 弗 利 夫 s i l v e r l e a f 西 尔 弗 特 s i l v e r t 西 尔 维 s i l v e y 西 布 索 普 s i b t h o r p 西 布 雷 尔 s e b r e l l 西 弗 s e a v e r 西 弗 s e e v e r 西 弗 森 s e v e r s o n 西 德 利 s i d d e l e y 西 德 利 s i d l e y 西 德 诺 s y d n o r 西 拉 s e l a h 西 斯 尔 c i s l e 西 斯 尔 t h i s t l e 西 明 斯 基 s i e m i n s k i 西 普 尔 斯 s c i p l e s 西 沃 德 s e a w a r d 西 索 扬 s i s o i a n 西 西 利 c i c i l y 詹 j a n 詹 内 怀 恩 j e n n e w e i n 詹 宁 斯 j a n n i n g s 詹 宁 斯 j e n i n g s 詹 宁 斯 j e n n i n g s 詹 尼 j a n n e y 詹 斯 基 j a n s k y 詹 曾 j a n z e n 詹 诺 塔 j a n n o t t a 詹 金 斯 j e n k i n s 诺 克 利 夫 n o r c l i f f e 诺 埃 n o e 诺 夫 k n o f f 诺 夫 n o v e 诺 夫 齐 格 n o f z i g e r 诺 奇 金 n o d g k i n 诺 布 洛 克 k n o b l a u c h 诺 布 洛 克 k n o b l o c k 诺 弗 尔 n o r v a l 诺 斯 k n o u s 诺 斯 k n o u s e 诺 斯 n o c e 诺 斯 n o r t h 诺 斯 n o u r s e 诺 斯 克 利 夫 n o r t h c l i f f e 诺 森 n o r t h e n 诺 瓦 特 n o u a t 诺 福 克 n o r f o l k 诺 维 奇 n o v i t c h 诺 维 尔 n o r v e l l 诺 维 尔 n o r v i l l e 诺 莫 维 奇 n a u m o w i c z 诺 门 特 n o r m e n t 诺 马 克 n o m a k 谢 夫 特 尔 s h e f t e l 谢 希 c h e c h i 谢 拉 巴 格 s h e l l a b a r g e r 谢 曼 斯 基 s c h e m a n s k y 谢 泼 德 s h e p a r d 谢 泼 德 s h e p p a r d 谢 泼 德 森 s h e p a r d s o n 谢 泼 森 s h e p p e r s o n 谢 特 伦 s h e t r o n 谢 里 s h e r r y 豪 伊 特 h o w i t t 豪 斯 纳 h a u s n e r 豪 斯 纳 h a u s s n e r 豪 曼 h o w m a n 豪 泽 尔 h o u s e l 贝 什 b a i s h 贝 伦 岑 b e r e n d z e n 贝 克 纳 b e c k n e r 贝 克 顿 b e c t o n 贝 利 厄 b a i l i e u 贝 利 厄 b a i l l i e u 贝 利 厄 b e l i e u 贝 尔 哈 文 b e l h a v e n 贝 尔 坎 德 b e l k i n d 贝 尔 富 特 b a r e f o o t 贝 尔 弗 雷 奇 b e l f r a g e 贝 尔 文 b e l v i n 贝 尔 珀 b e l p e r 贝 尔 纳 普 b e l k n a p 贝 尔 纳 普 b e l n a p 贝 尔 顿 b e l t o n 贝 尼 格 纳 斯 b e n i g n u s 贝 布 勒 b e b l e r 贝 德 福 德 b e d f o r d 贝 拉 曼 b e l l a m a n n 贝 拉 迪 诺 b e r a r d i n o 贝 斯 顿 b e s t o n 贝 格 利 b e g l e y 贝 格 斯 b e g g s 贝 洛 姆 b e l h o m m e 贝 洛 斯 b e l l o w s 贝 特 纳 b e t n e r 贝 特 纳 b o e t t n e r 贝 瑟 b e s s e r 贝 瑟 尔 b e t h e l 贝 瑟 尔 b e t h e l l 贝 莱 扎 b e l l e z a 贝 莱 扎 b e l l e z z a 贝 西 尔 b e s s i r e 贝 西 默 b e s s e m e r 贝 诺 伊 b e n o n i 贝 辛 斯 托 克 b a s i n g s t o k e 贝 达 b e y d a 贝 里 斯 b e r r e t h 贝 雷 吉 b e r e g i 费 克 特 库 蒂 f e k e t e k u t y 费 内 伦 f e n e l l o 费 因 利 f e a r n l e y 费 尔 伯 f e l b e r 费 尔 兰 f a i r l a m b 费 尔 兰 f e r r l a n d 费 尔 兹 曼 f e l d e s m a n 费 尔 斯 f a i r e s 费 尔 斯 f a l e s 费 尔 斯 f e a r s 费 尔 曼 f a i r m a n 费 尔 曼 f e h l m a n n 费 尔 曼 f e l l m a n 费 尔 根 豪 尔 f e l g e n h a u e r 费 尔 森 f e i r s o n 费 尔 森 f e r s o n 费 尔 萨 姆 f e l l t h a m 费 尔 赖 斯 f e l r i c e 费 布 尔 f a b l e 费 弗 曼 f e f f e r m a n 费 德 f a e d 费 德 f e d e 费 德 f e d e r 费 恩 利 f e r n l e y 费 曼 f a i m a n 费 根 森 f e r g e n s o n 费 根 鲍 姆 f e i g e n b a u m 费 格 拉 斯 f e i n g l a s s 费 特 理 奇 f e t r i d g e 费 瑟 森 f e a t h e r s o n 费 登 f a y d e n 费 登 f e d d e n 费 登 f e i d e n 费 登 f e r d e n 费 登 雷 克 特 f a d e n r e c h t 费 纳 f e i n e r 费 茨 f a t e s 费 里 f e r r e o 费 里 f e r r e y 费 里 f e r r i 费 里 f e r r y 费 里 尔 f e r r i e r 费 里 尔 f e r r i l 费 里 斯 f e r r i s 赖 克 勒 r e i c h l e r 赖 内 克 特 r e i n e c k e t 赖 利 亚 r i l e a 赖 米 尔 r y m i l l 赖 肖 尔 r e i s c h a u e r 赖 蒂 纳 r y t i n a 赛 伊 t h y e 赛 弗 s e y f e r 赛 弗 森 s y v e r t s e n 赛 弗 森 s y v e r t s o n 赛 德 伯 特 姆 s i d e b o t h a m 赛 斯 s i s e 赛 瑟 姆 s i s a m 赞 多 纳 z a n d o n a 赫 丁 h e d b i n g 赫 什 菲 尔 德 h e r s h f i e l d 赫 克 托 h e c t o r 赫 克 斯 利 h u x l e y 赫 兰 德 h e l a n d e r 赫 利 姆 斯 基 c h e l i m s k y 赫 吉 h e g g i e 赫 塞 尔 顿 h e s e l t o n 赫 夫 h e r f f 赫 夫 h u f f 赫 夫 林 h e f l i n 赫 夫 龙 h e f f r o n 赫 姆 利 h e r m l e 赫 姆 斯 h e m m e s 赫 姆 洛 克 h e m l o c k 赫 威 茨 h e r w i t z 赫 尔 伯 德 h u l b u r d 赫 尔 奇 h e l c h 赫 尔 希 h e r s h e y 赫 尔 森 h e l s o n 赫 尔 登 费 尔 斯 h e l d e n f e l s 赫 尔 策 h o e l z e r 赫 尼 奇 h e n e a g e 赫 尼 布 里 h e n e b r y 赫 尼 格 h e n i g 赫 巴 德 h e b b a r d 赫 布 斯 特 h e r b s t 赫 布 纳 h e r b e n e r 赫 弗 尔 芬 格 h e f f e l f i n g e r 赫 德 伯 格 h e b d e r g 赫 斯 利 h e s l e y 赫 斯 莱 恩 h u s s l e i n 赫 林 肖 h e r r i n g s h a w 赫 格 h e g e r 赫 格 h e g g 赫 瑟 h e s s e r 赫 瑟 斯 顿 h e t h e r s t o n 赫 米 斯 h e r m e s 赫 莱 维 奇 h e l e w i c z 赫 西 h e a r s e y 赫 西 h e r s e y 赫 西 h e s s e 赫 西 h e s s e y 赫 西 h u s s e y 赫 里 奥 特 h e r i o t 赫 里 奥 特 h e r i o t t 赫 里 奥 特 h e r r i o t 赫 鲁 索 夫 斯 基 h r u s o v s k y 路 德 维 格 l u d w i g 辛 尼 特 s i n n e t t 辛 德 罗 姆 s y n d r o m e 达 伦 d a h l e n 达 兹 韦 尔 d a d s w e l l 达 利 奇 d u l w i c h 达 勒 姆 d a l l a m 达 古 希 d a r g u s c h 达 姆 d a m 达 姆 d a m m 达 姆 d u m m 达 尔 克 d a l k e 达 尔 加 诺 d a l g a r n o 达 尔 泽 尔 d a l z e l l 达 尔 泽 尔 d u l l z e l l 达 德 曼 d u d m a n 达 恩 顿 d a r n t o n 达 斯 d a r t h 达 斯 d a s c h 达 斯 d a t h 达 施 勒 d a s c h l e 达 曼 特 d a m a n t 达 林 特 d a s e n t 达 比 希 尔 d a r b i s h i r e 达 特 勒 d u t t e r e r 达 特 罗 d u t r o w 达 皮 德 d a p i d 达 米 亚 诺 d a m i a n o 达 米 特 d u m m i t 达 迪 d a d y 达 迪 斯 d a r d i s 达 默 龙 d a m e r o n 迈 伦 m i r o n 迈 伦 m y r o n 迈 克 洛 普 洛 斯 m i c h a l o p o u l o s 迈 利 m i l i 迈 斯 林 m e i s l i n 迈 斯 纳 m e i s n e r 迈 斯 纳 m e i s s n e r 迈 泽 尔 m e i s e l 迈 泽 林 m e i s e r l i n g 迪 什 纳 d i s h n e r 迪 侬 齐 奥 d i n u n z i o 迪 克 拉 克 d i c l a r k 迪 克 曼 d i c k e r m a n 迪 克 曼 d i c k m a n 迪 克 曼 d i c k m a n n 迪 克 曼 d i e c k m a n 迪 克 曼 d i e c k m a n n 迪 塞 伦 斯 d i s e r e n s 迪 尔 林 d e e r l i n 迪 尔 韦 格 d i l w e g 迪 尤 d e w 迪 尤 d e w e 迪 尤 d u e 迪 尤 顿 d e w t o n 迪 布 雷 尔 d i b e r l l 迪 弗 斯 d e a v e r s 迪 弗 斯 d e e v e r s 迪 拉 克 d i r a c 迪 斯 彭 齐 里 d i s p e n z i r i e 迪 本 d i b b e n 迪 杜 希 d i d u s c h 迪 林 厄 姆 d i l l i n g h a m 迪 格 斯 d i g g e s 迪 格 斯 d i g g s 迪 梅 夫 d i m e f f 迪 洛 d i l l o w 迪 米 特 d i m i t 迪 米 特 d i m m i t 迪 纳 斯 坦 d i n e r s t e i n 迪 维 d e e v e y 迪 芬 贝 克 d i e f e n b a k e r 迪 莫 兰 d i m o l i n e 迪 菲 斯 d i e p h u i s 道 利 什 d a w l i s h 道 斯 d a w e s 道 斯 d a w s 道 斯 d o w s e 道 西 d a w s e y 道 金 斯 d a w k i n s 邓 伍 迪 d u n w o o d i e 邓 内 尔 斯 d u n n e l l s 邓 宁 格 d u n n i n g e r 邓 尼 克 利 夫 d u n n i c l i f f 邓 尼 特 d u n n e t t 邓 纳 根 d u n n a g a n 邦 伯 里 b u b u r y 邦 克 b o n k e r 邦 克 b u n k e 邦 克 b u n k e r 邦 坦 b u n t i n e 邦 斯 蒂 尔 b o n s t e e l 邦 迪 b o n d y 邦 迪 b o u n d y 邦 迪 b u n d y 里 丁 格 r i e d i n g e r 里 伯 里 r e b o r i 里 克 特 迈 耶 r i c h t m y e r 里 兹 代 尔 r i d e s d a l e 里 兹 代 尔 r i d s d a l e 里 兹 克 r i z k 里 卡 德 r i c a r d 里 卡 德 r i c k a r d 里 基 茨 r i c k e t t s 里 奇 韦 r i d g e w a y 里 奇 韦 r i d g w a y 里 巴 r e b a 里 巴 克 r e b a c k 里 德 曼 r i e d m a n 里 林 费 尔 德 r i e s e n f e l d 里 根 r e a g a n 里 格 尔 r i e g e l 里 格 尔 r i e g l e 里 格 尔 曼 r i e g e l m a n 里 格 尔 曼 r i g g l e m a n 里 格 纳 尔 r i g n a l l 里 森 r i e s e n 里 森 r i e s o n 里 温 克 尔 r e w i n k e l 里 特 曼 r i t t m a n 里 特 森 r i t s o n 里 瑟 姆 w r e a t h a m 里 甘 r e g a n 里 索 r e s o r 里 耶 斯 戈 r i e s g o 里 蒂 r e a t y 金 利 赛 德 k e e n l e y s i d e 金 宾 k i n b b i n 金 尼 斯 g i n n e s 金 尼 斯 g i n n i s 金 尼 斯 k i n n i s 金 尼 蒙 特 k i n n i m o n t 金 德 尔 伯 格 k i n d e l b e r g e r 金 德 尔 伯 格 k i n d l e b e r g e r 金 德 里 德 k i n d r e d 金 斯 福 德 k i n g s f o r d 金 特 里 g e n t r y 金 纳 g i n n a 金 纳 蒙 k i n n a m o n 金 茨 g i n t z 金 里 奇 g i n g r i c h 金 马 k i n g m a 门 兹 m e n d s 门 兹 m e n z 门 多 利 亚 m e n d o l i a 门 多 萨 m e n d o z a 门 宁 格 m e n n i n g e r 门 敦 m e n d o n 阿 什 伯 a s h b a u g h 阿 什 伯 恩 a s h b o u r n e 阿 什 伯 恩 a s h b u r n 阿 什 伯 里 a s h b u r y 阿 什 克 罗 夫 特 a s h c r o f t 阿 什 韦 格 a s c h w e g e 阿 伯 康 a b e r c o r n 阿 克 伦 a c k l e n 阿 克 兰 a c k l a n d 阿 克 兰 a c l a n d 阿 克 塞 尔 森 a x e l s o n 阿 克 斯 坦 a c k s t e i n 阿 克 斯 福 德 a x f o r d 阿 克 斯 顿 a x t e l l 阿 克 斯 顿 a x t e l l e 阿 克 蒂 克 a r c t i c 阿 克 赫 斯 特 a k h u r s t 阿 内 尼 a n e n y 阿 利 克 a l i c k 阿 利 根 a l l i g h a n 阿 吉 顿 a g e t o n 阿 基 勒 a k y l o r 阿 基 米 得 a r c h i m e d e s 阿 奇 迪 肯 a r c h d e a c o n 阿 奎 雷 利 a c q u a r e l l i 阿 姆 齐 a m z i 阿 尔 卡 拉 a l c a l a 阿 尔 吉 a l g i e 阿 尔 奇 a l c h 阿 尔 奎 斯 特 a h l q u i s t 阿 尔 布 兰 特 a h l b r a n d t 阿 尔 戈 马 a l g o m a 阿 尔 曼 a l m a n 阿 尔 曼 a r m a n 阿 尔 格 伦 a h l g r e n 阿 尔 特 迈 耶 a l t e m e i e r 阿 尔 瓦 雷 斯 a l v a r e z 阿 尔 菲 厄 斯 a l p h a e u s 阿 尔 蒙 德 a l m o n d 阿 尼 a n e 阿 尼 a r n e y 阿 尼 a r n i 阿 尼 a r n y 阿 尼 基 斯 a n i k i s 阿 巴 迪 a b a d y 阿 布 诺 a b n o r 阿 彻 a r c h e r 阿 德 利 亚 a r d e l i a 阿 德 琳 a d e l i n e 阿 德 金 森 a d k i n s o n 阿 扎 克 a r z a c 阿 拉 斯 太 尔 a l a s t a i r 阿 拉 本 a l l a b e n 阿 斯 伯 里 a s b u r y 阿 斯 卡 尼 a s c a n i 阿 斯 太 尔 a s t a i r e 阿 斯 托 里 亚 a s t o r i a 阿 斯 特 拉 a s t r a 阿 斯 隆 a t h l o n e 阿 斯 顿 a s t o n 阿 普 尔 怀 特 a p p l e w h a i t e 阿 普 尔 怀 特 a p p l e w h i t e 阿 普 斯 a p p s 阿 普 特 克 a p t h e k e r 阿 杰 a d g e r 阿 查 默 a c h h a m m e r 阿 沙 芬 堡 a s c h a f f e n b u r g 阿 洛 a l l o 阿 洛 a r l o 阿 洛 a r l o w 阿 洛 a r l o w e 阿 特 伯 恩 a r t e r b u r n 阿 特 尼 a r t n e y 阿 特 金 森 a t k i n s o n 阿 特 隆 a t l o n 阿 索 斯 a t h o s 阿 纳 斯 特 a n a s t 阿 维 蒂 a v i t y 阿 莱 斯 a l l i e s 阿 莱 斯 特 a l e s t e r 阿 莱 温 a l e w i n e 阿 萨 a s a 阿 萨 a t h a 阿 萨 赫 尔 a s a h e l 阿 蒂 拉 a t t i l a 阿 诺 夫 a n o f f 阿 诺 尔 a r n a l l 阿 贝 尔 斯 a b b e l s 阿 费 尔 德 a f f e l d 阿 费 拉 a f r a 阿 达 米 娜 a d a m i n a 阿 迪 a d e y 阿 迪 a d i e 阿 迪 a r d e e 阿 迪 科 夫 a d i c o f f 阿 道 夫 a d o l f 阿 道 夫 a d o l p h 阿 道 夫 a d o l p h e 阿 道 弗 斯 a d o l p h u s 阿 里 森 a r e s e n 阿 霍 a h o 阿 马 斯 a r m a s 陶 布 斯 t a u b e s 隆 巴 迪 l o m b a r d i 隆 梅 尔 l o m m e l 雅 罗 斯 洛 夫 斯 基 j a r o s l o v s k y 雅 霍 夫 j a r c h o w 雷 丁 r a d i n 雷 丁 r e a d i n g 雷 丁 r e d d i n g 雷 伍 德 r a y w o o d 雷 伯 格 r e h b e r g 雷 内 r e n e e 雷 加 尔 f e g a l 雷 努 夫 r e n o u f 雷 勒 r a y l e r 雷 吉 r e g 雷 吉 斯 特 r e g i s t e r 雷 姆 r e h m 雷 姆 r h a m e 雷 姆 森 r e m s e n 雷 尔 斯 巴 克 r a i l s b a c k 雷 廷 杰 r e t t i n g e r 雷 弗 利 r e v e l e y 雷 德 菲 尔 德 r e d f i e l d 雷 德 蒙 特 r e d m o n t 雷 德 韦 r e d d a w a y 雷 德 韦 r e d w a y 雷 文 德 尔 r a v e n d a l 雷 斯 特 里 克 r a i s t r i c k 雷 格 r e g e r 雷 格 w r a g g 雷 特 r a i t 雷 特 r h e t t 雷 纳 r a i n e r 雷 纳 r a y n e r 雷 纳 r a y n o r 雷 纳 r e n a r d 雷 纳 r e y n e r 雷 纳 森 r e y n a r d s o n 雷 维 尔 斯 r e v e l e s 雷 迪 什 r e d d i s h 雷 马 克 r e m a r q u e 雷 默 r a y m e r 雷 默 r e a m e r 雷 默 r e m e r 雷 默 r e m m e r 霍 伊 兰 h o y l a n d 霍 伊 斯 h e u s s 霍 伍 德 h o r w o o d 霍 克 马 h o c k e m a 霍 兰 伯 格 h o r a n b u r g 霍 内 特 h o d n e t t 霍 利 奇 h o w l e d g e 霍 利 约 克 h o l y o a k e 霍 勒 伦 h o l l e r a n 霍 勒 克 h o r a c k 霍 华 德 h o w a r d 霍 古 德 h a w g o o d 霍 夫 兰 h o v l a n d 霍 夫 马 斯 特 h o f f m a s t e r 霍 奇 金 斯 h o d g k i n s 霍 奇 金 森 h o d g k i n s o n 霍 姆 奎 斯 特 h o l m q u i s t 霍 姆 西 h o m e s y 霍 姆 西 h o m s y 霍 尔 克 罗 夫 特 h o c r o f t 霍 尔 卡 h o l k a r 霍 尔 多 h a l d o r e 霍 尔 特 曼 h o l t m a n 霍 尔 索 普 尔 h o l s o p p l e 霍 尼 h o r n e y 霍 尼 奥 尔 德 h o r n y o l d 霍 尼 曼 h o n e y m a n 霍 尼 曼 h o r n i m a n 霍 布 柯 克 h o b k i r k 霍 布 赖 特 h o b e r e c h t 霍 德 利 特 h o u d l e t t 霍 斯 蒂 h o s t y 霍 斯 顿 h o s t o n 霍 斯 默 h o s m e r 霍 格 雷 夫 h o g r e f e 霍 沃 h o w a r 霍 法 h o f f a 霍 洛 韦 尔 h o l l o w e l l 霍 纳 迪 h o r n a d a y 霍 维 茨 h o r v i t z 霍 维 茨 h o r w i t z 霍 罗 宾 h o r o b i n 霍 耶 h o y e r 霍 肯 h a w k e n 霍 肯 h o c k e n 霍 肯 h o r k a n 霍 迪 诺 特 h o d d i n o t t 霍 雷 肖 h o r a t i o 霍 顿 h a u g h t o n 霍 顿 h o r t o n 霍 顿 h o t o n 霍 顿 h o u g h t o n 韦 丹 w e d a n 韦 伊 尔 w e i h e r 韦 伦 斯 基 w e l e n s k y 韦 伯 斯 特 w e b s t e r 韦 内 尔 w e i n e l 韦 利 特 w a y l e t t 韦 基 v a c k y 韦 尔 利 w e h r l e 韦 斯 伯 德 w e s b u r d 韦 斯 伯 格 w e i s b e r g 韦 斯 伯 格 w e i s s b e r g 韦 斯 特 w e s t 韦 斯 特 w e s t e r 韦 斯 特 代 尔 w e s t e r d a l e 韦 斯 特 兰 w e s t l a n d 韦 斯 特 格 伦 w e s t e r g r e n 韦 斯 特 格 伦 w e s t g r e n 韦 斯 特 罗 普 w e s t r o p 韦 斯 特 罗 普 w e s t r o p p 韦 斯 罗 普 w e s t h r o p p 韦 格 兰 w e g g e l a n d 韦 森 索 尔 w e i s e n t h a l 韦 毛 斯 w e y m o u t h 韦 瑟 利 w e a t h e r l y 韦 瑟 里 尔 w e a t h e r i l l 韦 瑟 里 尔 w e t h e r i l l 韦 科 w e i k k o 韦 纳 w e i n e r 韦 耶 巴 克 w e y e r b a c h e r 韦 西 格 w e i s i g e r 韦 西 格 w e i s s i g e r 香 斯 c h a n c e 香 普 林 c h a m p l i n 马 m a h 马 丁 代 尔 m a r t i n d a l e 马 丁 斯 m a r t i n s 马 什 本 m a r s h b u r n 马 克 m a k 马 克 m a r c 马 克 m a r k 马 克 m a r k e r 马 内 斯 m a n e s 马 内 斯 m a n e s s 马 利 肯 m u l i k e n 马 加 纳 m a g a n a 马 塞 兰 m a r c e l l i n 马 塞 尔 曼 m u s s e l m a n 马 夸 特 m a r q u a r d t 马 奥 尼 m a h o n e y 马 奥 尼 m a h o n y 马 姆 伯 格 m a l m b e r g 马 姆 伯 格 m a l m b o r g 马 威 克 m a r w i c k 马 尔 斯 特 德 m a h l s t e d e 马 尔 辛 m a l s i n 马 尼 恩 m a n i o n 马 平 m a p p i n 马 康 m a r k o n 马 戈 利 克 m a r g o l i c k 马 戈 尔 m a g o r 马 拉 迪 m a l a d y 马 斯 克 尔 m a s k e l l 马 斯 卡 托 m u s c a t o 马 斯 基 m a a s k e 马 斯 基 m u s k i e 马 斯 特 勒 m a r s t e l l e r 马 普 m a p p 马 林 森 m a l l i n s o n 马 格 尔 m a a g e l 马 格 纳 m a g n a 马 格 纳 m a g n e r 马 格 雷 恩 m a g r a n e 马 泽 夫 斯 基 m a z e w s k i 马 纳 特 m a n a t t 马 达 拉 m a d a r a 马 里 克 尔 m a r i c l e 马 里 诺 夫 m a r i n o f f 马 雷 m a r a i s 马 雷 m a r a y 马 默 里 m u m m e r y 高 克 伦 g a u g h r a n 高 兰 g o l l a n 高 兰 g o w l a n d 高 尔 韦 g a l w a y 高 尔 顿 g a l t o n 高 尔 顿 g a u l t o n 高 斯 曼 g a u s m a n n 高 杰 g a u g e r 高 杰 g o u g e r 鲁 佩 尔 r o u p e l l 鲁 克 斯 r o o k e s 鲁 克 斯 r o o k s 鲁 奇 利 r u g e l e y 鲁 奥 r o u a u l t 鲁 安 r u a n e 鲁 宾 斯 坦 r o b i n s t e i n 鲁 宾 斯 坦 r u b i n s t e i n 鲁 林 r e u l i n g 鲁 格 尔 r u e g l e 鲁 梅 利 r u m e l y 鲁 比 多 r o b u i d e a u x 鲁 比 诺 夫 r u b i n o f f 鲁 滕 伯 格 r o u t t e n b e r g 鲁 滕 伯 格 r u t t e n b e r g 鲁 珀 特 r u p e r t 鲁 珀 特 r u p p e r t 鲁 迪 r u d y 鲁 迪 西 尔 r u d i s l l 鲍 尔 奇 b a l c h 鲍 尔 班 克 b o w e r b a n k 鲍 特 伍 德 b o u t w o o d 鲍 特 尔 b o u t e l l 鲍 特 尔 b o u t e l l e 鲍 罗 宾 b o r o b i n 鲍 迪 加 b a l d y g a 麦 丘 m c c u e 麦 丘 m c k e w 麦 克 利 m a c k l e y 麦 克 利 m a c l e a y 麦 克 勒 格 m c c l u r g 麦 克 卢 尔 m a c c l u r e 麦 克 卢 尔 m a c l u r e 麦 克 卢 尔 m c c l u r e 麦 克 卢 尔 m c l u r e 麦 克 希 里 m c s h e r r y 麦 克 拉 克 伦 m a c l a c h l a n 麦 克 拉 克 伦 m c l a c h l a n 麦 克 文 尼 m c v i n n e y 麦 克 朗 m a c c l u n g 麦 克 朗 m c c l u n g 麦 克 沃 斯 m a c k w o r t h 麦 克 法 登 m c f a d d e n 麦 克 米 伦 m a c m i l l a n 麦 克 米 伦 m a c m i l l e n 麦 克 米 伦 m c m i l l e n 麦 克 纳 布 m a c n a b 麦 克 纳 布 m a c n a b b 麦 克 纳 布 m c n a b 麦 克 纳 布 m c n a b b 麦 克 罗 森 m a c r o s s a n 麦 克 罗 森 m c c r o s s e n 麦 克 苏 德 m c s o u d 麦 克 莱 兰 m c c l e l l a n d 麦 克 菲 m a c f e e 麦 克 菲 m a c p h i e 麦 克 菲 m c f e e 麦 克 菲 m c p h e e 麦 克 蒂 尔 南 m c t i e r n a n 麦 克 诺 顿 m a c n a u g h t o n 麦 克 诺 顿 m c n a u g h t o n 麦 克 贝 斯 m a c b e a t h 麦 克 贝 斯 m a c b e t h 麦 克 里 m c c r e e 麦 克 里 m c c r i e 麦 克 马 斯 m c m a t h 麦 克 马 林 m a c m u l l i n 麦 克 马 林 m c m u l l i n 麦 克 马 纳 斯 m a c m a n u s 麦 克 马 纳 斯 m c m a n u s 麦 克 默 罗 m a c m u r r o u g h 麦 凯 布 尔 m c c a b l e 麦 凯 琴 m a c e a c h e n 麦 凯 里 m c c a r e y 麦 加 利 亚 德 m c g a l l i a r d 麦 加 夫 兰 m c g a v r a n 麦 加 沃 克 m c g a v o c k 麦 加 维 m c g a r v e y 麦 加 芬 m c g a f f i n 麦 加 里 m c g a r r y 麦 卡 伦 m a c a l l a n 麦 卡 伦 m a c a l l e n 麦 卡 伦 m a c c a l l a n 麦 卡 伦 m c c a r r a n 麦 卡 伦 m c c a r r o n 麦 卡 伦 m c c u l l e n 麦 卡 德 尔 m c a r d l e 麦 卡 德 尔 m c c a r d l e 麦 卡 沃 伊 m c a v o y 麦 卡 特 尼 m a c a r t b e t 麦 卡 特 尼 m c a r t b e t 麦 卡 特 尼 m c c a r t n e y 麦 卡 登 m c a d d e n 麦 卡 登 m c c a d d e n 麦 吉 利 夫 雷 m a c g i l l i v r a y 麦 吉 利 夫 雷 m c g i l l i v a r y 麦 吉 芬 m c g i f f i n 麦 坎 伯 m c c u m b e r 麦 坎 迪 m a c a n d i e 麦 基 宾 m c k i b b i n 麦 基 弗 m a c i v e r 麦 基 弗 m a c k e e v e r 麦 基 弗 m c i v o r 麦 基 弗 m c k e e v e r 麦 库 克 m c c o o k 麦 康 纳 基 m c c o n a c h i e 麦 戈 蒂 m c g o r t y 麦 科 尔 m a c c o l l 麦 科 尔 m c c o l e 麦 科 尔 m c c o l l 麦 科 斯 克 m c c o s k e r 麦 科 洛 m c c o l l o u g h 麦 科 纳 基 m a c o n a c h i e 麦 科 里 m c c o r r y 麦 考 利 m a c a u l a y 麦 考 利 m a c a u l e y 麦 考 利 m c a u l a y 麦 考 利 m c c a u l e y 麦 考 顿 m c a u g h t o n 麦 肯 德 里 m c k e n d r e e 麦 肯 德 里 m c k e n d r y 麦 肯 齐 m a c k e n z i e 麦 肯 齐 m c k e n z i e 麦 迪 逊 m a d d i s o n 麦 迪 逊 m a d i s o n 黑 尼 h a n e y 黑 德 福 特 h e a d f o r t 黑 林 h a e r i n g 黑 根 h a g a n 黑 格 h a g a r 黑 格 h a g e r 黑 格 h a g u e 黑 格 h a i g 黑 格 h a i g e r 黑 格 h a i g h 黑 特 莱 因 h a e r t l e i n 黑 迪 h e a d y 默 奇 m u r c h 默 斯 曼 m e r s m a n 默 科 特 m u r c o t t 默 茨 克 m e r t z k e 默 龙 m e r r o n 齐 克 z e e k 齐 多 尼 斯 z i e d o n i s 齐 德 z e d e r 齐 德 霍 克 z i e d e r h o e k 齐 斯 克 z i s c h k e 齐 斯 克 z y s k 齐 格 蒙 特 z y g m u n t 齐 默 恩 z i m m e r n 龙 卡 利 奥 r o n c a l i o
442b0bc856887a96d772f7cb5648b8c16d614ee7
449d555969bfd7befe906877abab098c6e63a0e8
/3012/CH9/EX9.15/Ex9_15.sce
d497b12f321d0872f66d2beb247686b04bf9af54
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
4,761
sce
Ex9_15.sce
// Given:- // Part(a) Mt = 0.7 // mach mumber at the throat At = 6.25 // throat area in cm^2 Ae = 15.00 // exit area in cm^2 // The flow throughout the nozzle, including the exit, is subsonic. Accordingly, with this value for A2byAstar, Table 9.1 gives M2 = 0.24 // For M2 = 0.24, T2byTnot = 0.988 p2bypnot = 0.959 k = 1.4 T0 = 280.00 // in kelvin pnot = 6.8 // in bars // Calculations // With Mt = 0.7, Table 9.1 gives AtbyAstar = 1.09437 A2byAstar = (Ae/At)*AtbyAstar T2 = T2byTnot*T0 // in kelvin p2 = p2bypnot*pnot // in bars V2 = M2*((k*(8.314/28.97)*T2*10**3)**0.5) // velocity at the exit in m/s mdot = (p2/((8.314/28.97)*T2))*Ae*V2*10**-2 // mass flow rate in kg/s // Results printf( ' Part(a) the mass flow rate in kg/s is: %.2f',mdot) printf( ' The exit pressure in bars is: %.2f',p2) printf( ' The exit mach number is: %.2f',M2) // Part(b) Mt = 1.00 // mach number at the throat // From table 9.1 M2 = 0.26 T2byTnot = 0.986 p2bypnot = 0.953 T0 = 280.00 // in kelvin pnot = 6.8 // in bars // Calculations T2 = T2byTnot*T0 // in kelvin p2 = p2bypnot*pnot // in bars k = 1.4 V2 = M2*((k*(8314/28.97)*T2)**0.5) // exit velocity in m/s mdot = (p2/((8.314/28.97)*T2))*Ae*V2*10**-2 // mass flow rate in kg/s // Results printf( ' Part(b) the mass flow rate is: %.f kg/s.',mdot) printf( ' The exit pressure is: %f bars. ',p2) printf( ' The exit mach number is: %f',M2) // Part(c) // From part (b), the exit Mach number in the present part of the example is M2 = 2.4 // Using this, Table 9.1 gives p2bypnot = 0.0684 pnot = 6.8 // in bars // Calculation p2 = p2bypnot*pnot // in bars // Results // Since the nozzle is choked, the mass flow rate is the same as found in part (b). printf( ' Part(c) the mass flow rate is: %f kg/s.',mdot) printf( ' The exit pressure is: %f bars.',p2) printf( ' The exit mach number is: %f',M2) // Part(d) // Since a normal shock stands at the exit and the flow upstream of the shock is isentropic, the Mach number Mx and the pressure px correspond to the values found in part (c), Mx = 2.4 px = 0.465 // in bars // Then, from Table 9.2 My = 0.52 //py is the exit pressure pybypx = 6.5533 py = px*pybypx // The pressure downstream of the shock is thus 3.047 bars. This is the exit pressure // The mass flow is the same as found in part (b). // Results printf( ' Part(d) the mass flow rate is: %f kg/s.',mdot) printf( ' The exit pressure is: %.3f bars.',py) printf( ' The exit mach number is: %f',My) // Part(e) // A shock stands in the diverging portion where the area is Ax = 12.5 // in cm^2 // Since a shock occurs, the flow is sonic at the throat, so Axstar = 6.25 // in cm^2 At = Axstar // The Mach number Mx can then be found from Table 9.1, by using AxbyAxstar as Mx = 2.2 // Results // With Mx = 2.2, the ratio of stagnation pressures is obtained from Table 9.2 as pnotybypnotx = 0.62812 // Using this ratio and noting that the flow is subsonic after the shock, Table 9.1 gives M2 = 0.43 // For M2 = 0.43, p2bypnoty = 0.88 // Calculations A2byAystar = (Ae/Axstar)*pnotybypnotx p2 = p2bypnoty*pnotybypnotx*pnot // in bars // Results // Since the flow is choked, the mass flow rate is the same as that found in part (b). printf( ' part(e) the mass flow rate is: %f kg/s.',mdot) printf( ' the exit pressure is: %f bars',p2) printf( ' the exit mach number is: %f',M2)
9faa646b451dcecbfc61356350a04a771511387c
449d555969bfd7befe906877abab098c6e63a0e8
/800/DEPENDENCIES/4__11.sci
820b00e999a29021e10e104c3fe1aa1f0340016d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
62
sci
4__11.sci
k= 2.2; v00 = .05; Cb0 = .025; v0 = 5; Ca0 = .05; t0 = 0;
d0bea2a13b8f57e3b20aa679a3364d4301f0f336
449d555969bfd7befe906877abab098c6e63a0e8
/1280/CH6/EX6.4/6_4.sce
fae37a8528c7f27ca38ba570b5735cb39a4cc054
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
184
sce
6_4.sce
clc //initialisation of variables n= 9 N= 3000 //rpm s= 0.75 //inch d= 0.5 //inch //CALCULATIONS Q= n*N*s*%pi*d^2/(4*231) //RESULTS printf ('volume flow rate = %.1f gpm',Q)
5d14f4d33f5abe1ada124bb8948421da5dd7aa2f
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.9_4.tst
74947368c5002ee9207fba39a2a2beb036dc81cf
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
42,381
tst
bow.9_4.tst
9 8:0.09090909090909091 21:1.0 31:0.5 44:0.5 45:0.25 99:0.6666666666666666 131:1.0 134:0.5 136:1.0 152:1.0 174:0.09090909090909091 175:2.0 212:1.0 214:1.0 220:1.0 259:0.2 268:1.0 281:0.5 298:1.0 328:0.3333333333333333 331:2.0 342:2.0 385:0.14285714285714285 433:1.0 459:1.0 477:0.14285714285714285 519:0.5 576:2.0 600:0.058823529411764705 726:1.0 728:1.0 755:1.0 870:1.0 929:0.5 1050:1.0 1064:1.0 1131:1.0 1154:1.0 1446:0.3333333333333333 2040:1.0 2163:1.0 2421:1.0 2873:1.0 3297:1.0 3521:1.0 3532:2.0 3587:0.1 3628:1.0 3678:1.0 3820:0.5 3844:1.0 3902:1.0 3998:1.0 4046:1.0 4532:0.5 4570:1.0 4873:1.0 5970:1.0 6676:1.0 6815:1.0 9 7:1.0 8:0.09090909090909091 12:1.0 17:0.6 21:0.5 31:0.5 45:0.25 56:1.0 61:0.5 88:0.5 99:0.3333333333333333 128:0.06666666666666667 129:0.5 134:0.5 141:1.0 142:1.0 187:1.0 193:0.07142857142857142 201:0.14285714285714285 285:1.0 295:1.0 328:0.6666666666666666 339:1.0 342:2.0 347:1.0 385:0.14285714285714285 489:1.0 522:1.0 523:2.0 528:0.5 538:0.5 634:1.0 697:0.5 988:1.0 1132:0.5 1176:0.25 1315:1.0 2251:1.0 2383:1.0 2426:0.3333333333333333 2590:1.0 2676:1.0 2952:1.0 3278:1.0 3514:0.2857142857142857 3521:1.0 3522:1.0 3577:1.0 3645:1.0 3783:1.0 3785:0.5 3904:1.0 4083:1.0 4173:1.0 4231:1.0 4447:1.0 4450:1.0 4619:0.5 5216:1.0 5253:1.0 5271:1.0 5313:1.0 5474:1.0 6422:1.0 6633:1.0 9 8:0.045454545454545456 10:1.0 12:1.0 14:0.2 17:0.2 21:0.5 29:1.0 44:0.5 45:0.25 51:2.0 61:1.0 88:0.5 123:0.5 134:0.5 161:1.5 174:0.09090909090909091 193:0.03571428571428571 205:1.0 214:1.0 259:0.2 328:2.3333333333333335 342:3.0 420:0.5 489:1.0 528:0.5 576:1.0 600:0.058823529411764705 618:1.0 728:1.0 872:1.0 975:1.0 1064:1.0 1437:1.0 1611:0.25 1826:0.5 2110:1.0 2197:0.2 2219:1.0 2899:1.0 2900:1.0 3110:1.0 3514:0.2857142857142857 3519:1.0 3532:2.0 3545:1.0 3546:1.0 3547:1.0 3548:1.0 3563:1.0 3577:1.0 4045:1.0 4164:1.0 4274:0.5 4677:1.0 6424:1.0 6676:1.0 9 7:0.3333333333333333 8:0.22727272727272727 17:0.2 21:0.5 24:2.0 45:0.25 53:0.5 67:1.0 84:1.0 88:0.5 141:0.5 142:1.0 153:0.25 193:0.03571428571428571 201:0.14285714285714285 259:0.2 280:1.0 304:0.5 327:1.0 328:0.3333333333333333 420:0.5 461:1.0 610:1.0 841:1.0 1009:1.0 1470:1.0 2590:1.0 3516:1.0 3548:1.0 3550:1.0 3582:1.0 3585:1.0 3693:1.0 3769:1.0 3801:1.0 3914:1.0 4272:1.0 4652:1.0 5015:1.0 9 7:0.3333333333333333 8:0.13636363636363635 17:0.2 21:0.5 31:0.5 45:1.0 46:1.0 54:0.5 55:1.0 58:0.23076923076923078 86:0.5 101:1.0 128:0.06666666666666667 130:1.0 161:0.5 162:0.25 164:1.0 165:0.3333333333333333 187:1.0 263:1.0 275:1.0 332:1.0 333:1.0 342:1.0 400:0.5 437:1.0 440:1.0 461:1.0 799:0.14285714285714285 937:1.0 1121:0.5 1226:1.0 1611:0.25 1659:1.0 2696:1.0 3276:1.0 3514:0.14285714285714285 3532:1.0 3577:1.0 3642:1.0 3686:1.0 4093:1.0 4500:1.0 4695:1.0 5783:1.0 6031:0.5 9 8:0.045454545454545456 12:2.0 14:0.4 21:0.5 45:0.25 58:0.07692307692307693 81:0.5 84:1.0 88:0.5 99:0.3333333333333333 175:2.0 193:0.03571428571428571 214:1.0 259:0.6 305:1.0 328:0.3333333333333333 449:0.5 461:1.0 523:1.0 799:0.14285714285714285 898:0.05555555555555555 919:1.0 1920:1.0 1960:1.0 3514:0.14285714285714285 3532:1.0 3559:1.0 3565:1.0 3628:1.0 3698:0.5 4005:1.0 4115:1.0 4168:1.0 4293:1.0 4294:1.0 4304:1.0 4762:1.0 4943:1.0 6440:1.0 9 7:0.3333333333333333 8:0.18181818181818182 24:2.0 31:0.5 45:0.25 56:1.0 58:0.07692307692307693 123:0.5 134:0.5 161:0.5 169:0.07692307692307693 193:0.03571428571428571 214:1.0 300:2.0 305:1.0 342:2.0 419:1.0 445:1.0 460:1.0 461:1.0 497:1.0 523:1.0 604:1.0 635:1.0 692:1.0 697:0.5 870:1.0 1131:1.0 1664:0.3333333333333333 1745:1.0 3207:1.0 3514:0.2857142857142857 3522:1.0 3549:2.0 3551:1.0 3558:0.06666666666666667 3612:1.0 3621:0.5 3628:1.0 3820:0.5 5096:1.0 5533:1.0 6115:1.0 6603:1.0 9 6:1.0 7:0.3333333333333333 8:0.045454545454545456 24:1.0 45:0.75 58:0.07692307692307693 88:1.0 95:0.25 116:2.0 128:0.13333333333333333 193:0.07142857142857142 214:1.0 259:0.2 300:2.0 328:0.3333333333333333 445:1.0 453:1.0 477:0.42857142857142855 538:0.5 542:1.0 600:0.058823529411764705 651:1.0 876:2.0 898:0.05555555555555555 1151:1.0 1225:1.0 1305:1.0 2310:1.0 2541:1.0 2882:1.0 2972:2.0 3514:0.14285714285714285 3521:1.0 3532:1.0 3559:1.0 3587:0.1 3608:1.0 3669:1.0 3698:0.5 3699:1.0 3724:1.0 4579:1.0 4733:1.0 5296:0.5 5325:1.0 6326:1.0 6612:1.0 9 8:0.13636363636363635 24:1.0 31:0.5 32:1.0 56:1.0 58:0.15384615384615385 61:0.5 91:1.0 128:0.06666666666666667 174:0.09090909090909091 175:1.0 187:1.0 193:0.07142857142857142 214:1.0 259:0.2 281:1.0 328:0.3333333333333333 332:1.0 342:1.0 437:1.0 439:0.5 477:0.14285714285714285 489:1.0 522:1.0 523:1.0 697:0.5 799:0.14285714285714285 870:1.0 898:0.05555555555555555 949:1.0 1131:1.0 1538:0.5 1644:2.0 1859:2.0 2584:1.0 3377:1.0 3397:1.0 3514:0.2857142857142857 3521:1.0 3532:1.0 3565:1.0 3714:1.0 3860:0.3333333333333333 3874:1.0 4218:0.5 4532:0.5 5083:1.0 9 8:0.13636363636363635 17:0.2 21:0.5 24:2.0 31:0.25 45:0.5 99:0.3333333333333333 116:1.0 128:0.06666666666666667 130:1.0 133:1.0 142:1.0 193:0.03571428571428571 214:1.0 259:0.6 263:1.0 281:0.5 291:0.5 295:1.0 301:0.3333333333333333 305:1.0 328:0.6666666666666666 342:1.0 379:1.0 420:0.5 461:1.0 477:0.14285714285714285 538:0.5 799:0.14285714285714285 1177:1.0 1253:1.0 1296:1.0 1342:1.0 1608:0.16666666666666666 1671:1.0 1962:1.0 2235:1.0 2426:0.3333333333333333 3078:1.0 3514:0.14285714285714285 3522:1.0 3523:1.0 3642:1.0 3836:1.0 4093:1.0 4326:1.0 5151:1.0 5551:1.0 6104:1.0 6170:1.0 6809:1.0 9 8:0.18181818181818182 24:1.0 31:0.25 45:0.5 58:0.07692307692307693 88:0.5 95:0.25 99:0.3333333333333333 128:0.06666666666666667 130:1.0 133:2.0 142:1.0 161:0.5 212:1.0 214:1.0 259:0.2 281:0.5 291:0.5 295:1.0 342:1.0 379:1.0 420:0.5 453:1.0 477:0.14285714285714285 698:0.5 1253:1.0 1497:1.0 1608:0.16666666666666666 2609:1.0 3078:1.0 3355:1.0 3521:1.0 3522:1.0 3545:1.0 3546:1.0 3587:0.1 3621:0.5 4000:1.0 4014:1.0 4151:1.0 4215:1.0 4890:1.0 6104:1.0 6604:1.0 9 7:0.6666666666666666 8:0.18181818181818182 17:0.2 21:1.0 31:0.25 32:1.0 44:0.5 88:0.5 128:0.06666666666666667 142:1.0 162:0.25 169:0.07692307692307693 181:0.07692307692307693 193:0.03571428571428571 214:1.0 301:0.3333333333333333 305:1.0 314:0.5 328:0.3333333333333333 437:1.0 446:1.0 448:1.0 1716:1.0 1927:1.0 3207:1.0 3287:1.0 3516:1.0 3532:1.0 3968:1.0 4196:1.0 4243:1.0 4256:0.3333333333333333 4464:1.0 4591:1.0 9 8:0.09090909090909091 45:0.25 53:0.5 88:1.0 128:0.06666666666666667 134:0.5 259:0.2 295:1.0 304:0.5 460:1.0 489:1.0 523:1.0 1132:0.5 2710:1.0 3522:1.0 3688:1.0 4083:1.0 6104:1.0 9 17:0.2 31:0.25 45:0.5 101:1.0 123:0.5 141:0.5 161:0.5 165:0.3333333333333333 212:1.0 232:1.0 266:1.0 328:0.3333333333333333 339:1.0 342:1.0 489:1.0 799:0.14285714285714285 3514:0.14285714285714285 3532:1.0 3577:1.0 3587:0.1 3647:0.5 3986:1.0 4293:1.0 4404:1.0 6395:1.0 6677:1.0 9 7:0.3333333333333333 8:0.13636363636363635 17:0.2 22:0.1 26:1.0 31:0.25 45:0.5 77:0.3333333333333333 88:1.0 91:1.0 128:0.06666666666666667 129:0.5 130:1.0 134:0.5 165:0.3333333333333333 193:0.03571428571428571 259:0.4 295:1.0 305:1.0 325:1.0 328:1.0 337:1.0 523:1.0 799:0.14285714285714285 919:1.0 980:1.0 1128:1.0 1315:1.0 2310:1.0 2577:1.0 2710:1.0 3522:1.0 3577:1.0 3624:0.5 3847:1.0 4410:1.0 4781:1.0 5347:1.0 5642:1.0 5816:1.0 6044:1.0 6104:1.0 9 7:0.3333333333333333 8:0.045454545454545456 21:0.5 51:1.0 81:0.5 84:1.0 88:0.5 95:0.25 128:0.06666666666666667 214:1.0 259:0.4 274:1.0 305:1.0 477:0.14285714285714285 538:0.5 600:0.058823529411764705 876:1.0 898:0.05555555555555555 1132:0.5 1439:1.0 1859:1.0 1960:1.0 3514:0.2857142857142857 3522:1.0 3577:1.0 3674:1.0 3698:0.5 3699:1.0 4118:1.0 4441:1.0 5149:1.0 5581:1.0 6046:1.0 9 8:0.09090909090909091 17:0.2 21:0.5 86:0.5 88:0.5 116:1.0 128:0.06666666666666667 134:0.5 190:1.0 214:1.0 259:0.2 266:1.0 281:0.5 295:1.0 305:1.0 328:0.6666666666666666 419:1.0 445:1.0 448:1.0 461:2.0 538:0.5 604:1.0 670:0.5 898:0.05555555555555555 1207:1.0 1662:1.0 1671:1.0 1773:1.0 1939:1.0 3067:1.0 3514:0.14285714285714285 3521:1.0 3532:1.0 3624:0.5 3698:0.5 3699:1.0 3707:1.0 3791:1.0 4410:1.0 4411:1.0 4972:1.0 4981:1.0 4985:1.0 9 7:0.3333333333333333 8:0.09090909090909091 31:0.25 45:0.25 46:1.0 67:1.0 88:0.5 91:1.0 95:0.25 99:0.3333333333333333 137:1.0 141:0.5 169:0.07692307692307693 174:0.09090909090909091 190:1.0 193:0.07142857142857142 214:1.0 259:0.2 328:0.3333333333333333 331:1.0 400:1.0 460:1.0 461:1.0 477:0.14285714285714285 670:0.5 1257:0.5 1405:1.0 1470:1.0 1826:0.5 1931:1.0 2609:1.0 3297:1.0 3514:0.14285714285714285 3516:1.0 3522:1.0 3587:0.1 3612:1.0 3628:1.0 3667:1.0 3669:1.0 3684:2.0 3757:1.0 3791:1.0 4608:1.0 5041:1.0 5169:1.0 6104:1.0 9 8:0.13636363636363635 14:0.4 24:2.0 31:0.25 45:0.5 51:2.0 142:1.0 193:0.03571428571428571 214:1.0 259:0.4 275:2.0 295:2.0 328:0.3333333333333333 342:1.0 385:0.5714285714285714 477:0.5714285714285714 529:1.0 600:0.058823529411764705 718:2.0 1131:1.0 1608:0.16666666666666666 2686:1.0 2974:1.0 3272:1.0 3514:0.2857142857142857 3519:1.0 3532:1.0 3558:0.06666666666666667 3559:2.0 3577:1.0 3686:1.0 3800:1.0 3842:1.0 4057:1.0 4613:1.0 5096:1.0 5765:1.0 6025:2.0 6046:1.0 6735:1.0 9 6:1.0 7:0.6666666666666666 8:0.045454545454545456 24:1.0 45:1.0 84:1.0 88:0.5 116:2.0 128:0.06666666666666667 131:1.0 165:0.3333333333333333 168:1.0 181:0.07692307692307693 193:0.10714285714285714 214:1.0 259:0.4 281:0.5 295:1.0 328:0.6666666666666666 337:1.0 419:1.0 448:1.0 477:0.14285714285714285 600:0.058823529411764705 866:1.0 870:1.0 937:1.0 1102:1.0 1128:1.0 3297:1.0 3514:0.2857142857142857 3516:1.0 3532:1.0 3684:1.0 3849:1.0 3885:1.0 3968:2.0 3981:1.0 4118:1.0 4241:1.0 6046:1.0 6092:1.0 6326:1.0 9 17:0.2 21:0.5 45:0.25 88:1.0 128:0.06666666666666667 131:1.0 141:0.5 193:0.07142857142857142 227:1.0 259:0.2 437:1.0 1066:1.0 1132:0.5 1179:1.0 1644:1.0 1664:0.3333333333333333 2310:1.0 2661:1.0 3532:1.0 3621:0.5 3785:0.5 4003:1.0 4034:1.0 4358:1.0 4570:1.0 5443:1.0 9 7:0.6666666666666666 8:0.13636363636363635 17:0.2 22:0.1 31:0.5 45:0.25 58:0.15384615384615385 86:0.5 88:0.5 91:1.0 99:0.3333333333333333 116:1.0 123:0.5 128:0.06666666666666667 141:0.5 162:0.25 214:1.0 227:1.0 328:0.6666666666666666 347:1.0 461:1.0 489:2.0 634:1.0 670:0.5 729:1.0 799:0.14285714285714285 877:1.0 984:1.0 1382:1.0 1439:1.0 1560:1.0 2008:1.0 2170:0.5 2658:1.0 3355:1.0 3521:1.0 3532:1.0 3541:1.0 3548:2.0 3577:1.0 3580:1.0 3619:1.0 3621:0.5 3633:1.0 3769:1.0 3801:1.0 4032:0.5 4118:1.0 4596:1.0 4753:1.0 6355:1.0 9 8:0.045454545454545456 14:0.2 17:0.4 45:0.5 86:0.5 99:0.3333333333333333 129:0.5 130:1.0 134:0.5 193:0.07142857142857142 195:1.0 201:0.14285714285714285 214:1.0 239:0.3333333333333333 266:1.0 298:1.0 305:1.0 328:0.6666666666666666 342:1.0 350:0.3333333333333333 477:0.14285714285714285 669:1.0 799:0.14285714285714285 1608:0.16666666666666666 1954:1.0 2568:1.0 2710:1.0 3532:1.0 3621:0.5 3643:1.0 3757:1.0 3791:1.0 3856:1.0 5772:1.0 6104:1.0 9 7:0.3333333333333333 24:1.0 45:0.25 67:1.0 142:1.0 161:0.5 214:1.0 260:1.0 327:1.0 328:0.3333333333333333 669:1.0 688:1.0 2710:1.0 3532:1.0 3587:0.1 3693:1.0 6104:1.0 9 7:0.3333333333333333 14:0.2 17:0.2 21:0.5 45:0.25 165:0.6666666666666666 193:0.07142857142857142 214:1.0 232:1.0 259:0.2 263:1.0 291:0.5 419:1.0 448:1.0 523:1.0 876:1.0 1070:1.0 1128:1.0 1405:1.0 1611:0.25 2357:1.0 3207:1.0 3532:1.0 3885:1.0 4024:1.0 4093:1.0 5111:1.0 5347:1.0 5514:1.0 5850:1.0 9 17:0.4 21:0.5 22:0.1 24:1.0 123:0.5 214:1.0 295:1.0 347:1.0 376:1.0 399:1.0 718:1.0 1113:0.2 1611:0.25 1859:1.0 3514:0.14285714285714285 3516:1.0 3532:1.0 5760:1.0 9 17:0.4 21:0.5 31:0.25 44:0.5 45:0.25 61:0.5 88:1.0 146:1.0 162:0.25 168:1.0 194:0.25 202:1.0 214:1.0 259:0.2 328:0.6666666666666666 342:1.0 350:0.3333333333333333 404:1.0 477:0.14285714285714285 542:1.0 799:0.14285714285714285 1599:1.0 2000:1.0 2008:1.0 2110:1.0 2268:1.0 2353:1.0 2366:1.0 3532:1.0 3684:1.0 4032:0.5 4048:1.0 5549:1.0 5550:1.0 6039:1.0 6707:1.0 9 7:0.6666666666666666 14:0.2 22:0.1 45:0.25 58:0.07692307692307693 77:0.3333333333333333 88:0.5 95:0.25 128:0.06666666666666667 130:1.0 131:1.0 133:1.0 141:0.5 161:0.5 162:0.25 168:1.0 193:0.03571428571428571 212:1.0 232:1.0 273:0.5 327:1.0 328:0.3333333333333333 489:1.0 573:1.0 634:1.0 649:0.3333333333333333 670:0.5 814:1.0 816:1.0 1088:0.5 1560:1.0 2366:1.0 3355:1.0 3514:0.14285714285714285 3532:1.0 3577:2.0 3678:1.0 3922:1.0 3986:1.0 4218:0.5 4358:1.0 4675:1.0 4873:1.0 5347:1.0 5928:1.0 6399:1.0 9 7:0.3333333333333333 8:0.045454545454545456 17:0.2 22:0.2 45:0.5 46:1.0 69:1.0 88:0.5 95:0.25 128:0.06666666666666667 144:0.2 165:0.6666666666666666 169:0.07692307692307693 193:0.03571428571428571 195:1.0 232:2.0 260:1.0 328:0.3333333333333333 342:1.0 523:1.0 538:0.5 649:0.3333333333333333 799:0.14285714285714285 827:1.0 1113:0.2 1257:0.5 1338:1.0 1483:1.0 1664:0.3333333333333333 1687:1.0 1962:1.0 2606:1.0 3051:1.0 3334:1.0 3522:1.0 3536:1.0 3577:1.0 3621:0.5 3669:1.0 3678:1.0 4619:0.5 5271:1.0 6527:1.0 9 7:0.3333333333333333 8:0.045454545454545456 14:0.2 17:0.4 22:0.1 23:0.25 46:1.0 88:1.0 134:0.5 141:0.5 162:0.25 190:1.0 193:0.07142857142857142 227:1.0 328:0.3333333333333333 332:1.0 342:1.0 448:1.0 528:0.5 544:1.0 649:0.6666666666666666 799:0.14285714285714285 937:1.0 1315:1.0 1497:1.0 1719:1.0 2170:0.5 2606:2.0 3521:1.0 3522:1.0 3545:1.0 3546:1.0 3577:1.0 3624:0.5 3678:1.0 3929:1.0 4231:1.0 4256:0.3333333333333333 4373:1.0 5347:1.0 9 7:0.6666666666666666 8:0.09090909090909091 45:0.25 88:0.5 128:0.13333333333333333 161:0.5 169:0.07692307692307693 190:1.0 193:0.07142857142857142 201:0.14285714285714285 214:1.0 269:1.0 295:1.0 300:2.0 385:0.14285714285714285 448:2.0 799:0.14285714285714285 876:1.0 898:0.05555555555555555 1123:1.0 1309:0.5 1315:1.0 1382:1.0 2110:1.0 2266:1.0 2310:1.0 2596:1.0 3355:1.0 3514:0.14285714285714285 3522:1.0 3615:1.0 3684:1.0 3842:1.0 3844:1.0 4010:0.3333333333333333 4549:1.0 4877:1.0 4889:1.0 9 8:0.13636363636363635 17:0.2 21:1.0 24:2.0 31:0.25 51:1.0 88:0.5 128:0.06666666666666667 137:1.0 214:1.0 259:0.6 295:1.0 328:0.3333333333333333 404:1.0 448:1.0 461:1.0 600:0.058823529411764705 718:1.0 870:2.0 876:1.0 1337:0.5 1777:1.0 2008:1.0 2110:1.0 2606:1.0 3334:1.0 3520:1.0 3521:1.0 3532:1.0 3545:1.0 3546:1.0 3621:0.5 3981:1.0 4834:1.0 4925:1.0 6013:1.0 9 14:0.4 24:1.0 45:0.5 99:0.3333333333333333 141:0.5 162:0.25 165:0.3333333333333333 193:0.07142857142857142 214:1.0 259:0.6 275:1.0 281:0.5 295:1.0 301:0.3333333333333333 328:0.3333333333333333 400:0.5 409:0.3333333333333333 446:1.0 448:1.0 477:0.14285714285714285 497:1.0 523:2.0 542:1.0 600:0.058823529411764705 984:1.0 1121:0.5 1128:1.0 1608:0.16666666666666666 1659:1.0 1690:1.0 1859:1.0 3514:0.14285714285714285 3521:2.0 3522:1.0 3587:0.1 3612:1.0 3621:0.5 3678:1.0 3756:1.0 4245:1.0 4762:1.0 4791:1.0 9 7:0.3333333333333333 8:0.045454545454545456 12:1.0 14:0.2 24:1.0 58:0.07692307692307693 88:0.5 101:1.0 214:1.0 259:0.2 263:1.0 274:1.0 328:0.3333333333333333 409:0.3333333333333333 477:0.14285714285714285 600:0.058823529411764705 1405:1.0 2355:1.0 2672:1.0 3053:1.0 3514:0.2857142857142857 3532:1.0 3565:1.0 3600:1.0 3624:0.5 3628:2.0 3647:0.5 4015:1.0 4056:1.0 4095:1.0 4184:1.0 4256:0.3333333333333333 4410:1.0 4411:1.0 4985:1.0 5772:1.0 9 8:0.045454545454545456 14:0.2 21:0.5 24:1.0 31:0.25 45:0.5 88:1.0 96:1.0 107:0.5 165:0.3333333333333333 183:1.0 186:1.0 193:0.03571428571428571 201:0.14285714285714285 214:2.0 259:0.2 281:0.5 385:0.14285714285714285 523:1.0 538:0.5 600:0.058823529411764705 697:0.5 965:1.0 1128:1.0 1491:1.0 1745:1.0 2606:1.0 3067:1.0 3514:0.14285714285714285 3516:1.0 3532:1.0 3545:1.0 3546:1.0 3612:1.0 3698:0.5 3699:1.0 3767:1.0 4083:1.0 4132:1.0 4424:1.0 4517:1.0 4591:1.0 5391:1.0 5513:1.0 6361:1.0 9 6:1.0 8:0.09090909090909091 17:0.2 21:0.5 44:0.5 45:0.25 77:0.3333333333333333 101:1.0 123:0.5 128:0.13333333333333333 130:1.0 131:1.0 142:1.0 162:0.25 193:0.03571428571428571 214:1.0 267:0.5 268:1.0 295:1.0 301:0.3333333333333333 477:0.14285714285714285 573:1.0 576:1.0 610:1.0 624:1.0 631:1.0 697:0.5 876:1.0 1145:0.3333333333333333 1161:1.0 1759:2.0 1962:1.0 2470:1.0 2560:1.0 2590:1.0 3513:1.0 3514:0.14285714285714285 3518:0.2 3522:1.0 3621:1.0 3647:0.5 3678:1.0 3748:0.5 3757:1.0 4245:1.0 6527:1.0 9 7:0.3333333333333333 8:0.09090909090909091 17:0.2 21:1.0 31:0.25 32:1.0 45:0.5 61:0.5 77:0.3333333333333333 83:1.0 95:0.25 115:1.0 160:1.0 161:0.5 193:0.03571428571428571 212:2.0 291:0.5 439:0.5 670:0.5 799:0.14285714285714285 1298:1.0 1382:1.0 1494:1.0 1611:0.25 2713:1.0 3334:1.0 3513:1.0 3522:1.0 3548:1.0 3551:1.0 3678:1.0 3767:1.0 3908:0.3333333333333333 3992:1.0 4555:1.0 4995:1.0 5850:1.0 6050:1.0 6199:1.0 6612:1.0 6676:1.0 9 7:0.3333333333333333 8:0.09090909090909091 17:0.2 21:0.5 24:1.0 31:0.25 45:0.75 58:0.07692307692307693 99:0.3333333333333333 101:1.0 123:0.5 128:0.13333333333333333 165:0.3333333333333333 190:1.0 193:0.07142857142857142 195:1.0 214:1.0 259:0.4 275:1.0 305:1.0 328:0.3333333333333333 409:0.3333333333333333 449:1.0 461:1.0 576:2.0 799:0.14285714285714285 1121:0.5 1128:1.0 1608:0.16666666666666666 3514:0.2857142857142857 3521:1.0 3532:1.0 3545:1.0 3546:1.0 3669:1.0 4201:1.0 4441:1.0 4538:1.0 4842:1.0 9 7:0.3333333333333333 8:0.09090909090909091 21:0.5 22:0.1 45:0.25 61:0.5 88:0.5 123:1.0 131:1.0 169:0.07692307692307693 187:1.0 193:0.03571428571428571 214:1.0 328:0.3333333333333333 445:1.0 1042:1.0 1113:0.2 1611:0.25 2310:2.0 2596:1.0 2676:1.0 2734:1.0 3522:1.0 4360:1.0 4591:1.0 6009:1.0 6132:1.0 9 7:0.3333333333333333 8:0.09090909090909091 21:1.0 22:0.2 45:0.75 51:1.0 54:0.5 61:1.0 101:1.0 123:0.5 134:0.5 187:1.0 193:0.03571428571428571 214:1.0 282:1.0 328:1.3333333333333333 477:0.14285714285714285 523:1.0 538:0.5 610:1.0 872:1.0 900:1.0 1042:1.0 1113:0.2 2596:1.0 2606:1.0 2676:1.0 2734:1.0 3110:1.0 3522:1.0 3632:0.5 3678:1.0 3699:1.0 4294:1.0 4591:1.0 5549:1.0 5550:1.0 6009:1.0 6132:1.0 6377:1.0 9 17:0.2 24:1.0 45:0.25 58:0.07692307692307693 61:0.5 88:0.5 123:0.5 161:0.5 214:1.0 259:0.2 328:0.3333333333333333 538:0.5 1012:0.5 1608:0.16666666666666666 3297:1.0 3514:0.14285714285714285 3518:0.2 3521:1.0 3522:1.0 3955:1.0 5699:1.0 6796:1.0 9 7:1.0 8:0.045454545454545456 45:0.5 69:1.0 99:0.3333333333333333 128:0.13333333333333333 162:0.25 168:1.0 214:1.0 259:0.2 281:0.5 514:1.0 728:1.0 898:0.05555555555555555 1121:0.5 1144:1.0 1560:1.0 2269:1.0 3009:1.0 3522:1.0 3579:1.0 3647:0.5 3669:1.0 3757:1.0 4093:1.0 4127:0.3333333333333333 4256:0.3333333333333333 4257:1.0 4361:1.0 9 7:0.6666666666666666 8:0.09090909090909091 12:1.0 14:0.2 17:0.4 21:0.5 22:0.1 45:0.25 54:0.5 88:0.5 99:0.3333333333333333 144:0.2 161:0.5 168:1.0 193:0.07142857142857142 195:1.0 212:1.0 213:1.0 263:1.0 328:1.3333333333333333 332:1.0 528:0.5 542:1.0 728:1.0 1012:0.5 1315:1.0 1560:1.0 1574:1.0 1991:1.0 2086:1.0 2170:0.5 2353:1.0 2459:1.0 2763:1.0 3514:0.14285714285714285 3532:1.0 3624:0.5 3647:0.5 3671:1.0 3801:1.0 4178:0.25 4293:1.0 9 8:0.045454545454545456 17:0.2 21:0.5 22:0.1 31:0.25 45:0.75 86:0.5 88:0.5 128:0.06666666666666667 129:0.5 131:1.0 141:0.5 146:1.0 162:0.25 169:0.07692307692307693 193:0.07142857142857142 212:1.0 214:1.0 266:1.0 268:1.0 275:1.0 281:0.5 328:0.3333333333333333 350:0.3333333333333333 419:1.0 461:1.0 477:0.14285714285714285 573:1.0 970:1.0 1123:1.0 1161:1.0 1599:1.0 1959:1.0 1962:1.0 2191:1.0 3237:1.0 3513:1.0 3521:1.0 3522:1.0 3624:1.0 3642:1.0 3671:1.0 3950:1.0 4069:1.0 4293:1.0 4410:1.0 4411:1.0 4881:1.0 4940:1.0 5310:1.0 5475:0.5 9 7:0.3333333333333333 8:0.18181818181818182 12:1.0 17:0.4 45:0.25 46:1.0 58:0.07692307692307693 88:0.5 123:0.5 162:0.25 187:1.0 196:0.5 214:1.0 263:1.0 281:0.5 295:1.0 337:1.0 342:1.0 528:0.5 1071:1.0 1121:0.5 1123:1.0 1560:1.0 2383:1.0 2426:0.3333333333333333 2470:1.0 2817:0.5 2880:1.0 3811:1.0 3904:1.0 4157:1.0 4293:1.0 4300:1.0 4466:0.5 5361:1.0 5679:1.0 9 12:1.0 17:0.4 31:0.25 45:0.25 58:0.15384615384615385 99:0.3333333333333333 123:0.5 128:0.13333333333333333 130:1.0 200:1.0 298:1.0 385:0.14285714285714285 519:0.5 1962:1.0 3532:1.0 3547:1.0 3548:1.0 3573:1.0 3621:0.5 6222:1.0 9 8:0.09090909090909091 14:0.4 17:0.2 21:0.5 30:1.0 31:0.25 45:0.5 58:0.07692307692307693 88:0.5 99:0.6666666666666666 129:0.5 161:0.5 168:1.0 174:0.09090909090909091 193:0.07142857142857142 195:2.0 214:1.0 231:1.0 300:3.0 328:0.6666666666666666 342:3.0 437:2.0 523:1.0 593:0.5 949:1.0 1050:1.0 1064:1.0 1315:1.0 1437:1.0 1786:1.0 2170:0.5 2260:1.0 2366:1.0 2470:1.0 3514:0.14285714285714285 3532:1.0 3627:1.0 3639:1.0 3647:0.5 3678:1.0 3755:1.0 3757:1.0 3801:1.0 3992:1.0 4253:0.5 4360:1.0 4678:1.0 4718:1.0 6199:1.0 9 8:0.18181818181818182 14:0.4 21:0.5 22:0.1 45:0.25 77:0.6666666666666666 95:0.25 99:0.3333333333333333 128:0.13333333333333333 130:1.0 189:0.5 193:0.10714285714285714 214:1.0 298:1.0 328:0.3333333333333333 409:0.6666666666666666 448:1.0 477:0.14285714285714285 576:2.0 610:1.0 698:0.5 816:1.0 1064:1.0 1088:0.5 1123:1.0 1309:0.5 1338:1.0 1745:1.0 1759:1.0 3455:1.0 3514:0.2857142857142857 3516:1.0 3532:1.0 3551:1.0 3698:0.5 4293:1.0 4294:1.0 5429:1.0 5628:1.0 6170:1.0 6723:1.0 9 7:0.3333333333333333 8:0.045454545454545456 14:0.2 17:0.2 25:0.5 77:0.3333333333333333 88:0.5 99:0.3333333333333333 101:1.0 107:0.5 123:0.5 128:0.06666666666666667 129:0.5 141:0.5 162:0.5 168:1.0 187:1.0 214:1.0 259:0.6 263:1.0 281:0.5 337:1.0 342:1.0 382:1.0 391:1.0 437:1.0 576:1.0 610:1.0 792:1.0 1064:1.0 1470:1.0 2972:1.0 3297:1.0 3532:1.0 3870:1.0 4003:1.0 4015:1.0 4208:0.125 4570:1.0 5023:1.0 5494:1.0 9 5:0.3333333333333333 7:0.6666666666666666 12:1.0 14:0.4 17:0.2 21:0.5 31:0.5 45:0.25 67:1.0 88:0.5 161:1.0 165:0.3333333333333333 193:0.07142857142857142 201:0.14285714285714285 214:1.0 259:0.2 300:3.0 439:0.5 445:1.0 448:1.0 519:0.5 523:1.0 576:1.0 634:1.0 827:1.0 1064:1.0 1123:1.0 1315:1.0 3514:0.14285714285714285 3532:1.0 3582:1.0 3588:1.0 3592:1.0 4044:1.0 4253:0.5 4256:0.3333333333333333 4461:0.5 4762:1.0 5253:1.0 5683:1.0 6399:1.0 6558:1.0 9 7:0.3333333333333333 12:1.0 14:0.2 17:0.2 32:1.0 45:0.5 52:2.0 67:1.0 91:1.0 99:0.6666666666666666 129:0.5 130:1.0 131:1.0 141:0.5 145:0.16666666666666666 146:1.0 168:1.0 169:0.07692307692307693 174:0.09090909090909091 193:0.10714285714285714 214:1.0 259:0.8 295:1.0 439:0.5 523:1.0 792:1.0 847:1.0 919:1.0 937:2.0 1064:1.0 1128:1.0 1265:1.0 1315:2.0 1856:1.0 2147:1.0 2426:0.3333333333333333 3532:1.0 3614:1.0 3684:1.0 3883:1.0 3934:1.0 4069:1.0 4218:0.5 5570:1.0 6623:1.0 9 8:0.045454545454545456 17:0.2 21:0.5 45:0.25 51:1.0 77:0.3333333333333333 88:0.5 92:1.0 101:1.0 123:0.5 175:1.0 193:0.03571428571428571 211:1.0 214:1.0 266:2.0 350:0.3333333333333333 437:1.0 449:0.5 1113:0.2 1315:1.0 1611:0.25 1716:2.0 2383:1.0 3582:1.0 3769:1.0 3904:1.0 4001:1.0 4130:1.0 4233:1.0 4251:1.0 4252:1.0 4272:1.0 6252:1.0 9 7:0.6666666666666666 8:0.045454545454545456 17:0.2 31:0.25 45:0.25 99:0.3333333333333333 130:1.0 169:0.07692307692307693 193:0.03571428571428571 214:1.0 227:1.0 382:1.0 449:0.5 523:1.0 528:0.5 542:1.0 1123:1.0 1234:1.0 1716:1.0 1759:1.0 2710:1.0 2817:0.5 3052:1.0 3514:0.14285714285714285 3521:2.0 3522:1.0 3573:1.0 3614:1.0 3729:1.0 3811:1.0 4067:1.0 4127:0.3333333333333333 4274:0.5 4542:1.0 4712:1.0 5222:1.0 9 17:0.4 24:1.0 45:0.25 58:0.07692307692307693 88:1.0 123:0.5 128:0.06666666666666667 134:0.5 141:0.5 142:2.0 164:1.0 193:0.03571428571428571 214:1.0 232:1.0 281:0.5 328:0.3333333333333333 409:0.3333333333333333 420:0.5 528:1.0 542:1.0 1088:0.5 1123:1.0 1145:0.3333333333333333 1571:1.0 2383:1.0 2541:1.0 3297:1.0 3514:0.2857142857142857 3525:1.0 3619:1.0 3633:1.0 3639:1.0 3662:1.0 3663:1.0 3769:1.0 4085:1.0 4231:1.0 4299:1.0 4377:1.0 4591:1.0 6765:1.0 9 7:0.3333333333333333 51:1.0 55:0.5 58:0.07692307692307693 77:0.3333333333333333 88:0.5 101:1.0 128:0.06666666666666667 130:2.0 142:1.0 144:0.2 164:1.0 193:0.10714285714285714 260:1.0 328:0.6666666666666666 346:0.5 409:0.3333333333333333 477:0.14285714285714285 600:0.058823529411764705 799:0.2857142857142857 925:1.0 1050:1.0 1088:0.5 1517:1.0 2017:1.0 2095:1.0 2590:1.0 2869:1.0 3514:0.14285714285714285 3532:1.0 3536:1.0 3548:1.0 3627:1.0 3651:1.0 3678:1.0 5847:1.0 6527:1.0 9 14:0.2 17:0.2 21:0.5 31:0.25 45:0.75 128:0.13333333333333333 129:0.5 164:1.0 193:0.07142857142857142 259:0.4 300:1.0 328:0.3333333333333333 342:1.0 350:0.3333333333333333 448:1.0 460:1.0 538:0.5 576:1.0 876:1.0 1121:0.5 1560:1.0 2040:1.0 2219:0.5 2357:1.0 2406:1.0 2428:0.5 2470:1.0 3514:0.14285714285714285 3522:1.0 3577:1.0 3628:1.0 3678:2.0 3699:1.0 3767:1.0 4373:1.0 4591:1.0 5222:1.0 6676:1.0 9 7:0.3333333333333333 8:0.045454545454545456 17:0.2 22:0.1 31:0.5 58:0.07692307692307693 88:0.5 95:0.25 134:0.5 295:1.0 448:1.0 528:0.5 609:1.0 1050:1.0 1257:0.5 3493:1.0 3522:1.0 4264:1.0 4660:1.0 5075:1.0 5165:1.0 5907:1.0 6779:1.0 6800:1.0 9 8:0.045454545454545456 14:0.2 24:1.0 88:0.5 101:1.0 193:0.03571428571428571 214:1.0 259:0.2 275:1.0 281:0.5 291:0.5 295:4.0 477:0.14285714285714285 1439:1.0 1611:0.25 1644:1.0 3317:1.0 3514:0.14285714285714285 3532:1.0 3548:1.0 3565:1.0 3577:1.0 3612:1.0 4037:1.0 4083:1.0 4118:1.0 4428:1.0 4978:1.0 5460:1.0 5806:1.0 5868:1.0 9 7:0.3333333333333333 26:1.0 44:0.5 45:0.25 67:1.0 69:1.0 88:0.5 95:0.25 123:1.0 169:0.07692307692307693 214:1.0 281:0.5 295:1.0 328:0.3333333333333333 477:0.14285714285714285 545:1.0 576:1.0 1066:1.0 1257:0.5 1439:2.0 3207:1.0 3532:1.0 3577:1.0 3628:1.0 3842:1.0 4101:1.0 4325:1.0 9 8:0.09090909090909091 12:1.0 17:0.2 21:1.0 54:0.5 95:0.25 123:0.5 128:0.06666666666666667 162:0.25 169:0.07692307692307693 193:0.03571428571428571 214:1.0 259:0.4 274:1.0 282:1.0 305:1.0 328:1.3333333333333333 342:1.0 460:1.0 489:1.0 538:1.0 576:1.0 670:0.5 898:0.05555555555555555 900:1.0 1611:0.25 1859:1.0 2110:1.0 2219:0.5 3514:0.2857142857142857 3521:1.0 3522:1.0 3545:1.0 3565:1.0 3698:0.5 3737:1.0 3748:0.5 3836:1.0 4359:1.0 4364:1.0 4394:1.0 4458:1.0 5371:1.0 6003:1.0 6049:1.0 6104:1.0 9 6:1.0 8:0.09090909090909091 21:0.5 45:0.25 98:1.0 116:1.0 128:0.13333333333333333 165:0.3333333333333333 193:0.03571428571428571 214:1.0 259:0.2 305:1.0 326:0.5 328:0.3333333333333333 409:0.6666666666666666 433:1.0 461:1.0 477:0.14285714285714285 600:0.11764705882352941 827:1.0 900:1.0 1664:0.3333333333333333 2869:1.0 3514:0.2857142857142857 3521:1.0 3522:1.0 3565:1.0 3744:1.0 3811:1.0 3996:1.0 4925:1.0 6588:1.0 9 8:0.045454545454545456 12:1.0 17:0.2 21:0.5 24:1.0 45:0.25 88:0.5 96:1.0 144:0.2 161:0.5 327:1.0 331:1.0 576:1.0 600:0.058823529411764705 692:1.0 1058:1.0 1256:1.0 1759:1.0 3522:1.0 3577:1.0 4562:1.0 5131:0.5 9 8:0.045454545454545456 12:2.0 14:0.2 32:1.0 45:0.25 95:0.25 142:2.0 144:0.2 164:1.0 181:0.07692307692307693 204:1.0 214:1.0 252:0.5 259:0.2 281:0.5 300:1.0 328:0.3333333333333333 448:1.0 477:0.14285714285714285 601:1.0 609:1.0 803:1.0 898:0.05555555555555555 1182:0.5 1288:1.0 1859:1.0 3514:0.2857142857142857 3516:1.0 3532:1.0 3558:0.06666666666666667 3587:0.1 3820:0.5 3853:1.0 3983:1.0 4245:1.0 4462:0.5 5025:1.0 5386:1.0 5723:1.0 6242:1.0 9 7:0.3333333333333333 8:0.09090909090909091 17:0.6 45:0.25 123:1.0 134:0.5 142:1.0 184:1.0 305:1.0 314:0.5 328:0.3333333333333333 437:1.0 522:1.0 1128:1.0 1230:1.0 2426:0.3333333333333333 2606:1.0 3107:1.0 3521:1.0 3532:1.0 3545:1.0 3546:1.0 3555:1.0 3721:1.0 3853:1.0 4057:1.0 4433:1.0 6199:1.0 6474:1.0 9 12:1.0 14:0.2 17:0.4 22:0.1 45:0.5 58:0.07692307692307693 81:0.5 86:0.5 101:1.0 128:0.06666666666666667 130:1.0 145:0.16666666666666666 146:1.0 161:0.5 177:0.5 181:0.15384615384615385 214:1.0 259:0.6 266:1.0 295:1.0 400:0.5 453:1.0 465:1.0 477:0.14285714285714285 528:0.5 531:1.0 626:1.0 1598:0.5 1950:1.0 2170:0.5 3297:1.0 3522:1.0 3548:1.0 3573:1.0 3621:0.5 3767:1.0 4233:1.0 4591:1.0 5069:1.0 5693:1.0 9 7:0.6666666666666666 8:0.045454545454545456 30:1.0 45:0.5 77:0.3333333333333333 88:0.5 91:1.0 99:0.3333333333333333 101:1.0 123:1.0 130:1.0 193:0.03571428571428571 195:1.0 232:1.0 259:0.2 291:0.5 295:1.0 298:1.0 301:0.3333333333333333 332:1.0 449:0.5 522:1.0 649:0.3333333333333333 753:1.0 1611:0.25 1954:2.0 2614:1.0 2710:1.0 3522:1.0 3548:1.0 3555:1.0 3577:1.0 4037:1.0 4253:0.5 4721:1.0 9 7:0.3333333333333333 8:0.045454545454545456 14:0.2 17:0.4 22:0.1 45:1.5 58:0.07692307692307693 123:0.5 128:0.06666666666666667 129:0.5 193:0.03571428571428571 214:1.0 259:0.4 266:1.0 300:1.0 328:0.3333333333333333 400:0.5 409:0.3333333333333333 477:0.14285714285714285 519:0.5 538:0.5 649:0.3333333333333333 697:0.5 787:1.0 871:1.0 876:1.0 898:0.1111111111111111 926:1.0 1014:1.0 1081:1.0 1132:0.5 1543:1.0 1859:1.0 1954:1.0 2812:1.0 3048:1.0 3290:1.0 3514:0.2857142857142857 3522:1.0 3563:1.0 3577:1.0 3996:1.0 4093:1.0 5190:1.0 5271:1.0 9 8:0.18181818181818182 17:0.2 21:1.0 58:0.07692307692307693 77:0.3333333333333333 88:0.5 99:0.3333333333333333 116:1.0 134:0.5 145:0.16666666666666666 214:1.0 259:0.2 263:1.0 275:1.0 295:1.0 328:1.0 448:1.0 538:1.0 642:1.0 767:1.0 777:1.0 799:0.14285714285714285 1288:1.0 1439:1.0 1608:0.16666666666666666 1671:1.0 3514:0.14285714285714285 3520:1.0 3532:1.0 3548:1.0 3628:1.0 3647:0.5 3698:0.5 3699:1.0 3842:1.0 3955:1.0 4118:1.0 4462:0.5 5190:1.0 5271:1.0 9 45:0.25 99:0.3333333333333333 116:1.0 141:0.5 161:0.5 175:1.0 193:0.07142857142857142 194:0.25 195:1.0 214:1.0 232:1.0 259:0.4 328:0.3333333333333333 477:0.14285714285714285 523:1.0 555:1.0 870:1.0 898:0.05555555555555555 899:1.0 1131:1.0 1608:0.16666666666666666 3514:0.14285714285714285 3532:1.0 3558:0.06666666666666667 3618:1.0 3837:1.0 4208:0.125 4241:1.0 4347:1.0 4850:1.0 5290:1.0 6651:1.0 9 12:1.0 14:0.2 17:0.2 24:1.0 45:0.75 58:0.07692307692307693 128:0.06666666666666667 144:0.2 193:0.07142857142857142 214:1.0 227:1.0 259:0.2 295:1.0 346:0.5 385:0.14285714285714285 448:1.0 477:0.14285714285714285 538:0.5 576:1.0 718:1.0 755:1.0 799:0.14285714285714285 898:0.05555555555555555 3351:1.0 3514:0.14285714285714285 3516:1.0 3522:1.0 3577:1.0 3618:1.0 3714:1.0 3844:1.0 3934:1.0 3956:1.0 4003:2.0 4257:1.0 4500:1.0 4733:1.0 4813:1.0 5667:1.0 6230:1.0 9 6:1.0 7:0.6666666666666666 8:0.13636363636363635 12:1.0 21:0.5 45:0.5 58:0.07692307692307693 61:0.5 123:0.5 128:0.13333333333333333 144:0.2 161:0.5 214:1.0 328:0.3333333333333333 342:1.0 489:1.0 554:1.0 558:1.0 600:0.11764705882352941 799:0.14285714285714285 866:1.0 870:1.0 1151:1.0 1382:1.0 1566:1.0 1611:0.5 1759:1.0 3207:1.0 3514:0.14285714285714285 3519:1.0 3532:1.0 3767:1.0 4093:1.0 4215:1.0 4678:1.0 5386:1.0 6216:1.0 9 7:0.3333333333333333 21:1.0 26:1.0 45:0.25 91:1.0 128:0.06666666666666667 131:1.0 193:0.07142857142857142 201:0.14285714285714285 211:1.0 214:1.0 259:0.4 328:0.3333333333333333 477:0.14285714285714285 523:1.0 875:1.0 937:1.0 965:1.0 1131:1.0 1839:1.0 3514:0.14285714285714285 3522:1.0 3523:1.0 3558:0.06666666666666667 3559:1.0 3582:1.0 3592:1.0 3782:1.0 3934:1.0 4172:1.0 4173:1.0 4889:1.0 5096:1.0 5253:1.0 6604:1.0 9 8:0.18181818181818182 17:0.2 21:0.5 31:0.25 45:0.25 56:1.0 58:0.15384615384615385 134:0.5 141:0.5 232:1.0 263:1.0 305:1.0 347:1.0 489:1.0 538:0.5 777:1.0 848:1.0 1598:0.5 1689:1.0 2426:0.3333333333333333 3514:0.14285714285714285 3522:1.0 3651:1.0 3801:1.0 3955:1.0 4249:1.0 5696:1.0 6278:1.0 9 7:0.3333333333333333 8:0.09090909090909091 21:1.5 23:0.25 24:2.0 31:0.25 45:0.75 58:0.15384615384615385 88:0.5 95:0.25 101:1.0 133:1.0 142:1.0 181:0.07692307692307693 193:0.03571428571428571 275:1.0 449:0.5 460:1.0 573:1.0 576:1.0 799:0.14285714285714285 886:1.0 1088:0.5 1337:0.5 2219:0.5 3511:1.0 3522:1.0 3570:1.0 3577:2.0 3632:1.0 3694:1.0 3699:1.0 4037:1.0 4274:0.5 4355:1.0 4375:1.0 4591:1.0 4981:1.0 6050:1.0 6357:1.0 9 7:0.6666666666666666 8:0.13636363636363635 45:0.25 58:0.07692307692307693 77:0.3333333333333333 81:0.5 83:1.0 88:0.5 95:0.25 115:1.0 116:2.0 130:1.0 142:1.0 165:0.3333333333333333 193:0.07142857142857142 201:0.14285714285714285 212:1.0 214:1.0 259:0.2 305:1.0 342:3.0 420:0.5 477:0.14285714285714285 523:1.0 635:1.0 1128:1.0 1132:0.5 2235:1.0 2310:1.0 2479:1.0 3516:1.0 3522:1.0 3565:1.0 3577:1.0 3582:1.0 3669:1.0 3831:1.0 4031:1.0 4132:1.0 4591:1.0 4678:1.0 4879:1.0 5309:1.0 6153:2.0 9 8:0.09090909090909091 12:1.0 14:0.2 17:0.2 21:0.5 24:1.0 45:0.25 51:1.0 54:0.5 61:0.5 88:0.5 99:0.3333333333333333 101:1.0 128:0.06666666666666667 169:0.07692307692307693 195:1.0 204:1.0 214:1.0 259:0.6 295:2.0 304:0.5 328:1.0 347:1.0 404:1.0 409:0.3333333333333333 477:0.14285714285714285 516:1.0 610:1.0 749:1.0 898:0.05555555555555555 1201:1.0 1482:1.0 1608:0.16666666666666666 1662:1.0 2503:1.0 3514:0.14285714285714285 3522:1.0 3545:1.0 3559:1.0 3563:1.0 3565:1.0 3577:2.0 3842:1.0 3871:1.0 3955:1.0 4037:1.0 4172:1.0 4182:1.0 4323:1.0 4798:1.0 5075:1.0 5309:1.0 5549:1.0 5550:1.0 5763:1.0 6720:1.0 9 8:0.045454545454545456 12:1.0 21:1.0 31:0.25 58:0.07692307692307693 81:0.5 88:0.5 95:0.25 99:0.3333333333333333 161:0.5 181:0.07692307692307693 193:0.03571428571428571 214:1.0 259:0.6 328:0.3333333333333333 342:1.0 448:1.0 461:1.0 477:0.14285714285714285 538:0.5 870:1.0 949:1.0 1131:1.0 1265:1.0 1931:1.0 2383:1.0 2565:1.0 3460:1.0 3514:0.14285714285714285 3521:2.0 3558:0.06666666666666667 3559:1.0 3662:1.0 3663:1.0 3698:0.5 3699:1.0 3838:1.0 3908:0.3333333333333333 3929:1.0 3956:1.0 6561:1.0 9 7:0.3333333333333333 8:0.09090909090909091 14:0.4 17:0.2 21:0.5 24:1.0 31:0.25 45:0.75 46:1.0 61:0.5 88:0.5 99:0.3333333333333333 101:2.0 141:0.5 160:1.0 193:0.03571428571428571 214:2.0 228:1.0 259:0.2 288:1.0 298:1.0 305:1.0 328:0.3333333333333333 330:1.0 342:1.0 350:0.3333333333333333 417:0.3333333333333333 438:1.0 692:1.0 718:1.0 965:1.0 1226:1.0 1265:1.0 1687:1.0 3055:1.0 3110:1.0 3514:0.14285714285714285 3522:1.0 3555:1.0 3755:1.0 3836:1.0 4093:1.0 4241:1.0 4721:1.0 6474:1.0 9 7:0.3333333333333333 12:2.0 24:1.0 31:0.25 45:0.5 61:1.0 95:0.25 123:0.5 162:0.25 169:0.07692307692307693 328:1.3333333333333333 332:2.0 340:0.5 347:1.0 449:1.0 461:1.0 522:1.0 799:0.14285714285714285 814:1.0 2110:1.0 3532:1.0 3545:1.0 3571:1.0 3694:1.0 3822:1.0 4231:1.0 4255:1.0 4293:1.0 4897:1.0 5208:1.0 5870:1.0 6013:1.0 6153:1.0 9 5:0.3333333333333333 8:0.13636363636363635 12:1.0 31:0.25 45:0.25 54:0.5 58:0.07692307692307693 88:0.5 123:0.5 134:0.5 181:0.07692307692307693 193:0.03571428571428571 328:0.3333333333333333 342:1.0 445:1.0 523:1.0 528:0.5 576:1.0 1097:1.0 1132:0.5 1201:1.0 1315:1.0 1482:1.0 2606:1.0 2710:1.0 3532:1.0 3545:1.0 3546:1.0 3619:1.0 4134:1.0 5075:1.0 5241:1.0 6092:1.0 9 8:0.09090909090909091 12:1.0 17:0.2 21:1.0 45:0.25 88:0.5 123:1.0 141:0.5 165:0.3333333333333333 195:1.0 253:1.0 328:0.3333333333333333 523:1.0 634:1.0 1088:0.5 1128:1.0 1437:1.0 1716:1.0 2095:1.0 2310:1.0 2357:1.0 3276:1.0 3297:1.0 3514:0.14285714285714285 3532:1.0 3570:1.0 3640:1.0 3856:1.0 5294:1.0 5443:1.0 5806:1.0 9 8:0.045454545454545456 17:0.2 31:0.5 58:0.07692307692307693 88:1.0 99:0.3333333333333333 131:1.0 145:0.16666666666666666 146:1.0 152:1.0 193:0.03571428571428571 209:1.0 259:0.2 281:0.5 295:1.0 301:0.3333333333333333 328:0.3333333333333333 342:1.0 385:0.14285714285714285 404:1.0 477:0.14285714285714285 600:0.058823529411764705 818:1.0 876:1.0 1009:1.0 1405:1.0 1614:1.0 2170:0.5 2219:0.5 2710:1.0 2873:1.0 3522:1.0 3757:1.0 3842:1.0 3844:2.0 4045:1.0 4214:1.0 4365:1.0 4608:1.0 4660:1.0 5051:1.0 5142:1.0 5306:1.0 5792:1.0 9 8:0.13636363636363635 21:0.5 22:0.1 88:0.5 123:0.5 129:0.5 161:0.5 169:0.07692307692307693 193:0.03571428571428571 214:1.0 259:0.6 263:1.0 328:0.3333333333333333 332:1.0 458:1.0 475:1.0 477:0.14285714285714285 799:0.14285714285714285 898:0.05555555555555555 900:1.0 1051:1.0 1275:1.0 1470:1.0 1497:1.0 1629:1.0 1671:1.0 2873:1.0 3532:1.0 3545:1.0 3559:1.0 3628:1.0 3800:1.0 4184:1.0 4256:0.3333333333333333 4700:1.0 5151:1.0 5639:1.0 5870:1.0 6763:1.0 9 8:0.13636363636363635 14:0.4 17:0.2 21:1.0 24:1.0 45:0.25 77:0.3333333333333333 81:0.5 88:1.5 128:0.26666666666666666 162:0.25 193:0.03571428571428571 214:1.0 232:1.0 259:0.4 301:0.3333333333333333 305:2.0 327:1.0 448:1.0 477:0.14285714285714285 528:0.5 600:0.17647058823529413 1088:0.5 1177:1.0 1859:2.0 3514:0.14285714285714285 3522:1.0 3618:1.0 3640:1.0 4015:1.0 4424:1.0 6636:1.0 9 8:0.09090909090909091 12:1.0 45:0.25 51:1.0 81:0.5 88:0.5 101:1.0 128:0.13333333333333333 193:0.07142857142857142 214:1.0 232:1.0 259:0.4 281:0.5 327:1.0 330:1.0 331:1.0 437:1.0 448:1.0 477:0.14285714285714285 507:0.3333333333333333 697:0.5 898:0.05555555555555555 949:1.0 1405:1.0 1439:1.0 2944:1.0 3053:1.0 3514:0.14285714285714285 3521:1.0 3565:1.0 3577:1.0 3628:1.0 3729:1.0 3838:1.0 3955:1.0 4093:1.0 4115:1.0 4591:1.0 4730:1.0 5309:1.0 6071:1.0 6561:1.0 6588:1.0 9 8:0.09090909090909091 14:0.2 21:1.0 22:0.1 45:0.25 58:0.07692307692307693 77:0.3333333333333333 88:0.5 145:0.16666666666666666 146:1.0 161:0.5 175:1.0 214:1.0 259:0.4 295:1.0 301:0.3333333333333333 445:1.0 448:1.0 461:1.0 799:0.14285714285714285 898:0.05555555555555555 1265:1.0 1960:1.0 3522:1.0 3699:1.0 3752:1.0 3962:1.0 4242:1.0 6117:1.0 9 7:0.3333333333333333 8:0.045454545454545456 12:2.0 17:0.2 45:0.25 84:1.0 88:0.5 95:0.25 128:0.2 141:0.5 142:1.0 165:0.3333333333333333 193:0.03571428571428571 214:1.0 259:0.2 328:0.3333333333333333 331:1.0 342:1.0 385:0.14285714285714285 477:0.42857142857142855 604:1.0 638:1.0 697:0.5 714:1.0 898:0.05555555555555555 1128:1.0 1430:1.0 1483:1.0 1644:1.0 1859:1.0 3450:1.0 3514:0.14285714285714285 3521:1.0 3559:1.0 3577:1.0 3587:0.1 3820:1.0 4777:1.0 6129:1.0 6216:1.0 9 7:0.3333333333333333 8:0.09090909090909091 12:1.0 54:0.5 56:1.0 88:0.5 123:0.5 134:1.0 232:1.0 259:0.2 281:0.5 328:0.3333333333333333 477:0.14285714285714285 653:1.0 670:0.5 697:0.5 1070:1.0 1315:1.0 2687:1.0 3059:0.25 3445:1.0 3519:1.0 3532:1.0 3577:1.0 3820:0.5 4093:1.0 9 8:0.045454545454545456 24:1.0 58:0.07692307692307693 123:0.5 164:1.0 259:0.2 281:0.5 288:1.0 489:1.0 1573:1.0 1611:0.25 3532:1.0 3557:1.0 3577:2.0 5309:1.0 6180:1.0 9 7:0.3333333333333333 8:0.045454545454545456 12:1.0 31:0.25 45:0.5 81:0.5 88:0.5 91:1.0 99:0.6666666666666666 128:0.2 144:0.2 181:0.15384615384615385 193:0.14285714285714285 239:0.3333333333333333 253:1.0 259:0.2 304:0.5 327:1.0 331:1.0 350:0.3333333333333333 409:0.3333333333333333 460:1.0 477:0.14285714285714285 523:1.0 600:0.058823529411764705 649:0.3333333333333333 706:1.0 707:1.0 718:1.0 792:1.0 818:1.0 870:1.0 965:1.0 984:1.0 1344:1.0 1470:1.0 1611:0.25 2590:1.0 2801:1.0 3297:1.0 3334:1.0 3532:1.0 3545:1.0 3546:1.0 3612:1.0 3621:0.5 4475:1.0 5131:0.5 9 5:0.3333333333333333 31:0.25 45:0.5 63:1.0 101:1.0 162:0.5 164:1.0 256:1.0 259:0.2 328:0.3333333333333333 342:1.0 448:1.0 477:0.2857142857142857 576:1.0 698:0.5 2590:1.0 3334:1.0 3532:1.0 3548:1.0 3612:1.0 3755:1.0 3999:1.0 4369:1.0 4375:1.0 5109:1.0 5847:1.0 9 22:0.1 24:2.0 88:0.5 123:0.5 128:0.06666666666666667 133:1.0 142:1.0 214:1.0 259:0.6 295:1.0 445:1.0 477:0.2857142857142857 898:0.05555555555555555 1066:1.0 1337:0.5 3521:1.0 3532:1.0 3577:1.0 3621:0.5 3628:1.0 3674:1.0 3755:1.0 3837:1.0 3908:0.3333333333333333 3956:1.0 4475:1.0 4502:1.0 4573:1.0 9 8:0.09090909090909091 21:1.0 31:0.25 58:0.07692307692307693 61:0.5 88:0.5 175:1.0 193:0.03571428571428571 214:1.0 259:0.4 328:0.3333333333333333 332:1.0 400:0.5 448:1.0 461:1.0 489:1.0 522:1.0 538:1.0 698:0.5 898:0.05555555555555555 958:1.0 1435:1.0 1608:0.16666666666666666 1962:1.0 2219:0.5 2383:1.0 3563:1.0 3582:1.0 3590:1.0 3618:1.0 3698:0.5 3699:1.0 3769:1.0 3904:1.0 3996:1.0 4093:1.0 4130:1.0 4236:1.0 4249:1.0 4251:1.0 4252:1.0 4272:1.0 4424:1.0 5261:1.0 5756:1.0 9 8:0.045454545454545456 14:0.2 21:0.5 45:0.25 58:0.07692307692307693 88:0.5 128:0.06666666666666667 142:1.0 162:0.25 193:0.03571428571428571 214:1.0 259:0.4 263:1.0 305:1.0 327:1.0 328:0.3333333333333333 330:1.0 445:1.0 449:0.5 477:0.2857142857142857 558:1.0 576:1.0 600:0.058823529411764705 610:1.0 771:1.0 898:0.05555555555555555 1145:0.3333333333333333 1470:1.0 1939:1.0 2235:1.0 2426:0.3333333333333333 2960:1.0 3521:1.0 3532:1.0 3569:1.0 3577:1.0 3612:1.0 3755:1.0 3813:1.0 3820:0.5 3901:1.0 3955:1.0 4037:1.0 4127:0.3333333333333333 5149:1.0 9 8:0.045454545454545456 17:0.2 21:0.5 23:0.25 31:0.25 45:0.25 54:0.5 123:0.5 128:0.13333333333333333 152:1.0 193:0.10714285714285714 214:1.0 259:0.4 295:1.0 328:1.0 342:3.0 417:0.3333333333333333 448:1.0 477:0.14285714285714285 483:1.0 523:1.0 610:1.0 799:0.14285714285714285 1143:1.0 1150:1.0 1337:0.5 1470:1.0 1611:0.25 2040:1.0 2163:1.0 2523:1.0 3518:0.2 3522:1.0 3565:1.0 3597:1.0 3628:1.0 3694:2.0 3817:1.0 3955:1.0 4019:1.0 4064:0.5 4134:1.0 4233:1.0 4257:1.0 4274:0.5 4347:1.0 4500:1.0 4975:1.0 5332:1.0 6653:1.0 9 7:0.6666666666666666 8:0.045454545454545456 12:1.0 14:0.2 21:0.5 22:0.1 31:0.25 45:0.75 58:0.07692307692307693 77:0.3333333333333333 86:0.5 88:0.5 128:0.06666666666666667 141:1.0 164:1.0 193:0.03571428571428571 226:1.0 259:0.2 266:2.0 295:1.0 350:0.3333333333333333 376:1.0 460:1.0 523:1.0 576:1.0 846:1.0 900:1.0 929:0.5 1265:1.0 1337:0.5 2095:1.0 2210:1.0 2219:0.5 3355:1.0 3514:0.14285714285714285 3520:1.0 3532:1.0 3577:1.0 3639:1.0 3705:1.0 3755:1.0 4371:1.0 4518:1.0 5287:1.0 6752:1.0 9 7:0.3333333333333333 8:0.09090909090909091 14:0.4 21:0.5 24:1.0 45:1.25 46:1.0 61:0.5 77:0.3333333333333333 88:0.5 91:1.0 146:1.0 193:0.03571428571428571 201:0.2857142857142857 295:1.0 328:0.6666666666666666 437:1.0 445:2.0 449:0.5 523:1.0 729:1.0 925:1.0 1050:1.0 1132:0.5 1437:1.0 2310:1.0 2366:1.0 2383:1.0 2580:1.0 2972:1.0 3334:1.0 3422:1.0 3532:1.0 3582:1.0 3621:0.5 3737:1.0 3769:1.0 3904:1.0 3917:1.0 3935:1.0 4093:1.0 4130:1.0 4249:1.0 4251:1.0 4252:1.0 4264:1.0 5261:1.0 5756:1.0 9 7:0.3333333333333333 8:0.13636363636363635 14:0.2 17:0.2 21:1.0 22:0.1 31:0.25 32:1.0 45:0.25 88:1.5 123:0.5 128:0.06666666666666667 133:1.0 165:0.3333333333333333 193:0.07142857142857142 259:0.2 281:0.5 437:1.0 448:2.0 461:1.0 523:2.0 799:0.14285714285714285 965:1.0 1113:0.2 1128:1.0 1161:1.0 1265:1.0 1611:0.25 1664:0.3333333333333333 3297:1.0 3514:0.42857142857142855 3516:1.0 3521:1.0 3522:1.0 3532:1.0 3548:1.0 3573:1.0 3577:1.0 3587:0.1 3619:1.0 3678:1.0 3714:1.0 3757:1.0 3955:1.0 4184:1.0 4274:0.5 4619:0.5 6604:1.0 9 21:0.5 88:0.5 95:0.25 99:0.3333333333333333 101:1.0 134:0.5 162:0.5 190:1.0 193:0.03571428571428571 214:1.0 259:0.2 266:1.0 275:1.0 290:1.0 328:0.3333333333333333 337:1.0 400:0.5 448:1.0 460:1.0 477:0.42857142857142855 799:0.14285714285714285 1132:0.5 2192:1.0 2266:1.0 2602:1.0 2606:1.0 2942:1.0 2972:1.0 3522:1.0 3532:1.0 3545:1.0 3546:1.0 3548:1.0 3559:1.0 3564:1.0 3628:1.0 3737:1.0 3757:1.0 4000:1.0 4045:1.0 4068:1.0 4661:1.0 9 7:0.3333333333333333 45:0.5 128:0.06666666666666667 162:0.25 164:1.0 193:0.07142857142857142 194:0.25 214:1.0 295:1.0 417:0.3333333333333333 706:1.0 1121:0.5 1644:1.0 1746:1.0 2008:1.0 2972:1.0 3521:1.0 3522:1.0 3532:1.0 3559:1.0 3577:1.0 3684:1.0 3729:1.0 3843:0.5 3921:1.0 4010:0.3333333333333333 4015:1.0 4068:1.0 4257:1.0 4458:1.0 4889:1.0 6077:1.0
693c83755d70fcd3072e40753ee1b116a9609cc4
2ba48648eefadee113a7c2f5d608cab5209c3a8b
/Unit&Func Test/单元测试文档/CagOS单元测试结果/LIBC/testcase/ns16550.tst
97ce997ab1deae91547075029b4fac48f359af5c
[]
no_license
wangdong412/Consen-SIS
879762175575d0a62f26ec1effeb46c3fd62e3e8
bca3fac35c961c3558a3438bca55e6d20825da3a
refs/heads/master
2020-07-11T05:17:18.814104
2019-08-27T09:41:41
2019-08-27T09:41:41
204,450,874
1
5
null
null
null
null
UTF-8
Scilab
false
false
3,568
tst
ns16550.tst
-- VectorCAST 6.4c (02/03/16) -- Test Case Script -- -- Environment : LIBC -- Unit(s) Under Test: abort1 abs atof atoi atol bLib memchr memcmp memcpy memmove memset ns16550 qsort rand random random_r strcat strchr strcmp strcpy strlcat strlcpy strlen strncat strncmp strncpy strpbrk strspn strtod strtok strtok_r strtol strtoul -- -- Script Features TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS -- -- Unit: ns16550 -- Subprogram: ns16550DevInit -- Test Case: Devinit TEST.UNIT:ns16550 TEST.SUBPROGRAM:ns16550DevInit TEST.NEW TEST.NAME:Devinit TEST.BASIS_PATH:1 of 1 TEST.NOTES: No branches in subprogram TEST.END_NOTES: TEST.STUB:uut_prototype_stubs.writeb TEST.VALUE:ns16550.<<GLOBAL>>.siodev:<<malloc 1>> TEST.END -- Subprogram: ns16550InputChar -- Test Case: inputchar1 TEST.UNIT:ns16550 TEST.SUBPROGRAM:ns16550InputChar TEST.NEW TEST.NAME:inputchar1 TEST.BASIS_PATH:1 of 2 TEST.NOTES: This is an automatically generated test case. Test Path 1 (1) while ((readb(&(siodev->lsr)) & 0x1) == 0) ==> FALSE Test Case Generation Notes: TEST.END_NOTES: TEST.STUB:uut_prototype_stubs.readb TEST.VALUE:uut_prototype_stubs.readb.return:1 TEST.VALUE:ns16550.<<GLOBAL>>.siodev:<<malloc 1>> TEST.EXPECTED:ns16550.ns16550InputChar.return:\1 TEST.END -- Test Case: inputchar2 TEST.UNIT:ns16550 TEST.SUBPROGRAM:ns16550InputChar TEST.NEW TEST.NAME:inputchar2 TEST.BASIS_PATH:2 of 2 TEST.NOTES: This is an automatically generated test case. Test Path 2 (1) while ((readb(&(siodev->lsr)) & 0x1) == 0) ==> TRUE Test Case Generation Notes: TEST.END_NOTES: TEST.STUB:uut_prototype_stubs.readb TEST.VALUE:uut_prototype_stubs.readb.return:0 TEST.EXPECTED:ns16550.ns16550InputChar.return:\0 TEST.END -- Subprogram: ns16550OutputChar -- Test Case: outputchar1 TEST.UNIT:ns16550 TEST.SUBPROGRAM:ns16550OutputChar TEST.NEW TEST.NAME:outputchar1 TEST.BASIS_PATH:1 of 2 TEST.NOTES: This is an automatically generated test case. Test Path 1 (1) while ((readb(&(siodev->lsr)) & 0x20) == 0) ==> FALSE Test Case Generation Notes: TEST.END_NOTES: TEST.STUB:uut_prototype_stubs.readb TEST.STUB:uut_prototype_stubs.writeb TEST.VALUE:uut_prototype_stubs.readb.return:32 TEST.STUB_EXP_USER_CODE:uut_prototype_stubs.writeb.val {{ <<uut_prototype_stubs.writeb.val>> == ( 'A' ) }} TEST.END_STUB_EXP_USER_CODE: TEST.VALUE_USER_CODE:ns16550.ns16550OutputChar.c <<ns16550.ns16550OutputChar.c>> = ( 'A' ); TEST.END_VALUE_USER_CODE: TEST.END -- Test Case: outputchar2 TEST.UNIT:ns16550 TEST.SUBPROGRAM:ns16550OutputChar TEST.NEW TEST.NAME:outputchar2 TEST.BASIS_PATH:2 of 2 TEST.NOTES: This is an automatically generated test case. Test Path 2 (1) while ((readb(&(siodev->lsr)) & 0x20) == 0) ==> TRUE Test Case Generation Notes: TEST.END_NOTES: TEST.STUB:uut_prototype_stubs.readb TEST.STUB:uut_prototype_stubs.writeb TEST.VALUE:uut_prototype_stubs.readb.return:0 TEST.STUB_EXP_USER_CODE:uut_prototype_stubs.writeb.val {{ <<uut_prototype_stubs.writeb.val>> == ( 'B' ) }} TEST.END_STUB_EXP_USER_CODE: TEST.VALUE_USER_CODE:ns16550.ns16550OutputChar.c <<ns16550.ns16550OutputChar.c>> = ( 'B' ); TEST.END_VALUE_USER_CODE: TEST.END -- Subprogram: ns16550SioInit -- Test Case: IOinit TEST.UNIT:ns16550 TEST.SUBPROGRAM:ns16550SioInit TEST.NEW TEST.NAME:IOinit TEST.BASIS_PATH:1 of 1 TEST.NOTES: No branches in subprogram TEST.END_NOTES: TEST.STUB:ns16550.ns16550DevInit TEST.END
350ab2d4d79b7d57893ac23d2e662db4a33ee37e
449d555969bfd7befe906877abab098c6e63a0e8
/199/CH6/EX6.5/Example_6_5.sce
004322ea7de6a243ce62b7b00145b480dd872fd3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
368
sce
Example_6_5.sce
// Chapter6 // Page.No-203, Figure.No-6.7 // Example_6_5 // Output voltage // Given clear;clc; Va=2;Vb=-3;Vc=4; // Input voltages in volts R1=1*10^3;Rf=2*10^3; V1=(Va+Vb+Vc)/3; // Voltage at non-inverting terminal printf("\n Voltage at non-inverting terminal is = %.f V \n",V1) Vo=(1+Rf/R1)*V1; // Output voltage printf("\n Output voltage is = %.f V \n",Vo)
d1eafb0a7608d75e1079253f249e8af0ad4b2832
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH5/EX5.1/EX_5_1.sce
17c8bb40cbb0d90bc938830f1790ee54bd378617
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
293
sce
EX_5_1.sce
// Example 5.1:COUPLING CAPACITOR clc; clear; close; Rs=10;//series resistance in killo ohms Xc1= Rs/10;//reactance at 20Hz C1=(1/(2*%pi*20*Xc1*10^3))*10^6;//CAPACITANCE IN MICRO FARAD disp(C1,"capacitance in micro farad is as this is not a standar value will select 10 micro farad")
b4e00365eb713a19dd979b9cd70cc9cc72ff89a5
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH29/EX29.4/Ex29_4.sce
27a42271e1643ed3b935383901aa00a2b0f2d883
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
512
sce
Ex29_4.sce
clc; T2A=310*10**-6; T2B=250*10**-6; VCC=15; IC=5*10**-3; hFC=20; RC=VCC/IC; RC1=RC; RC2=RC; disp('ohm',RC*1,"RC1=RC2=RC="); hFE=hFC; IBsat=IC/hFE; IB=2*IBsat; R=VCC/IB; R1=R; R2=R; C1=T2A/(0.69*R1); disp('pF',C1*10**12,"C1="); C2=T2B/(0.69*R2); disp('pF',C2*10**12,"C2="); tao1=R1*C1; disp('microsec',tao1*10**6,"tao1="); tao2=R2*C2; disp('microsec',tao2*10**6,"tao2="); tao11=RC1*C1/2; disp('microsec',tao11*10**6,"tao11="); tao12=RC2*C2/2; disp('microsec',tao12*10**6,"tao12=");
42fa9ce41bd3c4c44f5a09d3be1a64370822d4db
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH19/EX19.1/19_01.sce
41bb5a28d58fabf5f1aa04685ddb60c8180cb245
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
248
sce
19_01.sce
//Chapter 19, Problem 1 clc; A0=120; //voltage gain V1=2.35; //input voltage V2=2.45; //input voltage V0=A0*(V2-V1); //output voltage printf("Output voltage = %d V",V0);
e8e1019dff70ec43c1e4c527a0fbaae3fc5cebff
1db0a7f58e484c067efa384b541cecee64d190ab
/macros/bilinear.sci
71b19f0cccf7e2b6090e9ac66e241a06e9fb2057
[]
no_license
sonusharma55/Signal-Toolbox
3eff678d177633ee8aadca7fb9782b8bd7c2f1ce
89bfeffefc89137fe3c266d3a3e746a749bbc1e9
refs/heads/master
2020-03-22T21:37:22.593805
2018-07-12T12:35:54
2018-07-12T12:35:54
140,701,211
2
0
null
null
null
null
UTF-8
Scilab
false
false
5,756
sci
bilinear.sci
<<<<<<< HEAD // Copyright (C) 2018 - IIT Bombay - FOSSEE // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt // Original Source : https://octave.sourceforge.io/signal/ // Modifieded by:Sonu Sharma, RGIT Mumbai // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in function [Zz, Zp, Zg] = bilinear(Sz, Sp, Sg, T) //Transforms a s-plane filter (Analog) into a z-plane filter (Digital) using Bilinear transformation //Calling Sequence // [Zb, Za] = bilinear(Sb, Sa, T) // [Zb, Zb] = bilinear(Sz, Sp, Sg, T) // [Zz, Zp, Zg] = bilinear(...) //Prameters //Sb: Numerator coefficient vector in s-domain //Sa: denumerator coefficient vector s-domain //Sz: zeros in s-plane //Sp: poles in s-plane //Sg: gain in s-domain //T: Sampling period (double) //Zb: Numerator coefficient vector in z-domain //Za: denumerator coefficient vector z-domain //Zz: zeros in z-plane //Zp: poles in z-plane //Zg: gain in z-domain //Description: //a filter design can be transformed from the s-plane to the z-plane while maintaining the band edges by means of the bilinear transform. This maps the left hand side of the s-plane into the interior of the unit circle in z-plane. The mapping is highly non-linear, so you must design your filter with band edges in the s-plane positioned at 2/T tan(w*T/2) so that they will be positioned at w after the bilinear transform is complete. //It does following transformation from s-plane to z-plane // 2 z-1 // s -> - ---- // T z+1 //Examples //[z p g] = bilinear ([1 2 3], [4 5 6], 1, 1) //Output : // Number of zeros at infinity = // // 1. // g = // // - 0.1666667 // p = // // - 3. - 2.3333333 - 2. // z = // // - 5. 3. funcprot(0); [nargout nargin] = argn(); ieee(1); if nargin==3 T = Sg; [Sz, Sp, Sg] = tf2zp(Sz, Sp); elseif nargin~=4 error("bilinear: invalid number of inputs") end p = length(Sp); z = length(Sz); if z > p | p==0 error("bilinear: must have at least as many poles as zeros in s-plane"); end // ---------------- ------------------------- ------------------------ // Bilinear zero: (2+xT)/(2-xT) pole: (2+xT)/(2-xT) // 2 z-1 pole: -1 zero: -1 // S -> - --- gain: (2-xT)/T gain: (2-xT)/T // T z+1 // ---------------- ------------------------- ------------------------ Zg = real(Sg * prod((2-Sz*T)/T) / prod((2-Sp*T)/T)); if Zg == 0 & nargout == 3 then error("bilinear: invalid value of gain due to zero(s) at infinity avoid z-p-g form and use tf form ") end Zp = (2+Sp*T)./(2-Sp*T); if isempty(Sz) Zz = -ones(size(Zp)); else Zz = [(2+Sz*T)./(2-Sz*T)]; Zz = postpad(Zz, p, -1); end if nargout==2 // zero at infinity Zz1 = []; for i=1:length(Zz) if Zz(i) ~= %inf Zz1 = [Zz1 Zz(i)]; end end Zz = Zz1; if Zg == 0 z = %z; bi = (2*(z - 1))/(T*(z + 1)); Hs = Sg * real(poly(Sz, "s"))/real(poly(Sp, "s")); Hz = horner(Hs, bi); b = coeff(Hz.num); a = coeff(Hz.den); Zg = b($)/a($); end [Zz, Zp] = zp2tf(Zz, Zp, Zg); Zz = prepad(Zz, length(Zp)); end endfunction ======= function [Zb, Za, Zg]= bilinear(Sb,varargin) // Transform a s-plane filter specification into a z-plane specification //Calling Sequence // [ZB, ZA] = bilinear (SB, SA, T) // [ZB, ZA] = bilinear (SZ, SP, SG, T) // [ZZ, ZP, ZG] = bilinear (...) //Description //Transform a s-plane filter specification into a z-plane specification. Filters can be specified in either zero-pole-gain or transfer function form. The input form does not have to match the output form. 1/T is the sampling frequency represented in the z plane. // //Note: this differs from the bilinear function in the signal processing toolbox, which uses 1/T rather than T. // //Theory: Given a piecewise flat filter design, you can transform it from the s-plane to the z-plane while maintaining the band edges by means of the bilinear transform. This maps the left hand side of the s-plane into the interior of the unit circle. The mapping is highly non-linear, so you must design your filter with band edges in the s-plane positioned at 2/T tan(w*T/2) so that they will be positioned at w after the bilinear transform is complete. //Examples //[ZB,ZA]=bilinear([1],[2,3],3) funcprot(0); lhs= argn(1); rhs= argn(2); if(rhs < 3 | rhs > 4) error("Wrong number of input arguments"); end if(lhs < 2 | lhs > 3) error("Wrong number of output arguments"); end select(rhs) case 3 then select(lhs) case 2 then [Zb, Za]= callOctave("bilinear", Sb, varargin(1), varargin(2)); case 3 then [Zb, Za, Zg]= callOctave("bilinear", Sb, varargin(1), varargin(2)); end case 4 then select(lhs) case 2 then [Zb, Za]= callOctave("bilinear", Sb, varargin(1), varargin(2), varargin(3)); case 3 then [Zb, Za, Zg]= callOctave("bilinear", Sb, varargin(1), varargin(2), varargin(3)); end end endfunction >>>>>>> 6bbb00d0f0128381ee95194cf7d008fb6504de7d
b6fc4cc583e5d95473476212a8dc3136079af07a
449d555969bfd7befe906877abab098c6e63a0e8
/3648/CH3/EX3.3/Ex3_3.sce
ab734b1c6d9152752c73860aa8e103730a88f3b9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
374
sce
Ex3_3.sce
//Example 3_3 clc(); clear; //To find acceleration and the distance it travels in time vf=5 //units in meters/sec v0=0 //units in meters/sec t=10 //units in sec a=(vf-v0)/t //units in meters/sec^2 v_1=(vf+v0)/2 //unis in meters/sec x=v_1*t //units in meters printf("Acceleration is a=%.1f meters/sec\n",a) printf("Distance travelled is x=%d meters",x)
0f76ece1a97a3d11cfe2fcd6030d304f7d84befe
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/metanet/check_graph.sci
26124aac2ccd9f0ad40c6cba970a8f29e80d260d
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
6,356
sci
check_graph.sci
function check_graph(g) // Copyright INRIA [lhs,rhs]=argn(0) if rhs<>1 then error(39), end if type(g)<>16 then error('Graph list check: the graph must be a typed list') end l=34 if size(g)<>l then error('Graph list check: the graph must be a list of size '+string(l)) end // type if g(1)(1)<>'graph' then error('Graph list check: the list is not a graph') end // name s=size(g(2)) if type(g(2))<>10|prod(s)<>1 then error('Graph list check: ""name"" must be a string') end // directed if g(3)<>1&g(3)<>0 then error('Graph list check: ""directed"" must be 0 or 1') end // node_number if prod(size(g(4)))<>1|g(4)<1 error('Graph list check: ""node_number"" must be greater than 1') end n=g(4) // tail s=size(g(5)) if s(1)<>1 then error('Graph list check: ""tail"" must be a row vector') end ma=s(2) // head s=size(g(6)) if s(1)<>1 then error('Graph list check: ""head"" must be a row vector') end if s(2)<>ma then error('Graph list check: ""tail"" and ""head"" must have identical sizes') end // tail and head if min(min(g(5)),min(g(6)))<1|max(max(g(5)),max(g(6)))>n then error('Graph list check: ""tail"" and ""head"" do not represent a graph') end // node_name s=size(g(7)) if prod(s)<>0 then if type(g(7))<>10 then error('Graph list check: ""node_name"" must be a string row vector') end if s(1)<>1|s(2)<>n then error('Graph list check: ""node_name"" must be a row vector of size '+string(n)) end end // node_type s=size(g(8)) if prod(s)<>0 then if s(1)<>1|s(2)<>n then error('Graph list check: ""node_type"" must be a row vector of size '+string(n)) end end // node_x s=size(g(9)) if prod(s)<>0 then if s(1)<>1|s(2)<>n then error('Graph list check: ""node_x"" must be a row vector of size '+string(n)) end end // node_y s=size(g(10)) if prod(s)<>0 then if s(1)<>1|s(2)<>n then error('Graph list check: ""node_y"" must be a row vector of size '+string(n)) end end // node_color s=size(g(11)) if prod(s)<>0 then if s(1)<>1|s(2)<>n then error('Graph list check: ""node_color"" must be a row vector of size '+string(n)) end end // node_diam s=size(g(12)) if prod(s)<>0 then if s(1)<>1|s(2)<>n then error('Graph list check: ""node_diam"" must be a row vector of size '+string(n)) end end // node_border s=size(g(13)) if prod(s)<>0 then if s(1)<>1|s(2)<>n then error('Graph list check: ""node_border"" must be a row vector of size '+string(n)) end end // node_font_size s=size(g(14)) if prod(s)<>0 then if s(1)<>1|s(2)<>n then error('Graph list check: ""node_font_size"" must be a row vector of size '+string(n)) end end // node_demand s=size(g(15)) if prod(s)<>0 then if s(1)<>1|s(2)<>n then error('Graph list check: ""node_demand"" must be a row vector of size '+string(n)) end end // edge_name s=size(g(16)) if prod(s)<>0 then if type(g(16))<>10 then error('Graph list check: ""edge_name"" must be a string row vector') end if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_name"" must be a row vector of size '+string(ma)) end end // edge_color s=size(g(17)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_color"" must be a row vector of size '+string(ma)) end end // edge_width s=size(g(18)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_width"" must be a row vector of size '+string(ma)) end end // edge_hi_width s=size(g(19)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_hi_width"" must be a row vector of size '+string(ma)) end end // edge_font_size s=size(g(20)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_font_size"" must be a row vector of size '+string(ma)) end end // edge_length s=size(g(21)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_length"" must be a row vector of size '+string(ma)) end end // edge_cost s=size(g(22)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_cost"" must be a row vector of size '+string(ma)) end end // edge_min_cap s=size(g(23)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_min_cap"" must be a row vector of size '+string(ma)) end end // edge_max_cap s=size(g(24)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_max_cap"" must be a row vector of size '+string(ma)) end end // edge_q_weight s=size(g(25)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_q_weight"" must be a row vector of size '+string(ma)) end end // edge_q_orig s=size(g(26)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_q_orig"" must be a row vector of size '+string(ma)) end end // edge_weight s=size(g(27)) if prod(s)<>0 then if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_weight"" must be a row vector of size '+string(ma)) end end // default_node_diam s=size(g(28)) if prod(s)<>0 then if prod(s)<>1 then error('Graph list check: ""default_node_diam"" must be a scalar') end end // default_node_border s=size(g(29)) if prod(s)<>0 then if prod(s)<>1 then error('Graph list check: ""default_node_border"" must be a scalar') end end // default_edge_width s=size(g(30)) if prod(s)<>0 then if prod(s)<>1 then error('Graph list check: ""default_edge_width"" must be a scalar') end end // default_edge_hi_width s=size(g(31)) if prod(s)<>0 then if prod(s)<>1 then error('Graph list check: ""default_edge_hi_width"" must be a scalar') end end // default_font_size s=size(g(32)) if prod(s)<>0 then if prod(s)<>1 then error('Graph list check: ""default_font_size"" must be a scalar') end end // node_label s=size(g(33)) if prod(s)<>0 then if type(g(33))<>10 then error('Graph list check: ""node_label"" must be a string row vector') end if s(1)<>1|s(2)<>n then error('Graph list check: ""node_label"" must be a row vector of size '+string(n)) end end // edge_label s=size(g(34)) if prod(s)<>0 then if type(g(34))<>10 then error('Graph list check: ""edge_label"" must be a string row vector') end if s(1)<>1|s(2)<>ma then error('Graph list check: ""edge_label"" must be a row vector of size '+string(ma)) end end
d03f35a7f8ef72be8671cbb154a8defe1d21a548
449d555969bfd7befe906877abab098c6e63a0e8
/215/CH15/EX15.2/ex15_2.sce
ff6b08cf64839eca19674327e46a0b827889ac65
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
339
sce
ex15_2.sce
clc //Example 15.2 //Install Symbolic toolbox //Calculate the voltage //Selecting the current based model //From figure 15.6(b) //Writing the KCL equation for the voltage and taking the Laplace transform syms s s=%s Vc=-2*(s-3)/(s*(s+2/3)) Vcp=pfss (Vc) Vcp1=ilaplace(Vcp(1)) Vcp2=ilaplace(Vcp(2)) vc=Vcp1+Vcp2 disp(vc,'vc=')
ac38c03c1bc6951b4251769e56f4e4b72f7cbf7a
449d555969bfd7befe906877abab098c6e63a0e8
/647/CH8/EX8.2/Example8_2.sce
8f028888f6a96cc36eba36904aeae9ba1f87ca8b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
488
sce
Example8_2.sce
clear; clc; // Example: 8.2 // Page: 298 printf("Example: 8.2 - Page: 298\n\n"); // Solution //*****Data******// Tl = -10 + 273;// [K] Th = 45 + 273;// [K] Ql = 1;// [ton] //*************// // Solution (a) COP = Tl/(Th - Tl); Wnet = Ql*3.516/COP;// [kW] printf("The power consumption is %.3f kW\n",Wnet); // Solution (b) Tl = -20 + 273;// [K] Th = 45 + 273;// [K] COP = Tl/(Th - Tl); Ql = Wnet*COP;// [kW] printf("Cooling Effect produced is %.3f kW\n",Ql);
cd18d6e6cb61eefb4c14da7128c27a49bfc5d70b
449d555969bfd7befe906877abab098c6e63a0e8
/1052/CH22/EX22.4/224.sce
027a6e4d4f238aa037cfd23826250250094aeb62
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
682
sce
224.sce
clc; //Example 22.4 //page no 298 printf("Example 22.4 page no 298\n\n"); //a centrifugal pump operating at 1800 rpm ,we have to find the impeller diameter needed to develop a head of 200 ft h=200//height,ft g=32.2//gravitational acc. ft/s^2 v=sqrt(2*g*h)//velocity needed to develop a head of 200 ft printf("\n velocity v=%f ft/s",v); N=1800//pump operating at this rotational speed,in rpm c=v*60/N//the number of feet that the impeller travels in one rotations //this c represents the circumference of the impeller since it is equal to one rotation printf("\n circumference c=%f ft/rotation",c); D=c/%pi//diameter of the impeller printf("\n diameter D=%f ft",D);
3ea0663a7d82afabd1ec57e6b750e78c45908b38
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH4/EX4.11/example_4_11.sce
3265c2daddafd2e8ed1ed39dcf2e4d5f207b8c79
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
316
sce
example_4_11.sce
clear; clc; disp("--------------Example 4.11---------------") bandwidth = 200; // 200 kHz printf("\nThe minimum sampling rate cannot be determined in this case because we do not know where the bandwidth starts\nor ends or in order words we do not know the maximum frequency in the signal."); // display example
9645ba65e20091b25878cdd52a3a418e121bac7d
449d555969bfd7befe906877abab098c6e63a0e8
/1309/CH2/EX2.6/ch2_6.sce
fccda732a4a1b4346c72d79589b27bcbf8567b73
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,131
sce
ch2_6.sce
clc; clear; printf("\t\t\tChapter2_example6\n\n\n"); // Determination of the overall heat transfer coefficient k12=24.8; // thermal conductivity of 1C steel in BTU/(hr.ft.degree Rankine)from appendix table B2 k23=.023; // // thermal conductivity of glass wool insulation in BTU/(hr.ft.degree Rankine)from appendix table B3 // Specifications of 6 nominal, schedule 40 pipe (no schedule was specified, so the standard is assumed) from appendix table F1 are as follows D2=6.625/12; // outer diameter in ft D1=0.5054; // inner diameter in ft printf("\nOuter diameter is %.3f ft",D2); printf("\nInner diameter is %.4f ft",D1); t=2/12; // wall thickness of insulation in ft D3=D2+t; printf("\nDiameter including thickness is %.5f ft",D3); hc1=12; // convection coefficient between the air and the pipe wall in BTU/(hr. sq.ft.degree Rankine). hc2=1.5; // convection coefficient between the glass wool and the ambient air in BTU/(hr. sq.ft.degree Rankine). U=1/((1/hc1)+(D1*log(D2/D1)/k12)+(D1*log(D3/D2)/k23)+(D1/(hc2*D3))); printf("\nOverall heat transfer coefficient is %.3f BTU/(hr. sq.ft.degree Fahrenheit)",U);
aca60eb18b358e6afc465a790a919fdaff985761
2ae858a680a4ccf8a2ec89a45a1e48a0292d8eab
/macros/extractHOGFeatures.sci
be7e532f0cb1ac946ec969dd00b339a87cf30c3b
[]
no_license
shreyneil/FOSSEE-Image-Processing-Toolbox
f315a82c325b2d6cbd0611689f3e30071a38490d
dd1cbd0dcbe0c3dd11d6ce1ab205b4b72011ae56
refs/heads/master
2020-12-02T16:26:13.755637
2017-07-07T19:22:33
2017-07-07T19:22:33
96,552,147
0
0
null
2017-07-07T15:32:15
2017-07-07T15:32:15
null
UTF-8
Scilab
false
false
3,005
sci
extractHOGFeatures.sci
// Copyright (C) 2015 - IIT Bombay - FOSSEE // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt // Author: Shreyash Sharma // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in function [featureVector , keypoints] = extractHOGFeatures(I, varargin) // This function is used to extract features from an image. // // Calling Sequence // im = imread(image); // feat = extractHOGFeatures(im) // feat = extractHOGFeatures(im,name,value) // feat = extractHOGFeatures(im,"cellsize",cellsize) // feat = extractHOGFeatures(im,"cellsize",cellsize,"BlockSize",Blocksize,) // feat = extractHOGFeatures(im,"cellsize",cellsize,"BlockSize",Blocksize,"BlockOverlap",BlockOverlap) // feat = extractHOGFeatures(im,"cellsize",cellsize,"BlockSize",Blocksize,"BlockOverlap",BlockOverlap,"NumBins",Numbins) // // Parameters // feat : Feature matrix returned by obtaining features from a particular image. // cellsize : The size of the cell specified by the user for extractng features. // Blocksize : The dimensions of the block containing multiplte cells for feature extraction. An image comprises of multiple blocks // BlockOverlap : This matrix specifies the dimension of the block which moves or traverses across an image for feature extraction. // Numbins : Number of bins.The histogram contains 9 bins corresponding to angles 0, 20, 40 … 160. // // Description // feat = extractHOGFeatures(I) returns extracted HOG features from a truecolor or grayscale input image, I. The features are returned in a 1-by-N vector,where N is the HOG feature length. // // Examples // i = imread('download.jpg') // tr = extractHOGFeatures(i); // tr1 = extractHOGFeatures(i,"CellSize",[8,8]); // tr2 = extractHOGFeatures(i,"CellSize",[8,8],"BlockSize",[16,16]); // tr3 = extractHOGFeatures(i,"CellSize",[8,8],"BlockSize",[16,16],"BlockOverlap",[8,8]); // tr4 = extractHOGFeatures(i,"CellSize",[8,8],"BlockSize",[16,16],"BlockOverlap",[8,8],"NumBins",9); img = mattolist(I); [lhs rhs] = argn(0); if rhs<1 then error(msprintf("Not enough input arguments")); end if rhs>9 then error(msprintf("Too many input arguments")); end l = rhs-1; if(l==0) then [featureVector, keypoints] = raw_extractHOGFeatures(img); elseif (l==2) then [featureVector, keypoints] = raw_extractHOGFeatures(img,varargin(1),varargin(2)); elseif (l==4) then [featureVector, keypoints] = raw_extractHOGFeatures(img,varargin(1),varargin(2),varargin(3),varargin(4)); elseif (l==6) then [featureVector, keypoints] = raw_extractHOGFeatures(img,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5),varargin(6)); else [featureVector, keypoints] = raw_extractHOGFeatures(img,varargin(1),varargin(2),varargin(3),varargin(4),varargin(5),varargin(6),varargin(7),varargin(8)); end endfunction
4098d72bda98aa7ba2a081b2a9d0ea964b77be92
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH9/EX9.19.b/Ex_9_19_b.sce
cba0912b0c383b2938ab74756dc212b186dd4789
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
398
sce
Ex_9_19_b.sce
// Example 9.19.a;//OPTICAL POWER clc; clear; close; Ip=10^-6;//optical current in ampere e=1.6*10^-19;//elecronic charge C=3*10^8;//SPEED of light in meter per second n=0.50;//quantum efficiency h=0.9;//wavelength in nano meter ht=6.62*10^-34;//plank constt. R=((n*e*h*10^-6)/(ht*C));//responsivity Po=(Ip/R)*10^6;//Output power in micro watt disp(Po,"Output power in micro watt")
ac6c2567d64e86ea38e25227a8a830e442c6bedd
449d555969bfd7befe906877abab098c6e63a0e8
/1049/CH3/EX3.15/ch3_15.sce
7f6fb8d64ead3129e04e1fbc50c53401f514ee34
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
168
sce
ch3_15.sce
clear; clc; V_s=2*230;//V V_o=(sqrt(2)*V_s)/%pi; R=60;//ohm P_dc=(V_o)^2/R; TUF=0.2865; VA=P_dc/TUF; printf("kVA rating of the transformer=%.1f kVA",VA/1000);
8343a445aa1c9fbc92d89e9e5544fb22d366e40c
08bfc8a1f8e44adc624d1f1c6250a3d9635f99de
/SDKs/swig/Examples/test-suite/scilab/template_static_runme.sci
d6bc7bcd3a34b3a75ba1044de01c08127dace073
[]
no_license
Personwithhat/CE_SDKs
cd998a2181fcbc9e3de8c58c7cc7b2156ca21d02
7afbd2f7767c9c5e95912a1af42b37c24d57f0d4
refs/heads/master
2020-04-09T22:14:56.917176
2019-07-04T00:19:11
2019-07-04T00:19:11
160,623,495
0
0
null
null
null
null
UTF-8
Scilab
false
false
128
sci
template_static_runme.sci
version https://git-lfs.github.com/spec/v1 oid sha256:ab9dad60ffd96f8c54937a91749b6c5e55d43afcaf0514ceec92c6438fea97a0 size 253
60fc39b1781b500bbda668862a44d6ddfdfdcc24
449d555969bfd7befe906877abab098c6e63a0e8
/848/CH3/EX3.3/Example3_3.sce
b0804f7fc5895a7be952a39e605f1b72a6f8b48c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
417
sce
Example3_3.sce
//clear// //Caption:Rayleigh scattering loss //Example3.3 //page97 clear; close; clc; alpha_0 = 1.64; //attenuation at Lambda_0 in dB/KM Lambda_0 = 850e-09;// wavelength 850 nanometer Lambda = 1310e-09; //wavelength 1350 nanometer alpha_Lambda = alpha_0*((Lambda_0/Lambda)^4); disp(alpha_Lambda,'Rayleigh scattering loss alpha(Lambda) = ') //Result //Rayleigh scattering loss alpha(Lambda) = 0.2906929
1bea156aa869bb0d243578cb230f5943ac8d497c
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH1/EX1.19/example1_19.sce
791191b360f3950f184c45b8e31c914e5b2638fe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
804
sce
example1_19.sce
clc // Given That lambda = 5.893e-7 // wavelength of light in meter Mu = 1.42 // refractive index of soap film i = 0 // incidence angle in radian r = 0 // refracted angle in radian // Sample Problem 19 on page no. 1.46 printf("\n # PROBLEM 19 # \n") n = 1 // for smallest thickness t1 = ((2 * n - 1) * lambda) / (4 * Mu * cos(r)) // calculation for east thickness of soap film for bright fringe t2 = (n * lambda) / (2 * Mu * cos(r)) // calculation for east thickness of soap film for dark fringe printf("\n Standard formula used \n thickness for bright fringe = ((2 * n - 1) * lambda) / (4 * Mu * cos(r)). \n thickness for dark fringe = (n * lambda) / (2 * Mu * cos(r)).\n ") printf("\n Least thickness of soap film -\n (a) For bright fringe = %e mm. \n (b) For dark fringe = %e mm.",t1*1000,t2*1000)
4c0a75643556d79fe07b2308e13a6646c6a79447
449d555969bfd7befe906877abab098c6e63a0e8
/2863/CH3/EX3.1/ex3_1.sce
fabd56df971ca25f9640547225c6c49cfc7aa68c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
224
sce
ex3_1.sce
//chapter 3 //tan(alpha)=s/c; //helical antenna Gdmax=15NSC^2/lamda^3 printf("\n"); c=1; n=20; lamda=1; s=tan(0.2093)*1;//12*pi/180 radians Gdmax=(15*n*s*(c)^2)/(lamda)^3; printf("the directive gain is %g",Gdmax);
def51a78fd2acbf6d2616ddb84f17f1c31ddbddb
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/lpc/lpc9.sce
b66d98b4206057e774c5599ce67d465c545e257b
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
293
sce
lpc9.sce
//i/p x is a matrix containing complex values x=[1 2 3+8*%i; 4 6 7; 89 0 9]; p=1; [a,g] = lpc(x,p); disp(a); disp(g); //output // 1. - 0.0453515 // 1. - 0.3 // 1. - 0.4137931 + 0.2758621i // // 2640.5578 // 12.133333 // 50.931034
c11a33753132af1e717ca8bfb2c2585853e967ee
449d555969bfd7befe906877abab098c6e63a0e8
/2399/CH1/EX1.12.1/Example_1_12_1.sce
c3dad185254f0e3da880a90528aa31f26b170b8e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
320
sce
Example_1_12_1.sce
// Example 1.12.1 clc; clear; Bandwidth = 2d6; //Bandwidth of channel Signal_to_Noise_ratio = 1; //Signal to Noise ratio of channel Capacity = Bandwidth * log2(1 + Signal_to_Noise_ratio); //computing capacity Capacity=Capacity/10^6; printf("Maximum capacity of channel is %d Mb/sec.",Capacity);
514f450e5d50fd311c88eb8875c94d319069209f
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH13/EX13.8/Ex13_8.sce
93a7e2cfb1aac09f9c43efa41854871ac5635880
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,023
sce
Ex13_8.sce
clc nc = 0.87 // Compressor efficiency nt = 0.9 // Turbine efficiency T1 = 311 // Compressor inlet temperature in K rp = 8 // compressor pressure ratio P1 = 1 // Initial pressure in atm T3 = 1367 // Turbine inlet temperature P2 = P1*rp // Final pressure P3 = 0.95*P2 // Actual pressure after compression P4 = 1 // Atmospheric pressure g = 1.4 // Heat capacity ratio cv = 0.718 // Constant volume heat capacity cp = 1.005 // Constant pressure heat capacity R = 0.287 // Gas constant // With no cooling T2s = T1*((P2/P1)^((g-1)/g)) // Ideal temperature after compression T2 = T1 + (T2s-T1)/0.87 // Actual temperature after compression T4s = T3*(P4/P3)^((g-1)/g) // Ideal temperature after expansion n = (((T3-T4s)*nt)-((T2s-T1)/nc))/(T3-T2) // cycle efficiency // With cooling n_cycle = n-0.05 x = 0.13 // Fluid quality r = x/(x+1) // printf("\n Example 13.8\n") printf("\n Percentage of air that may be taken from the compressor is %f percent",r*100) //The answers vary due to round off error
334583de831ae557076a2505da878e53298f427b
449d555969bfd7befe906877abab098c6e63a0e8
/2204/CH5/EX5.5/ex5_5.sce
7e86118ebf288c428de58bd67793cf0be8f9ba3f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
417
sce
ex5_5.sce
// Exa 5.5 clc; clear; close; // Given data R1 = 12;// in k ohm R_F = 7;// in k ohm R2 = 33;// in k ohm R3 = R2;// in k ohm R = R2;// in k ohm R = R * 10^3;// in ohm C1 = 0.002;// in µF C1 = C1 * 10^-6;// in F C2 = C1;// in F C = C1;// in F f_c = 1/(2*%pi*R*C);// in Hz f_c = f_c * 10^-3;// in kHz disp(f_c,"Cut off frequency in kHz is"); A_F = 1+(R_F/R1); disp(A_F,"Pass band voltage gain is");
d3a3a03cd6d1363294eddf3bef305412a8be6994
449d555969bfd7befe906877abab098c6e63a0e8
/998/CH29/EX29.31/Ex31.sce
c7b231eb08ba85aba9396561c3f6cf2cfe25ab96
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
418
sce
Ex31.sce
//Ex:31 clc; clear; close; k=-228.6;// in db e_irp=50;// EIRP in dbW g_t=19.5;//G/T ratio in db/k l_fs=210;//free space loss in db l_ab=2;//atmospheric absorption loss in db l_ap=2;//antenna pointing loss in db l_rf=1;//receiver feedback loss in db l_s=l_fs+l_ab+l_ap+l_rf;//losses in db c_n=e_irp+g_t-l_s-k;// C/N spectral density ratio in db printf("carrier to noise spectral density ratio=%d dbW",c_n);
9beeac0780bbdeaff50e8969ba268f017faa7cad
449d555969bfd7befe906877abab098c6e63a0e8
/1628/CH16/EX16.3/Ex16_3.sce
5105d11a2828efd5909152d823cb1f11746362fb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
347
sce
Ex16_3.sce
// Examle 16.3 E1=180; // Induced emf N1=500; // Speed of mechine N1=500 N2=600; // Speed of mechine N1=600 E2=(N2/N1)*E1; // Emf When Machine runs at (600 rpm) disp('Emf When Machine runs at (600 rpm)= '+string(E2)+' Volt'); // 633 16.3
b0e9aa18c107365640a37a862deb85a7dab2229f
449d555969bfd7befe906877abab098c6e63a0e8
/1955/CH1/EX1.4/example4.sce
db75a4f833abfb8631bb7286339ce281a3276d42
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
669
sce
example4.sce
clc clear //input data W=100//Output power developed in kW Q=0.1//Flow through device in m^3/s d=800//Density of oil in kg/m^3 ntt=0.75//Total-to-total efficiency C1=3//inlet flow velocity of oil in m/s C2=10//outlet flow velocity of oil in m/s //calculations m=d*Q//Mass flow rate of oil in kg/s h0=-(W/m)//Change in total enthalpy in kJ/kg h0s=(h0/ntt)//Isentropic change in total enthalpy in kJ/kg P0=((d*h0s)*(1/100))//Change in total pressure of oil in bar P=P0-((d/(2000*100))*(C2^2-C1^2))//Change in static pressure in bar //output printf('The change in total pressure of oil is %3.1f bar\nThe change in static presure is %3.1f bar',P0,P)
02f9cce3c6153ed04e9f66135d6905f06fb20e61
449d555969bfd7befe906877abab098c6e63a0e8
/2198/CH1/EX1.16.2/Ex1_16_2.sce
df2c52457f16f327a1e8769f9479a669c09deaee
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
293
sce
Ex1_16_2.sce
//Ex 1.16.2 clc;clear;close; format('v',9); //Given : mu_n=3800;//cm^2/V-s mu_p=1300;//cm^2/V-s ni=2.5*10^13;//per cm^3 q=1.6*10^-19;//Coulomb ND=4.4*10^22/10^8;//per cm^3 sigma_n=ND*q*mu_n;//(ohm-m)^-1 rho_n=1/sigma_n;//ohm-cm disp(rho_n,"Resistivity of doped Ge(ohm-cm) : ");
fb982ea645f831467f4efecbb99ebdf976be6ed3
a5f0fbcba032f945a9ee629716f6487647cafd5f
/Development/Preprocessing/Binarization/Binarize.sci
2c08c6ea7d611e208bbb901c4f465c88e4dabf97
[]
no_license
SoumitraAgarwal/Scilab-gsoc
692c00e3fb7a5faf65082e6c23765620f4ecdf35
678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f
refs/heads/master
2021-04-15T17:55:48.334164
2018-08-07T13:43:26
2018-08-07T13:43:26
126,500,126
1
1
null
null
null
null
UTF-8
Scilab
false
false
260
sci
Binarize.sci
// Macro for binarization of dataset -- Scilab function binarx = binarize(x) n = length(x) mi = min(x) ma = max(x) for i=1:n x(i) = 1.0*(x(i) - mi)/(ma - mi); if(x(i) >= 0.5) x(i) = 1; else x(i) = 0; end end binarx = x endfunction
4d37c1368effccc6a20534481d601d840e8d40f5
9224090b07cb3f466fe72819cf90ca0c4dedc901
/Exercise 22/Bathy.sce
67a3dd7bb7b74751868fa32255b74dff726bc264
[]
no_license
MGYBY/advanced_ocean_modelling
8c383b09f4077174559bd7964062625012026fa0
848f0f4d616d472021c31582b64557f04067ce74
refs/heads/main
2023-07-14T14:37:57.714203
2021-08-20T20:13:49
2021-08-20T20:13:49
398,386,684
4
1
null
null
null
null
UTF-8
Scilab
false
false
1,241
sce
Bathy.sce
//================================== // Bathymetry map for Exercise 22 //================================== f = gcf(); f.pixmap='on'; // reverse grayscale map map = 1-graycolormap(64); f.color_map = map; f.figure_size = [1000,500]; // set size of graphic window // read bathymetry data h1=read("topo.dat",-1,102); x = (0:2:202)'; y = (0:2:102)'; hzero = max(10*int(h1/10),0.0); // show the distribution with 10-m depth increments // draw 2d grayscale map Sgrayplot(x,y,hzero',zminmax=[0,140]); // overlay contours xset("fpf"," "); b(1:11) = 80; contour2d(x,y,hzero',[0:10:100],b,strf='211'); // specify graph & axis properties a = get("current_axes"); a.font_size = 3; a.data_bounds = [0,0;200,100]; a.auto_ticks = ["off","off","on"]; a.sub_ticks = [1,1]; a.x_ticks = tlist(["ticks", "locations","labels"],.. [0 40 80 120 160 200], ["0" "40" "80" "120" "160" "200"]); a.y_ticks = tlist(["ticks", "locations","labels"],.. [0 20 40 60 80 100], ["0" "20" "40" "60" "80" "100"]); xstring(90,2,"x (m)"); // add x label txt=gce(); txt.font_size = 4; txt.font_foreground = -1; xstring(2,47,"y (cm)"); // add z label txt=gce(); txt.font_size = 4; txt.font_foreground = -1; show_pixmap();
e8e191a4f1f39edbb0207caa483b31fefa5f9cae
449d555969bfd7befe906877abab098c6e63a0e8
/569/CH6/EX6.15/6_15.sci
e3cd73c7b0a424c57c8bc03d3b067d1719072a92
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
201
sci
6_15.sci
// calculating time constant and value of capacitance clc; g=0.501; f=50; w=2*%pi*f; tc=(1-g^2)^0.5/(w*g); disp(tc,'time constant (s)') R=10000; C=(tc/R)*10^6; disp(C,'capacitance (micro-F)')
ce643b9d1e7e5fa0ea556f42f6e5d73666877659
491f29501fa7d484a5860f64aef3fa89fb18ca3d
/examples/electronics/IdealSwitch/init.sce
aeaa4d0722fefadae1160d8bb53b3c2b2a24120c
[ "Apache-2.0" ]
permissive
siconos/siconos-tutorials
e7e6ffbaaea49add49eddd317c46760393e3ef9a
0472c74e27090c76361d0b59283625ea88f80f4b
refs/heads/master
2023-06-10T16:43:13.060120
2023-06-01T07:21:25
2023-06-01T07:21:25
152,255,663
7
2
Apache-2.0
2021-04-08T12:00:39
2018-10-09T13:26:39
Jupyter Notebook
UTF-8
Scilab
false
false
187
sce
init.sce
R1=0; R2=1e3; h=1e-7; sL = 200e-6; X_k=1.1617; X_alpha=X_k; L_alpha=[20.0/(R1+R2); -20.0/(R1+R2); 20.0-20.0*(R1/(R1+R2)); 0.0; 7.5; 0.0; 0.0; 20.0-20.0*(R1/(R1+R2)); R2-R1]; st=7.5;
2f049cf7aa9ce3579cfa18e8717d7c02976f316d
a5de878687ee2e72db865481785dafbeda373e2a
/trunck/OpenPR-0.0.2/macros/pca2.sci
69e0371b334bb3e9c24369e3b735ed4114d45933
[ "BSD-3-Clause" ]
permissive
Augertron/OpenPR
8f43102fd5811d26301ef75e0a1f2b6ba9cbdb73
e2b1ce89f020c1b25df8ac5d93f6a0014ed4f714
refs/heads/master
2020-05-15T09:31:08.385577
2011-03-21T02:51:40
2011-03-21T02:51:40
182,178,910
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,055
sci
pca2.sci
/////////////////////////////////////////////////////////////////////////////// // Author: Jia Wu // Version: 0.1 // Date: Nov 2009 // Description: Principal Component Analysis(PCA) // // Copyright (C) 2009 OpenPR // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // * Neither the name of OpenPR nor the names of its // contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY HOLDERS AND CONTRIBUTORS "AS IS" AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE // DISCLAIMED. IN NO EVENT SHALL HOLDER AND CONTRIBUTORS BE LIABLE FOR ANY // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // Input: // patterns - Data matrix. Each column is a data point. // dimension - Number of dimension for the new patterns. // // Output: // new_patterns - New patterns. // m - Mean. // eig_val - The sorted eigenvalue. // eig_vec - Each column is an eigenvector. eig_vec'*eig_vec=I. /////////////////////////////////////////////////////////////////////////////// function [new_patterns, m, eig_val, eig_vec] = pca2(patterns, dimension) [dim, sample_num] = size(patterns); if(dim < dimension), disp('Final dimension must not be larger than the data dimension.') disp('Set dimension to be the data dimension.') dimension = dim; end //mean m = mean(patterns, 'c'); //covariance matrix cov_mat = (1/(sample_num-1))*(patterns-m*ones(1,sample_num))*(patterns-m*ones(1,sample_num))'; //eigenvalues and eigenvecotrs [eig_vec, eig_val] = spec(cov_mat); //sort eigenvectors [eig_val, I] = sort(diag(eig_val)); eig_vec = eig_vec(:, I); V = eig_vec(:, 1:dimension); //new patterns new_patterns = V'*(patterns-m*ones(1,sample_num)); endfunction
b3e1e2462d8d11c10975f6afcf13fba935745122
449d555969bfd7befe906877abab098c6e63a0e8
/1286/CH1/EX1.9/1_9.sce
9c203b5d9bd3603d9746d6878fe5958499e3f568
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
169
sce
1_9.sce
clc //initialisations ht=65//cm h0=-5//cm t=273//c //CALCULATIONAS h100=h0+(100*(ht-h0)/t) l=(1+(t/273)) H=(ht-(h0*l))/(l-1) printf(' temperature= % 1f cm',H)
95140b23e41ba31f8f36b978d7c3965258b08d8a
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH3/EX3.9/example3_9.sce
5ff62617c7a5597e733a68a05e71d2bd1b441a69
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
377
sce
example3_9.sce
//Chapter 3 //Example 3_9 //PAge 52 clear; clc; houses=1e3; cl=1.5; dem_fac=0.4; div_fac=2.5; factories=10; md_f=90; tubewells=7; mdt=7; df=1.2; //Minimum capacity of power station sum_md=cl*dem_fac*houses; md_dl=sum_md/div_fac; md_t=mdt*tubewells; total_md=md_dl+md_t+md_f; md_station=total_md/df; printf("Minimum capacity of station required=%.2f kW \n\n", md_station);
0e7e86552d6a10a9991b262f5fe469ddb9a4814a
449d555969bfd7befe906877abab098c6e63a0e8
/29/CH12/EX12.59/exa12_59.sce
f63c58a721d90a14434522b072b56be9d8512a6c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
445
sce
exa12_59.sce
//caption:obtain_time_response //example 12_59 //page 590 s=%s; syms t A=[-1 0;1 -1] B=[0 1]' x0=[1 0]' [r c]=size(A);//size of matrix A p=s*eye(r,c)-A;//s*I-A where I is identity matrix q=det(p)//determinant of sI-A r=inv(p)//inverse of sI-A m=r*B*(1/s) r1=r*x0 X=r1+m //for calculating zero state response x=[0;0] x(1,1)=ilaplace(X(1,1),s,t); x(2,1)=ilaplace(X(2,1),s,t); disp(x,"zero input response of the system,x(t)=");
fdecedca5f46f61c035fed14a6fe29eaa316b376
449d555969bfd7befe906877abab098c6e63a0e8
/55/CH3/EX3.8/3ex8.sci
8f3e528fae661a7daca612b7ac3fad2e8154b360
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
sci
3ex8.sci
function[k]=fact(a) k=-1; if(a<0|a>200) disp("Invalid"); break; else if(a==1|a==0) k=1; else k=a*fact(a-1); end end endfunction a=4; p=fact(a); disp(p,'the value of 4! is')
07a92adc27780ff960ff8afa15b9f5610c176f35
449d555969bfd7befe906877abab098c6e63a0e8
/62/CH7/EX7.14/ex_7_14.sce
aea99c33acf4acfdaa48c80b3f1fb2a8c3d5c126
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
76
sce
ex_7_14.sce
clc; close clear; s=%s; tf=syslin('c',(1/(s^2+3*s+2))); ss=tf2ss(tf);
92d19b0f1d9318511024ba4383dc2bf4fcfc7e1b
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Anti-Mirror FS Gallery.sce
afa565a49db51c45976298ba8e07969700ec9bf6
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
50,054
sce
Anti-Mirror FS Gallery.sce
Name=Anti-Mirror FS Gallery PlayerCharacters=Ascended Tracking BotCharacters=Long Strafe Bot.bot IsChallenge=true Timelimit=60.0 PlayerProfile=Ascended Tracking AddedBots=Long Strafe Bot.bot;Long Strafe Bot.bot;Long Strafe Bot.bot PlayerMaxLives=0 BotMaxLives=0;0;0 PlayerTeam=2 BotTeams=1;1;1 MapName=gallery_strafe3.map MapScale=3.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=1.5 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Tracking, Quake, Overwatch, Fortnite WeaponHeroTag=LG, mg, soldier 76 DifficultyTag=3 AuthorsTag=aestheticgoose BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=true Description=Track targets while strafing in opposite direction than them. GameVersion=1.0.8.0 ScorePerDistance=0.25 MBSEnable=true MBSTime1=0.08 MBSTime2=0.1 MBSTime3=1.0 MBSTime1Mult=0.1 MBSTime2Mult=20.0 MBSTime3Mult=45.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=At Feet 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=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Low Skill At Feet MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Low Skill MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.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=Long Strafe Bot DodgeProfileNames=Anti-Mirror;Short Strafes DodgeProfileWeights=2.0;1.0 DodgeProfileMaxChangeTime=2.0 DodgeProfileMinChangeTime=1.5 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Long Strafer SeeThroughWalls=false NoDodging=false NoAiming=false [Character Profile] Name=Ascended Tracking MaxHealth=500.0 WeaponProfileNames=;MG;;;;;; MinRespawnDelay=2.0 MaxRespawnDelay=2.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1100.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false 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.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=Long Strafer MaxHealth=400.0 WeaponProfileNames=;Alcove_Tracking_Weapon;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1100.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false 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.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Dodge Profile] Name=Anti-Mirror MaxTargetDistance=100000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=1.25 MinFBTimeChange=0.4 MaxFBTimeChange=0.8 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Oppose TargetStrafeMinDelay=0.1 TargetStrafeMaxDelay=0.2 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.8 BlockedMovementReactionMin=0.1 BlockedMovementReactionMax=0.2 [Dodge Profile] Name=Short Strafes MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.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=MG Type=Hitscan ShotsPerClick=1 DamagePerShot=20.0 KnockbackFactor=0.0 TimeBetweenShots=0.06 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=10000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=1.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.0001 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=0.7 ADSStartDelay=0.0 ShootSoundCooldown=0.01 HitSoundCooldown=0.01 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=4.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.01 HitscanVisualRadius=0.001 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=80 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=80.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=false ZoomBlockedInAir=false ADSCameraOffsetX=-90.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=true PBS0=0.0,0.0 [Weapon Profile] Name=Alcove_Tracking_Weapon Type=Hitscan ShotsPerClick=10 DamagePerShot=1.0 KnockbackFactor=0.0 TimeBetweenShots=0.02 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=250000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=0.1 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=10.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.0001 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.05 HitSoundCooldown=0.05 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=4.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot=Alcove Tracking Effect Helper ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.01 HitscanVisualRadius=0.04 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false 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=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=true PBS0=0.0,0.0 PBS1=0.0,0.0 PBS2=0.5,45.0 PBS3=0.5,90.0 PBS4=0.5,135.0 PBS5=0.5,180.0 PBS6=0.5,225.0 PBS7=0.5,270.0 PBS8=0.5,315.0 PBS9=0.5,0.0 [Weapon Profile] Name=Alcove Tracking Effect Helper Type=Projectile ShotsPerClick=1 DamagePerShot=0.0 KnockbackFactor=0.0 TimeBetweenShots=0.12 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=100000.000 Y=-1000.000 Z=-1000.000 MuzzleVelocityMax=X=100000.000 Y=1000.000 Z=1000.000 InheritOwnerVelocity=1.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=0.025 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=0.1 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=0.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=999.0 HitSoundCooldown=999.0 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=2.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false 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=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=4.0,0.5,2.0,8.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=4.0,0.5,2.0,8.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn brush vertices 880.000000 -0.000000 -496.000000 880.000000 0.000000 -512.000000 880.000000 288.000000 -512.000000 880.000000 288.000000 -496.000000 688.000000 288.000000 -512.000000 688.000000 -0.000000 -512.000000 688.000000 -0.000000 -496.000000 688.000000 288.000000 -496.000000 faces 0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 864.000000 -0.000000 512.000000 864.000000 0.000000 496.000000 864.000000 288.000000 496.000000 864.000000 288.000000 512.000000 688.000000 288.000000 496.000000 688.000000 -0.000000 496.000000 688.000000 0.000000 512.000000 688.000000 288.000000 512.000000 faces 0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 480.000000 96.000000 336.000000 480.000000 96.000000 -336.000000 480.000000 192.000000 -336.000000 480.000000 192.000000 336.000000 464.000000 192.000000 -336.000000 464.000000 96.000000 -336.000000 464.000000 96.000000 336.000000 464.000000 192.000000 336.000000 faces 1.000000 -22.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 1.000000 -22.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 -22.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip 0.000000 -22.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip 0.000000 -1.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip 0.000000 -1.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip brush vertices 704.000000 144.000000 336.000000 704.000000 144.000000 -336.000000 704.000000 240.000000 -336.000000 704.000000 240.000000 336.000000 688.000000 240.000000 -336.000000 688.000000 144.000000 -336.000000 688.000000 144.000000 336.000000 688.000000 240.000000 336.000000 faces 0.000000 -56.000000 84.000000 12.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 -56.000000 84.000000 12.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 -56.000000 2.000000 12.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip 0.000000 -56.000000 2.000000 12.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 2.000000 84.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 2.000000 84.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip brush vertices 192.000000 -0.000000 496.000000 192.000000 0.000000 -496.000000 192.000000 16.000000 -496.000000 192.000000 16.000000 496.000000 176.000000 16.000000 -496.000000 176.000000 -0.000000 -496.000000 176.000000 0.000000 496.000000 176.000000 16.000000 496.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 192.000000 16.000000 496.000000 192.000000 16.000000 -496.000000 192.000000 240.000000 -496.000000 192.000000 240.000000 496.000000 176.000000 240.000000 -496.000000 176.000000 16.000000 -496.000000 176.000000 16.000000 496.000000 176.000000 240.000000 496.000000 faces 0.000000 -6.000000 2.000000 28.000000 -0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 -6.000000 2.000000 28.000000 -0.000000 4 5 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 -6.000000 2.000000 28.000000 -0.000000 7 6 0 3 0x00000000 internal/editor/textures/editor_clip 0.000000 -6.000000 2.000000 28.000000 -0.000000 1 5 4 2 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 internal/editor/textures/editor_clip brush vertices 880.000000 -0.000000 496.000000 880.000000 0.000000 -496.000000 880.000000 288.000000 -496.000000 880.000000 288.000000 496.000000 864.000000 288.000000 -496.000000 864.000000 -0.000000 -496.000000 864.000000 -0.000000 496.000000 864.000000 288.000000 496.000000 faces 0.000000 0.000000 1.968254 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 1.968254 36.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 1.968254 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 1.968254 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 864.000000 -0.000000 384.000000 864.000000 0.000000 -384.000000 864.000000 144.000000 -384.000000 864.000000 144.000000 384.000000 688.000000 144.000000 -384.000000 688.000000 -0.000000 -384.000000 688.000000 -0.000000 384.000000 688.000000 144.000000 384.000000 faces 0.000000 0.000000 96.000000 18.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 96.000000 18.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.666660 18.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.666660 18.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.666660 96.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.666660 96.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 450.000000 -0.000000 496.000000 450.000000 0.000000 384.000000 450.000000 16.000000 384.000000 450.000000 16.000000 496.000000 432.000000 16.000000 384.000000 432.000000 -0.000000 384.000000 432.000000 0.000000 496.000000 432.000000 16.000000 496.000000 faces 0.000000 0.000000 2.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.285720 2.000000 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.285720 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.285720 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.285720 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 469.000000 -0.000000 496.000000 469.000000 0.000000 384.000000 469.000000 16.000000 384.000000 469.000000 32.000000 400.000000 469.000000 32.000000 496.000000 450.000000 32.000000 400.000000 450.000000 16.000000 384.000000 450.000000 -0.000000 384.000000 450.000000 0.000000 496.000000 450.000000 32.000000 496.000000 faces 0.000000 -1.000000 3.000000 4.571420 -0.000000 0 1 2 3 4 0x00000000 __TB_empty 0.000000 -1.000000 3.000000 4.571420 -0.000000 5 6 7 8 9 0x00000000 __TB_empty 0.000000 0.000000 1.142858 4.571420 0.000000 9 8 0 4 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 3 2 0x00000000 __TB_empty 0.000000 0.000000 4.000000 2.000000 -0.000000 1 7 6 2 0x00000000 __TB_empty 0.000000 0.000000 1.142858 3.000000 -0.000000 3 5 9 4 0x00000000 __TB_empty 0.000000 0.000000 1.142858 3.000000 0.000000 8 7 1 0 0x00000000 __TB_empty brush vertices 487.000000 -0.000000 496.000000 487.000000 0.000000 384.000000 487.000000 48.000000 384.000000 487.000000 48.000000 496.000000 469.000000 48.000000 384.000000 469.000000 -0.000000 384.000000 469.000000 0.000000 496.000000 469.000000 48.000000 496.000000 faces 0.000000 0.000000 3.000000 6.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 3.000000 6.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 1.142858 6.571420 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 6.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 1.142858 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 505.000000 -0.000000 496.000000 505.000000 0.000000 384.000000 505.000000 69.000000 384.000000 505.000000 69.000000 496.000000 487.000000 69.000000 384.000000 487.000000 -0.000000 384.000000 487.000000 0.000000 496.000000 487.000000 69.000000 496.000000 faces 0.000000 0.000000 3.000000 8.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 3.000000 8.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 1.142858 8.571420 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 8.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 1.142858 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 523.000000 -0.000000 496.000000 523.000000 0.000000 384.000000 523.000000 80.000000 384.000000 523.000000 80.000000 496.000000 505.000000 80.000000 384.000000 505.000000 -0.000000 384.000000 505.000000 0.000000 496.000000 505.000000 80.000000 496.000000 faces 0.000000 0.000000 3.000000 10.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 3.000000 10.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 1.142858 10.571420 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 10.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 1.142858 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 656.000000 -0.000000 496.000000 656.000000 0.000000 384.000000 656.000000 96.000000 384.000000 656.000000 96.000000 496.000000 523.000000 96.000000 384.000000 523.000000 -0.000000 384.000000 523.000000 0.000000 496.000000 523.000000 96.000000 496.000000 faces 0.000000 0.000000 3.000000 14.571420 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 3.000000 12.571420 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 4.142860 12.571420 0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 4.142860 12.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 4.142860 3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 4.142860 3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 469.000000 -0.000000 -384.000000 469.000000 0.000000 -496.000000 469.000000 32.000000 -496.000000 469.000000 32.000000 -400.000000 469.000000 16.000000 -384.000000 450.000000 32.000000 -400.000000 450.000000 32.000000 -496.000000 450.000000 -0.000000 -496.000000 450.000000 -0.000000 -384.000000 450.000000 16.000000 -384.000000 faces 0.000000 -1.000000 3.000000 -4.571420 180.000000 0 1 2 3 4 0x00000000 __TB_empty 0.000000 -1.000000 3.000000 -4.571420 180.000000 5 6 7 8 9 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -2.000000 -0.000000 3 5 9 4 0x00000000 __TB_empty 0.000000 0.000000 4.000000 2.000000 -0.000000 9 8 0 4 0x00000000 __TB_empty 0.000000 0.000000 1.142858 4.571420 -0.000000 1 7 6 2 0x00000000 __TB_empty 0.000000 0.000000 1.142858 -3.000000 -0.000000 2 6 5 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 -3.000000 0.000000 8 7 1 0 0x00000000 __TB_empty brush vertices 450.000000 -0.000000 -384.000000 450.000000 0.000000 -496.000000 450.000000 16.000000 -496.000000 450.000000 16.000000 -384.000000 432.000000 16.000000 -496.000000 432.000000 -0.000000 -496.000000 432.000000 0.000000 -384.000000 432.000000 16.000000 -384.000000 faces 0.000000 0.000000 2.000000 -2.000000 180.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 -2.000000 180.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.285720 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.285720 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.285720 -2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.285720 -2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 487.000000 -0.000000 -384.000000 487.000000 0.000000 -496.000000 487.000000 48.000000 -496.000000 487.000000 48.000000 -384.000000 469.000000 48.000000 -496.000000 469.000000 -0.000000 -496.000000 469.000000 0.000000 -384.000000 469.000000 48.000000 -384.000000 faces 0.000000 0.000000 3.000000 -6.571420 180.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 3.000000 -6.571420 180.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 1.142858 6.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 6.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 1.142858 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 -3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 505.000000 -0.000000 -384.000000 505.000000 0.000000 -496.000000 505.000000 69.000000 -496.000000 505.000000 69.000000 -384.000000 487.000000 69.000000 -496.000000 487.000000 -0.000000 -496.000000 487.000000 0.000000 -384.000000 487.000000 69.000000 -384.000000 faces 0.000000 0.000000 3.000000 -8.571420 180.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 3.000000 -8.571420 180.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 1.142858 8.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 8.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 1.142858 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 -3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 523.000000 -0.000000 -384.000000 523.000000 0.000000 -496.000000 523.000000 80.000000 -496.000000 523.000000 80.000000 -384.000000 505.000000 80.000000 -496.000000 505.000000 -0.000000 -496.000000 505.000000 0.000000 -384.000000 505.000000 80.000000 -384.000000 faces 0.000000 0.000000 3.000000 -10.571420 180.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 3.000000 -10.571420 180.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 1.142858 10.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 10.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 1.142858 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 1.142858 -3.000000 0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 656.000000 -0.000000 -384.000000 656.000000 0.000000 -496.000000 656.000000 96.000000 -496.000000 656.000000 96.000000 -384.000000 523.000000 96.000000 -496.000000 523.000000 -0.000000 -496.000000 523.000000 0.000000 -384.000000 523.000000 96.000000 -384.000000 faces 0.000000 0.000000 3.000000 -14.571420 180.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 3.000000 -12.571420 180.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 4.142860 12.571420 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 4.142860 12.571420 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 4.142860 -3.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 4.142860 -3.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 864.000000 -0.000000 -384.000000 864.000000 0.000000 -496.000000 864.000000 96.000000 -496.000000 864.000000 96.000000 -384.000000 656.000000 96.000000 -496.000000 656.000000 -0.000000 -496.000000 656.000000 -0.000000 -384.000000 656.000000 96.000000 -384.000000 faces 0.000000 0.000000 14.000000 12.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 14.000000 12.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 3.250000 12.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 3.250000 12.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 3.250000 14.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 3.250000 14.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 880.000000 -0.000000 496.000000 880.000000 0.000000 384.000000 880.000000 96.000000 384.000000 880.000000 96.000000 496.000000 672.000000 96.000000 384.000000 672.000000 -0.000000 384.000000 672.000000 0.000000 496.000000 672.000000 96.000000 496.000000 faces 0.000000 1.000000 14.000000 -12.000000 180.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 1.000000 14.000000 -12.000000 180.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 1.000000 3.250000 12.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 1.000000 3.250000 12.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 3.250000 -14.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 3.250000 -14.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 688.000000 -0.000000 384.000000 688.000000 0.000000 -384.000000 688.000000 96.000000 -384.000000 688.000000 96.000000 384.000000 464.000000 96.000000 -384.000000 464.000000 -0.000000 -384.000000 464.000000 0.000000 384.000000 464.000000 96.000000 384.000000 faces 0.000000 0.000000 96.000000 12.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 96.000000 12.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 96.000000 12.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 96.000000 12.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 96.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 96.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 864.000000 128.000000 -384.000000 864.000000 128.000000 -496.000000 864.000000 144.000000 -496.000000 864.000000 144.000000 -384.000000 736.000000 144.000000 -496.000000 736.000000 128.000000 -496.000000 736.000000 128.000000 -384.000000 736.000000 144.000000 -384.000000 faces 0.000000 0.000000 7.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 7.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 16.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 16.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 16.000000 7.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 16.000000 7.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 864.000000 128.000000 496.000000 864.000000 128.000000 384.000000 864.000000 144.000000 384.000000 864.000000 144.000000 496.000000 736.000000 144.000000 384.000000 736.000000 128.000000 384.000000 736.000000 128.000000 496.000000 736.000000 144.000000 496.000000 faces 0.000000 0.000000 7.000000 2.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 7.000000 2.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 16.000000 2.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 16.000000 2.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 16.000000 7.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 16.000000 7.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 720.000000 112.000000 -496.000000 736.000000 128.000000 -496.000000 736.000000 128.000000 -384.000000 720.000000 112.000000 -384.000000 688.000000 96.000000 -384.000000 688.000000 96.000000 -496.000000 736.000000 144.000000 -496.000000 736.000000 144.000000 -384.000000 704.000000 128.000000 -496.000000 656.000000 96.000000 -496.000000 656.000000 96.000000 -384.000000 704.000000 128.000000 -384.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 4 5 0 3 0x00000000 __TB_empty 0.000000 0.000000 1.555556 2.000000 -0.000000 1 6 7 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 8 9 10 11 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 8 11 7 0x00000000 __TB_empty 0.000000 0.000000 4.000000 2.000000 -0.000000 2 7 11 10 4 3 0x00000000 __TB_empty 0.000000 0.000000 4.000000 2.000000 -0.000000 5 9 8 6 1 0 0x00000000 __TB_empty 0.000000 0.000000 4.000000 1.750000 -0.000000 10 9 5 4 0x00000000 __TB_empty brush vertices 688.000000 96.000000 496.000000 688.000000 96.000000 384.000000 720.000000 112.000000 384.000000 720.000000 112.000000 496.000000 736.000000 128.000000 384.000000 736.000000 128.000000 496.000000 736.000000 144.000000 384.000000 736.000000 144.000000 496.000000 704.000000 128.000000 384.000000 704.000000 128.000000 496.000000 656.000000 96.000000 384.000000 656.000000 96.000000 496.000000 faces 0.000000 0.000000 2.000000 2.000000 0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 2 4 5 3 0x00000000 __TB_empty 0.000000 0.000000 1.555556 2.000000 -0.000000 4 6 7 5 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 6 8 9 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 0.000000 8 10 11 9 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 5 7 9 11 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 1 10 8 6 4 2 0x00000000 __TB_empty 0.000000 0.000000 4.000000 1.750000 -0.000000 11 10 1 0 0x00000000 __TB_empty brush vertices 880.000000 -13.000000 512.000000 880.000000 -13.000000 -512.000000 880.000000 -0.000000 -512.000000 880.000000 0.000000 512.000000 176.000000 0.000000 -512.000000 176.000000 -13.000000 -512.000000 176.000000 -13.000000 512.000000 176.000000 -0.000000 512.000000 faces 0.000000 0.000000 16.000000 0.810526 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 16.000000 0.810526 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 19.250000 0.810526 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 19.250000 0.810526 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 19.250000 16.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 19.250000 16.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 688.000000 -0.000000 -496.000000 688.000000 0.000000 -512.000000 688.000000 288.000000 -512.000000 688.000000 288.000000 -496.000000 176.000000 288.000000 -512.000000 176.000000 -0.000000 -512.000000 176.000000 0.000000 -496.000000 176.000000 288.000000 -496.000000 faces 0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices 688.000000 -0.000000 512.000000 688.000000 0.000000 496.000000 688.000000 288.000000 496.000000 688.000000 288.000000 512.000000 176.000000 288.000000 496.000000 176.000000 -0.000000 496.000000 176.000000 0.000000 512.000000 176.000000 288.000000 512.000000 faces 0.000000 0.000000 2.000000 36.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 36.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -32.000000 -0.000000 512.000000 -32.000000 0.000000 -512.000000 -32.000000 112.000000 -512.000000 -32.000000 112.000000 512.000000 -256.000000 112.000000 -512.000000 -256.000000 -0.000000 -512.000000 -256.000000 0.000000 512.000000 -256.000000 112.000000 512.000000 faces 0.000000 0.000000 128.000000 14.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 128.000000 14.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 6.666660 14.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 6.666660 14.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 6.666660 128.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 6.666660 128.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty brush vertices -256.000000 112.000000 -512.000000 -256.000000 112.000000 512.000000 -256.000000 160.000000 512.000000 -256.000000 160.000000 -512.000000 -240.000000 160.000000 512.000000 -240.000000 112.000000 512.000000 -240.000000 112.000000 -512.000000 -240.000000 160.000000 -512.000000 faces 0.000000 0.000000 2.000000 6.000000 -0.000000 0 1 2 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 6.000000 -0.000000 4 5 6 7 0x00000000 __TB_empty 0.000000 0.000000 2.000000 6.000000 -0.000000 7 6 0 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 6.000000 -0.000000 1 5 4 2 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 2 4 7 3 0x00000000 __TB_empty 0.000000 0.000000 2.000000 2.000000 -0.000000 6 5 1 0 0x00000000 __TB_empty entity type PlayerSpawn Vector3 position -80.000000 136.000000 -0.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamA 0 entity type PlayerSpawn Vector3 position 368.000000 24.000000 272.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 352.000000 24.000000 -48.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 304.000000 24.000000 -288.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 560.000000 120.000000 352.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 528.000000 120.000000 16.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 592.000000 120.000000 -384.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 800.000000 168.000000 240.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0 entity type PlayerSpawn Vector3 position 784.000000 168.000000 -192.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 TeamB 0
58564a264b3e06aa07cdd1cf60df1738802b811e
4bbc2bd7e905b75d38d36d8eefdf3e34ba805727
/ee/contrib/dspic/macros/flex_blocks/FLEX-Communication/FLEX_UDP_send.sci
edff46391b9fffc813f7c93d5ab2ef6e4ee380f7
[]
no_license
mannychang/erika2_Scicos-FLEX
397be88001bdef59c0515652a365dbd645d60240
12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba
refs/heads/master
2021-02-08T17:01:20.857172
2012-07-10T12:18:28
2012-07-10T12:18:28
244,174,890
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,986
sci
FLEX_UDP_send.sci
// Expected integer params //port_id=exprs(1); // UDP port number //dest_addr_b1=exprs(2); // Destination address byte 1 //dest_addr_b2=exprs(3); // Destination address byte 2 //dest_addr_b3=exprs(4); // Destination address byte 3 //dest_addr_b4=exprs(5); // Destination address byte 4 //num_buf=exprs(6); // Number of buffers for UDP packets transmission function [x,y,typ] = FLEX_UDP_send(job,arg1,arg2) x=[];y=[];typ=[]; select job case 'plot' then exprs=arg1.graphics.exprs; flex_port_id=exprs(1); pc_port_id=exprs(2); 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; model=arg1.model;graphics=arg1.graphics; exprs=graphics.exprs; old_flex_port_id = exprs(1); old_pc_port_id = exprs(2); while %t do [ok, flex_port_id, pc_port_id, exprs]=.. getvalue('UDP Send Parameters (pc: 192.168.0.1, flex: 192.168.0.2) :',.. ['FLEX Port number [1...65535]:';.. 'PC Port number [1...65535]:'],.. list('vec',1,'vec',1),exprs); if ~ok then break,end if(flex_port_id<1 | flex_port_id>65535) then warning('Invalid range for FLEX Port number. Keeping previous values.'); flex_port_id = old_flex_port_id; break; end if(pc_port_id<1 | pc_port_id>65535) then warning('Invalid range for PC Port number. Keeping previous values.'); pc_port_id = old_pc_port_id; break; end // if exists('inport') then in=ones(inport,1), else in=1, end in = ones(15,1); // we set a fixed input dimension = 15 out=[]; [model,graphics,ok]=check_io(model,graphics,in,out,1,[]); if ok then graphics.exprs=exprs; model.rpar=[]; model.ipar=[flex_port_id,pc_port_id]; model.dstate=[1]; x.graphics=graphics;x.model=model; break end end case 'define' then flex_port_id = 9760; // Default value pc_port_id = 9761; // Default value model=scicos_model(); model.sim=list('flex_udp_send',4); //if exists('inport') then model.in=ones(inport,1), else model.in=1, end model.in = ones(15,1); // we set a fixed input dimension = 15 model.out=[]; model.evtin=1; model.rpar=[]; model.ipar=[flex_port_id,pc_port_id]; model.dstate=[1]; model.blocktype='d'; model.dep_ut=[%t %f]; exprs=[sci2exp(flex_port_id);.. sci2exp(pc_port_id)]; gr_i=['xstringb(orig(1),orig(2),.. [''FLEX UDP'';.. ''SEND'';.. ''FLEX PORT: ''+string(flex_port_id);.. ''PC PORT: ''+string(pc_port_id);.. ],.. sz(1),sz(2),''fill'');']; x=standard_define([4 3],model,exprs,gr_i); end endfunction
0c6a5676ab5796c81bb8e63a6b09b59f901b9910
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4.1/macros/mtlb/mtlb_mean.sci
dc0a90300213176a4ba4f955948ed3fd22a4af76
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
122
sci
mtlb_mean.sci
function m = mtlb_mean(x) ; // Copyright INRIA [r,c] = size(x) ; if r == 1 x = x(:) r = c ;c = 1; end m=sum(x,'r')/r
b886126f2bd951c43ede33aa19056572b7c12bed
a550430672dfb5984bd8561b894897323028b7f5
/tests/results/power01.tst
9810815c500c0002dc84fa94d4c3d7e8b5005a93
[]
no_license
carlosmata/LabelPropagation
c91f68489a941e6f8cfb15de478d2fe28eadbcad
2f169cc4ece49a0d0f868fee15e5eefe02bbc6df
refs/heads/master
2020-12-18T17:46:23.501020
2020-05-09T06:13:16
2020-05-09T06:13:16
235,474,033
0
0
null
null
null
null
UTF-8
Scilab
false
false
175
tst
power01.tst
argc:7 Dataset: ../datasets/converted/5powergrid.net Nodes Edges Com Mod NMI Time seq async 4941 13188 494 0.801015 -1 0.0505597 par async 4941 13188 986 0.68027 -1 0.12409
8eead0e236d11e06912237104b2c525086164d0d
449d555969bfd7befe906877abab098c6e63a0e8
/1226/CH3/EX3.37/EX3_37.sce
12e37f5854d0dbcdca91930ad98b414bfcf21660
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
782
sce
EX3_37.sce
clc;funcprot(0);//EXAMPLE 3.37 // Initialisation of Variables t1=303;........................//Min temperature in K t3=1073;........................//Max temperature in K C=45000;.....................//Calorific value of fuel in kJ/kg cp=1;....................//Specific heat at constant pressure in kJ/kgK ga=1.4;........................//Ratio os specific heats diftc=100;..................//Difference between work done by turbine and compressor in kW //Calculations t2=sqrt(t1*t3); t4 = t2;.....//Assumed mf=diftc/[C*(1-((t4-t1)/(t3-t2)))];................//Fuel used in kg per second disp(mf,"Rate of fuel consumption in kg/s:") ma=[diftc-[mf*(t3-t4)]]/[(t3-t4-cp*(t2-t1))];............//Rate of air consumption in kg/s disp(ma,"Mass flow rate of air in kg/s:")
a49609b7cc8ff21e9ed97863907fb87b10e8b6c7
449d555969bfd7befe906877abab098c6e63a0e8
/1964/CH1/EX1.33/ex1_33.sce
ec6b2bede4ffc46d5207dcd50c7faf780f648ba6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
994
sce
ex1_33.sce
//Chapter-1, Example 1.33, Page 46 //============================================================================= clc; clear; //INPUT DATA V1=25;//supply voltage1 of battery in volts V2=45;//supply voltage2 of battery in volts R1=6;//resistance1 in ohms R3=4;//resistance2 in ohms R2=3;//resistance3 in ohms //let I1 be the current in loop1 and I2 current be in loop2 //CALCULATIONS //V1=((R1+R3)*(I1)-(R3*I2));//applying KVL in loop1 -------------eqn(1) //V2=((R3)*(I1)-(R2+R3)*(I2));//applying KVL in loop2 -------------eqn(2) //solving both eqn(1) and eqn(2) [a]=[(R1+R3),-R3;(R3),-(R2+R3)] [b]=[V1;-V2] [c]=inv(a)*(b)//ax=b c1=c(1);//c1 is current in branch FABC measured in A c2=c(2);//c2 is current in branch CDEF measured in A c3=c1-c2;//current in branch CF in A //OUTPUT mprintf("Current in R1 is %1.4f A \n current in R2 is %2.3f A \n current in R3 is %1.3f A\n ",c1,c2,c3); //=================================END OF PROGRAM==============================
964ce42c6d0cc4e93f260d38ee3a5384a13d76f9
449d555969bfd7befe906877abab098c6e63a0e8
/978/CH5/EX5.4/Example5_4.sce
1387536a65e40e69c847f417edb79216fb3c4c88
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
198
sce
Example5_4.sce
//chapter-5,Example5_4,pg 492 Vref=5//ref. voltage t=1*10^-3//sawtooth wave time f=100*10^3//clock frequency Vi=1//input voltage N=((t*f*Vi)/Vref)//count printf("count=%.2f \n",N)