blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
8697812fbc6eaa3d8605826975611fc0d8c45007
449d555969bfd7befe906877abab098c6e63a0e8
/154/CH8/EX8.1/ch8_1.sce
fdc51d2539887183083aa1b4dbf3e00de7e41cbf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
382
sce
ch8_1.sce
clc disp("Example 8.1") printf("\n") printf("Given") disp("Capacitance is 1uF") disp("Resistance is 1Mohm") disp("Voltage across capacitor is 10V") R=1*10^6;C=1*10^-6;V=10 //Let T be time constant T=R*C //v(t)=V*exp(-t/T) disp("v(t)=10*exp(-t) (1)") //Substituting value of t=5 in (1) v5=10*exp(-5) printf("Time constant is %ds\n",T) printf("v(5)=%0.3fV\n",v5)
464a1b7672f68bd4b22d84ca5ee638da9f1043a2
717ddeb7e700373742c617a95e25a2376565112c
/40/CH5/EX5.5/Exa_5_5.sce
0ad017d3712ac500b3be0ef3e74812680fb1bbc8
[]
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
120
sce
Exa_5_5.sce
x=[1 0 2 0 3];//one period of signal n=0:4; k=0:4; x1=x*exp(%i*n'*2*k*%pi/4) DTFTx=abs(x1) DFT=dft(x,-1) DFS=DFT/5
f6d32fdf93c48e8fd88e6371715fa7049e08f74d
449d555969bfd7befe906877abab098c6e63a0e8
/2495/CH2/EX2.11.6/Ex2_11_6.sce
179ef23918aa6c81cbf1557cb1220e946d4b53af
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
456
sce
Ex2_11_6.sce
clear clc M1=148.31;//molar mass of Mg(NO2)2 in gm m1=6.69;//amount of Mg(NO2)2 dissolved in water m2=100;//amount of water P1=747;//pressure in torr T2=373;//temperature in K P=760;//pressure at normal temperature X=(m1/M1)/((m1/M1)+(m2/18));//mole fraction of solute in solution \ DelP=X*P;// i=(P-P1)/DelP;//van't hoff factor v=3;// alpha=(i-1)/(v-1);//degree of dissociation of salt in solution printf('alpha=%.3f',alpha) //page 78
c3534ab7027fc05ee3726e83ced235048383f6b9
6aa7e38b0ca90fe7359bd05dbdeba87474bfbdfa
/audio.sce
026add01186be49060a8c925b0620efb2e3daa9f
[]
no_license
abhinavraj12345/Scilab
499afc50bd193fe0bda82ed298d3e8078a547941
9530d862984d58ca91bf7d55298381e268141e54
refs/heads/master
2020-04-15T16:07:57.545456
2019-06-13T06:56:25
2019-06-13T06:56:25
164,821,631
0
0
null
null
null
null
UTF-8
Scilab
false
false
584
sce
audio.sce
clc clear [originalAudio,Fs]=wavread("C:\Users\Abhinav Raj\Downloads\OnceUponaMidnightDreary.wav"); Fmin=20; //Fmax=20e3; Fmax=2.5e3 //analyze(originalAudio,Fmin,Fmax,Fs,length(originalAudio)) noiseOnly=originalAudio(10*Fs:12*Fs); //playing original audio //playsnd(originalAudio,Fs) //playing only noise between 10th and 12th sample //playsnd(noiseOnly,Fs) analyze(noiseOnly,Fmin,1e3,Fs,length(noiseOnly)) FIR_coeffs=wfir(); filteredAudio=convol(FIR_coeffs,originalAudio) analyze(filteredAudio,Fmin,Fmax,Fs,length(filteredAudio))
00f05ca8c79237cd159ec9ac0531a11395c937ed
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/peak2rms/peak2rms/peak2rms2.sce
e905727f5b73bff995542699c2c5cd090ac1bcca
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
136
sce
peak2rms2.sce
//Check peak-to-RMS along rows of a matrix x = [2 8 4; 7 3 9]; y = peak2rms(x, 2) disp(y); //output //1.5118579 //1.3221957
b7c2d80f3110f328befd72cd04ed3050e266eebf
449d555969bfd7befe906877abab098c6e63a0e8
/2444/CH4/EX4.20/ex4_20.sce
e9ce92cd4788719952b633d64b8f5a167ef6fc51
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex4_20.sce
// Exa 4.20 clc; clear; close; format('v',6) // Given data R_S = 200;// in ohm R_L = 1200;// in ohm h_ib = 24;// in ohm h_rb = 4*10^-4;// unit less h_fb = -0.98;// unit less h_ob = 0.6;// in µA/V h_ob = h_ob * 10^-6;// in A/V Ai = -h_fb/(1+(h_ob*R_L));// unit less disp(Ai,"The current gain is"); Ri = h_ib + (h_rb*Ai*R_L);// in ohm disp(Ri,"The input impedance in ohm is"); Av = round((Ai*R_L)/Ri);// unit less disp(Av,"The Voltage gain is"); Ais = (Ai*R_S)/(Ri+R_S);// unit less disp(Ais,"The overall current gain is");
14f8c4fb85561448d00f1736b0a069a3831121dc
449d555969bfd7befe906877abab098c6e63a0e8
/1631/CH9/EX9.36.i/Ex9_36i.sce
d125f173994198e3277ae6cbeb9580b245e201ba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
295
sce
Ex9_36i.sce
//Caption: information rate //Example 9.36i //page no 427 //Find information rate //assume that succeissive samples are statistically independent clear; clc; fm=4000; fs=2*fm; n=1.25; r=fs*n; pxi=1/256; HX=-log2(pxi); R=r*HX; printf("Information Rate \n\n \t R= %d kb/s",R/1000)
d30582af4ae7e53d21219a66eaee42b94db401ba
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH17/EX17.17/17_17.sce
858265a7b2b0f880678e7b5e06b73c3be1eb112a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
264
sce
17_17.sce
//Bullet //refer fig. 17.15 //Initial momentum of the system=Final momentum v=21.31 //m/sec //Kinetic Energy lost= Initial K.E- Final K.E loss=((0.5*400^2)/(9.81*2)+(30*15^2)/(2*9.81))-((30.5*21.31^2)/(2*9.81)) //J printf("\nLoss of energy=%.3f J",loss)
23bf453c39972605251fc9a4177e99b1b2608af5
e4381b32d21150427f93b058541bb3343752bb0f
/sablona_berliner/zapisnik/WWW.sce
bb0a945f54a68abde6e76ce4eeb6aec45ac4161f
[]
no_license
pirati-cz/plisty
c095da00bfa89792f8eb676fd5b756fc1454659d
815dbc58f7a47f1b2740ffa068a2ff5f909ecba8
refs/heads/master
2020-12-24T19:04:07.572707
2016-05-16T20:52:51
2016-05-16T20:52:51
58,966,482
1
0
null
null
null
null
UTF-8
Scilab
false
false
3,980
sce
WWW.sce
<SCRIBUSELEMUTF8 W="56.6929133480315" H="8.50393704881897" previewData="iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAACBJREFUaIHtwQEBAAAAgiD/r25IQAEAAAAAAAAAAMCjASdCAAFkjjE+AAAAAElFTkSuQmCC" YP="946.771653502362" XP="751.1811024" COUNT="1" Version="1.4.6"> <FONT NAME="Fira Sans Bold"/> <FONT NAME="Fira Sans Book"/> <FONT NAME="Fira Sans ExtraBold"/> <FONT NAME="Fira Sans Light"/> <FONT NAME="Fira Sans Medium"/> <FONT NAME="Fira Sans Regular"/> <FONT NAME="Lato Light"/> <FONT NAME="PermianSerifTypeface Bold"/> <FONT NAME="PermianSerifTypeface Regular"/> <COLOR Spot="0" Register="0" NAME="Black" CMYK="#000000ff"/> <COLOR Spot="0" Register="0" NAME="Cervena" CMYK="#2effe814"/> <COLOR Spot="0" Register="0" NAME="Cervena2" CMYK="#00e2c600"/> <COLOR Spot="0" Register="0" NAME="Modra" CMYK="#ff14000d"/> <COLOR Spot="0" Register="0" NAME="Oranzova" CMYK="#007fff00"/> <COLOR Spot="0" Register="0" NAME="White" CMYK="#00000000"/> <COLOR Spot="0" Register="0" NAME="Zelana" CMYK="#5700d900"/> <COLOR Spot="0" Register="0" NAME="Zluta" CMYK="#1400c700"/> <MultiLine Name="Teckovana"> <SubLine LineEnd="0" Dash="3" Width="1.5" LineJoin="0" Shade="100" Color="Black"/> </MultiLine> <MultiLine Name="Tenka"> <SubLine LineEnd="0" Dash="1" Width="0.5" LineJoin="0" Shade="100" Color="Black"/> </MultiLine> <MultiLine Name="Tenka teckovana"> <SubLine LineEnd="0" Dash="3" Width="0.5" LineJoin="0" Shade="100" Color="Black"/> </MultiLine> <MultiLine Name="Tlusta"> <SubLine LineEnd="0" Dash="1" Width="1.5" LineJoin="0" Shade="100" Color="Black"/> </MultiLine> <MultiLine Name="Velmi tlusta"> <SubLine LineEnd="0" Dash="1" Width="2.5" LineJoin="0" Shade="100" Color="Black"/> </MultiLine> <ITEM isTableItem="0" NUMPO="16" doOverprint="0" TransValue="0" PWIDTH="1" ANFLAG="0" ANTYPE="11" WIDTH="56.6929133480315" POCOOR="0 0 0 0 56.6929 0 56.6929 0 56.6929 0 56.6929 0 56.6929 8.50394 56.6929 8.50394 56.6929 8.50394 56.6929 8.50394 0 8.50394 0 8.50394 0 8.50394 0 8.50394 0 0 0 0 " isGroupControl="0" TEXTRA="0" RADRECT="0" TopLine="0" ANZIEL="0" TXTULP="-0.1" LINESPMode="0" endArrowIndex="0" TXTULW="-0.1" TXTSTROKE="Black" TXTSTYLE="0" SHADE="100" PLINEART="1" LOCKR="0" AUTOTEXT="0" fillRule="1" BASEOF="0" ANPLACE="1" startArrowIndex="0" ANXACT="" textPathType="0" ANBLACT="" ANTOOLTIP="" EPROF="" TXTSCALE="100" REVERS="0" NUMCO="16" ANBCOL="Black" CLIPEDIT="0" LANGUAGE="Czech" NAMEDLST="" TXTBASE="0" ANFACT="" COCOOR="0 0 0 0 56.6929 0 56.6929 0 56.6929 0 56.6929 0 56.6929 8.50394 56.6929 8.50394 56.6929 8.50394 56.6929 8.50394 0 8.50394 0 8.50394 0 8.50394 0 8.50394 0 0 0 0 " ANVACT="" ANSCALE="0" TransValueS="0" PCOLOR="None" PICART="1" TXTSTRSH="100" ANFEED="1" COLUMNS="1" ANEACT="" ANNAME="WWW" TransBlend="0" NUMGROUP="0" IRENDER="1" FRTYPE="0" TEXTFLOW="0" ANDACT="" PCOLOR2="None" LINESP="15" TXTSCALEV="100" YPOS="946.771653502362" TEXTFLOWMODE="0" LOCK="0" ANCACT="" XPOS="751.1811024" NEXTPAGE="-1" SCALETYPE="1" TransBlendS="0" PLTSHOW="0" ANBSTY="0" BottomLine="0" ANDOWN="" FLIPPEDH="0" relativePaths="1" TXTSTP="-0.1" FLOP="0" TXTSTW="-0.1" FLIPPEDV="0" ANNOTATION="1" PLINEJOIN="0" SHADE2="100" ANHTML="0" BACKPAGE="-1" TXTKERN="0" textPathFlipped="0" TXTOUT="1" PRFILE="" BOOKMARK="0" LeftLine="0" LOCALX="0" LOCALY="2.83464566929134" GRTYP="0" DASHOFF="0" DASHS="" ISIZE="10" ANMC="-1" ANBWID="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" HEIGHT="8.50393704881897" ANICON="0" NEXTITEM="-1" GROUPS="" RATIO="1" TXTFILL="Black" IFONT="PermianSerifTypeface Regular" ANACTION="" PLINEEND="0" EXTRA="0" COLGAP="0" ANEXTERN="http://pirati.cz" TXTSHX="5" TXTSHY="-5" TXTFILLSH="100" ANFORMAT="0" ANFONT="4" ANCHKS="0" PFILE2="" PFILE3="" ANCHK="0" ANKACT="" ROT="0" REXTRA="0" ANVIS="0" BEXTRA="0" ImageClip="" NUMDASH="0" RightLine="0" PRINTABLE="1" ANAA="0" ANFOACT="" ALIGN="0" ANACTYP="8" ANROLL="" BACKITEM="-1" PTYPE="4" LOCALSCX="1" LOCALSCY="1"/> </SCRIBUSELEMUTF8>
85a51fc510fd989e13f479aa28f71ad504201e59
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH7/EX7.3/Ex7_3.sce
91a72f18a1170c5c85b641811bb7251a49fa7097
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
456
sce
Ex7_3.sce
//Example 7_3 page no:257 clc mag1=1.67//magnitude for current mag2=-1.25 ang1=-90//angle for current ang2=90 mag=mag1/mag2 ang=ang1-ang2 disp(mag,"magnitude for Vb is(in volt)") disp(ang,"degree for Vb is (in degree)") mag1=1.67//magnitude for current mag2=0.33 ang1=-90-14.5//angle for current mag=mag1/mag2 disp(mag,"magnitude for Va is(in volt)") disp(ang1,"degree for Va is (in degree)") //Va value is calculated wrongly in text book
514ad393f55fe21da4eaddf4e14f355583991607
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/macros/m2sci/sci_logspace.sci
43cb586bed41768eecd283a65360711bbdd65023
[ "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
291
sci
sci_logspace.sci
function [stk,txt,top]=sci_logspace() // Copyright INRIA txt=[] if rhs==2 then stk=list('logspace('+stk(top-1)(1)+','+stk(top)(1)+')','0','1','100','1') top=top-1 else stk=list('logspace'+rhsargs([stk(top-2)(1),stk(top-1)(1),stk(top)(1)]),'0','1',stk(top)(1),'1') top=top-2 end
8b40884f2dc920861fc61f102ff071d7fc2e64cc
449d555969bfd7befe906877abab098c6e63a0e8
/788/CH10/EX10.4.a/10_4_data.sci
dbea6c40d1e4778287d9e4698f1017ed8f3552cb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
231
sci
10_4_data.sci
// Aim:Refer Example 10-4 for Problem Description // Given: // flow-rate: Q=30; //gpm // operating pressure: p=1000; //psi // maximum velocity: v=20; //ft/s // tensile strength of material: S=55000; //psi // factor of safety: FS=8;
1fd4c961e23c02cb1017125bbf73998d6d71e69e
717ddeb7e700373742c617a95e25a2376565112c
/3411/CH9/EX1.1.u2/Ex1_1_u2.sce
ed99eb811ef44589845a132b5a9a58c317813ef3
[]
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
526
sce
Ex1_1_u2.sce
//Example 1_1_u2 clc(); clear; //To calculate energy momentum and the probability of of finding the particle n=3 h=6.63*10^-34 m=1.67*10^-27 l=0.1*10^-9 e=(n^2*h^2)/(8*m*l^2) //units in joules printf("The energy of the particle is E=") disp(e) printf("Joules") lamda=(2*l)/n //units in mts lamda=6.6*10^-11 //units in mts p=h/lamda //units in Kg mts^-1 printf("\nMomentum is p=") disp(p) printf("Kg ms^-1") prob=((1/3)-0) printf("\nThe probability of finding the particle is =%.2f",prob)
04b11274fc1208b83959e49e29e7d485096be3af
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH18/EX18.42/Ex18_42.sce
c9b9acf66c9afa0c3ba54c2d0f0bf69a4c4c3056
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
450
sce
Ex18_42.sce
//Initilization of variables m1=9 //kg m2=5.5 //kg u1=-3 //m/s u2=1.77 //m/s e=0.8 //coefficient of restitution //Calculations //Solving by matrix method after we get the two equations A=[-1,1;m1,m2] B=[(e*u1-e*u2);m1*u1+m2*u2] C=inv(A)*B //m/s //Result clc printf('The 9kg ball will rebound up the speed of %f m/s\n and the 5.5kg ball will move to the right and down \nwith components of %f m/s and %f m/s respectively',C(1),u2,-C(2))
2bfc60c60629b3880677e916208dc6f14a4762cb
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH23/EX23.6/example23_6.sce
3b16ddf0a65bdf3a3f3a6ab3e9121a1a3b484386
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
440
sce
example23_6.sce
c1=8*10^(-6); c2=4*10^(-6); v=120; f=60; disp("Part a"); x_c1=1/(2*%pi*f*c1); x_c2=1/(2*%pi*f*c2); x_c=x_c1+x_c2; disp("the total capacitive reactance (in Ω) is"); disp(x_c); disp("Part b"); i=v/x_c; disp("the current drawn (in A) by the capacitors is"); disp(i); disp("Part c"); v1=i*x_c1; v2=i*x_c2; disp("voltage (in V) across 4 μF capacitor is"); disp(v2); disp("voltage (in V) across 8 μF capacitor is"); disp(v1);
5ba3e964e54683cc287ed4478cb295f1bcf28b65
80759a2d10af07813a07685cf1b41dc4ca8c45b5
/Scilab_codes_table1/FiLeMa5.sce
15eb1b3b23ade1b98936a2d3fe350479cbe0389b
[]
no_license
rafipra/Cummulative-Damage-JMVA
14c84d0c224629bec7b2db27f67892af03105045
42ea721fcef1a737c3eb1188211d8b59c661c8a1
refs/heads/master
2020-03-16T23:51:31.083536
2018-05-11T22:25:37
2018-05-11T22:25:37
133,093,870
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,169
sce
FiLeMa5.sce
n=4; p=5; p1=1/8; p2=1/8; p3=1/8; p4=1/8; p5=1/8; Pr=[p1;p2;p3;p4;p5]; M=20*n; T=zeros(p,1); S=zeros(p,M); omega=[1/8;1/8;1/8;1/8;1/8]*3; theta=omega./Pr; C=n*omega; N=1000; T1=0; T2=0; T3=0; T4=0; T5=0; T6=0; T7=0; T8=0; T9=0; T10=0; h1=1.610308; h2=2.342534; h3=2.999908; h4=3.655500; h5=4.351460; h6=5.131867; h7=6.064430; h8=7.289276; h9=9.236357; for k=1:N Y = grand(M, "mul", 1, Pr); k1=0; for j=1:M S(1,j)=sum(Y(1:1,1:j)); if S(1,j)<= C(1) then k1=k1+1; end end k2=0; for j=1:M S(2,j)=sum(Y(2:2,1:j)); if S(2,j)<= C(2) then k2=k2+1; end end k3=0; for j=1:M S(3,j)=sum(Y(3:3,1:j)); if S(3,j)<= C(3) then k3=k3+1; end end k4=0; for j=1:M S(4,j)=sum(Y(4:4,1:j)); if S(4,j)<= C(4) then k4=k4+1; end end k5=0; for j=1:M S(5,j)=sum(Y(5:5,1:j)); if S(5,j)<= C(5) then k5=k5+1; end end T=[k1+1;k2+1;k3+1;k4+1;k5+1]/n; PsiT=[(1/p1-1)*T(1),-min([T(1);T(2)]),-min([T(1);T(3)]),-min([T(1);T(4)]),-min([T(1);T(5)]); -min([T(1);T(2)]),(1/p2-1)*T(2),-min([T(3);T(2)]),-min([T(4);T(2)]),-min([T(5);T(2)]); -min([T(1);T(3)]),-min([T(2);T(3)]),(1/p3-1)*T(3),-min([T(4);T(3)]),-min([T(5);T(3)]); -min([T(1);T(4)]),-min([T(2);T(4)]),-min([T(3);T(4)]),(1/p4-1)*T(4),-min([T(5);T(4)]); -min([T(1);T(5)]),-min([T(2);T(5)]),-min([T(3);T(5)]),-min([T(4);T(5)]),(1/p5-1)*T(5)]; InvPsiT=inv(PsiT); CT=(T-theta)'*InvPsiT*(T-theta); ChiSquare=n*CT; if ChiSquare<h1 then T1=T1+1; end if h1<=ChiSquare & ChiSquare<=h2 then T2=T2+1; end if h2<=ChiSquare & ChiSquare<=h3 then T3=T3+1; end if h3<=ChiSquare & ChiSquare<=h4 then T4=T4+1; end if h4<=ChiSquare & ChiSquare<=h5 then T5=T5+1; end if h5<=ChiSquare & ChiSquare<=h6 then T6=T6+1; end if h6<=ChiSquare & ChiSquare<=h7 then T7=T7+1; end if h7<=ChiSquare & ChiSquare<=h8 then T8=T8+1; end if h8<=ChiSquare & ChiSquare<=h9 then T9=T9+1; end if h9<=ChiSquare then T10=T10+1; end end D=[T1,T2,T3,T4,T5,T6,T7,T8,T9,T10]; Percentage=(100/N)*D; U=(Percentage-10).^2/10; theta T Percentage D sum(U)
8b10771f3d0b66cfa7dadfba6810fd764ccf0ceb
449d555969bfd7befe906877abab098c6e63a0e8
/1472/CH10/EX10.4/10_4.sce
2269487593e96554b38d22a03d5be9eaf51d8284
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
343
sce
10_4.sce
clc //initialization of varaibles x=0.4 P=100 //psia //calculations y=1-x disp("From table 2,") vf=0.01774 vg=4.432 vx=x*vf+y*vg hf=298.4 hfg=888.8 hx=hf+y*hfg sg=1.6026 sfg=1.1286 sx=sg-x*sfg //results printf("Specific volume = %.3f cu ft/lb",vx) printf("\n Enthalpy = %.1f B/lb",hx) printf("\n Entropy = %.4f B/lb R",sx)
3f902522eaf958460a286b6827b23d84c5ca9c75
449d555969bfd7befe906877abab098c6e63a0e8
/2201/CH3/EX3.3/ex3_3.sce
237262e147b0288d223acd9ac2e01096343bbeca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
316
sce
ex3_3.sce
// Exa 3.3 clc; clear; close; // Given data n_i = 1.5 * 10 ^10;// in /cm^3 for silicon N_d = 10^17;// in atoms/cm^3 n_o = 10^17;// electrons/cm^3 KT = 0.0259; // E_r - E_i = KT * log(n_o/n_i) del_E = KT * log(n_o/n_i);// in eV disp("The energy band for this type material is Ei + "+string(del_E)+" eV");
9ae705f61a11da0ebcaa959b58afedd464e0e51b
449d555969bfd7befe906877abab098c6e63a0e8
/3392/CH17/EX17.1/Ex17_1.sce
8684bb90cbe9a8f2ad9728ccb1670709c9841925
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
842
sce
Ex17_1.sce
clc // initialization of variables clear E1=200 //GPa E2=200 //Gpa v1=0.29 v2=0.29 R1=60 //mm R11=130 //mm R2=80 //mm R22=200 //mm th=%pi/3 P=4.5 //kN P=P*10^3 E=E1*10^3 B=1/4*(1/R1+1/R2+1/R11+1/R22)+1/4*((1/R1+1/R2-1/R11-1/R22)^2 - 4*(1/R1-1/R11)*(1/R2-1/R22)*(sin(th)^2))^(1/2) A=1/4*(1/R1+1/R2+1/R11+1/R22)-1/4*((1/R1+1/R2-1/R11-1/R22)^2 - 4*(1/R1-1/R11)*(1/R2-1/R22)*(sin(th)^2))^(1/2) Del=2*(1-v1^2)/(E*(A+B)) BAr=B/A Cb=0.77 Cs=0.724 Ct=0.24 Cg=0.22 Cz=0.53 Cd=2.10 b=Cb*(P*Del)^(1/3) br=b/Del S_max=-Cs*br tau_max=Ct*br tau_oct=Cg*br Zs=Cz*b delta=Cd*P/%pi*((A+B)/br) printf('Sigma_max = %d MPa',S_max) printf('\n tau_max = %d MPa',tau_max) printf('\n tau_oct_max = %d MPa',tau_oct) printf('\n Zs = %.2f mm',Zs) printf('\n delta = %.3f mm',delta) // S_max doesn't match due to round off error
817b9f4b9c847022c55972fa9648e051edb7071a
449d555969bfd7befe906877abab098c6e63a0e8
/1748/CH2/EX2.6.p/problem2_6.sce
3d8f3969b2abcabcdf1a641790e903a66f84fb88
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
707
sce
problem2_6.sce
//problem 2.6 clc; clear; close; //given data : format('v',6); P=4;//No. of poles m=3;//No. of phase f=50;//in Hz Eff=85;//in % Pout=17;//useful output power in KW StatorLosses=900;//in watts Input=Pout/Eff*100;//in KW TLosses=Input-Pout;//in KW WnF_Losses=1100;//in Watts CuLoss=TLosses*1000-StatorLosses-WnF_Losses;//in watts RotorInput=Input-StatorLosses/1000;//in KW S=CuLoss/1000/RotorInput;//unitless disp(S,"Slip : "); Ns=120*f/P;//in rpm N=Ns-S*Ns;//in rpm //Formula : MechPower=Omega*T=2*%pi*N/60*T; T=RotorInput*1000/(2*%pi*N/60);//in Newton-meter disp(T,"Torque Devloped in Nw-m : "); Tavail=Pout*1000/(2*%pi*N/60);//in Newtons disp(Tavail,"Torque Available(Nw-m) : ");
999a2c69a5dd3cd9e5b90775145ae4676175e737
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH4/EX4.4/MF_4.sce
1a43600866ad0d6092a2b85ea9922262f787e398
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
641
sce
MF_4.sce
// sum 4-3 clc; clear; d=30; Es=0.025; Ei=0; es=11*10^-3; ei=-5*10^-3; //Shaft dia is D D=d+es; //Lower limit for hole is LLH //Upper limit for hole is ULH //Upper limit for shaft is ULS //Lower limit for shaft is LLS ULH=d+Es; LLH=d+Ei; ULS=d+es; LLS=d+ei; //Maximum interference is Cmax //minimum interference is Cmin Cmax=ULH-LLS; Cmin=ULS-LLH;; // printing data in scilab o/p window printf("ULH is %0.3f mm ",ULH); printf("\n LLH is %0.3f mm ",LLH); printf("\n ULS is %0.3f mm ",ULS); printf("\n LLS is %0.3f mm ",LLS); printf("\n Cmax is %0.3f mm ",Cmax); printf("\n Cmin is %0.3f mm ",Cmin);
4844ec91bcfedc9f474441c3ad2d0414ea5dc84c
449d555969bfd7befe906877abab098c6e63a0e8
/3835/CH3/EX3.1/Ex3_1.sce
a75cd142b6663d9c5c7fb3fa94e779c30c0b5d77
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
419
sce
Ex3_1.sce
clear // //given pi=3.14 l=%pi*0.2 //l=mean length of the ring=%pi*mean diameter of the ring A=400*10**-6 //A=cross sectional area of ring u1=1000 //u1=relative permeability of steel u2=4*%pi*10**-7 //relative permeability of air R=l/(A*u1*u2) //reluctance of steel ring printf("\n The reluctance of steel ring is= %0.0f AT/Wb",R) //case b flux=500*10**-6 f=flux*R printf("\n The magnetomotive force is= %0.0f AT",f)
4f272f3a2bc49a9424c96a77dfbb494b0aec6799
449d555969bfd7befe906877abab098c6e63a0e8
/1427/CH1/EX1.21/1_21.sce
7073037f9e79d274e65a603a0e0b1f0ef3f5d279
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
581
sce
1_21.sce
//ques-1.21 //Determining type and amount of alkalinity clc V=100;//volume of water sample (in mL) v1=4;//volume of acid required to phenolphthalein end-point (in mL) v2=16;//volume of acid required to methyl orange end-point (in mL) N=1/50;//normality of sulphuric acid P=v1*N*(1000/V)*50;//strength of alkanlinity upto phenolphthalein end-point (in ppm) M=(v1+v2)*N*(1000/V)*50;//strength of alkanlinity upto methyl orange end-point (in ppm) //P < M/2 printf("Alkalinity due to Carbonate anions is %.0f ppm and due to Hydrogen carbonate anions is %d ppm.",2*P,M-2*P);
3c5d56b6a690cdddfc7cc244605bdae16dcca7c7
449d555969bfd7befe906877abab098c6e63a0e8
/980/CH3/EX3.2/3_2.sce
38f8d9c6feff32e2598536c97dbac3ca2c9147e7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
304
sce
3_2.sce
clc; clear; format('v',6); disp("x=t,y=t,z=t","the parametric equation of straight line is","from the given points"); phi=1; //by inspecton d=[1 1 1]; //where d=dr/dt mod_d=sqrt(d(1)^2+d(2)^2+d(3)^2); L=integrate('phi*mod_d','t',0,1); disp(L,"required length=");
f6a40b91775aa41844fcfd9d994e6ceede5c602b
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH14/EX14.10/ex14_10.sce
b99ef4bb609aaa2cd62cac33eeebcb194638b5aa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
381
sce
ex14_10.sce
clc; clear all; h = 6.626e-34; // Planck's constant m = 9.11e-31; // Mass of an electron in Kg e = 1.6e-19; // Charge of an electron L = 4e-9 ; // Length of one dimensional potential well in meters n = 1; // For ground state E = (n^2*h^2)/(8*m*L^2*e); disp('eV',E,'The energy of the electron in ground state is') // Wrong answer given in textbook.. checked in calculator
c2d0b6e5cf41de2d1520427a03c771c75180af25
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/PD15MRC/ATWM1_Working_Memory_MEG_PD15MRC_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce
67110536ab1c2bbadf41070f20955aad93e049b0
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
49,599
sce
ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 43 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_006 gabor_159 gabor_096 gabor_141 gabor_006 gabor_159_alt gabor_096 gabor_141_alt "2_1_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_006_159_096_141_target_position_1_3_retrieval_position_1" gabor_006_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_1_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2142 2992 2592 fixation_cross gabor_046 gabor_062 gabor_121 gabor_167 gabor_046 gabor_062_alt gabor_121 gabor_167_alt "2_2_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_046_062_121_167_target_position_1_3_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_2_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1892 2992 2392 fixation_cross gabor_166 gabor_139 gabor_015 gabor_032 gabor_166 gabor_139_alt gabor_015 gabor_032_alt "2_3_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_166_139_015_032_target_position_1_3_retrieval_position_1" gabor_121_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_3_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2192 2992 2142 fixation_cross gabor_045 gabor_005 gabor_083 gabor_061 gabor_045_alt gabor_005 gabor_083_alt gabor_061 "2_4_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_045_005_083_061_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_111_framed blank blank blank blank fixation_cross_target_position_2_4 "2_4_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 2092 2992 2342 fixation_cross gabor_020 gabor_156 gabor_171 gabor_129 gabor_020 gabor_156_alt gabor_171 gabor_129_alt "2_5_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2350_gabor_patch_orientation_020_156_171_129_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_129_framed blank blank blank blank fixation_cross_target_position_1_3 "2_5_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_129_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_048 gabor_025 gabor_130 gabor_178 gabor_048 gabor_025 gabor_130_alt gabor_178_alt "2_6_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_048_025_130_178_target_position_1_2_retrieval_position_2" gabor_circ gabor_025_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_6_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1942 2992 2542 fixation_cross gabor_137 gabor_023 gabor_155 gabor_086 gabor_137_alt gabor_023 gabor_155 gabor_086_alt "2_7_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_137_023_155_086_target_position_2_3_retrieval_position_2" gabor_circ gabor_023_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_7_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2092 2992 2592 fixation_cross gabor_174 gabor_103 gabor_088 gabor_063 gabor_174_alt gabor_103 gabor_088_alt gabor_063 "2_8_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_174_103_088_063_target_position_2_4_retrieval_position_2" gabor_circ gabor_103_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_8_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 2042 2992 1892 fixation_cross gabor_106 gabor_123 gabor_001 gabor_151 gabor_106_alt gabor_123_alt gabor_001 gabor_151 "2_9_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_1900_gabor_patch_orientation_106_123_001_151_target_position_3_4_retrieval_position_1" gabor_061_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_9_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_061_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1992 2992 2192 fixation_cross gabor_160 gabor_008 gabor_118 gabor_141 gabor_160_alt gabor_008 gabor_118 gabor_141_alt "2_10_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_160_008_118_141_target_position_2_3_retrieval_position_2" gabor_circ gabor_008_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_10_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_113 gabor_141 gabor_095 gabor_053 gabor_113 gabor_141_alt gabor_095_alt gabor_053 "2_11_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_113_141_095_053_target_position_1_4_retrieval_position_1" gabor_161_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_11_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1892 2992 2542 fixation_cross gabor_022 gabor_106 gabor_051 gabor_137 gabor_022 gabor_106_alt gabor_051_alt gabor_137 "2_12_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_022_106_051_137_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_137_framed blank blank blank blank fixation_cross_target_position_1_4 "2_12_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1742 2992 2242 fixation_cross gabor_011 gabor_085 gabor_166 gabor_146 gabor_011_alt gabor_085 gabor_166 gabor_146_alt "2_13_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_011_085_166_146_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_166_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_13_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_166_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1892 2992 2442 fixation_cross gabor_014 gabor_171 gabor_131 gabor_097 gabor_014_alt gabor_171_alt gabor_131 gabor_097 "2_14_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_014_171_131_097_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_081_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_14_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_056 gabor_073 gabor_002 gabor_118 gabor_056 gabor_073_alt gabor_002 gabor_118_alt "2_15_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_056_073_002_118_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_002_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_15_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1742 2992 2042 fixation_cross gabor_146 gabor_001 gabor_033 gabor_173 gabor_146 gabor_001_alt gabor_033_alt gabor_173 "2_16_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_146_001_033_173_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_target_position_1_4 "2_16_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 2242 2992 2442 fixation_cross gabor_064 gabor_088 gabor_005 gabor_151 gabor_064_alt gabor_088 gabor_005 gabor_151_alt "2_17_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2450_gabor_patch_orientation_064_088_005_151_target_position_2_3_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_17_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_112_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1742 2992 2042 fixation_cross gabor_064 gabor_018 gabor_170 gabor_106 gabor_064 gabor_018_alt gabor_170 gabor_106_alt "2_18_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_064_018_170_106_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_124_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_18_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_118 gabor_088 gabor_146 gabor_034 gabor_118_alt gabor_088_alt gabor_146 gabor_034 "2_19_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_118_088_146_034_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_009_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_19_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 1992 2992 2092 fixation_cross gabor_105 gabor_179 gabor_127 gabor_150 gabor_105 gabor_179_alt gabor_127 gabor_150_alt "2_20_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2100_gabor_patch_orientation_105_179_127_150_target_position_1_3_retrieval_position_2" gabor_circ gabor_179_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_20_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_179_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1942 2992 1992 fixation_cross gabor_068 gabor_045 gabor_103 gabor_013 gabor_068 gabor_045_alt gabor_103 gabor_013_alt "2_21_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_068_045_103_013_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_152_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_21_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_092 gabor_009 gabor_158 gabor_028 gabor_092 gabor_009_alt gabor_158_alt gabor_028 "2_22_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_092_009_158_028_target_position_1_4_retrieval_position_1" gabor_142_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_22_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_142_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1842 2992 1942 fixation_cross gabor_048 gabor_137 gabor_160 gabor_022 gabor_048_alt gabor_137_alt gabor_160 gabor_022 "2_23_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_048_137_160_022_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_111_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_23_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_064 gabor_171 gabor_002 gabor_087 gabor_064_alt gabor_171 gabor_002_alt gabor_087 "2_24_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_064_171_002_087_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_037_framed blank blank blank blank fixation_cross_target_position_2_4 "2_24_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1942 2992 2292 fixation_cross gabor_177 gabor_020 gabor_135 gabor_001 gabor_177 gabor_020_alt gabor_135_alt gabor_001 "2_25_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_177_020_135_001_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_001_framed blank blank blank blank fixation_cross_target_position_1_4 "2_25_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_047 gabor_090 gabor_074 gabor_021 gabor_047_alt gabor_090 gabor_074_alt gabor_021 "2_26_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_047_090_074_021_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_160_framed blank blank blank blank fixation_cross_target_position_2_4 "2_26_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_098 gabor_116 gabor_083 gabor_132 gabor_098 gabor_116_alt gabor_083 gabor_132_alt "2_27_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_098_116_083_132_target_position_1_3_retrieval_position_1" gabor_052_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_27_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 2092 2992 2492 fixation_cross gabor_035 gabor_144 gabor_088 gabor_163 gabor_035 gabor_144_alt gabor_088 gabor_163_alt "2_28_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2500_gabor_patch_orientation_035_144_088_163_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_163_framed blank blank blank blank fixation_cross_target_position_1_3 "2_28_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_163_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_134 gabor_157 gabor_090 gabor_002 gabor_134_alt gabor_157 gabor_090_alt gabor_002 "2_29_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_134_157_090_002_target_position_2_4_retrieval_position_2" gabor_circ gabor_109_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_29_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 1742 2992 2142 fixation_cross gabor_039 gabor_095 gabor_164 gabor_114 gabor_039 gabor_095_alt gabor_164_alt gabor_114 "2_30_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2150_gabor_patch_orientation_039_095_164_114_target_position_1_4_retrieval_position_2" gabor_circ gabor_095_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_30_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_095_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2192 2992 2042 fixation_cross gabor_009 gabor_161 gabor_119 gabor_177 gabor_009_alt gabor_161 gabor_119_alt gabor_177 "2_31_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_009_161_119_177_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_177_framed blank blank blank blank fixation_cross_target_position_2_4 "2_31_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1892 2992 2192 fixation_cross gabor_032 gabor_098 gabor_179 gabor_158 gabor_032 gabor_098 gabor_179_alt gabor_158_alt "2_32_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_032_098_179_158_target_position_1_2_retrieval_position_2" gabor_circ gabor_098_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_32_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1792 2992 2192 fixation_cross gabor_007 gabor_065 gabor_154 gabor_027 gabor_007_alt gabor_065 gabor_154 gabor_027_alt "2_33_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_007_065_154_027_target_position_2_3_retrieval_position_2" gabor_circ gabor_065_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_33_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2142 2992 1892 fixation_cross gabor_109 gabor_069 gabor_092 gabor_047 gabor_109 gabor_069_alt gabor_092_alt gabor_047 "2_34_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_109_069_092_047_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_002_framed blank blank blank blank fixation_cross_target_position_1_4 "2_34_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_111 gabor_032 gabor_140 gabor_177 gabor_111 gabor_032_alt gabor_140 gabor_177_alt "2_35_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_111_032_140_177_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_140_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_35_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 2192 2992 2092 fixation_cross gabor_100 gabor_120 gabor_032 gabor_085 gabor_100_alt gabor_120_alt gabor_032 gabor_085 "2_36_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2100_gabor_patch_orientation_100_120_032_085_target_position_3_4_retrieval_position_2" gabor_circ gabor_120_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_36_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_120_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1842 2992 2292 fixation_cross gabor_148 gabor_029 gabor_166 gabor_014 gabor_148 gabor_029 gabor_166_alt gabor_014_alt "2_37_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_148_029_166_014_target_position_1_2_retrieval_position_1" gabor_103_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_37_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2142 2992 2342 fixation_cross gabor_147 gabor_087 gabor_057 gabor_106 gabor_147_alt gabor_087 gabor_057_alt gabor_106 "2_38_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2350_gabor_patch_orientation_147_087_057_106_target_position_2_4_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_38_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_139 gabor_162 gabor_123 gabor_078 gabor_139_alt gabor_162 gabor_123_alt gabor_078 "2_39_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_139_162_123_078_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_078_framed blank blank blank blank fixation_cross_target_position_2_4 "2_39_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 2042 2992 2192 fixation_cross gabor_094 gabor_169 gabor_079 gabor_146 gabor_094 gabor_169 gabor_079_alt gabor_146_alt "2_40_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_2200_gabor_patch_orientation_094_169_079_146_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_032_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_40_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_032_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_179 gabor_019 gabor_097 gabor_154 gabor_179 gabor_019_alt gabor_097_alt gabor_154 "2_41_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_179_019_097_154_target_position_1_4_retrieval_position_1" gabor_179_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_41_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1842 2992 2092 fixation_cross gabor_096 gabor_028 gabor_152 gabor_065 gabor_096_alt gabor_028 gabor_152_alt gabor_065 "2_42_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_096_028_152_065_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_115_framed blank blank blank blank fixation_cross_target_position_2_4 "2_42_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_115_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2092 2992 1892 fixation_cross gabor_084 gabor_152 gabor_112 gabor_174 gabor_084 gabor_152 gabor_112_alt gabor_174_alt "2_43_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_084_152_112_174_target_position_1_2_retrieval_position_1" gabor_132_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_43_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2192 2992 2292 fixation_cross gabor_066 gabor_113 gabor_082 gabor_001 gabor_066_alt gabor_113 gabor_082 gabor_001_alt "2_44_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_066_113_082_001_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_082_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_44_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 1792 2992 2342 fixation_cross gabor_144 gabor_097 gabor_180 gabor_122 gabor_144 gabor_097 gabor_180_alt gabor_122_alt "2_45_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2350_gabor_patch_orientation_144_097_180_122_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_074_framed blank blank blank blank fixation_cross_target_position_1_2 "2_45_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_074_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2042 2992 2342 fixation_cross gabor_120 gabor_163 gabor_180 gabor_094 gabor_120 gabor_163_alt gabor_180 gabor_094_alt "2_46_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_120_163_180_094_target_position_1_3_retrieval_position_1" gabor_073_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_46_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1942 2992 2292 fixation_cross gabor_009 gabor_034 gabor_168 gabor_062 gabor_009 gabor_034_alt gabor_168_alt gabor_062 "2_47_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_009_034_168_062_target_position_1_4_retrieval_position_1" gabor_009_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_47_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2242 2992 2442 fixation_cross gabor_127 gabor_046 gabor_107 gabor_069 gabor_127 gabor_046_alt gabor_107 gabor_069_alt "2_48_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2450_gabor_patch_orientation_127_046_107_069_target_position_1_3_retrieval_position_1" gabor_127_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_48_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2042 2992 2242 fixation_cross gabor_084 gabor_168 gabor_040 gabor_100 gabor_084 gabor_168 gabor_040_alt gabor_100_alt "2_49_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_084_168_040_100_target_position_1_2_retrieval_position_2" gabor_circ gabor_168_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_49_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1792 2992 2392 fixation_cross gabor_142 gabor_172 gabor_088 gabor_123 gabor_142 gabor_172 gabor_088_alt gabor_123_alt "2_50_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2400_gabor_patch_orientation_142_172_088_123_target_position_1_2_retrieval_position_2" gabor_circ gabor_172_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_50_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 1992 2992 1992 fixation_cross gabor_026 gabor_009 gabor_074 gabor_045 gabor_026_alt gabor_009 gabor_074_alt gabor_045 "2_51_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_2000_gabor_patch_orientation_026_009_074_045_target_position_2_4_retrieval_position_1" gabor_163_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_51_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_163_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2142 2992 2492 fixation_cross gabor_177 gabor_007 gabor_035 gabor_142 gabor_177_alt gabor_007_alt gabor_035 gabor_142 "2_52_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_177_007_035_142_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_142_framed blank blank blank blank fixation_cross_target_position_3_4 "2_52_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_142_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2192 2992 2042 fixation_cross gabor_032 gabor_144 gabor_055 gabor_120 gabor_032 gabor_144 gabor_055_alt gabor_120_alt "2_53_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_032_144_055_120_target_position_1_2_retrieval_position_1" gabor_032_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_53_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_158 gabor_077 gabor_108 gabor_092 gabor_158 gabor_077_alt gabor_108 gabor_092_alt "2_54_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_158_077_108_092_target_position_1_3_retrieval_position_1" gabor_023_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_54_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1992 2992 1942 fixation_cross gabor_179 gabor_150 gabor_028 gabor_065 gabor_179 gabor_150_alt gabor_028_alt gabor_065 "2_55_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_179_150_028_065_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_065_framed blank blank blank blank fixation_cross_target_position_1_4 "2_55_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_158 gabor_052 gabor_176 gabor_127 gabor_158 gabor_052_alt gabor_176 gabor_127_alt "2_56_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_158_052_176_127_target_position_1_3_retrieval_position_1" gabor_158_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_56_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 1892 2992 2492 fixation_cross gabor_121 gabor_089 gabor_011 gabor_061 gabor_121 gabor_089_alt gabor_011_alt gabor_061 "2_57_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2500_gabor_patch_orientation_121_089_011_061_target_position_1_4_retrieval_position_2" gabor_circ gabor_138_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_57_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_138_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_147 gabor_064 gabor_006 gabor_089 gabor_147_alt gabor_064_alt gabor_006 gabor_089 "2_58_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_147_064_006_089_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_089_framed blank blank blank blank fixation_cross_target_position_3_4 "2_58_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 1942 2992 2192 fixation_cross gabor_050 gabor_027 gabor_114 gabor_134 gabor_050 gabor_027 gabor_114_alt gabor_134_alt "2_59_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2200_gabor_patch_orientation_050_027_114_134_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_134_framed blank blank blank blank fixation_cross_target_position_1_2 "2_59_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_134_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2092 2992 2542 fixation_cross gabor_054 gabor_012 gabor_094 gabor_035 gabor_054_alt gabor_012_alt gabor_094 gabor_035 "2_60_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_054_012_094_035_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_035_framed blank blank blank blank fixation_cross_target_position_3_4 "2_60_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_052 gabor_111 gabor_092 gabor_157 gabor_052 gabor_111_alt gabor_092 gabor_157_alt "2_61_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_052_111_092_157_target_position_1_3_retrieval_position_1" gabor_005_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_61_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_103 gabor_058 gabor_148 gabor_082 gabor_103_alt gabor_058 gabor_148 gabor_082_alt "2_62_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_103_058_148_082_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_013_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_62_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_044 gabor_170 gabor_016 gabor_096 gabor_044_alt gabor_170_alt gabor_016 gabor_096 "2_63_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_044_170_016_096_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_016_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_63_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1942 2992 2492 fixation_cross gabor_164 gabor_020 gabor_145 gabor_102 gabor_164_alt gabor_020_alt gabor_145 gabor_102 "2_64_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_164_020_145_102_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_target_position_3_4 "2_64_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 63 292 292 399 125 2142 2992 1942 fixation_cross gabor_084 gabor_014 gabor_101 gabor_054 gabor_084_alt gabor_014_alt gabor_101 gabor_054 "2_65_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_1950_gabor_patch_orientation_084_014_101_054_target_position_3_4_retrieval_position_1" gabor_131_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_65_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_121 gabor_076 gabor_001 gabor_061 gabor_121 gabor_076_alt gabor_001 gabor_061_alt "2_66_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_121_076_001_061_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_138_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_66_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_164 gabor_046 gabor_081 gabor_004 gabor_164_alt gabor_046_alt gabor_081 gabor_004 "2_67_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_164_046_081_004_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_128_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_67_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1892 2992 2442 fixation_cross gabor_005 gabor_023 gabor_087 gabor_056 gabor_005 gabor_023_alt gabor_087 gabor_056_alt "2_68_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_005_023_087_056_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_136_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_68_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 64 292 292 399 125 1842 2992 2092 fixation_cross gabor_024 gabor_138 gabor_162 gabor_057 gabor_024_alt gabor_138 gabor_162 gabor_057_alt "2_69_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2100_gabor_patch_orientation_024_138_162_057_target_position_2_3_retrieval_position_1" gabor_024_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_69_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_024_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 43 61 292 292 399 125 1992 2992 1992 fixation_cross gabor_137 gabor_104 gabor_176 gabor_026 gabor_137_alt gabor_104 gabor_176 gabor_026_alt "2_70_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_137_104_176_026_target_position_2_3_retrieval_position_2" gabor_circ gabor_055_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_70_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
f2d0b707e7e98b644495a91edd603b22533f9b36
449d555969bfd7befe906877abab098c6e63a0e8
/2087/CH14/EX14.1/example14_1.sce
c41adc2a146e1d730644a4e366001d819658ecd2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
754
sce
example14_1.sce
//example 14.1 //design irrigation channel on Kennedy's theory clc;funcprot(0); //given Q=45; //discharge N=0.0225; //rogosity coefficient m=1.05; //critical velocity ratio S=1/5000; //bed slope D=2; //assume Vo=0.55*m*D^0.64; A=Q/Vo; //for a trapezoidal section B=(A-0.5*D^2)/2; P=B+D*5^0.5; R=A/P; C=(23+1/N+0.00155/S)*(R*S)^0.5/(1+(23+0.00155/S)*N/R^0.5); V=C*(R*S)^0.5; //Vo<V //assume D=2.2 D=2.2; Vo=0.55*m*D^0.64; A=Q/Vo; B=(A-0.5*D^2)/D; P=B+D*5^0.5; R=A/P; C=(23+1/N+0.00155/S)*(R*S)^0.5/(1+(23+0.00155/S)*N/R^0.5); V=C*(R*S)^0.5; //ratio of V and Vo is almost equal to 1 B=round(B*10)/10; mprintf("Width of channel section=%f m.",B); mprintf("\nDepth of channel section=%f m.",D);
2083491c1b34bfd917b099439713e48b5a8a3e80
3f330a8007c3af9c0432673cc7d4ba4d9d1a0c76
/pendulefoucault.sce
5e8303a9928ac12a3cd08a1088c5abfdf10a9842
[]
no_license
paulhausherr/penduledefoucault
1624ad679778e915cddc65edcfcf2ee5334df90e
5326b9f1b7e908052c233eae6880f01f4d4b2fce
refs/heads/main
2023-03-02T16:49:46.307128
2021-02-07T16:56:36
2021-02-07T16:56:36
336,838,662
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,278
sce
pendulefoucault.sce
Pi = 3.14; DeuxPi = 2*Pi; Jour = 24*3600; TPendule = 3600; latitude = input("Latitude en degres:"); latitude = latitude*DeuxPi/360; lat= input(" autre latitude en degré (optionnel):") Omega0 = DeuxPi/TPendule; OmegaT = DeuxPi/Jour; OMEGA = OmegaT*sin(latitude); OMEGA2 = OmegaT*sin(lat); if latitude > 0 TPlanOsc = DeuxPi/OMEGA; else TPlanOsc = 0.0; end; if lat > 0 TPlanOsc2 = DeuxPi/OMEGA2 ; else TPlanOsc2 = 0.0 ; end; t0 = 0; x0 = 1.0; y0 = 0; PasTemp = Jour/1000; t = t0:PasTemp:Jour; x = x0*cos(Omega0*t).*cos(OMEGA*t); y = -x0*cos(Omega0*t).*sin(OMEGA*t); x1= x0*cos(Omega0*t).*cos(OMEGA2*t); y1 = -x0*cos(Omega0*t).*sin(OMEGA2*t); n = length(t); plot2d(x1(1:n),y1(1:n),style = 5); plot2d(x1(1:n),y1tyle = 5); plot2d(x(1:n),y(1:n),style = 2); plot2d(x(1:n),y1tyle = 2); xtitle("rotation du plan d oscillation"); lib1 = cat(2,'Latitude = ', string(latitude*360/DeuxPi), 'degrés'); xstring(-0.95,0.90,lib1); lib2 = cat(2,'Période = ', string(TPlanOsc/3600), 'heures'); xstring(0.35, 0.90,lib2); lib3 = cat(2,'Lat2(rouge) = ', string(lat*360/DeuxPi), 'degrés'); xstring(-0.95,0.85,lib3); lib4 = cat(2,'T2 =', string(TPlanOsc2/3600), 'heures'); xstring(0.35, 0.85,lib4);
46448a17d0541ec8b8924e4ddbfa1038aaab38f3
449d555969bfd7befe906877abab098c6e63a0e8
/2858/CH1/EX1.5/Ex1_5.sce
9a08d9cab20701f8af54c396f31228efbb468339
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
171
sce
Ex1_5.sce
//example 1.5 clc; funcprot(0); F200=41; LL=31; PI=12; if 100-F200>50 then disp("soil is coarse grained") end //from table 1.5 and 1.6 disp("soil is SC");
413551bd31c5eb131069216574d88fc6ac38dc1f
68e9d6c19069591c9f3af13aedcbd686cb7053cb
/tests/ieee-mults.tst
173ad7a8fce91bd2c1146a12be789736976613ac
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-other-permissive", "BSD-2-Clause", "Zlib", "BSD-3-Clause" ]
permissive
erwinmars/hyperion
c0de7ab000e49564b98d54d5dfe9636ec0159b8c
6a042a852e52bb73ed9089c76587c0f4ed9d8d1b
refs/heads/master
2020-06-12T13:22:37.841600
2016-12-05T12:06:40
2016-12-05T12:06:40
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,308
tst
ieee-mults.tst
*Testcase ieee-mults.tst: Load Lengthened and Multiply tests *Message Testcase ieee-divs.tst: Load Lengthened and Multiply tests *Message ..includes LOAD LENGTHENED (6), MULTIPLY (9), MULTIPLY AND ADD (4) *Message ..MULTPLY AND SUBTRACT (4), 23 instr total *Message ..Test case values generate only integer results. sysclear archmode esame loadcore "$(testpath)/ieee-mults.core" runtest .1 *Compare r 420.10 # BFP Short Products part 1 Expecting 2 2 8 8 *Want "MEEB/MEEBR tests 1, 2" 40000000 40000000 41000000 41000000 *Compare r 430.10 # BFP Short Products part 2 -8 -8 4 4 *Want "MEEB/MEEBR tests 3, 4" C1000000 C1000000 40800000 40800000 *Compare r 4C0.10 # BFP Short M-Add part 1 Expecting 3 3 10 10 *Want "MAEB/MAEBR tests 1, 2" 40400000 40400000 41200000 41200000 *Compare r 4D0.10 # BFP Short M-Add part 2 Expecting -4, -4, 2, 2 *Want "MAEB/MAEBR tests 3, 4" C0800000 C0800000 40000000 40000000 *Compare r 4E0.10 # BFP Short M-Sub part 1 Expecting 1, 1, 6, 6 *Want "MSEB/MSEBR tests 1, 2" 3F800000 3F800000 40C00000 40C00000 *Compare r 4F0.10 # BFP Short M-Sub part 2 Expecting -12, -12, 6, 6 *Want "MSEB/MSEBR tests 3, 4" C1400000 C1400000 40C00000 40C00000 *Compare r 440.10 # BFP Long products from short x short part 1 Expecting 2.0 2.0 *Want "MDEB/MDEBR test 1" 40000000 00000000 40000000 00000000 *Compare r 450.10 # BFP Long products from short x short part 2 Expecting 8.0 8.0 *Want "MDEB/MDEBR test 2" 40200000 00000000 40200000 00000000 *Compare r 460.10 # BFP Long products from short x short part 3 Expecting -8.0 -8.0 *Want "MDEB/MDEBR test 3" C0200000 00000000 C0200000 00000000 *Compare r 470.10 # BFP Long products from short x short part 4 Expecting 4.0 4.0 *Want "MDEB/MDEBR test 4" 40100000 00000000 40100000 00000000 *Compare r 480.10 # BFP Long products from long x long part 1 *Want "MDB/MDBR test 1" 40000000 00000000 40000000 00000000 *Compare r 490.10 # BFP Long products from long x long part 2 *Want "MDB/MDBR test 2" 40200000 00000000 40200000 00000000 *Compare r 4A0.10 # BFP Long products from long x long part 3 *Want "MDB/MDBR test 3" C0200000 00000000 C0200000 00000000 *Compare r 4B0.10 # BFP Long products from long x long part 4 *Want "MDB/MDBR test 4" 40100000 00000000 40100000 00000000 *Compare r 300.10 # BFP Long M-Add part 1 Expecting 3 3 *Want "MADB/MADBR test 1" 40080000 00000000 40080000 00000000 *Compare r 310.10 # BFP Long M-Add part 2 Expecting 10 10 *Want "MADB/MADBR test 2" 40240000 00000000 40240000 00000000 *Compare r 320.10 # BFP Long M-Add part 3 Expecting -4, -4 *Want "MADB/MADBR test 3" C0100000 00000000 C0100000 00000000 *Compare r 330.10 # BFP Long M-Add part 4 Expecting 2, 2 *Want "MADB/MADBR test 4" 40000000 00000000 40000000 00000000 *Compare r 340.10 # BFP Long M-Sub part 1 Expecting 1, 1 *Want "MSDB/MSDBR test 1" 3FF00000 00000000 3FF00000 00000000 *Compare r 350.10 # BFP Long M-Sub part 2 Expecting 6, 6 *Want "MSDB/MSDBR test 2" 40180000 00000000 40180000 00000000 *Compare r 360.10 # BFP Long M-Sub part 3 Expecting -12, -12 *Want "MSDB/MSDBR test 3" C0280000 00000000 C0280000 00000000 *Compare r 370.10 # BFP Long M-Sub part 4 Expecting 6, 6 *Want "MSDB/MSDBR test 4" 40180000 00000000 40180000 00000000 *Compare r 500.10 # BFP Extended products from long x long part 1a *Want "MXDBR test 1a" 40000000 00000000 00000000 00000000 *Compare r 510.10 # BFP Extended products from long x long part 1b *Want "MXDBR test 1b" 40000000 00000000 00000000 00000000 *Compare r 520.10 # BFP Extended products from long x long part 2a *Want "MXDBR test 2a" 40020000 00000000 00000000 00000000 *Compare r 530.10 # BFP Extended products from long x long part 2b *Want "MXDBR test 2b" 40020000 00000000 00000000 00000000 *Compare r 540.10 # BFP Extended products from long x long part 3a *Want "MXDBR test 3a" C0020000 00000000 00000000 00000000 *Compare r 550.10 # BFP Extended products from long x long part 3b *Want "MXDBR test 3b" C0020000 00000000 00000000 00000000 *Compare r 560.10 # BFP Extended products from long x long part 4a *Want "MXDBR test 4a" 40010000 00000000 00000000 00000000 *Compare r 570.10 # BFP Extended products from long x long part 4b *Want "MXDBR test 4b" 40010000 00000000 00000000 00000000 *Compare r 580.10 # BFP Extended products from extended x extended part 1a *Want "MXBR test 1a" 40000000 00000000 00000000 00000000 *Compare r 590.10 # BFP Extended products from extended x extended part 1b *Want "MXBR test 1b" 40000000 00000000 00000000 00000000 *Compare r 5A0.10 # BFP Extended products from extended x extended part 2a *Want "MXBR test 2a" 40020000 00000000 00000000 00000000 *Compare r 5B0.10 # BFP Extended products from extended x extended part 2b *Want "MXBR test 2b" 40020000 00000000 00000000 00000000 *Compare r 5C0.10 # BFP Extended products from extended x extended part 3a *Want "MXBR test 3a" C0020000 00000000 00000000 00000000 *Compare r 5D0.10 # BFP Extended products from extended x extended part 3b *Want "MXBR test 3b" C0020000 00000000 00000000 00000000 *Compare r 5E0.10 # BFP Extended products from extended x extended part 4a *Want "MXBR test 4a" 40010000 00000000 00000000 00000000 *Compare r 5F0.10 # BFP Extended products from extended x extended part 4b *Want "MXBR test 4b" 40010000 00000000 00000000 00000000 *Done
724b7128ed0d68df680b28234ca583b89fd70969
449d555969bfd7befe906877abab098c6e63a0e8
/3392/CH7/EX7.4/Ex7_4.sce
5f583f83991b321439ed77aa19a994c61c3c0ec8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,130
sce
Ex7_4.sce
clc // initialization of variables clear P=4 //kN L=1.2 //m A=1900 //mm^2 Ix=2.783*10^6 //mm^4 Iy=1.003*10^6 //mm^4 Ixy=-0.973*10^6 //mm^4 P=P*10^3 Ix=Ix*10^-12 Iy=Iy*10^-12 Ixy=Ixy*10^-12 A=1900 //mm^2 xo=19.74 //mm yo=39.74 //mm Phi=2*%pi/3 Nr=Ixy-Ix/tan(Phi) Dr=Iy-Ixy/tan(Phi) alpha=atan(Nr/Dr) M=L*P Mx=M*sin(Phi) yA=39.74*10^-3 //m xA=-60.26*10^-3 //m xB=19.74*10^-3 yB=-80.26*10^-3 //m S_A=Mx*(yA-xA*tan(alpha))/(Ix-Ixy*tan(alpha)) S_B=Mx*(yB-xB*tan(alpha))/(Ix-Ixy*tan(alpha)) printf('part (a)') printf('\n Sigma A = %.1f M Pa \n',S_A/10^6) printf(' Sigma B = %.1f M Pa',S_B/10^6) // part (b) th=1/2*atan(-2*Ixy/(Ix-Iy)) th1=0.415 //rad th2=-1.156 //rad IX=Ix*(cos(th1))^2+Iy*(sin(th1))^2-2*Ixy*sin(th1)*cos(th1) IY=Ix+Iy-IX Phi=2*%pi/3-th1 alphA=-IX/(IY*tan(Phi)) alpha=alphA+th1 XA=xA*cos(th1)+yA*sin(th1) YA=yA*cos(th1)-xA*sin(th1) XB=xB*cos(th1)+yB*sin(th1) YB=yB*cos(th1)-xB*sin(th1) MX=M*sin(Phi) MY=-M*cos(Phi) S_A=MX*YA/IX-MY*XA/IY S_B=MX*YB/IX-MY*XB/IY printf('\n part (b)') printf('\n Sigma A = %.1f M Pa \n',S_A/10^6) printf(' Sigma B = %.1f M Pa',S_B/10^6)
146a30c94f7a26ec52c03ea3e8d32789c86249c5
8781912fe931b72e88f06cb03f2a6e1e617f37fe
/scilab/ofemdemo/demo_fe.sce
07e59c2ff36634b029bcbc6eeb3dbb12c35c7cc6
[]
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
2,828
sce
demo_fe.sce
//=========================================================// // DEMO_FE // //=========================================================// //---------------------------------------------------------// // 1. Geometry declaration with femesh // // See section 3.1.2 of the tutorial // //---------------------------------------------------------// clear model FEnode FEelt FEel0 fegui(); FEnode=[1 0 0 0 0 0 0;2 0 0 0 0 1 0; 3 0 0 0 1 0 0;4 0 0 0 1 1 0]; femesh('objectbeamline 1 3 0 2 4 0 3 4 0 1 4') femesh(';addsel;transsel 1 0 0;addsel;info'); // export FEnode and FEelt geometry in model model=femesh('model'); feplot(model); //---------------------------------------------------------// // 2. Handling material and element properties // // See section 3.1.4 of the tutorial // //---------------------------------------------------------// model.pl=[ 1 fe_mat('m_elastic','SI',1) 7.2e+10 0.3 2700 ]; model.il = [ ... // ProId SecType J I1 I2 A 1 fe_mat('p_beam','SI',1) 5e-9 5e-9 5e-9 2e-5 0 0 // longerons p_beam('dbval 2','circle 4e-3') // circular section 4 mm p_beam('dbval 3','rectangle 4e-3 3e-3') //rectangular section 4 x 3 mm ]; mpid = feutil('mpid',model.Elt); mpid(:,2) = [0 1 1 2 3 0 1 1 2 3]'; model.Elt = feutil('mpid',model.Elt,mpid); //---------------------------------------------------------// // 3. Boundary conditions and constraints // // See section 3.2.1 of the tutorial // //---------------------------------------------------------// model=fe_case(model,'SetCase1', ... // defines a new case 'FixDof','2-D motion',[.03 .04 .05]', ... 'FixDof','Clamp edge',[1 2]'); //---------------------------------------------------------// // 4. Assembly // // See section 3.3.1 of the tutorial // //---------------------------------------------------------// model = fe_mk(model); model.DOF = model.Stack(3).entries.DOF; //---------------------------------------------------------// // 5. Normal modes // // See section 3.3.3 of the tutorial // //---------------------------------------------------------// [md1,f1] = fe_eig(model.K(1).entries,model.K(2).entries,[1 4 0 11]); def = struct('def',md1,'data',f1,'DOF',model.DOF); //---------------------------------------------------------// // 6. Visualization of deformed structure // // See section 3.4 of the tutorial // //---------------------------------------------------------// medit('write visu/fe',model,def);
a58cd4304efcc9b5d827e74e8fd2b87ea7726954
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH5/EX5.29/EX_5_29.SCE
a9fc5a653eddbf1530748d672f8a43029de47c93
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
308
sce
EX_5_29.SCE
// Example 5.28:fh,fl clc; clear; close; fln=20;//in hertz fhn=100;//in kelo hertz n=3;// x=sqrt(2^(1/n)-1);// fl=x*fln;//lower cut off frequency in hertz fh=fhn/x;//upper cut off frequency in hertz disp(fl,"lower cut off frequency in hertz") disp(fh,"upper cut off frequency in killo hertz")
fd7b6b1c651ecfee3f99578db76f3c07e454e028
449d555969bfd7befe906877abab098c6e63a0e8
/2411/CH3/EX3.c.215/Ex3c_15.sce
5e9d7c1b59ba43867b58351691c5058e63aed914
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
543
sce
Ex3c_15.sce
// Scilab Code Ex3c.15: Page-188 (2008) clc; clear; D10 = 0.50; // Diameter of 10th ring, cm n = 10; // Number of dark fringe lambda = 6250e-008; // Wavelength of light used, cm R = D10^2/(4*n*lambda); // Radius of curvature of the lens, cm t = D10^2/(8*R); // Thickness of the air film, cm printf("\nThe radius of curvature of the lens = %3d cm", R); printf("\nThe thickness of the air film = %9.7f cm", t); // Result // The radius of curvature of the lens = 100 cm // The thickness of the air film = 0.0003125 cm
bb2eb162eb0143a1631218b4255946c8c7ce5c12
449d555969bfd7befe906877abab098c6e63a0e8
/273/CH14/EX14.2/ex14_2.sce
16b434b2a8cd25e1fb077a2e8e6045e4a3ee9cee
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
230
sce
ex14_2.sce
clc;clear; //Example 14.2 //calculation of intensity of laser beam //given values P=1*10^-3;//Power in Watt l=6328*10^-10;//wavelength in m A=l^2;//area in m^2 //calculation I=P/A; disp(I,'intensity (in W/m^2) is');
6611cc84c83f6f86ec686dfba82cbafff90ce17c
449d555969bfd7befe906877abab098c6e63a0e8
/3594/CH2/EX2.13/ex2_13.sce
7e90871a5f566827aa97101f13560653a381007e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
608
sce
ex2_13.sce
clc //given printf("\n") I=250//lb ft2 n=1600//rpm v=150//mph r=500//ft w=%pi*160/3//angular velocity of rotation wp=(150*88)/(60*500)//angular velocity of precession //a) with three bladed screw //T=I*w*wp T=(250/32.2)*%pi*(160/3)*wp //b)with two bladed air screw //T1=2*I*w*wp*sin(o) printf("The magnitude of gyroscopic couple is given by %.0f lb ft\n",T) //Tix=T(1-cos(2o)) lb ft //T1y=Tsin(2o)) lb ft printf("The component gyroscopic couple in the vertical plane =%.0f(1-cos(2x)) lb ft\n",T) printf("The component gyroscopic couple in the horizontal plane =%.0f(sin(2x)) lb ft\n",T)
c6aacf3ebb0aac84f4660013e5c0f8939586c5c2
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/1wall5targets_pasu cltracking.sce
09a6a592b663371ee3a9234d20d4098840e0b4ef
[]
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
32,588
sce
1wall5targets_pasu cltracking.sce
Name=1wall5targets_pasu cltracking PlayerCharacters=A_air_pistol_frozen BotCharacters=test.bot IsChallenge=true Timelimit=60.0 PlayerProfile=A_air_pistol_frozen AddedBots=test.bot;test.bot;test.bot;test.bot;test.bot PlayerMaxLives=0 BotMaxLives=0;0;0;0;0 PlayerTeam=2 BotTeams=1;1;1;1;1 MapName=thecube.map MapScale=3.8125 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=0.7 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=0.0 ScorePerKill=1.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=true ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Pistol WeaponHeroTag=Pistol DifficultyTag=3 AuthorsTag=Fuglaa BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Pazu asked me to make this GameVersion=2.0.1.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 LockFOVRange=false LockedFOVMin=60.0 LockedFOVMax=120.0 LockedFOVScale=Clamped Horizontal [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=test DodgeProfileNames=test DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=react SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=A_air_pistol_frozen MaxHealth=100.0 WeaponProfileNames=;ADSable Hitscan Cone;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=0.0 MaxCrouchSpeed=500.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=0.0 AirControl=1.0 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=230.0 MainBBRadius=55.0 MainBBHasHead=true MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=true ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=react MaxHealth=1000.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.1 MaxRespawnDelay=0.1 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=1300.0 MaxCrouchSpeed=500.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=1300.0 Gravity=1.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=10 AirJumpVelocity=1300.0 MainBBType=Cylindrical MainBBHeight=200.0 MainBBRadius=30.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=true ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.0 JetpackFullFuelTime=6000.0 JetpackFuelIncPerSec=1000.0 JetpackFuelRegensInAir=true JetpackThrust=12000.0 JetpackMaxZVelocity=1300.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=test MaxTargetDistance=99999.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.1 MaxLRTimeChange=10.0 MinFBTimeChange=0.1 MaxFBTimeChange=10.0 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.5 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.25 BlockedMovementPercent=1.0 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Weapon Profile] Name=ADSable Hitscan Cone Type=Hitscan ShotsPerClick=50 DamagePerShot=1.0 KnockbackFactor=0.0 TimeBetweenShots=0.02 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=250000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=1.5 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=10.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.0001 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.15 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.05 HitSoundCooldown=0.05 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=4.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot=Alcove Tracking Effect Helper ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.01 HitscanVisualRadius=0.04 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=70.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=None ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=true PBS0=0.0,0.0 PBS1=0.0,0.0 PBS2=0.0,0.0 PBS3=0.0,0.0 PBS4=0.0,0.0 PBS5=0.0,0.0 PBS6=0.0,0.0 PBS7=0.0,0.0 PBS8=0.0,0.0 PBS9=0.0,0.0 PBS10=0.0,0.0 PBS11=0.0,0.0 PBS12=0.0,0.0 PBS13=0.0,0.0 PBS14=0.0,0.0 PBS15=0.0,0.0 PBS16=0.0,0.0 PBS17=0.0,0.0 PBS18=0.0,0.0 PBS19=0.0,0.0 PBS20=0.0,0.0 PBS21=0.0,0.0 PBS22=0.0,0.0 PBS23=0.0,0.0 PBS24=0.0,0.0 PBS25=0.0,0.0 PBS26=0.0,0.0 PBS27=0.0,0.0 PBS28=0.0,0.0 PBS29=0.0,0.0 PBS30=0.0,0.0 PBS31=0.0,0.0 PBS32=0.0,0.0 PBS33=0.0,0.0 PBS34=0.0,0.0 PBS35=0.0,0.0 PBS36=0.0,0.0 PBS37=0.0,0.0 PBS38=0.0,0.0 PBS39=0.0,0.0 PBS40=0.0,0.0 PBS41=0.0,0.0 PBS42=0.0,0.0 PBS43=0.0,0.0 PBS44=0.0,0.0 PBS45=0.0,0.0 PBS46=0.0,0.0 PBS47=0.0,0.0 PBS48=0.0,0.0 PBS49=0.0,0.0 PBS50=0.0,0.0 PBS51=0.0,0.0 PBS52=0.0,0.0 PBS53=0.0,0.0 PBS54=0.0,0.0 PBS55=0.0,0.0 PBS56=0.0,0.0 PBS57=0.0,0.0 PBS58=0.0,0.0 PBS59=0.0,0.0 PBS60=0.0,0.0 PBS61=0.0,0.0 PBS62=0.0,0.0 PBS63=0.0,0.0 PBS64=0.0,0.0 PBS65=0.0,0.0 PBS66=0.0,0.0 PBS67=0.0,0.0 PBS68=0.0,0.0 PBS69=0.0,0.0 PBS70=0.0,0.0 PBS71=0.0,0.0 PBS72=0.0,0.0 PBS73=0.0,0.0 PBS74=0.0,0.0 PBS75=0.0,0.0 PBS76=0.0,0.0 PBS77=0.0,0.0 PBS78=0.0,0.0 PBS79=0.0,0.0 PBS80=0.0,0.0 PBS81=0.0,0.0 PBS82=0.0,0.0 PBS83=0.0,0.0 PBS84=0.0,0.0 PBS85=0.0,0.0 PBS86=0.0,0.0 PBS87=0.0,0.0 PBS88=0.0,0.0 PBS89=0.0,0.0 PBS90=0.0,0.0 PBS91=0.0,0.0 PBS92=0.0,0.0 PBS93=0.0,0.0 PBS94=0.0,0.0 PBS95=0.0,0.0 PBS96=0.0,0.0 PBS97=0.0,0.0 PBS98=0.0,0.0 PBS99=0.0,0.0 [Weapon Profile] Name=Alcove Tracking Effect Helper Type=Projectile ShotsPerClick=1 DamagePerShot=0.0 KnockbackFactor=0.0 TimeBetweenShots=0.12 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=100000.000 Y=-1000.000 Z=-1000.000 MuzzleVelocityMax=X=100000.000 Y=1000.000 Z=1000.000 InheritOwnerVelocity=1.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=0.025 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=0.1 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=0.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=999.0 HitSoundCooldown=999.0 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=2.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=1 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=4.0,0.5,2.0,8.0 SpreadSCA=4.0,0.5,2.0,8.0 SpreadMSA=4.0,0.5,2.0,8.0 SpreadMCA=4.0,0.5,2.0,8.0 SpreadSSH=4.0,0.5,2.0,8.0 SpreadSCH=4.0,0.5,2.0,8.0 SpreadMSH=4.0,0.5,2.0,8.0 SpreadMCH=4.0,0.5,2.0,8.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -248.000000 800.000000 -256.000000 552.000000 800.000000 -256.000000 552.000000 800.000000 -264.000000 -248.000000 800.000000 -264.000000 -248.000000 0.000000 -256.000000 552.000000 0.000000 -256.000000 552.000000 0.000000 -264.000000 -248.000000 0.000000 -264.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 552.000000 800.000000 -256.000000 552.000000 800.000000 544.000000 560.000000 800.000000 544.000000 560.000000 800.000000 -256.000000 552.000000 0.000000 -256.000000 552.000000 0.000000 544.000000 560.000000 0.000000 544.000000 560.000000 0.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -248.000000 0.000000 544.000000 552.000000 0.000000 544.000000 552.000000 0.000000 -256.000000 -248.000000 0.000000 -256.000000 -248.000000 -16.000000 544.000000 552.000000 -16.000000 544.000000 552.000000 -16.000000 -256.000000 -248.000000 -16.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 552.000000 800.000000 544.000000 -247.999878 800.000000 544.000000 -247.999878 800.000000 552.000000 552.000000 800.000000 552.000000 552.000000 0.000000 544.000000 -247.999878 0.000000 544.000000 -247.999878 0.000000 552.000000 552.000000 0.000000 552.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 -248.000000 800.000000 544.000000 -248.000061 800.000000 -256.000000 -256.000061 800.000000 -256.000000 -256.000000 800.000000 544.000000 -248.000000 0.000000 544.000000 -248.000061 0.000000 -256.000000 -256.000061 0.000000 -256.000000 -256.000000 0.000000 544.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -248.000000 800.000000 544.000000 552.000000 800.000000 544.000000 552.000000 800.000000 -256.000000 -248.000000 800.000000 -256.000000 -248.000000 784.000000 544.000000 552.000000 784.000000 544.000000 552.000000 784.000000 -256.000000 -248.000000 784.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -248.000000 800.000000 400.000000 552.000000 800.000000 400.000000 552.000000 800.000000 392.000000 -248.000000 800.000000 392.000000 -248.000000 0.000000 400.000000 552.000000 0.000000 400.000000 552.000000 0.000000 392.000000 -248.000000 0.000000 392.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip entity type PlayerSpawn Vector3 position 144.000000 416.000000 -232.000000 Bool8 teamA 0 entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 320.000000 256.000000 320.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position 136.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 208.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 344.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 272.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 480.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 408.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 80.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 8.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -56.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -112.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -176.000000 416.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -112.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -176.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -56.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 8.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 80.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 136.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 208.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 272.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 344.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 408.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 480.000000 544.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -112.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -176.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -56.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 8.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 80.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 136.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 208.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 272.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 344.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 408.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 480.000000 632.000000 528.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -104.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -168.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -48.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 16.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 88.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 144.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 216.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 280.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 352.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 416.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 488.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -104.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -168.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -48.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 16.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 88.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 144.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 216.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 280.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 352.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 416.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 488.000000 192.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -104.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -168.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position -48.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 16.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 88.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 144.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 216.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 280.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 352.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 416.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 488.000000 56.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0
3eed62d5689f1eafe4f8c8228a2711220d0c7f32
67310b5d7500649b9d53cf62226ec2d23468413c
/tags/archive/TestCaseGenerator-Plugin-OpeningSequenceCoverage/trunk/tests/large-system-tests/inputs/jEdit/ground_truth/OpeningSequenceCoverage/length-1/max-150/t23.tst
7e13270a84339555780571c62c046392660e2d3f
[]
no_license
csnowleopard/guitar
e09cb77b2fe8b7e38d471be99b79eb7a66a5eb02
1fa5243fcf4de80286d26057db142b5b2357f614
refs/heads/master
2021-01-19T07:53:57.863136
2013-06-06T15:26:25
2013-06-06T15:26:25
10,353,457
1
0
null
null
null
null
UTF-8
Scilab
false
false
660
tst
t23.tst
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <TestCase> <Step> <EventId>e7</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e62</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e77</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e14</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e59</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e47</EventId> <ReachingStep>false</ReachingStep> </Step> </TestCase>
184d1b5e2878d4fc380e695d3858d442b53af81f
449d555969bfd7befe906877abab098c6e63a0e8
/3640/CH4/EX4.2/Ex4_2.sce
7f2d33f182e86a6902d8c22c128c2f2dde89efe5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,215
sce
Ex4_2.sce
clc //this is an extension of Ex4_1 //following comes from Ex4_1 SCL=1000 //stator copper loss in watts V=460 //line voltage of induction motor in volts I=25 //line current of motor in amperes pf=0.85 //power factor of motor Pin=sqrt(3)*V*I*pf //ans may vary due to roundoff error Pg=Pin-SCL //air gap power RCL=500 //rotor copper loss in watts Phe=800 //core loss in watts Pfw=250 //winding and friction loss in Watts PLL=200 //stray load loss in watts DMP=Pg-RCL ///developed mechanical power in watts Prot=Phe+Pfw+PLL //power loss in rotor in watts Pout=DMP-Prot //above is from Ex4_1 s=RCL/Pg p=4 //no of poles mprintf("s=RCL/Pg=%f\n",s)//ans may vary due to roundoff error ws=(4*%pi*60)/p //synchronous angular frequency mprintf("ws=%frad/s\n",ws)//ans may vary due to roundoff error ns=(120*60)/p mprintf("ns=%drev/min\n",ns)//ans may vary due to roundoff error w=ws*(1-s) n=ns*(1-s) mprintf("w=ws(1-s)=%frad/s\n",w)//ans may vary due to roundoff error mprintf("n=ns(1-s)=%frev/min\n",n)//ans may vary due to roundoff error mprintf("τd=DMP/w=%fN-m\n",DMP/w)//ans may vary due to roundoff error mprintf("τ=Pout/w=%fN-m\n",Pout/w)//ans may vary due to roundoff error
0a15979a3f1f1db5a9ce58f62cfb8866075f014c
87749481136b7b72a47930f587f27667e0c0f97d
/LS and Signal Convolution/CLIP_F.sce
172a2dfb1f91eef40c87f3637dab8880a3151654
[ "MIT" ]
permissive
brooky56/Digital_Signal_Processing
cf15e5ac443a16edcb3efc8d7703cf4746dedcba
f28651e40b0a99b79e9ba27deabc4db8bfc7f08e
refs/heads/master
2022-06-30T17:59:28.072522
2020-05-11T18:58:39
2020-05-11T18:58:39
242,598,653
0
1
null
null
null
null
UTF-8
Scilab
false
false
41
sce
CLIP_F.sce
function f = CLIP_F(x) endfunction
ea61f5f39a1419fdee5f93163876e36cae54ece7
449d555969bfd7befe906877abab098c6e63a0e8
/3012/CH6/EX6.4/Ex6_4.sce
7013ade7238418b49e2fa56a5c0b2a76a4716117
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
492
sce
Ex6_4.sce
// Given :- Qdot = -1.2 // in kilo watt Tb = 300.0 // in kelvin Tf = 293.0 // in kelvin // Calculations // Part (a) // From entropy balance sigmadot = -Qdot/Tb // Part(b) // From entropy balance sigmadt = -Qdot/Tf // Results printf( ' The rate of entropy production with gearbox as system is %f kw/k',sigmadot) printf( ' The rate of entropy production with gearbox + sorrounding as system is %f kw/k',sigmadt)
e377fbd76ff1ec9215e06726637ecb91429e1721
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH13/EX13.7/13_7.sce
dbb03fadd84c7666cb33afe60ea36ab0aab8c56e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
13_7.sce
//Projectile //let u be the initial velocity and alpha its angle of projection //Vertical component of velocity=u*sind(alpha) //Horizontal component of velocity=u*cosd(alpha) //thus according to given condition alpha=atand(1/2) //degree //when x=18 m y=3 m //using equation of trajectory u=sqrt((9.81*(18^2))/(6*2*(cosd(26.565))^2)) //m/sec g=9.81 //m/sec //range on the horizontal plane (range) range=((u^2)*sind(2*alpha))/(g) //m printf("Range on the horizontal plane=%.2f m",range)
57ab4c450307760fc31feb23b0142c364f0048e5
449d555969bfd7befe906877abab098c6e63a0e8
/1109/CH2/EX2.9/2_9.sce
28a906704f5439fabd19764b6616c2df589890e3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
391
sce
2_9.sce
clear; clc; Vs=1;f=1000;l=150;Zo=692*exp(%i*(-%pi/(180/12)));a=0.0047;b=0.022;Vr=0; P=a+(%i*b); Ir=1/(Zo*sinh((a*l)+(b*l))); C=real(Ir); D=imag(Ir); printf("Output current(in amperes)= %f /_ %f mA",round(abs(Ir)*10^6)/1000,atan(D,C)*180/%pi); //the difference in result is due to erroneous value in textbook. disp("The difference in result is due to erroneous value in textbook")
c2f9efa21edf5f2dbf5e634e1376aec80ebf07ca
449d555969bfd7befe906877abab098c6e63a0e8
/2873/CH8/EX8.14/Ex8_14.sce
54724f0e36902218a76f8167c781d3f91619feca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,103
sce
Ex8_14.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Engineering Thermodynamics by Onkar Singh Chapter 8 Example 14") n=0.8;//efficiency of both HP and LP turbine P=2500;//output in hp disp("This is a mixed pressure turbine so the output of turbine shall be sum of the contributions by HP and LP steam streams.") disp("For HP:at inlet of HP steam=>h1=3023.5 KJ/kg,s1=6.7664 KJ/kg K") h1=3023.5; s1=6.7664; disp("ideally, s2=s1=6.7664 KJ/kg K") s2=s1; disp("s2=sf at 0.075 bar +x3* sfg at 0.075 bar") disp("from steam tables,at 0.075 bar,sf=0.5764 KJ/kg K,sfg=7.6750 KJ/kg K") sf=0.5764; sfg=7.6750; disp("so x3=(s2-sf)/sfg") x3=(s2-sf)/sfg x3=0.806;//approx. disp("h_3HP=hf at 0.075 bar+x3*hfg at 0.075 bar in KJ/kg") disp("from steam tables,at 0.075 bar,hf=168.79 KJ/kg,hfg=2406.0 KJ/kg") hf=168.79; hfg=2406.0; h_3HP=hf+x3*hfg disp("actual enthalpy drop in HP(h_HP)=(h1-h_3HP)*n in KJ/kg") h_HP=(h1-h_3HP)*n disp("for LP:at inlet of LP steam") disp("h2=2706.7 KJ/kg,s2=7.1271 KJ/kg K") h2=2706.7; s2=7.1271; disp("Enthalpy at exit,h_3LP=2222.34 KJ/kg") h_3LP=2222.34; disp("actual enthalpy drop in LP(h_LP)=(h2-h_3LP)*n in KJ/kg") h_LP=(h2-h_3LP)*n disp("HP steam consumption at full load=P*0.7457/h_HP in kg/s") P*0.7457/h_HP disp("HP steam consumption at no load=0.10*(P*0.7457/h_HP)in kg/s") 0.10*(P*0.7457/h_HP) disp("LP steam consumption at full load=P*0.7457/h_LP in kg/s") P*0.7457/h_LP disp("LP steam consumption at no load=0.10*(P*0.7457/h_LP)in kg/s") 0.10*(P*0.7457/h_LP) disp("The problem can be solved geometrically by drawing willans line as per scale on graph paper and finding out the HP stream requirement for getting 1000 hp if LP stream is available at 1.5 kg/s.") disp("or,Analytically the equation for willans line can be obtained for above full load and no load conditions for HP and LP seperately.") disp("Willians line for HP:y=m*x+C,here y=steam consumption,kg/s") disp("x=load,hp") disp("y_HP=m_HP*x+C_HP") disp("0.254=m_HP*0+C_HP") disp("so C_HP=0.254") C_HP=0.254; disp("2.54=m_HP*2500+C_HP") disp("so m_HP=(2.54-C_HP)/2500") m_HP=(2.54-C_HP)/2500 disp("so y_HP=9.144*10^-4*x_HP+0.254") disp("Willans line for LP:y_LP=m_LP*x_LP+C_LP") disp("0.481=m_LP*0+C_LP") disp("so C_LP=0.481") C_LP=0.481; disp("4.81=m_LP*2500+C_LP") disp("so m_LP=(4.81-C_LP)/2500") m_LP=(4.81-C_LP)/2500 disp("so y_LP=1.732*10^-3*x_LP+0.481") disp("Total output(load) from mixed turbine,x=x_HP+x_LP") disp("For load of 1000 hp to be met by mixed turbine,let us find out the load shared by LP for steam flow rate of 1.5 kg/s") y_LP=1.5; disp("from y_LP=1.732*10^-3*x_LP+0.481,") disp("x_LP=(y_LP-0.481)/1.732*10^-3") x_LP=(y_LP-0.481)/(1.732*10^-3) disp("since by 1.5 kg/s of LP steam only 588.34 hp output contribution is made so remaining(1000-588.34)=411.66 hp,411.66 hp should be contributed by HP steam.By willans line for HP turbine,") x_HP=411.66; disp("from y_HP=9.144*10^-4*x_HP+C_HP in kg/s") y_HP=9.144*10^-4*x_HP+C_HP disp("so HP steam requirement=0.63 kg/s")
6745d5a322e20f36a0d7f87c1ffa9e96863ae133
449d555969bfd7befe906877abab098c6e63a0e8
/69/CH2/EX2.4/2_4.sce
2431c1a496636eb4290866ca2e817b91f68da08a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
292
sce
2_4.sce
clear; clc; close; E = 8; //volts R = 2.2*10^(3); //ohms Vd = 0.7; //Diode is on Vr = E-Vd; Id = Vr/R; diary('C:\Users\DELL\Desktop\intern\chapter_2\2_4.txt'); disp(Vd,'Diode Volatge is : '); disp(Vr,'Voltage across R is : '); disp(Id,'Current through diode is : ');
4a234405566d1bd66dcc6a4be041381fef310af0
20253970b7dd99e615215029609de822e2bf855d
/judge/tests/52063/46.tst
555b3afc0f1bf60c42b5287f8e24c540c628c532
[]
no_license
B-Rich/CATS
d26d6c85cfc1dbdc78fa16f691adbfccc615df03
d299e328f9e7498ecd9f58f64069fcd57536db00
refs/heads/master
2021-01-01T06:10:11.322262
2011-06-21T15:06:06
2011-06-21T15:06:06
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,174
tst
46.tst
1000 1000 100 451 837 29 99 677 2 195 69 25 99 933 30 451 325 32 739 549 28 291 485 18 739 805 27 163 101 5 579 453 19 643 133 28 771 261 11 739 37 1 67 709 3 35 229 7 323 709 19 515 517 24 195 581 26 835 197 25 515 261 23 355 933 14 419 869 2 323 197 27 611 933 31 227 549 14 451 581 29 675 613 4 547 229 7 611 165 7 355 421 22 707 837 21 707 69 16 675 101 25 67 453 14 67 197 20 611 421 29 387 901 13 675 869 2 867 933 27 579 197 18 451 69 22 355 677 32 227 805 28 675 357 12 899 389 13 419 357 8 35 741 25 387 133 27 131 389 4 579 709 2 227 293 22 163 869 31 867 421 18 131 901 28 867 165 26 419 101 22 291 741 27 803 485 25 483 37 14 483 805 1 131 133 2 643 645 24 323 453 6 483 293 7 771 773 26 163 613 29 355 165 8 899 133 26 835 709 27 291 229 13 707 325 24 515 773 17 739 293 6 547 485 20 259 517 31 227 37 24 99 421 29 387 645 3 643 901 2 707 581 3 835 453 4 35 485 18 803 741 29 195 837 3 259 773 14 99 165 27 387 389 30 867 677 17 259 261 18 803 229 30 643 389 27 611 677 25 483 549 24 547 741 5 131 645 22 899 645 29 419 613 31 771 517 15 163 357 8 195 325 12
6ad312c39746bda6783e6d63962b191f0b29ab41
449d555969bfd7befe906877abab098c6e63a0e8
/48/CH7/EX7.5/eg_7_5.sce
55fc00da74d64731a7a05fcedda84a8be99878b3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
666
sce
eg_7_5.sce
clc; clear; n=input("Enter the no of input variables :"); //Input the true minimal vertices v=input("Enter the no of minimal true vertices :"); disp("vertex will be in the form of 101 if it is 3 variable"); for i=1:v printf('Vertex %3d :',i) s(i)=input(" "); end tv=input("enter a vertex which you want find whether true vertex or not"); //determines whether the vertex is a true or not by comparing it with the true minimal vertices for i=1:v if(tv>s(i)) disp("It is a true vertex"); break; else if(i==v) disp("It is not a true vertex since it is not > than any of the min vertices"); end end end
1c4b476b5e526fe233fe804e67be43416aff4c62
449d555969bfd7befe906877abab098c6e63a0e8
/3648/CH4/EX4.4/Ex4_4.sce
0189194a6627fc1062a5cbeb35cab28241703eea
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
632
sce
Ex4_4.sce
//Example 4_4 clc(); clear; // To calculate How far does the car goes w1=3300 //units in lb F1=4.45 //units in Newtons w2=1 //units in lb weight=w1*(F1/w2) //units in Newtons g=9.8 //units in meters/sec^2 Mass=weight/g //units in Kg speed=38 //units in mi/h speed=speed*(1.61)*(1/3600) //units in Km/sec stoppingforce=0.7*(weight) //units in Newtons a=stoppingforce/-(Mass) //units in meters/sec^2 vf=0 v0=17 //units in meters/sec x=(vf^2-v0^2)/(2*a) printf("The car goes by x=%.1f meters",x) //In text book the answer is printed wrong as x=20.9 meters the correct answer is x=21.1 meters
5b24f8fe5c451419ad74becfd4185b3c5ad7162c
87749481136b7b72a47930f587f27667e0c0f97d
/FIR filter design/lab4_task1.sci
f4c47637f8302ef2a9cd2cb3e7e3bbcf7ed30ea8
[ "MIT" ]
permissive
brooky56/Digital_Signal_Processing
cf15e5ac443a16edcb3efc8d7703cf4746dedcba
f28651e40b0a99b79e9ba27deabc4db8bfc7f08e
refs/heads/master
2022-06-30T17:59:28.072522
2020-05-11T18:58:39
2020-05-11T18:58:39
242,598,653
0
1
null
null
null
null
UTF-8
Scilab
false
false
2,276
sci
lab4_task1.sci
clc; clear all; close; //----------------------------------------------------------------------------- b = chdir('C:\Users\work\OneDrive\Documents\SciLab\lab_v4') exec('ideal_lowpass.sci') exec('ideal_highpass.sci') exec('cshift.sci') load("signal_with_noise_and_filtered.sod") //----------------------------------------------------------------------------- //Generate filters high = ideal_highpass(1024, 0.003, 0.15); high_len = length(high) frequencies_high = (0:high_len-1)/high_len * Fs; highpass = real(ifft(high)) //shifting highpass = cshift(highpass, [0 (high_len - modulo(high_len,2))/2]) low = ideal_lowpass(1024, 0.15, 0.003); low_len = length(low) frequencies_low = (0:low_len-1)/low_len * Fs; lowpass = real(ifft(low)) //shifting lowpass = cshift(lowpass, [0 (low_len - modulo(low_len,2))/2]) //----------------------------------------------------------------------------- //Plotting filters figure(0) subplot(2 ,1 ,1); plot2d("nn", frequencies_high, high, color("blue")) xlabel("Frequency, Hz", 'fontsize', 2) ylabel("Freq amplitude", 'fontsize', 2) title("Frequency response of ideal low-pass filter", 'fontsize', 3) xgrid(1) subplot(2 ,1 ,2); plot2d("nn", frequencies_low, low, color("blue")) xlabel("Frequency, Hz", 'fontsize', 2) ylabel("Freq amplitude", 'fontsize', 2) title("Frequency response of ideal high-pass filter", 'fontsize', 3) xgrid(1) //----------------------------------------------------------------------------- figure(1) //Convol two filters and apply window to decay impulse response to 0 band_pass = convol(lowpass, highpass) band_pass = band_pass.* window('kr', length(band_pass), 8) fre = (0:length(band_pass)-1)/length(band_pass) * Fs plot2d("nn", fre, abs(fft(band_pass)), color("blue")) xlabel("Frequency, Hz", 'fontsize', 2) ylabel("Freq amplitude", 'fontsize', 2) title("Frequency response of final filter", 'fontsize', 3) result = convol(signal_with_noise, band_pass) //----------------------------------------------------------------------------- figure(2) subplot(2, 1, 1) plot(signal_with_noise) xlabel("Time") ylabel("Amplitude") title("Before filtering") subplot(2, 1, 2) plot(result) xlabel("Time") ylabel("Amplitude") title("After filtering") savewave("C:\Users\work\OneDrive\Documents\SciLab\lab_v4\filtered", result, Fs)
fe7e2b1403fe3036629c930d4a869a3ca69e4223
449d555969bfd7befe906877abab098c6e63a0e8
/926/CH3/EX3.7/Chapter3_Example7.sce
80562526a2b425472abcd4a3bc77c7a4dfa384a5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Chapter3_Example7.sce
//Hougen O.A., Watson K.M., Ragatz R.A., 2004. Chemical process principles Part-1: Material and Energy Balances(II Edition). CBS Publishers & Distributors, New Delhi, pp 504 //Chapter-3, Illustration 7, Page 59 //Title: Calculation of density //============================================================================= clear clc //INPUT W = 1; //Total weight of mixture in lb w = [.111,.889]; //Weight of hydrogen and oxygen respectively in lb MW = [2,32]; //Molecular weight of hydrogen and oxygen respectively in lb/lb mole T = 30; //Given temperature in degree C T2 = 273; //Temperature at standard conditions in K P1 = 29; //Given prssure in in. Hg P2 = 29.92; //Pressure at standard conditions in in. Hg //CALCULATIONS n1 = w(1)/MW(1); //No of moles of H2 in lb mole n2 = w(2)/MW(2); //No of moles of O2 in lb mole N = n1+n2; //Total molal quantity in lb mole T1 = T+273; //given temperature in K V2 = N*359; //Volume at standard condition in cu ft V1= V2*(P2/P1)*(T1/T2); //Volume of the mixture at given conditions in cu ft rho = W/V1; //Density of the mixture at given conditions in lb per cu ft //OUTPUT mprintf('\n The density of the mixture at %2.0f in. Hg and %2.0f degree C is %5.4f lb per cu ft',P1,T,rho); //====================END OF PROGRAM===========================================
daa9de0fd6f7548723646aa8c56bee1800680ccf
449d555969bfd7befe906877abab098c6e63a0e8
/1457/CH4/EX4.2/4_2.sce
6a1d2241f6ae0cd34849568630cc67f6275da470
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
160
sce
4_2.sce
clc //Initialization of variables h=20 //m c=4187 //N m /(kg K) g=9.81 //calculations dT=g*h/c //results printf("Increase in temperature of water = %.3f K",dT)
20c2ce7b35953b7785c7f4559be0c465b14abe30
449d555969bfd7befe906877abab098c6e63a0e8
/698/CH14/EX14.12/P12_Conditions_appropriate_for_uniform_pressure.sce
fc6092a0fd37ea73c2a13d5f1d1a3e51b20ca271
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
750
sce
P12_Conditions_appropriate_for_uniform_pressure.sce
clc //Example 14.12 //Conditions preferring uniform pressure //------------------------------------------------------------------------------ //This example is derivation based, hence the code will comprise only of statements printed to text file //Printing result file to .txt res12=mopen(TMPDIR+'12_conditions_appropriate_for_uniform_pressure.txt','wt') mfprintf(res12,"Uniform pressure assumption is more appropriate where the plates are\nflexible to permit deflection when wear occurs.\n") mclose(res12) editor(TMPDIR+'12_conditions_appropriate_for_uniform_pressure.txt') //------------------------------------------------------------------------------ //-------------------------------End of program---------------------------------
a496c5cfdca0d2be31b0a9d8e2f19e78c7f65541
449d555969bfd7befe906877abab098c6e63a0e8
/3772/CH7/EX7.11/Ex7_11.sce
f37f78e531b4a953f8d3f6b8ab7f3e6f1260f02a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
703
sce
Ex7_11.sce
// Problem no 7.11,Page no.191 clc;clear; close; P=4415 //KW //Power transmitted N=110 //r.p.m sigma_s=75 //MPs //shear stress G=85 //GPa //Calculations //D=2*d T=P*60000*(2*%pi*N)**-1 //N*m //Torque Transmitted //T=%pi*16**-1*(D**4-d**4)*D**-1*sigma_s //N*m //After substituting and simplifying above equations,we get, D=(T*16*%pi**-1*(sigma_s*10**6)**-1)**(1*3**-1) d=D*2**-1 X=5*(sigma_s*10**6)**2*(16*G*10**9)**-1 //U*V**-1 //Energy stored //X=U*V**-1 //Energy stored //Notations has been changed //Result printf("Diameter of shaft is:D %.2f",D);printf(" cm") printf("\n :d %.2f",d);printf(" cm") printf("\n Energy stored per cubic meter is %.2f",X);printf(" N/m**2")
8a9d92ec8a1c1d3a0f7c62fce49917201b645888
449d555969bfd7befe906877abab098c6e63a0e8
/671/CH10/EX10.25/10_25.sce
eb3bb7b5b9cefe8f497d27e0d01082348813684e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
106
sce
10_25.sce
V=240 Ea=V n=800 I=16 Ke=V/n/I K=I/n n=sqrt(V*2/Ke/K/sqrt(2)) disp(n) Ia=sqrt(2)*K*n disp(Ia)
db7f7bf38ab1be66cac59abb57c33d8c6044a8cc
449d555969bfd7befe906877abab098c6e63a0e8
/1757/CH5/EX5.17/5_17.sce
958dd5262273a070136c9ce11428da84cb33d878
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
4,394
sce
5_17.sce
//Example5.17 // Determine the loop gain of compensated network clc; clear; close; C = 0.5*10^-6 ; // farad R = 75 ; // ohm F = 1*10^6 ; // Hz Ac1 = 150 ; angle1 = 85 ; // the close loop gain of a compensated network is defined as // Ac = Acl*Acom ; //Acom = 1/(1+%(F/FL)); FL = 1/(2*3.14*R*C); disp('FL = '+string(FL/1000)+' KHz '); // Round Off Error // Acom = 1/(1+%j(F/FL)); // After putting value of FL we get // Acom = 1/(1+%j(F/4.24*10^3)); equation 1 // As F is unknown in above equation 1 // by putting different value of F we get Acom for different frequency // If F = 0 KHz // Acom = 1/(1+%j(0/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 0 KHz = [ magnitude = 150 angle = 85 degree ]'); // If F = 2 KHz // Acom = 1/(1+%j(2*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 2 KHz= [ magnitude = 136.4 angle = 64.5 degree ]'); // If F = 4 KHz // Acom = 1/(1+%j(4*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 4 KHz = [ magnitude = 107.14 angle = 41.7 degree ]'); // If F = 6 KHz // Acom = 1/(1+%j(6*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 6 KHz = [ magnitude = 88.24 angle = 30.25 degree ]'); // If F = 8 KHz // Acom = 1/(1+%j(8*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 8 KHz = [ magnitude = 71.4 angle = 23 degree ]'); // If F = 10 KHz // Acom = 1/(1+%j(10*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 10 KHz = [ magnitude = 58.59 angle = 18 degree ]'); // If F = 20 KHz // Acom = 1/(1+%j(20*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 20 KHz = [ magnitude = 31.12 angle = 7 degree ]'); // If F = 40 KHz // Acom = 1/(1+%j(40*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 40 KHz = [ magnitude = 15.9 angle = 1.1 degree ]'); // If F = 80 KHz // Acom = 1/(1+%j(80*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 80 KHz = [ magnitude = 7.9 angle = -2 degree ]'); // If F = 100 KHz // Acom = 1/(1+%j(100*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 100 KHz = [ magnitude = 6.4 angle = -2.6 degree ]'); // If F = 200 KHz // Acom = 1/(1+%j(200*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 200 KHz = [ magnitude = 3.18 angle = -3.8 degree ]'); // If F = 400 KHz // Acom = 1/(1+%j(400*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 400 KHz = [ magnitude = 1.59 angle = -4.4 degree ]'); // If F = 800 KHz // Acom = 1/(1+%j(800*10^3/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 800 KHz = [ magnitude = 0.79 angle = -4.7 degree ]'); // If F = 1 MHz // Acom = 1/(1+%j(1*10^6/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 1 MHz = [ magnitude = 0.64 angle = -4.7 degree ]'); // If F = 1.2 MHz // Acom = 1/(1+%j(1.2*10^6/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 1.2 MHz = [ magnitude = 0.52 angle = -4.7 degree ]'); // If F = 1.4 MHz // Acom = 1/(1+%j(1.4*10^6/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 1.4 MHz = [ magnitude = 0.45 angle = -4.7 degree ]'); // If F = 1.6 MHz // Acom = 1/(1+%j(1.6*10^6/4.24*10^3)); // After solving and converting rectangular from into polar from we get disp('Acom for F = 1.6 MHz = [ magnitude = 0.4 angle = -4.7 degree ]');
a275955ea55b1dc3795bed986577a7a275541eec
449d555969bfd7befe906877abab098c6e63a0e8
/2951/CH6/EX6.7.A/additional_ex_7.sce
f3131b9b03314d890875470a4b5b27ca184947d5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
338
sce
additional_ex_7.sce
clc; clear; Nf1=7; //Noise figure of first stage in dB F1=5.01; //first power ratio Nf2=25; //Noise figure of second stage in dB F2=316.22; //second power ratio pG=15; //power gain in dB G1=31.62; //power ratio F=F1+(F2-1)/G1; disp("overall noise factor"); disp(F); disp("Overall noise factor in dB") disp(10*log10(F));
fac15fc63f74c638f51865267409ddc2f6bdedb9
449d555969bfd7befe906877abab098c6e63a0e8
/1427/CH16/EX16.16/16_16.sce
d5f7658fde0476d80187ee2b57dc10a5ffe7516e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
289
sce
16_16.sce
//ques-16.16 //Calculating energy of activation of the reaction clc k1=7*10^-7; k2=9*10^-4;//rate constant T1=280; T2=330;//temperature (in K) Ea=(log10(k2/k1)*2.303*1.987*T1*T2)/(T2-T1);//energy of activation printf("Energy of activation of the reaction is %.3f kcal/K.",Ea/1000);
82078fa05ec7296b7e3faee81faf3043127c8270
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/L35.prev.tst
2262644294b430b2f5ae46726e3e413af37085c4
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
59
tst
L35.prev.tst
Vector [0,0,0].gcd() = 0 Vector [0,0,0].extractGcd() = 0
89e5e5819fd252d6a5c560b0691610b9da8fd263
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH27/EX27.8/ex27_8.sce
0b65fc026d0c59240258916e87a7be90836d1c32
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
99
sce
ex27_8.sce
clc; disp(4/166,"Moles = "); //displaying result disp(0.024/0.8,"Litres = "); //displaying result
9b035b3af727d1e53d64b606ecdc8c2cba139623
449d555969bfd7befe906877abab098c6e63a0e8
/1895/CH8/EX8.2/EXAMPLE8_2.SCE
02a9100881b108a99d128a0fdcf2044530bbe310
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,067
sce
EXAMPLE8_2.SCE
//ANALOG AND DIGITAL COMMUNICATION //BY Dr.SANJAY SHARMA //CHAPTER 7 //WAVEFORM CODING TECHNIQUES clear all; clc; printf("EXAMPLE 8.2(PAGENO 386)"); //given f_m = 4.2*10^6//bandwidth of television signal q = 512//quantization levels //calculations //number of bits and quantization levels are related in binary PCM as q = 2^v //where v is code word length v = (log10(q)/log10(2));//code word length BW = v*f_m//transmission channel bandwidth which is greater than or equal to obtained value f_s = 2*f_m//sampling frequency which is greater than or equal to obtained value r = v*f_s//signaling rate of final bit rate SbyN_dB = 4.8 + 6*v//output signal to noise ratio which is less than or equal to obtained value //results printf("\n\ni. Code word length = %.2f bits",v); printf("\n\nii. Transmission bandwidth = %.2f Hz",BW); printf("\n\niii.Final bit rate = %.2f bits/sec",r); printf("\n\niv.Output signal to quantization noise ratio = %.2f dB",SbyN_dB); printf("\n\nNote:There is misprint in the question i.e TV signal bandwidth ")
9f9ca88b2a674a42e5e2907409ad80f108b0b417
449d555969bfd7befe906877abab098c6e63a0e8
/851/CH8/EX8.4/Example8_4.sce
815e20130ae8d26cfce0aba7454a04f73385b3ae
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,039
sce
Example8_4.sce
//clear// //Caption:Encoder for the (7,4) Cyclic Hamming Code //Example8.4:Encoder for the (7,4) Cyclic hamming code //message sequence = [1,0,0,1] //D = poly(0,D); D = poly(0,'D'); g = 1+D+0+D^3; //generator polynomial m = (D^3)*(1+0+0+D^3); //message sequence [r,q] = pdiv(m,g); p = coeff(r); disp(r,'remainder in polynomial form') disp(p,'Parity bits are:') disp('Table 8.3 Contents of the Shift Register in the Encoder of fig8.7 for Message Sequence(1001)') disp('__________________________________________________________________________________________') disp('Shift Input Register Contents') disp('__________________________________________________________________________________________') disp('1 1 1 1 0') disp('2 0 0 1 1') disp('3 0 1 1 1') disp('4 1 0 1 1') disp('____________________________________________________________________________________________')
b33d158d5594423700a2ef853dd38679c66b88c2
e41b69b268c20a65548c08829feabfdd3a404a12
/3DCosmos/BCK/Scripts/MarsProject/SUB/SUB_waypoints.SCI
06416e0d04232cbd0ae3ee98c269f9f23aa92458
[ "LicenseRef-scancode-khronos", "MIT" ]
permissive
pvaut/Z-Flux
870e254bf340047ed2a52d888bc6f5e09357a8a0
096d53d45237fb22f58304b82b1a90659ae7f6af
refs/heads/master
2023-06-28T08:24:56.526409
2023-03-01T12:44:08
2023-03-01T12:44:08
7,296,248
1
1
null
2023-06-13T13:04:58
2012-12-23T15:40:26
C
UTF-8
Scilab
false
false
3,779
sci
SUB_waypoints.SCI
#waypoint object waypointposits=list; flagposits=list; function G_waypointlistfilename() { return(ScriptDir+"\MarsProject\Data\waypointlist.3ob"); } function G_waypointcount() { return(waypointposits.size); } function G_waypoint(nr) { return(waypointposits(nr)); } function loadwaypoints() { flelist=GetFileList(G_waypointlistfilename); if flelist.size>0 then { tmplist=list; ReadObject(waypointposits,G_waypointlistfilename); } } function addwaypoint(posit) { waypointposits.add(posit); SaveObject(waypointposits,G_waypointlistfilename); } function dellastwaypoint() { if waypointposits.size>0 then { waypointposits.del(waypointposits.size-1); SaveObject(waypointposits,G_waypointlistfilename); } } function delallwaypoints() { waypointposits.clear; SaveObject(waypointposits,G_waypointlistfilename); } function G_flaglistfilename() { return(ScriptDir+"\MarsProject\Data\flaglist.3ob"); } function G_flagcount() { return(flagposits.size); } function G_flagposit(nr) { return(flagposits(nr)); } function loadflags() { flelist=GetFileList(G_flaglistfilename); if flelist.size>0 then { tmplist=list; ReadObject(flagposits,G_flaglistfilename); } } function addflag(posit) { flagposits.add(posit); SaveObject(flagposits,G_flaglistfilename); } function dellastflag() { if flagposits.size>0 then { flagposits.del(flagposits.size-1); SaveObject(flagposits,G_flaglistfilename); } } function delallflags() { flagposits.clear; SaveObject(flagposits,G_flaglistfilename); } #display the flags on a globe. flagsframe contains the subframe with the globe; radius= radius of the globe function dispflags(flagsframe,radius) { flagsframe.clearobjects; for wpnr=0 to flagposits.size-1 do { flagframe=flagsframe.addsubframe; flagframe.transf.origin=@point(radius*@vector(flagposits(wpnr))); flagframe.transf.Zaxis=vecnorm(@vector(flagposits(wpnr))); flagframe.transf.Xaxis=vecnorm(flagframe.transf.Zaxis*vector(0,0,1)); flagframe.transf.Yaxis=vecnorm(flagframe.transf.Zaxis*flagframe.transf.Xaxis); flagframe.transf.rotate(vector(0,0,1),1+wpnr*wpnr*10); flagframe.add("Cylinder","Radius":(0.0025*radius),"Color":color(0.7,0.7,0.8), "IsClosed":true,"Position":point(0,0,0),"Axis":(radius*0.1*vector(0,0,1)) ); flagframe.add("Cylinder","Radius":(0.002*radius),"Color":color(0.7,0.7,0.8), "IsClosed":true,"Position":point(0,0,radius*0.1),"Axis":vector(0,radius*0.08,0) ); flagframe.add("Sphere","Radius":(0.00253*radius),"Color":color(0.7,0.7,0.8), "Position":point(0,0,radius*0.1),"Resolution":10 ); flagframe.add("Rectangle","RenderBack":true,"Position":point(0,0,radius*0.038),"EnableLight":false,"Texture":"Flag", "Color":color(0.7,0.7,0.7),"Axis1":vector(0,radius*0.08,0),"Axis2":vector(0,0,radius*0.06)); } } #display the waypoints on a globe. wpsframe contains the subframe with the globe; radius= radius of the globe function dispwaypoints(wpsframe,radius) { wpsframe.clearobjects; for wpnr=0 to waypointposits.size-1 do { wpframe=wpsframe.addsubframe; wpframe.add("Cylinder","Radius":(0.006*radius),"Color":color(1,0,1), "IsClosed":true,"Position":@point(radius*@vector(waypointposits(wpnr))), "Axis":(radius*0.03*@vector(waypointposits(wpnr))) ); if wpnr>0 then { rtobj=wpframe.add("Curve","Color":color(0.5,0,0), "CurveRenderType":CurveRenderDot,"Size":2,"Arrow2Size":0.02); makepartialcircle(rtobj, radius*1.003*@vector(waypointposits(wpnr-1)), radius*1.003*@vector(waypointposits(wpnr))); } } }
b817157eb8c356254f098144a10a169c7d0f5299
449d555969bfd7befe906877abab098c6e63a0e8
/1076/CH8/EX8.8/8_8.sce
fa6a510bb320890bffa25ed00ab2426ed827e6a5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
382
sce
8_8.sce
clear; clc; V=11e3; V=V/sqrt(3); f=50; C1=.65; C2=.75; Cs=C2/3; Cc=(C1/2)-(C2/6); C=Cs+(3*Cc); mprintf("\n(a)effective capacitance of each of the core to neutral = %.2f e-6 F",C); I=V * 2 * %pi * f * C*1e-6 ; mprintf("\n(b)Charging Current I= %.3f A/phase", I); Cap=(1.5*Cc) + (.5 * Cs); mprintf("\n(c)Capacitance between any 2 conductors = %.3f e-6 F",Cap);
c8004e482c3825a68a5187364e4c22ddb110567d
449d555969bfd7befe906877abab098c6e63a0e8
/2384/CH10/EX10.5/ex10_5.sce
2fdd632c0819d7d83d5cf1013b101990e19c6434
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
423
sce
ex10_5.sce
// Exa 10.5 clc; clear; close; format('v',6) // Given data P = 30;// in kW P = P * 10^3;// in W V = 300;// in V Ra = 0.05;// in ohm Rsh = 100;// in ohm // p = V*I_L; I_L = P/V;// in A Ish = V/Rsh;// in A Ia = I_L+Ish;// in A Eg = V + (Ia*Ra);// in V // power developed by armature power = (Eg*Ia);// in W power = power * 10^-3;// in kW disp(power,"The total power developed by the armature in kW is");
b3e4ca83205b5075ea66425f3b2ca43df891e31f
42fdf741bf64ea2e63d1546bb08356286f994505
/test_20161201_lowleveltool_paper/input_benchmark3.sce
438788f39643453109901b52360eef1c8f9d48c2
[]
no_license
skim819/RASP_Workspace_sihwan
7e3cd403dc3965b8306ec203007490e3ea911e3b
0799e146586595577c8efa05c647b8cb92b962f4
refs/heads/master
2020-12-24T05:22:25.775823
2017-04-01T22:15:18
2017-04-01T22:15:18
41,511,563
1
0
null
null
null
null
UTF-8
Scilab
false
false
157
sce
input_benchmark3.sce
format("v",16); clc; W(1:3,1:12)=1e-11 f0=logspace(2,3.61,12) Gain_bias=linspace(4.000e-08,10e-6,12) Feedback_bias=linspace(4.000e-10,6e-9,12) State(1:24)=0
24e45e609de4589dcd82021ce5ed6866df60fcbb
449d555969bfd7befe906877abab098c6e63a0e8
/1859/CH5/EX5.7/exa_5_7.sce
759c2f352d354d440e6e9fec9f983281afcb74b8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
341
sce
exa_5_7.sce
// Exa 5.7 clc; clear; close; // Given data Vin= 2;// in volt Vout= 10;// in volt R=100;// kohm R=R*10^3;// in ohm C= 0.1;// in miu F C=C*10^-6;// in F // Vout= -1/(R*C)*integrate('Vin','t',0,t) = -Vin*t/(R*C) t= Vout*R*C/Vin;// in sec disp(t*10^3,"The maximum time upto which the reference voltage can be integrated in ms");
109c16a7ef96880e69319a125b7055cb4543c4b4
5f2ca8e18735204f5995ac7e44a6e301eb23ea0b
/scripts/tests/eqm_f16.tst
4bf099c58fc0fe703416853d948e70803d9b7b5b
[]
no_license
Jettanakorn/mcflight
4e7d4e20976e8f3621bf13fec2a8b522ecfc49a9
e6579a11e10c5e9ae9ee558f464a6b88e1ae7a26
refs/heads/master
2023-03-17T10:49:28.906700
2019-10-30T20:20:58
2019-10-30T20:20:58
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
705
tst
eqm_f16.tst
//<-- NO CHECK REF --> exec('eqm/eqm.sci'); exec('eqm/params_f16.sci'); params = load_f16(); params.xcg = .4; controls.throttle = 0.9; controls.elev_deg = 20; controls.ail_deg = -15; controls.rudder_deg = -20; X= [ 500 0.5 -0.2 -1 1 -1 0.7 -0.8 0.9 1000 900 10000 90 ]; DX = eqm(0, X, controls, params); DX_expected = [ -75.23724 -0.8813491 -0.4759990 2.505734 0.3250820 2.145926 12.62679 0.9649671 0.5809759 342.4439 -266.7707 248.1241 -58.68999 ]'; error_perc = abs((DX-DX_expected')./DX)*100; assert_checktrue(error_perc<=0.5); disp('All calculations with error less than 0.5%'); disp(error_perc);
e76ddaf32a7a5ad125132501002f73c805101d6a
449d555969bfd7befe906877abab098c6e63a0e8
/3683/CH16/EX16.1/Ex16_1.sce
889e4805ce313b0c2db9cb4758d512292e0a7f26
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
348
sce
Ex16_1.sce
Df=120//in mm bf=1100//in mm bw=275//in mm d=450//in mm Ast=2700//in sq mm fy=500//in MPa fck=25//in MPa Asf=round(0.36*fck*bf*Df/0.87/fy)//area of steel required for flange, in sq mm //as Ast<Asf, Xu<Df Xu=0.87*fy*Ast/0.36/fck/bf//in mm Mu=0.36*fck*bf*Xu*(d-0.416*Xu)/10^6//in kN-m mprintf("Moment of resistance of T-beam=%f kN-m",Mu)
0e2408657dbba67d769623fa93fb449f15980a24
449d555969bfd7befe906877abab098c6e63a0e8
/2795/CH13/EX13.8/Ex13_08.sce
12661f1fd42130ffbce910b7553fee043484c439
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
487
sce
Ex13_08.sce
// Scilab Code Ex13.8: Page-500(2014) clc; clear; u = 931.5; // Energy equivalent of 1 amu, MeV M_He = 4.002603; // Mass of He nucleus, u M_C = 12.0 // Mass of carbon nucleus, u M_O = 15.994915; // Mass of oxygen nucleus, u Q = (M_He + M_C - M_O)*u; // Q-value of the reaction, MeV printf("\nThe energy expended in the fusion reaction inside supergiant star = %3.1f MeV", Q); // Result //The energy expended in the fusion reaction inside supergiant star = 7.2 MeV
b15ca29d280927ea7fc26140fea12fbd86e6529d
e223a3388730b3a8ab63f7565156d5bf7a65e44b
/scilab/start.sce
ca92978a6f317d27c912ae949dca61672fe26b8a
[]
no_license
YSBF/flight_control
1cfef21947c9497659eea3cf631b4de207a0a851
fc74021c2bd62819ea4f637b45936ab2edf9e7af
refs/heads/master
2020-04-15T21:47:09.796455
2018-06-07T21:28:29
2018-06-07T21:28:29
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
492
sce
start.sce
// Reset FPGA rw(reg.FPGA_RESET,1); sleep(1); // FPGA version v = rw(reg.VERSION); mprintf('FPGA version: %d\n',v); rw(reg.LED_MUX,1); rw(reg.DBG_MUX,1); // Reset MPU i2c_write(107,128); sleep(1); // MPU version v = i2c_read(117,1); mprintf('MPU version: %d\n',v); i2c_write(107,0); // get MPU out of sleep sleep(1); i2c_write(26,1); // Filter ON (=> Fs=1kHz) i2c_write(107,1); // clk = gyro i2c_write(56,1); // enable interrupt // Give I2C control to FPGA rw(reg.I2C_HOST_CTRL,0);
41b8525856f45dbe03211a3117ba3576b72c20a5
90ee2315583fd980367421b5516fc008eb133c22
/MENU/testscripts/mqsc_test_queue.tst
b431bf46ced0acddf8287348fd0cc1d526bdb9e5
[]
no_license
skmpersonal/docs
8503f989d3eff41238c2f756b924e6530ec8e26c
ed8c9b3b5a3a9c1e413ceac2ba5016aa29743014
refs/heads/master
2021-01-17T05:32:59.924577
2017-07-07T19:26:42
2017-07-07T19:26:42
96,567,160
0
0
null
null
null
null
UTF-8
Scilab
false
false
216
tst
mqsc_test_queue.tst
DEFINE QLOCAL('TEST.LOCAL.QUEUE') + DEFPSIST(YES) + MSGDLVSQ(FIFO) + MAXMSGL(104857600) + MAXDEPTH(10) + DESCR('Testing queues') + QDPHIEV(ENABLED) + NOREPLACE
7fb483cac4d1c6f0836e8cff634e095a603a007a
67310b5d7500649b9d53cf62226ec2d23468413c
/tags/archive/TestCaseGenerator-Plugin-OpeningSequenceCoverage/trunk/tests/large-system-tests/inputs/jEdit/ground_truth/OpeningSequenceCoverage/length-1/max-150/t8.tst
19e6855abb8c065e3632c4f53293f7167a046f05
[]
no_license
csnowleopard/guitar
e09cb77b2fe8b7e38d471be99b79eb7a66a5eb02
1fa5243fcf4de80286d26057db142b5b2357f614
refs/heads/master
2021-01-19T07:53:57.863136
2013-06-06T15:26:25
2013-06-06T15:26:25
10,353,457
1
0
null
null
null
null
UTF-8
Scilab
false
false
661
tst
t8.tst
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <TestCase> <Step> <EventId>e51</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e53</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e64</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e25</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e45</EventId> <ReachingStep>false</ReachingStep> </Step> <Step> <EventId>e31</EventId> <ReachingStep>false</ReachingStep> </Step> </TestCase>
21e87f06f93cba4131a50cd7a972bb0ef551df01
449d555969bfd7befe906877abab098c6e63a0e8
/1985/CH2/EX2.7/Chapter2_example7.sce
c61ac6d1163a640fab3b92b89a1a47b20b0a9082
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
537
sce
Chapter2_example7.sce
clc clear //Input data l=3//Length of the wire in m Y=(12.5*10^10)//Youngs modulus in N/m^2 d=1//diameter of the wire in mm M=10//load applied in kg p=0.26//Poissons ratio //Calculations dl=(M*9.8*l)/(3.14*(d/2)^2*10^-6*Y)//Increase in length in m sl=(p*dl)/l//Lateral strain dd=(sl*d*10^-3)//Decrease in diameter in m E=dl/10^-3//Extensio produced in m*10^-3 lc=dd/10^-7//Lateral compression in m*10^-7 //Output printf('Extension produced is %3.2f *10^-3 m \n Lateral compression produced is %3.3f *10^-7 m',E,lc)
b620c6c0d064d049f992ad799f026fadb85182f6
449d555969bfd7befe906877abab098c6e63a0e8
/2561/CH2/EX2.2/Ex2_2.sce
521b3d7e7e18a37773c37d30f953d106bd1ac41d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
699
sce
Ex2_2.sce
//Ex2_2 //refer to fig 2.1(c) ,fig.2.3(b) and fig.2.3(c) clc VF=5 disp("source voltage,VF = "+string(VF)+ " volts")//initialization VD=0.7 disp("voltage drop,VD = "+string(VD)+ " volts")//initialization R=5*10^(3) disp("resistance,R = "+string(R)+ "ohm")//initialization RF=100 disp("resistance,R = "+string(RF)+ "ohm")//initialization VR=0.6 disp("VR = "+string(VR)+ " volts")//initialization IA=(VF-VD)/R //formulae disp("Diode current ,IA = "+string(IA)+" ampere") // calculation IA=(VF-VR)/(R+RF)// Formulae disp(" using large signal model,IA = "+string(IA)+" ampere") // calculation VAK=(VR+IA*RF)// Formulae disp("Junction voltage,VAK ="+ string(VAK)+" volts")//calculation
e1f83ed5179f44a5a2db85794c5481d06090d630
3c47dba28e5d43bda9b77dca3b741855c25d4802
/microdaq/macros/load_last_dsp_image.sci
49a3f91bb607110a9514fec19d492ddb37ce01e3
[ "BSD-3-Clause" ]
permissive
microdaq/Scilab
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
refs/heads/master
2021-09-29T11:55:21.963637
2019-10-18T09:47:29
2019-10-18T09:47:29
35,049,912
6
3
BSD-3-Clause
2019-10-18T09:47:30
2015-05-04T17:48:48
Scilab
UTF-8
Scilab
false
false
1,204
sci
load_last_dsp_image.sci
function load_last_dsp_image() global %microdaq; // TODO add verification if binary name is same as model if isfile(TMPDIR + filesep() + "last_model") == %t then // read dspPath, dspTsamp, dspDuration from file load(TMPDIR + filesep() + "last_model"); [path, fname, extension] = fileparts(dspPath); try mdaqDSPInit(dspPath, -1, dspDuration); disp("### Loading DSP executable " + fname + extension + " on MicroDAQ...") catch %microdaq.dsp_loaded = %T messagebox(lasterror(), "Error", "error") end %microdaq.dsp_loaded = %T if mdaqIsExtMode() == %F then mdaqDSPStart(); if dspDuration > 0 then durationStr = string(dspDuration) else durationStr = "Inf" end msg = "(duration: " + durationStr + "s, rate: " + string(1/strtod(dspTsamp)) + "Hz)..." disp("### Starting "+ fname + " in Ext mode " + msg); end else messagebox("Can''t find DSP application. Build model first", "Error", "error") end endfunction
c16bcc07464146a6867d0a2694863082439c49bb
449d555969bfd7befe906877abab098c6e63a0e8
/165/CH12/EX12.2/ex12_2.sce
1b9af84c0c059fdd12f3a9d06a91203ac148a86b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
235
sce
ex12_2.sce
//Example 12.2 clc; f=20; //Frequency in Hz time_base=5; //one cycle of signal recorded in mm period=invr(f); chart_speed=time_base/period; printf('\nChart speed of signal is %d mm/s\n',chart_speed)
be2ca42c16cf3dd7958fdb9f0884c86e86c20107
449d555969bfd7befe906877abab098c6e63a0e8
/2495/CH1/EX1.5.7/Ex1_5_7.sce
c7daa2008820cd4abdda9b10e27029bfb5281263
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
204
sce
Ex1_5_7.sce
clear; clc; T1=373.15;//in K P1=76.0;//in cmHg T2=363.15//in K DelHm_v=2268;//in J/gm R=8.314;//in J/Kmol P2=P1*(10^((DelHm_v*18/(2.303*R))*(1/T1-1/T2))) printf('P2=%.1f cmHg',P2) //page 19
75608890aba46e65e33acf41c3a320c1a7d393eb
449d555969bfd7befe906877abab098c6e63a0e8
/331/CH6/EX6.1/Example_6_1.sce
69ff814d041b2527c0bd975669c4e070467547ed
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,240
sce
Example_6_1.sce
//Caption:Probability of occurrence of 'A' given that 'B' has occurred //P(A/B) //Example6.1 //Page 171 clear; clc; //A be the event that an employee's monthly salary is more than Rs.15,000 //B be the event that the employee is a regular taker of Alpha Brand Tea n = 200; //total number of employee's A_intersec_B = 20; //Alpha Brand tesa takers both in A and B P_AinterB = A_intersec_B/n;//Probability that Alpha brand tea takers both in A&B B = 120; //Number of Alpha Brand tea takers P_B = B/n; // Probility of number of Alpha brand tea takers P_AB = P_AinterB/P_B; disp(P_AinterB,'Probability that Alpha brand tea takers both in A&B P(A intersection B)=') disp(P_B,'Probility of number of Alpha brand tea takers P(B)=') disp('The probability that employee is having monthly salary more than') disp(P_AB,'Rs.15,000, if the employee is a regular taker of Alpha brand Tea P(A/B)=') //Result //Probability that Alpha brand tea takers both in A&B P(A intersection B)= // 0.1 //Probility of number of Alpha brand tea takers P(B)= // 0.6 //The probability that employee is having monthly salary more than //Rs.15,000, if the employee is a regular taker of Alpha brand Tea P(A/B)= // 0.1666667
cfc0833d8a866da217ac52b7d1af649aad37dc14
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH2/EX2.55/EX_2_55.SCE
06441dabfd2306f63b2740092bc7253f7d921e07
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
545
sce
EX_2_55.SCE
// Example 2.55:ressitive paramters clc; clear; close; Ic= 5; //in milli amperes Vt=26;//volatge //H Paramters are hie=1;//in killo ohms hfe=100; hoe=4*10^-5;// in ampere per volt hre=10^-4; gm=Ic/Vt;//transconductance rbe= hfe/gm;// in ohms rbb=hie*10^3-rbe;//in ohms rbc=(rbe/(hre)*10^-6);//in mega ohms gce1=hoe-(1+hfe)*(1/(rbc*10^6));//in mho rce=(1/gce1)*10^-3;//in killo ohms disp(gm,"transconductance") disp(rbe,"in ohms") disp(rbc,"in mega ohms") disp(rbb,"in ohms") disp(gce1,"in mho") disp(rce,"in killo ohms")
12b515dca3a188d05e09461fc5cc4f5e1cca0c22
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set9/s_Engineering_Mechancis-schaum_Series_Mclean_3137.zip/Engineering_Mechancis-schaum_Series_Mclean_3137/CH8/EX8.1/Ex8_1.sce
03c466839011b3588a1a5613d86577c2508fa3b1
[]
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
258
sce
Ex8_1.sce
errcatch(-1,"stop");mode(2);//Initilization of variables R_A=100 //N R_B=200 //N //Calculations //Shear force at 2m V=100 //N //Moment at 2m M=R_A*2 //N.m //Result printf('The shear force at 2m is %fN and the moment at 2m is %fN-m',V,M) exit();
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)
01c22b67d5ac9d1923df2aaf7016cd45d61b5c07
449d555969bfd7befe906877abab098c6e63a0e8
/587/CH11/EX11.10/example11_10.sce
a6b47199510a5fa96820eb5eb34ab952529754aa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
775
sce
example11_10.sce
clear; clc; //Example11.10[Installing a Heat Exchanger to Save Energy and Money] //Given:- Cp=4.18;//[kJ/kg.degree Celcius] Th_in=80,Tc_in=15;//Inlet temperatures of hot and cold water[degree Celcius] m=15/60;//[kg/s] e=0.75;//Effectiveness t=24*365;//Operating Hours[hours/year] neta=0.8;//Eficiency cost=1.10;//[$/therm] //Solution:- Q_max=m*Cp*(Th_in-Tc_in);//[kJ/kg.degree Celcius] disp("kJ/kg.degree Celcius",Q_max,"Maximun Heat recover is") Q=e*Q_max;//[kJ/s] E_saved=Q*t*3600;//[kJ/year] disp("kJ/year",E_saved,"The energy saved during an entire year will be") F_saved=(E_saved/neta)*(1/105500);//[therms] disp("therms/year",F_saved,"Fuel savings will be") M_saved=F_saved*cost;//[$/year] disp("per year",M_saved,"The amount of money saved is $")
9eeb15620b8bc70e80eff05ff1072b8d611dc8f2
a45f93853fdb67523e71e3e7fb88c4298eae1ef7
/Screens/Multiplayer Stats Screen.tst
30ba5c89c570bb8437bfd78913cd52ff49a4212f
[]
no_license
voarsh/Disney-Treasure-Planet-Battle-at-Procyon
68192cbfdf8b823bc8399e3ea1e62d4976b74aed
99cbbc70701ef6e8f9d95eba1052635de992910f
refs/heads/master
2020-04-16T01:44:03.761947
2016-06-08T10:25:05
2016-06-08T10:25:05
38,745,932
3
0
null
null
null
null
UTF-8
Scilab
false
false
1,459
tst
Multiplayer Stats Screen.tst
ScreenName String 'Multiplayer Stats Screen' ImplName String 'InGameMenu Screen' ElementChunkArray Int 5 ScreenElementType Int 0 ImplName String 'Game Lobby Backdrop' TabIndex Int 1 Selectable Bool False Enabled Bool True ReferenceArea Rect( 0, 0, 800, 600 ) # left,top,right,bottom ScreenElementType Int 1 ImplName String 'Open Next Arrow Button' TabIndex Int 3 Selectable Bool True Enabled Bool True ReferenceArea Rect( 350, 500, 450, 600 ) # left,top,right,bottom Font String 'DebugFont' Text String 'IDGS_TPFRONTENDTEXT_SCREENS_NULL' Color Colour( 1.000000, 1.000000, 1.000000, 1.000000 ) HotKey Int -1 ScreenElementType Int 0 ImplName String 'Game Stats - Player Kills by Object Type' TabIndex Int 8 Selectable Bool True Enabled Bool True ReferenceArea Rect( 0, 0, 800, 600 ) # left,top,right,bottom ScreenElementType Int 1 ImplName String 'Center Justify Label' TabIndex Int 3 Selectable Bool True Enabled Bool True ReferenceArea Rect( 3, 71, 800, 112 ) # left,top,right,bottom Font String 'BlackChancery22' Text String 'IDGS_TPFRONTENDTEXT01_GAME_SUMMARY' Color Colour( 0.000000, 0.000000, 0.000000, 1.000000 ) HotKey Int -1 ScreenElementType Int 1 ImplName String 'Center Justify Label' TabIndex Int 3 Selectable Bool True Enabled Bool True ReferenceArea Rect( 0, 68, 800, 112 ) # left,top,right,bottom Font String 'BlackChancery22' Text String 'IDGS_TPFRONTENDTEXT01_GAME_SUMMARY' Color Colour( 1.000000, 0.796100, 0.000000, 1.000000 ) HotKey Int -1
f6f4b1f69bfa04e9ced50b60a8f6b8faaee44b14
449d555969bfd7befe906877abab098c6e63a0e8
/858/CH2/EX2.3/example_3.sce
d4eaa19c6761ea22fb3a6d15c2bfa869ea5197d1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
446
sce
example_3.sce
clc clear printf("example 2.3 page number 72\n\n") //to find equivalent mass of metal P=104.3 //total pressure in KPa pH2O=2.3 //in KPa pH2=P-pH2O; //in KPa VH2=209*pH2*273/(293*101.3) printf("volume of hydrogen obtained = %f ml\n\n",VH2) //calculating amount of metal having 11.2l of hydrogen m=350/196.08*11.2 //mass of metal in grams printf("mass of metal equivalent to 11.2 litre/mol of hydrogen = %f gm",m)
382ad252bf92ee1ee5a85c38e68010d824e3c76b
9d545f988a80789144df937ce4a90017c378cb92
/Lab 9/PCM_transmision.sce
0e6378c5be71d3d31690a3c7481c679fd3f51116
[]
no_license
tshrjn/EE304P
215dc669daaf372242afe2c1f580a36df26e51ce
ac1c045262dd0b419354d2d22861c734508b7b8e
refs/heads/master
2021-01-10T03:02:18.270276
2015-12-01T02:42:16
2015-12-01T02:42:16
46,113,211
1
0
null
null
null
null
UTF-8
Scilab
false
false
629
sce
PCM_transmision.sce
//Caption: PCM_ Transmission (includesfunctions: uniformpcm.sce,PCMencoding.sce) //This program is a sample program for Pulse Code Modulation transmission //step1:The given analog signal converted into quantized sample value //step2:Then the quantized sample value converted into binary value clc; close; t=0:0.001:1; x=sin(2*%pi*t); L=16; //Step1 [SQNR,xq,en_code] = uniform_pcm(x,L); //Step2 c = PCM_Encoding(x,L,en_code); a= gca(); a.x_location=”origin”; a.y_location=”origin”; plot2d2(t*2*%pi,x); plot2d2(t*2*%pi,xq,5); title(’QuantizationofSampledanalogsignal’) legend([’Analogsignal’,’QuantizedSignal’])
50c9afd233b0c39e3cde1c8fff00854a9189e475
449d555969bfd7befe906877abab098c6e63a0e8
/3014/CH7/EX7.9/Ex7_9.sce
04c29812e568627ac0df47c14d6d045d8d36f73f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
387
sce
Ex7_9.sce
clc //Given that mu_0 = 4*%pi*1e-7 // Permeability of free space mu = mu_0 //Permeability of silver sigma = 3e7 // conductivity in mhos/m f = 1e10 // frequency in Hz printf("Example 7.9") delta = sqrt(1/(%pi*sigma*f*mu)) // Calculation of skin depth penetration printf("\n Skin depth penetration is %f micrometre. \n\n\n",delta*1e6) // Answer in book is 0.93 micrometer
ff4386a6adb615c760f612b0bdbebdfb2b0f1dbf
449d555969bfd7befe906877abab098c6e63a0e8
/62/CH6/EX6.33/ex_6_33.sce
f04c1649a9c6cb61ddff8bf64d474ab2d2a2fb3d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
664
sce
ex_6_33.sce
clear; clc; close; n=-20:19; h=sinc(%pi*n/4)/4; disp("it can be seen that h[n] is a filter that allows frequencies between -%pi/4 and +%pi/4") disp("therefore only the dc part of x[n] is passed i.e c0") subplot(2,1,1) plot2d3(n,h); plot(n,h,'r.'); xtitle('h[n]','n') w=-4:0.01:4; Hw=h*exp(-%i*n'*w); subplot(2,1,2) plot2d(w,Hw); title("H[w] fourier transform") T0=5; w0=%pi*2/5; z=[ones(1,3) zeros(1,2)]; x=[]; for i=1:length(n)/T0 x=[x z]; end figure subplot(2,1,1) plot2d3(n,x); plot(n,x,'r.') xtitle('x[n]','n') c0= (1/5)*sum(z); y=ones(1,length(n))*c0; subplot(2,1,2) plot2d3(n,y); plot(n,y,'r.--') xtitle('y[n]','n')
5929f0e39c7998aa800539545d8f31caddde85b7
f25ee4abda9ba1a9d55bd552ca6e1cc8e051e711
/Summary Evaluation Method/mead/bin/evaluation/content_based/my.tst
afc30cb29cbd806ab4858cb2009a7c4372ca6094
[]
no_license
ayushoriginal/Multi-Document-Summarization
ac5dfcd107c2e97c79912b566b3c9c9cd891fb76
7e9b111afca3448f1be03c0757b07a1468b73254
refs/heads/master
2021-03-24T12:01:42.131361
2017-04-23T09:49:03
2017-04-23T09:49:03
82,290,696
30
13
null
null
null
null
UTF-8
Scilab
false
false
386
tst
my.tst
<DOC doc_ID="1" sys_ID="test1"> <segment> CE thanks civil servants for good work The Chief Executive of the Hong Kong Special Administrative Region (HKSAR), Mr Tung Chee Hwa, today (Thursday) thanked civil servants who had worked exceedingly hard in making handover-related events successful. A solemn, historic ceremony has marked the resumption of the exercise of. </segment> </DOC>
2e8c3bcb5237d99ffbbedf300453389a20208d84
61ae130448957e9d317026c24a8fd467e6bb08c9
/src/test/resources/SimpleNestedCall/SimpleNestedCallVME.tst
5004dba5d0c0a1e368be08a6a412a35390cf3c53
[]
no_license
toonketels/nand2tetris-vm-translator
d38921aa4196cf7021a5cbce5db46885b3b8e7c3
dfd283fc53db0d0119286675d3462ff5d0ca7ec9
refs/heads/main
2023-06-01T04:14:38.446476
2021-06-24T08:07:38
2021-06-24T08:07:38
379,851,276
0
0
null
null
null
null
UTF-8
Scilab
false
false
314
tst
SimpleNestedCallVME.tst
load SimpleNestedCall.vm, output-file SimpleNestedCall.out, compare-to SimpleNestedCall.cmp, output-list RAM[0]%D1.6.1 RAM[1]%D1.6.1 RAM[2]%D1.6.1 RAM[3]%D1.6.1 RAM[4]%D1.6.1 RAM[256]%D1.6.1; set sp 256, set local 256, set argument 256, set this 3000, set that 4000, repeat 30 { vmstep; } output;
298a2268e0680111cf6f1f9fac7def86c3512a55
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/dsutsrtu.sce
5392840c937287a2a58e0d45401526e79fb29b7f
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
17,745
sce
dsutsrtu.sce
Name=dsutsrtu PlayerCharacters=PUBG Char BotCharacters=Quaker Bot Fast Strafes.bot IsChallenge=false Timelimit=60.0 PlayerProfile=Quaker AddedBots=Quaker Bot Fast Strafes.bot PlayerMaxLives=0 BotMaxLives=0 PlayerTeam=2 BotTeams=1 MapName=cataicfps.map MapScale=3.8125 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=3.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=true ScoreMultKillEfficiency=false GameTag=Reflex, Quake WeaponHeroTag=akm DifficultyTag=3 AuthorsTag=KovaaK BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Low pressure hitscan tracking against a hard to hit target. GameVersion=2.0.0.2 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=At Feet MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Low Skill At Feet MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Low Skill MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=Quaker Bot Fast Strafes DodgeProfileNames=Short Strafes DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Quaker SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=PUBG Char MaxHealth=200.0 WeaponProfileNames=PUBG;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=5.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=2.0 MovementType=Base MaxSpeed=1000.0 MaxCrouchSpeed=500.0 Acceleration=24000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.125 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=true EnemyBodyColor=X=0.774 Y=0.000 Z=0.000 EnemyHeadColor=X=0.729 Y=0.537 Z=0.839 TeamBodyColor=X=0.000 Y=0.000 Z=0.774 TeamHeadColor=X=0.729 Y=0.537 Z=0.839 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=210.0 MainBBRadius=40.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=230.0 ProjBBRadius=60.0 ProjBBHasHead=true ProjBBHeadRadius=30.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Quaker MaxHealth=300.0 WeaponProfileNames=;;LG;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=1300.0 MaxCrouchSpeed=500.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=Short Strafes MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.1 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Weapon Profile] Name=PUBG Type=Projectile ShotsPerClick=1 DamagePerShot=45.0 KnockbackFactor=0.0 TimeBetweenShots=0.06 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=75000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=75000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=30 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=45.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=0.7 ADSStartDelay=0.0 ShootSoundCooldown=0.05 HitSoundCooldown=0.05 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=0.6 PSRADSScale=1.0 ProjectileAcceleration=-2.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.0 AimPunchCooldown=0.0 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=45000.0 PSRManualNegation=true PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Horizontal (16:9) ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,3.0,-1.0,0.5 SpreadSCA=1.0,3.0,-1.0,0.3 SpreadMSA=1.0,3.0,-1.0,0.5 SpreadMCA=1.0,3.0,-1.0,0.3 SpreadSSH=1.0,3.0,-1.0,3.0 SpreadSCH=1.0,3.0,-1.0,1.0 SpreadMSH=1.0,3.0,-1.0,3.0 SpreadMCH=1.0,3.0,-1.0,1.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=-0.6 MaxRecoilHoriz=0.6 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.3 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=true AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=3 PSRViewRecoilTracking=1.0 PSRCapUp=90.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 PSR0=0.5,0.0 PSR1=0.5,0.0 PSR2=0.5,0.0 PSR3=1.0,0.0 UsePerBulletSpread=false [Weapon Profile] Name=LG Type=Hitscan ShotsPerClick=1 DamagePerShot=6.0 KnockbackFactor=2.0 TimeBetweenShots=0.046 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=7.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.05 BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true 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 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=70.0 ADSFOVScale=Quake/Source ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data]
a42fcc0511e198e6b1bf0845136d51193d5e349f
449d555969bfd7befe906877abab098c6e63a0e8
/2135/CH7/EX7.5/Example7_5.sce
15252151284623e10f7f7b466c7c40f0c15b51bc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
244
sce
Example7_5.sce
//Ex 7.5 clc; clear; close; format('v',7); //Given data : Vs=5.7;//litre Vs=Vs/1000;//m^3 Pm=600;//KN/m^2 N=800;//rpm //Calculation n=N/2;//No. of strokes/min IP=Pm*Vs*n/60;//KW disp(IP,"Indicated power of Engine in KW : ");
7d7263ecfe75e0d87840e969838aaf0e75f7d3b2
449d555969bfd7befe906877abab098c6e63a0e8
/1553/CH23/EX23.9/23Ex9.sce
8abfc9d72da420f0263b756460f75ce84b310961
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
207
sce
23Ex9.sce
//chapter 23 Ex 9 clc; clear; close; //(i) n1=25 ans1=log10(n1); mprintf("The value of log %d is %.3f",n1,ans1); //(ii) n2=4.5 ans2=log10(n2); mprintf("The value of log %d is %.3f",n2,ans2);
86fcf4e51e5ea9269cffcefdbf70c5397bd13692
449d555969bfd7befe906877abab098c6e63a0e8
/1802/CH8/EX8.8/Exa8_8.sce
b662ee8a8aa830dff3ed3a384588e5057de28c38
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
330
sce
Exa8_8.sce
//Exa 8.8 clc; clear; close; //given data format('v',9); P=10;//in Ohm Q=80;//in Ohm S2=3400;//in Ohm S1=2400;//in Ohm X=P*(S2-S1)/(P+Q);//in Ohm LoopResistance=P*S2/Q;//in Ohm ResistancePerKm=LoopResistance/10;//in Ohm Distance=X/ResistancePerKm;//in Km disp(Distance,"Distance of fault from testing end in Km : ");
4a816de4429eb631ca934d32a376da7434e7be80
449d555969bfd7befe906877abab098c6e63a0e8
/3871/CH5/EX5.4/Ex5_4.sce
9653f766d7d31c4f54bfecef3f746f8e466a5039
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
648
sce
Ex5_4.sce
//=========================================================================== //chapter 5 example 4 clc;clear all; //variable declaration Vac = 500; //voltage in V Iac = 0.1; //current in A f = 50; //frequency in Hz L = 0.8; //inductance in H Vdc = 300; //voltage in V Z =5000; //calculations W = 2*(%pi)*f*L; R = (sqrt((Z^2)-(W^2))); //resistance in Ω Idc = Vdc/(R); //instrument current in A V = (Vac/(Iac))*(Idc); //Reading of instrument when connected to 300V in V //result mprintf("Reading of instrument when connected to 300V = %3.1f V",V);
b1fb93bb349350e26b8fc11af2c4a5773c467ae9
449d555969bfd7befe906877abab098c6e63a0e8
/3876/CH3/EX3.4/Ex3_4.sce
fc11da87a86db5e3aed7d310a2b8fee63da2cf90
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
239
sce
Ex3_4.sce
//Chapter 3 Liquids clc; clear; //Initialisation of Variables n2= 10.05*10**-3 //poise d1= 0.879 //gms cm^-3 t= 88 //sec d2= 1 //gms cm^-3 t1= 120 //sec //Calculations n1= d1*t/(d2*t1) //Results mprintf("Relative Viscosity= %.3f",n1);
4c9e2014d93bbab3380fe770c57aab176847b485
717ddeb7e700373742c617a95e25a2376565112c
/278/CH3/EX3.3/ex_3_3.sce
053223e414c28728f172289faac35c1ec1009b15
[]
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
521
sce
ex_3_3.sce
//find dimensions of hole and shaft in all three cases //a.)12 mm elctric motion //12 mm lies between 10 and 18,therefore D=sqrt(10*18)//mm i=0.45*(D)^0.33+0.001*D//standard tolrence unit IT8=25*i*0.001//mm//standard tolerance for IT8 es=-11*(D)^0.41*0.001//mm//upper deviation for shaft ei=es-IT8//mm//lower deviation for shaft printf("the standard tolerance for shaft and hole of grade 8 is,%f mm\n",IT8) printf("the upper deviation for shaft is, %f mm",es) printf("the upper deviation for shaft is,%f mm",ei)
6e992d53c1b9a40d31e6436597d31d0b90d832bb
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH7/EX7.6/Ex7_6.sce
82f1b8238f68905dfb8ba67c1751fd3c2e488e15
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
412
sce
Ex7_6.sce
//Example 7_6 page no:265 clc; Vmag=(50*7.21)/7.28;//Voltage across(4+j6)ohm Vang=0+56.3-15.95; Zrel=4.83; Zimg=1-1.095; Zmag=sqrt((Zrel*Zrel)+(Zimg*Zimg)); Zang=atand(Zimg/Zrel); disp(Vmag,"magnitude of thevenin voltage is(in V)"); disp(Vang,"angle of thevenin voltage is(in degree)"); disp(Zmag,"magnitude of thevenin impedence is(in ohm)"); disp(Zang,"angle of thevenin impedence is(in degree)");
f5fcb798bd466cccebe533c8f9bd930a5bba7c79
57a39df08383d18148a77915551223cef3bc8cd6
/inductor.sce
f28fceb655013719cacd1071f9c69e02a2905314
[]
no_license
sonusharma55/Misc.-MATLAB-Scilab
0abbc7ab22e963b3b3e147a18e17af2f3021d3ce
dbfaab1b84719948ef665798c4192e6ca934e46a
refs/heads/master
2020-07-25T22:00:11.975476
2019-09-14T12:31:37
2019-09-14T12:31:37
208,434,501
0
0
null
null
null
null
UTF-8
Scilab
false
false
460
sce
inductor.sce
f=10^7:10^8:10^10; w=2*%pi.*f; N=3.5; rad=0.05*0.0254; len=0.05*0.0254; a=(5*0.0254*10^-3)/2; u0=4*%pi*10^-7; sig_cu=64.516*10^6; e0=8.854*10^-12; l=(%pi*rad^2*u0*(N^2))/len; c=(e0*4*%pi*rad*(N^2)*a)/len; r=(2*rad*N)/(sig_cu*(a^2)); z=1 ./((1 ./(r+w*%i*l))+w*%i*c); zideal=w*%i*l; plot2d("gll",f,abs(z)); plot2d(f,abs(zideal)); title("Frequency response of a high frequency Inductor"); xlabel("Frequency(f) in Hz"); ylabel("Absolute impedance (|Z|) in ohms");
6083f46f07c9d86708cc8cf3c71aa2ef03fada2e
5b14d330ace788383138f839d8d4a7ab563dc101
/scilab/eeg_mwm.sce
225381a670d6956d49b39b53fa013f0b1d89f9ba
[]
no_license
cereberus/chartula
3b8c4aebf761186e01ec751b29abf99ade685243
3f261e37f98ffa435e55fa68295e4a233f83aff2
refs/heads/master
2020-05-29T22:54:24.022137
2017-06-20T14:23:14
2017-06-20T14:23:14
28,778,262
0
1
null
null
null
null
UTF-8
Scilab
false
false
2,769
sce
eeg_mwm.sce
eeg_data=csvRead("baseline_raw.csv"); eeg_att_med=csvRead("esense_raw.csv"); /////// [wier_eeg kol_eeg]=size(eeg_data); [wier_a_m kol_a_m]=size(eeg_att_med); //loop to calculate millivolts from raw signal for i=1:1:wier_eeg eeg_data(i,2)=((eeg_data(i,2)*(1.8/4096))/2000)*1000; end // //tworzy wykres atencji do czasu figure(); a=gca(); a.data_bounds=[0 0;15 100]; a.font_size=5; f=get("current_figure") f.figure_size=[1200,400] title("Attention level during the examination","fontsize",6); xlabel("seconds (s)","fontsize",5); ylabel("attention level","fontsize",5); plot(eeg_att_med(:,1),eeg_att_med(:,2),'rd-'); //////////////////// //tworzy wykres medytacji do czasu figure(); a=gca(); a.data_bounds=[0 0;15 100]; a.font_size=5; f=get("current_figure") f.figure_size=[1200,400] title("Meditation level during the examination","fontsize",6); xlabel("seconds (s)","fontsize",5); ylabel("meditation level","fontsize",5); plot(eeg_att_med(:,3),eeg_att_med(:,4),'kd-'); /////////////////// //tworzy wykres sygnalu do czasu figure(); a=gca(); a.font_size=5; f=get("current_figure") f.figure_size=[1200,400] title("EEG signal in millivolts over the time","fontsize",6); xlabel("seconds (s)","fontsize",5); ylabel("millivolts (mV)","fontsize",5); plot(eeg_data(:,1),eeg_data(:,2),'b-'); ///////// disp("") signal_mean = mean(eeg_data(:,2)); disp("signal_mean") disp(signal_mean) disp("") signal_stdev = stdev(eeg_data(:,2)); disp("signal_stdev") disp(signal_stdev) disp("") signal_variance = variance(eeg_data(:,2)); disp("signal_variance") disp(signal_variance) disp("") att_med_correl = correl(eeg_att_med(:,2),eeg_att_med(:,1)); disp("attention_level meditation_level corelation") disp(att_med_correl) disp("") ///// signal_mean_range = 0 counter=0 for i=1:1:wier_eeg if eeg_data(i, 1)>4 & eeg_data(i, 1)<8 signal_mean_range = signal_mean_range + eeg_data(i,2); counter=counter+1; end end signal_mean_range=signal_mean_range/counter disp("What is mean signal value between 4th and 8th second?") disp("signal_mean_range in range 4-8 seconds") disp(signal_mean_range) mean_att = 0; mean_med = 0; for i=1:1:wier_a_m mean_att = mean_att + eeg_att_med(i,2); mean_med = mean_med + eeg_att_med(i,4); end //whether the meditation or the attention is higher mean_att=mean_att/wier_a_m; mean_med=mean_med/wier_a_m; disp("") disp("Is the mean attention higher or the mean meditation?") if mean_att>mean_med then disp("Mean attention is higher with the value:") disp(mean_att) disp("While mean meditation is:") disp(mean_med) elseif mean_att<mean_med then disp("Mean meditation is higher with the value:") disp(mean_med) disp("While mean attention is:") disp(mean_att) end
94e7c678f7cec594cca1605ee432f864960489b4
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH3/EX3.16/Ex3_16.sce
12502f76fa773ec38547a7b06fa107e6126d1dbe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
302
sce
Ex3_16.sce
//Tension in horizontal rope //Refer fig. 3.27 (a),(b)&(c) //Considering equilibrium of the entire system RB=500/2 //N RA=RB //N (symmetry) R1=500/(2*cosd(60)) //N R2=R1 //N //Taking moment about C T=((500*0.866)+(250*1.2*0.5))/(1.8*sind(60)) //N printf("The tension is:-\nT=%.1f N",T)