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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
33f77fafadc4275093b7ae18b1baab5e5fe44d4b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3862/CH10/EX10.9/Ex10_9.sce | b7888194169a263d1614a663c80935ca5dcf9a55 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sce | Ex10_9.sce | clear
//Design a timber beam is to carry a load of 5 kN/m over a simply supported span of 6 m. Permissible stress in timber is 10 N/mm2. Keep depth twice the width.
//variable declaration
w=(5) //KN/m
L=(6) //m
M=w*1000000*(L**2)/8 //Maximum bending moment**N-mm
//Let b be the width and d the depth. Then in this problem d = 2b.
//Z=b*(d**2)/6=2*(b**3)/3
f=10 //N/mm^2
//f*Z=M
b=(((M*3)/(2*f))**(0.3333))
printf("\n b= %0.0f mm",b)
d=2*b
printf("\n d= %0.0f mm",d)
|
37cc1e8c33856249b5e4b64a59b3c2e63c12193e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3834/CH3/EX3.4.1/Ex3_4_1.sce | a21657cebdcf2489f67f170db6fe8eb9fb0349d4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 483 | sce | Ex3_4_1.sce | //Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner
//Windows 7
//Scilab version- 6.0.0
//Example 3.4.1
clc;
clear;
//given
NA=0.275;//numerical aperture
N1=1.487;//refractive in dex
c=3E8;//speed of light in m/s
L=1E3;//length of the link
a=N1*N1*N1;
b=8*c*a;
d=NA*NA*NA*NA;
g=L*d;
BRg1=(b/g);
mprintf("The bits restricted by modal dispersion is=%.2f Gbit/s",BRg1/1e9);//division by 1e9 t0 convert unit from bits/sec to Gbits /sec
|
3ae9225e39aa3dbfb2185c0f794ec93088c8e3cf | 25938fdd57f60ee5725a949bc87d6afd3cc4fe24 | /Practica5/jacobi.sce | 684e40f5a6274163fd38891dd78a7530378af9f5 | [] | no_license | Joaquin98/Metodos | a3df61366647a7c02a81bb0467befdcbbedb9426 | 5b30532431c111ca453f9d6b37ffa377616ba6a5 | refs/heads/master | 2020-04-04T05:13:27.646770 | 2018-12-07T12:25:43 | 2018-12-07T12:25:43 | 155,738,528 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 888 | sce | jacobi.sce | function y = jacobi(A,b,t)//t tolerancia
x = zeros(1,length(b))
k = 0
delta=t+1
while k<1000 & t<delta
xk=x
for i = 1:length(x)
s = 0
for j = 1:length(x)
// mprintf("%d , %d\n", i ,j)
if j <> i then s = s + (A(i,j)*xk(j))
end
end
if(A(i,i)==0)
mprintf("Matriz invalida, Cero en la diagonal")
y=[]
return
end
x(i) = (1/A(i,i)) * (b(i) - s)
end
k = k + 1
delta=norm(x-xk)
end
printf("Cantidad de operaciones %d\n",k)
y = x
endfunction
//Convergenciua:
//(condicion suficiente) A es estrictamente diag dom.
//(cond nec. y suficiente) El radio espectral de (inv(D)*(L+U)) < 1
|
4f8d8b0867d2e2cbf91f08d22c904c5c6dcbf1e5 | 9fd1c728d84d54cce3b7a5d0c58281b2c66aaa6b | /TEST/txt.tst | ae55f6e8d551260c8e5029e27d199fb2d76e9593 | [
"MIT"
] | permissive | ihgazni2/sledgehammer4nut | 46349bc46fab1116b386595cb26cca667440bd6c | 397ace55fc0113bcb2e8375ede055b469b5ef029 | refs/heads/master | 2020-04-15T21:02:59.010109 | 2019-01-14T15:45:54 | 2019-01-14T15:45:54 | 165,019,039 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,906 | tst | txt.tst | import elist.elist as elel
import estring.estring as eses
import numpy as np
import sldghmmr4nut.ndarr.do as ndo
import sldghmmr4nut.ndarr.convert as ndcvt
from sldghmmr4nut import txt
####
ndarr = ndcvt.txt2ndarr(s)
ndo.append_col(ndarr,eses.str2chnums("RRRR"))
cols = [[82, 82, 82, 82], [65, 66, 67, 68], [82, 82, 82, 82]]
ndo.append_cols(ndarr,cols)
row = [66, 66, 66, 66, 66, 66, 66]
ndo.append_row(ndarr,row)
rows = [[66, 66, 66, 66, 66, 66, 66], [65, 66, 67, 68, 69, 70, 71], [66, 66, 66, 66, 66, 66, 66]]
ndo.append_rows(ndarr,rows)
ndarr = ndcvt.txt2ndarr(s)
ndarr = ndo.append_row(ndarr,*args)
row = eses.str2chnums("下下下下下下下")
ndo.append_row(ndarr,row)
#########
import elist.elist as elel
import estring.estring as eses
import numpy as np
import sldghmmr4nut.ndarr.do as ndo
import sldghmmr4nut.ndarr.convert as ndcvt
from sldghmmr4nut import txt
s = '''两人对酌山花开
一杯一杯复一杯
我醉欲眠卿且去
明朝有意抱琴来'''
print(s)
ss = txt.append_col(s,"RRRR")
print(ss)
print(s)
ss = txt.append_cols(s,["RRRR","ABCD","RRRR"])
print(ss)
print(s)
ss = txt.append_row(s,"下下下下下下下")
print(ss)
print(s)
ss = txt.append_rows(s,["下下下下下下下","一二三四五六七","下下下下下下下"])
print(ss)
print(s)
ss = txt.ccwrot180(s)
print(ss)
print(s)
ss = txt.ccwrot270(s)
print(ss)
print(s)
ss = txt.cols(s)
print(ss)
print(s)
ss = txt.crop(s,2,3,3,4)
print(ss)
import elist.elist as elel
import estring.estring as eses
import numpy as np
import sldghmmr4nut.ndarr.do as ndo
import sldghmmr4nut.ndarr.convert as ndcvt
from sldghmmr4nut import txt
s = '''两人对酌山花开
一杯一杯复一杯
我醉欲眠卿且去
明朝有意抱琴来'''
print(s)
ss = txt.cwrot180(s)
print(ss)
print(s)
ss = txt.cwrot270(s)
print(ss)
print(s)
ss = txt.cwrot90(s)
print(ss)
print(s)
ss = txt.fliplr(s)
print(ss)
print(s)
ss = txt.flipud(s)
print(ss)
#ancient chinese from up to down, from right to left
ancient = '''明我一两
朝醉杯人
有欲一对
意眠杯酌
抱卿复山
琴且一花
来去杯开'''
print(ancient)
ss = txt.from_ancient_chinese(ancient)
#mordern chinese from left to right ,from up to down
print(ss)
import elist.elist as elel
import estring.estring as eses
import numpy as np
import sldghmmr4nut.ndarr.do as ndo
import sldghmmr4nut.ndarr.convert as ndcvt
from sldghmmr4nut import txt
s = '''两人对酌山花开
一杯一杯复一杯
我醉欲眠卿且去
明朝有意抱琴来'''
print(s)
ss = txt.insert_col(s,2,"二二二二")
print(ss)
print(s)
ss = txt.insert_cols(s,2,["二二二二","三三三三","四四四四"])
print(ss)
print(s)
ss = txt.insert_row(s,2,"二二二二二二二")
print(ss)
print(s)
ss = txt.insert_rows(s,2,["二二二二二二二","三三三三三三三","四四四四四四四"])
print(ss)
print(s)
ss = txt.prepend_col(s,"二二二二")
print(ss)
print(s)
ss = txt.prepend_cols(s,["二二二二","三三三三","四四四四"])
print(ss)
print(s)
ss = txt.prepend_row(s,"二二二二二二二")
print(ss)
print(s)
ss = txt.prepend_rows(s,["二二二二二二二","三三三三三三三","四四四四四四四"])
print(ss)
import elist.elist as elel
import estring.estring as eses
import numpy as np
import sldghmmr4nut.ndarr.do as ndo
import sldghmmr4nut.ndarr.convert as ndcvt
from sldghmmr4nut import txt
s = '''两人对酌山花开
一杯一杯复一杯
我醉欲眠卿且去
明朝有意抱琴来'''
print(s)
tl,tr,bl,br = txt.quad_split(s,(2,3))
print(tl)
print(tr)
print(bl)
print(br)
print(s)
ss = txt.rm_col(s,1)
print(ss)
print(s)
ss = txt.rm_cols(s,[2,5,6])
print(ss)
print(s)
ss = txt.rm_row(s,1)
print(ss)
print(s)
ss = txt.rm_rows(s,[1,3,5])
print(ss)
print(s)
ss = txt.rowbot_colleft(s)
print(ss)
print(s)
ss = txt.rowbot_colright(s)
print(ss)
print(s)
ss = txt.rowleft_colbot(s)
print(ss)
print(s)
ss = txt.rowleft_coltop(s)
print(ss)
print(s)
ss = txt.rowright_colbot(s)
print(ss)
print(s)
ss = txt.rowright_coltop(s)
print(ss)
import elist.elist as elel
import estring.estring as eses
import numpy as np
import sldghmmr4nut.ndarr.do as ndo
import sldghmmr4nut.ndarr.convert as ndcvt
from sldghmmr4nut import txt
s = '''两人对酌山花开
一杯一杯复一杯
我醉欲眠卿且去
明朝有意抱琴来'''
print(s)
ss = txt.rows(s)
print(ss)
print(s)
ss = txt.rowtop_colleft(s)
print(ss)
blk ="""你你你
踏踏踏"""
print(blk)
print(s)
ss = txt.rplc_blk(s,1,1,2,3,blk)
print(ss)
print(s)
ss = txt.rplc_col(s,1,"一一一一")
print(ss)
print(s)
ss = txt.rplc_cols(s,[0,3],["零零零零","叁叁叁叁"])
print(ss)
print(s)
ss = txt.rplc_row(s,1,"田田田田田田田")
print(ss)
print(s)
ss = txt.rplc_rows(s,[0,2],["田田田田田田田","门门门门门门门"])
print(ss)
print(s)
ss = txt.slct_col(s,1)
print(ss)
import elist.elist as elel
import estring.estring as eses
import numpy as np
import sldghmmr4nut.ndarr.do as ndo
import sldghmmr4nut.ndarr.convert as ndcvt
from sldghmmr4nut import txt
s = '''两人对酌山花开
一杯一杯复一杯
我醉欲眠卿且去
明朝有意抱琴来'''
print(s)
ss = txt.slct_cols(s,[1,4])
print(ss)
print(s)
ss = txt.slct_row(s,1)
print(ss)
print(s)
ss = txt.slct_rows(s,[1,2])
print(ss)
print(s)
ss = txt.slct(s,[1,2],[3,5])
print(ss)
import elist.elist as elel
import estring.estring as eses
import numpy as np
import sldghmmr4nut.ndarr.do as ndo
import sldghmmr4nut.ndarr.convert as ndcvt
from sldghmmr4nut import txt
s = '''两人对酌山花开
一杯一杯复一杯
我醉欲眠卿且去
明朝有意抱琴来'''
print(s)
ss = txt.swap_col(s,1,2)
print(ss)
print(s)
ss = txt.swap_cols(s,[1,2],[4,5])
print(ss)
print(s)
ss = txt.swap_dimension(s)
print(ss)
print(s)
ss = txt.swap_row(s,1,2)
print(ss)
print(s)
ss = txt.swap_rows(s,[0,3],[1,2])
print(ss)
|
e6fae427f2843411d5ea85f023fefaca301f408f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2345/CH15/EX15.3/Ex15_3.sce | 7fca59d5eab0cebacf57cf65df8336000f08d865 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 460 | sce | Ex15_3.sce | //Finding current
//Example 15.3(pg 393)
clc
clear
M=250000//weight of water lifted per hr in kg
h=50//height in metres
g=9.81//gravitational const.
WD=M*h*g//work done by pump per hr in watt-sec
P=WD/3600//Power output of pump per sec in watts
V=500//supply voltage in volts
Ep=0.8//efficiency of pump
Em=0.9//efficiency of motor
E=Em*Ep//overall efficiency
I=P/(V*E)//current in amperes
printf('Current drawn by the motor is %3.2f Amperes',I)
|
d56f5a29823d881f6fdc99c5226f1fa47ff4c5c4 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electronic_Circuits_M._H._Tooley_995.zip/Electronic_Circuits_M._H._Tooley_995/CH1/EX1.22/Ex1_22.sce | c8f2e33053948e5b3c679a2738d36e20d03d0f48 | [] | 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 | 159 | sce | Ex1_22.sce | errcatch(-1,"stop");mode(2);//Ex:1.22
;
;
v=600;//in volts
d=25*10^-3;//in meters
E=(v)/d;
printf("Electric Field Strength = %d kV/m",E/1000);
exit();
|
00b6b027996d0f472159b4c6796262754b540531 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1535/CH4/EX4.8/Ch04Ex8.sci | 3834fa17bb48d700ef2cbc44e4fe3a49369e165f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 646 | sci | Ch04Ex8.sci | // Scilab Code Ex4.8 : Page-93 (2010)
lambda = 550e-09; // Wavelength of light, m
D = 3.2e-02; // Diameter of circular lens, m
f = 24e-02; // Focal length of the lens, m
theta_min = 1.22*lambda/D; // Minimum angle of resolution provided by the lens, rad
// As delta_x/f = theta_min, solving for delta_x
delta_x = theta_min*f; // Separation of the centres of the images in the focal plane of lens, m
printf("\nThe separation of the centres of the images in the focal plane of lens = %1d micro-metre", delta_x/1e-06);
// Result
// The separation of the centres of the images in the focal plane of lens = 5 micro-metre |
f0830739afb8a879d06b8216decd5cc3c36e2149 | 67ba0a56bc27380e6e12782a5fb279adfc456bad | /STAMPER_PROG_7.4/TESTS/TEST.sce | 9b7b8408f6e7c6af3c28477e904d23dc48b69253 | [] | 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 | 196 | sce | TEST.sce | clc
fToolAngle = -85*%pi/180;
fToolIncludedAngle = 60*%pi/180;
fA = 45 * %pi/180;
vA = [cos(fA) sin(fA)];
//vA = [1, 1]
sReg = GetToolRegime(fToolAngle, fToolIncludedAngle, vA, "LEFT")
disp(sReg)
|
4f03e4a0b706d73a225cd09addc36a87936d5a06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH16/EX16.9/Ex16_9.sce | 6c06d8c49d3fa4a776b51ba6a9480efe535d7c89 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 148 | sce | Ex16_9.sce | clc;
f=50;
y=0.05;
RL=100;
L=RL/(y*3*sqrt(2)*2*%pi*f);
disp('H',L*1,"L=");
f=400;
y=0.05;
L=RL/(y*3*sqrt(2)*2*%pi*f);
disp('H',L*1,"L=");
|
f392c8d173d6978ba6d99ad5640ae8ab158ec159 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH15/EX15.3/Ex15_3.sce | 198f244b7d8c38d6a9d1b57678be3e8b0598a9c2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 351 | sce | Ex15_3.sce | //Example 15_3
clc();
clear;
//To find the resultant force
f1=6 //Units in N
f2=18 //Units in N
f=sqrt(f1^2+f2^2) //Units in N
theta=atan(f2/f1)*180/%pi //Units in degrees
printf("The resultant force is f=%d N \n The resultant angle is theta=%.1f degrees",f,theta)
//In text book answer printed wrong as f=19 N correct answer is f=18N
|
8dd5e3d0c8e6e9900c9e4cea13820981f341643c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1853/CH2/EX2.10/Ex2_10.sce | 9377dd0603ffca949c28a1d4a2e834c0a4f4bb45 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 337 | sce | Ex2_10.sce |
//calculate the total amprers turns
u=1//for air gap
F=1.2e-3//flux
A=10e-4 //area
B=F/A
H=B/(4*3.14*10^-7*u)
l=0.2e-3//air gap
S=H*l//amps turns in air gap
l1=15e-2//air gap
A1=8e-4
H1=450
S1=H1*l1
F1=0.6e-3
B1=F1/A1
H2=140
S2=H2*30e-2
TN=500
TAN=S+S1+S2
EI=TAN/TN
disp('exciting current =' +string(EI)+'amps' )
|
f11e848979264df6808cc7698abbf32b358d1a57 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/hilbert1.sci | fbcb136475d0de8af852ba53a94e2b1eda62df70 | [] | 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 | 1,326 | sci | hilbert1.sci | function h= hilbert1(f, varargin)
//Analytic extension of real valued signal.
//Calling Sequence
// h= hilbert1(f)
// h= hilbert1(f,N)
// h= hilbert1(f,N,dim)
//Parameters
//f: real or complex valued scalar or vector
//N: The result will have length N
//dim : It analyses the input in this dimension
//Description
//h = hilbert1 (f) computes the extension of the real valued signal f to an analytic signal. If f is a matrix, the transformation is applied to each column. For N-D arrays, the transformation is applied to the first non-singleton dimension.
//
//real (h) contains the original signal f. imag (h) contains the Hilbert transform of f.
//
//hilbert1 (f, N) does the same using a length N Hilbert transform. The result will also have length N.
//
//hilbert1 (f, [], dim) or hilbert1 (f, N, dim) does the same along dimension dim.
//Examples
//## notice that the imaginary signal is phase-shifted 90 degrees
// t=linspace(0,10,256);
// z = hilbert1(sin(2*pi*0.5*t));
// grid on; plot(t,real(z),';real;',t,imag(z),';imag;');
funcprot(0);
rhs= argn(2);
if(rhs<1 | rhs>3)
error("Wrong number of Input Arguments")
end
select(rhs)
case 1 then
h= callOctave("hilbert", f);
case 2 then
h= callOctave("hilbert", f, varargin(1));
case 3 then
h= callOctave("hilbert", f, varargin(1), varargin(2));
end
endfunction
|
98ea9b43bb46571a703b9de070d6ca874bbc8d52 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH5/EX5.2/5_2.sce | da1c6bda79db5ac8d70b743f73d61e76df4ae52d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 5_2.sce | clear; clc; close;
Vt=26*(10^(-3)); //thermal voltage
Ie=3.2*(10^(-3)); //emitter current
Beta=150; //Common Emitter amplification factor
Rl = 2*(10^(3)); //Load Resistance
re = Vt/Ie;
Zi = Beta*re;
disp(Zi,"Input Impedance(ohms) is : ");
Av = -(Rl/re);
disp(Av,"Voltage gain is :");
Ai = Beta;
disp(Ai,"Current gain is :");
|
1a5983e16259257a2e87833ad575fe535f813de6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH34/EX34.2/Example34_2.sce | 8d6402589b17fba92cae344ad08abf2770da061a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,871 | sce | Example34_2.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART III : SWITCHGEAR AND PROTECTION
// CHAPTER 8: PROTECTION OF ALTERNATORS AND AC MOTORS
// EXAMPLE : 8.2 :
// Page number 624-625
clear ; clc ; close ; // Clear the work space and console
// Given data
MVA = 20.0 // Generator rating(MVA)
V = 11.0*10**3 // Generator voltage(V)
ratio_CT = 1200.0/5 // Ratio of current transformer
I_min_op = 0.75 // Minimum operating current of relay(A)
R = 6.0 // Neutral point earthing resistance(ohm)
// Calculations
I_max_fault = ratio_CT*I_min_op // Maximum fault current to operate relay(A)
x = I_max_fault*3**0.5*100*R/V // Unprotected portion for R = 6 ohm(%)
R_1 = 3.0 // Neutral point earthing resistance(ohm)
x_1 = I_max_fault*3**0.5*100*R_1/V // Unprotected portion for R = 3 ohm(%)
R_3 = 12.0 // Neutral point earthing resistance(ohm)
x_3 = I_max_fault*3**0.5*100*R_3/V // Unprotected portion for R = 12 ohm(%)
// Results
disp("PART III - EXAMPLE : 8.2 : SOLUTION :-")
printf("\nUnprotected portion of each phase of the stator winding against earth fault, x = %.f percent", x)
printf("\nEffect of varying neutral earthing resistance keeping relay operating current the same :")
printf("\n (i) R = 3 ohms")
printf("\n Unprotected portion = %.1f percent", x_1)
printf("\n Protected portion = %.1f percent", (100-x_1))
printf("\n (ii) R = 6 ohms")
printf("\n Unprotected portion = %.f percent", x)
printf("\n Protected portion = %.f percent", (100-x))
printf("\n (iii) R = 12 ohms")
printf("\n Unprotected portion = %.f percent", x_3)
printf("\n Protected portion = %.f percent", (100-x_3))
|
a1bb3f9ce942f19e43bdc52ddb3fb197982ca9ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH8/EX8.1/example1.sce | 92e04874bb681bc6fc24b098c6c8a1e4143e1965 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 773 | sce | example1.sce | // calculate the collector-emmitter voltage
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 8-1, page 263
clear;clc; close;
// Given data
Vcc=10;// collector supply voltage in volts
R1=10*10^3;// in ohms
R2=2.2*10^3;// in ohms
Rc=3.6*10^3;// collector resistance
Re=1*10^3;// emitter resistance
// Calculations
Vbb=R2*Vcc/(R1+R2);// base voltage in ohms
Ve=Vbb-0.7;// emitter voltage
Ie=Ve/Re;// emitter current in amperes
Ic=Ie;// collector current is approximately equal to emitter current
Vc=Vcc-(Ic*Rc);// collector-to-ground voltage in volts
Vce=Vc-Ve;// collector-emitter voltage in volts
disp("Volts",Vce,"Collector-Emitter Voltage")
// Result
// collector-emitter voltage is 4.92 volts.
|
b5e557459b3e4cfe66afd6cb9ccbfe4bff46d315 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH6/EX6.10/example10.sce | a70225fd6f98562531d3498fc7967545d176a80d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 506 | sce | example10.sce | //Chapter-6 example 10
//=============================================================================
clc;
clear;
//input data
l = 2.5*10^-6;//Drift length of gunn diode in m
Vd = 2*10^8;//Drift velocity in gun diode
Vgmin = 3.3*10^3;//minimum voltage gradient required to start the diode
//Calculations
Vmin = Vgmin*l;
//output
mprintf('Minimum Voltage required to operate gunn diode is %g mV',Vmin*10^3);
//=============end of the program===============================================
|
92cd47769ec1efc99daa4a3546887b3348113385 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH6/EX6.22/Ex6_22.sce | ceea97230b6f65ee4af763cc17125f33828e8573 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 444 | sce | Ex6_22.sce | //Example 6_22
clc;
clear;
close;
format('v',7);
//given data :
IL=50;//micro A
C=4;///micro F
C1=4;///micro F
L=20;///H(Choke Inductance)
R=200;//ohm(Choke Resistance)
V=300;//V
Idc=IL/1000;//mA
Vdc=V*sqrt(2)-4170*Idc/C-Idc*R;//V
disp(Vdc,"Output Voltage(V) : " );
r=3300*Idc/C/C1/L/R;//Ripple factor
Vrms=r*Vdc;//V
disp(Vrms,"Ripple Voltage(V) : ");
//Answer in the textbook is wrong. calculation & value putting mistake.
|
5850f307f231360513dc3f5d50ca680792317e2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH19/EX19.07/19_07.sce | c265cbcbcd3870e3dde93db3cd0e9ef497f530b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,628 | sce | 19_07.sce | //pathname=get_absolute_file_path('19.07.sce')
//filename=pathname+filesep()+'19.07-data.sci'
//exec(filename)
//Specific heat(in kJ/kg.K):
Cpa=1.005
Cpg=1.087
ra=1.4
rg=1.33
//Gas constant(in kJ/kg.K):
R=0.287
//Speed of aeroplane(in m/s):
C0=250
//Velocity at exit of turbine(in m/s):
C4a=180
CV=43000 //kJ/kg
//Thrust power(in kW):
P=800
//Temperatures(in K):
T0=-20+273
T2=474.25
T3=973
//Pressures(in bar):
p0=0.3
p1=0.31
p5=p0
//Compressor efficiency:
nc=0.85
//Jet engine efficiency:
nj=0.90
//Pressure ratio:
r1=6
//Temperature at state 2(in K):
T1=T0+C0^2/(2*Cpa*10^3)
T2a=T1+(T2-T1)/nc
//Pressure at state 2(in bar):
p2=p1*r1
p3=p2
//Fuel air ratio:
FA=(Cpa*T3-Cpg*T2a)/(CV-Cpa*T3)
printf("\n RESULT \n")
printf("\nAir-fuel ratio = %f:1",1/FA)
//Temperature at state 4'(in K):
T4a=T3-Cpa/Cpg*(T2a-T1)/(1+FA)
//Temperature at state 4(in K):
T4=T3-(T3-T4a)/nc
//Pressure at state 4(in bar):
p4=p3*(T4/T3)^(rg/(rg-1))
//Temperature at state 5(in K):
T5=T4a*(p5/p4)^((rg-1)/rg)
//Nozzle exit velocity(in m/s):
C5=sqrt(2*nj*(Cpg*10^3*(T4a-T5)+C4a^2/2))
//Overall efficiency:
no=(((1+FA)*C5-C0)*C0)/(FA*CV*10^3)*100
//Rate of air consumption(in kg/s):
ma=P*10^3/(((1+FA)*C5-C0)*C0)
printf("\nRate of air consumption = %f kg/s",ma)
//Power produced by the turbine(in kW):
Pt=ma*(1+FA)*Cpg*(T3-T4a)
printf("\nPower produced by turbine = %f kW",Pt)
//Temperature at state 5'(in K):
T5a=T4a-((C5^2-C4a^2)/(2*Cpg*10^3))
//Density of exhaust gases(in m^3/kg):
d5a=p5*10^2/(R*T5a)
//Jet exit area(in m^2):
Aj=ma*(1+FA)/(C5*d5a)
printf("\nJet exit area = %f m^2",Aj) |
a024b58527005c695d494674a40203852679f9eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH21/EX21.18/21_18.sce | db8ed5185ab541bd0d87806a675f91d4dbfde1c7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 494 | sce | 21_18.sce | //Chapter 21, Problem 18
clc;
vi=200e3; //rated transformer
pf=0.85; //power factor
lcu=(1/2)^2*1.5e3; //copper loss
lfe=1e3; //iron loss
p0=(1/2)*vi*pf; //full-load output power
lt=lcu+lfe; //total losses
pi=p0+lt; //input power
Ef=(1-(lt/pi)); //efficiency
printf("Transformer efficiency at half load = %.3f percent",Ef*100);
|
efcbd00eb9bd65a92b03caf6a992764b61f1cf77 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2453/CH10/EX10.1/10_1.sce | ac803bc25d61acf7296dcac4cddf5e45ea785f69 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 503 | sce | 10_1.sce | //To calculate the relative population
c = 3*10^8; //speed of light, m/sec
h = 6.6*10^-34; //planck's constant
e = 1.6*10^-19;
T = 300; //temperature, K
K = 8.61*10^-5;
lamda = 6943; //wavelength, armstrong
lamda = lamda*10^-10; //wavelength, m
// let E2 - E1 be E
E = h*c/lamda; //energy, J
E = E/e; //energy, eV
//let population ratio N2/N1 be N
N = exp(-E/(K*T));
printf("relative population of 2 states is");
disp(N);
//answer given in the book is wrong
|
ca8702db46a25bf2384ddfba502adc7edcb9b280 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH15/EX15.24/15_24.sce | 79894698afa45960e3e4f0319a313f8e140f0f77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 924 | sce | 15_24.sce | //Example 15.24
//Improved Milne Simpson Predictor Corrector Method
//Page no. 546
clc;clear;close;
deff('y=f(x,y)','y=y-x^2')
y(1)=1;h=0.25;x=0;
printf('n\tXn\tYn\tfn\tY`n\tYn\tY`n+1\tm(n+1)\tv(n+1)\n------------------------------------------------------------------------\n')
f1(1)=f(x,y(1));
for i=1:3
K1=h*f(x,y(i));
K2=h*f(x+2*h/3,y(i)+2*K1/3);
y(i+1)=y(i)+(K1+3*K2)/4
printf(' %i\t%.3f\t%.3f\t%.3f\n',i-1,x,y(i),f1(i))
x=x+h
f1(i+1)=f(x,y(i+1))
end
Y31=0
for i=3:10
Y41=y(i-2)+4*h*(2*f1(4)-f1(3)+2*f1(2))/3 //predictor
m4=Y41+28*(y(i+1)-Y31)/29 //modifier
v4=f(x+h,m4) //evaluator
Y4=y(i)+h*(v4+4*f1(4)+f1(3))/3 //corrector
printf(' %i\t%.3f\t%.3f\t%.3f\t%.3f\t%.3f\t%.3f\t%.3f\t%.3f\n',i,x,y(i+1),f1(4),Y31,y(i+1),Y41,m4,v4)
y(i+2)=Y4
Y31=Y41;
f1(2)=f1(3);
f1(3)=f1(4);
f1(4)=f(x+h,y(i+2))
x=x+h
end
|
ca022b643e9edd4ae61e53d5e80f725e641d41a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2183/CH9/EX9.2/Ex_9_2.sce | 150bf973d8eaae6c34c11f82dfee4d8538dc41bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | Ex_9_2.sce | // Example 9.2;//bandwidth
clc;
clear;
close;
snl=-55.45;//dBm
ps=10^(snl/10);//
n=0.8;//
h=1.54;//micro meter
hc=6.63*10^-34;//
c=3*10^8;//m/s
sndb=12;//
sn=10^(sndb/10);//
b=((n*ps*10^-3*h*10^-6)/(hc*c*sn));//
disp(b*10^-9,"bandwidth in GHz is")
//answer is wrong in the textbook
|
716708aa69119cb75c8d35afbe127ad053cca2d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /842/CH1/EX1.14/Example1_14.sce | 01e5094b108abbbf0be9e2dd31605441ad2943d0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 638 | sce | Example1_14.sce | //clear//
//Example 1.14:classification of a system:Time Invariance Property
//Page 51
//To check whether the given system is a Time variant (or) Time In-variant
// The given discrete signal is y(t) = sin(x(t))
clear;
clc;
to = 2; //Assume the amount of time shift =2
T = 10; //Length of given signal
for t = 1:T
x(t) = (2*%pi/T)*t;
y(t) = sin(x(t));
end
//First shift the input signal only
Input_shift = sin(x(T-to));
Output_shift = y(T-to);
if(Input_shift == Output_shift)
disp('The given discrete system is a Time In-variant system');
else
disp('The given discrete system is a Time Variant system');
end
|
4e1204bb6f96a38d37607ccd25dfacb1d3d45bfa | 449d555969bfd7befe906877abab098c6e63a0e8 | /3640/CH3/EX3.4/Ex3_4.sce | cda4812d896185815c3f1462d7da896d9e9c19a5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 396 | sce | Ex3_4.sce | clc
Z=4 //impedance of loudspeaker in ohms
Zin=500 //impedance of audio line in ohms
a=sqrt(Zin/Z)//ans may vary due to roundoff error
mprintf("a=sqrt(Zin/Z)=%f\n",a)//ans may vary due to roundoff error
P2=10 //audio power in watts
V2=sqrt(40)//ans may vary due to roundoff error
mprintf("V2=4*P2=%fV\n",V2) //ans may vary due to roundoff error
V1=a*V2
mprintf("V1=aV2=%fV\n",V1)
|
5a94470abc217fa6160e9cf54acf366f5ec0152d | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/not.man.tst | 6dfb669fa8997952e4c04312a20772bbcd512ef9 | [
"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 | 28 | tst | not.man.tst | clear;lines(0);
~[%t %t %f]
|
64e142e79e2c9037cf41ab437cbe632f1082a118 | 6eb42df0d9f452fee0d084e0b0058e4e4ac242ef | /Updated_Exercises_March_2015/Miscellaneous/Waves/AnalWaveSol.sce | e2e2d6e8e9ff3c39b6a69aeb0d4f09e93c8f034d | [] | no_license | huangqingze/ocean_modelling_for_beginners | b21c1b398efe91e4a3aa1fa5a1d732e2eb4ec16e | 3e73a511480c73f4e38b41c17b2defebb53133ed | refs/heads/main | 2023-07-03T12:00:01.326399 | 2021-08-14T21:16:12 | 2021-08-14T21:16:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,401 | sce | AnalWaveSol.sce | //*******************************************
// Scilab script for visualisation of the
// dynamics of long surface gravity waves.
//
// Use the help facility for more information
// on individual functions used.
//
// Author: J. Kaempf, 2015 (update)
//********************************************
clf; scf(0); a=gcf(); a.figure_size= [800,400];
len = 500.0; // wavelength of wave
eta0 = 1.0; // amplitude of wave
g = 9.81; // acceleration due to gravity
h = 20.0; // water depth
c = sqrt(g*h); // phase speed
per = len/c; // period of wave
u0 = eta0*sqrt(g/h); // u amplitude
xrange = 2*len; //x-range shown in animation
x=[0:xrange/20:xrange]'; // discrete grid points in x-direction
t = 0.; // start time
trange = 2*per; // simulate 2 wave periods
dt = trange/100.; // time step
ntot=trange/dt; // number of iteration steps
// initial locations of fluid parcels
xpos1 = x; zpos1(1:21) = 1.0; xpos2 = x; zpos2(1:21) = 6.0;
xpos3 = x; zpos3(1:21) = 11.0; xpos4 = x; zpos4(1:21) = 16.0;
for n = 1:ntot // start of iteration
drawlater; clf();
eta = eta0*sin(2*%pi*(x/len-t/per)); // solution for eta
u = u0*sin(2*%pi*(x/len-t/per)); // solution for u
dwdz = -2*%pi*u0/len*cos(2*%pi*(x/len-t/per)); // vertical gradient of w
// new locations
xpos1 = xpos1+dt*u; w = dwdz.*zpos1; zpos1 = zpos1+dt*w;
xpos2 = xpos2+dt*u; w = dwdz.*zpos2; zpos2 = zpos2+dt*w;
xpos3 = xpos3+dt*u; w = dwdz.*zpos3; zpos3 = zpos3+dt*w;
xpos4 = xpos4+dt*u; w = dwdz.*zpos4; zpos4 = zpos4+dt*w;
// draw graphs
xset("thickness",2)
plot2d(xpos1,-h+zpos1,-9);
plot2d(xpos2,-h+zpos2,-9);
plot2d(xpos3,-h+zpos3,-9);
plot2d(xpos4,-h+zpos4,-9);
plot2d(x,eta,2,'000');
b = gca(); b.font_size = 3; b.data_bounds = [0,-20;1000,2];
b.auto_ticks = ["off","off","on"]; b.sub_ticks = [3,3];
b.x_ticks = tlist(["ticks", "locations","labels"],..
[0 200 400 600 800 1000], ["0" "200" "400" "600" "800" "1000"]);
b.y_ticks = tlist(["ticks", "locations","labels"],..
[-20 -15 -10 -5 0], ["-20" "-15" "-10" "-5" "0"]);
xset("thickness",1); xset("font size",3);
drawnow; xpause(2d4);
t = t+dt; // time progresses forward
//if n < 10 then
// xs2gif(0,'ex100'+string(n)+'.gif')
//else
// if n < 100 then
// xs2gif(0,'ex10'+string(n)+'.gif')
// else
// xs2gif(0,'ex1'+string(n)+'.gif')
// end
//end
end; // reference point for iteration loop
|
5e87d6468181a8d07b43d2a696976b901b2a2d91 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1943/CH7/EX7.7/Ex7_7.sce | 6f219377ccfba2aacded14f213fd295571ecb3db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,176 | sce | Ex7_7.sce |
clc
clear
//Input data
p1=5//Pressure in bar
T1=200+273//Temperature in K
p2=2//Pressure in bar
m=0.3//Mass flow rate in kg/s
n=1.3//Adiabatic index
//Calculations
vo=0.4249//Specific volume in m^3/kg
ho=2855.4//Enthalpy in kJ/kg
so=7.0592//Entropy in kJ/kg.K
x1=0.972//Dryness fraction
h1=(504.7+x1*2201.9)//Enthalpy in kJ/kg
v1=x1*0.8857//Specific volume in m^3/kg
V1=44.72*sqrt(ho-h1)//Velocity in m/s
A1=((m*v1)/V1)*10^6//Area in mm^2
rp=(p1/p2)^(1/n)//Specific volume ratio
vR=(vo*rp)//Specific volume in m^3/kg
VR=sqrt(2*((n/(n-1))*(p1*vo-p2*vR)*10^5))//Velocity in m/s
AR=((m*vR)/VR)*10^6//Area in mm^2
TR=T1/(p1/p2)^((n-1)/n)//Temperature in K
tR=(TR-273)//Temperature in degree C
ts=120.23//Saturation temperature at pressure p1 in degree C
ds=ts-tR//Degree of subcooling in degree C
ps=1.4327//Saturation pressure at tR in bar
dsu=(p2/ps)//Degree of supersaturation
//Output
printf('(a) Exit area when the flow is in equilibrium throughout is %3.0f mm^2 \n (b) Exit area when the flow is supersaturated is %3.1f mm^2 \n (i) The degree of supercooling is %3.2f degree C \n (ii) The degree of supersaturation is %3.3f',A1,AR,ds,dsu)
|
4173ee7795c89139ec85f4175e70703596f07cc8 | 3592fbcb99d08024f46089ba28a6123aeb81ff3c | /TestHumans.sce | d3d2128cfee55829f41e04861b9dd48f98b1a715 | [] | no_license | clairedune/sciGaitanLib | a29ab61206b726c6f0ac36785ea556adc9ef03b9 | 7498b0d707a24c170fc390f7413359ad1bfefe9f | refs/heads/master | 2020-12-11T01:51:13.640472 | 2015-01-28T13:52:26 | 2015-01-28T13:52:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 342 | sce | TestHumans.sce | exec('../HuMAnS/KickStart.sci');
execstr(LoadModule('../HuMAnS/LagrangianModel/Human36'));
execstr(LoadModule('../HuMAnS/LagrangianDynamics/Complete'));
execstr(LoadModule('../HuMAnS/ActuationModel/NoDynamics'));
execstr(LoadModule('../HuMAnS/ActuationModel/NoDynamics/ComputedTorqueControl'));
execstr(LoadModule('../HuMAnS/Kernel'));
|
d266c755274665a2e39293b7e6e46c77a67e0ddd | 7ff4217b748c6a371baebe9ecbd335194969f871 | /TestInternals.tst | a7472529ad115e00cc739b100bda8124127359be | [] | no_license | KevCannotCode/Supermarket-Simulation | 33bc37a6f7ca48b925c4fa88c06a6ce8ab700fd7 | 02288977d8d510839b5b99c636ca9508a346b9b4 | refs/heads/main | 2023-03-03T18:57:30.592968 | 2021-02-14T06:45:53 | 2021-02-14T06:45:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 208 | tst | TestInternals.tst | 935261471=true
1218654085=false
1891366333=true
410468541=6
235014792=7
743576227=true
1420935520=301
825333284=true
530478379=false
814609720=0
28890223=false
1122720828=true
2119192456=true
279166937=false
|
66a739163fcd0142ed8a8896104340e0cd8d51c9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH3/EX3.21/Ex3_21.sce | 758dfd3e6174e86d720e96176ad801171f70ae91 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 474 | sce | Ex3_21.sce | clc
//to calculate angle of diffraction for third order spectrum and absent spectra if any
n=3
lambda=6000*10^-8
eplusd=1/200
theta=asind(n*lambda/eplusd)
disp("angle of refraction is theta="+string(theta)+"degree")
d=0.0025
e=eplusd-d //width of wire in cm
m=1
n=eplusd*m/e
disp("order of absent spectrum is n="+string(n)+"unitless")
disp("here,m=1 is considered because the higher values of m result the order of absent spectrum more than the given order 3")
|
cb34c2d31db22e907b031206f3a399dc75ea4730 | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH2/EX2.10.a/2_10_data.sci | 44c43a0d0052ac9b84f34581c0db78ace647473c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 118 | sci | 2_10_data.sci | // Aim:To find Temperature at which Fahrenheit and Celsius values are equal
// Given:
// T(degF) = T(degC) //Eqn - 1 |
6d4d646c55c4d9b59e1a35989aa9176b9dea5d4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3836/CH15/EX15.5/Ex15_5.sce | 23e6779d8373033475b3efd84bd366f3c2098a26 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 542 | sce | Ex15_5.sce | clear
//
//Initialisation
I=5 //sinusoidal Current
R=10 //Resistance in Ohm
f=50 //Frequency in Hertz
L=0.025 //Inductancec in Henry
//Calculation
Vr=I*R //Voltage across resistor
Xl=2*%pi*f*L //Reactance
VL= I*Xl //Voltage across inductor
V=sqrt((Vr**2)+(VL**2)) //total voltage
phi=atan(VL*Vr**-1) //Phase Angle in radians
//Result
printf("\n (a V = %.1f V",V)
printf("\n (b V = %.2f V",phi*180/%pi)
|
7b7798fae76cf1e92947f06eb9da85995de8d96d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2150/CH6/EX6.15/ex6_15.sce | 008ce636cdc438bd3c1450568a36f9d59b23de51 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex6_15.sce | // Exa 6.15
clc;
clear;
close;
// Given data
I_DSS = 30;// in mA
V_GS = -5;// in V
V_GS_off = -8;// in V
I_D = I_DSS*(1-(V_GS/V_GS_off))^2;// in mA
disp(I_D,"The drain current in mA is");
|
3fc950288f0b7b11a81641fbafa8df2f26825a42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /273/CH15/EX15.2/ex15_2.sce | 25e14a0dcb5af964d8be53c2ef6f205c7273e33f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 470 | sce | ex15_2.sce | clc;clear;
//Example 15.2
//calculation of energy
//given values
M1=15.00001;//atomic mass of N15 in amu
M2=15.0030;//atomic mass of O15 in amu
M3=15.9949;//atomic mass of O16 in amu
amu=931.4;//amu in MeV
mp=1.0072766;//restmass of proton
mn=1.0086654;//restmass of neutron
//calculation
Q1=(M3-mp-M1)*amu;
disp(Q1,'energy required to remove one proton from O16 is');
Q2=(M3-mn-M2)*amu;
disp(Q2,'energy required to remove one neutron from O16 is');
|
b2ce878538a143c10daa8490d96be8fa6dbbe345 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH2/EX2.5/ch2_5.sci | f69d0c00f2452cfa1eb1cc8d63e72e3e8bf96a8d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 912 | sci | ch2_5.sci | // determination of excitation coil mmf
clc;
U_o=4*%pi*10^-7;
A1=25*10^-4;
A2=12.5*10^-4;
A3=25*10^-4;
l1=.5; //length of side limb(ab+cd)
l2=.2; //length of central limb(ad)
l3=.5; //length of side limb(dea)
l4=.25*10^-3; //length of air gap
phi=.75*10^-3;
N=500;
function [B]=fd(A)
B=phi/A;
endfunction
function [F]=flux(B,l)
F=B*l/(U_o);
endfunction
function [f]=fl(H,l)
f=H*l;
endfunction
B_abcd=fd(A1);
F_bc=flux(B_abcd,l4);
disp(B_abcd,'B_abcd(T)');
H_ab=200; //for cast iron for B=0.3
F_abcd=fl(H_ab,l1);
F_ad=F_abcd+F_bc;
H_ad=F_ad/l2;
disp(H_ad,'H_ad(AT/m)');
B_ad=1.04 //for cast iron for H=800
phi_ad=B_ad*A2;
phi_dea=phi+phi_ad;
B_dea=phi_dea/A3;
H_dea=500 //for cast iron for B=.82
F_dea=H_dea*l3;
F=F_dea+F_ad;
disp(F,'reqd mmf(AT)');
|
de3439898589ff7752bc6c20eeb4da6f3bec321a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH3/EX3.26/26.sce | 1b5595a28d7a76005faee2c0e4020954767dc50f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sce | 26.sce | clc
// Given that
theta = 4.88e-6 // Separation between two stars in radian
lambda = 6000 // wavelength of light in angstrom
// Sample Problem 26 on page no. 172
printf("\n # PROBLEM 26 # \n")
printf(" Standard formula used \n")
printf(" theta = 1.22*lambda/a \n")
a = 1.22*lambda*1e-10/(theta) // calculation of aperture of objective
printf("\n Aperture of objective is %d cm.",(a*100))
|
f168c78e8c0b338a8254c0c330c543b89f3a7935 | 449d555969bfd7befe906877abab098c6e63a0e8 | /695/CH2/EX2.6/Ex2_6.sce | 636ad1f38ccbf046a21794f801e90f96ce9bb4d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 555 | sce | Ex2_6.sce | //Caption:Find the value of generated emf and armature current
//Exa:2.6
clc;
clear;
close;
V_t=250;//in volts
V_AC=V_t;
V_b=1;//voltage drop per brush in volts
I=40;//in amperes
R_f=100;//shunt feild winding resistance in ohms
R_a=0.05;//armature winding resistance in ohms
R_se=0.04;//series feild winding resistance in ohms
V_BC=V_AC+I*R_se;//in volts
I_f=V_BC/R_f;//in amperes
I_a=I+I_f;//in amperes
E_g=V_BC+(R_a*I_a)*(2*V_b);
disp(I_a,' Value of armature current (in Amperes)=');
disp(E_g,' Value of generated voltage (in volts)='); |
934132b90473696dcf2ef5d922150e1bd8308a24 | 8ea401b354e99fe129b2961e8ee6f780dedb12bd | /macros/groupby.sci | 4cf82369c9ba3780d2ea6e1e2a49ea196062ffc4 | [
"BSD-2-Clause"
] | permissive | adityadhinavahi/SciPandas | 91340ca30e7b4a0d76102a6622c97733a28923eb | b78b7571652acf527f877d9f1ce18115f327fa18 | refs/heads/master | 2022-12-20T04:04:35.984747 | 2020-08-19T16:10:51 | 2020-08-19T16:10:51 | 288,765,541 | 0 | 1 | null | 2020-08-19T15:35:04 | 2020-08-19T15:14:46 | Python | UTF-8 | Scilab | false | false | 735 | sci | groupby.sci | function groupby()
// Group DataFrame using a mapper or by a Series of columns.
//
// Syntax
// dfr.groupby(input_string,agg_str)
//
// Parameters
// input_string : String containing the parameters to group
// agg_str : String containing any agg function to aggregate the resulting groups(optional)
// // For additional information on parameters, see https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.groupby.html?#pandas.DataFrame.groupby
// Returns : DataFrame
//
// Examples
// // Group by the Survived column and aggregate the results by sum
// dfr.groupby("by = ["+""'Survived''"+"]","sum()")
//
// Authors
// Aditya Dhinavahi
// Sundeep Akella
endfunction |
53c35fb7350ad8bea46255633ac8019d9d188138 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH2/EX2.2/2_2.sce | 38d63897ee721a85750ca96d6ac112b1be800ccb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 372 | sce | 2_2.sce | clc,clear
printf('Example 2.2\n\n')
Pole=4
A=Pole //for lap winding
V=230
Z=250 //number of armature conductors
phi=30*10^-3 //flux per pole in weber
I_a=40,R_a=0.6 //Armature resistance
E_b=V - I_a*R_a // Since V= E_b+ I_a*R_a
N=E_b * 60*A/(phi*Pole*Z) //because E_b = phi*P*N*Z/(60*A)
printf('Back emf is %.0f V and running speed is %.0f rpm',E_b,N)
|
fa2e30c096307ff6a9135d805dcae815b0128f19 | 8c0ccfbdb651b329b52dd0ab22f1497de9d616a7 | /robot_ikine.sce | b050c2c520170f280e3af0cf988d609ae395203e | [] | no_license | profcarlos/IntroRobotica | 67bdd4850a903041b85458cdd0144d32965ee47e | e1f64a78e8d21d2fe8768614370be7086d10cca4 | refs/heads/master | 2021-06-14T01:06:53.376792 | 2021-03-07T20:42:42 | 2021-03-07T20:42:42 | 158,818,418 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,628 | sce | robot_ikine.sce | // Usamos mod(7) para simulação passo a passo
m = mode();
mode(7);
// BAseado no modelo do PUMA 560
// https://edisciplinas.usp.br/pluginfile.php/4080556/mod_resource/content/1/Aula%202%20-%20SEM0317%20-%202017.pdf
// Cria os links do manipulador a partir da TAbela de Denavic-Hatemberg
L_1 = 100
L_2 = 60
L_3 = 40
L1 = Link('d', 0, 'a', 0, 'alpha', %pi/2, 'modified')
L2 = Link('d', 0, 'a', L_1, 'alpha', 0, 'modified')
L3 = Link('d', 0, 'a', L_2, 'alpha', 0, 'modified')
L4 = Link('d', 0, 'a', L_3, 'alpha', 0, 'modified')
// Cria uma lista sequencial dos links
L = list(L1,L2, L3, L4)
// Define o manipulador como um link serial
bot = SerialLink(L, 'name', 'my robot')
// Apresenta a quantidade de juntas do manipulador
bot.n
// Define uma posição inicial do manipulador robótico
qstart = [%pi/2 %pi/2, 0.0, 0.0]
// Apresenta a Cinemática Direta do manipulador dada a posição angular dos links
T = fkine(bot,qstart)
// Copia valores de translação do manipulador px, py, pz
p_x = T(1,4)
p_y = T(2,4)
p_z = T(3,4)
// Equações da Cinemática Inversa do Manipulador
// Insira aqui suas equações
c_2 = (L_1^2 + (L_2 + L_3)^2 - p_x^2 - p_y^2)/(L_1^2 + (L_2 + L_3)^2)
tetha_2a = atan(+sqrt(1-c_2^2), c_2)
tetha_2b = atan(-sqrt(1-c_2^2), c_2)
tetha_1a = 0
tetha_1b = %pi/4
tetha_3a = 0
tetha_3b = 0
// Apresenta o modelo do manipulador dada a posição angular dos links
pos = [tetha_1a, tetha_2a, tetha_3a, 0]
plot_robot(bot,pos)
// Caso tenha mais de uma posição vamos plotar para ver qual a que representa a posição desejada
pos = [tetha_1b, tetha_2a, tetha_3a, 0]
plot_robot(bot,pos)
mode(m);
|
ac93a01ff9b4fbba40fd6fbd9a42365a4db1b6d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2168/CH1/EX1.4/Chapter1_example4.sce | fac1f8ad12b2291dc6a467aa212acf741a3fd419 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 574 | sce | Chapter1_example4.sce | clc
clear
//Input data
IHP=45//Indicated horse power in h.p
Fc=13//Fuel consumption in litres/hr
g=0.8//Specific gravity of oil
nm=80//Mechanical efficiency in percent
CV=10000//Calorific value of fuel in kcal/kg
//Calculations
BHP=(IHP*nm)/100//Brake horse power in h.p
hi=(Fc*g*CV)//Heat supplied in kcal/hour
In=((IHP*4500*60)/(427*hi))*100//Indicated thermal efficiency in percent
Bn=(In*(nm/100))//Brake thermal efficiency in percent
//Output
printf('Indicated thermal efficiency is %3.2f percent \n Brake thermal efficiency is %3.2f percent',In,Bn)
|
50d596c51393a48f3c35c02c27a088e5fbfddcf3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH6/EX6.1/example1.sce | 7a63f8316f9090b9c72ad111f30afc715587d57a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,611 | sce | example1.sce | clc
clear
//input data
P00=3//The pressure at which air is received in bar
T00=373//The temperature at which air is received in K
rt=0.5//The rotor tip diameter of turbine in m
rh=0.3//The rotor exit diameter of the turbine in m
b=0.03//The rotor blade width at entry in m
b11=60//The air angle at rotor entry in degree
a11=25//The air angle at nozzle exit in degree
Ps=2//The stage pressure ratio
nn=0.97//The nozzle efficiency
N=7200//The speed of the turbine rotation in rpm
R=287//The universal gas constant in J/kg.K
Cp=1005//The specific heat of air at constant pressure in J/kg.K
r=1.4//The ratio of specific heats of air
//calculations
U1=(3.14*rt*N)/60//Peripheral velocity of impeller at inlet in m/s
Cr=U1/(cotd(a11)-cotd(b11))//The radial velocity at inlet in m/s
ps1=Cr/U1//Flow coefficient
sl=1+(ps1*cotd(b11))//Loading coefficient
DR=((1-(ps1*cotd(b11)))/2)//Degree of reaction
nts=((sl*U1^2)/(Cp*T00*(1-((1/Ps)^((r-1)/r)))))//Stage efficiency of the turbine
C2=Cr//Absolute velocity at the exit in m/s
U2=(3.1415*rh*N)/60//Peripheral velocity of impeller at exit in m/s
b22=atand(C2/U2)//The air angle at rotor exit in degree
dT=DR*U1*Cr*cotd(a11)/Cp//Total actual change in temperature in a stage turbine in K
dT0=(U1*Cr*cotd(a11))/Cp//The total change in temperature in turbine in K
T02=T00-dT0//The exit absolute temperature in K
T2=T02-((C2^2)/(2*Cp))//The actual exit temperature in K
T1=dT+T2//The actual inlet temperature in K
Cx1=Cr*cotd(a11)//Inlet absolute velocity of air in tangential direction in m/s
C1=Cx1/cosd(a11)//Absolute velocity at the inlet in m/s
dT1=(C1^2/2)/(Cp*nn)//The absolute change in temperature at the first stage in K
dP1=(1-(dT1/T00))^(r/(r-1))//The absolute pressure ratio in first stage
P1=dP1*P00//The inlet pressure in bar
d1=(P1*10^5)/(R*T1)//The inlet density in kg/m^3
A1=3.1415*rt*b//The inlet area of the turbine in m^2
m=d1*A1*Cr//The mass flow rate of air at inlet in kg/s
P2=P00/Ps//The exit pressure in bar
d2=(P2*10^5)/(R*T2)//The exit density of air in kg/m^3
bh=(m/(d2*3.1415*rh*Cr))//Rotor width at the exit in m
W=m*U1*Cx1*10^-3//The power developed by the turbine in kW
//output
printf('(a)\n (1)The flow coefficient is %3.3f\n (2)The loading coefficient is %3.3f\n(b)\n (1)The degree of reaction is %3.4f \n (2)The stage efficiency of the turbine is %3.4f \n(c)\n (1)The air angle at the rotor exit is %3.2f degree\n (2)The width at the rotor exit is %3.4f m\n(d)\n (1)The mass flow rate is %3.2f kg/s\n (2)The power developed is %3.2f kW',ps1,sl,DR,nts,b22,bh,m,W)
|
dcbf24f0d1e7d8bf58436a235f7fc39097616675 | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Snake Tiles Mini.sce | e03f628eecc2b74c7a8c7de4cdedb4e8ce1607cf | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 79,797 | sce | Snake Tiles Mini.sce | Name=Snake Tiles Mini
PlayerCharacters=STM Challenger
BotCharacters=STM Target 01.bot;STM Target 02.bot;STM Target 03.bot;STM Target 04.bot;STM Target 05.bot;STM Target 06.bot;STM Target 07.bot;STM Target 08.bot;STM Target 09.bot;STM Target 10.bot;STM Target 11.bot;STM Target 12.bot;STM Target 13.bot;STM Target 14.bot;STM Target 15.bot;STM Target 16.bot;STM Target 17.bot;STM Target 18.bot;STM Target 19.bot;STM Target 20.bot;STM Target 21.bot;STM Target 22.bot;STM Target 23.bot;STM Target 24.bot;STM Target 25.bot
IsChallenge=true
Timelimit=30.0
PlayerProfile=STM Challenger
AddedBots=STM Target 01.bot;STM Target 02.bot;STM Target 03.bot;STM Target 04.bot;STM Target 05.bot;STM Target 06.bot;STM Target 07.bot;STM Target 08.bot;STM Target 09.bot;STM Target 10.bot;STM Target 11.bot;STM Target 12.bot;STM Target 13.bot;STM Target 14.bot;STM Target 15.bot;STM Target 16.bot;STM Target 17.bot;STM Target 18.bot;STM Target 19.bot;STM Target 20.bot;STM Target 21.bot;STM Target 22.bot;STM Target 23.bot;STM Target 24.bot;STM Target 25.bot
PlayerMaxLives=0
BotMaxLives=0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
PlayerTeam=1
BotTeams=2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
MapName=1spawn_4096units.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.0
ScorePerKill=1.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=MCA-22, Click-timing
WeaponHeroTag=Semi-auto
DifficultyTag=2
AuthorsTag=pleasewait
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=true
Description=[**Player must use ADS (hipfire doesn't deal damage)**] A mini edition of Snake Tiles. ---------------------------------- Note: MCA stands for "Midweek Competitive Aiming", a local event for the competitive aiming community in Japan.
GameVersion=1.0.8.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[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=STM Target 01
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 01
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 02
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 02
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 03
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 03
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 04
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 04
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 05
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 05
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 06
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 06
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 07
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 07
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 08
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 08
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 09
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 09
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 10
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 10
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 11
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 11
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 12
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 12
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 13
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 13
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 14
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 14
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 15
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 15
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 16
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 16
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 17
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 17
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 18
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 18
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 19
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 19
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 20
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 20
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 21
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 21
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 22
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 22
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 23
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 23
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 24
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 24
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Bot Profile]
Name=STM Target 25
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=STM Target 25
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Character Profile]
Name=STM Challenger
MaxHealth=100.0
WeaponProfileNames=STM ADSable Semi-auto;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=0.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=72.0
MainBBRadius=12.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 01
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=228.0
SpawnXOffset=-256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 02
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=228.0
SpawnXOffset=-128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 03
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=228.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 04
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=228.0
SpawnXOffset=128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 05
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=228.0
SpawnXOffset=256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 06
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=100.0
SpawnXOffset=-256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 07
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=100.0
SpawnXOffset=-128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 08
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=100.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 09
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=100.0
SpawnXOffset=128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 10
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=100.0
SpawnXOffset=256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 11
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-28.0
SpawnXOffset=-256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 12
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-28.0
SpawnXOffset=-128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 13
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-28.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 14
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-28.0
SpawnXOffset=128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 15
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-28.0
SpawnXOffset=256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 16
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-156.0
SpawnXOffset=-256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 17
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-156.0
SpawnXOffset=-128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 18
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-156.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 19
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-156.0
SpawnXOffset=128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 20
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-156.0
SpawnXOffset=256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 21
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-284.0
SpawnXOffset=-256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 22
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-284.0
SpawnXOffset=-128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 23
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-284.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 24
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-284.0
SpawnXOffset=128.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=STM Target 25
MaxHealth=10.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=4.0
MaxRespawnDelay=4.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=0.1
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=0.1
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=-284.0
SpawnXOffset=256.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Weapon Profile]
Name=STM ADSable Semi-auto
Type=Hitscan
ShotsPerClick=1
DamagePerShot=10.0
KnockbackFactor=0.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=16.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=4
AmmoPerShot=1
ReloadTimeFromEmpty=0.8
ReloadTimeFromPartial=0.8
DamageFalloffStartDistance=1000000.0
DamageFalloffStopDistance=1000000.0
DamageAtMaxRange=10.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.1
HitSoundCooldown=0.1
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=STM While ADS
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.0
AimPunchCooldown=0.0
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=4
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=50
ADSFOVOverride=40.0
ADSFOVScale=Vertical (1:1)
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,0.0,0.0
SpreadSCA=1.0,1.0,0.0,0.0
SpreadMSA=1.0,1.0,0.0,0.0
SpreadMCA=1.0,1.0,0.0,0.0
SpreadSSH=1.0,1.0,0.0,0.0
SpreadSCH=1.0,1.0,0.0,0.0
SpreadMSH=1.0,1.0,0.0,0.0
SpreadMCH=1.0,1.0,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.1
TimeToRecoilReset=0.1
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=false
TrackVertical=false
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=true
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.0
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=STM While ADS
Type=Hitscan
ShotsPerClick=1
DamagePerShot=10.0
KnockbackFactor=0.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=1000000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=4
AmmoPerShot=1
ReloadTimeFromEmpty=0.8
ReloadTimeFromPartial=0.8
DamageFalloffStartDistance=1000000.0
DamageFalloffStopDistance=1000000.0
DamageAtMaxRange=10.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.000001
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.1
HitSoundCooldown=0.1
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.0
AimPunchCooldown=0.0
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=4
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=90.0
ADSFOVScale=Vertical (1:1)
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,0.0,0.0
SpreadSCA=1.0,1.0,0.0,0.0
SpreadMSA=1.0,1.0,0.0,0.0
SpreadMCA=1.0,1.0,0.0,0.0
SpreadSSH=1.0,1.0,0.0,0.0
SpreadSCH=1.0,1.0,0.0,0.0
SpreadMSH=1.0,1.0,0.0,0.0
SpreadMCH=1.0,1.0,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.1
TimeToRecoilReset=0.1
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=false
TrackVertical=false
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=true
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.0
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
128.000000 432.000000 272.000000
384.000000 432.000000 272.000000
384.000000 432.000000 192.000000
128.000000 432.000000 192.000000
128.000000 416.000000 272.000000
384.000000 416.000000 272.000000
384.000000 416.000000 192.000000
128.000000 416.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
112.000000 416.000000 272.000000
128.000000 416.000000 272.000000
128.000000 416.000000 192.000000
112.000000 416.000000 192.000000
112.000000 256.000000 272.000000
128.000000 256.000000 272.000000
128.000000 256.000000 192.000000
112.000000 256.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
384.000000 416.000000 272.000000
400.000000 416.000000 272.000000
400.000000 416.000000 192.000000
384.000000 416.000000 192.000000
384.000000 256.000000 272.000000
400.000000 256.000000 272.000000
400.000000 256.000000 192.000000
384.000000 256.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
128.000000 416.000000 288.000000
384.000000 416.000000 288.000000
384.000000 416.000000 272.000000
128.000000 416.000000 272.000000
128.000000 256.000000 288.000000
384.000000 256.000000 288.000000
384.000000 256.000000 272.000000
128.000000 256.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
128.000000 256.000000 272.000000
384.000000 256.000000 272.000000
384.000000 256.000000 192.000000
128.000000 256.000000 192.000000
128.000000 240.000000 272.000000
384.000000 240.000000 272.000000
384.000000 240.000000 192.000000
128.000000 240.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-256.000000 840.000000 192.000000
768.000000 840.000000 192.000000
768.000000 840.000000 176.000000
-256.000000 840.000000 176.000000
-256.000000 -184.000000 192.000000
768.000000 -184.000000 192.000000
768.000000 -184.000000 176.000000
-256.000000 -184.000000 176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 840.000000 4880.000000
768.000000 840.000000 4880.000000
768.000000 840.000000 4864.000000
-256.000000 840.000000 4864.000000
-256.000000 -184.000000 4880.000000
768.000000 -184.000000 4880.000000
768.000000 -184.000000 4864.000000
-256.000000 -184.000000 4864.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 856.000000 4864.000000
768.000000 856.000000 4864.000000
768.000000 856.000000 192.000000
-256.000000 856.000000 192.000000
-256.000000 840.000000 4864.000000
768.000000 840.000000 4864.000000
768.000000 840.000000 192.000000
-256.000000 840.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 840.000000 4864.000000
784.000000 840.000000 4864.000000
784.000000 840.000000 192.000000
768.000000 840.000000 192.000000
768.000000 -184.000000 4864.000000
784.000000 -184.000000 4864.000000
784.000000 -184.000000 192.000000
768.000000 -184.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-272.000000 840.000000 4864.000000
-256.000000 840.000000 4864.000000
-256.000000 840.000000 192.000000
-272.000000 840.000000 192.000000
-272.000000 -184.000000 4864.000000
-256.000000 -184.000000 4864.000000
-256.000000 -184.000000 192.000000
-272.000000 -184.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 -184.000000 4864.000000
768.000000 -184.000000 4864.000000
768.000000 -184.000000 192.000000
-256.000000 -184.000000 192.000000
-256.000000 -200.000000 4864.000000
768.000000 -200.000000 4864.000000
768.000000 -200.000000 192.000000
-256.000000 -200.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 256.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 328.000000 4352.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
c7cdd4a1295dd8ac07d91d71d25900553b26479a | afc50254b2af7f235fea22b2288edf5c48d24300 | /Scilab/Task_2/2.sce | f1ac9123bffb5f0bb5caee9f72a6b650dfcf7293 | [] | no_license | kartofun/ITMO | 323d0b993842d6b09a5560af5e59c83298b3fa20 | c5d69c6d2c9980ab7e79b32b3f7145f83d0299c9 | refs/heads/master | 2020-12-08T10:02:24.328398 | 2016-10-30T22:54:47 | 2016-10-30T22:54:47 | 66,733,126 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 430 | sce | 2.sce | clear();
// initial datas
angle = input("α:")*%pi/180;
velocity = input("v:");
g = 10;
// trajectory parameters
t_max = 2 * velocity * sin(angle) / g;
y_max = velocity^2 * sin(angle)^2 / (2 * g);
x_max = velocity * cos(angle) * t_max;
t = [0:t_max/100:t_max];
x = velocity*cos(angle)*t;
y = velocity*sin(angle)*t - g*t.^2/2;
disp("t_max: " + string(t_max), "y_max: " + string(y_max), "x_max: " + string(x_max));
plot(x, y);
|
8fae1213e347080bee34cdd743df4ac3ca4a0dab | c6ff8c80e0c7009b3257df2eb885e20072e0f658 | /Puzzles/ProyectEuler/Scilab/Problem1.sce | 4cb8907ae38e012f43b41860a62fb0ffb08fe2e0 | [] | no_license | TavoGLC/Competitions-And-Puzzles | b4e7f336ec5afeff6f1ebd4af3ca8593a41f0e85 | 737d324ccda13b351de1db0c385f6e1999b22516 | refs/heads/master | 2022-11-17T16:13:33.316882 | 2022-11-16T07:16:52 | 2022-11-16T07:16:52 | 165,334,176 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 309 | sce | Problem1.sce | clear
clc
function[remValue]=LocalReminder(xVal,yVal)
remValue=xVal-fix(xVal./yVal).*yVal
endfunction
container=0
for k=1:1:1000-1
cVal=k
if LocalReminder(cVal,3)==0 | LocalReminder(cVal,5)==0
container=container+cVal
end
end
disp(container)
|
96b824f43cafb4b754bbfa64095d146d31c98326 | beddf1628742741ed2519da24e58b108bec17eb8 | /PLSQL Collection Types/Associative Array.tst | 7160ab7123accd4f15387d37e3805595acf54cbe | [] | no_license | vadimartyushenko/OracleTutorial | fb6c463209c6dc2618282a875758794d6f357ba9 | c193a89f49aae87292c7468a491f2d51e02be092 | refs/heads/master | 2023-02-27T14:36:13.552656 | 2021-02-02T10:01:53 | 2021-02-02T10:01:53 | 278,528,537 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 456 | tst | Associative Array.tst | DECLARE
TYPE list_of_names_t IS TABLE OF students.name%TYPE
INDEX BY PLS_INTEGER;
happyfamily list_of_names_t;
l_row PLS_INTEGER;
BEGIN
happyfamily (2020202020) := 'Eli';
happyfamily (-15070) := 'Steven';
happyfamily (-90900) := 'Chris';
happyfamily (88) := 'Veva';
l_row := happyfamily.FIRST;
WHILE (l_row IS NOT NULL)
LOOP
DBMS_OUTPUT.put_line (happyfamily (l_row));
l_row := happyfamily.NEXT (l_row);
END LOOP;
END;
|
9cef26cc32ea24cfbc361d21e4ed9357e7f0a619 | 3fdbef4226f5b8cf3206c452750d4d9e60d57d77 | /plotSeno.sce | 6ad7b3426113153929fc77fc2c6c6bfcbb435d32 | [
"BSD-3-Clause"
] | permissive | OtacilioNeto/scilab-examples | 14bf80aff5ef8eb3754c345ade13ea6a7ef470c5 | d8f87c8a311d88db862b74da5878dadd6d09f6b1 | refs/heads/master | 2023-07-09T07:10:09.483942 | 2023-06-29T01:12:25 | 2023-06-29T01:12:25 | 126,159,372 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 565 | sce | plotSeno.sce | // Este é um exemplo de gráfico animado utilizando seno
funcprot(0);
function str=mydisplay2D(h)
pt = h.data;
str=msprintf('(%0.3f, %0.3f)', pt(1), pt(2));
endfunction
x=[0:0.01:2*%pi];
fx=sin(x);
scf(1);
clf(1);
plot(x, fx);
for i=1:size(x)(2)
e=gce();
e=e.children;
drawlater();
d1=datatipCreate(e(1), [x(i), fx(i)]);
d1.visible="off";
d1.font_size=6;
d1.orientation=1;
d1.box_mode=%T;
datatipSetDisplay(d1,"mydisplay2D");
drawnow();
d1.visible="on";
d.visible="off";
d = d1;
sleep(33);
end
|
4fc2737a6ec3d0186bd70ce77e376e3aa0cad197 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH6/EX6.8/example6_8.sce | 4018117e8d7cc62d03c3c5c50f243863efd3906a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 599 | sce | example6_8.sce |
//example 6.8
//calculate outflow hydrograph
clc;funcprot(0);
//given
I=[35 55 92 130 160 140]; //inflow(cumec/sec)
x=0.28;K=1.6; //studied value
t=6;
K=K*24; //in hours
co=(-K*x+0.5*t)/(K-K*x+0.5*t);
c1=(K*x+0.5*t)/(K-K*x+0.5*t);
c2=(K-K*x-0.5*t)/(K-K*x+0.5*t);
c=co+c1+c2;
//c=1; which implies (OK)
//from Muskingum equation
O(1)=35;
mprintf("outflow hydrograph:\n%f",O(1));
for i=2:6
p1(i)=co*I(i);
p2(i)=c1*I(i-1);
p3(i)=c2*O(i-1);
O(i)=p1(i)+p2(i)+p3(i);
O(i)=round(O(i)*100)/100;
mprintf("\n%f",O(i));
end
|
d8dfbfa6d93cb14bd572ea15ae343297b3a5a2aa | 63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa | /test/0024.tst | 48f319bd523cd4865f48d6d814835f58358305c5 | [] | no_license | fmeci/nfql-testing | e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c | 6b7d465b32fa50468e3694f63c803e3630c5187d | refs/heads/master | 2021-01-11T04:09:48.579127 | 2013-05-02T13:30:17 | 2013-05-02T13:30:17 | 71,239,280 | 0 | 0 | null | 2016-10-18T11:01:57 | 2016-10-18T11:01:55 | Python | UTF-8 | Scilab | false | false | 465 | tst | 0024.tst | spLittEr BfVPM {}
fILTEr EW { NOT f ( AC:B2E:aef::
, ::AE:F:E/0, ) = 5729 }
FiLtEr wY {not o }
tdxFc BRaNCh L -> N
gRoUPer nFOKDPI {MODUle Cp{ } AggREgAtE E ,BitOR(G.W) AS A ,sUm(qXQjxS.rD) as UkI ,bItOr(TK) AS A }
UNGROUper OPME { }
gROuPfilteR i {NoT ::Da8F:Cfd:4e:b:7:Ae5a = t }
MeRGER d { mOdUlE xD { bRAnchEs afbj NoT 2 > 9.4.1.141 } mODULE cTgW { BRaNcHES xfJ noT H ( ) } MoDuLE j { BranChES S, S } mODule Gl { branChES Gz, W } exporT F } |
0918bd66be7a69c0ef78010a714dab5f8a4c52a1 | cd33d80e77d439f6ccf245975860abfcea63edd4 | /2gisTestLinux/test1 1.tst | f181c24051780fbbb468e3a7486c962f390b4e45 | [] | no_license | fmalchemist92/2gisTestLinux | 253a81fdd707a369ba8a7210a8be89ef7e74e1d8 | 5f8c150d415cdcb30460c3dac792dd7d243db837 | refs/heads/master | 2020-09-17T00:49:16.537246 | 2019-11-28T13:26:26 | 2019-11-28T13:26:26 | 223,929,581 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 31 | tst | test1 1.tst | war
war,
,war
,war,
newar
warne |
9b5c23abbfa416daa87e195682e04fc61fbda9e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3705/CH10/EX10.1/Ex10_1.sce | d2637d4a7c2db3d5a2be1bf487fd6ac078cb8f57 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 793 | sce | Ex10_1.sce |
clear//
//Variable Declaration
Le=7 //Effective length in m
P=450 //Applied axial Load in kN
FOS=3 //Factor of safety
sigma_pl=200*10**6 //Stress allowable in Pa
E=200*10**9 //Youngs Modulus in Pa
end_cond=0.7 //End Condition factor to be multiplied
//Calculations
Pcr=P*FOS //Critical Load in kN
A=Pcr*sigma_pl**-1*10**9 //Area in mm^2
//Part 1
I1=10**15*(Pcr*Le**2)*(%pi**2*E)**-1 //Moment of Inertia Required in mm^4
//From table selecting appropriate Section W250x73
//Part 2
I2=10**15*(Pcr*end_cond**2*Le**2)*(%pi**2*E)**-1 //Moment of Inertia Required in mm^4
//From table selecting appropriate Section W200x52
//Lightest Section that meets these criterion is W250x58 section
//Result
printf("\n From the above computation we select W250x58 section")
|
7e9d8775d474af09de42943b8292b43d9d1ba7f7 | 39ae3a0860e66749f94b889f0c286e6903457911 | /.ipynb_checkpoints/pendulo simples-checkpoint.sce | 57d96068496c5f6f40a9693b9e76daacc1e29f03 | [] | no_license | IgorLim98/Projeto-REA | 1215a2705317add4fa6849ae00ae8adf25657519 | 67fcaae58e7c51154d1f8e43716b209baffecde9 | refs/heads/main | 2023-05-18T16:51:48.726045 | 2021-06-08T18:33:04 | 2021-06-08T18:33:04 | 362,553,236 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 779 | sce | pendulo simples-checkpoint.sce | // resolução de sistema de 2 equações representando o movimento de um pêndulo simples
clear,clc
// definindo o intervalo de tempo
t0 = input("informe o valor inicial do intervalo: ");
tn = input("informe o valor final do intervalo: ");
h = input("Informe o passo h: ");
t = t0:h:tn // criando o vetor intervalo de tempo
t = t' // apenas transpoe o vetor t
L = input("informe o comprimento do fio")
g= 9.8 //aceleração da gravidade
//condições iniciais
w1(1) = 0.785398163 // 45 graus em radianos
w2(1) = 0
for j = 2:length(t)
w1(j) = w1(j-1) + w2(j-1)*h
w2(j) = w2(j-1) -(g/L)*sin(w1(j-1))*h
end
//solução linear
function y = f(t)
y = 0.785398163*cos(sqrt(g/L)*t)
endfunction
plot(t,w2,'b', t, f, 'r')
legends(["Não Linear", "Linear"], opt = "lr")
|
83ea60ca4f689da4ced51d25911b2832459abf3c | 717ddeb7e700373742c617a95e25a2376565112c | /3424/CH1/EX1.2/Ex1_2.sce | 1f71e3a311f387ee916c6aad65e9781656a71ee5 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 238 | sce | Ex1_2.sce | clc
//Initialization of variables
P = 64.7*144 //Total Pressure lb/ft^2
R = 1716 // ft-lb/slug.R
T = 530 // F
// Calculations
D = P/(R*T)
//Results
printf("The air density obtained from the ideal gas law is %.4f slugs/ft^3",D)
|
50a8d37e73a84b7e86fe303fb7a5fb9f2ea9ae0c | ac1f8441b0319b4a391cd5a959bd3bb7988edfa7 | /data/news2015/news2015/SplitsNEWS15/EnHe/enhe.7.tst | f7a36ee1ae6f0c1a8089cd1b630b98a2b677987d | [
"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 | 28,389 | tst | enhe.7.tst | a b e b e א ב י ב י
a b e l א ב ל
a b i e א ב י
a d e n ע ד ן
a f g h a n i s t a n א פ ג נ ס י ט א ן
a f i a ע א פ י ה
a l b a n i a א ל ב נ י ה
a l d a i r א ל ד י י ר
a l f a r a z d a q א ל פ ר ז ד ק
a l m a s z a d e h א ל מ א ס ז א ד ה
a l t a א ל ט א
a l t a i א ל ט א י
a l z h e i m e r א ל ז ה א י מ ר
a m a l א מ ל
a m i r a א מ י ר ה
a m r a m ע מ ר ם
a n d e r א נ ד ר
a n d o n i א נ ד ו נ י
a n d r o n i c u s א נ ד ר ו נ י ק ו ס
a n g h e l א נ ג י ל
a n t a r ע נ ט ר
a n t a r c t i c א נ ט א ר ק ט י ק
a n t o n i n o א נ ט ו נ י נ ו
a p o l o א פ ו ל ו
a r a c t i n g i ע ר ק ט י נ ג י
a r a z i א ר ז י
a r c a א ר ק א
a r m a n d o א ר מ א נ ד ו
a r s e n א ר ס ן
a s h l e y א ש ל י
a s s a d א ס ד
a s t r o א ס ט ר ו
a t h l e t i c א ת ל ט י ק
a t l a n t i s א ט ל א נ ט י ס
a t o p i c א ט ו פ י ק
a u g s b u r g א ו ג ס ב ר ג
a u g u s t o א ו ג ו ס ט ו
a u r e l i u s א ו ר י ל י ו ס
a v a l o n א ב א ל ו ן
a v n i א ב נ י
a w a d ע ו ו א ד
a y a l a א י י ל ה
a y n ע י ן
a z i z ע ז י ז
b a a l b e k ב ע ל ב ק
b a b a y a r o ב א ב א י א ר ו
b a b i ב א ב י
b a c a u ב א ק א ו
b a h e r ב א ה ר
b a h i ב א ה י
b a i b a r s ב א י ב א ר ס
b a k h o u m ב א כ ו ם
b a l ב א ל
b a l e l ב א ל ל
b a l i g h ב א ל י ג
b a l j i c ב א ל י ט ש
b a l l m e r ב א ל מ ר
b a l l o t t a ב א ל ו ט א
b a n d a r a n a i k e ב א נ ד א ר א נ א י ק ה
b a n d o ב א נ ד ו
b a q i r ב א ק י ר
b a r a z i t e ב א ר א ז א י ט
b a r e n b o i m ב א ר י נ ב ו י ם
b a r n e a ב א ר נ י א
b a r r o s o ב א ר ו ס ו
b a s r i ב ס ר י
b a u e r ב א ו ו ר
b a z o o k a ב א ז ו ק א
b e a r z o t ב י ר ז ו ט
b e j b l ב י י ב ל
b e k ב ק
b e l l ב ל
b e l l e r i ב ל י ר י
b e n ב ן
b e n a z i r ב נ א ז י ר
b e n e ב נ י
b e n t ב נ ט
b e r g o m i ב י ר ג ו מ י
b e r n a l ב ר נ א ל
b e r o s s u s ב י ר ו ס ו ס
b e r r i ב ר י
b e s s o n ב ס ו ן
b i n ב י ן
b i r s k ב י ר ס ק
b j o r k m a n ב י ו ר ק מ א ן
b k s y ב ק ס י
b l a c k s t o n e ב ל א ק ס ט ו ן
b l a i r ב ל י י ר
b l a n c ב ל א נ ק
b l a z e k ב ל א ז י ק
b l e d e l ב ל ד ל
b l u m e n t h a l ב ל ו מ נ ת א ל
b o b ב ו ב
b o c o ב ו ק ו
b o o y ב ו י
b o r g e t t i ב ו ר ג י ט י
b o r l a u g ב ו ר ל ו ג
b o u m a ב ו מ א
b o u m e d i e n e ב ו מ ד י ן
b o u r d i e u ב ו ר ד י ו
b r i d g e ב ר י ד ג '
b r i d g e t ב ר י ג ' ט
b r n o ב ר נ ו
b r o c c h i ב ר ו ק י
b r o s n a n ב ר ו ס נ א ן
b u i n s k ב ו י נ ס ק
b u l e n t ב ו ל נ ט
b u n d y ב נ ד י
b u n r a k u ב ו נ ר א ק ו
b u n t i n g ב א נ ט י נ ג
b u z a u ב ו ז א ו
c . ק .
c a f u ק א פ ו
c a h i l l ק א ה י ל
c a l c u t t a ק א ל ק ו ט א
c a l d e r a ק א ל ד י ר א
c a l l a g h a n ק א ל א ג א ן
c a l o u s t e ק א ל ו ס ט
c a m u s ק א מ ו
c a n n e s ק א ן
c a r a c a l l a ק א ר א ק ל א
c a r d o ק א ר ד ו
c a r l e b a c h ק א ר ל י ב א ך
c a r t w r i g h t ק א ר ט ר א י ט
c a s t r o ק א ס ט ר ו
c a t a l a n i ק א ט א ל א נ י
c a u s i o ק א ו ז י ו
c e c i l i a ס י ס י ל י א
c e l e n t a n o צ ' ל נ ט א נ ו
c h a a b o ש ע ב ו
c h a d i d ש ד י ד
c h a e r u d d i n צ ' א ר ו ד י ן
c h a i d a r i ח א י ד א ר י
c h a m b e r s ש א מ ב י ר ס
c h e n e n e צ ' נ ן
c h e s t e r צ ' ס ט ר
c h e v r o l e t ש י ב ר ו ל י י
c h i c a g o ש י ק א ג ו
c h o p i n ש ו פ א ן
c h r i s t o p h e ק ר י ס ט ו ף
c l a r e n c e ק ל א ר נ ס
c l a u d e t t e ק ל ו ד ט
c l e o p a t r a ק ל י ו פ א ט ר א
c l e v e l a n d ק ל י ב ל א נ ד
c o c a r d ק ו ק א ר ד
c o c k b u r n ק ו ק ב ו ר ן
c o l b e r t ק ו ל ב ר ט
c o l f a x ק ו ל פ א ק ס
c o l v i n ק ו ל ו ו י ן
c o m a n e c i ק ו מ א נ צ ' י
c o m b a t ק מ ב א ט
c o m p t o n ק ו מ פ ט ו ן
c o m t e ק ו מ ט
c o n n e s ק ן
c o n o r ק ו נ ו ר
c o o l i d g e ק ו ל י ד ג '
c o r e y ק ו ר י
c o r n t h w a i t e ק ו ר נ ת ו י ט
c r i s t i a n ק ר י ס ט י א ן
c r i s t o f o r o ק ר י ס ט ו פ ו ר ו
c r o s s ק ר ו ס
c r o y d o n ק ר ו י ד ו ן
c u d i c i n i ק ו ד י צ ' י נ י
c u n e o ק ו נ י ו
d a m m e ד א ם
d a n i l o ד א נ י ל ו
d a n n y ד א נ י
d a r ד א ר
d a r a a ד ר ע א
d a r c i s ד א ר ס י ס
d a r i u s z ד א ר י ו ש
d a s s a u l t ד א ס ו ל ט
d e b r a ד י ב ר א
d e f o e ד י פ ו
d e g a u q u e ד י ג ו ק
d e j a n ד י ג ' א ן
d e l e u z e ד ל ו ז
d e m i s ד י מ י ס
d e r w a l l ד י ר ו א ל
d i a b a t e ד י א ב י י ט
d i a r r a ד י א ר א
d i b ד י ב
d i b a ד י ב א
d i c k e n s ד י ק נ ז
d i m o s c h a k i ד י מ ו ש א ק י
d j a l m a ג ' א ל מ א
d j i l a l i ג ' י ל א ל י
d l o u h y ד ל ו ה י
d m i t r i e v ד מ י ט ר י י ב
d o b s o n ד ו ב ס ו ן
d o c k x ד ו ק ס
d o d o m a ד ו ד ו מ א
d o l i n s k y ד ו ל י נ ס ק י
d o m a g k ד ו מ א ק
d o n i z e t t i ד ו נ י ז י ט י
d o n n a ד ו נ א
d o n o v a n ד ו נ ו ב א ן
d o o m ד ו ם
d o s s e n a ד ו ס י נ א
d o u a l a ד ו א ל א
d r a c o ד ר א ק ו
d r a g n e a ד ר א ג נ י א
d r i s s a ד ר י ס א
d u d k a ד ו ד ק א
d u n c a n ד נ ק א ן
d u p a s ד ו פ א ס
d u p r e e ד ו פ ר י
d u r k o v i c ד ר ק ו ב י ט ש
e l a c h i א ל ע ש י
e l e f t h e r i o s א ל י פ ת י ר י ו ס
e l f r i e d e א ל פ ר י ד י
e l l i s o n א ל י ס ו ן
e l m a l e h א ל מ א ל ח
e l t o n א ל ט ו ן
e n d e m o l א נ ד מ ו ל
e n t e b b e א נ ט ב ה
e r e t r i a א ר י ט ר י א
e r i c s o n א ר י ק ס ו ן
e s s e n א ס ן
e s t o n i a א ס ט ו נ י א
e u g e n e י ו ג ' י ן
e u g l e n a י ו ג ל י נ א
e u r o p a י ו ר ו פ א
e v a א י ב א
e v g e n y א י ב ג י נ י
e v r y t a n i a א ב ר י ט א נ י א
f a d l פ א ד ל
f a d l a n פ ד ל א ן
f a h a d פ ה ד
f a k r o u n פ ק ר ו ן
f a l t e r m e y e r פ א ל ט ר מ א י ר
f a t m i r פ א ט מ י ר
f a u l k פ ו ל ק
f a u r i s s o n פ ו ר י ס ו ן
f a u s t i n o פ ו ס ט י נ ו
f e d e r e r פ ד ר ר
f e d o r פ י ד ו ר
f e i n g o l d פ א י נ ג ו ל ד
f e r r e i r a פ י ר י י ר א
f i a s c o פ י א ס ק ו
f i n i d i פ י נ י ד י
f i n n a n פ י נ א ן
f l e t c h e r פ ל י ט ש י ר
f o n t a n a פ ו נ ט א נ א
f o r r e s t e r פ ו ר ס ט ר
f o r t u y n פ ו ר ט ו י ן
f o u r e s t פ ו ר י ס ט
f r a n c i n i פ ר א נ ש י נ י
f r a n c k פ ר א נ ק
f r a n k i e פ ר א נ ק י
f r a n t i s e k פ ר א נ ט י ס ק
f r a n z פ ר א נ ז
f r e d d y פ ר י ד י
f r e d r i k s s o n פ ר י ד ר י ק ס ו ן
f u l c i פ ו ל ק י
g a g a ג א ג א
g a j d ů s e k ג א י ד ו ס י ק
g a l l a ג א ל א
g a n j a v i ג א נ ג ' א ו י
g a n n ג א ן
g a r b a ג א ר ב א
g a r d e ג א ר ד
g a r d n e r ג א ר ד נ ר
g a r m e n d i a ג א ר מ נ ד י א
g a s c o i g n e ג א ס ק ו י ן
g a s p a r d ג א ס פ א ר
g a u t a m a ג ו ט א מ א
g a v r i i l ג א ב ר י ל
g e n n a d i ג י נ א ד י
g e r a l d ג ' ר א ל ד
g e s h e r ג ש ר
g h a s s a n ג ס א ן
g i a g n o n i ג ' א נ י ו נ י
g i b s o n ג י ב ס ו ן
g i l l e s p i e ג י ל י ס פ י
g i l l o ג י ל ו
g i o r g i ג י ו ר ג י
g l e i c k ג ל י ק
g l y n n ג ל י ן
g o d w i n s o n ג ו ד ו י נ ס ו ן
g o f m a n ג ו פ מ א ן
g o g h ג ו ג
g o l d i n g ג ו ל ד י נ ג
g o l g i ג ו ל ג י
g o l m o h a m m a d i ג ו ל מ ו ח מ ד י
g o m i s ג ו מ י ס
g o n n o h y o e ג ו נ ו ה י ו
g o r l i t z ג ו ר ל י ץ
g o s h ג ו ש
g o t o ג ו ט ו
g o t t f r i e d ג ו ט פ ר י ד
g r a e m e ג ר א ם
g r a n d e ג ר א נ ד
g r e n ג ר י ן
g r e t a ג ר י ט א
g r i m o n p o n ג ר י מ ו נ פ ו ן
g u a d e l o u p e ג ו א ד ל ו פ
g u a r n e r i ג ו א ר נ י י ר י
g u e r n s e y ג י ר נ ז י
g u e y e ג ו י י
g u i l l e r m o ג ו י ל י ר מ ו
g u o j o h n s e n ג ו ג ' ו נ ס ו ן
g u r s e l ג ו ר ס ל
g u t z k o w ג ו ט ס ק ו ב
g y u l a ג י ו ל א
h a a n ה א ן
h a a s ה א ס
h a d a d ח ד א ד
h a h n ה א ן
h a j d u k ה א י ד ו ק
h a k i k a r ה א ק י ק א ר
h a l ה א ל
h a l h u l ח ל ח ו ל
h a l l ה ו ל
h a l l s ה א ל ז
h a m a g u c h i ה א מ א ג ו צ ' י
h a m e d ח א מ ד
h a n a n i a ח נ א נ י א
h a n i ה א נ י
h a n n s ה א נ ס
h a p p e l ה א פ ל
h a r b i n ה א ר ב י ן
h a r g r e a v e s ה א ר ג ר י ב ז
h a r i ה א ר י
h a r v e y ה א ר ב י
h a r y a n a ה א ר י א נ א
h a s s a n ח ס ן
h a y a m i ה א י א מ י
h a y k e l ה א י ק ל
h e a t o n ה י ט ו ן
h e i n t j e ה א י ן
h e m i n g w a y ה מ י נ ג ו ו י
h e n d r i e ה י נ ד ר י
h e s s ה ס
h e s t e r ה ס ט ר
h e s t i a ה ס ט י א
h e u r e l h o ה ו ר י ל ה ו
h e y n c k e s ה י נ ק ס
h i d a l g o ה י ד א ל ג ו
h i e l e ה י ל י
h i j a b ח ' י ג א ב
h i k m e t ח י ק מ ט
h i l d i t c h ה י ל ד י ט ש
h i l l i n g d o n ה י ל י נ ג ד ו ן
h i n t e r m a i e r ה י נ ט ר מ א י ר
h i r o f u m i ה י ר ו פ ו מ י
h i r o s h i m a ה י ר ו ש י מ א
h o l g u i n ה ו ל ג ו י ן
h o l l e r i t h ה ו ל י ר י ת
h o m a i d a n ח ו מ י ד א ן
h o m n a b a d ה ו מ נ ב א ד
h o o d i a ה ו ד י א
h o o k e ה ו ק
h o r i z o n t e ה ו ר י ז ו נ ט י
h o s n i ח ו ס נ י
h o s s a m ח ו ס א ם
h o u l l i e r ה ו ל י י ה
h r a n t ה ר א נ ט
h r u b e s c h ה ר ו ב ש
h u m b e r t o ה ו מ ב י ר ט ו
h u n k e ה ו נ ק ה
h u n t ה א נ ט
h u s n i ח ו ס נ י
h u t c h i s o n ה א צ ' י ס ו ן
i d a h o א י ד א ה ו
i g a r a s h i א י ג א ר א ש י
i g n a c א י ג נ ץ
i n d i u m i i i א נ ד י ו מ י
i n m a r s a t א י נ מ א ר ס א ט
i r i n a א י ר י נ א
i r v i n e א י ר ב א י ן
i s a b e l l e א י ז א ב ל
i s h t a r א ש ט א ר
i v a n o v i c א י ב א נ ו ב י ט ש
i v a n o v o א י ב א נ ו ב ו
j a a s k e l a i n e n י א ס ק י ל א י נ ן
j a c m o t ג ' א ק מ ו ט
j a c q u e l i n e ג ' א ק ל י ן
j a h a n ג ' ה א ן
j a n u s z י א נ ו ש
j a r d e l ג ' א ר ד ל
j a r o s l a w י א ר ו ס ל ו
j a u r s ג ' א ו ר ס
j a v i e r ח א ב י י ר
j e f f e r s o n ג ' פ י ר ס ו ן
j e r o m e ג ' ר ו ם
j i g o r o ג ' י ג ו ר ו
j o a q u i n ג ' ו א ק י ן
j o c e l y n e ג ' ו ס ל י ן
j o e y ג ' ו י
j o h n n y ג ' ו נ י
j o l ג ' ו ל
j o r g ג ' ו ר ג
j o s ג ' ו ס
j o s c h k a י ו ש ק א
j o s e p h s ג ' ו ס י פ ז
j o y a ג ' ו י א
j u a n a ח ו א נ א
j u p p י ו פ
j u r g י ו ר ג
j u r o t a ג ' ו ר ו ט א
k a b i l ק א ב י ל
k a d a r ק א ד א ר
k a h w a j i ק ה ו ו ג ' י
k a i a f a s ק א י א פ א ס
k a k h i ק ק י
k a l a f ק א ל א ף
k a l l a ק א ל א
k a m e l ק א מ ל
k a m p f ק א מ פ ף
k a p a d z e ק א פ א ד ז ה
k a p o ק א פ ו
k a t a y a m a ק א ט א י א מ א
k a t i e ק י י ט י
k a t o n g o ק א ט ו נ ג ו
k a t z i r ק צ י ר
k a t z r i n ק צ ר י ן
k a z a n ק א ז א ן
k a z u h i k o ק א ז ו ה י ק ו
k e a n e ק י ן
k e a t o n ק י ט ו ן
k e a t s ק י ט ס
k e i ק י י
k e i j i ק י י ג ' י
k e k e t i ק ק י ט י
k e l l e y ק י ל י
k e n j i ק נ ג ' י
k e n t ק נ ט
k e r a l a ק י ר א ל א
k e r t e s z ק י ר ט י ז
k h a l a f ח ל ף
k h a s h o g g i ח א ש ו ג י
k h u w a y l i d ח ו א י ל ד
k i j u r o ק י ג ' ו ר ו
k i n g s t o n ק י נ ג ס ט ו ן
k i n n o c k ק י נ ו ק
k i n s e y ק י נ ז י
k i r i ק י ר י
k i r o v ק י ר ו ב
k i s s i n g e r ק י ס י נ ג ' ר
k i t t s ק י ט ס
k n i p p e r ק נ י פ ר
k n u t ק נ ו ט
k o l ק ל
k o l k a t a ק ל ק ט א
k o t o k o ק ו ט ו ק ו
k o y a m a d a ק ו י א מ א ד א
k o z y n k e v y c h ק ו ז י נ ק י ב י ט ש
k r i s h n a ק ר י ש נ א
k r i s t i n ק ר י ס ט י ן
k r o t o ק ר ו ט ו
k u r o d a ק ו ר ו ד א
k w a m e ק ו א מ י
k y l e ק א י ל
l a f u e n t e ל א פ ו י נ ט י
l a n c a s t e r ל א נ ק ס ט ר
l a n c e ל א נ ס
l a n e s e ל א נ י ז י
l a n g t o n ל א נ ג ט ו ן
l a r i j a n i ל א ר י ג ' א נ י
l a s z l o ל א ס ז ל ו
l a t i n s ל א ט י נ ז
l a u r i d s e n ל א ו ר י ד ס ן
l a z a r o ל א ז א ר ו
l e a r ל י ר
l e e k e n s ל י ק נ ז
l e g i a ל י ג י א
l e h m a n n ל י ה מ א ן
l e n ל ן
l e n z ל י נ ז
l e o ל י א ו
l e o n h a r d ל י ו נ ה א ר ד
l e p i n e ל י פ א י ן
l e u v e n ל ו ב י ן
l i e b e r m a n ל י ב ר מ א ן
l i m a s s o l ל י מ א ס ו ל
l i p t o n ל י פ ט ו ן
l i s a ל י ס א
l i t h u a n i a ל י ת ו א י נ י ה
l i v n i ל י ב נ י
l i z a ל י ז א
l j u b o m i r ל י ו ב ו מ י ר
l o c o ל ו ק ו
l o m e ל ו ם
l o r e n z o ל ו ר י נ ז ו
l o v e ל ו ב
l o w ל ו
l u b i t s c h ל ו ב י ט ש
l u o l ל ו א ל
l y o n n a i s ל י ו נ ה
m a a r o u f מ ע ר ו ף
m a a t h a i מ א ת א י
m a c k i n n o n מ א ק י נ ו ן
m a d e l u n g מ א ד ל ו נ ג
m a d o n o מ א ד ו נ ו
m a g a l h a e s מ א ג א ל ה א י ז
m a h m u d i מ ח מ ו ד י
m a i a מ א י א
m a j a l l i מ ג ' ל י
m a j e d מ ג ' ד
m a k i מ א ק י
m a l a t e s t a מ א ל א ט י ס ט א
m a l t a מ א ל ט א
m a n d a l a מ א נ ד א ל א
m a n z o n i מ א נ ז ו נ י
m a r c e l מ א ר ס ל
m a r c e l l מ א ר ס י ל
m a r c i a n מ א ר ק י א ן
m a r i c מ א ר י ק
m a r k o מ א ר ק ו
m a s c h e r a n o מ א ס ק י ר א נ ו
m a s l y o n k i n מ א ס ל י ו נ ק ן
m a s u d i מ א ס ו ד י
m a t s u d a מ א ט ס ו ד א
m a t s u i מ א ט ס ו י
m a v r o s מ א ב ר ו ס
m a x i m i l i e n מ א ק ס מ ל י א ן
m a y מ י י
m a y u m i מ א י ו מ י
m c a u l i f f e מ א ק א ו ל י ף
m c k e n n a מ א ק ק י נ א
m c q u e e n מ א ק ק ו י ן
m e c h n e r מ ק נ ר
m e h r d a d מ ה ר ד א ד
m e h r z a d מ ה ר ז א ד
m e j d i מ ג ' ד י
m e m p h i s מ מ פ י ס
m e n a מ נ א
m e n d e l מ נ ד ל
m e n g e l e מ נ ג ל ה
m e n s a h מ י נ ס א ה
m e r מ ר
m e s h a l מ ש ע ל
m e s s a l i מ ס א ל י
m e s s i מ ס י
m e t g o d מ י ט ג ו ד
m e t z e l d e r מ צ ל ד ר
m e y r i e u מ י ר י ו
m i d o r i k a w a מ י ד ו ר י ק א ו א
m i e s c h e r מ י ש ר
m i h a i l מ י ה א י ל
m i h a l y מ י ה א ל י
m i k h a i l מ י כ א י ל
m i k h e i l מ י כ א י ל
m i l a d מ י ל א ד
m i l i b a n d מ י ל י ב א נ ד
m i l n e r מ י ל נ ר
m i l o s מ י ל ו ש
m i l o u d מ י ל ו ד
m i n g y i מ י נ ג י
m i n n i e מ י נ י
m i r i מ י ר י
m i s s a o u i מ י ס א ו י
m i t c h e l l מ י ט ש ל
m i t i c מ י ט י ט ש
m i t t a l מ י ט א ל
m i t t e r r a n d מ י ט י ר א ן
m l a đ a n מ ל א ד י א ן
m o d e s t e מ ו ד י ס ט י
m o e n e e b מ ו נ י ב
m o h a j e r a n i מ ו ה א ג ' ר א נ י
m o l d o v a מ ו ל ד ו ב א
m o m c i l o מ ו מ ס י ל ו
m o m m s e n מ ו מ ס ן
m o n i z מ ו נ י ז
m o n t c o u r t מ ו נ ט ק ו ר ט
m o n t e מ ו נ ט י
m o n t e s s o r i מ ו נ ט י ס ו ר י
m o n t e z מ ו נ ט י ז
m o r e l l o מ ו ר י ל ו
m o r i t a מ ו ר י ט א
m o r p h y מ ו ר פ י
m o r r e l l מ ו ר ל
m o r t y מ ו ר ט י
m o s l e m מ ו ס ל ם
m o s l e y מ ו ז ל י
m o t o k o מ ו ט ו ק ו
m o u m o u n i מ ו מ ו נ י
m o u n i r מ ו נ י ר
m o z a m b i q u e מ ו ז א מ ב י ק
m s a r r i מ ס א ר י
m u b a r a k מ ו ב א ר ק
m u d i n g a y i מ ו ד י נ ג א י
m u k e r j i מ ו ק ר ג ' י
m u l i l o מ ו ל י ל ו
m u n i t i s מ ו נ א י ט י ס
m u n k מ נ ק
m u n t y a n מ ו נ ט י א ן
m u r a t מ ו ר א ט
m u r i e l מ ו ר י א ל
m u t r a n מ ו ט ר א ן
m y a n m a r מ י א נ מ א ר
n a d a v נ ד ב
n a d i n e נ י י ד י ן
n a e i m נ ע י ם
n a g a l a n d נ א ג א ל א נ ד
n a h u a t l נ א ה ו א ט ל
n a i k נ א י ק
n a m b u נ א מ ב ו
n a o h i r o נ א ו ה י ר ו
n a r r i m a n נ א ר י מ א ן
n a t a l i e נ א ט א ל י
n a t o נ א ט ו
n a v a r r e נ א ב א ר
n a v e h נ ו ה
n a z i f נ ז י ף
n e g r i l a נ ג ר י ל א
n e i l נ י ל
n e s s i m נ ס י ם
n e t a f i m נ ט פ י ם
n e u v i l l e נ ו ב י ל
n i c e p h o r e נ י ס י פ ו ר
n i c k e l b a c k נ י ק י ל ב ק
n i k o נ י ק ו
n i k o l a o u נ י ק ו ל א ו
n i n o נ י נ ו
n i r נ י ר
n o n a c o s a n e נ ו נ א ק ו ס י י ן
n o o r נ ו ר
n o r m a n d y נ ו ר מ א נ ד י
n o r r i e נ ו ר י
n o s t r a d a m u s נ ו ס ט ר א ד א מ ו ס
n u s s b a u m נ ו ס ב א ו ם
n w a n k w o נ ו א נ ק ו
n y a t h i נ י א ת י
o c t o n i o n א ו ק ט ו נ י ו ן
o f a k i m א ו פ ק י ם
o f r a ע פ ר ה
o g o g o א ו ג ו ג ו
o s a n o א ו ס א נ ו
o s m a n ע ו ס מ א ן
o s t r a v a א ו ס ט ר א ב א
o s v a l d o א ו ס ב א ל ד ו
o u a r z a z a t e ו ר ז א ז א ת
p a l a h n i u k פ א ל א נ י ו ק
p a l m i n t e r i פ א ל מ י נ ט ר י
p a n a פ א נ א
p a n a d o l פ א נ א ד ו ל
p a r a c e t a m o l פ א ר א ס י ט א מ ו ל
p a r o פ א ר ו
p a r t i z a n פ א ר ט י ז א ן
p a s a n s k i פ א ס א נ ס ק י
p a s s a r e l l a פ א ס א ר י ל א
p a t e r s o n פ א ט ר ס ו ן
p a t i l פ א ט י ל
p a t t a y a פ א ט א י א
p a u l פ ו ל
p a y n e פ י י ן
p e n n a c פ נ א ק
p e r l פ י ר ל
p e r r y פ י ר י
p i a t r a פ י א ט ר א
p i a u i פ י א ו י
p i c a s s o פ י ק א ס ו
p i c c a d i l l y פ י ק א ד י ל י
p i c k e t t פ י ק י ט
p i n e l פ י נ י ל
p i n k פ י נ ק
p i n o c h e t פ י נ ו ש ה
p i s t o i a פ י ס ט ו י א
p i s z c z e k פ י ז ש י ק
p o c h e t t i n o פ ו ט ש י ט י נ ו
p o l a t פ ו ל א ט
p o l l a r d פ ו ל א ר ד
p o l l o c k פ ו ל ו ק
p o p e פ ו פ
p o s e i d o n פ ו ס י ד ו ן
p o s t i g a פ ו ס ט י ג א
p o t i פ ו ט י
p o u r p i r a r פ ו ר פ י ר א ר
p r i s c u s פ ר י ס ק ו ס
p r o u s t פ ר ו ס ט
p u c h n e r פ ו כ נ ר
q a s r ק ס ר
q u a r e s m a ק ו א ר י ס מ א
q u s a y ק ו ס י י
r a b u e l ר א ב ו א ל
r a e f ר א א ף
r a g e h ר א ג ח
r a h e l ר א ח י ל
r a h m a t i ר א מ א ט י
r a j a b ר ג ' ב
r a m a ר א מ א
r a m a m u r t h y ר א מ א מ ו ר ת י
r a m i r e s ר א מ י ר ס
r a p o p o r t ר א פ ו פ ו ר ט
r a s a ר א ס א
r a s h a d ר ש א ד
r a s h e d ר א ש ד
r a s h o m o n ר א ש ו מ ו ן
r a t k o ר א ט ק ו
r a t s ר א ט ס
r e e d ר י ד
r e i c h s ר י ק ס
r e i d ר י ד
r e i n e r ר א י נ ר
r e i t s c h ר א י ט ש
r e n a t e ר י נ א ט
r e p e t t o ר י פ י ט ו
r e t o ר י ט ו
r e u v e n ר א ו ב ן
r i c c a r d o ר י ק א ר ד ו
r i c h a r d s o n ר י צ ' א ר ד ס ו ן
r i e d l ר י ד ל
r i j k a a r d ר י ק א ר ד
r i t t ר י ט
r i z a l ר י ז א ל
r o b b i e ר ו ב י
r o b e s o n ר ו ב ס ו ן
r o b i n h o ר ו ב י נ ה ו
r o b r e d o ר ו ב ר י ד ו
r o c c h i ר ו ק י
r o l e d e r ר ו ל ד ר
r o l f f ר ו ל ף
r o m e o ר ו מ י ו
r o s e n b l u m ר ו ז נ ב ל ו ם
r o s h ר ו ש
r o t a n a ר ו ט א נ א
r o t h s c h i l d ר ו ת ש י ל ד
r o u d o l p h e ר ו ד ו ל ף
r o u s s e a u ר ו ס ו
r o w a n ר ו א ן
r u b e n ר ו ב ן
r u l f o ר ו ל פ ו
r u m s f e l d ר א מ ס פ י ל ד
r y o m a ר י ו מ א
s a b a ס א ב א
s a b a t ס א ב א ט
s a d a k o ס א ד א ק ו
s a d l e r ס א ד ל ר
s a f i n ס א פ י ן
s a k i m o t o ס א ק י מ ו ט ו
s a l a h ס ל א ח
s a l m e e n ס א ל מ י ן
s a l v a d o r e ס א ל ב א ד ו ר
s a m i r ס מ י ר
s a m s u n ס א מ ס ו ן
s a n a e ס א נ י י
s a n g e r ס א נ ג ר
s a n g w e n i ס א נ ג ו י נ י
s a o ס א ו
s a r g o n ס ר ג ו ן
s a r i t ש ר י ת
s a s a k i ס א ס א ק י
s a s s a r i ס א ס א ר י
s a t o ס א ט ו
s a t y a g r a h a ס א ט י א ג ר א ה א
s a u d i ס ע ו ד י
s a u e r ס א ו ו ר
s c h n a b e l ש נ א ב ל
s c h u t z ש ו ץ
s c h w e i t z e r ש ו י י צ ר
s e b ס ב
s e d i k ס ד י ק
s e e l d r a y e r s ס י ל ד ר א י ר ס
s e i f ס י ף
s e k u l a r a c ס י ק ו ל א ר א ק
s e l e n a ס י ל י נ א
s e l m a n ס ל מ א ן
s e m a k ס י מ א ק
s e m s h o v ס י מ ש ו ב
s e n d e r o s ס י נ ד י ר ו ס
s e r a o ס י ר א ו
s e r v e t u s ס י ר ב י ט ו ס
s e v e r u s ס י ב י ר ו ס
s e y m o u r ס י מ ו ר
s h a a t h ש ע ת
s h a b a b ש ב א ב
s h a b a n i ש א ב א נ י
s h a h d ש א ד
s h a m i r ש מ י ר
s h a o b o ש א ו ב ו
s h a q u i l l e ש א ק י ל
s h a r i r ש ר י ר
s h e a r i m ש י א ר י ם
s h e r a t o n ש ר א ט ו ן
s h i l p a ש י ל פ א
s h i m l a ש י מ ל א
s h i m o n ש מ ע ו ן
s h i n ש י ן
s h i s h a k l i ש י ש א ק ל י
s h o c k l e y ש ו ק ל י
s h o t o k a n ש ו ט ו ק א ן
s h r i k i ש ר י ק י
s h u l a m i t ש ו ל מ י ת
s h u n s u k e ש ו נ ס ו ק י
s i d ס י ד
s i k o r s k y ס י ק ו ר ס ק י
s i l k w o o d ס י ל ק ו ו ד
s i l v a ס י ל ב א
s i l v e r s t o n e ס י ל ב ר ס ט ו ן
s i m o n o v ס י מ ו נ ו ב
s i p h a n d o n ס י פ א נ ד ו ן
s i s t o ס י ס ט ו
s i v o k ס י ב ו ק
s k o p j e ס ק ו פ י י
s m e r t i n ס מ י ר ט י ן
s m i l j a n i c ס מ י ל י א נ י ט ש
s n o o p ס נ ו פ
s n y d e r ס נ א י ד ר
s o d d y ס ו ד י
s o d e r b e r g h ס ו ד ר ב י ר ג
s o l a n o ס ו ל א נ ו
s o p h i a ס ו פ י א
s o r r e n t i n o ס ו ר נ ט י נ ו
s o u s a ס ו ז א
s o y e r ס ו י ר
s p a l l a n z a n i ס פ א ל א נ ז א נ י
s p e e r ס פ י ר
s p i k e ס פ א י ק
s p r i n z a k ש פ ר י נ צ ק
s t a n k o v i c ס ט א נ ק ו ב י ט ש
s t a r r ס ט א ר
s t a u n t o n ס ט ו נ ט ו ן
s t e k e l e n b u r g ס ט י ק ל נ ב י ר ג
s t e p h a n e ס ט י פ א ן
s t e r n ס ט י ר ן
s t e w a r t ס ט י ו א ר ט
s t i f ס ט י ף
s t i l i y a n ס ט י ל י א ן
s t i p e ס ט י פ
s t r a n z l ס ט ר א נ ז ל
s t r o e s s n e r ס ט ר ו ס נ ר
s t u r t ס ט ו ר ט
s u ס ו
s u a n ס ו א ן
s u c r a l o s e ס ו ק ר ל ו ס
s u d o k u ס ו ד ו ק ו
s u k h u m i ס ו כ ו מ י
s u l i m a n ס ו ל י מ א ן
s u l t a n ס ו ל ט א ן
s u u ס ו
s y a g r i u s ס י א ג ר י ו ס
s y l v a ס י ל ב א
s z a r m a c h ז א ר מ א ך
t a h i r ט א ה י ר
t a j u r a ט א ג ' ו ר א
t a j w i d ת ג ' ו ו י ד
t a k a y a ט א ק א י א
t a k e s h i ט א ק י ש י
t a m i l ט א מ י ל
t a n i t ט א נ י ט
t a r a n t i n o ט א ר א נ ט י נ ו
t a r e k ט א ר ק
t a s h i r o ט א ש י ר ו
t a t l i n ט א ט ל י ן
t b i l i s i ט ב י ל י ס י
t c h o m o g o ט ש ו מ ו ג ו
t e i m u r a z ט א י מ ו ר א ז
t h a n t ת א נ ט
t h e o ת י ו
t h e s e u s ת י ס י ו ס
t h i j s s e n ת י ס י ן
t i g e r ט א י ג ר
t i j a n i ט י ג ' א נ י
t i n a ט י נ א
t i n i a n ט י נ י א ן
t i t t a ט י ט א
t o b i a s ט ו ב א י א ס
t o b i n ט ו ב י ן
t o d d ט ו ד
t o m a s o ט ו מ א ס ו
t o m m y ט ו מ י
t o m o u ט ו מ ו
t o n e t t o ט ו נ י ט ו
t r a b e l s i ט ר א ב ל ס י
t r a i a n ט ר א י א ן
t r a i l ט ר י י ל
t r a v i s ט ר א ב י ס
t r e v o r ט ר י ב ו ר
t r o s s e r o ט ר ו ס י ר ו
t r u j i l l o ט ר ו ג ' י ל ו
t r y g v e ט ר י ג ב י
t s e p o צ י פ ו
t u c c i ט ו צ ' י
t u d o r ט ו ד ו ר
t u g a y ט ו ג א י
t u g e n d h a t ט ו ג נ ד ה א ט
t u n i s ט ו נ י ס
t u o ט ו
t u r n h a m ט ו ר נ ה א ם
t u r u n e n ט ו ר ו נ י ן
t u s s e a u ט ו ס ו
u g y e n י ו ג י י ן
u h r l a u א ו ה ר ל א ו
u m m א ו ם
v a n e s s a ו א נ י ס א
v e c c h i o ו י ק צ ' י ו
v e n i c e ו נ י ס
v e n t e r ו י נ ט ר
v e r c i n g e t o r i x ו ר ס י נ ג י ט ו ר י ק ס
v e r m e s ו ר מ ס
v e s e l i n o v i c ו י ס י ל י נ ו ב י ט ש
v e y r o n ו י י ר ו ן
v i c e l i c h ו י ס ל י ט ש
v i c t o r i a n o ו י ק ט ו ר י א נ ו
v i k i n g ו א י ק י נ ג
v i t o ו י ט ו
v i t o r ו י ט ו ר
v i v ו י ו
v l a o v i c ו ו ל א ו ו י ט ש
v o o r d e c k e r s ו ו ר ד י ק ר ז
v o r e a d i s ו ו ר י א ד י ס
w a k a m o t o ו א ק א מ ו ט ו
w a n g ו א נ ג
w a s k e ו א ס ק י
w a t h i q ו א ת י ק
w a x m a n ו א ק ס מ א ן
w e g e n e r ו ו ג נ ר
w e i k a r t ו י י ק א ר ט
w e s a m ו ו ס א ם
w e s t e r m a n n ו י ס ט ר מ א ן
w e s t m o r e l a n d ו ס ט מ ו ר ל א נ ד
w i l a n d e r ו י ל נ ד ר
w i l k i e ו י ל ק י
w i l s h e r e ו י ל ש י ר
w i n o n a ו י נ ו נ א
w i s e m a n ו א י ז מ א ן
w i s l a n d e r ו ס ל נ ד ר
w o l e ו ו ל
w o m e ו ו מ י
w o o l l e y ו ו ל י
x e n o p h a n e s ק ס י נ ו פ א נ י ס
x t r a א ק ס ט ר א
y a c i n e י א ס י ן
y a h e l י א ה י ל
y a k i n י א ק י ן
y a m a m o t o י א מ א מ ו ט ו
y o k o י ו ק ו
y o m i י ו מ י
y o s h i n o י ו ש י נ ו
y o s s i י ו ס י
y o u n i s י ו נ ס
y o u n u s י ו נ ו ס
y u k i k o י ו ק י ק ו
y u n l o n g י ו נ ל ו נ ג
z a h a ז ה א
z a i d a n ז א י ד ן
z a k a t ז ק א ת
z a k i r ז א ק י ר
z a m b r o t t a ז א מ ב ר ו ט א
z a n a ז א נ א
z e k i ז ק י
z e r m a t t ז ר מ א ט
z e t l i t z ז י ט ל י ץ
z h e n y u ז ' י נ י ו
z i t k a ז י ט ק א
z o e l l i c k ז ו ל י ק
z u m a ז ו מ א
z u r a w s k i ז ו ר א ו ס ק י
|
2e4d0237e26854a0667f9dbe8ac66b805ec3f85f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH8/EX8.13/exa_8_13.sce | f4df44b9a1eee3e51faa194fa108703fc235e9d5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 172 | sce | exa_8_13.sce | // Exa 8.13
clc;
clear;
close;
// Given data
f=2000;// in Hz
T=1/f;// in sec
D=0.2;
PulseDuration= D*T;// in sec
disp(PulseDuration*10^3,"Pulse duration in ms")
|
16a836081fc93710b62d9722e0579d7969e8f283 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3756/CH6/EX6.2/Ex6_2.sce | d47c323e83f775b41fcdc0d199f6ab9b2ac17020 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 228 | sce | Ex6_2.sce | clc
//
//
//
//Variable declaration
W=(3.14/3) //Angular frequency in radian
//Calculations
t=((3.14)/(3*W))
//Result
printf("\n The time taken to move from one end of its path to 0.025m from mean position is %i sec",t)
|
d7d6a3f35084012ea6fa1d10068679b31ebc7b35 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1466/CH7/EX7.7/7_7.sce | 704dbb22f1714e43db402ae4e0dbe7b26a1ee19a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 243 | sce | 7_7.sce |
clc
//initialisation of variables
Th=100+20//ft
g=32.2
k1=1.875
k2=9.14
pi=22/7
r=0.25
//CALCULATIONS
k=1/(2*g)
k3=(k+(k1/(k2*k2)))
v=sqrt(Th/k3)
dis=pi*r*r*v/4
//results
printf (' Discharge through pipe= %.2f ft^3/sec ',dis)
|
c3d249074b421500cf778f5f1408d038e6b279b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH8/EX8.2/ex_8_2.sce | 519e0a1e843c305706b0639295cbafaae43e6898 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 544 | sce | ex_8_2.sce | ////Ex 8.2
clc;
clear;
close;
format('v',9);
fo=450;//kHz
deltafL=240;//kHz(+ve & -ve)
deltafC=40;//kHz(+ve & -ve)
Vplus=8*fo/deltafL;//V
//Vplus=(VCC-(-VEE))/2 but |VCC|=|-VEE|
VCC=Vplus;//V
VEE=Vplus;//V
disp(VCC,"For the design |VCC|=|-VEE| in Volt");
RT=4.7;//kohm(Assumed for design)
R=3.6;//kohm
CT=0.3/(RT*1000*fo*1000)*10^12;//pF
C=1/((deltafC*10^3)^2*(2*%pi*R*10^3)/(deltafL*1000))*10^9;//nF
disp(RT,"Value of RT(kohm)");
disp(CT,"Value of CT(pF)");
disp(C,"Value of C(nF)");
//Answer in the book is not accurate.
|
ba740cf5189131be007706c0311d1bc8ba64ac94 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1448/CH4/EX4.1.e/E4_1.sce | 555753bad91b0dc85cbc5ef60bc2a8d745662f00 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sce | E4_1.sce | clc
//Initialization of variables
Power=100 //W
time=1 //day
T=20 //C
//calculations
timeins=1*24*3600
qsurr=timeins*Power
Ssurr=qsurr/(T+273)
//results
printf('Heat transferred to surroundings = %d J',qsurr)
printf('\n Entropy production per day = %.2e J/k',Ssurr)
|
63ba32c3a8245bc918ad5951873c7de0b6d8268f | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/ofemdemo/ref_elt_test.sci | 7eefdf4d291c2a6c2513998668e6c11803b135f9 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,409 | sci | ref_elt_test.sci | function [Eig_ref,Load_ref,Mat_ref] = ref_elt_test()
// Elts tests with SDT5.1
st=makecell([1 20],'q4p','q8p','t3p','t6p',...
'hexa8','hexa20','penta6','penta15',...
'tetra4','tetra10','tria3','tria6',...
'quad4','quadb','quad9','bar1','flui4',...
'flui6','flui8','beam1');
// missing: mitc4, , beam3, , celas , q5p, q9a ,'dktp',
Eig_ref = cell(28,2);
Load_ref = cell(28,2);
Mat_ref = cell(28,2);
Eig_ref(:,1)=makecell([28 1],...
'[model,def]=q4p(''testeig_0'');',...
'[model,def]=q4p(''testeig_1'');',...
'[model,def]=q4p(''testeig_2'');',...
'[model,def]=q8p(''testeig_0'');',...
'[model,def]=q8p(''testeig_1'');',...
'[model,def]=q8p(''testeig_2'');',...
'[model,def]=t3p(''testeig_0'');',...
'[model,def]=t3p(''testeig_1'');',...
'[model,def]=t3p(''testeig_2'');',...
'[model,def]=t6p(''testeig_0'');',...
'[model,def]=t6p(''testeig_1'');',...
'[model,def]=t6p(''testeig_2'');',...
'[model,def]=hexa8(''testeig'');',...
'[model,def]=hexa20(''testeig'');',...
'[model,def]=penta6(''testeig'');',...
'[model,def]=penta15(''testeig'');',...
'[model,def]=tetra4(''testeig'');',...
'[model,def]=tetra10(''testeig'');',...
'[model,def]=tria3(''testeig'');',...
'[model,def]=tria6(''testeig'');',...
'[model,def]=quad4(''testeig'');',...
'[model,def]=quadb(''testeig'');',...
'[model,def]=quad9(''testeig'');',...
'[model,def]=bar1(''testeig'');',...
'[model,def]=flui4(''testeig'');',...
'[model,def]=flui6(''testeig'');',...
'[model,def]=flui8(''testeig'');',...
'[model,def]=beam1(''testeig'');');
Eig_ref(:,2)=makecell([28 1],... // 5 first frequencies
[4.290291308356445e+002 1.029468636991385e+003 1.231617703770857e+003 ...
2.243426897960302e+003 2.623009060845864e+003],...
[4.290291308356445e+002 1.029468636991385e+003 1.231617703770857e+003 ...
2.243426897960302e+003 2.623009060845864e+003],...
[4.290291308356445e+002 1.029468636991385e+003 1.231617703770857e+003 ...
2.243426897960302e+003 2.623009060845864e+003],...
[4.142427945181728e+002 1.026807469917128e+003 1.220302297159396e+003 ...
2.184430056407337e+003 2.611028503198020e+003],...
[4.142427945181728e+002 1.026807469917128e+003 1.220302297159396e+003 ...
2.184430056407337e+003 2.611028503198020e+003],...
[4.142427945181728e+002 1.026807469917128e+003 1.220302297159396e+003 ...
2.184430056407337e+003 2.611028503198020e+003],...
[4.320148932501105e+002 1.033057952114468e+003 1.277577946848218e+003 ...
2.442645647088966e+003 2.726387923881986e+003],...
[4.320148932501105e+002 1.033057952114468e+003 1.277577946848218e+003 ...
2.442645647088966e+003 2.726387923881986e+003],...
[4.320148932501105e+002 1.033057952114468e+003 1.277577946848218e+003 ...
2.442645647088966e+003 2.726387923881986e+003],...
[4.142816502365818e+002 1.026830998717464e+003 1.221167244359760e+003 ...
2.187347803907836e+003 2.613847849438219e+003],...
[4.142816502365818e+002 1.026830998717464e+003 1.221167244359760e+003 ...
2.187347803907836e+003 2.613847849438219e+003],...
[4.142816502365818e+002 1.026830998717464e+003 1.221167244359760e+003 ...
2.187347803907836e+003 2.613847849438219e+003],...
[2.369319824534588e+002 4.432948705364461e+002 4.441539199366413e+002 ...
1.059701830480197e+003 1.333458699398739e+003],...
[2.004436785427672e+002 4.123575690606958e+002 4.221692869112317e+002 ...
1.034895970117207e+003 1.062616448050249e+003],...
[2.260921850720664e+002 4.449924104312450e+002 4.825413497306591e+002 ...
1.046548578081568e+003 1.263647980847690e+003],...
[1.991636602919263e+002 4.105826286332820e+002 4.196672118522673e+002 ...
1.032662583673201e+003 1.052152322938195e+003],...
[2.330521328094594e+002 4.325465214140272e+002 4.878360332092557e+002 ...
1.026220614384172e+003 1.152063012952191e+003],...
[2.330521328094594e+002 4.325465214140272e+002 4.878360332092557e+002 ...
1.026220614384172e+003 1.152063012952191e+003],...
[6.280657063801294e+000 1.791959245732961e+001 4.994096519040203e+001 ...
6.352001684174435e+001 7.733618138128993e+001],...
'error tria6',...
[6.346021934348538e+000 1.829010649608402e+001 5.729190849598430e+001 ...
6.998476082340356e+001 8.617272848630813e+001],...
[6.279510125347771e+000 1.777159655733382e+001 4.945133978014305e+001 ...
6.374728975055643e+001 7.693504846998744e+001],...
'error quad9',...
[9.462764552681526e+001 3.305515251003152e+002 3.874255569492929e+002 ...
6.663461886157351e+002 1.020312082890833e+003],...
[1.128916716519793e+003 1.395677509724138e+003 1.395677509724340e+003 ...
1.633056209189190e+003 2.108740158389825e+003],...
[1.151386858774883e+003 1.385892352561525e+003 1.385892352561538e+003 ...
1.592071311791083e+003 2.015182364725996e+003],...
[1.137891192596138e+003 1.382144188142123e+003 1.382144188142126e+003 ...
1.589291901269960e+003 2.091034987589612e+003],...
[5.500532920947419e+000 1.692434891456080e+001 4.268331361883924e+001 ...
6.374319296752912e+001 8.902604694376785e+001]);
Load_ref(:,1)=makecell([28 1],...
'[model,def]=q4p(''testload_0'');',...
'[model,def]=q4p(''testload_1'');',...
'[model,def]=q4p(''testload_2'');',...
'[model,def]=q8p(''testload_0'');',...
'[model,def]=q8p(''testload_1'');',...
'[model,def]=q8p(''testload_2'');',...
'[model,def]=t3p(''testload_0'');',...
'[model,def]=t3p(''testload_1'');',...
'[model,def]=t3p(''testload_2'');',...
'[model,def]=t6p(''testload_0'');',...
'[model,def]=t6p(''testload_1'');',...
'[model,def]=t6p(''testload_2'');',...
'[model,def]=hexa8(''testload'');',...
'[model,def]=hexa20(''testload'');',...
'[model,def]=penta6(''testload'');',...
'[model,def]=penta15(''testload'');',...
'[model,def]=tetra4(''testload'');',...
'[model,def]=tetra10(''testload'');',...
'[model,def]=tria3(''testload'');',...
'[model,def]=tria6(''testload'');',...
'[model,def]=quad4(''testload'');',...
'[model,def]=quadb(''testload'');',...
'[model,def]=quad9(''testload'');',...
'[model,def]=bar1(''testload'');',...
'[model,def]=flui4(''testload'');',...
'[model,def]=flui6(''testload'');',...
'[model,def]=flui8(''testload'');',...
'[model,def]=beam1(''testload'');');
Load_ref(:,2)=makecell([28 1],... // norm of rhs (sum)
[3.726779962499650e-001],...
[3.726779962499650e-001],...
[3.726779962499650e-001],...
[2.991758226185836e-001],...
[2.991758226185836e-001],...
[1.449654510422562e+000],...
[3.726779962499650e-001],...
[3.726779962499650e-001],...
[3.726779962499650e-001],...
[2.991758226185836e-001],...
[2.991758226185836e-001],...
[2.991758226185836e-001],...
[4.599044706869436e-001],...
[7.428519928701292e-001],...
[3.612545291956079e-001],...
[4.207492800372717e-001],...
[2.905776397546601e-001],...
[2.905776397546601e-001],...
[2.069139172231414e+000],...
'error tria6',...
[2.067877117114162e+000],...
'error quadb',...
'error quad9',...
[1.108655439013544e-004],...
'error flui4',...
'error flui6',...
'error flui8',...
[7.499033124746842e-005]);
Mat_ref(:,1)=makecell([28 1],...
'k=q4p(''testmat_0'');',...
'k=q4p(''testmat_1'');',...
'k=q4p(''testmat_2'');',...
'k=q8p(''testmat_0'');',...
'k=q8p(''testmat_1'');',...
'k=q8p(''testmat_2'');',...
'k=t3p(''testmat_0'');',...
'k=t3p(''testmat_1'');',...
'k=t3p(''testmat_2'');',...
'k=t6p(''testmat_0'');',...
'k=t6p(''testmat_1'');',...
'k=t6p(''testmat_2'');',...
'k=hexa8(''testmat'');',...
'k=hexa20(''testmat'');',...
'k=penta6(''testmat'');',...
'k=penta15(''testmat'');',...
'k=tetra4(''testmat'');',...
'k=tetra10(''testmat'');',...
'k=tria3(''testmat'');',...
'k=tria6(''testmat'');',...
'k=quad4(''testmat'');',...
'k=quadb(''testmat'');',...
'k=quad9(''testmat'');',...
'k=bar1(''testmat'');',...
'k=flui4(''testmat'');',...
'k=flui6(''testmat'');',...
'k=flui8(''testmat'');',...
'k=beam1(''testmat'');');
Mat_ref(:,2)=makecell([28 1],... // First value of svd for K and M
[3.102772713667655e+011 1.950000000000000e+003],...
[3.800561035200435e+011 1.950000000000000e+003],...
[1.612161301022247e+012 4.084070449666731e+003],...
[9.823923670078130e+011 4.216337962957679e+003],...
[1.162316292536501e+012 4.216337962957679e+003],...
[6.010527746475593e+012 1.373459194188233e+004],...
[3.560133726144175e+011 1.300000000000000e+003],...
[4.368459515211880e+011 1.300000000000000e+003],...
[1.272147901026296e+012 2.722713633111154e+003],...
[1.063787654405139e+012 1.392418991184935e+003],...
[1.265663701554579e+012 1.392418991184935e+003],...
[4.092164186367988e+012 3.199395317077768e+003],...
[2.441860355956611e+011 9.749999527819462e+002],...
[6.330222443973812e+011 3.965718244950989e+003],...
[2.430028333362581e+011 6.500000042119781e+002],...
[8.514963709996585e+011 1.671081632270233e+003],...
[1.859383657182347e+011 3.250000096857548e+002],...
[4.307001902768686e+011 3.403025592105917e+002],...
[3.560133726154119e+009 1.381337170886616e+001],...
'error',...
[2.937062937062937e+009 1.950000000000000e+001],...
[5.798967689221895e+009 1.508165308406692e+001],...
'error',...
[1.319468914507713e+012 1.225221134900020e+004],...
[9.958122890254858e-004 3.281073683617672e-011],...
[6.763038603641406e-004 3.390173746379251e-011],...
[5.000000000000000e-004 5.555555555555552e-011],...
[8.017844029046270e+003 4.200000000000000e+012]); // beam1 new prop
if 1==2
for j1=1:length(Mat_ref)
if iscell(Mat_ref(j1,2).entries)
[max(svd(Mat_ref(j1,2).entries(1))) max(svd(Mat_ref(j1,2).entries(2)))]
else
'error'
end
end
end //1==2
|
613972caa43068a7bd7dec64f45a5b47dc20af0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH2/EX2.38/2_38.sce | 571e98e71274fd82eeb62d9b3d5d4045504af141 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 725 | sce | 2_38.sce | clc,clear
printf('Example 2.38\n\n')
V=250, N_1=1000
I_L1=25
R_a=0.2, R_sh=250 //armature and shunt field resistance
V_brush= 1 //voltage drop due to brushes
I_sh1 = V/R_sh
I_a1= I_L1 - I_sh1
E_b1= V- I_a1*R_a - 2 *V_brush
//when loaded
I_L2=50
I_sh2=I_sh1 //as flux weakensby armature reaction,shunt field current remains same
I_a2= I_L2 - I_sh2
E_b2= V- I_a2*R_a - 2 *V_brush
phi2_by_phi1= 1- (3/100) //weakens by 3 percent
N_2= N_1*(E_b2/E_b1)/ phi2_by_phi1 //N (prop.) E_b/phi
printf('New speed = %.3f rpm',N_2)
T_1= E_b1*I_a1/(2*%pi*N_1/60)
T_2= E_b2*I_a2/(2*%pi*N_2/60)
printf('\nTorque before field weakening = %.4f N-m',T_1)
printf('\nTorque after field weakening = %.4f N-m',T_2)
|
ccec26dc98f312d18c398eb831b94358e13f5110 | 584105ff5b87869494a42f632079668e4c3f82de | /wrapppers/cvMaximum.sci | 1cac6eb7b321adb7c4f8db9351c76acef1432d36 | [] | no_license | kevgeo/FOSSEE-Computer-Vision | 0ceb1aafb800580498ea7d79982003714d88fb48 | 9ca5ceae56d11d81a178a9dafddc809238e412ba | refs/heads/master | 2021-01-17T21:11:31.309967 | 2016-08-01T14:45:40 | 2016-08-01T14:45:40 | 63,127,286 | 6 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,008 | sci | cvMaximum.sci | //*********************************************************************//
// Author : Asmita Bhar, Kevin George
//*********************************************************************//
function varargout = cvMaximum(image, varargin)
// Finds maximum values in an input
//
// Calling Sequence
// [val ind] = cvMaximum(image);
// [val ind] = cvMaximum(image, name, value,...);
// val = cvMaximum(image, name, value, ...);
// ind = cvMaximum(image, name, value, ...);
//
// Parameters
// image : Input image matrix
// ValueOutputPort (Optional) : This property is set to true to output the minimum value. Default : true.
// IndexOutputPort (Optional) : This property is set to true to output the index of the minimum value. Default : true.
// Dimension (Output) : Dimension along which the function operates - Row, Column, All or Custom. Default : All
// CustomDimension (Optional) : The integer dimension over which the function calculates the maximum. This value cannot exceed the number of dimensions in input. It applies only when 'Dimension' property is set to 'Custom'. Default : 1
//
// Description
// The function calculates the maximum value in a given image matrix.
//
// Examples
// //Load an image
// I = imread('peppers.png');
// //Calculate the maximum (default dimension is 'All')
// [val ind] = cvMaximum(I);
// //Calculate the maximum when dimension is 'Row' and IndexOutputPort is set to false
// val = cvMaximum(I,'ValueOutputPort','false','Dimension','Row');
//
// Authors
// Asmita Bhar
// Kevin George
//
[lhs,rhs] = argn(0);
if rhs<1 then
error(msprintf("Not enough input arguments"));
end
if rhs>13 then
error(msprintf("Too many input arguments"));
end
if lhs>2 then
error(msprintf("Too many output arguments"));
end
[iRows iCols]=size(image(1))
iChannels = size(image)
valueOutputPort = 'true';
indexOutputPort = 'true';
dimension = 'All';
customDimension = 1;
roiProcessing = 'false';
flag1=0;
i=1;
while(i<rhs-1)
if strcmpi(varargin(i),'ValueOutputPort')==0 then
valueOutputPort = varargin(i+1)
if strcmpi(valueOutputPort,"true") & strcmpi(valueOutputPort,"false") then
error(msprintf(" wrong input argument #%d,ValidityOutputPort not matched",i))
end
i=i+2;
elseif strcmpi(varargin(i),'IndexOutputPort')==0 then
indexOutputPort = varargin(i+1)
if strcmpi(indexOutputPort,"true") & strcmpi(indexOutputPort,"false") then
error(msprintf(" wrong input argument #%d, IndexOutputPort not matched",i))
end
i=i+2;
elseif strcmpi(varargin(i),'Dimension')==0 then
dimension = varargin(i+1)
if strcmpi(dimension,"Column") & strcmpi(dimension,"Row") &strcmpi(dimension,"All") & strcmpi(dimension,"Custom") then
error(msprintf(" wrong input argument #%d, Dimension not matched",i))
end
i=i+2;
elseif strcmpi(varargin(i),'CustomDimension')==0 then
customDimension = varargin(i+1)
flag1=1;
i=i+2;
elseif strcmpi(varargin(i), 'ROIProcessing')==0 then
roiProcessing = varargin(i+1)
if(roiProcessing=='true') then
c = varargin(i+2);
r = varargin(i+3);
i=i+4;
else
i=i+2;
end
end
end
if (~strcmpi(valueOutputPort,'false') & ~strcmpi(indexOutputPort,'false'))
error(msprintf("Both cannot be false at the same time"));
end
if (strcmpi(dimension,'Custom') & (flag1==1))
error(msprintf("The CustomDimension property is not relevant in this configuration"));
end
if (strcmpi(dimension,"All") & strcmpi(roiProcessing,'true'))
error(msprintf("ROI Property is not relevant in this configuration"));
end
if(customDimension<1)
error(msprintf("CustomDimension must be greater than or equal to 1"));
end
if(iChannels==1) then
if(customDimension>2)
error(msprintf("CustomDimension cannot be greater than the dimension of the input."));
end
elseif(iChannels==3) then
if(customDimension>3)
error(msprintf("CustomDimension cannot be greater than the dimension of the input."));
end
end
if(roiProcessing=='false') then
if (dimension=='All') then
if(iChannels==1) then
[val ind] = max(image(1))
ind(1) = 1;
elseif (iChannels==3) then
val1 = max(image(1))
val2 = max(image(2))
val3 = max(image(3))
if (val1>=val2) & (val1>=val3) then
[val ind] = max(image(1))
ind(3) = 1
elseif (val2>=val1) & (val2>=val3) then
[val ind] = max(image(2))
ind(3) = 2
else
[val ind] = max(image(3))
ind(3) = 3
end
end
t = ind(1)
ind(1) = ind(2)
ind(2) = t
end
if (dimension=='Row') then
if(iChannels==1) then
[val ind] = max(image(1),'c');
elseif(iChannels==3) then
[val1 ind1] = max(image(1),'c');
[val2 ind2] = max(image(2),'c');
[val3 ind3] = max(image(3),'c');
val(:,:,1) = val1;
val(:,:,2) = val2;
val(:,:,3) = val3;
ind(:,:,1) = ind1;
ind(:,:,2) = ind2;
ind(:,:,3) = ind3;
end
end
if (dimension=='Column') then
if(iChannels==1) then
[val ind] = max(image(1),'r');
elseif(iChannels==3) then
[val1 ind1] = max(image(1),'r');
[val2 ind2] = max(image(2),'r');
[val3 ind3] = max(image(3),'r');
val(:,:,1) = val1;
val(:,:,2) = val2;
val(:,:,3) = val3;
ind(:,:,1) = ind1;
ind(:,:,2) = ind2;
ind(:,:,3) = ind3;
end
end
if (dimension=='Custom') then
if(iChannels==1) then
if(customDimension==1) then
[val ind] = max(image(1),'r');
elseif(customDimension==2) then
[val ind] = max(image(1),'c');
end
elseif(iChannels==3) then
if(customDimension==1) then
[val1 ind1] = max(image(1),'r');
[val2 ind2] = max(image(2),'r');
[val3 ind3] = max(image(3),'r');
val(:,:,1) = val1;
val(:,:,2) = val2;
val(:,:,3) = val3;
ind(:,:,1) = ind1;
ind(:,:,2) = ind2;
ind(:,:,3) = ind3;
elseif(customDimension==2) then
[val1 ind1] = max(image(1),'c');
[val2 ind2] = max(image(2),'c');
[val3 ind3] = max(image(3),'c');
val(:,:,1) = val1;
val(:,:,2) = val2;
val(:,:,3) = val3;
ind(:,:,1) = ind1;
ind(:,:,2) = ind2;
ind(:,:,3) = ind3;
elseif(customDimension==3) then
a = image(1);
b = image(2);
c = image(3);
for i=1:iRows
for j=1:iCols
val(i,j)= max([a(i,j) b(i,j) c(i,j)]);
if(val(i,j)==a(i,j)) then
ind(i,j)=1;
elseif(val(i,j)==b(i,j)) then
ind(i,j)=2;
else
ind(i,j)=3;
end
end
end
end
end
end
end
if(roiProcessing=='true') then
I2 = roipoly(image,c,r);
out = I2;
output = find(out>0);
[rows cols] = size(out);
if(iChannels==1)
ROI = zeros(iRows,iCols);
for i=1:cols
ROI(output(i)) = image(1)(output(i));
end
elseif(iChannels==3)
ROI1 = zeros(iRows,iCols);
ROI2 = zeros(iRows,iCols);
ROI3 = zeros(iRows,iCols);
for i=1:cols
ROI1(output(i)) = image(1)(output(i));
ROI2(output(i)) = image(2)(output(i));
ROI3(output(i)) = image(3)(output(i));
end
ROI = list(ROI1,ROI2,ROI3);
end
if (dimension=='All') then
if(iChannels==1) then
a=ROI;
[val ind] = max(a(find(a>0)));
//ind(1) = 1;
elseif (iChannels==3) then
a=ROI(1);
b=ROI(2);
c=ROI(3);
val1 = max(a(find(a>0)));
val2 = max(b(find(b>0)));
val3 = max(c(find(c>0)));
if (val1>=val2) & (val1>=val3) then
[val ind] = max(ROI(1))
//ind(3) = 1
elseif (val2>=val1) & (val2>=val3) then
[val ind] = max(ROI(2))
//ind(3) = 2
else
[val ind] = max(ROI(3))
//ind(3) = 3
end
end
//t = ind(1)
//ind(1) = ind(2)
//ind(2) = t
end
end
if (~strcmpi(valueOutputPort,'true') & ~strcmpi(indexOutputPort,'true')) then
varargout = list(val,ind);
elseif (~strcmpi(valueOutputPort,'true') & ~strcmpi(indexOutputPort,'false')) then
varargout = val
elseif (~strcmpi(indexOutputPort,'true') & ~strcmpi(valueOutputPort,'false')) then
varargout = ind
end
endfunction
|
daa79768f370ee668c9b5cfa675be27b638577da | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH4/EX4.14/Example_4_14.sce | 5ca5b7612f63a1d8718f48e070e2caf9f3f083ad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sce | Example_4_14.sce | //Example 4.14 10 life Insurance policies in a sample of 200 taken out of 50,000 were found to be insured for less than Rs 500
clc;
clear;
N=50000;
n=200;
p=10/200;
q=1-p;
S_E=sqrt(p*q/(n))*sqrt((N-n)/(N-1));
disp((p-1.96*S_E)*N,"and",(p+1.96*S_E)*N,"The number of each policies lies between ",(p-1.96*S_E),"to",(p+1.96*S_E),"The required 95% confidence limits for population proportion P are ");
|
e75d0145acf57cd46a098d9382cfc167e0ab845d | 676ffceabdfe022b6381807def2ea401302430ac | /library/Demos/MultiRegions/Tests/Deriv3D_Homo2D.tst | c344548592b6c99c85dce639c62a4f59904d069f | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 856 | tst | Deriv3D_Homo2D.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>Testing 3D homogeneous 2D derivatives</description>
<executable>Deriv3DHomo2D</executable>
<parameters>Deriv3D_Homo2D.xml</parameters>
<files>
<file description="Session File">Deriv3D_Homo2D.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="dudx" tolerance="1e-7">3.05768e-14</value>
<value variable="dvdy" tolerance="1e-7">0</value>
<value variable="dwdz" tolerance="1e-7">0</value>
</metric>
<metric type="Linf" id="2">
<value variable="dudx" tolerance="1e-7">1.42109e-14</value>
<value variable="dvdy" tolerance="1e-7">1.11022e-16</value>
<value variable="dwdz" tolerance="1e-7">1.11022e-16</value>
</metric>
</metrics>
</test>
|
490a77552458021bd63c845854d6b128f476c50e | 8bc1ab9f1d4165ad25962a8bb841b4e0cc161537 | /finalproject/test/PD.TST | a1d91645ec4dd27a556a71f946bb8e2c58f0cc11 | [] | no_license | hyeonjang/scheme-simulation | 95779f08da760d726106ce403709f217d5a4a008 | 45190c9a30ddf8d646500060e75f7e6d14157ecd | refs/heads/master | 2023-01-07T05:14:31.351706 | 2020-11-19T15:57:18 | 2020-11-19T15:57:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,092 | tst | PD.TST | OK
[28] (load "mbase/pd.m")
Model of type atomic-models with name PD made.
Processor of type simulators with name S:PD made.
OK
[29] (send pd inject 'in '(g1 (1 2 3 4 5 6 7 8 9 10 11 12 13 14 15)))
state s =
state s = (3 BUSY (G1 (1 2 3 4 5 6 7 8 9 10 11 12 13 14 15)) 3)state s = ()()
[30] (send pd inject 'in '(g2 (1 2 3 4 5 6 7 8 9 10 11 12 13 14 15)))
state s =
state s = (3 BUSY (G1 (1 2 3 4 5 6 7 8 9 10 11 12 13 14 15)) 3)state s = ()()
[31] (send pd output?)
output y = output y = OUT (G1 (1 2 3 4 5) (6 7 8
9 10) (11 12 13 14 15))#(((|#!STRUCTURE| . CONTENT)) OUT (G1 (1 2 3 4 5) (6 7 8 9 10) (11 12 13 14 15)))
[32] (send pd int-transition)
state s =
state s = (INF PASSIVE (G1 (1 2 3 4 5) (6 7 8 9 10) (11 12 13 14 15)) 3)state s = ()()
[33] (transcript-off)
|
8614bbb425b7ba10d273d0ad7306053c3ca950d5 | 717ddeb7e700373742c617a95e25a2376565112c | /3044/CH5/EX5.4/Ex5_4.sce | 1f217e7235a9e34c468e651a3428463a1a7fdfee | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 748 | sce | Ex5_4.sce | // Variable Declaration
// Calculation
// (A) between 0.87 and 1.28
// p1 = p( at 1.28 ) - p( at 0.87 )
p1 = 0.8997 - 0.8078 // probability between 0.87 and 1.28
// (B) between -0.34 and 0.62
// p2 = p( at 0.62 ) - p( at -0.34 )
p2 = 0.7324 - 0.3669 // probability between -0.34 and 0.62
// (C) greater than 0.85
// p3 = 1 - p( at 0.85 )
p3 = 1 - 0.8023 // probability greater than 0.85
// (D) greater than -0.65
// p4 = 1 - p( at -0.65 )
p4 = 1 - 0.2578 // probability greater than -0.65
// Result
printf ( "probability 0.87<x1.28 : %.4f",p1)
printf ( "probability -0.34<x<0.62 : %.4f",p2)
printf ( "probability x>0.85 : %.4f",p3)
printf ( "probability x> (-0.65) : %.4f",p4)
|
bea73442cb06f0286d560bb93aa61a0667912bcb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3136/CH2/EX2.3/Ex2_3.sce | 15e5c64e6281077d4d467fbcbae20ef6e9120bd3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | sce | Ex2_3.sce | clear all; clc;
//This numerical is Ex 2_3,page 19.
// This numerical is used an example to teach conversion factors
rho=0.85*62.4
p=50//in psi
g=32.2
disp("Since pressure is the product of density,gravitaional accelaration and head, we can convert pressure in psi to head in ft using suitable conversion factors.")
H=p*144/( (rho/32.2)*32.2)
printf("The value of head H is given by %0.1f lb/ft^2/((slug/ft^3)*(ft/s^2))",H)
printf("\nThus the value of H is equal to %0.1f ft",H)
|
7ca06fd7acf1546eb34e0f6ed048f80935f982b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1085/CH3/EX3.17/ex3_17.sce | db871aa9344db12e4718ab75a5ca88ab618231dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 736 | sce | ex3_17.sce | //Exam:3.17
clc;
clear;
close;
N_a1=(1/2)+1+(1/2);//Number of diameters of atom along (110) direction
a=3.61*10^(-7);//lattice constant of copper in mm
L_d1=2^(1/2)*a;//length of the face diagonal in case of (110) direction
p_110=N_a1/L_d1;//linear atomic density along (110) of copper crystal lattice(in atoms/mm)
N_a2=(1/2)+(1/2);//Number of diameters of atom along (111) direction
L_d2=3^(1/2)*a;//length of the face diagonal in case of (111) direction
p_111=N_a2/L_d2;//linear atomic density along (110) of copper crystal lattice(in atoms/mm)
disp(p_110,'linear atomic density along (110) of copper crystal lattice(in atoms/mm)=');
disp(p_111,'linear atomic density along (111) of copper crystal lattice(in atoms/mm)='); |
05d0d270fa42d9e8bef44ee3059afda778b235df | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3.1/Unix-Windows/scilab-2.3/macros/percent/%srr.sci | 6104df771cac6316aeea21bf9ad1d207e64a2f4c | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 200 | sci | %srr.sci | function f=%srr(m,f)
// %srr(m,r) <=> m/f constant/rational
//!
if prod(size(f(2)))<>1 then f=m*invr(f),return,end
[l,c]=size(m);
f=simp(tlist(['r','num','den','dt'],m*f(3),ones(l,c)*f(2),f(4)))
|
4e2e48ddd9f0023395f3e0ff579505ad6db5a0a2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3176/CH6/EX6.6/Ex6_6.sce | 851ca7c89fd751f43b9966223733e5abbaaca436 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,340 | sce | Ex6_6.sce | //Ex6_6 :
//Color Coding of Multi Spectral Images.
// Version : Scilab 5.4.1
// Operating System : Window-xp, Window-7
//Toolbox: Image Processing Design 8.3.1-1
//Toolbox: SIVP 0.5.3.1-2
//Reference book name : Digital Image Processing
//book author: Rafael C. Gonzalez and Richard E. Woods
clc;
close;
clear;
xdel(winsid())//to close all currently open figure(s).
gray1=imresize(imread("Ex6_6_1.tif"),0.5);
gray2=imresize(imread("Ex6_6_2.tif"),0.5);
gray3=imresize(imread("Ex6_6_3.tif"),0.5);
gray4=imresize(imread("Ex6_6_4.tif"),0.5);
figure,ShowImage(gray1,'Gray Image');
title('Visible RED Band Component');
figure,ShowImage(gray2,'Gray Image');
title('Visible GREEN Band Component');
figure,ShowImage(gray3,'Gray Image');
title('Visible BLUE Band Component');
figure,ShowImage(gray4,'Gray Image');
title('Near Infrared Band Image');
temp(:,:,1)=gray1; //Visible RED Band Component
temp(:,:,2)=gray2; //Visible GREEN Band Component
temp(:,:,3)=gray3; //Visible BLUE Band Component
figure,ShowColorImage(temp,'Color Image');
title('Color Composite Image');
temp1(:,:,1)=gray4; //Near Infrared Band Component
temp1(:,:,2)=gray2; //Visible GREEN Band Component
temp1(:,:,3)=gray3; //Visible BLUE Band Component
figure,ShowColorImage(temp1,'Color Image');
title('Color Composite Image');
|
76a5692a4ed0dfc3ee4f31b2a7eb7e7338853796 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1652/CH18/EX18.1/18_1.sce | 8f3895fe8e4d40a59220f6b203c42f9bef452e11 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sce | 18_1.sce | clc
//Initialization of variables
V1=0.284 //cm^3 /g
V2=1.43 //cm^3 /g
P1=142.4 //mm
P2=760 //mm
//calculations
z=(1/V1 - 1/V2)/(1/P1 - 1/P2)
invVm=1/V2 - z/P2
Vm=1/invVm
//results
printf("Volume = %.1f cm^3/g",Vm)
//The answer in the textbook is a bit different due to rounding off error.
|
e24869de8fc91d71e5b9f0258cda89d5afce198a | 1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08 | /Scilab/SparamToolBox/SparamToolbox/v1.1/x86_64/src/c/loader.sce | c9236fe8ed9896be28957ccea5cf6ef183194ea8 | [] | no_license | lrayzman/SI-Scripts | 5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d | 9ab161c6deff2a27c9da906e37aa68964fabb036 | refs/heads/master | 2020-09-25T16:23:23.389526 | 2020-02-09T02:13:46 | 2020-02-09T02:13:46 | 66,975,754 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 805 | sce | loader.sce | // This file is released under the 3-clause BSD license. See COPYING-BSD.
// Generated by builder.sce : Please, do not edit this file
// ----------------------------------------------------------------------------
//
if ~win64() then
warning(_("This module requires a Windows x64 platform."));
return
end
//
write_tchstn_path = get_absolute_file_path('loader.sce');
//
// ulink previous function with same name
[bOK, ilib] = c_link('write_tchstn');
if bOK then
ulink(ilib);
end
//
link(write_tchstn_path + filesep() + 'liberr_codes' + getdynlibext());
link(write_tchstn_path + 'libwrite_tchstn' + getdynlibext(), ['write_tchstn'],'c');
// remove temp. variables on stack
clear write_tchstn_path;
clear bOK;
clear ilib;
// ----------------------------------------------------------------------------
|
736832c568a1903847a10452794e02431b1a815f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3701/CH8/EX8.4/Ex8_4.sce | 7d1ce900ecd032b094b3c2d8bec6b43597b5a446 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 485 | sce | Ex8_4.sce | ////Given
E=9 //Kinetic energy of a particle in ev
v0=10 //ev
E1=5 //ev
E2=15
E3=10 //ev
//calculation
//
R=((sqrt(E2)-(sqrt(E2-v0)))/(sqrt(E2)+(sqrt(E2-v0))))**2
T=1-R
//Result
printf("\n (a) E1 < vo, therefore R=1, T=0")
printf("\n (b) reflection coefficient R= %0.3f \n transmission coefficient T= %0.3f ",R,T)
printf("\n (c) E3=v0, therefore R=1 , T=0")
|
3288b1c959c43b446039efd7a0095f52c19faa48 | 449d555969bfd7befe906877abab098c6e63a0e8 | /75/CH1/EX1.10/ex_10.sce | c615d14953804e3c45ad5f65a2b741d33f28c94f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 730 | sce | ex_10.sce | // PG (25)
// Consider solving ax^2 + b*x + c =
// Consider a polynomial y = x^2 - 26*x + 1 = 0
x = poly(0,"x");
y = x^2 - 26*x + 1
p = roots(y)
ra1 = p(2,1)
ra2 = p(1,1)
// Using the standard quadratic formula for finding roots,
rt1 = (-(-26)+sqrt((-26)^2 - 4*1*1))/(2*1)
rt2 = (-(-26)-sqrt((-26)^2 - 4*1*1))/(2*1)
// Relative error
rel1 = (ra1-rt1)/ra1
rel2 = (ra2-rt2)/ra2
// The significant errors have been lost in the subtraction ra2 = xa - ya.
// The accuracy in ra2 is much less.
// To calculate ra2 accurately, we use:
rt2 = ((13-sqrt(168))*(13+sqrt(168)))/(1*(13+sqrt(168)))
// Now, rt2 is nearly equal to ra2. So, by exact calculations, we will now get a much better rel2.
|
05e8a8796d2f86568af4b8315ee5803ba728c462 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH3/EX3.12/Chapter3_Example12.sce | 45af2d1101b213e5eed322c9b368afa3a1a0cb15 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,058 | sce | Chapter3_Example12.sce | //Chapter-3, Example 3.12, Page 67
//=============================================================================
clc
clear
//INPUT DATA
L1=0.125;//Thickness of fireclay layer in m
L2=0.5;//Thickness of red brick layer in m
T=[1100,50];//Temperatures at inside and outside the furnaces in degree C
k1=0.533;//Thermal conductivity of fireclay in W/m.K
k2=0.7;//Thermal conductivity of red brick in W/m.K
//CALCULATIONS
R1=(L1/k1);//Resistance of fireclay per unit area in K/W
R2=(L2/k2);//Resistance of red brick per unit area in K/W
R=R1+R2;//Total resistance in K/W
q=(T(1)-T(2))/R;//Heat transfer in W/m^2
T2= T(1)-(q*R1);//Temperature in degree C
T3=T(2)+(q*R2*0.5);//Temperature at the interface between the two layers in degree C
km=0.113+(0.00023*((T2+T3)/2));//Mean thermal conductivity in W/m.K
x=((T2-T3)/q)*km;//Thickness of diatomite in m
//OUTPUT
mprintf('Amount of heat loss is %3.1f W/m^2 \n Thickness of diatomite is %3.4f m',q,x )
//=================================END OF PROGRAM==============================
|
b27f8ef03941b86e632d56a8772de8084357fc96 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH6/EX6.8/Ex6_8.sce | f1fcc6f3f7b75d93fa175f193892f232f82d4f4e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 741 | sce | Ex6_8.sce |
// Ex6_8
clc;
// Given:
mU=236.04533;
mU1=236.045733;
mU2=235.043933;
mY=94.912;
mSb=136.91782;
mn=1.0087;
Na=6.02*10^23;
// Solution:
E1=(mU-mY-mSb-4*mn)*931; // Fission Energy in MeV
printf("The fission energy in MeV is = %f",E1)
r1=((mY)^0.33333);
r2=((mSb)^0.33333);
E2=(39*51*4.8*4.8*10^-20)/(1.5*10^-13*(r1+r2)*1.6*10^-6);// Barrier energy in MeV
printf("\n The barrier energy in MeV is = %f",E2)
E3=E2-E1;// Activation Energy in MeV
printf("\n The activation energy in MeV is = %f",E3)
// Note : There is discrepancy in the final answer.
E4=(mU2+mn-mU1)*931; // Fission Energy in MeV
printf("\n The fission by thermal neutrons is not possible since excitation energy %f is less than activation energy.",E4)
|
1aeccde9b381bd4e8a30d2edb327135ccbccb851 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2465/CH3/EX3.12/Example_12.sce | 8e01cce4686b9d4c7d0a34abbfb0e843744ffa26 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | sce | Example_12.sce | //Chapter-3,Example 12,Page 60
clc;
close;
t_half =6.13 //half life of Ac(222)
t= 10 //time period
amnt=1/10^(t*0.693/(2.303*t_half))
printf('the amount of the substance left is %.4f ',amnt)
|
59f9502a9ff57f528c06fc19ae28cefba302a43b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH18/EX18.14w/18_14w.sce | b8f235c0c74ed64ba87beb72834c9861c25eea57 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 370 | sce | 18_14w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 18.14w
//calculation of angle of rotation of the mirror in given setup
//given data
mu=1.5; //refractive index of convex lens
A=4; //angle of prism (in degree)
//calculation
delta=(mu-1)*A
disp(delta,'the mirror should be rotated by angle(in degree) of');
|
302b7c6f5398f0ba08ef444f5ea65d69135f7e58 | da889990277b1a67ad775cfaf464c65b20d3bf00 | /Rdns.tst | ff0e5f421d6d96a35dad8298241aaceb15833dc9 | [] | no_license | ruxr/Rdns | bb346b3aec638724a9d7fbd6afcdd1bcdab15328 | 16cf4f9ae0dd7aa39bec95bc91c172d43f593fde | refs/heads/master | 2023-06-09T23:06:23.575533 | 2023-06-06T10:16:44 | 2023-06-06T10:16:44 | 206,248,752 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 17,396 | tst | Rdns.tst | #
# @(#) Rdns.tst V3.0 (C) 2010-2023 by Roman Oreshnikov
#
CFG= # Имя текущего входного файла
#
# Подготовительные действия
#
Cat() { echo "$ cat $@"; cat "$@"; }
Diff() { echo "$ diff -u $@"; diff -u "$@"; }
Cfg() {
[ $# = 2 ] && shift && CFG=Test.cfg || CFG=Test-$NUM.cfg
echo "; Тестовый файл $CFG$@" >$CFG
sed = $CFG | sed 'N;s/^/ /;s/ *\(.\{5,\}\)\n/\1 /'
}
export CONTENT_TYPE='multipart/form-data; boundary=---------------------------7e713d161040c'
Ask() {
[ $# = 0 ] && echo || echo '-----------------------------7e713d161040c
Content-Disposition: form-data; name="col"
'"$1"'
-----------------------------7e713d161040c
Content-Disposition: form-data; name="ask"
'"$2"'
-----------------------------7e713d161040c--'
}
export PATH=.:$PATH
#
# Собственно тесты
#
Tst 0:19 Получение справки
Run -h
Tst 1:2 Входной файл не задан
Run
Tst 1:2 Входной файл задан, но отсутствует
Run NoFile
Tst 1:3 Неизвестный ключ запуска
Run -X
Tst 1:2 Недопустимый параметр ключа запуска
Run -l/
Tst 1:2 Дублирование параметра ключа запуска
Run -l a -l b
Tst 1:2 Дублирование простого ключа запуска
Run -xx
Tst 1:36 Проверка \$ORIGIN
Cfg '
$ORIGIN ; пропущено значение
$ORIGIN . . ; допустимо только одно значение
$ORIGIN my.dom. # примечание в строке начинается с ;
$ORIGIN .. ; корневой домен содержит единственную точку
$ORIGIN .z ; домен не может начинаться с .
$ORIGIN @. ; @ заменяет текущий домен, а он уже завершен .
$ORIGIN a--b.c. ; двойной минус запрещен
$ORIGIN a.-b. ; минус запрещен в начале доменного имени
$ORIGIN a-.d. ; минус запрещен в конце доменного имени
$ORIGIN localhost.my.domain. ; Ok
; ниже превышение длины доменного имени
$ORIGIN aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
; далее набираем длинное имя
$ORIGIN very-very-very-very-long-domain-name ; допустимый домен
$ORIGIN very-very-very-very-long-domain-name ; ...
$ORIGIN very-very-very-very-long-domain-name ; ...
$ORIGIN very-very-very-very-long-domain-name ; ...
$ORIGIN very-very-very-very-long-domain-name ; ...
$ORIGIN very-very-very-long-domain-name ; ...
$ORIGIN very-very-very-long-domain-name ; ...
$ORIGIN domain ; превышение суммарной длины домена'
Run $CFG
Tst 1:20 Проверка \$TTL
Cfg '
$TTL ; пропущено значение
$TTL 10 0 ; допустимо только одно значение
$TTL xx ; требуется число
$TTL 10m ; суффиксы не поддерживаются
$TTL 0100 ; число не может начинаться с 0
$TTL 0 ; 0 не допустим
$TTL 10 ; очень маленькое значение
$TTL 9999999 ; слишком большое значение'
Run $CFG
Tst 1:38 Проверка .Zone
Cfg '
.Zone ; пропущено значение
.Zone - ; недопустимое доменное имя
.Zone . ; зарезервированная зона
.Zone localhost.my. ; localhost зарезервирован
.Zone 10.in-addr.arpa. ; зарезервированная зона
.Zone my.domain. ns- ; недопустимое имя NS сервера
.Zone my.domain. ; уже зарегистрирована
.Zone 1.domain. ns ns ; дубликат NS
.Zone new.domain. ns ; Ok
.Zone 11/ ; недопустимая битовая маска
.Zone 11/x ; недопустимая битовая маска
.Zone 11//8 ; недопустимая битовая маска
.Zone 11/2 ; маленькая битовая маска
.Zone 11/25 ; недопустимая битовая маска
.Zone 12/24 localhost ; недопустимое имя NS сервера
.Zone 13/24 2.in-addr.arpa. ; недопустимое имя NS сервера
.Zone 10/24 1.1.1. ; Ok
.Zone 10.0/24 ns ; уже зарегистрирована'
Run $CFG
Tst 1:24 Проверка стандартных DNS RR
Cfg '
a- ; недопустимое доменное имя
a 0 ; недопустимое значение для ttl
a 100 ; маленькое значение для ttl
a 300 IN ; неформат
a IN aaaa ; неизвестный тип DNS записи
a AAAA ; не поддерживается
a 300 IN NS ; не поддерживается
a IN SOA ; не поддерживается
abc SRV ; не поддерживается
def TXT ; не поддерживается'
Run $CFG
Tst 1:22 Проверка А RR
Cfg '
$ORIGIN my.domain. ; Ok
.Zone @ ; Ok
.Zone 192.168/16 ; Ok
a A ; неформат
a- A 1 ; недопустимое доменное имя
a A 1 ; недопустимый IP
a A 0.0.0.0 ; IP в зарезервированной зоне
a A 10.0.0.1 ; IP в незарегистрированной зоне
a. A 192.168.0.2 ; Имя в незарегистрированной зоне
localhost A 127.0.0.1 ; localhost зарезервирован
a A 192.168.0.1 ; Ok'
Run $CFG
Tst 1:23 Проверка CNAME RR
Cfg '
$ORIGIN my.domain. ; Ok
.Zone @ ; Ok
.Zone 192.168/16 ; Ok
a CNAME ; неформат
a CNAME - ; недопустимое доменное имя
a CNAME b ; отсутствует IP у целевого домена
a A 192.168.0.1 ; Ok
b CNAME a ; Ok
a CNAME b ; имя уже зарегистрировано
c CNAME b ; целевой домен тоже CNAME
d CNAME localhost ; localhost зарезервирован
d CNAME 1.in-addr.arpa. ; недопустимое доменное имя'
Run $CFG
Tst 1:31 Проверка MX RR
Cfg '
$ORIGIN my.domain. ; Ok
.Zone @ ; Ok
.Zone 192.168/16 ; Ok
a MX 0 ; неформат
a MX 0 - ; недопустимое доменное имя
168.192.in-addr.arpa. MX 0 @ ; недопустимое доменное имя
a MX 00 b ; недопустимый приоритет
a MX 65536 b ; недопустимый приоритет
a MX 0 b ; отсутствует IP у целевого домена
b A 192.168.0.1 ; Ok
c A 192.168.0.2 ; Ok
a MX 0 b ; Ok
a MX 0 c ; повтор приоритета
a MX 10 c ; Ok
a MX 10 c ; повторная запись
a MX 15 c ; повтор целевого домена
a MX 20 localhost ; localhost зарезервирован'
Run $CFG
Tst 1:25 Проверка PTR RR
Cfg '
$ORIGIN my.domain. ; Ok
.Zone @ ; Ok
.Zone 192.168/16 ; Ok
a PTR ; неформат
a PTR b ; a - не реверсный IP
$ORIGIN in-addr.arpa. ; Ok
1.1.1.10 PTR a ; недопустимое доменное имя
0.0.0.0 PTR a. ; IP в зарезервированном блоке
1.0.0.127 PTR a. ; IP в зарезервированном блоке
1.0.0.10 PTR a. ; IP зона не зарегистрирована
1.0.168.192 PTR a. ; Ok
1.0.168.192 PTR b. ; дубликат
2.0.168.192 PTR localhost.my. ;localhost зарезервирован'
Run $CFG
Tst 1:28 Регистрация домена с прямым и обратным IP адресом
Cfg '
$ORIGIN my.domain. ; Ok
.Zone @ ; Ok
.Zone 10/8 ; Ok
a- ; недопустимое доменное имя
a 1.2.3.256 ; не IP
localhost 127.0.0.1 ; зарезервированный доменое имя
a 127.0.0.1 ; IP в зарезервированном блоке
b 192.168.0.1 ; IP зона не зарегистрирована
a 10.1.1.1 2 3 ; 3-й параметр не IP
c 10.1.2.3 10.4.5.6 ; Ok
c 10.0.0.10 ; домен зарегистрирован с другим IP
c1 10.0.0.1 0000 ; недопустимый счетчик повтора
c2 10.0.0.2 1 ; Ok
c3 10.0.0.3 2 ; уже зарегистрирован
@ 10.10.10.10 ; Ok'
Run $CFG
Tst 1:17 Проверка порядка объявления зон и нахождения NS без IP
Cfg '
$ORIGIN my.domain. ; Ok
.Zone @ ns ns1 ; ns1 без IP
.Zone 10/8 ns ns1 ; ns1 без IP
.Zone slave ns.slave ns ns.null. ; ns.slave без IP
.Zone 10.10/16 ns.slave ns ns.null. ; ns.slave без IP
.Zone bad.null. ns.null. ; объявлена раньше родительской
.Zone null. ns.null. ; Ok
.Zone 192.168/16 ns.null. ; Ok
ns 10.0.0.1 ; Ok'
Run $CFG
Tst 1:29 Проверка ошибок объявления объектов и использования .Join
Cfg '
a L1 aa:aa:bb:bb:cc:cc #1 ; Ok
a - aa:aa:bb:bb:cc:cc #1 ; дубликат
b L1 dd:dd:ee:ee:ff:ff #2 ; Ok
c L1 ab:cd:ef:01:23:45 #3 ; линия уже занята
d L123 aa:aa:bb:bb:cc:cc #4 ; повтор мас-адреса
e L123 01:23:45:67:89:1a #1 ; повтор инвентарного №
f 12:34:56:78:9A:BC 12:34:56:78:9a:bc ; повтор задания мас-адреса
g ? 12:34:56:78:9a:bd #5 #6 ; повтор задания инвентарного №
.Join ; мало параметров
.Join L2 ; мало параметров
.Join ? - ; зарезервированные имена
.Join L2 L123 ; линия уже занята
.Join L5 L5 ; одинаковые линии
.Join L3 L4 ; Ok'
Run $CFG
Tst 1:27 Проверка ошибок объявления ссылок
Cfg '
bad ? ; Ok
sw/0 - @- ; ошибка именования ссылки
sw/1 @a. ; ...
sw/2 @a-.b ; ...
sw/3 @/ ; ...
sw/4 @/G1/1 ; ...
sw/5 @/5 ; ссылка сама на себя
sw/6 @/1 ; некорректный тип соединения
sw/7 @BAD ; объект уже объявлен
sw/8 @/0 @/8 ; вторая ссылка
sw1/V0 @Switch ; Ok
sw1/Po1 - Trunk ; Ok
sw1/Gi1 L1 @/Po1 ; Ok
sw1/Gi2 L2 @/Po1 ; Ok'
Run $CFG
Tst 0:136 Проверка полного файла конфигурации
Cfg - '
##### Управление DNS записями:
# Обслуживаемые зоны
$ORIGIN my.domain.
$TTL 10800 ; 3h
.Zone @ ns ns.domain.
.Zone 10.10/16 ns ns.domain.
.Zone local ns ; Внутренний домен
# Делегированные зоны
.Zone slave ns.slave ns ; Подчиненный домен
.Zone 10.10.128/23 ns.slave ns ; ...
# IP адреса внешних NS, если их имена в поддоменах обслуживаемых зон
ns.slave A 10.10.128.1
# Магистральный канал Центр-ЛВС 10.10.0.0/30
;gw-main-lvs 10.10.0.1 ; Центр
gw-lvs-main 10.10.0.2 ; ЛВС
# Магистральный канал ЛВС-Филиал 10.10.0.4/30
gw-lvs-slave 10.10.0.5 ; ЛВС
;gw-slave-lvs 10.10.0.6 ; Филиал
# Vlan1: Сегмент управления ЛВС 10.10.1.0/24
gw01 10.10.1.1
sw 10.10.1.2
ups 10.10.1.3
ns 10.10.1.10
ilo1 10.10.1.11
ilo2 10.10.1.12
ilo3 10.10.1.13
ilo4 10.10.1.14
ilo5 10.10.1.15
# Vlan2: Серверный сегмент 10.10.2.0/24
gw02 10.10.2.1
mail 10.10.2.2
fs 10.10.2.3
cluster 10.10.2.10
node01 10.10.2.11
node02 10.10.2.12
# Vlan3: Клиентский сегмент 10.10.3.0/24
gw03 10.10.3.1
boss 10.10.3.2
arm 10.10.3.3
printer 10.10.3.4
mfu 10.10.3.5
dhcp 10.10.3.10
dhcp32 10.10.3.32 16 ; DHCP клиенты
# Специальные DNS записи
@ MX 0 mail.my.domain.
@ A 10.10.2.11
@ A 10.10.2.12
www CNAME fs
##### Учет оборудования и подключений:
# Кроссовые соединения
.Join V1-1 V3-1
.Join V1-2 V3-2
# Телекоммуникационное оборудование
switch - #1234 /Коммутатор ЛВС
switch/Po1 - Vlan2
switch/G01 E-gw/2 Trunk
switch/G02 E-ups Vlan1
switch/G03 E-s01/1 Vlan2
switch/G04 E-s01/2 Vlan1
switch/G05 E-s01/M Vlan1
switch/G06 E-s02/1 @/Po1
switch/G07 E-s02/2 @/Po1
switch/G08 E-s02/M Vlan1
switch/G09 E-s03/1 Vlan2
switch/G11 E-s03/2 disable
switch/G12 E-s03/M Vlan1
switch/G13 E-s04/1 Vlan2
switch/G14 E-s04/2 disable
switch/G15 E-s04/M Vlan1
switch/G16 E-s05/1 disable
switch/G17 E-s05/2 Vlan3
switch/G18 E-s05/M Vlan1
switch/G19 ? disable
switch/G20 ? disable
switch/G21 L10 Vlan3 PortSecurity
switch/G22 L11 Vlan3 PortSecurity
switch/G23 L20 Vlan3 PortSecurity
switch/G24 L22 Vlan3 PortSecurity
switch/Vlan1 - @sw
#
router - #12345 /Маршрутизатор ЛВС
router/G1 V3-1 00:01:23:45:67:89 @gw-lvs-main / ЛВС-Центр
router/G2 E-gw/2 00:01:23:45:67:89 Trunk / ЛВС
router/G3 V3-2 00:01:23:45:67:89 @gw-lvs-slave / ЛВС-Филиал
router/Vlan1 - 00:01:23:45:67:89 @gw01
router/Vlan2 - 00:01:23:45:67:89 @gw02
router/Vlan3 - 00:01:23:45:67:89 @gw03
#
ups E-ups
#
fo2e-1 - #A-32-1 /Конвертер FO<->Ethernet
fo2e-1/F V1-1
fo2e-1/L FiberOpticCable01
#
fo2e-2 - #A-32-2 /Конвертер FO<->Ethernet
fo2e-2/F V1-2
fo2e-2/L FiberOpticCable02
# Серверное оборудование
server01 - #123456 /ns+mail
server01/G1 E-s01/1 11:01:23:45:67:89 @ns.my
server01/G2 E-s01/2 11:01:23:45:67:8a @mail
server01/M E-s01/M 11:01:23:45:67:8b @ilo1
#
server02 - #123457 /Файловый сервер
server02/Bond - @fs
server02/G1 E-s02/1 12:01:23:45:67:aa @/Bond
server02/G2 E-s02/2 12:01:23:45:67:ab @/Bond
server02/M E-s02/M 12:01:23:45:67:ac @ilo2
#
server03 - #123458 /1 узел кластера
server03/G1 E-s03/1 13:01:23:45:67:1a @Cluster @node01
server03/G2 E-s03/2 13:01:23:45:67:1b
server03/M E-s03/M 13:01:23:45:67:1c @ilo3
#
server04 - #123459 /2 узел кластера
server04/G1 E-s04/1 14:01:23:45:67:77 @Cluster @node02
server04/G2 E-s04/2 14:01:23:45:67:78
server04/M E-s04/M 14:01:23:45:67:79 @ilo4
#
server05 - #123460 /DHCP сервер
server05/G1 E-s05/1 15:01:23:45:67:31
server05/G2 E-s05/2 15:01:23:45:67:32 @DHCP
server05/M E-s05/M 15:01:23:45:67:33 @ilo5
# Клиентское оборудование
arm L10 aa:bb:cc:dd:ee:ff #567
laptop L20 bb:aa:cc:dd:ee:bb #345 @Boss
mfu L11 cc:aa:bb:cc:dd:cc #33-18
printer L22 dd:ee:ff:aa:bb:dd #66'
Run -c Rdns.dns -l Rdns.lst -t Rdns.htm $CFG
Tst 0:102 Проверка файла с актуальными DNS записями
Cat Rdns.dns
cp Rdns.dns Rdns.dig
Tst 0:28 Проверка файла со списком зон
Cat Rdns.lst
Tst 0:141 Проверка файлов описания зон
Run -d . $CFG
for F in *.arpa *domain; do Cat "$F"; echo; done
Tst 0:85 Проверка файла с актуальной таблицей объектов
Cat Rdns.htm
Tst 1:5 Проверка обнаружения ошибки в файле актуальных DNS записей
echo "Bad record" >>Rdns.dns
Run -c Rdns.dns $CFG
Tst 1:12 Проверка обнаружения ошибки загрузки DNS записей с NS сервера
echo '#!/bin/sh
echo
echo "; <<>> DiG emulator <<>> $#"
echo "; (1 server found)"
echo ";; global options: +cmd"
echo "; Transfer failed."' >dig
chmod 755 dig
Cat dig
Run -x -c Rdns.dns $CFG
Tst 0:22 Проверка загрузки DNS записей с NS сервера
echo '#!/bin/sh
SOA="$3 10800 IN SOA ${2#@} root.${2#@} 1 86400 43200 604800 10800"
echo
echo "; <<>> DiG emulator <<>> $#"
echo "; (1 server found)"
echo ";; global options: +cmd"
echo "$SOA"
sed -n "/^zone $3/,/^zone/{/^zone/!p}" Rdns.dig
echo "$SOA"
echo ";; Query time: 0 msec"
echo ";; SERVER: 127.0.0.1#53(localhost) (TCP)"
echo ";; WHEN: $(date)"
echo ";; XFR size: 0 records (messages 1, bytes 1)"
echo' >dig
Cat dig
Run -x -c Rdns.dns $CFG
Tst 1:13 Смена IP адреса для хоста в файле конфигурации
sed 's/10.10.3.3$/10.10.3.13/' $CFG >$CFG.new
echo "$ sed 's/10.10.3.3$/10.10.3.13/' $CFG >$CFG.new"
Diff $CFG $CFG.new
Tst 1:10 Проверка обнаружений обновлений при смене IP адреса
Run -c Rdns.dns $CFG.new
Tst 1:14 Проверка обнаружения ошибки отправки обновлений DNS на NS сервер
echo '#!/bin/sh
echo "; Communication with 127.0.0.1#53 failed: operation canceled"' \
>nsupdate
chmod 755 nsupdate
Cat nsupdate
Run -u -c Rdns.dns $CFG.new
Tst 0:17 Проверка отправки обновлений DNS на NS сервер
echo '#!/bin/sh
while read R; do [ "x$R" = "xanswer" ] && break; done
[ -n "$R" ] && echo "Answer:" ||
echo "; Communication with 127.0.0.1#53 failed: operation canceled"' \
>nsupdate
Cat nsupdate
Run -u -c Rdns.dns $CFG.new
Tst 1:24 Проверка наличия различий в файле актуальных DNS записей
Diff Rdns.dig Rdns.dns
Tst 0:43 Проверка работоспособности Rdns.cgi
RUN=$RUN.cgi
Ask | Run
Tst 0:22 Проверка отработки поискового запроса в поле линии
Ask 1 "a" | Run
Tst 0:25 Проверка отработки поискового запроса в поле DNS имени
Ask 3 "^i" | Run
Tst 0:26 Проверка отработки поискового запроса в поле IP адреса
Ask 4 "10.10.2" | Run
|
e1d795e602c2780d4dd54ceac673d9af38571bc2 | 31bd22a0de3a609c9bdfa652c93ed112749bf698 | /MATEMATICAS PARA INGENIERIA I/Archivos scilab/tarea.sce | e4138c82f7e2d5f855afcdc65cf4bcda74774a85 | [] | no_license | eliasrobleroperez/4to-cuatrimestre | 048e4da60229962106595a1d2caab04733e6e9d8 | 529bc470e75e5165ea01637d71e2e99025754d53 | refs/heads/master | 2020-12-03T18:26:05.289314 | 2020-01-02T21:12:33 | 2020-01-02T21:12:33 | 231,429,581 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 116 | sce | tarea.sce | clf();
x=linspace(0,100,10000);
y=(x+1).%e^x-x.%e^-x
ylabel ('${(x +1)e^x-xe^-^x}$','fontsize', 4);
plot(x,y);
|
57f1bddba9046049a061ad156b5af85a76e859fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH6/EX6.1/6_1.sce | 63684f28585ffc486611313df809faf7bbee0884 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | sce | 6_1.sce | clear;
clc;
dia=22.26e-3;
r=dia/2;
V=220e3;
d=6;
mvg=.82;
mvl=.72;
temp=25;
P=73;
m0=.84;
del=3.86*P/(273+temp);
Vd=(3e6/sqrt(2))*r*del*m0* log(d/r) *1e-3;
mprintf("\nDisruptive critical voltage = %.0f KV/phase", Vd)
Vvl=(3e6/sqrt(2))*r*del*mvl* log(d/r)* (1+(.03/sqrt(del*r))) *1e-3;
mprintf("\nVisual local voltage = %.1f KV/phase", Vvl)
Vvg=(3e6/sqrt(2))*r*del*mvg* log(d/r)* (1+(.03/sqrt(del*r))) *1e-3;
mprintf("\nVisual general voltage = %.1f KV/phase", Vvg)
|
ddc534832d6163bd1c7ab79f6601463e5404fa42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1280/CH4/EX4.1/4_1.sce | 7f5c5d4f157b1435988f649b74afaba254ddece3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 277 | sce | 4_1.sce | clc
//initialisation of variables
d= 4 //in
p= 20 //percent
d1= 0.140
//CALCULATIONS
Gd= d-2*((100-20)*d1/100)
Gw= d1+2*(p*d1/100)
//RESULTS
printf ('Groove diameter = %.3f in',Gd)
printf (' \n Groove width = %.3f in',Gw)
printf (' \n outside diameter = %.f in',d)
|
8ce612706cbe33af9ad91225c6c9b4abf5877dd4 | f7378eec5e8815bdba8a29ea1beec900bbac11b1 | /lab1/questao22.sce | f8483026f0dce83a32c234fde848084f60f7105e | [
"MIT"
] | permissive | andersoncordeiro/ComputerVision | dba8ed6a1a6c890b2aa7b8d4159b07cf311e8c70 | 163bd0e9cbcb7f0046e5f46f78d3967785b0e8b4 | refs/heads/main | 2023-03-05T18:35:06.740972 | 2021-02-16T14:16:09 | 2021-02-16T14:16:09 | 339,419,765 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 606 | sce | questao22.sce | //Funcao que recebe caminho da imagem, t0 e t1 (Questao 2.2 - Bilevel Threshold)
function [Img] = threshold (imagem,t0,t1);
info = imfinfo(imagem);
[Img] = gray_imread(imagem);
for i=1:info.Height
for j=1:info.Width
if Img(i,j) > t0 & Img(i,j) < t1 then
Img(i,j) = 1
elseif Img(i,j) > t1 & Img(i,j) < 1
Img(i,j) = 0
else
Img(i,j) = 0
end
end
end
endfunction
// Digite o caminho com as aspas
Caminho = input('Digite o caminho da imagem: ')
T0 = input('Digite T0: ')
T1 = input('Digite T1: ')
[Img] = threshold(Caminho,T0,T1);
imshow(Img)
|
8eec9bd9c5770448ad2e8dff4c2bc6cdc2e728cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH21/EX21.5/Example21_5.sce | ae2cf941a5931ae9f857967eae222fb63eeb7585 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sce | Example21_5.sce | //Given that
n = 100
//Sample Problem 21-5a
printf("**Sample Problem 21-5a**\n")
n1 = 50
n2 = 50
W = factorial(n)/(factorial(n1)*factorial(n2))
printf("The total number of possible configuration is %e\n", W)
//Sample Problem 21-5b
printf("\n**Sample Problem 21-5b**\n")
n1 = 100
n2 = 0
W = factorial(n)/(factorial(n1)*factorial(n2))
printf("The total number of possible configuration is %e", W) |
fc4678ccc71cbc1e77cf9d06076609f3cb5e00b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /761/CH6/EX6.6/6_6.sce | c733fd3824626513893b4a720f3d56e75bf8e0e4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 532 | sce | 6_6.sce | clc;
//page no 239
//prob no. 6.6
//An AM high-freq receiver with IF=1.8MHz tuned at freq 10MHz
f_sig=10;f_if=1.8;//All freq in MHz
//Determination of local oscillator freq f_lo
f_lo=f_sig+f_if;
//determination of freq. that cause IF response
m=[1 1 2 2];//values of m that are integer
n=[1 2 1 2];//values of n that are integer
for i=1:4
fs1(i)=((m(i)/n(i))*(f_lo))+((f_if)/n(i));
end;
for i=1:4
fs2(i)=((m(i)/n(i))*(f_lo))-((f_if)/n(i));
end;
disp('All freqs are in MHz',fs2,fs1,'The different freqs are'); |
eae2735f6b654b5749f13877391722a70a4d2d6d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH18/EX18.21/Ex18_21.sce | 392267b1d55ee72dbfac2c22d4ac14fa31be89d0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 877 | sce | Ex18_21.sce | //Variable declaration:
m1 = 144206 //Mass flow rate of flue gas (lb/h)
cp1 = 0.3 //Average heat capacities of the flue gas (Btu/lb F)
cp2 = 0.88 //Average heat capacities of the solid (Btu/lb F)
//From example 18.18:
T1 = 550 //Initial temperature of gas ( F)
T2 = 2050 //Final temperature of gas ( F)
T3 = 70 //Initial temperature of solid ( F)
T4 = 550-40 //Final temperature of solid ( F)
//Calculation:
Dhf = m1*cp1*(T2-T1) //For the flue gas, the enthalpy change for one hour of operation (Btu)
Dhs = round(Dhf*10**-4)/10**-4 //For the solids, the enthalpy change for one hour of operation (Btu)
m2 = Dhs/(cp2*(T4-T3)) //Mass of solid (lb)
//Result:
printf("The mass of solid is : %.0f lb .",m2)
|
ab0a7adec1a4cae2ba59621c89ce176b4e846a6c | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH9/EX9.3/9_3.sce | 237e4a2200b23056562a3bde8e26688e4f6d75a9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 272 | sce | 9_3.sce | f=50
n=500
m=5
N=12
flux=0.025
P=120*f/n
S=m*3*P
Nph=S*N*2/2/3
gammaa=%pi/3/m
Kb=sin(m*gammaa/2)/m/sin(gammaa/2)
polepitch=S/N
coilpitch=13
spa=(polepitch-coilpitch)*gammaa
Kp=cos(spa/2)
Ep=4.44*Kb*Kp*f*Nph*flux
disp(Ep)
Eline=sqrt(3)*Ep
disp(Eline)
|
fc98f78db416ee0a0d24fbfcbc58794e152d533d | e25bb3040c96f9782aab0493e05ba22f5bf50ccf | /ex5/ex5_template.sce | 83e3a98ff6e7a8148e2cffb0d0d86591555dbc65 | [] | no_license | gpioblink/aizu-spls-exercise | c13258d46f50ed2db7797693a097b0fb75d24eaf | 6c0b9326ba8e4b52378cfe777e82a2bfcdecc9b9 | refs/heads/master | 2022-09-14T06:09:44.774157 | 2020-05-31T07:43:26 | 2020-05-31T07:43:26 | 263,856,972 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,882 | sce | ex5_template.sce | // EXERCISE 5
// Define some parameters
n = 0:1023;
f_signal = 20;
f_noise = 250;
T = 0.001;
sigLen = length(n); // Length of signal
// Implement input signal x(n) into "x"
x = zeros(1, sigLen);
piValue = %pi; // Value of pi
// Write your code here
x = 100*sin(2*piValue*f_signal*n*T)+10*sin(2*piValue*f_noise*n*T);
// Compute Fourier transform of x(n) into "x_k"
x_k = zeros(1,sigLen);
// Write your code here
x_k = fft(x);
// Define h(n)
h = [0.2 0.2 0.2 0.2 0.2];
// Compute y(n) into "y"
y = zeros(1, length(x)+length(h)-1);
// Write your code here
for n=1:length(y)
for k=1:5
if 0 <= n-k && n-k < length(x) //0≤ n-k <length(x)
y(n)=y(n)+h(k)*x(n-k+1);
end
end
end
// Compute Fourier transform of y(n) into "y_k"
y_k = zeros(1, length(x)+length(h)-1);
// Write your code here
y_k = fft(y);
//=======================================================================
// Do NOT modify this part
// Plot x(n), y(n)
// Create figure for two signals
figure
// Plot x(n)
subplot(2,1,1)
plot(x);
title('x(n)');
xlabel('n');
a=get("current_axes")
a.data_bounds=[0,-150;1000,150];
// Plot y(n)
subplot(2,1,2)
plot(y);
title('y(n)');
xlabel('n');
a=get("current_axes")
a.data_bounds=[0,-150;1000,150];
// Plot x(k), y(k)
// Create figure for two signals
figure
// Plot x(k)
subplot(2,1,1)
Fs = 1/T;
fshift = (-length(x_k)/2:length(x_k)/2-1)*(Fs/length(x_k)); // zero-centered frequency range
plot(fshift,abs(fftshift(x_k)));
title('x(k)');
xlabel('f');
a=get("current_axes")
a.data_bounds=[0,-1;500,40000];
// Plot y(k)
subplot(2,1,2)
fshift = (-length(y_k)/2:length(y_k)/2-1)*(Fs/length(y_k)); // zero-centered frequency range
plot(fshift,abs(fftshift(y_k)));
title('y(k)');
xlabel('f');
a=get("current_axes")
a.data_bounds=[0,-1;500,40000];
|
43fd35e816f27266bbd3ec5fc52e825382007f00 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH1/EX1.7/Ex1_7.sce | 5385e245f8ff62d103460bdd1e3c8ba4050a2ecc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 459 | sce | Ex1_7.sce | //Ex1_7
clc;
//Given:
E=5.12*1.6*10^-19// energy in J
h=6.626*10^-34;
c=3*10^8;
wavelength=200*10^-9;
w=2.3;// in eV
//solution:
tf=E/h;// (part a)
printf("\n The threshold frequency in s^-1 is = %f ",tf)
tl=c/tf*10^10;// (part b)
printf("\n The threshold wavelength in Angstroms is = %f ",tl)
e=(h*c)/(wavelength*1.6*10^-19)// photon energy in eV (part c)
pe=e-w;
printf("\n The energy of photoelectrone in eV is = %f ",pe)
|
489de66975eeee91366c91c7be530b9a90506818 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2132/CH7/EX7.11/Example7_11_page_238.sce | d80fe000f4fd98ee781ce4b7d3a7dadb9e3e798f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,576 | sce | Example7_11_page_238.sce | ////Example 7.11
clc;
clear;
close;
format('v',7);
//Given data :
g=9.81;//gravity constanty
D1=100/1000;//meter
D2=200/1000;//meter
PQ=100;//meter
QR=100;//meter
slope=1/100;//upward slope
Q=0.02;//cumec
p1=2;//kg/cm^2(Pressure in 100 mm dia pipe)
f=0.02;//unitless
Q_P=100/100;//meter(Point Q hight respect to point P)
Q_R=200/100;//meter(Point Q hight respect to point R)
v1=Q/(%pi/4*D1^2);//m/sec
v2=Q/(%pi/4*D2^2);//m/sec
hf1=4*f*PQ*v1^2/(2*g*D1);//meter
hf2=4*f*QR*v2^2/(2*g*D2);//meter
hse=(v1-v2)^2/2/g;//meter(loss due to sudden enlargement)
//Section PQ
Z1P=0;//meter(Datum Head)
H1P=v1^2/2/g;//meter(velocity Head)
p1BYw=p1*10^4/1000;//meter(Pressure Head at P)
Z1Q=1;//meter(Datum Head)
H1Q=v2^2/2/g;//meter(velocity Head)
//Applying bernaullis theorem
p2BYw=Z1P+p1BYw+H1P-Z1Q-H1Q-hf1;//meter(Pressure Head at Q)
disp(p1BYw,"Pressure Head at point P(m)")
disp(H1P,"Velocity Head at point P(m)")
disp(p2BYw,"Pressure Head at point Q(m)")
//Section QR
//Applying bernaullis theorem
p2dashBYw=p2BYw+H1P-H1Q-hse;//meter(Pressure Head at Q)
Z2=1;//meter(Datum Head)
H1Q=v2^2/2/g;//meter(velocity Head)
Z3=2;//meter(Datum Head at R)
H1R=v2^2/2/g;//meter(velocity Head at R)
//Applying bernaullis theorem
p3BYw=Z2+p2dashBYw+H1Q-Z3-H1R-hf2;//meter(Pressure Head at R)
disp(H1Q,"Velocity Head at point Q after enlargemant(m)")
disp(p2dashBYw,"Pressure Head at point Q after enlargemant(m)")
disp(p3BYw,"Pressure Head at point R(m)")
disp(H1R,"Velocity Head at point R(m)")
//Answer in the book is wrong for some calculations.
|
b98f2e5bdb80f81b977cde532b86a3e845b54fde | abde5210bd538a9873f628945f25c08a6711abd0 | /appTests/v0.1_single_invalid_file.tst | fb1998ece53ea6f9238cb84d4466131848ec4596 | [] | no_license | step-batch-7/jsTools-mildshower | 4ff0f8357dac1fbb1603f933d4a9b658aa9bf61f | 20444d5ca9540782b793270f9c5e2f138696b6d7 | refs/heads/master | 2023-01-12T06:32:14.662150 | 2020-01-09T06:10:28 | 2020-01-09T06:10:28 | 229,381,464 | 0 | 1 | null | 2022-12-30T19:21:29 | 2019-12-21T05:32:22 | JavaScript | UTF-8 | Scilab | false | false | 45 | tst | v0.1_single_invalid_file.tst | node sort too
sort: No such file or directory |
e5070f0595452ae0a99e78514a560fec14d27b38 | 449d555969bfd7befe906877abab098c6e63a0e8 | /55/CH3/EX3.9/3ex9.sci | 277720dd58d7b284cdacf21e62fe1c4b10a250b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 448 | sci | 3ex9.sci | x=1;
y=2;
z=3;
A=[x,y,z];
disp('cardinality of set A is:')
length(A)
B=[1,3,5,7,9]
disp('cardinality of set B is:')
length(B)
// 3.9 (b)
disp('the set E has the following elements)
E=[2,4,6 %inf] //set E is the set of all positive even numbers and N is the set of all natural numbers
disp('function f:N to E is defined.So,E has the same cardinality as N')
disp('set E is countably infinite:')
for x=2:2:%inf
y=2*x;
disp(y)
end |
6b9d7ff1d1b341191063a94fdd8dd1d81c1cde5c | f4d3c7f7e8954cdeb6eb0c7b54a056242b07da22 | /BCPST UTT/Old/affichage.sce | 245f36e74eb153a569b4fd17883663b0e4f3dd60 | [] | no_license | ThibaultLatrille/Slides-Sciencework | bfdf959dbbe4a94e621a3a9a71ccbcd06c5fc338 | 84b53f3901cbdb10fab930e832dc75431a7dce05 | refs/heads/master | 2020-04-27T07:53:52.313720 | 2019-03-06T16:17:57 | 2019-03-06T16:17:57 | 174,151,758 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,079 | sce | affichage.sce | function []=affichage(C,ville1,ville2,d)
RGB = ReadImage('C:\Program Files\scilab-5.2.1\contrib\france1.jpg');
[image, ColorMap] = RGB2Ind(RGB);
FigureHandle = ShowImage(image, 'Example', ColorMap);
coordIm=transform(C)
if d>=100 then
xstring(coordIm(1,2),coordIm(1,1),ville1)
xstring(coordIm(2,2),coordIm(2,1),ville2)
xpoly([coordIm(1,2),coordIm(2,2)],[coordIm(1,1),coordIm(2,1)],"lines",1);
d=round(d);
d=string(d)+" Km";
xstring((coordIm(1,2)+coordIm(2,2))/2,(coordIm(1,1)+coordIm(2,1))/2,d);
else
yhaut=max(coordIm(1,1),coordIm(2,1));
if yhaut=coordIm(1,1) then xhaut=coordIm(1,2);yhaut=yhaut+5;ybas=coordIm(2,1)-5;xbas=coordIm(2,2); villehaut=ville1;villebas=ville2;
else yhaut=yhaut+5; xhaut=coordIm(2,2); ybas=coordIm(1,1)-5;xbas=coordIm(1,2); villehaut=ville2;villebas=ville1;
end
xstring(xhaut,yhaut,villehaut);
xstring(xbas,ybas,villebas);
xpoly([coordIm(1,2),coordIm(2,2)],[coordIm(1,1),coordIm(2,1)],"lines",1);
d=round(d);
d=string(d)+" Km";
xstring((xhaut+xbas)/2,(yhaut+ybas)/2,d);
end
endfunction |
351d8315e61608960fc751f55c350ed65fbd22cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH1/EX1.15/ex1_15.sce | 39a84db2787aa6e35280bf6b45f921cfceceecfd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 593 | sce | ex1_15.sce | // Exa 1.15
clc;
clear;
close;
format('e',9)
// Given data
V = 1;// in V
I = 8;// in mA
I = I * 10^-3;// in A
R = V/I;// in ohm
l = 2;// in mm
l = l * 10^-1;// in cm
b = 2;// in mm
b = b * 10^-1;// in cm
A = l*b;// in cm^2
L = 2;// in cm
// R = (rho*L)/A;
sigma = L/(R*A);// in (ohm-cm)^-1
// n = N_D;
miu_n = 1300;// in cm^2/V-s
q = 1.6 * 10^-19;// in C
// sigma = n*q*miu_n;
N_D = sigma/( miu_n*q );// in /cm^3
disp(N_D,"The doping level in /cm^3 is");
d = 2;
E = V/d;
// The drift velocity
Vd = miu_n * E;// in cm/s
disp(Vd,"The drift velocity in cm/sec is");
|
271698685b6a9f6b22b3002562fd620f8a3ad860 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set13/s_Introduction_To_Modern_Physics_Volume_1_R._B._Singh_623.zip/Introduction_To_Modern_Physics_Volume_1_R._B._Singh_623/CH7/EX2.6.3/U2_C6_3.sce | 70f9b0698bb386add479c5c41ca524fca061e6ee | [] | 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 | 249 | sce | U2_C6_3.sce | errcatch(-1,"stop");mode(2);//variable initialization
L = 10;
n = 2;
//Calculation
X = L/2;
X_square = ((L^2)/3)-((L^2)/(2*(n^2)*(3.14^2)));
printf("\nExpectation of X = %.2f",X);
printf("\nExpectation of X^2 = %.2f",X_square);
exit();
|
5f9c6af23f2b619b6ecd4c380e4239f8403b4a9e | 717ddeb7e700373742c617a95e25a2376565112c | /278/CH9/EX9.2/ex_9_2.sce | 8416bfd1c6d52efa049cc1d238899b85feec9ec8 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 700 | sce | ex_9_2.sce | //find the efficiency of following rivet joints
clc
//solution
//given
t=6//mm
d=20//mm
ft=120//N/mm^2
T=90//N/mm^2
fc=180//N/mm^2
p=50//mm
pi=3.14
Pt=(p-d)*t*ft//N//tearing resistance of plate
Ps=(pi/4)*d^2*T//N//shearing resistance of rivet
Pc=d*t*fc//N//crushing resistance of rivet
P=p*t*ft//N//strength of the unriveted
//eff=(least of Pt,Ps,Pc)/P
eff=Pt/P//least is Pt
p1=65//mm
Pt1=(p1-d)*t*ft//N
Ps1=(2*pi/4)*d^2*T//N
Pc1=2*d*t*fc//N
P2=p1*t*ft//N
printf("the value of forces are,%f N\n,%f N\n,%f N\n",Pt1,Ps1,Pc1)
//eff1=least of Pt1,Ps1,Pc1/P2
eff1=Pt1/P2//least is Pt1
printf("the efficiency is first case is,%f\n",eff)
printf("the eff is second case is,%f",eff1) |
b254c20724efbfdb364f64d2f9e757e797db8a85 | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH4/EX4.28/ex4_28.sce | e09c1811dbb44876427a10fddd03690c0e23fbf8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | ex4_28.sce | //Example 4.28
//use of flags with unsigned decimal, octal and hexadecimal numbers
i = 1234;
j = oct2dec('1777');
k = hex2dec('a08c');
printf(":%8u %8o %8x:\n\n", i, j, k);
printf(":%-8u %-8o %-8x:\n\n", i, j, k);
printf(":%#8u %#8o %#8X:\n\n", i, j, k);
printf(":%08u %08o %08X:\n\n", i, j, k); |
0357590c823181ed4249fda31b12f39d5ada4c66 | 9d59fb06cf0644f9c0c84aae7977eeff57116a45 | /0-INTRO/INTRO-4.sce | bb5ea72cb96ba25ab4434df6cdc06d9ef0f4c444 | [] | no_license | aguadix/RQ | f353b8fa0e36828c8cca9af53f5c3275ed476a75 | 43e8a31003bf038b0cd72487868c760829b9797c | refs/heads/master | 2023-03-07T10:50:29.102260 | 2023-03-06T01:35:58 | 2023-03-06T01:35:58 | 53,548,175 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,256 | sce | INTRO-4.sce | clear; clc;
// INTRO-4.sce
// CAMPO VECTORIAL DE UN SISTEMA DE ECUACIONES DIFERENCIALES DE 2 VARIABLES
function dxdt = f(t,x)
dxdt(1) = -2*x(1) + x(2)
dxdt(2) = x(1) - 4*x(2)
endfunction
// Intervalo de prueba
x1min = -10; x1max = 10; x1interval = x1min:x1max;
x2min = -10; x2max = 10; x2interval = x2min:x2max;
scf(1); clf(1);
// Líneas de pendiente nula
// dxdt(1) = -2*x(1) + x(2) = 0
plot(x1interval,2*x1interval,'r-');
// dxdt(2) = x(1) - 4*x(2) = 0
plot(x1interval,x1interval/4,'r--');
a1 = gca;
a1.x_location = 'origin';
a1.y_location = 'origin';
a1.isoview = 'on';
a1.data_bounds = [x1min,x2min ; x1max,x2max];
a1.box = 'off';
// Punto de prueba
x = [5;5];
dxdt = f(0,x)
r = 0.025//0.025;
plot([x(1),x(1)+dxdt(1)*r],[x(2),x(2)+dxdt(2)*r]);
plot(x(1)+dxdt(1)*r,x(2)+dxdt(2)*r ,'o')
// Campo completo
for i = 1:length(x1interval)
for j = 1:length(x2interval)
x = [x1interval(i);x2interval(j)];
dxdt = f(0,x);
plot([x(1),x(1)+dxdt(1)*r],[x(2),x(2)+dxdt(2)*r],'k-');
plot(x(1)+dxdt(1)*r,x(2)+dxdt(2)*r ,'ko')
end
end
// Trayectoria
tfin = 10; dt = 0.1; t = 0:dt:tfin;
xini = [10;10];
x = ode(xini,0,t,f);
plot(x(1,:),x(2,:),'o-');
// Función de Scilab: fchamp
fchamp(f, 0, x1interval, x2interval);
|
bceadb9a12c2e21874752791058614e8e035c9b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH3/EX3.5/ex3_5.sce | 2ad6ac38736d0d02df0ce3b5a2c2fdfa08cd59bc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 433 | sce | ex3_5.sce | //ex3.5
V_Z=5.1;
I_ZT=49*10^-3;
I_ZK=1*10^-3;
Z_Z=7;
R=100;
P_D_max=1;
//At I_ZK, output voltage
V_out=V_Z-(I_ZT-I_ZK)*Z_Z;
V_IN_min=I_ZK*R+V_out;
I_ZM=P_D_max/V_Z;
//at I_ZM, output voltage
V_out=V_Z+(I_ZM-I_ZT)*Z_Z;
V_IN_max=I_ZM*R+V_out;
disp(V_IN_max,'maximum input voltage in volts that can be regulated by the zener diode')
disp(V_IN_min,'minimum input voltage in volts that can be regulated by the zener diode') |
c3db55cc33406d862a7eb8ca7a38dfdb45f3b98c | 449d555969bfd7befe906877abab098c6e63a0e8 | /758/CH3/EX3.11/Ex_3_11.sce | bda46c92c94c5b42815ad0af8d8ab4350bf76666 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 261 | sce | Ex_3_11.sce | //Example 3.11
clc;clear;close;
s=poly(0,'s');
F=4*(s+1)*(s+3)/(s+2)/(s+4);
disp(F,'Given Transfer Function:');
zero=roots(numer(F));
pole=roots(denom(F));
disp(zero,'Zeros of transfer function: ');
disp(pole,'Poles of transfer function: ');
plzr(F); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.