blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
6
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
87
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
15 values
visit_date
timestamp[us]date
2016-08-04 09:00:04
2023-09-05 17:18:33
revision_date
timestamp[us]date
1998-12-11 00:15:10
2023-09-02 05:42:40
committer_date
timestamp[us]date
2005-04-26 09:58:02
2023-09-02 05:42:40
github_id
int64
436k
586M
star_events_count
int64
0
12.3k
fork_events_count
int64
0
6.3k
gha_license_id
stringclasses
7 values
gha_event_created_at
timestamp[us]date
2012-11-16 11:45:07
2023-09-14 20:45:37
gha_created_at
timestamp[us]date
2010-03-22 23:34:58
2023-01-07 03:47:44
gha_language
stringclasses
36 values
src_encoding
stringclasses
17 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
15 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
76f2fe5ff70e3798ed0b7c596f85dcb7de47f833
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/tests/examples/champ.man.tst
cbd3ba88c1c06c0e38ef848498dfb36a2b1c76b3
[ "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
222
tst
champ.man.tst
clear;lines(0); // using rect as plot boundaries champ(-5:5,-5:5,rand(11,11),rand(11,11),1,[-10,-10,10,10],"011") // using (x,y) to get boundaries xbasc() champ(-5:5,-5:5,rand(11,11),rand(11,11),2,[-10,-10,10,10],"021")
e9d8c0d1ef197dfd44af94db7236a44ff010e83d
449d555969bfd7befe906877abab098c6e63a0e8
/812/CH10/EX10.03/10_03.sce
bcaf8b526ab5eae0388eb693c3859a13766a5146
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
976
sce
10_03.sce
//Pump Power// pathname=get_absolute_file_path('10.03.sce') filename=pathname+filesep()+'10.03-data.sci' exec(filename) [nQ mQ]= size(Q); [nps mps]=size(ps); [npd mpd]= size(pd); [nI mI]= size(I); //Correct measured static pressures to he pump centreline p1, p2(in psig): j=1:mps; p1=ps(j)+px*g*zs/144 j=1:mpd; p2=pd(j)+px*g*zd/144 //The value of Pump head(in feet): j=1:mps; Hp=(p2(j)-p1(j))/(px*g)*144 //Values of Hydraulic Power delivered(in hp): j=1:mps; Wh=Q(j).*(p2(j)-p1(j))/7.48/60*144/550 //Values of motor power output(in hp): j=1:mI; Pin=Effm*sqrt(3)*PF*E*I(j)/746 //Values of Pump Efficiecy: j=1:mI; Effp= Wh(j)./Pin(j)*100 //Plotting pump characteristics: plot(Q,Hp,"-o") plot(Q,Pin,"-+") plot(Q,Effp,"-*") xtitle('Pump Characteristics','Volume flow rate(in gpm)',['Pump Efficincy(%) ',' Pump Head(in feet) ',' Pump Power input(in hp) ']) legend('Hp','Pin','Effp')
8ad181b00af1d50921c6e1f0ee632d7fe4ffede1
449d555969bfd7befe906877abab098c6e63a0e8
/1673/CH2/EX2.21/2_21.sce
36140b4ea5a85744669f7d257bc5f7417d4b80b4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
563
sce
2_21.sce
//ramanujan's method //example 2.21 //page 45 clc;clear;close; deff('y=f(x)','1-((13/12)*x-(3/8)*x^2+(1/24)*x^3)'); a1=13/12,a2=-3/8,a3=1/24; b1=1; b2=a1; b3=a1*b2+a2*b1; b4=a1*b3+a2*b2+a3*b1; b5=a1*b4+a2*b3+a3*b2; b6=a1*b5+a2*b4+a3*b3; b7=a1*b6+a2*b5+a3*b4; b8=a1*b7+a2*b6+a3*b5; b9=a1*b8+a2*b7+a3*b6; printf('\n\n%f',b1/b2); printf('\n%f',b2/b3); printf('\n%f',b3/b4); printf('\n%f',b4/b5); printf('\n%f',b5/b6); printf('\n%f',b6/b7); printf('\n%f',b7/b8); printf('\n%f',b8/b9); printf('\n it appears as if the roots are converging at 2')
1ac32ff320d352b84c920999c5eaedbc7cb98936
449d555969bfd7befe906877abab098c6e63a0e8
/2699/CH13/EX13.23/Ex13_23.sce
1b22de823f6134d45ec5619ba97922fa0c62b99f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
143
sce
Ex13_23.sce
//Ex13_23 PG-13.13 clc clear printf("conversion of decimal number 54 base to a number with base 4 =") a=[54] x=dec2base(a,4); printf(" %s",x)
def43bef2869618759fc2fc6895d664cfb7af37b
449d555969bfd7befe906877abab098c6e63a0e8
/539/CH17/EX17.1/Example_17_1.sce
f9047f214a1b7c4f90141a8fcde40d7cc5db6ec1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
575
sce
Example_17_1.sce
//Determination of Electrochemical Cell Characteristics clear; clc; printf("\tExample 17.1\n"); V_Cd=-0.403; //Half Cell Potential of Cd++|Cd V_Ni=-0.250; //Half Cell Potential of Ni++|Ni dV=V_Ni-V_Cd; printf("\nStandard Cell potential is : %f V\n",dV); C_Ni=10^-3; C_Cd=0.5; n=2; //Net electron exchange in Redox reaction V=-dV-(0.0592*log10(C_Ni/C_Cd)/n); printf("\nNet EMF is : %f V\n",V); printf("\nHence\n"); if V<0 then printf("\nNi is reduced & Cd is oxidised\n"); else printf("\nCd is reduced & Ni is oxidised\n"); end //End
7242aedb41468ab49939e0d6c7d480425167c5d7
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH7/EX7.9/Ex7_9.sce
c2df296338348ab17be22352d0b91e7e4e271613
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
273
sce
Ex7_9.sce
//Example 7.9 m=65;//Mass of player (kg) v_i=6;//Initial velocity (m/s) f=450;//Force of friction (N) d=m*v_i^2/(2*f);//Distance slid (m) printf('Distance slid = %0.2f m',d) //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
5e24c8ed434d5fe2040b78cf6930c1d826928e79
449d555969bfd7befe906877abab098c6e63a0e8
/3651/CH4/EX4.3/3.sce
ff7aaf8fed8a006cf661450c8e83f00f749469a1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
3.sce
//Variable declaration d=970; //density(kg/m**3) Na=6.02*10**26; //avagadro number w=23; //atomic weight m=9.1*10**-31; //mass(kg) h=6.62*10**-34; //planck's constant //Calculation N=d*Na/w; //number of atoms/m**3 x=h**2/(8*m); y=(3*N/%pi)**(2/3) EF=x*y; //fermi energy(J) //Result printf('fermi energy is %0.3f eV \n ',(EF/(1.6*10**-19)))
67ea6f96e05322728f67dde42e2051f316a90e63
449d555969bfd7befe906877abab098c6e63a0e8
/689/CH8/EX8.10/10.sce
2f358741df7cb9e87f58838758cd6f7118098b53
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
385
sce
10.sce
clc; funcprot(0); //Example 8.10 Polar Curves // Initialisation of variables W = 2000; S = 180; V = 120*1.467; rho = 0.002378; // Calculations Cl = 2*(W/S)/(rho*V^2); Cd = 0.019 ; //From fig 8.19 LbyD = Cl/Cd; L = W; // for level flight lift = weight D = L/LbyD; HP = D*V/550; //Results disp(HP,"Horse power required to move the wing forward(hp) :");
85f8bacfffdf13b783b44e2f36e46f5408635c61
449d555969bfd7befe906877abab098c6e63a0e8
/2126/CH1/EX1.11/11.sce
5a59164ed26cc1ff76fa9f34cd7d03e7980d5239
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,285
sce
11.sce
clc clear //Input data T=20+273 //Temperarture of medium in K Cp_fr=678 //Specific heat capacity at constant pressure of freon in J/kg-K Cv_fr=543 //Specific heat capacity at constant volime of freon in J/kg-K T_air=0+273 //Temperature of air in K Ri=8314 //Ideal gas constant in J/mol-K mol_h=2 //Molecular weight of Hydrogen in kg/mol mol_water=18 //Molecular weight of water in kg/mol R_air=287 //Specific gas constant of air in J/kg-K k=1.4 //Adiabatic constant of hydrogen k_water=1.3 //Adiabatic constant of water //Calculation R_h=Ri/mol_h //Specific gas constant of hydrogen in J/kg-K a_h=sqrt(k*R_h*T) //Velocity of sound in hydrogen in m/s R_water=Ri/mol_water //Specific gas constant of water in J/kg-K a_water=sqrt(k_water*R_water*T) //Velocity of sound in water vapour in m/s k_fr=Cp_fr/Cv_fr //Adiabatic constant of feoan R_fr=Cp_fr-Cv_fr //Specific gas constant of freon in J/kg-K a_fr=sqrt(k_fr*R_fr*T) //Velocity of sound in freon in m/s a_air=sqrt(k*R_air*T_air) //Sonic Velocity of air at in m/s //Output printf('(A)Velocity of sound in hydrogen is %3.2f m/s\n (B)Velocity of sound in water vapour is %3.2f m/s\n (C)Velocity of sound in freon is %3.2f m/s\n (D)Sonic Velocity of air at %3i K is %3.4f m/s',a_h,a_water,a_fr,T_air,a_air)
fb8ed4711ad5f1674eb69f14c9baee7be0b17dc3
449d555969bfd7befe906877abab098c6e63a0e8
/3281/CH4/EX4.12/ex4_12.sce
3e0a3abe1c0915fa303da6c44e1ad4107e25f0a1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
672
sce
ex4_12.sce
//Page Number: 215 //Example 4.12 clc; //Given f=5D+9;//hz sig=5.813D+7; er=2.25; tandel=4D-4; c=3D+8; //m/s h01=3.832; u=4D-7*%pi; //Length of resonator lamr=c/(f*sqrt(er)); d=sqrt([{(((2*3.832)^2)+(%pi*%pi))*(lamr*lamr)}/(2*2*%pi*%pi)]); disp('cm',d*100,'Length of resonator:'); //Q of resonator n=(120*%pi)/sqrt(er); Rs=sqrt((f*u)/sig); a=d/2; Qw1=n*[[(h01/a)^2+(%pi/d)^2]^(3/2)]; Qw2=2*Rs*[((h01*h01)/(a*a*a))+((2*%pi*%pi)/(d*d*d))]; Qw=Qw1/Qw2; Qd=1/tandel; Q=(Qw*Qd)/(Qw+Qd); disp(Q,'Q of resonator:'); //Value of Qw is calculated wrong in the book, it should be 50057.91 instead of 53473.8 //Hence the value of Q also differs
45447fa7783c83fac4552e005728c71c3789d7b5
449d555969bfd7befe906877abab098c6e63a0e8
/1373/CH7/EX7.22/Chapter7_Example22.sce
5629bcf1fc28b7dfd807ccf54c7e2e3618291ec4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,033
sce
Chapter7_Example22.sce
//Chapter-7, Example 7.22, Page 320 //============================================================================= clc clear //INPUT DATA D=0.022;//Diamter of the tube in m v=2;//Average velocity in m/s Tw=95;//Temperature of tube wall in degree C T=[15,60];//Initial and final temperature of water in degree C //CALCULATIONS Tm=(T(1)+T(2))/2;//Bulk mean temperature in degree C p=990;//Density of air at 37.5 degree C in kg/m^3 Cp=4160;//Specific heat of air at 37.5 degree C in J/kg.K u=(0.69*10^-3);//Dynamic viscosity of air at 37.5 degree C in Ns/m^2 k=0.63;//Thermal conductivity of air at 37.5 degree C in W/m.K us=(0.3*10^-3);//Dynamic viscosity of air at 37.5 degree C in Ns/m^2 Re=(p*v*D)/u;//Reynolds number Pr=(u*Cp)/k;//Prantl number Nu=(0.027*Re^(4/5)*Pr^(1/3)*(u/us)^0.14);//Nusselts number h=(Nu*k)/D;//Heat transfer coefficient in W/m^2.K //OUTPUT mprintf('Heat transfer coefficient is %3.0f W/m^2.K',h) //=================================END OF PROGRAM==============================
8d44da73883a88f4c1ca6b10585113d4b6b8918d
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH6/EX6.11/Ex6_11.sce
2e9a99d24ac4e0fa4059a4f3cdd72094704437e7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,110
sce
Ex6_11.sce
clc; P=4; r1=0.15; x1=0.45; r2=0.12; x2=0.45; Xm=28.5; s=0.04; V=400; f=50; Pfixed=400; //from problem 6.10 Re=0.1476; Xe=0.443; r2=0.12; x2=0.45; a=Xm/(x2+Xm); //Ve=a*V1; Wr=(4*%pi*f)/P; b=(3/Wr)*(1/2)*(1/((Re)+(sqrt((Re*Re)+((x2+Xe)*(x2+Xe)))))); //Tem=b*Ve*Ve //for part a V1=230; Ve1=a*V1; Tem1=b*Ve1*Ve1; mprintf('for part a \n maximum internal torque developed is %f Nm \n',Tem1); //for part b V2=115; Ve2=a*V2; Tem2=b*Ve2*Ve2; mprintf('for part b \n maximum internal torque developed is %f Nm \n',Tem2); //for f=25 Hz Xe1=(1/2)*Xe; x21=(1/2)*x2; Ws1=(1/2)*Wr; //for part c V3=115; Ve3=a*V3; Tem3=(3/Ws1)*Ve3*Ve3*(1/2)*(1/((Re)+(sqrt((Re*Re)+((x21+Xe1)*(x21+Xe1)))))) mprintf('for part c \n maximum internal torque developed is %f Nm \n',Tem3); //for f=5 Hz Xe2=(1/10)*Xe; x22=(1/10)*x2; Ws2=(1/10)*Wr; //for part d f3=5; //f3=(1/10)*f V4=23; Ve4=a*V4; Tem4=(3/Ws2)*Ve4*Ve4*(1/2)*(1/((Re)+(sqrt((Re*Re)+(((x22+Xe2)*(x22+Xe2))))))) mprintf('for part d \n maximum internal torque developed is %f Nm \n',Tem4);
ab8268e2f22c03d4b7f7010946f8afff6935d786
449d555969bfd7befe906877abab098c6e63a0e8
/2594/CH5/EX5.22/Ex5_22.sce
099dc31840eaf8e3f063e2fa5136e99bac22b6cb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
672
sce
Ex5_22.sce
clc Na=10^16 disp("Na = "+string(Na)+"cm^-3") //initializing value of acceptor concentration. Nd=5*10^15 disp("Nd = "+string(Nd)+"cm^-3") //initializing value of donor concentration. no=1.5*10^10 disp("no = "+string(no)+"cm^-3") //initializing value of intrinsic concentration. Vbi=0.676 disp("Vbi = "+string(Vbi)+"V") //initializing value of built in voltage. e=1.6*10^-19 disp("e = "+string(e)+"columns") //initializing value of charge of electrons. K=1.38*10^-23 disp("K = "+string(K)+"J/k") //initializing value of boltzmann constant. T=(Vbi*(e/K)*(1/(log((Na*Nd)/(no^2))))) disp("T=(Vbi*(e/K)*(1/(log((Na*Nd)/(no^2))))))="+string(T)+"K")//calculation.
44b92af292cbab04853837f5fa7f6e485df98c8e
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH2/EX2.9/2_09.sce
b83b012c8e8f6c2681689e1d6c4c53f61a72c83a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
280
sce
2_09.sce
//Chapter 2, Problem 9 clc; P=100; //power in watt V=250; //voltage I=P/V; //calculating current R=V/I; //calculating resistance using Ohms law printf("(a) Current = %f A\n\n\n",I); printf("(b) Resistance = %d ohms",R);
c0044b3d195723966c36699165ccf3bb75e9262a
f3921ba261cdd9c9c4201d85a3b3bcbc42a26421
/protobuflib/pblib_get_serialized_size.sci
f38957d950a4a850e27b8d715e220d957e95e004
[]
no_license
manojgudi/protobuf-scilab
9bbe77a52ad8bd50d762a6e4a388236f88dacc0c
d5a8e967848b48c1628859f3f52fb59ac3502429
refs/heads/master
2020-12-02T15:54:15.894328
2015-01-08T19:04:45
2015-01-08T19:04:45
28,736,110
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,471
sci
pblib_get_serialized_size.sci
exec pblib_encoded_field_size.sci exec pblib_encoded_tag_size.sci function [msg_size] = pblib_get_serialized_size(msg) //pblib_get_serialized_size // function [msg_size] = pblib_get_serialized_size(msg) // // Estimates the size a message will take when serialized. // // Will go through a message and estimate serialized sizes of valid fields. // Estimates generally include tag size plus encoded field size. // // See also pblib_generic_serialize_to_string, pblib_write_wire_type // protobuf-matlab - FarSounder's Protocol Buffer support for Matlab // Copyright (c) 2008, FarSounder Inc. All rights reserved. // http://code.google.com/p/protobuf-matlab/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // * Neither the name of the FarSounder Inc. nor the names of its // contributors may be used to endorse or promote products derived from this // software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. // Author: fedor.labounko@gmail.com (Fedor Labounko) // Support function used by Protobuf compiler generated .m files. LABEL_REPEATED = 3; WIRE_TYPE_LENGTH_DELIMITED = 2; msg_size = 0; descriptor = msg.descriptor_function(); for i=1:length(descriptor.fields) field = descriptor.fields(i); if (get(msg.has_field, field.name) == 0 || isempty(msg.(field.name))) continue; end if (field.options.packed) tag_length = pblib_encoded_tag_size(... field.number, WIRE_TYPE_LENGTH_DELIMITED); else tag_length = pblib_encoded_tag_size(... field.number, field.wire_type); end // need this extra if to make sure repeated strings/bytes are done correctly if (field.label == LABEL_REPEATED) msg_size = msg_size + tag_length + ... (1 - field.options.packed) * ... (length(msg.(field.name)) - 1) * tag_length; else msg_size = msg_size + tag_length; end msg_size = msg_size + pblib_encoded_field_size(msg.(field.name), field); end // Now add the space required by the stored unknown fields for i=1:length(msg.unknown_fields) msg_size = msg_size + length(msg.unknown_fields(i).raw_data); end endfunction
8083a28c6e8975f00748f98fd14c18a76b1760ec
04236ab1161ec860ab3b1d0c3225fcbdc54923a3
/2012.d/3-remez.d/main.sci
66fc60e20cde34840e3abbe21bdd6b62a1f1b39c
[ "MIT" ]
permissive
homeostasie/petits-pedestres
957695cdb8a7823ed2e3fe79f7b441410928cba9
557c810e26412bc34ebe063dcd904affe5a27855
refs/heads/master
2023-05-31T03:35:13.365160
2023-04-26T21:47:56
2023-04-26T21:47:56
163,504,589
2
0
null
null
null
null
ISO-8859-1
Scilab
false
false
1,701
sci
main.sci
// n+1 est le nombre de points dans [a,b]. n correspond également au degré du polynôme. // X_n ces points //fin+1 un nombre de point bien plus précis pour X_fin sur le même intervalle //inter est l'intervalle d'étude //fon_tp crée les fonctions utilisées pour le tester le TP exec('fon_tp.sci'); //main avec boite de lancement choix=x_choose(['Racine de X sur [0 1]';'Valeur absolue de X sur [-1 1]';'x**n'],['Choisissez l exercice']) if choix==1 inter=[0 1]; n=4; fon_uti=F_fon_sqrt; ite=6 elseif choix==2 inter=[-1 1]; n=6; fon_uti=F_fon_abs; ite=6 elseif choix==3 sig=x_mdialog('choisir n',['n'],['5']) n=evstr(sig(1)) inter=[-1 1] fon_uti=F_xpuisn ite=10 end fin=100; Erreur=0.1; //intervalle.sci crée deux vecteurs d'abscisses exec('intervalle.sci'); [X_n,X_fin]=F_interval(inter,fin); //fon_tp crée les fonctions utilisées pour le tester le TP //Ici on choisit la fonction qu'on va utilisé //On execute l'algorythme de Tchebytchev qui nous sort une matrice avec les coefficients alterné du polynome dans la matrice Coef_poly et l'Erreur. On construit également le polynôme. //Dans l'exec se situe aussi le graph de la fonction demandé sur les X_fin plot2d(X_fin,fon_uti(X_fin),style=5) j=1 while j<ite exec('tcheby.sci'); exec('remez.sci'); //disp('Erreur =',Erreur) [Cprime]=F_remez(Poly_tcheby); //disp('Cprime =',Cprime) //On trace les fonction plot2d(X_fin,F_Poly_Tcheby(X_fin)) plot2d(X_n,F_Poly_Tcheby(X_n),style=-2) xpause(10**6) //on appelle l'algo de remez exec('algofin_remez.sci'); [X_n]=F_alog_remez(Cprime,X_n); //disp(X_n); j=j+1; end
ca27be4ec07f5688381b243aa6bb9469fb8db333
3dbdc1a91ad07ea5fc4c4fa52a6fa2a6870125a6
/calculo-numerico/eliminacaoGaussPivotamento.sci
e41b38eebfbb38673fe07efc3dddf3b97d93f3b3
[ "Apache-2.0" ]
permissive
geovani-moc/Algoritmos
226ceea9b599bb1979770ac001f5108a0533bb00
d2d838c158da62a94946a7af29b24ca7396af34e
refs/heads/master
2023-01-09T12:40:50.330766
2020-11-06T17:46:46
2020-11-06T17:46:46
256,744,544
1
0
null
null
null
null
UTF-8
Scilab
false
false
2,146
sci
eliminacaoGaussPivotamento.sci
function matrizResultado = trocarLinhas(matriz, linha1, linha2) matrizResultado = matriz; matrizResultado(linha1, :) = matriz(linha2, :); matrizResultado(linha2, :) = matriz(linha1, :); endfunction function posicaoMaiorPivo = maiorPivo(matriz, pivo) [quantidadeLinhas quantidadeColunas] = size(matriz); posicaoMaiorPivo = pivo; for linha = pivo : quantidadeLinhas if abs(matriz(posicaoMaiorPivo, pivo)) < abs(matriz(linha, pivo)) posicaoMaiorPivo = linha; end end endfunction function [matriz, vetorIndependente, solucaoSistema] = eliminacaoGaussPivotamento(matriz, vetorIndependente) [quantidadeLinhas quantidadeColunas] = size(matriz); solucaoSistema = zeros(quantidadeLinhas, 1); for linhaPivo = 1 : quantidadeLinhas-1 posicaoMaiorPivo = maiorPivo(matriz, linhaPivo); matriz = trocarLinhas(matriz, linhaPivo, posicaoMaiorPivo); vetorIndependente = trocarLinhas(vetorIndependente, linhaPivo, posicaoMaiorPivo); for linha = (linhaPivo+1) : quantidadeLinhas multiplicador = matriz(linha, linhaPivo)/matriz(linhaPivo, linhaPivo); matriz(linha, linhaPivo) = 0.0; for coluna = (linhaPivo+1) : quantidadeLinhas matriz(linha, coluna) = matriz(linha, coluna) - multiplicador * matriz(linhaPivo, coluna); end vetorIndependente(linha) = vetorIndependente(linha) - multiplicador * vetorIndependente(linhaPivo); end end //Solução do sistema solucaoSistema(quantidadeLinhas) = vetorIndependente(quantidadeLinhas)/matriz(quantidadeLinhas, quantidadeLinhas); for linha = (quantidadeLinhas-1) : -1 : 1 somatorio = 0; for coluna = (linha+1) : quantidadeLinhas somatorio = somatorio + matriz(linha, coluna) * solucaoSistema(coluna); end solucaoSistema(linha) = (vetorIndependente(linha)-somatorio) / matriz(linha, linha); end endfunction
935de3c63f0830aa2b1989a8cea7c9753ade6735
449d555969bfd7befe906877abab098c6e63a0e8
/506/CH18/EX18.3/Example18_3.sce
656fe92e4c76e8ac017e1016d4f61b4153814e2b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
583
sce
Example18_3.sce
clear; clc; //Caption:SCR Relaxation Oscillator Phase control Circuit //Given Data C=0.1;//in microF V=60;//in V Vb=32;//in V Vh=10;//holding voltage in V Ih=100;//in microA c=45;//conductance angle in degree cd = 360 - c;//angle in which capacitor will get charged td = (cd/360)*(1/60);//in ms //if the anode voltage is positive,the SCR will fire when vc=32V vc=32;//in V //let time constant = t = R*C //vc-Vh = (V-Vh)(1-exp(-td/t)) t = -td/log(1-((vc-Vh)/(V-Vh))); disp('sec',t,'time constant = '); R = t/C;//Resistance in K disp('K',R*1000,'R='); //end
4c86982fa8cfbbec3b769118388b3fbc6d790968
449d555969bfd7befe906877abab098c6e63a0e8
/3863/CH16/EX16.1/Ex16_1.sce
28049627a51384f62739e51f92598126d1a1e033
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
296
sce
Ex16_1.sce
clear // //Given //Variable declaration D=150 //Diameter of the shaft in mm tau=45 //Maximum shear stress in N/sq.mm //Calculation T=int(%pi/16*tau*D**3)*1e-3 //Maximum torque transmitted by the shaft in N-m //Result printf("\n Maximum torque = %0.3f N-m",T)
727507a2682874d13a2fa775650b60e0d659f9ea
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH20/EX20.3/Ex20_3.sce
332b5e9819066b87afe003a2c4c709dc52916ccc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
634
sce
Ex20_3.sce
clc // Given that F = 680 // Net brake load in N N = 360 // d = 10// Bore in cm L = 15 // Stroke in cm T = 58 // Torque in Nm v = 300 // Speed in m/min n_m = 0.8 // Mechanical efficiency n_th = 0.4 // Indicated thermal efficiency c_v = 44 // Calorific value of gasoline in MJ/kg printf("\n Example 20.3\n") N = v/(2*L*(10^(-2))) BP = (2*%pi*T*N)/60000 IP = BP/n_m p_m = (IP*60)/(L*(%pi/4)*(d^2)*N*10^(-6)) m_f = (IP*3600)/(n_th*c_v*1000) bsfc = m_f/BP printf("\n Indicated power = %f kW\n Indicate mean effective pressure = %f kN/m^2\n Fuel consumption per kWh on brake power output = %f Kg/kWh",IP,p_m,bsfc)
2bbc7c7d6fef9bcc589e41f9cc1134f5fbc7b8f4
449d555969bfd7befe906877abab098c6e63a0e8
/2132/CH5/EX5.7/Example5_7.sce
5682da97046014eb2c619230e7a4f25560fd3e07
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
981
sce
Example5_7.sce
//Example 5.7 clc; clear; close; format('v',8); //Given data : Z1=0;//meter Z2=5;//meter Q=300*10^-3;//m/s D1=0.3;//meter D2=0.6;//meter A1=%pi*D1^2/4;//m^2 A2=%pi*D2^2/4;//m^2 v1=Q/A1;//m/s v2=Q/A2;//m/s p1=100;//kN/m^2 p2=600;//kN/m^2 g=9.81;//constant Vhead11=v1^2/2/g;//meter Vhead22=v2^2/2/g;//meter Phead11=p1/g;//meter Phead22=p2/g;//meter E1_11=Z1+Vhead11+Phead11;//meter E2_22=Z2+Vhead22+Phead22;//meter if E1_11>E2_22 then disp("Energy at section 1-1("+string(E1_11)+" meter) is greater than energy at section 2-2("+string(E2_22)+" meter). Flow of water is from section 1-1 to 2-2."); HeadLoss=E1_11-E2_22;//meter disp(HeadLoss,"Head Loss in meter : "); else disp("Energy at section 2-2("+string(E2_22)+" meter) is greater than energy at section 1-1("+string(E1_11)+" meter). Flow of water is from section 2-2 to 1-1."); HeadLoss=E2_22-E1_11;//meter disp(HeadLoss,"Head Loss in meter : "); end
4f9e837339993b4e207952c159053d465c7573d9
c5d2ceb1071adf62cc2a3cbaf73d6e8dddd8dfa8
/Project Noisy data Filtering Using Keel Softwer/results/ClassificationFilter-F.KNN-C.iris/result1.tst
4954ce43ae49f9955bffda7d33bc583d87bfcdb7
[]
no_license
Biplob45/Noisy-data-Filtering-Using-Keel-Software
8ac4eae866f9f8c7a153af74c0ee0f16a23cd1cd
04cfe74e5a1b8374b013a623eb887eb54b9a36aa
refs/heads/master
2021-04-15T11:59:07.560668
2018-03-24T12:24:28
2018-03-24T12:24:28
126,596,572
0
0
null
null
null
null
UTF-8
Scilab
false
false
684
tst
result1.tst
@relation iris @attribute sepalLength real [4.3, 7.9] @attribute sepalWidth real [2.0, 4.4] @attribute petalLength real [1.0, 6.9] @attribute petalWidth real [0.1, 2.5] @attribute class {Iris-setosa, Iris-versicolor, Iris-virginica} @data Iris-setosa Iris-setosa Iris-setosa Iris-setosa Iris-setosa Iris-setosa Iris-setosa Iris-setosa Iris-setosa Iris-setosa Iris-versicolor Iris-versicolor Iris-versicolor Iris-versicolor Iris-versicolor Iris-versicolor Iris-versicolor Iris-virginica Iris-versicolor Iris-versicolor Iris-virginica Iris-virginica Iris-virginica Iris-versicolor Iris-virginica Iris-virginica Iris-virginica Iris-virginica Iris-virginica Iris-virginica
6ade2790c5b0b98e5f2af7ff85c1e7720b798018
449d555969bfd7befe906877abab098c6e63a0e8
/1748/CH2/EX2.1.p/problem2_1.sce
248d6aa76438b12cbf21fd74a4a4042aad8de85b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
149
sce
problem2_1.sce
//problem 2.1 clc; clear; close; //given data : P=8;//No. of poles f=50;//in Hz Ns=120*f/P;//in rpm disp(Ns,"Synchronous speed in rpm : ");
abb9327fa905a2b403baca633877a3e4661814b6
449d555969bfd7befe906877abab098c6e63a0e8
/575/CH7/EX7.7.3/7_7_3.sce
a59ff4a7a106ae5dd5ff48e47c7089a0f5bfaeb9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
301
sce
7_7_3.sce
clc pathname=get_absolute_file_path('7_7_3.sce') filename=pathname+filesep()+'773.sci' exec(filename) printf(" All the values in the textbook are Approximated hence the values in this code differ from those of Textbook") mdot= -Ws/(deltaP/D + g*deltaZ) printf(" \n Water flow rate=%f kg/s",mdot)
a173491d3fac04789100255285e86f92bcfc8118
d465fcea94a1198464d7f8a912244e8a6dcf41f9
/system/kiks_gui_roundobjvis.sci
851961f809c9616a51b860e2dd7f209dc54c5be3
[]
no_license
manasdas17/kiks-scilab
4f4064ed7619cad9e2117a6c0040a51056c938ee
37dc68914547c9d0f423008d44e973ba296de67b
refs/heads/master
2021-01-15T14:18:21.918789
2009-05-11T05:43:11
2009-05-11T05:43:11
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
524
sci
kiks_gui_roundobjvis.sci
function [] = kiks_gui_roundobjvis(id) // Display mode mode(0); // Display warning for floating point exception ieee(1); // ----------------------------------------------------- // (c) 2000-2004 Theodor Storm <theodor@tstorm.se> // http://www.tstorm.se // ----------------------------------------------------- global("KIKS_ROUNDOBJ_HDL"); // !! L.9: Unknown function kiks_roundobjpatch not converted, original calling sequence used KIKS_ROUNDOBJ_HDL = mtlb_i(KIKS_ROUNDOBJ_HDL,id,kiks_roundobjpatch(id)); endfunction
7e8abe5dabdb2cadf5d05c24ca1c65a83b34a9c5
449d555969bfd7befe906877abab098c6e63a0e8
/564/CH23/EX23.4/23_4.sce
52d14df49b47718b44d2086455875c3d6441ad6b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,248
sce
23_4.sce
pathname=get_absolute_file_path('23_4.sce') filename=pathname+filesep()+'23_4data.sci' exec(filename) clear y1=0.5*[W1;W1;W1;-W1;-W1;-W1]; y2=0.5*[W2;W2;W2;-W2;-W2;-W2]; x1=[0;L12;L12+L11;L12+L11;L12;0]; x2=[0;L22;L22+L21;L22+L21;L22;0]; Li=[L12;L11;W1;L11;L12;W1;W1]; for i=1:6; I1(i)=B(i)*y1(i)*y1(i); del(i)=Li(i)/t(3); end del(7)=Li(7)/t(3); Ixx=sum(I1); dely=(y1-y2); delx=(x1-x2); epr=[L12;0;L11;L11;0;L12]; nr=abs(y1); for i=1:6 Pz(i)=(Mx/Ixx)*B(i)*y1(i); Py(i)=Pz(i)*dely(i)/L; Px(i)=Pz(i)*delx(i)/L; Pr(i)=((Px(i)^2 +Py(i)^2 +Pz(i)^2)^0.5)*(y1(i)/abs(y1(i))); Pxn(i)=-abs(Px(i)*nr(i)); Pyep(i)=Py(i)*epr(i); end Pyep(6)=-Pyep(i); Sxw=-sum(Px); Syw=Sy-sum(Py); qb=[0;0;(-Syw/Ixx)*(B(3)*y1(3));0;0;(-Syw/Ixx)*(B(6)*y1(6));(-Syw/Ixx)*B(5)*y1(5)]; qb1=0; for i=1:7 qb1=qb(i)*del(i) +qb1; end A1=L11*W1; A2=L12*W1; P=[((del(2)+del(3)+del(4)+del(7))/A1)+(del(7))/A2 -((del(7)/A1)+((del(1)+del(5)+del(6)+del(7))/A2)); 2*A1 2*A2]; X=[(qb1/(3*A1))+(qb1/(3*A2));-(qb(3)*W1*L12 +qb(6)*W1*L11)-sum(Pxn)+sum(Pyep)]; qs=inv(P)*X; M1=-[qs(2);qs(1);qs(1);qs(1);qs(2);qs(2);qs(1)-qs(2)]; q=qb+M1; disp("shear flow(q12;q23;q34;q45;q56;q61;q52):"); printf("\n %f N/mm",q)
704ada62b4109567583abcc3cce842bfce5ca13f
449d555969bfd7befe906877abab098c6e63a0e8
/3392/CH6/EX6.5/Ex6_5.sce
ac1acb2521a6764a43814948ddd63f4810643a59
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
396
sce
Ex6_5.sce
clc // initialization of variables clear // Shaft specifications Pi=100 //kW f1=100 //Hz f2=10 //Hz tau_Y=220 //MPa SF=2.5 // Safety factor Po=100 //kW //calculations Pi=Pi*10^3 tau_Y=tau_Y*10^6 Po=Po*10^3 Tin=Pi/(2*%pi*f1) Tout=Po/(2*%pi*f2) Din=(16*SF*Tin/(tau_Y*%pi))^(1/3) Dout=(16*SF*Tout/(tau_Y*%pi))^(1/3) printf(' Din = %.2f mm and Dout = %.2f mm',Din*10^3,Dout*10^3)
ff8dd70ce3d4d2a65579be07f23a45d151675c8e
449d555969bfd7befe906877abab098c6e63a0e8
/3440/CH2/EX2.9/Ex2_9.sce
9dd80b650bd446153d166aac664267c555367c70
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
393
sce
Ex2_9.sce
clc T=300 //K k=8.617*10^-5 //eV/K q=1.6*10**-19 //C qx=4.05 //eV qVn=0.2 //eV Nc=2.86*10^19 a=(qx+qVn)/(k*T) nth=exp(a)*Nc disp(nth,"the thermionically emitted electron density for nth at 4.05 in cm^3=") //textbook ans is wrong qx=0.6 //eV nth=exp(qx/(k*T))*Nc disp(nth,"the thermionically emitted electron density for nth at 0.6 in cm^3=") //textbook ans is wrong
f44f5027ce90e99ed44d505cc43b39bec4142a05
99e5810ad838c385c38e818ed59ad43b7f93fb67
/speedtest.sce
b20a645b6a471ff5440b1a1ca3f4f820b8050faa
[]
no_license
csr-trainees-2019/scilab
c89e15ded8f4cd31321ec3fdfe759e2293625345
f9c8bbc07da38b98b18961888dcb3dfcbabb8cb2
refs/heads/master
2020-04-21T13:30:05.031096
2019-02-16T10:40:56
2019-02-16T10:40:56
169,600,658
0
1
null
2019-02-16T10:39:01
2019-02-07T16:13:17
Scilab
UTF-8
Scilab
false
false
382
sce
speedtest.sce
data2 = read("/media/red/Transcend/AAAULTIMATELABA4/LOGS2/log_pi2x.txt",-1,3) data2(:,1) = data2(:,1) clf(); f=gcf(); plot2d(data2(:,2), data2(:,1),2) plot2d(B.time,B.values, 5) xlabel('$t, с$', "fontsize", 4) ylabel('$\omega, рад/с$', "fontsize", 4) //f.children.children(1).children.thickness = 2; hl=legend(['Эксперимент';'Модель'], "in_lower_right");
c3d524d78a22d29f14fa761de9b4f684164d8111
7f2d9d779f4466bec18ad262358b8ced7e18b508
/lab_1/Not8.tst
ec341a6f81a072ee4e197008916b9d183d331e82
[]
no_license
cs17b008/Computer_System_Design_Lab-CS17B008_CS17B009-
16ee344950624a5acfe96201507f5cb1baa71e22
1ac7a43a116987c7cb5588401a169820a5b1daa4
refs/heads/master
2023-01-29T07:43:53.192562
2020-12-11T06:45:30
2020-12-11T06:45:30
292,307,878
0
1
null
null
null
null
UTF-8
Scilab
false
false
284
tst
Not8.tst
load Not8.hdl, output-file Not8.out, compare-to Not8.cmp, output-list in%B1.8.1 out%B1.8.1; set in %B00000000, eval, output; set in %B11111111, eval, output; set in %B10101010, eval, output; set in %B00111100, eval, output; set in %B00010010, eval, output;
d12c3a50b5d65560aa09890b800637c03308845f
449d555969bfd7befe906877abab098c6e63a0e8
/1910/CH7/EX7.1/Chapter71.sce
5c0e4a1592a6244c1a61b823ca7704eb6b26ad59
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,277
sce
Chapter71.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Introduction to heat transfer by S.K.Som, Chapter 7, Example 1") //Engine oil at temprature,Tinf=60°C with a velocity of Uinf=1m/s flows over plate of length(L)=5m whose temprature(Tw)=30°C Tw=30; L=5; Uinf=1; Tinf=60; //The properties at a film temprature of 45°C are as follows density(rho=870kg/m^3),Prandtl number(Pr=2850),conductivity(k=0.145W/(m*°C)),kinematic viscosity(nu=250*10^-6m^2/s). rho=870; Pr=2850; k=0.145; nu=250*10^-6; disp("First we check from reynolds no. that the flow is laminar or tubulent") //Reynolds number is given by Re=(Uinf*L)/nu disp("Reynold number is") Re=(Uinf*L)/nu disp("which is less than critical reynolds number,So the flow is laminar.") //NuL is the average nusselt number disp("The average nusselt number over the entire length under the situation is given by NuL=0.664*Re^0.5*Pr^(1/3)") NuL=0.664*Re^0.5*Pr^(1/3) //Heat flux is given by h=(k/L)*NuL disp("Heat flux in W/(m^2*K) is") h=(k/L)*NuL //The rate of heat transfer per unit width is Q=h*A*(Tinf-Tw) //Since unit width is considerd so B=1 //Area(A)=L*B B=1; A=L*B; disp("The rate of heat transfer per unit width in W is") Q=h*A*(Tinf-Tw)
f85ddeea4b0834f947e9fcf48c67468552e4a89b
449d555969bfd7befe906877abab098c6e63a0e8
/243/CH9/EX9.10/9_10.sce
5b7b2d9c367ca5559f50183701d2fbe5148a1ab8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,714
sce
9_10.sce
//Example No. 9_10 //Splines //Pg No. 301 clear ; close ; clc ; x = poly(0,'x'); function isitspline(f1,f2,f3,x0,x1,x2,x3) n1 = degree(f1),n2 = degree(f2),n3 = degree(f3) n = max(n1,n2,n3) f1_x1 = horner(f1,x1) f2_x1 = horner(f2,x1) f2_x2 = horner(f2,x2) f3_x2 = horner(f3,x2) if n ==1 & f1_x1 == f2_x1 & f2_x2 == f3_x2 then printf('The piecewise polynomials are continuous and f(x) is a linear spline') elseif f1_x1 == f2_x1 & f2_x2 == f3_x2 for i = 1:n-1 df1 = derivat(f1) df2 = derivat(f2) df3 = derivat(f3) df1_x1 = horner(df1,x1) df2_x1 = horner(df2,x1) df2_x2 = horner(df2,x2) df3_x2 = horner(df3,x2) f1 = df1, f2 = df2, f3 = df3 if df1_x1 ~= df2_x1 | df2_x2 ~= df3_x2 then printf('The %ith derivative of polynomial is not continuours',i) break end end if i == n-1 & df1_x1 == df2_x1 & df2_x2 == df3_x2 then printf('The polynomial is continuous and its derivatives from 1 to %i are continuous, f(x) is a %ith degree polynomial',i,i+1) end else printf('The polynomial is not continuous') end endfunction n = 4 , x0 = -1 , x1 = 0, x2 = 1 , x3 = 2 f1 = x+1 ; f2 = 2*x + 1 ; f3 = 4 - x ; disp('case 1') isitspline(f1,f2,f3,x0,x1,x2,x3) n = 4, x0 = 0 , x1= 1 , x2 = 2 , x3 = 3 f1 = x^2 + 1 ; f2 = 2*x^2 ; f3 = 5*x - 2 ; disp('case 2') isitspline(f1,f2,f3,x0,x1,x2,x3) n = 4, x0 = 0, x1 = 1, x2 = 2, x3 = 3 f1 = x, f2 = x^2 - x + 1, f3 = 3*x - 3 disp('case 3') isitspline(f1,f2,f3,x0,x1,x2,x3)
d052419035eb2e6ecfca4fde0e0822410996443b
bf4cf3af03d03f8f1919897bd9aa245bf682a3d8
/Test.tst
deb2c0694923af2acf744844d052e9313d1422f8
[]
no_license
jiafu1115/test-tools
11605ddda198da9a9c140224518cd4efe0b12bdd
5187b71670ade08457d415c618f765cf920d3b92
refs/heads/master
2021-01-15T15:15:56.759124
2015-03-20T10:18:04
2015-03-20T10:18:04
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,429
tst
Test.tst
# Configuration >> Configuration server.ip=127.0.0.1 server.port=5080 local.ip=127.0.0.1 local.ip=127.0.0.1 << Configuration # List of Actors >> Actors Actor1.id=Caller Actor1.type=SIP Actor1.simulate=true Actor2.id=Callee Actor2.type=SIP Actor2.simulate=true Actor3.id=Sep Actor3.type=SIP Actor3.simulate=false << Actors # Test scenario >> Test # Usage: [ACTION_ID] [ACTOR_ID] [SND/RCV/WAIT] [ACTION_TYPE] [PARAM_NAME:PARAM_VALUE]* 01 Actor1 SIP SND method:INVITE type:REQ to:Actor2 via:Actor3 flowid:FLOW1 02 Actor2 SIP RCV method:INVITE type:REQ from:Actor1 via:Actor3 flowid:FLOW2 03 Actor2 SIP SND method:INVITE type:RESP code:180 to:Actor1 via:Actor3 flowid:FLOW2 04 Actor1 SIP RCV method:INVITE type:RESP code:180 from:Actor2 via:Actor3 flowid:FLOW1 05 Actor2 SIP SND method:INVITE type:RESP code:200 to:Actor1 via:Actor3 flowid:FLOW2 06 Actor1 SIP RCV method:INVITE type:RESP code:200 from:Actor2 via:Actor3 flowid:FLOW1 07 Actor1 SIP SND method:ACK type:REQ to:Actor2 via:Actor3 flowid:FLOW1 08 Actor2 SIP RCV method:ACK type:REQ from:Actor1 via:Actor3 flowid:FLOW2 10 Actor1 WAT time:10000 09 Actor1 SIP SND method:BYE type:REQ to:Actor2 via:Actor3 flowid:FLOW1 11 Actor2 SIP RCV method:BYE type:REQ from:Actor1 via:Actor3 flowid:FLOW2 12 Actor2 SIP SND method:BYE type:RESP code:200 to:Actor1 via:Actor3 flowid:FLOW2 13 Actor1 SIP RCV method:BYE type:RESP code:200 from:Actor2 via:Actor3 flowid:FLOW1 << Test
544d39394eb17279bff6de4f95b7ada2cd67ebdb
449d555969bfd7befe906877abab098c6e63a0e8
/2192/CH10/EX10.1/10_1.sce
a9d53b5ac8a0bd1fe13d08ea5cf0769f6b6d0144
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
369
sce
10_1.sce
clc,clear printf('Example 10.1\n\n') current = 3 voltage=250 lumens= 9420 //total lumens emitted by lamp MSCP = lumens /(4*%pi) //mean spherical candle power printf('(i)Mean spherical candle power = %.2f',MSCP) power= current*voltage //power of lamp efficiency = lumens / power //efficiency of lamp printf('\n(ii)Efficiency of lamp = %.2f lumens/watt',efficiency)
7f8627e211e8e1f6fb18592d42eef698b60ef612
6577008921680ddcc005d6cd1fbfc6e580f04740
/Code/internewton.sci
59ac66ad15f8ca0d27d5ad66a7d882f062ddf779
[]
no_license
bagasadif/Program-Scilab
a9539ddf00a5c75ca844d93e9b35309427a28722
94d09657ae48d130184c23c34af9a0f4a1a2ab18
refs/heads/master
2023-02-19T19:24:24.042558
2021-01-24T22:27:39
2021-01-24T22:27:39
332,569,383
1
0
null
null
null
null
UTF-8
Scilab
false
false
932
sci
internewton.sci
/* Author : Bagas Adi Firdaus Deskripsi : Program Metode Beda Terbagi Newton */ printf('\nProgram Metode Beda Terbagi Newton\n'); X = [-1.0 0.0 2.0 3.5 4.0]; Y = [1.5 3.0 6.0 8.0 16.0]; printf('Diketahui Data Berikut:\n'); //Menampilkan data for i=1:5 printf('n = %d\t x = %.2f\t f(x) = %.6f\n',i-1, X(i),Y(i)); end x=input('Masukkan nilai x yang akan dicari f(x)nya = '); //Menyimpan Y[k] pada kolom 1 dari matriks ST (selisih terbagi) for k=1:5 ST(k,1)=Y(k); end //Membuat tabel selisih terbagi for k=2:5 for i=1 : 6-k ST(i,k)=(ST(i+1,k-1)-ST(i,k-1))/(X(i-1+k)-X(i)); end end jumlah=ST(1,1); //Menghitung p(x) //Orde yang digunakan adalah orde terbesar (orde 4) for i=2:5 suku=ST(1,i); for k=1 : i-1 suku=suku*(x-X(k)); end jumlah=jumlah+suku; end hasil=jumlah; printf('Orde yang digunakan adalah orde terbesar yaitu orde 4\nJadi nilai f(%.2f) adalah : %.6f', x, hasil);
96446416ea128ee925416b2e70a85a883e64c6e3
449d555969bfd7befe906877abab098c6e63a0e8
/1319/CH5/EX5.7/5_7.sce
d96f5696fb4ebe5ba16fe532efcd4d227c1f2e61
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
746
sce
5_7.sce
// Calculate the circuit parameters of a transformer using OC and SC tests clc; clear; E1=200; E2=400; n=E2/E1; // Transformation ratio // O.C Calculations V1=200; Ioc=0.7; Pi=70; R0=(V1^2)/Pi; Iw=V1/R0; Im=sqrt((Ioc^2)-(Iw^2)); X0=V1/Im; //S.C Calculations on HT side Pc=80; I=10; V=15; Rth= Pc/(I^2); Z=V/I; Xth=sqrt((Z^2)-(Rth^2)); // Both these value are referred to HT side, but the answer is required to be referred to LT side Xtl=Xth/(n^2); // Reactance referred to LT side Rtl=Rth/(n^2); // Resistance referred to LT side printf('The Circuit parameters referred to LT side is as follows \n') printf('Ro = %f ohms \n Xo = %f ohms \n Rt = %f ohms \n Xt = %f ohms \n',R0,X0,Rtl,Xtl)
f0bf77573a8a7f81349ffc9c537781252b2be997
05df9394f5d45c0bddbd52e4aad8c8210e9e2743
/Scilab/Lagrange's_Method.sce
f66a0038e4d5b2ae76bb5aa367999e58825adb3e
[]
no_license
pikabing/Scilab
a9fd34b70be3bd552f47fafc409bf7c88573ac7a
87f2cc1914bfdb6c24a54960e9c49191bbd1f1ad
refs/heads/master
2020-03-10T09:34:56.522084
2018-04-12T21:51:52
2018-04-12T21:51:52
129,311,712
0
0
null
null
null
null
UTF-8
Scilab
false
false
356
sce
Lagrange's_Method.sce
function[ans] = lagrange(x) t = list(1,1.2,1.3,1.5) val = list(1,1.0934,1.1402,1.2247) l = list(1,1,1,1) j = 0 ans = 0 for i = 1:4 for j = 1:4 if (i ~= j) then l(i) = l(i)*((x - t(j))/(t(i) - t(j))); end end ans = ans + l(i)*val(i); end endfunction
a953e2b8af41e287a56347a1dc93bee8ee689c75
449d555969bfd7befe906877abab098c6e63a0e8
/611/CH13/EX13.4/Chap13_Ex4.sce
922270d486631371cee6c20ae2ce9336d4e64a13
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
973
sce
Chap13_Ex4.sce
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India. //Chapter-13,Example 4,Page 483 //Title:Ideal solubility //================================================================================================================ clear clc //INPUT temp=20; // prevailing tempearture in degree celsius melt_temp=80.05; // melting point of naphthalene in degree celsius hf=18.574; // enthalpy of fusion in kJ/mol R=8.314; // universal gas constant in J/molK //CALCULATION t=temp+273.15; // convesion of prevailing temperature to K melt_t=melt_temp+273.15; //conversion of melting point of naphtalene to K x2=exp(((hf*10^3)/R)*((1/melt_t)-(1/t))); //calculation of ideal solubility using Eq.(13.40)(no unit) //OUTPUT mprintf('\n The ideal solubility of naphthalene at 20 degree celsius= %0.4f',x2); //===============================================END OF PROGRAM===================================================
8dec2cc705ce25f2da69bf6028a9296d98094743
449d555969bfd7befe906877abab098c6e63a0e8
/3705/CH9/EX9.2/Ex9_2.sce
b905005673341436e3a1a054c6bbecb0167b3802
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
833
sce
Ex9_2.sce
clear// //Variable Declaration dw=8 //Depth of wooden section in inches da=0.4 //Depth og aluminium section in inches w=2 //Width of the section in inches n=40*3**-1 //Modular Ratio Ewd=1.5*10**6 //Youngs modulus of wood in psi Eal=10**7 //Youngs Modulus of aluminium in psi V_max=4000 //Maximum shear in lb b=24 //Inches L=72 //Length in inches P=6000 //Load on the beam in lb //Calculations I=w*dw**3*12**-1+2*(n*w*da**3*12**-1+n*da*4.2**2) //Moment of Inertia in in^4 //Part 1 Q=(w*dw*0.5)*2+(n*da)*(dw*0.5+da*0.5) //First Moment in in^3 tau_max=V_max*Q*I**-1*w**-1 //Maximum Shear Stress in psi //Part 2 delta_mid=(P*b)*(48*Ewd*I)**-1*(3*L**2-4*b**2) //Result printf("\n The maximum shear stress allowable is %0.0f psi",tau_max) printf("\n The deflection at the mid-span is %0.4f in",delta_mid)
bffd05be03334e6fe2c25ee4aafd0b6a0f328031
00fc439a1f2cc38d50ec7b050222d6ba1c2b76cf
/demos/datadeploy.dem.gateway.sce
b0b737aa7e4fbd70a0eb246acaaef904afc8c2e2
[]
no_license
slevin48/datadeploy
c9cc657db8d45aa0ab8fa5845b8f2552f3781140
1ed8be8d0b4ad5ab5cbdb91f20338df90e913f88
refs/heads/master
2022-07-28T20:19:46.917688
2020-05-25T08:58:25
2020-05-25T08:58:25
266,721,169
0
0
null
null
null
null
UTF-8
Scilab
false
false
376
sce
datadeploy.dem.gateway.sce
function subdemolist = demo_gateway() demopath = get_absolute_file_path("datadeploy.dem.gateway.sce"); subdemolist = ["Welcome Demo", "welcome.dem.sce"; "United Nations", "united_nations.dem.sce"]; subdemolist(:,2) = demopath + subdemolist(:,2); endfunction subdemolist = demo_gateway(); clear demo_gateway; // remove demo_gateway on stack
3309dc9faa05e960f84361f2b74b8c68caf99721
449d555969bfd7befe906877abab098c6e63a0e8
/2417/CH5/EX5.14/Ex5_14.sce
a46c78e47c533259579eaa15f54a58223023aca1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,722
sce
Ex5_14.sce
//scilab 5.4.1 clear; clc; printf("\t\t\tProblem Number 5.14\n\n\n"); // Chapter 5 : Properties Of Liquids And Gases // Problem 5.14 (page no. 198) // Solution //From Table3, we first obtain the properties at 337 psia and 460 F and then 337 psia and 470 F. //The necessary interpolations are best done in tabular forms as shown: //Proceeding with the calculation,at 460 F, // p v // p h // 340 1.4448 // 340 1226.7 // 337 1.4595 // 337 1227.2 // 335 1.4693 // 335 1227.5 v=1.4696-(2/5)*(1.4693-1.4448); h=1227.5-(2/5)*(1227.5-1226.7); //ft^3/lbm //specific volume //Btu/lbm //enthaply //And at 470 F, // p v // p h // 340 1.4693 // 340 1233.4 // 337 1.4841 // 337 1233.9 // 335 1.4940 // 335 1234.2 v=1.4640-(2/5)*(1.4640-1.4693); h=1234.2-(2/5)*(1234.2-1233.4); //ft^3/lbm //specific volume //Btu/lbm //enthaply //Therefore,at 337 psia and 465 F // t v // t h // 470 1.4841 // 470 1233.9 // 465 1.4718 // 465 1230.7 // 460 1.4595 // 460 1227.5 v=1.4595+(1/2)*(1.4841-1.4595); h=1227.5+(1/2)*(1233.9-1227.5); //ft^3/lbm //specific volume //Btu/lbm //enthaply printf("At 465 F and 337 psia,specific volume=%f ft^3/lbm and enthalpy=%f Btu/lbm\n",v,h);
d00e68c56c79623a8d5592c6521c48fb2cc6e70a
449d555969bfd7befe906877abab098c6e63a0e8
/2132/CH5/EX5.13/Example5_13.sce
8ac1f8e462a5b9e0593134b394058b0f24f91f46
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Example5_13.sce
//Example 5.13 clc; clear; close; format('v',8); //Given data : D1byD2=1/0.7; D1=320/1000;//meter D2=320*0.7/1000;//meter g=9.81;//gravity constant Q=30.6/60;//m^3/sec A1=%pi*D1^2/4;//m^2 A2=%pi*D2^2/4;//m^2 C=A1*sqrt(2*g)/sqrt((D1byD2)^4-1); h=1.2;//meter of water K=Q/C/sqrt(h);//Coeff. of meter disp(K,"Coefficient of meter : "); //Answer in the book is wrong.
3fa5f49f59a96d3b16d02afa3c9ae499ac30da3f
fcc4645d4eee021a4cf8b2cee0922d812710573f
/frame/main_fem_truss.sce
cbfe4ab1cd703b871f00eee94bfb1aa8c5897e03
[]
no_license
gviolato/nemo
656a6db0481d9828bff307de24ee0b92045d653f
44cf1554de9e1c4bc8450ae147bdec512599e0d9
refs/heads/master
2020-12-29T02:37:17.515209
2017-05-28T16:12:49
2017-05-28T16:12:49
43,207,682
2
0
null
null
null
null
UTF-8
Scilab
false
false
1,572
sce
main_fem_truss.sce
// Nemo Frame preliminary design script // // Finite Element Aproach for frame design //.Working Beam elements for 2D and 3D with Mesh refinement // // Diego Montero; Fernando Valentini; Gustavo Violato; // First release: Oct. 2015 clc; xdel(winsid()); clear; //Add the NEMO_ROOT enviroment variable as the project folder in your computer to run the codes nemo_root = getenv('NEMO_ROOT'); cd(nemo_root+'\frame'); exec(pwd()+'\macros\library.sce'); //Problem choice + Properties exec('2D_10-bar-truss.sce'); //Mesh Refinement, input 0 to skip Ref=6000; [Ref_conec,Ref_coord,Ref_Prop]=refine(conec,coord,Prop,Ref); //Solve truss [Results,Udef]=solve_truss(Ref_conec,Ref_coord,Ref_Prop,F); //Display Results printf(" Node Stress(MPa) Lin.Disp.(mm)") disp(Results); //Plot results plottruss(Ref_conec,Ref_coord,'green'); Def_coord=Ref_coord+10*Udef; plottruss(Ref_conec,Def_coord,'red'); legends(['before loading','after loading'], [color('green') color('red')], 'ur'); // Change log //2015-10-17 - Diego Montero // ---------------------------- //Fixed a potential bug on the DOF restrictions; //Code already benchmarked against other FEA softwares, everything is working fine so far; //2015-10-14 - Diego Montero // ---------------------------- //Implemented Mesh refinement; //2015-10-10 - Diego Montero // ---------------------------- //Implemented 3D function; //Program splited into main, problem, plot and solve files // 2015-10-04 - Diego Montero // ---------------------------- // First release, working for 2D truss with simple plot in a single file.
cc237f6e453cce26d924be120c6edcdd84ff9872
449d555969bfd7befe906877abab098c6e63a0e8
/3250/CH6/EX6.3/Ex6_3.sce
7a2270c68f56f05a121b0df669696c750c1bbc64
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
313
sce
Ex6_3.sce
clc // Given that m = 5 // Romoval rate in cm^3/min A = 56 // Atomic gram weight in gm Z = 2 // Valence at which dissolation takes place D = 7.8 // Density of iron in gm/cm^3 // Sample Problem 3 on page no. 345 printf("\n # PROBLEM 6.3 # \n") I = (m/60)*(D*Z*96500)/(A) printf("\n Current required = %d amp",I)
7a81297edb3392e77e857727ab2f99d39dce75cc
449d555969bfd7befe906877abab098c6e63a0e8
/752/CH6/EX6.6.1/6_6_1.sce
9d661ac06b85d4cfb69afed0feb88bf5c572a439
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
287
sce
6_6_1.sce
clc; // page no 211 // prob no 6.6.1 //In given problem zero bias capacitance co is 20pF Co=20;// in pF Vd=-7;// reverse bias voltage in volt //constant pottential of junction is 0.5 a=0.5;// for abrupt junction Cd=Co/(1-(Vd/0.5))^a; disp('pF',Cd,+'The value of capacitor is ');
b406727a412c11c7259d847bec08dd39c44f5535
449d555969bfd7befe906877abab098c6e63a0e8
/764/DEPENDENCIES/data1_3.sci
bbec76a815d6a79fc6143af5b20290500652243f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
211
sci
data1_3.sci
//Introduction Example 1.3 //Initial value of the series of power capacities kW a = 7.5 //Final value of the series of power capacities kW b = 75 //For five models m = 5 - 1 //For nine models n = 9 - 1
e6e7db302dbd05a0fcf89cde3cf7786370bbf8d0
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH4/EX4.1/4_1.sce
7e2fd66556334fd4c2f22342026ea652de5dd900
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
594
sce
4_1.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 4.1 //calculation of coulomb force //given data np=26//number of protops in an iron atom na=6*10^26//number of atome in 58 kg iron mi=58//mass(in kg) of iron e=1.6*10^(-19)//charge(in coulomb) on an electron perdiff=1//percentage of charge of electron less than that of proton r=1//separation(in m) between the two blocks //calculation poschrg=(na*np*e*perdiff)/(mi*100) fc=(9*10^9*poschrg*poschrg)/(r*r) disp(fc,'the coulomb force(in newton) between the two blocks is newton')
42311b8a7f449d16fe2917b27f2cf5f54ae9022e
449d555969bfd7befe906877abab098c6e63a0e8
/32/CH8/EX8.15/8_15.sce
db7566f603edad2cb8d478caf1792be86851c88c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
925
sce
8_15.sce
//pathname=get_absolute_file_path('8.15.sce') //filename=pathname+filesep()+'8.15-data.sci' //exec(filename) //Specific heat of water: Cpw=4.18 //From steam tables: h2=2960.7 //kJ/kg s2=6.3615 //kJ/kg s3=s2 x3=0.863 h3=2404.94 //kJ/kg h7=358.59 //kJ/kg s10=s3 x10=0.754 h10=1982.91 //kJ/kg //Mass pf moisture in separator(in kg): m1=(1-x3)*0.5 //Mass of steam entering LPT(in kg): m2=0.5-m1 //Mass of water entering the hot well(in kg): m3=0.5+m1 //Temperature of water leaving hotwell(in C): T=(m3*90+m2*40) //Heat transferred per kg steam generated: Q=0.5*(h3-h7) printf("\n RESULT \n") printf("\nTemperature of water leaving hotwell = %f C",T) printf("\nHeat transferred per kg steam generated = %f kJ/kg steam",Q) //Net work output(in kJ/kg): Wnet=(h2-h3)*1+m2*(h3-h10) //Heat added(in kJ/kg): Qa=h2-Cpw*T //Thermal efficiency: n=Wnet/Qa*100 printf("\nThermal efficiency = %f percent",n)
56087e821263694485279d6214153be6082663a0
449d555969bfd7befe906877abab098c6e63a0e8
/1826/CH2/EX2.26/ex2_26.sce
1ff572853fe6e553e9539f81261e9a1d4a348021
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
317
sce
ex2_26.sce
// Example 2.26, page no-46 clear clc theta=27.5/2//in degrees a=0.563*10^-9 n=1 h=1 k=1 l=1 d=a/sqrt(h^2+k^2+l^2) printf("\nThe lattice spacing for the plane (111) is %.2f * 10^-10 m",d*10^10) lam=2*d*sin(theta*%pi/180)/n printf("\nThe deBroglie wavelength of the neutrons is %.3f *10^-10 m",lam*10^10)
f3f09178d6e8632624f8019081c7814a442fd82a
449d555969bfd7befe906877abab098c6e63a0e8
/3889/CH5/EX5.9/Ex5_9.sce
f24448eb1e00ec8eb1f710c39e2a5749c0849df3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
466
sce
Ex5_9.sce
//Example 5.9 //page 327 //Control Systems: Principles and Design //M Gopal, Second Edition, Tata McGraw-Hill //Chapter:Concepts of Stability: Routh Stability Array xdel(winsid())//close all graphics Windows clear; clc; //transfer function s=%s; P=s*(s^2+s+1)*(s+4); k=poly(0,'k') //routh array disp('Routh Array') r=routh_t(1/P,k) disp(r) disp('Solving for positive values,') disp(r($-1,1)) mprintf('%g >K >0, for stability',kpure(1/P))
e18a0632c82c2dd17deb82a03eb715a53817946e
4545588c8427debaf17f9dc71b0ace32f4fb5d67
/avr32/services/dsp/dsplib/conception/operators/fixed_point_ln.sci
930522b9da4ff785222cd2ea30214f758285596c
[]
no_license
eewiki/asf
02e06cec0465b28dd689dea801e6be6cbcd47eca
8d0f55bd089f2e68d2b53aa76adbb02c07cdb166
refs/heads/master
2021-01-16T18:20:22.690176
2015-03-09T05:42:50
2015-03-09T05:42:50
18,419,213
34
30
null
2014-12-25T05:13:20
2014-04-03T21:42:46
C
UTF-8
Scilab
false
false
726
sci
fixed_point_ln.sci
// Fixed point 16-bit cosine and sine clear function res=ln_test(x) res = 0; // Convert Q format to float x = x*2^(-31); expo = int(log(x)/log(2)); x = x*2^(-expo); a = (x-1)/(x+1); a_sqr = a*a; res = a_sqr*(1/9); res = a_sqr*(res + 1/7); res = a_sqr*(res + 1/5); res = a_sqr*(res + 1/3); res = a*(res + 1); res = res*2; res = log(x) + expo*log(2); endfunction; function res=DSP_Q(a, b, x) res = floor(x*2^b); endfunction QA = 1 QB = 31 e_moy = 0; 0.99999998882 for nbr=-0.0001:0.1:1, printf("ln(%f)\t%.11f %.11f\n", nbr, log(nbr)/log(10), ln_test(DSP_Q(QA, QB, nbr))); end; printf("Error average: %.11f\n", e_moy/length(-1:0.1:1));
19ea4033e1db0ed238e76db781b959b44258d9a1
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH3/EX3.a.8/Example_a_3_8.sce
0409b72d01ea45313bf526295072c3c050efe508
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
307
sce
Example_a_3_8.sce
//Example_a_3_8 page no:138 clc; V1=10; V2=5; R1=5; R2=2; R3=1; R4=4; V2r=R2*(V1/(R1+R2)); V1r=R3*(V2/R1); Vab=V2r-V1r;//thevenin voltage Rab=((R1*R2)/(R1+R2))+((R4*R3)/(R4+R3));//thevenin resistance disp(Vab,"the thevenin voltage is (in V)"); disp(Rab,"the thevenin resistance is (in ohm)");
b1933ef21d2dbb375dc38bbc030a47cf98f2ad7c
449d555969bfd7befe906877abab098c6e63a0e8
/1055/CH7/EX7.2/ch7_2.sce
223b4a7df2ddf293bb32e9d5344641e9bcd40b07
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
541
sce
ch7_2.sce
// To calculate the maximum Sag clear clc; D=1.95 + 2.6;// overall diameter(cm) A=4.55*(10^-2);// area(m_2) d=19.5;//diameter of conductor(mm) r=d/2;//radius of conductor(mm) Wp=A*39;//wind pressure(kg/m_2) t=13;//ice coating(mm) US=8000;// ultimate strength(kg) Aice=%pi*(10^-6)*((r+t)^2 - r^2);//area section of ice (m_2) Wice=Aice*910; W=(sqrt((.85+Wice)^2 + Wp^2));// total weight of ice (kg/m) T=US/2;// working teansion (kg) c=T/W; l=275;//length of span(m) Smax=l*l/(8*c); mprintf("Maximum sag=%.1f metres\n",Smax);
c7f4032ba6b62dd46dabc2f71d07c8826bfae514
449d555969bfd7befe906877abab098c6e63a0e8
/165/CH2/EX2.1.a/ex2_1_a.sce
5bce5295c031ffc4dcc991f2303370f60cc34439
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
493
sce
ex2_1_a.sce
//Example 2.1(a) clc; N=100; //No of turns of wire of the coil W=20*10^-3; //Width of the coil D=30*10^-3; //Depth of the ciol B=0.1; //Flux density in the gap I=10*10^-3; //Current in the movable coil K=2*10^-6; //Spring Constant A=W*D; //Effective coil area Tau=B*A*N*I; //Deflecting Torque Theta=Tau/K; //Deflection printf('\nDeflecting torque = %.2f uNm\n',Tau*10^6) printf('\nDeflection = %d degree\n',Theta)
ea0271f5d1958739732371fd9c92e395a2876449
449d555969bfd7befe906877abab098c6e63a0e8
/1895/CH11/EX11.1/EXAMPLE11_1.SCE
d60e79a05100ac4ebce196d704cc08fdf6e297c1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
850
sce
EXAMPLE11_1.SCE
//ANALOG AND DIGITAL COMMUNICATION //BY Dr.SANJAY SHARMA //CHAPTER 11 //Information Theory clear all; clc; printf("EXAMPLE 11.1(PAGENO 488)"); //given Px_1=1/2;//probability 1 Px_2=1/4;//probability 2 Px_3=1/8;//probability 3 Px_4=1/8;//probability 4 //calculations Ix_1 = log2(1/(Px_1))//information content in first probability Ix_2 = log2(1/(Px_2))//information content in first probability Ix_3 = log2(1/(Px_3))//information content in first probability Ix_4 = log2(1/(Px_3))//information content in first probability //results printf("\n\ni. Information content of first symbol = %.2f bit",Ix_1); printf("\n\nii. Information content of second symbol = %.2f bits",Ix_2); printf("\n\niii. Information content of third symbol = %.2f bits",Ix_3); printf("\n\niV. Information content of fourth symbol = %.2f bits",Ix_4);
9ba9f45d668183f3870a0bed075d29a28cc3a93f
db6c77c95fe7a97b791d5689c2ac3b39e791ea17
/tests/cases/europepmc-json_010.tst
c9758d8b9a8ffd46534d3d4f18353e25ea88e677
[]
no_license
sauliusg/bibliophile
9623cd5e8b163d36a253eaa36b558ed87666450a
1e6f63b1e08209af5c6c87ee05098d8fa53a4345
refs/heads/master
2021-01-19T05:49:43.075428
2018-11-20T19:30:36
2018-11-20T19:30:36
100,584,633
1
1
null
null
null
null
UTF-8
Scilab
false
false
279
tst
europepmc-json_010.tst
Test compares the json formating and extraction of information of the europepmc-json script using a stable result from 'tests/bin/europepmc-json_008', which is used instead of querying the website, allowing the test to work offline. In this test, we check the '--script' option.
fe7829980090653e596a88536b835df5b1e77f06
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH12/EX12.6/Ex12_6.sce
4aaa681d38e25c2e67fc9626806777b88b7c3a5e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,259
sce
Ex12_6.sce
clc h1 = 3023.5 // Enthalpy of steam at state 1 in kJ/kg s1 = 6.7664 // Enthalpy of steam at state 1 in kJ/kgK s2 = s1 // Isentropic process s3 = s1 //Isentropic process s4 = s1 //Isentropic process t_sat_20 = 212 // Saturation temperature at 20 bar in degree Celsius t_sat_1 = 46 // Saturation temperature at 1 bar in degree Celsius dt = t_sat_20-t_sat_1 // Change in temperature n =3 // number of heaters t = dt/n // temperature rise per heater t1 = t_sat_20-t // Operational temperature of first heater t2 = t1-t// Operational temperature of second heater // 0.1 bar hf = 191.83 // Enthalpy of fluid in kJ/kg hfg = 2392.8 // Latent heat of vaporization in kJ/kg sf = 0.6493// Entropy of fluid in kJ/kgK sg = 8.1502// Entropy of gas in kJ/kgK // At 100 degree hf100 = 419.04 // Enthalpy of fluid in kJ/kg hfg100 = 2257.0// Latent heat of vaporization in kJ/kg sf100 = 1.3069 // Entropy of fluid in kJ/kgK sg100 = 7.3549 // Entropy of gas in kJ/kgK // At 150 degree hf150 = 632.20 // Enthalpy of fluid in kJ/kg hfg150 = 2114.3// Latent heat of vaporization in kJ/kg sf150 = 1.8418 // Entropy of fluid in kJ/kgK sg150 = 6.8379// Entropy of gas in kJ/kgK x2 = (s1-sf150)/4.9961 // Steam quality h2 = hf150+(x2*hfg150) // Enthalpy at state 2 in kJ/kg x3 = (s1-sf100)/6.0480 // Steam quality h3 = hf100+(x3*hfg100) // Enthalpy at state 3 in kJ/kg x4 = (s1-sf)/7.5010 // Steam quality h4 = hf+(x4*hfg)//Enthalpy at state 4 in kJ/kg h5 = hf // Enthalpy at state 5 in kJ/kg h6 = h5 //Enthalpy at state 6 in kJ/kg h7 = hf100 // Enthalpy at state 7 in kJ/kg h8 = h7 // Enthalpy at state 8 in kJ/kg h9 = 632.2 // Enthalpy at state 9 in kJ/kg h10 = h9 // Enthalpy at state 10 in kJ/kg m1 = (h9-h7)/(h2-h7) // regenerative mass m2 = ((1-m1)*(h7-h6))/(h3-h6) // regenerative mass Wt = 1*(h1-h2)+(1-m1)*(h2-h3)+(1-m1-m2)*(h3-h4) // Turbine work Q1 = h1-h9 // Heat addition Wp = 0 // Pump work is neglected n_cycle = 100*(Wt-Wp)/Q1 // Cycle efficiency sr = 3600/(Wt-Wp) // Steam rate printf("\n Example 12.6\n") printf("\n Steam quality at turbine exhaust is %f ",x3) printf("\n Net work per kg of stem is %f kJ/kg",Wt) printf("\n Cycle efficiency is %f percent",n_cycle) printf("\n Stream rate is %f kg/kW h",sr) //The answers vary due to round off error
e34eefeb7472808666903dd312730124ecadaa38
449d555969bfd7befe906877abab098c6e63a0e8
/2792/CH8/EX8.8/Ex8_8.sce
8c38ddd29657a4d2f2d79fc2efcc09a8792a407d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
995
sce
Ex8_8.sce
clc mu_n=1000 disp("mu_n = "+string(mu_n)+"cm^2(Vs)^-1") //initializing value of channel mobility e = 1.6*10^-19 disp("e= "+string(e)+"C")//initializing value of charge of electron h=0.5*10^-4 disp("h = "+string(h)+"cm") //initializing value of channel depth Nd = 10^16 disp("Nd = "+string(Nd)+"cm^-3") //initializing value of channel doping L = 2*10^-4 disp("L = "+string(L)+"cm") //initializing value of channel length apsilen = 11.9*8.85*10^-14 disp("apsilen = "+string(apsilen)) //initializing value of relative permitivity Vs = 10^7 disp("Vs = "+string(Vs)+"cm/s") //initializing value of saturated velocity fT = (e*mu_n*Nd*(h^2))/(2*%pi*apsilen*(L^2)) disp("The maximum cutoff frequency of the device in the constant mobility model is ,fT = (e*mu_n*Nd*(h^2))/(2*%pi*apsilen*(L^2))= "+string(fT)+"Hz")//calculation fT = Vs/(2*%pi*L) disp("The maximum cutoff frequency of the device in the saturation velocity model is fT = Vs/(2*%pi*L)= "+string(fT)+"Hz")//calculation
f78449413ed2b3dc43f53d1333aa35d01627699a
449d555969bfd7befe906877abab098c6e63a0e8
/3440/CH7/EX7.4/Ex7_4.sce
36085533f81f23944362b9f19871792d6e84eb1d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex7_4.sce
clc T=300 //K k=8.617*10^-5 //eV/K q=1.6*10**-19 //C epsilonx=8.854*10^-14 //F/cm ni=9.65*10^9//cm^-3 ND=2*10^15//cm^-3 Nc=4.7*10^17//cm^-3 a=0.6*10^-4 fbn=0.89//V Vp=(q*ND*a^2)/(2*epsilonx*12.4) disp(Vp,"Vp in V is=") Vn=(k*T)*log(Nc/ND) disp(Vn,"Vn in V is=") Vbi=fbn-Vn disp(Vbi,"Vbi in V is=")
181db4d18420a204e92573fe5aaa1b69448eeb97
449d555969bfd7befe906877abab098c6e63a0e8
/3793/CH3/EX3.5/exp_3_5.sce
b49c3ad492efc073d25fbc12525ccb1ef9432083
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
552
sce
exp_3_5.sce
clear; clc; f=50; d=.05; //Diameter Of each Conductor in m r=d/2; //radius Of each conductor D=.5; //Space Between Two Conductor in m ln=200; //Distance Of the Line in km Dsb=sqrt(.7788*r*D); Dyb=10; Dry=10; Dbr=20; D_eq=((Dyb*Dry*Dbr)^(1/3)); L=(2*(10^-7)*log(D_eq/Dsb)*(10^(6))); mprintf(" Inductaance = %.3f mH/Km \n",L); l=L*ln*(10^-3) mprintf("the Inductaance of the line= %.3f H\n",l); Xl=2*%pi*l*f; mprintf("the reactance of the line= %.3f ohm",Xl);
6cb5f43bcc5bea1067d5a7f3f365091555bb01bf
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH12/EX12.3/W_3.sce
771a5bf7b8772afae51208a03c7e544b3271c2fc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
162
sce
W_3.sce
// sum 12-3 clc; clear; h=12; t=0.707*h; l=60; Ta=80; P=2*l*t*Ta; P=P*10^-3; // printing data in scilab o/p window printf("P is %0.3f kN ",P);
526b00623725f2ec9b47412f980686955bf43dbf
449d555969bfd7befe906877abab098c6e63a0e8
/1733/CH4/EX4.8/4_8.sce
9c2463b6fa842782eb74d48584a73a04368d687f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
282
sce
4_8.sce
//4.8 clc; V=200; E=100; R=0.5; t=2*10^-3; L=16*10^-3; Imin=10; i=(V-E)/R*(1-exp(-R*t/L))+Imin*exp(-R*t/L); printf("Current at the instant of turn off thyristor = %.2f A", i) t=5*10^-3; i_5=i*exp(-R*t/L); printf("\nCurrent after 5ms of turn off thyristor = %.2f A", i_5)
fb1e90f9dd832720b31e788c0f0f96a95779acb1
8dd90a49bebc8f8ed28e27005990e338463cc57b
/cudd/cudd-3.0.0/mtr/test.tst
c39158edeeb347dd8cd07bcb1b130653533e013a
[]
no_license
xuther/byu-verification-validation
429d0dfba79625f98809d933ff4379d6e1b5b772
8e827b24fe6c3bb8b3609024a6e27b8b71105b4c
refs/heads/master
2021-01-09T20:07:57.363761
2017-04-20T05:02:50
2017-04-20T05:02:50
81,224,922
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,351
tst
test.tst
# TestMtr Version #0.6, Release date 2/6/12 # mtr/testmtr -p 2 ./mtr/test.groups N=0x1676020 C=0x16760e0 Y=0x0 E=0x0 P=0x0 F=0 L=0 S=0 N=0x16760e0 C=0x0 Y=0x1676120 E=0x0 P=0x1676020 F=3 L=0 S=0 N=0x1676120 C=0x0 Y=0x1676060 E=0x16760e0 P=0x1676020 F=4 L=0 S=0 N=0x1676060 C=0x0 Y=0x16760a0 E=0x1676120 P=0x1676020 F=1 L=0 S=0 N=0x16760a0 C=0x0 Y=0x0 E=0x1676060 P=0x1676020 F=2 L=0 S=0 #------------------------ N=0x1676020 C=0x0 Y=0x0 E=0x0 P=0x0 F=0 L=0 S=12 # (0,11) N=0x1676020 C=0x16760e0 Y=0x0 E=0x0 P=0x0 F=0 L=0 S=12 N=0x16760e0 C=0x0 Y=0x1676120 E=0x0 P=0x1676020 F=0 L=0 S=6 N=0x1676120 C=0x0 Y=0x0 E=0x16760e0 P=0x1676020 F=0 L=6 S=6 # (0(0,5)(6,11)11) N=0x1676020 C=0x16761a0 Y=0x0 E=0x0 P=0x0 F=0 L=0 S=12 N=0x16761a0 C=0x16760e0 Y=0x0 E=0x0 P=0x1676020 F=4 L=0 S=12 N=0x16760e0 C=0x1676060 Y=0x1676120 E=0x0 P=0x16761a0 F=0 L=0 S=6 N=0x1676060 C=0x0 Y=0x16760a0 E=0x0 P=0x16760e0 F=0 L=0 S=2 N=0x16760a0 C=0x0 Y=0x1676160 E=0x1676060 P=0x16760e0 F=0 L=2 S=2 N=0x1676160 C=0x0 Y=0x0 E=0x16760a0 P=0x16760e0 F=0 L=4 S=2 N=0x1676120 C=0x0 Y=0x0 E=0x16760e0 P=0x16761a0 F=0 L=6 S=6 # (0(0(0(0,1)(2,3)(4,5)5)(6,11)11|F)11) # (0(0(0,1)(2,3)(4,5)5)(6,11)11|F) N=0x1676020 C=0x16761a0 Y=0x0 E=0x0 P=0x0 F=0 L=0 S=12 N=0x16761a0 C=0x1676060 Y=0x0 E=0x0 P=0x1676020 F=4 L=0 S=12 N=0x1676060 C=0x0 Y=0x16760a0 E=0x0 P=0x16761a0 F=0 L=0 S=2 N=0x16760a0 C=0x0 Y=0x1676160 E=0x1676060 P=0x16761a0 F=0 L=2 S=2 N=0x1676160 C=0x0 Y=0x1676120 E=0x16760a0 P=0x16761a0 F=0 L=4 S=2 N=0x1676120 C=0x0 Y=0x0 E=0x1676160 P=0x16761a0 F=0 L=6 S=6 # (0(0(0,1)(2,3)(4,5)(6,11)11|F)11) N=0x1676020 C=0x16761a0 Y=0x0 E=0x0 P=0x0 F=0 L=0 S=12 N=0x16761a0 C=0x1676060 Y=0x0 E=0x0 P=0x1676020 F=4 L=0 S=12 N=0x1676060 C=0x0 Y=0x16760a0 E=0x0 P=0x16761a0 F=0 L=0 S=2 N=0x16760a0 C=0x0 Y=0x1676120 E=0x1676060 P=0x16761a0 F=0 L=2 S=2 N=0x1676120 C=0x0 Y=0x1676160 E=0x16760a0 P=0x16761a0 F=0 L=4 S=6 N=0x1676160 C=0x0 Y=0x0 E=0x1676120 P=0x16761a0 F=0 L=10 S=2 # (0(0(0,1)(2,3)(4,9)(10,11)11|F)11) #------------------------ N=0x1676020 C=0x0 Y=0x0 E=0x0 P=0x0 F=0 L=0 S=4 # (0,3) N=0x1676020 C=0x16761a0 Y=0x0 E=0x0 P=0x0 F=0 L=0 S=4 N=0x16761a0 C=0x0 Y=0x1676060 E=0x0 P=0x1676020 F=4 L=0 S=2 N=0x1676060 C=0x0 Y=0x0 E=0x16761a0 P=0x1676020 F=4 L=2 S=2 # (0(0,1|F)(2,3|F)3) #------------------------ N=0x1676020 C=0x1676060 Y=0x0 E=0x0 P=0x0 F=0 L=0 S=12 N=0x1676060 C=0x16760e0 Y=0x16760a0 E=0x0 P=0x1676020 F=0 L=0 S=6 N=0x16760e0 C=0x0 Y=0x1676120 E=0x0 P=0x1676060 F=0 L=0 S=2 N=0x1676120 C=0x0 Y=0x1676160 E=0x16760e0 P=0x1676060 F=0 L=2 S=2 N=0x1676160 C=0x0 Y=0x0 E=0x1676120 P=0x1676060 F=0 L=4 S=2 N=0x16760a0 C=0x0 Y=0x0 E=0x1676060 P=0x1676020 F=4 L=6 S=6 # (0(0(0,1)(2,3)(4,5)5)(6,11|F)11)
e40fb49ca643508cdbc16b8469768d982b5d54a9
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH16/EX16.a.6/Example_a_16_6.sce
81914ad0e63779a6330c046158568b7378ead08b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
319
sce
Example_a_16_6.sce
//Example_a_16_6 page no:784 clc; current_gain=(25*0.05*10^6)/(1500+0.05*10^6); V2_coeff=-6.6*10^-4+0.1*10^-4-0.2*10^-4; V1_coeff=0.05; voltage_gain=V1_coeff/V2_coeff; disp(current_gain,"the current gain is "); disp(voltage_gain,"the voltage gain is "); //voltage gain value is calculated wrongly in text book
d7a53b0e1927209a11107664c612acab76326f55
449d555969bfd7befe906877abab098c6e63a0e8
/249/CH26/EX26.2/26_02.sce
2e40387bdeb4bbf0eb7709f539b392082a7be126
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
386
sce
26_02.sce
clear clc t_avg=60;t=20;//min //For chemical rxn controlling, t =kR unconverted=((1/4)*(t/t_avg))-((1/20)*(t/t_avg)^2)+((1/120)*(t/t_avg)^3); //For ash layer diffusion controlling,t=k1R^2 unconverted1=((1/5)*(t/t_avg))-((19/420)*(t/t_avg)^2)+((41/4620)*(t/t_avg)^3); c_avg=(unconverted+unconverted1)/2; printf("Fraction of original sulfide ore remain unconverted is %f",c_avg)
23167eae5edaa5d85d268662fb462bd91dda4581
43799901e22e995d4db64000ef28c0a787aeb11b
/ISAWIN/LINOV/VODA/appli.tst
8aa992c858fc6c04fca2baf5af0a969c2cedf9e3
[ "WTFPL" ]
permissive
aquaforum/tench_catch
7082d8e8f3a224aa50be9150a96362f2f323a2be
3f377476d82d7343edd985a6d3a41b57dc301f98
refs/heads/master
2023-07-17T13:33:10.901467
2021-08-22T19:29:09
2021-08-22T19:29:09
398,885,059
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,344
tst
appli.tst
@ISA_SYMBOLS,242932492 #NAME,voda,3.41 #DATE,12.09.2016 #SIZE,G=3,S=0,T=0,L=0,P=1,V=0 #COMMENT,wsma1tst @PROGRAMS,3 #!5001,INIT #!5002,TAST #!5003,PARA @STEPS,0 @TRANSITIONS,0 @BOOLEANS,1 #!1001,INIT_,+X,!5001,FALSE,TRUE @ANALOGS,65 #!2001,P2004,+X,!0000,F, #!2002,P2013,+X,!0000,F, #!2003,P2005,+X,!0000,F, #!2004,P2014,+X,!0000,F, #!2005,P2006,+X,!0000,F, #!2006,P2015,+X,!0000,F, #!2007,P1500,+X,!0000,F, #!2008,P2007,+X,!0000,F, #!2009,P1501,+X,!0000,F, #!200A,P2008,+X,!0000,F, #!200B,P1510,+X,!0000,F, #!200C,P1502,+X,!0000,F, #!200D,P2009,+X,!0000,F, #!200E,P2500,+X,!0000,F, #!200F,P1511,+X,!0000,F, #!2010,P1503,+X,!0000,F, #!2011,P,+X,!0000,F, #!2012,P2501,+X,!0000,F, #!2013,P1512,+X,!0000,F, #!2014,P2510,+X,!0000,F, #!2015,P1504,+X,!0000,F, #!2016,P2502,+X,!0000,F, #!2017,P1513,+X,!0000,F, #!2018,P2511,+X,!0000,F, #!2019,P1505,+X,!0000,F, #!201A,P2503,+X,!0000,F, #!201B,P1514,+X,!0000,F, #!201C,P2512,+X,!0000,F, #!201D,P1506,+X,!0000,F, #!201E,P2504,+X,!0000,F, #!201F,P1515,+X,!0000,F, #!2020,P2513,+X,!0000,F, #!2021,P1507,+X,!0000,F, #!2022,P2505,+X,!0000,F, #!2023,P2514,+X,!0000,F, #!2024,P1508,+X,!0000,F, #!2025,P2506,+X,!0000,F, #!2026,P2515,+X,!0000,F, #!2027,P1509,+X,!0000,F, #!2028,P2507,+X,!0000,F, #!2029,P2508,+X,!0000,F, #!202A,P2509,+X,!0000,F, #!202B,T,+X,!0000,F, #!202C,P0000,+X,!0000,F, #!202D,P2000,+X,!0000,F, #!202E,P2001,+X,!0000,F, #!202F,P2010,+X,!0000,F, #!2030,P2002,+X,!0000,F, #!2031,P2011,+X,!0000,F, #!2032,P2003,+X,!0000,F, #!2033,P2012,+X,!0000,F, #!2034,RES,+X,!0000,F, #!2035,PARA,+X,!5003,F, #!2036,TERM,+X,!5003,F, #!2037,PRESH,+X,!5003,F, #!2038,R1,+X,!5003,F, #!2039,R0,+X,!5003,F, #!203A,T_,+X,!5003,F, #!203B,P_,+X,!5003,F, #!203C,IY,+X,!5003,I, #!203D,IX,+X,!5003,I, #!203E,MAX1,+X,!5003,F, #!203F,MAX0,+X,!5003,F, #!2040,MIN1,+X,!5003,F, #!2041,MIN0,+X,!5003,F, @TIMERS,0 @MESSAGES,0 @USP,1 #!B001,R_MB_REL @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @FBINSTANCES,0 @END_SYMBOLS
a8c451d266f444d321a97bbb41b37f4121d19db5
449d555969bfd7befe906877abab098c6e63a0e8
/2471/CH6/EX6.1/Ex6_1.sce
d111dd953c48bc301fa31c8a7c5d1bfd43d4ae16
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
839
sce
Ex6_1.sce
clear ; clc; // Example 6.1 printf('Example 6.1\n\n'); printf('Page No. 142\n\n'); // given L = 2.5;// Length of tubes in metre Do = 10*10^-3;// Internal diameter of tubes in metre m = 3.46;// mass flow rate in kg/s Th = 120;// Temperature of condening steam in degree celcius Tl_i = 20;// Inlet temperature of liquid in degree celcius Tl_o = 80;// Outlet temperature of liquid in degree celcius Cp = 2.35*10^3;// Specific heat capacity of liquid in J/kg-K U = 950;// Overall heat transfer coefficent in W/m^2-K T1 = Th- Tl_i;// in degree celcius T2 = Th- Tl_o;// in degree celcius Tm = ((T2-T1)/log(T2/T1));// logarithmic mean temperature of pipe in degree celcius a = %pi*Do*L;//Surface area per tube in m^2 A = ((m*Cp*(Tl_o - Tl_i))/(U*Tm));// in m^2 N = A/a; printf('The number of tubes required is %3.0f',N)
8cf5a9cf50f1b2d0b27aec0a8cfd04d7d25ab239
1489f5f3f467ff75c3223c5c1defb60ccb55df3d
/tests/test_ods_4_b.tst
0881a8287107660634c2617bafd59dd036278e38
[ "MIT" ]
permissive
ciyam/ciyam
8e078673340b43f04e7b0d6ac81740b6cf3d78d0
935df95387fb140487d2e0053fabf612b0d3f9e2
refs/heads/master
2023-08-31T11:03:25.835641
2023-08-31T04:31:22
2023-08-31T04:31:22
3,124,021
18
16
null
2017-01-28T16:22:57
2012-01-07T10:55:14
C++
UTF-8
Scilab
false
false
393
tst
test_ods_4_b.tst
aaa bbb ccc config.info.default (289 B) mnemonics.txt (13.1 kB) ddd eee fff saved test_ods_4_b.tmp (289 B) saved test_ods_4_b.tmp (13.1 kB) begin transaction (level = 1) commit transaction (level = 1) aaa bbb ccc config.info.default (289 B) mnemonics.txt (13.1 kB) aaa bbb ccc config.info.default (289 B) mnemonics.txt (13.1 kB) saved test_ods_4_b.tmp (289 B) saved test_ods_4_b.tmp (13.1 kB)
395b85a6a396d5cac3be5a7f25235360e1faf036
c59576b9f96a7b26dc5bc0d52998ad818380b8cf
/test/account/method.tst
5eaa44e0873ec92a74f3dcfcd28b15a874e06cae
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/checkdig
0588535521d9106a5c777a809e50d64a9204fa3c
3570d246efd0d102f1a2652dfe752884b5d346d8
refs/heads/master
2022-02-14T07:41:43.949901
2022-01-28T15:00:07
2022-01-28T15:00:07
30,117,975
1
1
null
null
null
null
UTF-8
Scilab
false
false
17,115
tst
method.tst
49 0145116236 49 0004292856 49 0002231970 49 0001027965 49 0001066689 49 0001160640 49 0001319051 49 0001831278 49 0002231970 49 0240120782 49 0240260950 49 0002780201 49 0380262683 49 0003929542 49 0578334682 49 0578205080 49 0000147800 49 0003605151 55 0000250104 60 0026002477 60 0026049809 60 0026049809 65 4002014103 65 4006922100 65 4006922100 68 0000085601 70 2520248520 70 3180100902 70 3180100902 70 0044102155 70 5800202010 70 5800228028 70 5800228028 70 5803388662 70 5803388662 70 5803866912 70 6410609701 70 0002139820 73 0008022609 73 0004618500 73 1110106435 73 0000352740 73 0000352740 74 0005606017 74 0003300205 74 0056417200 74 0000100016 74 0001010222 74 0000101451 74 0000104794 74 0000104919 74 0011007689 74 0000124404 74 0016001844 74 0165014044 74 0019007459 74 0002002889 74 0002194462 74 0025001850 74 0025190299 74 0025334210 74 0032002479 74 0000372276 74 0006004014 74 0000860044 74 0090007774 74 0009137654 74 0092017391 75 0571364000 75 0000101600 75 0000101600 75 0000104968 75 0106020134 75 0000150151 75 0000150151 75 0000214213 75 0000305201 75 0305201000 75 0305201000 75 0305201000 75 0305201000 75 0031001100 75 0380519010 75 0000600502 75 0000600502 75 0000600502 75 0790642500 76 0005635500 76 4502047500 76 0670094200 76 0756390100 76 0009073164 76 0103115600 76 0222277200 76 0222277200 76 0000114595 76 0001587880 76 0012042412 76 0002086268 76 0000004444 76 0000004444 76 0000004444 76 0001105519 76 0003656330 76 0026049809 76 0005611314 76 0510185200 76 0175665500 76 0155310000 76 0000097268 76 0004970000 76 0182607028 76 0024489753 76 0040400752 76 0002221000 76 0000236521 76 0563439800 76 0484416600 76 0484416600 76 0001111111 76 0300100300 76 0300100300 76 0300863000 76 0007300554 76 0003204987 76 0042022087 76 0006917777 76 0003243800 76 0348035100 76 0348035100 76 0405512300 76 0405512300 76 0405512300 76 0405790900 76 0005290747 76 0005290747 76 0010507309 76 0016269302 76 1030373490 76 0523233500 76 0006020432 76 0006020432 76 0006020432 76 0001136409 76 0001138409 76 0001556844 76 0000219550 76 3000590010 76 0336469000 76 0002114021 76 4140361246 76 0911020300 76 0207301801 76 0333299800 76 0340316600 76 0103912607 76 0458855607 76 0026049809 76 0230024200 76 0535000123 76 0009315937 76 4002922016 76 0024489753 76 0040400752 76 0563439800 76 0000337337 76 0037548600 76 0384866800 76 0451444400 76 0348035100 76 0348035100 76 0353736500 76 0405512300 76 0405512300 76 0405512300 76 0405512300 76 0131330700 76 0004630373 76 0630388200 76 1106002039 76 0340030800 76 0010507309 76 0016269302 76 1030373490 76 0523233500 76 0006020432 76 0006020432 76 0006020432 76 0001136409 76 0001138409 76 0001556844 76 0000219550 76 3000590010 76 0336469000 76 0002114021 76 4140361246 76 0911020300 76 0207301801 76 0333299800 76 0340316600 76 0103912607 76 0458855607 76 0026049809 76 0230024200 76 0535000123 76 0009315937 76 4002922016 76 0024489753 76 0040400752 76 0563439800 76 0000337337 76 0037548600 76 0384866800 76 0451444400 76 0348035100 76 0348035100 76 0353736500 76 0405512300 76 0405512300 76 0405512300 76 0405512300 76 0131330700 76 0004630373 76 0630388200 76 1106002039 76 0340030800 76 0004350567 76 0007975550 76 0005635500 76 0568622200 76 0402501500 76 0518950000 76 4097604024 76 0082746205 76 0004839080 76 0603411100 76 0010507309 76 0003021011 76 0003021011 76 0101002500 76 0003641982 76 0002113077 76 1566543016 76 0089012507 76 0002114021 76 0211402100 76 0004279530 76 0000192823 76 0101411300 76 0804060600 76 0804060600 76 0008018777 76 0552850100 76 0230082500 76 0442331801 76 0001222254 76 0937508900 76 0193965702 76 0003546433 76 0005409159 76 0005419682 76 0348035100 76 0192006633 76 0507381900 76 0897000200 76 0175754400 76 0134382209 76 0174710100 76 0174710100 76 0400026210 76 0507021100 76 0021885600 76 4543607908 76 0210339401 76 0432448100 76 0738200500 76 0007472962 76 0194591403 76 0500738000 76 0009824613 76 0023035009 76 0810050000 76 0005125067 76 0000422626 76 0380227900 76 0334012000 76 0458855607 76 0000024000 76 0442369000 76 4002307502 76 0024000309 76 0790512900 76 0390039300 76 0609006000 76 6060536560 76 0334432000 76 0341144801 76 0767150700 76 0000010439 76 0000506745 76 0857362100 76 0348035100 76 0353736500 76 0405512300 76 0405512300 76 0405512300 76 0405512300 76 0405512300 76 0413359600 76 0006719562 76 0331893101 76 0061630104 76 0897000200 76 4050751900 76 0003032309 76 0000088807 76 0000102715 76 0292322100 76 0102084500 76 0001061847 76 0380227900 76 0380227900 76 0413920608 76 0089327608 76 0397346300 76 0230024200 76 0230024200 76 0090643800 76 0090643800 76 0090874500 76 0920082400 76 0922480400 76 0600418000 76 0346354000 76 0682638600 76 0325581807 76 0003601802 76 0231606700 76 0321079000 76 0374374300 76 0451010000 76 0502490000 76 0153580800 76 0315732727 76 0151021945 76 0143013030 76 0353736500 76 0405790900 77 0000033839 77 0000033839 77 0000004111 77 0000004600 77 0000008800 77 0000008800 77 0000009016 77 0067291900 78 0001400019 78 0001955111 78 0001955111 78 0000218602 78 0000222232 78 0002321370 78 0002328862 78 0000251801 78 0000256818 78 0000264044 78 0000268268 78 0000274001 78 0003306180 78 0000362999 78 0003715802 78 0051399438 78 0005203484 78 0005206206 78 0005415468 78 0005701644 78 0008341117 78 0008342248 78 0008347270 78 0008600736 78 0008891418 78 0008891418 78 0006015630 78 0000294209 78 0001200682 78 0001204650 78 0001204650 78 0001212661 78 0001704605 78 0001801406 78 0001803287 78 0000200790 78 0000202887 78 0002322659 78 0000244012 78 0000247452 78 0000252163 78 0000282400 78 0000282400 78 0000283838 78 0003802840 78 0003907490 78 0005206206 78 0005341532 78 0000560003 78 0005818240 78 0007005572 78 0008145120 78 0008164188 78 0008600736 78 0008891277 78 0008891418 78 0006090302 78 0005403928 80 0000296145 80 0000296145 80 0000608711 80 0000608711 80 0000608760 80 0000613323 80 0000618371 80 0000619627 81 0000516306 81 0100981265 81 0103130479 81 0001073680 81 0001512005 81 0001538837 81 0001965425 81 0200813680 81 0200813680 81 0210260444 81 0000414328 81 0000921165 81 0000922005 81 0000923923 81 0000924300 81 0000924300 82 0100688100 82 0000201731 82 0000973483 83 0900652733 84 0000954063 84 0100669199 84 0000094943 84 0000453072 84 0000453161 84 0000468770 85 0013013015 85 0000673676 85 0000705361 85 0000705361 85 0000713783 85 0000713783 85 0000868300 86 0001028836 86 0001316868 86 0000440744 86 0000440744 86 0000508796 86 0000524520 87 0102327012 87 0010700164 87 0010702252 87 0010720157 87 0203237012 87 0003237356 87 0001465840 87 0002204000 87 0002924342 87 0000991841 87 0000991841 87 0010005697 87 0100525394 87 0103237012 87 0010700164 87 0010702252 87 0002159394 87 0003237356 87 0003237356 87 0003241951 87 0000954217 87 0000333333 88 0620151555 88 0100605417 88 0000263508 88 0006741053 88 0002637855 88 0007301960 88 0360216741 88 0001334654 88 0005739578 88 0000059994 88 0006167586 88 0006415369 88 0006731295 88 0006743161 88 0007173458 88 0007310625 88 0009712640 89 0058929002 89 0002457390 89 0117076001 89 0001416203 89 0001416203 89 0001419411 89 0200963007 89 0212836013 89 0214133001 89 0220165009 89 0225147009 89 0225147009 89 0225289008 89 0227385004 89 0228413001 89 0228413001 89 0229360009 89 0240444000 89 0291819001 89 0295443014 89 0341791008 89 0341917001 89 0036735000 89 0036735000 89 0500286027 89 0500953007 89 0507083008 89 0526552000 89 0573583005 89 0583289002 90 0055090500 90 0000957089 90 0100254152 90 0010577493 90 0110957089 90 0000164682 90 0000329517 90 0003999190 90 0004509900 90 0005140854 90 0005140854 90 0005146208 90 0000771488 90 0000950520 90 0000956562 90 0005148464 90 0000077003 90 0230140332 90 0110957089 90 0204542703 90 0004509900 90 0005145236 90 0005146208 90 0000565547 90 0000565547 90 0000956056 90 0001005250 90 0036001881 90 0000356188 91 0016264108 91 0002817500 91 1851785600 91 2934639600 91 3128030601 91 3128030601 91 0002150704 91 0301060601 91 0632412360 91 0496232437 91 9066002802 91 9066002802 91 0093777604 91 6190545600 91 7111401600 91 0048038467 91 2520248520 91 0000614718 91 8806925601 92 4059560022 92 4099575268 92 4099575268 92 4129630196 92 4469510223 92 0003083918 92 0003083926 92 4049689783 92 4059560022 92 4059560022 92 4069607301 92 4069607301 92 4089581441 92 4109735637 92 4119654938 92 4129630196 92 4319579501 92 4469510223 94 6107010005 94 6122189009 94 6122189009 94 6122189009 95 0103443802 95 0030066805 95 0060629807 95 0062003677 95 0000205400 95 0000207161 95 0002454734 95 0002738775 95 0002750511 95 0002752611 95 0002752611 95 3440101002 95 0035371435 95 3610100014 95 0037220256 95 0040454233 95 0040454233 95 5340147415 95 5340147415 95 0000550700 95 0000005555 95 0000567720 95 5804701917 95 0652501494 95 0665879712 95 6890020290 95 0007600321 95 0007600321 95 0007777777 95 0007777777 95 0007777777 95 0007993218 95 0080744420 95 0000091006 95 0007777777 95 0007777777 95 0007777777 95 0003103099 95 0032831800 95 0570470013 95 0001046887 95 0194014805 95 0032487804 95 0430122804 95 0045918809 95 6870101048 95 0000001275 95 0137718800 95 0015432008 95 1620255935 95 1880190985 95 1880190985 95 0002440040 95 0000002960 95 0031099099 95 0031321050 95 0000323820 95 0032941834 95 0033046146 95 0035946829 95 0035946829 95 0040454233 95 4390167607 95 4410211055 95 4600112282 95 0046566491 95 4800130900 95 0000052444 95 5800524948 95 5800526355 95 6060632268 95 6410271182 95 6410271182 95 0653802412 95 0662408077 95 6890020290 95 0007494300 95 0000080114 95 0000080114 95 0000081631 95 0000081632 95 0000024592 95 0000024592 95 0000338378 95 0003804809 95 1620060484 95 0002614863 95 0002707870 95 0002715945 95 0002727277 95 0002734354 95 0002753065 95 0033327935 95 0033731795 95 0036474700 95 0039628082 95 0041367830 95 0041367830 95 0041367830 95 0043123700 95 4410211055 95 4410211055 95 4600112282 95 4600112282 95 4610123983 95 4810138683 95 0005749999 95 5800526355 95 5801119532 95 5804048350 95 5804048350 95 6060632268 95 0006486991 95 0006486991 95 0006616275 95 0662408077 95 0665823059 95 6890033987 95 0007494300 95 0000800667 95 0081515700 95 0000082228 95 0089101611 95 0112130877 95 0002620120 95 0002694336 95 0002707870 95 0002830701 95 3140156956 95 0032246087 95 0033327935 95 0038930737 95 0039617676 95 0040424024 95 0040609040 95 4600112282 95 0049842880 95 0005713153 95 6030292977 95 6030292977 95 6060763125 95 0006486991 95 6540284588 95 0000658256 95 0006652085 95 0007093241 95 0081814864 95 0087220184 95 0089101611 95 0000982112 95 0223321807 95 0042671746 95 1620060484 95 1700141574 95 1720228188 95 3140156956 95 0033542593 95 0034174946 95 0038929810 95 0041764104 95 0042669601 95 4320240358 95 0043470700 95 0043521233 95 0043523996 95 4410404880 95 4520188938 95 4600112282 95 0000052444 95 5800557005 95 5804605004 95 0006638180 95 0007984561 95 0082720000 95 0008495718 95 0000086860 95 0089101611 95 0000090999 95 0000942882 95 0002473550 95 0002987600 95 3140156956 95 0034243999 95 0035946829 95 3920075044 95 0039623455 95 0039996979 95 0040400770 95 0041764104 95 0042669601 95 4410200088 95 0045708306 95 0046561678 95 0048874312 95 6060746174 95 6540284588 95 6540284588 95 6540422492 95 6860170955 95 0007259530 95 0007259530 95 0007377690 95 0080744420 95 0000086860 95 0000090999 95 0000942882 96 0006999508 96 0115607603 96 0115607603 96 0484048601 96 0005007380 96 0000617357 96 0000617357 96 0000171215 96 0000171215 96 0000001800 96 0000001800 96 0200127764 96 0200165054 96 0200181904 96 0200198114 96 0200204068 96 0000206615 96 0000211284 96 0000236500 96 0000024000 96 0306809818 96 0000030890 96 0000030890 96 0000327379 96 0000406899 96 0000617601 96 0000652652 96 0000653497 96 0000664855 96 0000080002 96 0000881367 96 0000990795 96 0292355500 96 0292355500 96 0006999508 96 0349049475 96 0383016568 96 1251075230 96 1251256072 96 1252247999 96 0127040079 96 0000129072 96 0000014936 96 0000001800 96 0200008080 96 0200029223 96 0200068350 96 0200130528 96 0200289241 96 0200317725 96 0000222000 96 0000028605 96 0000288802 96 0000033019 96 0000034595 96 0000034926 96 0000369853 96 0000377139 96 0000617601 96 0000635502 96 0000653497 96 0000653497 96 0000070318 96 0000881367 96 0000098376 96 0200068350 96 0001750003 96 0092908603 96 1201065060 96 1251053570 96 1252082540 96 0200163175 96 0000201308 96 0000222000 96 0000234567 96 0000028605 96 0000032342 96 0000033019 96 0038990032 96 0394104900 96 0000404822 96 0000411779 96 0000610014 96 0000080002 96 0000080002 96 0000881600 96 0000882046 96 0004888880 96 0000158682 96 0100006626 96 0092908603 96 1251074756 96 1251389749 96 1251389749 96 1252082540 96 0000001800 96 0200066447 96 0200129929 96 0000203165 96 0000222000 96 0319801373 96 0337026688 96 0000034926 96 0000034926 96 0371043590 96 0000449946 96 0000052985 96 0000056796 96 0000626970 96 0000704668 96 0000757578 96 0000762407 96 0000847275 96 0000873667 96 0006028608 96 0000103960 96 0106991821 96 1200487000 96 1201062762 96 0135037992 96 0000153874 96 0000153874 96 0200062220 96 0200108867 96 0200187201 96 0000203165 96 0000222000 96 0000028605 96 0000299022 96 0314084991 96 0319801373 96 0000320200 96 0000365556 96 0000447838 96 0000447838 96 0000652652 96 0000759074 96 0000882046 96 0000923630 96 1200293922 96 0000120220 96 1251053570 96 1251273341 96 1251888176 96 1252109340 96 0127040079 96 0000001800 96 0000001800 96 0200225405 96 0200252313 96 0200999990 96 0000201308 96 0000211011 96 0000306498 96 0000003079 96 0346804167 96 0000034926 96 0000351946 96 0000369853 96 0000405019 96 0000611939 96 0000662496 96 0000746444 96 0000007997 96 0000907430 96 0000936200 96 0000936200 96 0360053636 99 0005198720 99 0001200038 99 0001214969 99 1270171717 99 1270171717 99 1270171717 99 0011119809 99 0073337802 99 0002233231 99 0002250284 99 0002250284 99 0002250284 99 0002250284 99 0002250284 99 0002250284 99 0002250284 99 0002250284 99 0002250284 99 2310227660 99 2310227660 99 0002395576 99 2990155340 99 0003305147 99 0335929799 99 0335929799 99 0005836000 99 6090166342 99 0008111014 99 0002555689 A1 0008960171 A2 0090000381 A2 0090000381 A2 0100150630 A2 0101049526 A2 0013002316 A2 0140073735 A2 0170014708 A2 0190036012 A2 0190076901 A2 0195016803 A2 0030045454 A2 0052050689 A2 0000074241 A2 0080007271 A2 0090000381 A3 0004185301 A3 0944330900 A3 0000001122 A3 0000113450 A3 0000123862 A3 0000123862 A3 0000136719 A3 0000172120 A3 0000173088 A3 0000182257 A3 0000188905 A3 0000209945 A3 0000238112 A3 0027506266 A3 0000309150 A3 0000313300 A3 0000313300 A3 0000335193 A3 0000405493 A3 0000483931 A3 0000534404 A3 0000546267 A3 0000564680 A3 0000564680 A3 0000571628 A3 0000577774 A3 0000597406 A3 0000745260 A3 0000782220 A3 0000829463 A3 0000844004 A3 0000881457 A3 0000043307 A3 0014658780 A3 0000184012 A3 0000187569 A3 0000187569 A3 0000188336 A3 0000193143 A3 0000207209 A3 0023389206 A3 0027839087 A3 0000290750 A3 0029433088 A3 0000295787 A3 0033008310 A3 0000535206 A3 0000538795 A3 0000571970 A3 0000578576 A3 0000745812 A3 0000759821 A3 0000773018 A3 0000874221 A3 0191000000 A3 0760010421 A3 0101020964 A3 1003014741 A3 0000103330 A3 0000162442 A3 0000162442 A3 0000184012 A3 0000184012 A3 0000190772 A3 0000197700 A3 0000226297 A3 0000241156 A3 0000273929 A3 0000273929 A3 0000273929 A3 0000273929 A3 0035031310 A3 0000404110 A3 0000534080 A3 0000535206 A3 0000547646 A3 0000547646 A3 0000564680 A3 0000702897 A3 0000786047 A3 0000862258 A3 0032437196 A3 0000571970 A3 0760010421 A5 0000195800 A5 0240011841 A5 0240205559 A5 0000281063 A5 0430000075 A5 0000058347 A5 0750031080 A5 0750122848 A5 0750326597 A5 0750326597 A5 0750374753 A5 0750454340 A5 0750454340 A5 0750901811 A5 0750906109 A5 0750906109 A5 0750911000 A5 0000077990 A7 0002006733 A7 0008002248 A7 0010214964 A7 0014321418 A7 0000222167 A7 0000028234 A7 0000480080 A7 0000234508 A8 0101137077 A8 0105768250 A8 0001524321 A8 0002637855 A8 0003089240 A8 0003564460 A8 0005303850 A8 0005942071 A8 0006681174 A8 0006681174 A8 0008503591 A8 0190223289
27ec5c874fbdf067e6e7ef69a42b27b2dadd9202
449d555969bfd7befe906877abab098c6e63a0e8
/1544/CH6/EX6.5/Ch06Ex5.sce
2376d04143b72ee9baed01696339c403a66bb367
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
313
sce
Ch06Ex5.sce
// Scilab code Ex6.5: Pg 206 (2008) clc; clear; V = 240; // Rms vlaue of alternating voltage, volt V_m = sqrt(2)*V; // Peak value of alternating voltage, volt printf("\nThe amplitude of household %3d volt supply = %5.1f volt", V, V_m); // Result // The amplitude of household 240 volt supply = 339.4 volt
ffc61bb200e322d6eac82848413b5b934c21a457
449d555969bfd7befe906877abab098c6e63a0e8
/1655/CH6/EX6.21.1/Example_6_21_1.sce
6105d4f73be15983e8c2db9fd288170587c973e1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
840
sce
Example_6_21_1.sce
// Example 6.21.1 page 6.59 clc; clear; tr=50; //radiative recombination lifetime tnr=85; //non-radiative recombination lifetime h=6.624d-34; //plank's constant c=3d8; //speed of light q=1.6d-19; //charge of electron i=35d-3; //current lamda=0.85d-6; //wavelength t=tr*tnr/(tr+tnr); //computing total recombination time eta=t/tr; //computing internal quantum efficiency Pint=eta*h*c*i/(q*lamda); //computing internally generated power Pint=Pint*10^3 printf("\nTotal recombinaiton time is %.2f ns.\nInternal quantum efficiency is %.3f.\nInternally generated power is %.1f mW.",t,eta,Pint); //answer in the book for Internal quantum efficiency is 0.629, deviation of 0.001. //answer in the book for Internally generated power is 32.16 mW, deviation of 0.04 mW.
0deea1349f717e769df75fc2177a92bf995b538a
449d555969bfd7befe906877abab098c6e63a0e8
/2777/CH4/EX4.1/Ex4_1.sce
9972057f3a79a95cbb2330bb20d91edfa33391f5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,331
sce
Ex4_1.sce
// ELECTRICAL MACHINES // R.K.Srivastava // First Impression 2011 // CENGAGE LEARNING INDIA PVT. LTD // CHAPTER : 4 : DIRECT CURRENT MACHINES // EXAMPLE : 4.1 clear ; clc ; close ; // Clear the work space and console // GIVEN DATA N = 600; // Speed of the driven Machine in RPM D = 2; // Diameter of the Machine in Meter L = 0.3; // Length of the Machine in Meter Bm = 1.0; // Flux Density in Weber per Meter-Square // CALCULATIONS n = N/60; // Revolution per second v = %pi * D * n; // Peripheral velocity in Meter per second E = Bm * v * L; // Maximum EMF induced in the Conducter in Volts // DISPLAY RESULTS disp("EXAMPLE : 4.1 : SOLUTION :-") ; printf("\n (a) Maximum EMF induced in the Conducter , E = %.3f V \n ",E); printf("\n\n [ TEXT BOOK SOLUTION IS PRINTED WRONGLY ( I verified by manual calculation )]\n" ); printf("\n WRONGLY PRINTED ANSWERS ARE :- (a)Induced EMF, E = 2.826 V instead of %.3f A \n ",E); printf("\n From Calculation of the peripheral velocity(v), rest all the Calculated values in the TEXT BOOK is WRONG because of the peripheral velocity(v) value is WRONGLY calculated and the same used for the further Calculation part \n")
6e63b66eaf2b56bb9e34781fb49aa4c31311944d
449d555969bfd7befe906877abab098c6e63a0e8
/1151/CH8/EX8.14/example14.sce
d91050edf0c0a57a7c7a6f62f1bff0daeeae2cc9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
179
sce
example14.sce
s=%s ;//convert to state space K=1; TFcont=syslin ('c',K/(s ^4+3*s^3+3*s^2+3*s+2)) SScont=tf2ss (TFcont ) [Ac ,Bc ,U, ind ]=canon( SScont( 2 ) , SScont( 3 ) ) disp(SScont)
916437083c7e81a92c60477e04566572f6cd38fe
449d555969bfd7befe906877abab098c6e63a0e8
/3636/CH1/EX1.4/Ex1_4.sce
be15b8477dc376f8158d3576f1e0e049d41d8f70
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
245
sce
Ex1_4.sce
clc; clear; L=3*10^-2 //length of plates in m d=4*10^-3 //spacing betweenn plates in m l=30*10^-2 //distance in m V1=2500 //potential in V //Calculation Se=(L*l)/(2*d*V1)/10^-4 mprintf("Deflection Sensitivity = %1.1f*10^-4 m/V",Se)
3d05e1d5b0b3a0b0d906daedd782f293e8ca2c32
449d555969bfd7befe906877abab098c6e63a0e8
/914/CH3/EX3.1/ex3_1.sce
ad95c82320008396b864ce4bc9d22bb10573167d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
847
sce
ex3_1.sce
clc; warning("off"); printf("\n\n example3.1 - pg65"); // given a=0.0006; //[m^2] - area l=0.1; //[m] - length // (a) using the fourier law deltax=0.1; //[m] - thickness of copper block T2=100; //[degC] - temp on one side of copper block T1=0; //[degC] - temp on other side of the copper block k=380; //[W/mK] - thermal conductivity // using the formula (q/A)*deltax=-k*(T2-T1) g=-k*(T2-T1)/deltax; printf("\n\n (a) The steady state heat flux across the copper block is\n q/A=%5eJ*m^-2*sec^-1 ",g); // (b) V=a*l; //[m^3] - volume // using the overall balance equation with the accumulation and generation term Qgen=1.5*10^6; //[j*m^-3*sec^-1] SIx=(g*a-Qgen*V)/a; printf("\n\n (b) the flux at face 1 is %5ej*m^-2*sec^-1;\nthe negative sign indicates taht the heat flux is from right to left(negative x direction",SIx);
7aa80832a2e89fb9e152c52717e1cc8f90616f3c
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set5/s_Electrical_Machines_M._V._Despande_833.zip/Electrical_Machines_M._V._Despande_833/CH13/EX13.4/Ex13_4.sce
7a456ce5c46f240c4bf45acedb6b57359ae5510f
[]
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
173
sce
Ex13_4.sce
errcatch(-1,"stop");mode(2);//Caption:Find coil span factor //Exa:13.4 ; ; s=9//Number of slots theta=180/s k_p=cosd(theta/2) disp(k_p,'Coil span factor=') exit();
6ccbe2a4b09b94b4215d22305534f9b61b35dde9
449d555969bfd7befe906877abab098c6e63a0e8
/291/CH8/EX8.4c/eg8_4c.sce
e1a4f79e9c663639da056a7234dbbed875f07159
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
471
sce
eg8_4c.sce
A = [61.1 58.2 62.3 64 59.7 66.2 57.8 61.4 62.2 63.6]; B= [62.2 56.6 66.4 56.2 57.4 58.4 57.6 65.4]; uA = mean(A); uB = mean(B); n= length(A); m =length(B); Sx = variance(A); Sy = variance(B); Sp = ((n-1)*Sx/(n+m-2)) + ((m-1)*Sy/(n+m-2)); den = sqrt(Sp*((1/n)+(1/m))); TS = (uA-uB)/den; disp(TS, "The test statistic is"); pvalue = 2*(1- cdft("PQ", TS, m+n-2)); //disp(tvalue) disp(pvalue, "Null hypothesis is accepted at any significance level less than")
750d181e4e1dc3381b09a33acdd79ef67a7682be
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH1/EX1.21/example1_21.sce
e578a9db18217626fef29233bfdfba26e10b0961
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
560
sce
example1_21.sce
clc // Given That lambda = 6e-7 // wavelength of light in meter Mu = 1.463 // refractive index of soap film i = 0 // incidence angle in radian r = 0 // refracted angle in radian // Sample Problem 21 on page no. 1.47 printf("\n # PROBLEM 21 # \n") n = 1 // for smallest thickness t = ((2 * n - 1) * lambda) / (4 * Mu * cos(r)) // calculation for least thickness of soap film for bright fringe printf("\n Standard formula used \n t = ((2 * n - 1) * lambda) / (4 * Mu * cos(r)).\n") printf("\n Least thickness of soap film for bright fringe = %e mm. ",t*1000)
56a72cf6393708218073b35b287c73463d39afe8
607fe53653a19100ed470c4f0b5da1a5cbb0a7f3
/s06102020_2.sce
fd4101daa3cd34360766dd870b54cb6335017dda
[]
no_license
sanjeevphy/ForPhDCourseWork
70b3944e4dce8a5f054ef59b8710923005ca9127
945812099f1f41395daa1b1ceeb33c69b9a07481
refs/heads/main
2023-02-22T04:25:00.575704
2021-01-28T07:00:53
2021-01-28T07:00:53
333,669,242
0
0
null
null
null
null
UTF-8
Scilab
false
false
65
sce
s06102020_2.sce
x0=0; x1=0:0.3:2 * %pi; X=integrate('sin(x)','x',x0,x1); disp(X)
14ccd3c53c16fe84f8c49506c915cc1bf20aced4
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH8/EX8.2/8_2.sce
9bd0258a773185dcc6bbdd5ae9d7efa1f2111ad1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
126
sce
8_2.sce
clc //initialisation of variables u= 109677.583 //cm^-1 //RESULTS printf (' value of numerical coefficient = %.3f cm',u)
8c3017831f7122b64eb4b2e61242c391de345072
eb7eeb04a23a477e06f3c0e3d099889caee468b4
/src/examples/scilab/scilab_wave_ws/submitsaastest1.sce
5e93e7e7c816d9d1c79a854d247f0db69d156021
[]
no_license
mikeg64/iome
55699b7d7b3d5c1b006d9c82efe5136b8c909dfd
cc1c94433133e32776dcf16704ec4ec337b1b4a0
refs/heads/master
2020-03-30T15:57:33.056341
2016-04-13T09:24:27
2016-04-13T09:24:27
151,387,236
0
0
null
null
null
null
UTF-8
Scilab
false
false
769
sce
submitsaastest1.sce
//this is the standalone version for submitting work to a saas tdp=getenv('SCILAB_HOME')+'/share/scilab/contrib/iome_toolbox/loader.sce'; exec(tdp); //this application is started using the io start scilab application exec('paramssaastest1.sce'); //stacksize('max'); //stacksize(268435454); elistremote=iome('localhost',8080,0); simfile=metadata.name+'.xml'; simfileout=metadata.name+'_out.xml'; newsimulation(metadata.name,'test1.xsl',elist); createsim(param1,params2,metadata,elist); //[consts,domain,source]=loadsim('test1_16_02_09.xml',elist); //chdir(metadata.directory); writesimulation(simfile,elist); //runsim(consts,domain,source,metadata,simfile,elist); submitsimulation(simfile,elistremote); //WriteSimulation(simfile,elist); //chdir('..'); //exit();
57bfdcb756a7684d71ac2787f071d179b7dbda20
449d555969bfd7befe906877abab098c6e63a0e8
/1445/CH7/EX7.36/Ex7_36.sce
5a97440909552b8891678112a016279208a8f714
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,633
sce
Ex7_36.sce
//CHAPTER 7- SINGLE PHASE TRANSFORMER //Example 36 clc; disp("CHAPTER 7"); disp("EXAMPLE 36"); //100kVA 50 Hz 440/1100 V single phase transformer //VARIABLE INITIALIZATION va=100000; //apparent power v1=440; //primary voltage in Volts v2=11000; //secondary voltage in Volts f=50; // frequency //loads pf=1; //power factor unity eff1=0.985; // at full load at 0.8pf eff2=0.99; //at half full load at unity pf pf1=0.8; // power factor pf2=1; //power factor // //SOLUTION loss1=(1-eff1)*va*pf1/eff1; //=Pc+Pcu losses loss2=(1-eff2)*va*(1/2)*pf2/eff2; //=Pc+Pcu losses //simultaneous equation to be solved //eq 1: Pc+Pcu=loss; //fractipon of copper/ ohmic losses f=(1/2)^2; // 60% of full load //the 2nd equation is Pc+f*Pcu=loss //now the matrix M=[1,1;1,f]; //Pc+Pcu=loss1; Pc+(1/2)^2*Pcu=loss2: 1,1,; 1,f A=[loss1,loss2]; Mi=inv(M); Ans=A*inv(M); Pc=Ans(1,1); Pcu=Ans(1,2); disp(sprintf("The Pc is %.1f W",Pc)); disp(sprintf("The Pcu is %.1f W",Pcu)); // //maximumefficiency at farction x times the full load;and then f.Pcu=Pc x=sqrt(Pc/Pcu); disp(sprintf("The maximum efficiency would occur at a load of %.0f kVA",x*va/1000)); I1=va/v1; I1maxEff=I1*x; disp(sprintf("The current at maximum efficeincy is %.0f A",I1maxEff)); disp(" "); // //END
81e4173dfa6d3f0796a363c6cb0cec244fdadd43
449d555969bfd7befe906877abab098c6e63a0e8
/10/CH7/EX4/cha7_4.sce
567e527df244d9c2774461f326e605411bc96996
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,986
sce
cha7_4.sce
V=120;F=60;Pole=4;Zm=1.5+4.0;Za=3+6; Xa=6;Xm=4;Rm=1.5;Ra=3; Ra=(Xa/Xm)*(Rm+sqrt(18.25)) C=(2*%pi*F)*(Xa+(Ra*Rm)/(Xm+sqrt(18.25))) a=((-Xm*Ra)+(sqrt(18.25)*sqrt(13.2))) Xc=Xa+(a/Rm) Ia=V/(3+%i*6) function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [Is,Angle]=rect2polar(8,-16) Im=V/(1.5+%i*4) function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [Is1,Angle1]=rect2polar(9.86,-26.3) Alfa=Angle1-Angle Ts=Is*sin(%pi*6.01/180) function[x,y]=polar2rect(r,theta) x=r*cos(theta*%pi/180); y=r*sin(theta*%pi/180); endfunction [a,b]=polar2rect(Is1,Angle1) X=a+%i*b C=1/C*10^6 a=((-Xm*Ra)+(sqrt(18.25)*sqrt(13.2))) Xc=Xa+(a/Rm) C=10^6/(2*%pi*F*Xc) Ia=V/(3+%i*6) function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [Is,Angle]=rect2polar(8,-16) Im=V/(1.5+%i*4) [Is1,Angle1]=rect2polar(9.86,-26.3) Alfa=Angle1-Angle Ts=Is*sin(%pi*6.01/180) function[x,y]=polar2rect(r,theta) x=r*cos(theta*%pi/180); y=r*sin(theta*%pi/180); endfunction [a,b]=polar2rect(Is1,Angle1) X=a+%i*b [c,d]=polar2rect(Is,Angle) X1=c+%i*d X2=X+X1 function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [I,Angle]=rect2polar(17.86,-42.3) Ia=V/(Ra+%i*Xa) function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [Ia,Angle]=rect2polar(9.3,-6.4) Alfa=69.33-34.53 Ts=Ia*sin(%pi*Alfa/180) function[x,y]=polar2rect(r,theta) x=r*cos(theta*%pi/180); y=r*sin(theta*%pi/180); endfunction [Is,Angle]=polar2rect(Ia,Angle) [Is1,Angle1]=polar2rect(28.1,-69.44) X=Is+%i*Angle X1=Is1+%i*Angle1 X2=Is+%i*Angle X=X1+X2 function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [Is,Angle]=rect2polar(19.1,-32.7) Xc=10^6/(2*%pi*F*405) Ia=V/(Ra+(%i*6+%i*6.55)) function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [Is,Angle]=rect2polar(2.16,-9.04) Ia=V/(Ra+(%i*6-%i*6.55)) [Is,Angle]=rect2polar(38.6,7.09) Alfa=69.44+Angle Ts=Is*sin(%pi*Alfa/180) function[x,y]=polar2rect(r,theta) x=r*cos(theta*%pi/180); y=r*sin(theta*%pi/180); endfunction [Is,Angle]=polar2rect(28.1,-69.44) [Is1,Angle1]=polar2rect(39.34,10.4) X1=Is+%i*Angle X2=Is1+%i*Angle1 X=X1+X2 function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [Is,Angle]=rect2polar(48.56,-19.20) Ia=V/(Ra+(%i*Xa-%i*Xc)) function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [I,Angle]=rect2polar(23.9,19.6) Alfa=69.44+39.5 Ts=I*sin(%pi*Alfa/180) function[x,y]=polar2rect(r,theta) x=r*cos(theta*%pi/180); y=r*sin(theta*%pi/180); endfunction [Is,Angle]=polar2rect(28.1,-69.44) [Is1,Angle1]=polar2rect(I,39.35) X=Is+%i*Angle X1=Is1+%i*Angle1 X2=X+X1 function[r,theta]=rect2polar(x,y) r=sqrt(x^2+y^2); theta=atan(y/x)*180/%pi; endfunction [I,Angle]=rect2polar(33.7,-6.7)
18447c9bc70ff5589ef04c276692ba113edaa5b5
4e9df66700bcf9688afe22df0009cdf4a17bc61f
/Scilab_Lab/scimage/ch03/L3_4.sce
c11710e4baff04c032e72d362e905ce5d0528574
[]
no_license
vmebus/workspace
e18947a1f967e6a3a7dfbc5cce6f92380d8637fc
f251b8a8e6cec30a77c7ef7b4103c5ee6e6d1393
refs/heads/master
2021-01-09T21:53:45.183564
2015-10-03T06:42:23
2015-10-03T06:42:23
36,120,248
0
0
null
null
null
null
BIG5
Scilab
false
false
1,003
sce
L3_4.sce
//L3_4.m: 利用LBG訓練三個不同大小與維度的碼簿並分別進行向量量化// loadmatfile('LENA.mat'); th=0.05; //訓練大小為64維度為4的碼簿cb_64x4// nc=64;nd=4; [cb_64x4]=LBG(X,nc,nd,th); //訓練大小為64維度為16的碼簿cb_64x16// nc=64;nd=16; [cb_64x16]=LBG(X,nc,nd,th); //訓練大小為128維度為4的碼簿cb_128x4// nc=128;nd=4; [cb_128x4]=LBG(X,nc,nd,th); //使用cb_64x4的碼簿進行向量量化// [M,N]=size(X); [Y_64x4,bit_64x4]=VQ(X,cb_64x4); //VQ函式在本程式範例中 //計算PSNR和CR// MSE=(sum(sum((X-Y_64x4).^2)))/(M*N); PSNR_64x4=20*log10(255/sqrt(MSE)) CR_64x4=M*N*8/bit_64x4 //使用cb_64x16的碼簿進行向量量化// [Y_64x16,bit_64x16]=VQ(X,cb_64x16); MSE=(sum(sum((X-Y_64x16).^2)))/(M*N); PSNR_64x16=20*log10(255/sqrt(MSE)) CR_64x16=M*N*8/bit_64x16 //使用cb_128x4的碼簿進行向量量化// [Y_128x16,bit_128x4]=VQ(X,cb_128x4); MSE=(sum(sum((X-Y_128x16).^2)))/(M*N); PSNR_128x4=20*log10(255/sqrt(MSE)) CR_128x4=M*N*8/bit_128x4
3190c37f1a4b79c44931e9c54dea2e1be3735acb
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects - Kopie/CONT/__SUBJECT_TEST_CONT/ATWM1_Localizer_MRI___SUBJECT_TEST_CONT/ATWM1_Localizer_MRI.sce
09b36473b3f3ddc9b068db37841c8d443d608443
[]
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
40,042
sce
ATWM1_Localizer_MRI.sce
# ATWM1_MRI_Localizer scenario = "ATWM1_Localizer_MRI"; scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen #scenario_type = trials; scan_period = 2000; # TR pulses_per_scan = 1; pulse_code = 1; #pulse_width=6; default_monitor_sounds = false; active_buttons = 1; response_matching = simple_matching; button_codes = 10; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; #write_codes=true; 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; bitmap {filename = "fixation_cross_black.bmp";} fixation_cross_black; bitmap {filename = "blank.bmp";} blank; bitmap {filename = "localizer.bmp";} localizer; bitmap {filename = "localizer_inv.bmp";} localizer_inv; bitmap {filename = "localizer_target.bmp";} localizer_target; sound { wavefile { filename = "FeedbackSound_NoResponse.wav"; }; } sound_no_response; sound { wavefile { filename = "FeedbackSound_Correct.wav"; }; } sound_correct; sound { wavefile { filename = "FeedbackSound_Incorrect.wav"; }; } sound_incorrect; 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; # 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"; }; TEMPLATE "ATWM1_Localizer_MRI.tem" { trigger_volume intertrial_interval single_stimulus_presentation_time trl_duration stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 stim_enc_target1 stim_enc_target2 stim_enc_target3 stim_enc_target4 control_flicker_index trial_code retr_code posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 6 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "01_4_Objects_Pos1_DefaultTrial" "Localizer_01_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 7 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "02_4_Objects_Pos3_TargetTrial" "Localizer_02_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 8 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "03_4_Objects_Pos2_DefaultTrial" "Localizer_03_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 9 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "04_4_Objects_Pos4_DefaultTrial" "Localizer_04_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 10 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "05_4_Objects_Pos3_DefaultTrial" "Localizer_05_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 11 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "06_4_Objects_Pos4_TargetTrial" "Localizer_06_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 12 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "07_4_Objects_Pos2_DefaultTrial" "Localizer_07_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 13 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "08_4_Objects_Pos1_DefaultTrial" "Localizer_08_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 14 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "09_4_Objects_Pos2_DefaultTrial" "Localizer_09_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 15 1950 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "10_4_Objects_Pos3_TargetTrial" "Localizer_10_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 17 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "11_4_Objects_Pos4_DefaultTrial" "Localizer_11_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 18 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "12_4_Objects_Pos1_DefaultTrial" "Localizer_12_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 19 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "13_4_Objects_Pos3_DefaultTrial" "Localizer_13_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 20 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 10 "14_4_Objects_Pos4_TargetTrial" "Localizer_14_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 21 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "15_4_Objects_Pos1_DefaultTrial" "Localizer_15_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 22 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "16_4_Objects_Pos2_DefaultTrial" "Localizer_16_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 23 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "17_4_Objects_Pos3_TargetTrial" "Localizer_17_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 24 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "18_4_Objects_Pos2_DefaultTrial" "Localizer_18_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 25 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "19_4_Objects_Pos1_DefaultTrial" "Localizer_19_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 26 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "20_4_Objects_Pos4_DefaultTrial" "Localizer_20_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 27 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "21_4_Objects_Pos2_TargetTrial" "Localizer_21_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 29 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "22_4_Objects_Pos3_DefaultTrial" "Localizer_22_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 30 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "23_4_Objects_Pos4_DefaultTrial" "Localizer_23_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 31 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "24_4_Objects_Pos1_DefaultTrial" "Localizer_24_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 32 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "25_4_Objects_Pos4_DefaultTrial" "Localizer_25_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 33 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "26_4_Objects_Pos2_DefaultTrial" "Localizer_26_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 34 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 12 "27_4_Objects_Pos1_TargetTrial" "Localizer_27_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 35 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "28_4_Objects_Pos3_DefaultTrial" "Localizer_28_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 36 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "29_4_Objects_Pos1_DefaultTrial" "Localizer_29_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 37 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "30_4_Objects_Pos3_DefaultTrial" "Localizer_30_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 38 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "31_4_Objects_Pos2_DefaultTrial" "Localizer_31_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 39 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "32_4_Objects_Pos4_TargetTrial" "Localizer_32_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 40 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "33_4_Objects_Pos3_DefaultTrial" "Localizer_33_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 41 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "34_4_Objects_Pos1_DefaultTrial" "Localizer_34_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "35_4_Objects_Pos2_TargetTrial" "Localizer_35_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "36_4_Objects_Pos4_DefaultTrial" "Localizer_36_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 45 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "37_4_Objects_Pos1_DefaultTrial" "Localizer_37_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 46 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "38_4_Objects_Pos3_TargetTrial" "Localizer_38_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 47 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "39_4_Objects_Pos4_DefaultTrial" "Localizer_39_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 48 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "40_4_Objects_Pos2_DefaultTrial" "Localizer_40_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 49 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "41_4_Objects_Pos3_DefaultTrial" "Localizer_41_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 50 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 10 "42_4_Objects_Pos4_TargetTrial" "Localizer_42_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 51 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "43_4_Objects_Pos2_DefaultTrial" "Localizer_43_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 52 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "44_4_Objects_Pos1_DefaultTrial" "Localizer_44_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 53 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "45_4_Objects_Pos3_DefaultTrial" "Localizer_45_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 54 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "46_4_Objects_Pos4_TargetTrial" "Localizer_46_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 55 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "47_4_Objects_Pos1_DefaultTrial" "Localizer_47_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 56 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "48_4_Objects_Pos2_DefaultTrial" "Localizer_48_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 58 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "49_4_Objects_Pos1_DefaultTrial" "Localizer_49_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 59 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "50_4_Objects_Pos2_DefaultTrial" "Localizer_50_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 60 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "51_4_Objects_Pos4_DefaultTrial" "Localizer_51_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 61 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "52_4_Objects_Pos3_TargetTrial" "Localizer_52_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 62 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "53_4_Objects_Pos1_DefaultTrial" "Localizer_53_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 63 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "54_4_Objects_Pos4_DefaultTrial" "Localizer_54_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 64 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 6 "55_4_Objects_Pos2_TargetTrial" "Localizer_55_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 65 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "56_4_Objects_Pos3_DefaultTrial" "Localizer_56_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 66 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "57_4_Objects_Pos1_DefaultTrial" "Localizer_57_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 67 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "58_4_Objects_Pos3_DefaultTrial" "Localizer_58_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 68 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "59_4_Objects_Pos4_TargetTrial" "Localizer_59_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 69 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "60_4_Objects_Pos2_DefaultTrial" "Localizer_60_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 71 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "61_4_Objects_Pos3_DefaultTrial" "Localizer_61_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 72 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "62_4_Objects_Pos4_DefaultTrial" "Localizer_62_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 73 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 4 "63_4_Objects_Pos2_TargetTrial" "Localizer_63_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 74 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "64_4_Objects_Pos1_DefaultTrial" "Localizer_64_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 75 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "65_4_Objects_Pos2_DefaultTrial" "Localizer_65_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 76 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "66_4_Objects_Pos4_DefaultTrial" "Localizer_66_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 77 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 10 "67_4_Objects_Pos1_TargetTrial" "Localizer_67_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 78 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "68_4_Objects_Pos3_DefaultTrial" "Localizer_68_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 79 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "69_4_Objects_Pos4_DefaultTrial" "Localizer_69_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 80 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "70_4_Objects_Pos3_DefaultTrial" "Localizer_70_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 81 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 4 "71_4_Objects_Pos1_TargetTrial" "Localizer_71_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 82 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "72_4_Objects_Pos2_DefaultTrial" "Localizer_72_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 83 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "73_4_Objects_Pos3_DefaultTrial" "Localizer_73_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 84 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "74_4_Objects_Pos4_DefaultTrial" "Localizer_74_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 86 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "75_4_Objects_Pos2_DefaultTrial" "Localizer_75_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 87 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 10 "76_4_Objects_Pos1_TargetTrial" "Localizer_76_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 88 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "77_4_Objects_Pos4_DefaultTrial" "Localizer_77_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 89 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "78_4_Objects_Pos2_DefaultTrial" "Localizer_78_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 90 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 10 "79_4_Objects_Pos3_TargetTrial" "Localizer_79_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 91 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "80_4_Objects_Pos1_DefaultTrial" "Localizer_80_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 92 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "81_4_Objects_Pos3_DefaultTrial" "Localizer_81_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 93 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "82_4_Objects_Pos1_DefaultTrial" "Localizer_82_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 94 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "83_4_Objects_Pos2_DefaultTrial" "Localizer_83_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 95 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 10 "84_4_Objects_Pos4_TargetTrial" "Localizer_84_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 96 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "85_4_Objects_Pos3_DefaultTrial" "Localizer_85_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 97 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 6 "86_4_Objects_Pos2_TargetTrial" "Localizer_86_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 99 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "87_4_Objects_Pos1_DefaultTrial" "Localizer_87_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 100 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "88_4_Objects_Pos4_DefaultTrial" "Localizer_88_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 101 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 8 "89_4_Objects_Pos1_TargetTrial" "Localizer_89_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 102 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "90_4_Objects_Pos2_DefaultTrial" "Localizer_90_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 103 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "91_4_Objects_Pos4_DefaultTrial" "Localizer_91_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 104 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "92_4_Objects_Pos3_DefaultTrial" "Localizer_92_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 105 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 10 "93_4_Objects_Pos1_TargetTrial" "Localizer_93_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 106 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "94_4_Objects_Pos4_DefaultTrial" "Localizer_94_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 107 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "95_4_Objects_Pos3_DefaultTrial" "Localizer_95_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 108 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "96_4_Objects_Pos2_DefaultTrial" "Localizer_96_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 109 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "97_4_Objects_Pos4_DefaultTrial" "Localizer_97_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 110 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "98_4_Objects_Pos2_TargetTrial" "Localizer_98_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 112 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "99_4_Objects_Pos1_DefaultTrial" "Localizer_99_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 113 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "100_4_Objects_Pos3_DefaultTrial" "Localizer_100_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 114 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 8 "101_4_Objects_Pos1_TargetTrial" "Localizer_101_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 115 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "102_4_Objects_Pos4_DefaultTrial" "Localizer_102_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 116 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "103_4_Objects_Pos2_DefaultTrial" "Localizer_103_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 117 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "104_4_Objects_Pos3_DefaultTrial" "Localizer_104_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 118 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "105_4_Objects_Pos4_DefaultTrial" "Localizer_105_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 119 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 6 "106_4_Objects_Pos2_TargetTrial" "Localizer_106_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 120 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "107_4_Objects_Pos1_DefaultTrial" "Localizer_107_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 121 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "108_4_Objects_Pos3_DefaultTrial" "Localizer_108_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 122 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "109_4_Objects_Pos4_DefaultTrial" "Localizer_109_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 124 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 8 "110_4_Objects_Pos3_TargetTrial" "Localizer_110_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 125 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "111_4_Objects_Pos2_DefaultTrial" "Localizer_111_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 126 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "112_4_Objects_Pos1_DefaultTrial" "Localizer_112_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 127 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "113_4_Objects_Pos3_DefaultTrial" "Localizer_113_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 128 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 10 "114_4_Objects_Pos4_TargetTrial" "Localizer_114_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 129 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "115_4_Objects_Pos1_DefaultTrial" "Localizer_115_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 130 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "116_4_Objects_Pos2_DefaultTrial" "Localizer_116_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 131 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "117_4_Objects_Pos3_DefaultTrial" "Localizer_117_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 132 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 8 "118_4_Objects_Pos1_TargetTrial" "Localizer_118_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 133 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "119_4_Objects_Pos4_DefaultTrial" "Localizer_119_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 134 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "120_4_Objects_Pos2_DefaultTrial" "Localizer_120_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 135 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "121_4_Objects_Pos1_DefaultTrial" "Localizer_121_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 136 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 12 "122_4_Objects_Pos2_TargetTrial" "Localizer_122_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 138 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "123_4_Objects_Pos4_DefaultTrial" "Localizer_123_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 139 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "124_4_Objects_Pos3_DefaultTrial" "Localizer_124_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 140 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "125_4_Objects_Pos2_DefaultTrial" "Localizer_125_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 141 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 4 "126_4_Objects_Pos1_TargetTrial" "Localizer_126_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 142 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "127_4_Objects_Pos3_DefaultTrial" "Localizer_127_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 143 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "128_4_Objects_Pos4_DefaultTrial" "Localizer_128_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 144 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "129_4_Objects_Pos3_DefaultTrial" "Localizer_129_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 145 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 12 "130_4_Objects_Pos2_TargetTrial" "Localizer_130_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 146 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "131_4_Objects_Pos4_DefaultTrial" "Localizer_131_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 147 1950 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "132_4_Objects_Pos1_DefaultTrial" "Localizer_132_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 149 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "133_4_Objects_Pos4_DefaultTrial" "Localizer_133_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 150 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "134_4_Objects_Pos1_DefaultTrial" "Localizer_134_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 151 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "135_4_Objects_Pos2_DefaultTrial" "Localizer_135_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 152 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 8 "136_4_Objects_Pos3_TargetTrial" "Localizer_136_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 153 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "137_4_Objects_Pos2_DefaultTrial" "Localizer_137_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 154 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "138_4_Objects_Pos1_DefaultTrial" "Localizer_138_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 155 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "139_4_Objects_Pos3_DefaultTrial" "Localizer_139_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 156 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 6 "140_4_Objects_Pos4_TargetTrial" "Localizer_140_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 157 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "141_4_Objects_Pos1_DefaultTrial" "Localizer_141_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 158 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "142_4_Objects_Pos4_DefaultTrial" "Localizer_142_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 159 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "143_4_Objects_Pos3_TargetTrial" "Localizer_143_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 160 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "144_4_Objects_Pos2_DefaultTrial" "Localizer_144_4_Objects_Pos2_DefaultTrial" 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 = 20000; code = "BaselinePost"; };
072a7bdfdbe269c939fd6002f8093853897fa3c9
449d555969bfd7befe906877abab098c6e63a0e8
/2858/CH8/EX8.6/Ex8_6.sce
bae88d9725272ecde11d793c6cf28a52f0506177
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,097
sce
Ex8_6.sce
//example 8.6 clc; funcprot(0); Sv=2; Sh=3; w=3/12; fy=35000*144; FSb=3; pi=%pi; phi=36*pi/180; Gamma1=105; H=30; t=Gamma1*H*Sv*Sh*FSb/w/fy*(tan(pi/4-phi/2))^2; t=t*12; disp(t,"thiskness in inches"); t=t+0.001*50; disp("so take thickness=0.2 inches"); //for tie length z=[5,10,15,20,25,30]; TL=[38.45, 35.89, 33.34, 30.79, 28.25, 25.7];//tie length printf("z(ft)\t Tie Length (ft)\n"); for i=1:6 printf("%.2f\t %.2f\n", z(i),TL(i)) end disp("use tie length=40ft") //check for over turning z=30/3; x1=20; L=40; Ka=0.26; Pa=1/2*Gamma1*Ka*H^2; W1=Gamma1*H*L; FSO=W1*x1/(Pa*z); disp(FSO,"factor of safety is"); disp("since FS>3 structure is safe") //check for sliding k=2/3; Pa=12285; FSS=W1*tan(k*phi)/Pa; if FSS>3 then printf("safe in sliding with FS=%.2f\n",FSS) end //check for bearing Mr=126000*20; Mo=12285*10; V=126000; e=L/2-Mr/V+Mo/V; L1=L-2*e;//Ldash c2=1000; Nc=25.8; Gamma2=110; Ny=16.72; qult=c2*Nc+1/2*Gamma2*L1*Ny sigma0=Gamma1*H; FSB=qult/sigma0; if FSB>5 then printf("safe in bearing with FS=%.2f\n\n",FSB) end
2047d4a2ad725e45fde4dab219ba116250210fb0
1db0a7f58e484c067efa384b541cecee64d190ab
/macros/seqperiod.sci
aa51d069939735fc03ddd11e882906d3cdb565e7
[]
no_license
sonusharma55/Signal-Toolbox
3eff678d177633ee8aadca7fb9782b8bd7c2f1ce
89bfeffefc89137fe3c266d3a3e746a749bbc1e9
refs/heads/master
2020-03-22T21:37:22.593805
2018-07-12T12:35:54
2018-07-12T12:35:54
140,701,211
2
0
null
null
null
null
UTF-8
Scilab
false
false
2,171
sci
seqperiod.sci
function [p,num]=seqperiod(x) //Calculates the period of a sequence //Calling Sequence //[p,num]=seqperiod(x) //Parameters //x: A vector matrix or n-dimensional array //Description //[p,num]=seqperiod(x) //Returns an integer p such that x(1:p) is the smallest subsequence that repeats in x //The number of times the subsequence repeats is returned in num (may not be an integer) //Repetitions may be incomplete at the end of the sequence but no breaks are permitted between repetitions //If there is no subsequence that repeats in x then p=length(x) //If x is a matrix or n-dimesnional array, the function operates along the first non-singleton dimension of x //Examples //x = [4 0 1 5; // 1 1 2 5; // 2 0 3 5; // 3 1 1 5]; //p = seqperiod(x) //p = // // 4. 2. 3. 1. //A=zeros(4,1,4); //A(:,1,:)=x; //p1=seqperiod(A); //p1 = // //(:,:,1) // //4. //(:,:,2) // //2. //(:,:,3) // //3. //(:,:,4) // //1. //Authors //Ankur Mallick funcprot(0); if(argn(2)~=1) error('Incorrect number of input arguments.'); else S=size(x); S1=S(S>1); if(length(S1)==1) u=0,v=0; x=matrix(x,S1,1); for i=1:S1 if(S1>=2*i) L=ceil((S1-i)/i); v=matrix(x(1:i)*ones(1,L),i*L,1); u=x(i+1:S1); v=v(1:length(u)); else u=x(i+1:S1); v=x(1:length(u)); end if(v==u|i==S1) p=i; num=S1/p; break; end end else x1=squeeze(x); S2=size(x1); p=zeros(sum(x1,1)); //summing x along first dimension gives p a leading singleton dimensionn num=zeros(p); for i=1:prod(S2(2:length(S2))) [p1,num1]=seqperiod(x1(:,i)); p(i)=p1; //Linear indexing num(i)=num1; //Linear indexing end p=matrix(p,[1,S(2:length(S))]); num1=matrix(num,[1,S(2:length(S))]); end end endfunction
2065898a2696e04a9b7ebbf3b8586391afa2e58b
449d555969bfd7befe906877abab098c6e63a0e8
/2219/CH11/EX11.4/Ex11_4.sce
c2f6dcf4cc1895e99fbbd4526ab87fd26c84e3fa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
790
sce
Ex11_4.sce
// Chapter 11 example 4 //------------------------------------------------------------------------------ clc; clear; // Given data h = 35800; // height of satellite orbit from earth in km G = 6.67*10^-11; // Gravitational constant M = 5.98*10^24; // mass of the earth in kg Re = 6364; // radius of earth in km i = 2; // inclination angle // Calculations u = G*M r = Re+h Vi = sqrt(u/r*10^3)*tan(i*%pi/180); // magnitude of velocity impulse V = Vi/1000; // magnitude of velocity impulse in m/s // Output mprintf('Magnitude of velocity impulse = %d m/s',V); //------------------------------------------------------------------------------
a8d31e2f0d98a08355dca44136b00ffa0a6b8fa0
449d555969bfd7befe906877abab098c6e63a0e8
/1898/CH11/EX11.6/Ex11_6.sce
f9dd17adc63bf7fcf24550d4299a3801d9cfd56c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
560
sce
Ex11_6.sce
clear all; clc; disp("Scilab Code Ex 11.6 : ") //Given: tou_allow = 50*10^6; //MPa T = 7.5; //Nm R_ah = 150; //N R_av = 475; //N l_ac = 0.25; //m mc = R_ah*l_ac; m = R_av*l_ac; M_c = sqrt(m^2 + mc^2); k = sqrt(M_c^2 + T^2); c1 = (2*k)/(%pi*tou_allow); c = c1^(1/3); d = 2*c*1000; //Display: printf("\n\nThe smallest allowable diameter of the shaft = %1.1f mm', d); //----------------------------------------------------------------------END------------------------------------------------------------------------------
437e4ef6be6bd81d755414ca5559289794d602fe
e806e966b06a53388fb300d89534354b222c2cad
/macros/imhistmatch.sci
0792aefd6734d6bb31875d4dce126c0ace672dbe
[]
no_license
gursimarsingh/FOSSEE_Image_Processing_Toolbox
76c9d524193ade302c48efe11936fe640f4de200
a6df67e8bcd5159cde27556f4f6a315f8dc2215f
refs/heads/master
2021-01-22T02:08:45.870957
2017-01-15T21:26:17
2017-01-15T21:26:17
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
518
sci
imhistmatch.sci
function [outputImg]=imhistmatch(inputImage,refImage,varargin) [lhs rhs]=argn(0); if rhs>3 error(msprintf(" Too many input arguments")); end inputList=mattolist(inputImage); refList=mattolist(refImage); select rhs case 2 then outputList=opencv_imhistmatch(inputList,refList); case 3 then outputList=opencv_imhistmatch(inputList,refList,varargin(1)); end for i=1:size(outputList) outputImg(:,:,i)=outputList(i) end endfunction
d45b45d78d58bdecf8de7f028e02d6a1ecafae2b
449d555969bfd7befe906877abab098c6e63a0e8
/1073/CH4/EX4.12/4_12.sce
0f0667341be13c088f7e5f01114d1f8e0c48d93d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
452
sce
4_12.sce
clc; clear; //Example 4.12 sigma=5.67*10^-8 //[W/sq m.K^4] T1=77 //[K] T2=303 //[K] D1=32 //cm D1=D1/100 //[m] D2=36 //[cm] D2=D2/100 //[m] A1=%pi*D1^2 //[sq m] A2=%pi*D2^2 //[sq m] e1=0.03; e2=e1; Q=sigma*A1*(T1^4-T2^4)/(1/e1+(A1/A2)*(1/e2-1)) //[W] Q=Q*3600/1000 //[kJ/h] Q=abs(Q); //[kJ/h] lambda=201 //kJ/kg m_dot=Q/lambda //Evaporation rate in [kg/h] printf("\n Nitrogen evaporates at %f kg/h",m_dot);
a489ce34cd32874a45b9a4391d31acefeb5b3884
f575b6ff7e0f0e2a1e8b41f9ab83ac853231ba68
/pkg/nq/examples/G2.tst
850e0f20c4ec0508734bad2a527e0ac0116ff894
[]
no_license
jmichel7/gap3-jm
756c6e6c5d3c7956fe4dc20b2f76f320f49a11b5
3eeb3c4d174d567c51e712f997febb1e8e2ad65f
refs/heads/master
2023-08-23T19:04:53.627679
2023-08-21T14:21:33
2023-08-21T14:21:33
124,115,667
0
3
null
null
null
null
UTF-8
Scilab
false
false
4,975
tst
G2.tst
# # The ANU Nilpotent Quotient Program (Version 1.1d, 18 May 1994) # Calculating a nilpotent quotient # Nilpotency class: 11 # # Calculating the abelian quotient ... # The abelian quotient has 2 generators # with the following exponents: 0 0 # # Calculating the class 2 quotient ... # Layer 2 of the lower central series has 1 generators # with the following exponents: 0 # # Calculating the class 3 quotient ... # Time spent on the integer matrix: 0 msec. # Maximal entry: 0 # Layer 3 of the lower central series has 1 generators # with the following exponents: 0 # # Calculating the class 4 quotient ... # Time spent on the integer matrix: 0 msec. # Maximal entry: 0 # Layer 4 of the lower central series has 1 generators # with the following exponents: 0 # # Calculating the class 5 quotient ... # Time spent on the integer matrix: 0 msec. # Maximal entry: 0 # Layer 5 of the lower central series has 1 generators # with the following exponents: 0 # # Calculating the class 6 quotient ... # Time spent on the integer matrix: 0 msec. # Maximal entry: 0 # Layer 6 of the lower central series has 1 generators # with the following exponents: 2 # # Calculating the class 7 quotient ... # Time spent on the integer matrix: 0 msec. # Maximal entry: 0 # Layer 7 of the lower central series has 2 generators # with the following exponents: 2 2 # # Calculating the class 8 quotient ... # Time spent on the integer matrix: 0 msec. # Maximal entry: 2 # Layer 8 of the lower central series has 2 generators # with the following exponents: 2 2 # # Calculating the class 9 quotient ... # Time spent on the integer matrix: 0 msec. # Maximal entry: 4 # Layer 9 of the lower central series has 2 generators # with the following exponents: 2 2 # # Calculating the class 10 quotient ... # Time spent on the integer matrix: 0 msec. # Maximal entry: 4 # Layer 10 of the lower central series has 1 generators # with the following exponents: 2 # # Calculating the class 11 quotient ... # Integer matrix is the identity. # Time spent on the integer matrix: 0 msec. # Maximal entry: 5 # The epimorphism : # a|---> A # b|---> B # The nilpotent quotient : <A,B,C,D,E,F,G,H,I,J,K,L,M,N | G^2 = H*I*J*K*L*M, H^2 = K, I^2 = J*M*N, J^2 = M, K^2 = L, L^2, M^2 = N, N^2, B^A =: B*C, B^(A^-1) = B*C^-1, C^A = C, C^(A^-1) = C, C^B =: C*D, C^(B^-1) = C*D^-1*E*J, D^A = D*F*K*L, D^(A^-1) = D*F^-1*H*L, D^B =: D*E, D^(B^-1) = D*E^-1*I, D^C = D*F*K*L, D^(C^-1) = D*F^-1*H*L, E^A =: E*F, E^(A^-1) = E*F^-1*H*K, E^B = E*I, E^(B^-1) = E*I*J, E^C = E*G*I*J*K*L*M, E^(C^-1) = E*G*H*M*N, E^D = E*I, E^(D^-1) = E*I*J, F^A = F*H*K*L, F^(A^-1) = F*H*L, F^B =: F*G, F^(B^-1) = F*G*H*J*N, F^C = F*H*K*L, F^(C^-1) = F*H*L, F^D = F*K*M, F^(D^-1) = F*K*L*M*N, F^E = F*M, F^(E^-1) = F*M*N, G^A =: G*H, G^(A^-1) = G*H*K, G^B =: G*I, G^(B^-1) = G*I*J, G^C = G*J*K*L*N, G^(C^-1) = G*J*K*M*N, G^D = G, G^(D^-1) = G, G^E = G, G^(E^-1) = G, H^A = H*L, H^(A^-1) = H*L, H^B =: H*J, H^(B^-1) = H*J*M*N, H^C = H*L, H^(C^-1) = H*L, H^D = H, H^(D^-1) = H, I^A =: I*K, I^(A^-1) = I*K*L, I^B = I, I^(B^-1) = I, I^C = I*M*N, I^(C^-1) = I*M, I^D = I, I^(D^-1) = I, J^A =: J*L, J^(A^-1) = J*L, J^B = J, J^(B^-1) = J, J^C = J*N, J^(C^-1) = J*N, K^A = K, K^(A^-1) = K, K^B =: K*M, K^(B^-1) = K*M*N, K^C = K, K^(C^-1) = K, L^A = L, L^(A^-1) = L, L^B =: L*N, L^(B^-1) = L*N, M^A = M, M^(A^-1) = M, M^B = M, M^(B^-1) = M > # Class : 10 # Nr of generators of each class : 2 1 1 1 1 1 2 2 2 1
112abb0b0ea12baeb36a5dd2854acd7259d1b383
449d555969bfd7befe906877abab098c6e63a0e8
/462/CH3/EX3.7.b/ex_3_7_b.sce
013a06fc8ccdb4967b3df316b58df3b72db8ab5f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
253
sce
ex_3_7_b.sce
//example 3.7(b)// clc //clears the screen// clear //clears already existing variables// disp('when V(i)=5V, the transistor T(1) is operating at point C') V=0; disp('output voltage in volts=') disp(V) //all the outcomes are as per the diagram//
295099afbaf84e8d56bf5ccde1beb8122adec761
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH9/EX9.29/Ex9_29.sce
e754524bec42c0c4b35692486b0b14a16cc507d6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
191
sce
Ex9_29.sce
clear //Given N=10 I=0.06 r=0.05 n=1000 I2=25 //Calculation // A=%pi*r**2 M=N*I*A u=4*%pi*10**-7 B=u*n*I2 t=M*B*sin(45*3.14/180.0) //Result printf("\n Torgue is %0.2f *10**-4 Nm",t*10**4)
4798b42416630e369127ff549117af7a2c2a5b69
449d555969bfd7befe906877abab098c6e63a0e8
/75/CH8/EX8.6/ex_6.sce
0ac7030d2858cb70b94500e4d6d296d8f6b5b6ff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
273
sce
ex_6.sce
// EXAMPLE (PG 529) // Consider the coefficient matrix for spline interpolation A = [2 1 0 0;1 4 1 0;0 1 4 1;0 0 1 2] [l,u] = lu(A); // LU Decomposition U = l' // Lower Triangular matrix L = u' // Upper triangular matrix
c0a904ed093d710bc6949b833adb3b3a2770727c
449d555969bfd7befe906877abab098c6e63a0e8
/3269/CH8/EX8.7/Ex8_7.sce
2321e4dc02d5aad2d9de009700c1976914ee8a62
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,938
sce
Ex8_7.sce
// Example 8.7 clear all; clc; // Given data T_b0 = 543; // Temperature of inlet coolant in F w = 3148; // Coolant rate per channel in lb/hr // 1. V_f = 1.15*10^(-2); // Volume of fueled portion in ft^2 // Using the result of Example 8.3 q_max = 4.66*10^7; // Maximum heat flux at the center of the rod in Btu/hr-ft^3 // From Table IV.3 c_p = 1.3; // Specific heat at constant pressure in Btu/lb-F // Calculation T_bmax = T_b0+((2*q_max*V_f)/(%pi*w*c_p)); // Result printf(" \n Exit temperature of the coolant = %d F \n",T_bmax); // 2. // Using the data of Example 8.6 h = 7500; // Heat transfer coefficient in Btu/hr-ft^2-F // Using the data of Example 8.5 d = 0.42/12; // Diameter of the fuel rod in feet(ft) a = d/2; // Radius of the fuel rod in ft b = 0.024/12; // Thickness of Zircaloy-4 clad in ft H = 12; // Length of fuel rod in ft A = 2*%pi*(a+b)*H; // Area of the assumed cylinder in ft^2 R_h = 1/(h*A); // Convective resistance in F-hour/Btu alpha = %pi*w*c_p*R_h; // A parameter // Using the result from Example 8.5 R_f = 6.03*10^(-3); // Thermal resistance of fuel R_c = 1.43*10^(-4); // Thermal resistance of cladding R = R_f+R_c+R_h; // Total resistance bet = %pi*w*c_p*R; // A parameter denoted by 'beta' // Calculation T_cmax = T_b0+((q_max*V_f*R_h)*((1+sqrt(1+alpha^2))/alpha)); T_mmax = T_b0+((q_max*V_f*R)*((1+sqrt(1+bet^2))/bet)); // Result printf(" \n Maximum temperature of cladding and fuel = %d F and %d F respectively. \n",ceil(T_cmax),T_mmax);
7959c1d9114a9cc0c0670b2dc023ec8f0fa9273c
449d555969bfd7befe906877abab098c6e63a0e8
/1118/CH16/EX16.6/16_6.sce
8ee75fb5314d73678ec3c5cd94d0c1201df27f9a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
584
sce
16_6.sce
clear; clc; xt=(.15+.1)*(.2)/(.15+.1+.2); sb=25; ssc=sb/xt; printf("\n The short circuit MVA is: %.2f \n",ssc); if=1/((%i)*xt); ib=sb/(sqrt(3)*11000); if=if*ib; printf("\n The fault current in A is:"); disp(round(if*1000000)); if1=(.15+.1)*if/(.15+.1+.2); printf("\n The fault current in A supplied by generator 1 is:"); disp(round(if1*1000000)); if2=if-if1; printf("\n The fault current in A in reactor is:"); disp(round(if2*1000000)); xpu=.45; vfl=6350; ifl=1050; x=xpu*vfl/ifl; printf("\n The reactance of each reactor is: %.2f ohm",x);
6cea52873af61ef916e3c57cd5ec2ea903a0bb22
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/lemma-split/DEVELOPMENT-LANGUAGES/uralic/vot.tst
36bfb8d9907738579866f148c289c1ccb5379210
[]
no_license
davidgu13/Lemma-vs-Form-Splits
c154f1c0c7b84ba5b325b17507012d41b9ad5cfe
3cce087f756420523f5a14234d02482452a7bfa5
refs/heads/master
2023-08-01T16:15:52.417307
2021-09-14T20:19:28
2021-09-14T20:19:28
395,023,433
3
0
null
null
null
null
UTF-8
Scilab
false
false
4,700
tst
vot.tst
staruha N;IN+ABL;PL staruha N;IN+ABL;SG staruha N;COM;PL staruha N;NOM;PL staruha N;IN+ESS;PL staruha N;GEN;SG staruha N;ESS;PL staruha N;TRANS;PL staruha N;AT+ABL;PL staruha N;TERM;SG staruha N;NOM;SG staruha N;ESS;SG staruha N;PRT;SG staruha N;AT+ESS;SG staruha N;AT+ESS;PL staruha N;GEN;PL staruha N;TRANS;SG staruha N;TERM;PL staruha N;IN+ALL;PL staruha N;PRT;PL staruha N;AT+ALL;PL staruha N;IN+ESS;SG staruha N;AT+ABL;SG staruha N;IN+ALL;SG staruha N;AT+ALL;SG staruha N;COM;SG susi N;IN+ALL;SG susi N;IN+ALL;PL susi N;IN+ABL;PL susi N;PRT;SG susi N;NOM;SG susi N;IN+ESS;PL susi N;ESS;PL susi N;AT+ABL;PL susi N;TRANS;PL susi N;COM;PL susi N;COM;SG susi N;TRANS;SG susi N;AT+ALL;PL susi N;TERM;SG susi N;GEN;SG susi N;NOM;PL susi N;ESS;SG susi N;IN+ESS;SG susi N;PRT;PL susi N;TERM;PL susi N;AT+ABL;SG susi N;AT+ALL;SG susi N;IN+ABL;SG susi N;AT+ESS;PL susi N;GEN;PL susi N;AT+ESS;SG aika N;IN+ALL;PL aika N;IN+ESS;PL aika N;NOM;SG aika N;COM;SG aika N;TRANS;PL aika N;NOM;PL aika N;ESS;PL aika N;AT+ALL;PL aika N;IN+ESS;SG aika N;AT+ESS;PL aika N;IN+ABL;PL aika N;AT+ESS;SG aika N;TRANS;SG aika N;TERM;PL aika N;PRT;PL aika N;ESS;SG aika N;GEN;SG aika N;AT+ABL;PL aika N;IN+ALL;SG aika N;TERM;SG aika N;GEN;PL aika N;AT+ALL;SG aika N;IN+ABL;SG aika N;AT+ABL;SG aika N;COM;PL aika N;PRT;SG sõbra N;GEN;SG sõbra N;NOM;PL sõbra N;AT+ABL;PL sõbra N;AT+ALL;SG sõbra N;IN+ESS;PL sõbra N;AT+ABL;SG sõbra N;GEN;PL sõbra N;AT+ESS;PL sõbra N;ESS;PL sõbra N;IN+ABL;PL sõbra N;TERM;PL sõbra N;COM;PL sõbra N;IN+ALL;SG sõbra N;TRANS;SG sõbra N;AT+ALL;PL sõbra N;PRT;SG sõbra N;TERM;SG sõbra N;IN+ABL;SG sõbra N;AT+ESS;SG sõbra N;IN+ESS;SG sõbra N;IN+ALL;PL sõbra N;ESS;SG sõbra N;PRT;PL sõbra N;COM;SG sõbra N;TRANS;PL sõbra N;NOM;SG vesi N;TRANS;SG vesi N;GEN;SG vesi N;AT+ABL;PL vesi N;GEN;PL vesi N;PRT;PL vesi N;IN+ALL;PL vesi N;IN+ESS;SG vesi N;AT+ESS;SG vesi N;IN+ABL;SG vesi N;COM;SG vesi N;IN+ALL;SG vesi N;TERM;SG vesi N;NOM;SG vesi N;COM;PL vesi N;NOM;PL vesi N;PRT;SG vesi N;IN+ESS;PL vesi N;TERM;PL vesi N;AT+ALL;SG vesi N;ESS;PL vesi N;TRANS;PL vesi N;AT+ALL;PL vesi N;IN+ABL;PL vesi N;AT+ABL;SG vesi N;ESS;SG vesi N;AT+ESS;PL sipuli N;TRANS;PL sipuli N;AT+ABL;PL sipuli N;COM;PL sipuli N;IN+ESS;SG sipuli N;PRT;SG sipuli N;COM;SG sipuli N;AT+ALL;SG sipuli N;AT+ESS;SG sipuli N;NOM;SG sipuli N;AT+ESS;PL sipuli N;TRANS;SG sipuli N;TERM;PL sipuli N;NOM;PL sipuli N;ESS;SG sipuli N;PRT;PL sipuli N;GEN;SG sipuli N;IN+ALL;PL sipuli N;ESS;PL sipuli N;IN+ABL;SG sipuli N;IN+ESS;PL sipuli N;AT+ABL;SG sipuli N;AT+ALL;PL sipuli N;GEN;PL sipuli N;TERM;SG sipuli N;IN+ALL;SG sipuli N;IN+ABL;PL lupa N;TERM;PL lupa N;ESS;PL lupa N;TRANS;SG lupa N;IN+ESS;PL lupa N;GEN;PL lupa N;ESS;SG lupa N;NOM;SG lupa N;TERM;SG lupa N;COM;PL lupa N;NOM;PL lupa N;IN+ABL;SG lupa N;IN+ESS;SG lupa N;IN+ALL;PL lupa N;AT+ABL;PL lupa N;IN+ABL;PL lupa N;AT+ESS;SG lupa N;TRANS;PL lupa N;AT+ALL;PL lupa N;GEN;SG lupa N;IN+ALL;SG lupa N;AT+ABL;SG lupa N;COM;SG lupa N;PRT;SG lupa N;AT+ESS;PL lupa N;PRT;PL lupa N;AT+ALL;SG isä N;AT+ALL;SG isä N;TRANS;SG isä N;GEN;PL isä N;IN+ABL;SG isä N;AT+ABL;SG isä N;COM;SG isä N;IN+ABL;PL isä N;AT+ESS;SG isä N;IN+ALL;PL isä N;AT+ALL;PL isä N;IN+ALL;SG isä N;AT+ABL;PL isä N;COM;PL isä N;NOM;SG isä N;TERM;PL isä N;PRT;SG isä N;ESS;PL isä N;IN+ESS;PL isä N;ESS;SG isä N;GEN;SG isä N;IN+ESS;SG isä N;AT+ESS;PL isä N;PRT;PL isä N;NOM;PL isä N;TERM;SG isä N;TRANS;PL koira N;COM;PL koira N;TERM;PL koira N;IN+ESS;SG koira N;IN+ALL;PL koira N;PRT;SG koira N;AT+ALL;PL koira N;PRT;PL koira N;TRANS;SG koira N;ESS;SG koira N;IN+ABL;SG koira N;TRANS;PL koira N;NOM;PL koira N;AT+ALL;SG koira N;AT+ESS;SG koira N;AT+ABL;SG koira N;NOM;SG koira N;IN+ESS;PL koira N;TERM;SG koira N;IN+ALL;SG koira N;IN+ABL;PL koira N;COM;SG koira N;GEN;PL koira N;AT+ESS;PL koira N;ESS;PL koira N;GEN;SG koira N;AT+ABL;PL seppä N;IN+ALL;SG seppä N;NOM;PL seppä N;PRT;SG seppä N;TRANS;SG seppä N;GEN;PL seppä N;AT+ABL;PL seppä N;IN+ABL;PL seppä N;IN+ALL;PL seppä N;AT+ALL;SG seppä N;COM;SG seppä N;AT+ESS;PL seppä N;NOM;SG seppä N;TERM;PL seppä N;IN+ESS;SG seppä N;COM;PL seppä N;TRANS;PL seppä N;ESS;PL seppä N;TERM;SG seppä N;AT+ABL;SG seppä N;AT+ESS;SG seppä N;IN+ABL;SG seppä N;PRT;PL seppä N;IN+ESS;PL seppä N;AT+ALL;PL seppä N;ESS;SG seppä N;GEN;SG maa N;AT+ABL;PL maa N;PRT;PL maa N;IN+ALL;SG maa N;GEN;SG maa N;AT+ESS;PL maa N;IN+ESS;SG maa N;GEN;PL maa N;ESS;PL maa N;NOM;SG maa N;IN+ALL;PL maa N;ESS;SG maa N;TERM;PL maa N;IN+ESS;PL maa N;TRANS;PL maa N;TERM;SG maa N;AT+ALL;SG maa N;COM;SG maa N;COM;PL maa N;AT+ESS;SG maa N;AT+ALL;PL maa N;IN+ABL;PL maa N;TRANS;SG maa N;NOM;PL maa N;AT+ABL;SG maa N;PRT;SG maa N;IN+ABL;SG
cc900cbde982e1281d67309f06be4280325c0076
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/YL18CXQ/ATWM1_Working_Memory_MEG_YL18CXQ_Session1/ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce
62683ef6ff421e655d189174c755547342278afd
[]
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
48,405
sce
ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_uncued_run1"; #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 = 36; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 382; width = 382; color = 0, 0, 0;} frame1; box { height = 369; width = 369; 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 = 369; width = 369; color = 42, 42, 42;} 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; 42 62 292 292 399 125 2092 2992 2492 fixation_cross gabor_173 gabor_093 gabor_020 gabor_003 gabor_173 gabor_093_alt gabor_020 gabor_003_alt "1_1_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_173_093_020_003_target_position_2_4_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1792 2992 1942 fixation_cross gabor_131 gabor_043 gabor_160 gabor_026 gabor_131 gabor_043 gabor_160_alt gabor_026_alt "1_2_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_131_043_160_026_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_026_framed blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1792 2992 2342 fixation_cross gabor_170 gabor_150 gabor_116 gabor_135 gabor_170 gabor_150 gabor_116_alt gabor_135_alt "1_3_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_170_150_116_135_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_135_framed blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 63 292 292 399 125 1892 2992 2442 fixation_cross gabor_179 gabor_142 gabor_112 gabor_036 gabor_179_alt gabor_142 gabor_112 gabor_036_alt "1_4_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_2450_gabor_patch_orientation_179_142_112_036_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_158_framed gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_158_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_018 gabor_064 gabor_134 gabor_044 gabor_018_alt gabor_064 gabor_134_alt gabor_044 "1_5_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_018_064_134_044_target_position_1_3_retrieval_position_1" gabor_018_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_018_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1792 2992 2592 fixation_cross gabor_040 gabor_056 gabor_145 gabor_083 gabor_040_alt gabor_056 gabor_145 gabor_083_alt "1_6_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_040_056_145_083_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_129_framed blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1742 2992 2042 fixation_cross gabor_155 gabor_021 gabor_004 gabor_094 gabor_155_alt gabor_021 gabor_004 gabor_094_alt "1_7_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_155_021_004_094_target_position_1_4_retrieval_position_1" gabor_110_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1842 2992 2292 fixation_cross gabor_122 gabor_047 gabor_076 gabor_153 gabor_122_alt gabor_047_alt gabor_076 gabor_153 "1_8_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_122_047_076_153_target_position_1_2_retrieval_position_2" gabor_circ gabor_047_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1992 2992 2592 fixation_cross gabor_091 gabor_015 gabor_038 gabor_144 gabor_091 gabor_015_alt gabor_038_alt gabor_144 "1_9_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_091_015_038_144_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_173_framed gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1842 2992 2492 fixation_cross gabor_061 gabor_173 gabor_086 gabor_144 gabor_061 gabor_173_alt gabor_086_alt gabor_144 "1_10_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_061_173_086_144_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_086_framed gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_094 gabor_155 gabor_006 gabor_044 gabor_094 gabor_155 gabor_006_alt gabor_044_alt "1_11_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_094_155_006_044_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_044_framed blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 64 292 292 399 125 1842 2992 2292 fixation_cross gabor_040 gabor_013 gabor_068 gabor_092 gabor_040_alt gabor_013 gabor_068 gabor_092_alt "1_12_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2300_gabor_patch_orientation_040_013_068_092_target_position_1_4_retrieval_position_2" gabor_circ gabor_013_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_013_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_178 gabor_053 gabor_141 gabor_033 gabor_178 gabor_053 gabor_141_alt gabor_033_alt "1_13_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_178_053_141_033_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_005_framed gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_019 gabor_124 gabor_176 gabor_143 gabor_019 gabor_124 gabor_176_alt gabor_143_alt "1_14_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_019_124_176_143_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_036_framed gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_149 gabor_018 gabor_105 gabor_178 gabor_149 gabor_018_alt gabor_105_alt gabor_178 "1_15_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_149_018_105_178_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_105_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 64 292 292 399 125 1892 2992 1942 fixation_cross gabor_075 gabor_048 gabor_030 gabor_107 gabor_075 gabor_048_alt gabor_030 gabor_107_alt "1_16_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_1950_gabor_patch_orientation_075_048_030_107_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_030_framed gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_030_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1942 2992 2492 fixation_cross gabor_112 gabor_026 gabor_043 gabor_007 gabor_112_alt gabor_026_alt gabor_043 gabor_007 "1_17_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_112_026_043_007_target_position_1_2_retrieval_position_2" gabor_circ gabor_164_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2092 2992 2192 fixation_cross gabor_091 gabor_045 gabor_114 gabor_178 gabor_091 gabor_045 gabor_114_alt gabor_178_alt "1_18_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_091_045_114_178_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_114_framed gabor_circ blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_114_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2192 2992 1892 fixation_cross gabor_156 gabor_093 gabor_013 gabor_067 gabor_156_alt gabor_093_alt gabor_013 gabor_067 "1_19_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_156_093_013_067_target_position_1_2_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 64 292 292 399 125 2192 2992 1942 fixation_cross gabor_099 gabor_131 gabor_170 gabor_150 gabor_099_alt gabor_131 gabor_170 gabor_150_alt "1_20_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_1950_gabor_patch_orientation_099_131_170_150_target_position_1_4_retrieval_position_2" gabor_circ gabor_131_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1742 2992 2242 fixation_cross gabor_065 gabor_005 gabor_091 gabor_021 gabor_065_alt gabor_005 gabor_091_alt gabor_021 "1_21_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_065_005_091_021_target_position_1_3_retrieval_position_1" gabor_065_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_094 gabor_057 gabor_176 gabor_127 gabor_094_alt gabor_057_alt gabor_176 gabor_127 "1_22_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_094_057_176_127_target_position_1_2_retrieval_position_2" gabor_circ gabor_010_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_039 gabor_075 gabor_054 gabor_012 gabor_039 gabor_075 gabor_054_alt gabor_012_alt "1_23_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_039_075_054_012_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_102_framed gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 64 292 292 399 125 1942 2992 2442 fixation_cross gabor_107 gabor_084 gabor_138 gabor_172 gabor_107 gabor_084 gabor_138_alt gabor_172_alt "1_24_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_2450_gabor_patch_orientation_107_084_138_172_target_position_3_4_retrieval_position_1" gabor_107_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_107_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_116 gabor_180 gabor_100 gabor_141 gabor_116 gabor_180_alt gabor_100_alt gabor_141 "1_25_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_116_180_100_141_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_100_framed gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2092 2992 2042 fixation_cross gabor_063 gabor_142 gabor_169 gabor_122 gabor_063_alt gabor_142 gabor_169 gabor_122_alt "1_26_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_063_142_169_122_target_position_1_4_retrieval_position_1" gabor_014_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2142 2992 2342 fixation_cross gabor_093 gabor_115 gabor_070 gabor_007 gabor_093_alt gabor_115 gabor_070_alt gabor_007 "1_27_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2350_gabor_patch_orientation_093_115_070_007_target_position_1_3_retrieval_position_1" gabor_093_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1842 2992 2292 fixation_cross gabor_101 gabor_039 gabor_163 gabor_083 gabor_101 gabor_039_alt gabor_163_alt gabor_083 "1_28_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_101_039_163_083_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_118_framed gabor_circ blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_056 gabor_010 gabor_072 gabor_038 gabor_056 gabor_010_alt gabor_072 gabor_038_alt "1_29_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_056_010_072_038_target_position_2_4_retrieval_position_2" gabor_circ gabor_145_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1992 2992 1942 fixation_cross gabor_111 gabor_090 gabor_147 gabor_162 gabor_111 gabor_090_alt gabor_147 gabor_162_alt "1_30_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_111_090_147_162_target_position_2_4_retrieval_position_2" gabor_circ gabor_040_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2092 2992 1892 fixation_cross gabor_011 gabor_071 gabor_091 gabor_147 gabor_011 gabor_071_alt gabor_091_alt gabor_147 "1_31_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_011_071_091_147_target_position_2_3_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_016 gabor_145 gabor_082 gabor_061 gabor_016 gabor_145_alt gabor_082_alt gabor_061 "1_32_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_016_145_082_061_target_position_2_3_retrieval_position_2" gabor_circ gabor_099_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_099_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 64 292 292 399 125 2242 2992 1992 fixation_cross gabor_070 gabor_149 gabor_100 gabor_032 gabor_070 gabor_149 gabor_100_alt gabor_032_alt "1_33_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2000_gabor_patch_orientation_070_149_100_032_target_position_3_4_retrieval_position_2" gabor_circ gabor_149_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_149_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2192 2992 2592 fixation_cross gabor_137 gabor_178 gabor_108 gabor_027 gabor_137_alt gabor_178 gabor_108_alt gabor_027 "1_34_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_137_178_108_027_target_position_1_3_retrieval_position_1" gabor_137_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_174 gabor_089 gabor_051 gabor_002 gabor_174_alt gabor_089_alt gabor_051 gabor_002 "1_35_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_174_089_051_002_target_position_1_2_retrieval_position_1" gabor_174_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 63 292 292 399 125 2192 2992 2392 fixation_cross gabor_041 gabor_006 gabor_121 gabor_176 gabor_041 gabor_006 gabor_121_alt gabor_176_alt "1_36_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_2200_3000_2400_gabor_patch_orientation_041_006_121_176_target_position_3_4_retrieval_position_1" gabor_091_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_091_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1892 2992 2342 fixation_cross gabor_128 gabor_022 gabor_169 gabor_007 gabor_128 gabor_022 gabor_169_alt gabor_007_alt "1_37_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_128_022_169_007_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_053_framed blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_084 gabor_043 gabor_107 gabor_157 gabor_084_alt gabor_043 gabor_107 gabor_157_alt "1_38_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_084_043_107_157_target_position_1_4_retrieval_position_1" gabor_084_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1892 2992 1992 fixation_cross gabor_073 gabor_046 gabor_152 gabor_016 gabor_073_alt gabor_046 gabor_152_alt gabor_016 "1_39_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_073_046_152_016_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_152_framed gabor_circ blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_044 gabor_015 gabor_061 gabor_099 gabor_044 gabor_015_alt gabor_061_alt gabor_099 "1_40_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_044_015_061_099_target_position_2_3_retrieval_position_2" gabor_circ gabor_150_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2192 2992 2342 fixation_cross gabor_168 gabor_078 gabor_032 gabor_095 gabor_168_alt gabor_078 gabor_032_alt gabor_095 "1_41_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_168_078_032_095_target_position_1_3_retrieval_position_1" gabor_168_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 63 292 292 399 125 2142 2992 2492 fixation_cross gabor_005 gabor_021 gabor_173 gabor_149 gabor_005 gabor_021_alt gabor_173 gabor_149_alt "1_42_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2500_gabor_patch_orientation_005_021_173_149_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_127_framed gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_127_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_098 gabor_080 gabor_035 gabor_113 gabor_098_alt gabor_080 gabor_035 gabor_113_alt "1_43_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_098_080_035_113_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_159_framed blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1792 2992 2542 fixation_cross gabor_136 gabor_082 gabor_030 gabor_048 gabor_136 gabor_082 gabor_030_alt gabor_048_alt "1_44_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_136_082_030_048_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_030_framed gabor_circ blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2042 2992 1942 fixation_cross gabor_015 gabor_031 gabor_060 gabor_083 gabor_015 gabor_031 gabor_060_alt gabor_083_alt "1_45_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_015_031_060_083_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_060_framed gabor_circ blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2042 2992 1892 fixation_cross gabor_091 gabor_004 gabor_180 gabor_162 gabor_091_alt gabor_004 gabor_180_alt gabor_162 "1_46_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_091_004_180_162_target_position_1_3_retrieval_position_1" gabor_140_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 64 292 292 399 125 1942 2992 1892 fixation_cross gabor_098 gabor_008 gabor_150 gabor_128 gabor_098 gabor_008_alt gabor_150_alt gabor_128 "1_47_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_098_008_150_128_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_128_framed blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_128_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_002 gabor_136 gabor_029 gabor_112 gabor_002 gabor_136_alt gabor_029 gabor_112_alt "1_48_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_002_136_029_112_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_112_framed blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1742 2992 2242 fixation_cross gabor_063 gabor_044 gabor_118 gabor_029 gabor_063_alt gabor_044 gabor_118 gabor_029_alt "1_49_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_063_044_118_029_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_079_framed blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 64 292 292 399 125 1892 2992 1992 fixation_cross gabor_032 gabor_056 gabor_101 gabor_080 gabor_032 gabor_056_alt gabor_101 gabor_080_alt "1_50_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2000_gabor_patch_orientation_032_056_101_080_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_101_framed gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_101_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_063 gabor_172 gabor_096 gabor_117 gabor_063_alt gabor_172 gabor_096_alt gabor_117 "1_51_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_063_172_096_117_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_096_framed gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_003 gabor_179 gabor_089 gabor_118 gabor_003_alt gabor_179 gabor_089_alt gabor_118 "1_52_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_003_179_089_118_target_position_1_3_retrieval_position_1" gabor_138_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1942 2992 2242 fixation_cross gabor_060 gabor_031 gabor_148 gabor_168 gabor_060_alt gabor_031 gabor_148 gabor_168_alt "1_53_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_060_031_148_168_target_position_1_4_retrieval_position_1" gabor_060_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_092 gabor_032 gabor_113 gabor_149 gabor_092_alt gabor_032_alt gabor_113 gabor_149 "1_54_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_092_032_113_149_target_position_1_2_retrieval_position_2" gabor_circ gabor_171_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1942 2992 2042 fixation_cross gabor_144 gabor_169 gabor_033 gabor_006 gabor_144_alt gabor_169_alt gabor_033 gabor_006 "1_55_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_144_169_033_006_target_position_1_2_retrieval_position_1" gabor_095_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_070 gabor_014 gabor_122 gabor_092 gabor_070 gabor_014_alt gabor_122_alt gabor_092 "1_56_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_070_014_122_092_target_position_2_3_retrieval_position_2" gabor_circ gabor_014_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 63 292 292 399 125 2242 2992 2092 fixation_cross gabor_078 gabor_037 gabor_164 gabor_105 gabor_078_alt gabor_037_alt gabor_164 gabor_105 "1_57_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2100_gabor_patch_orientation_078_037_164_105_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_058_framed blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_058_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_011 gabor_179 gabor_073 gabor_139 gabor_011_alt gabor_179 gabor_073_alt gabor_139 "1_58_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_011_179_073_139_target_position_1_3_retrieval_position_1" gabor_057_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2142 2992 2542 fixation_cross gabor_176 gabor_023 gabor_093 gabor_134 gabor_176 gabor_023_alt gabor_093_alt gabor_134 "1_59_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_176_023_093_134_target_position_2_3_retrieval_position_2" gabor_circ gabor_160_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 63 292 292 399 125 1742 2992 2592 fixation_cross gabor_151 gabor_037 gabor_093 gabor_066 gabor_151 gabor_037_alt gabor_093 gabor_066_alt "1_60_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2600_gabor_patch_orientation_151_037_093_066_target_position_2_4_retrieval_position_1" gabor_012_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_012_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1842 2992 2192 fixation_cross gabor_126 gabor_073 gabor_096 gabor_016 gabor_126_alt gabor_073 gabor_096_alt gabor_016 "1_61_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_126_073_096_016_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_049_framed gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_013 gabor_153 gabor_126 gabor_036 gabor_013 gabor_153_alt gabor_126 gabor_036_alt "1_62_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_013_153_126_036_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_172_framed blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 2042 2992 2092 fixation_cross gabor_071 gabor_160 gabor_133 gabor_091 gabor_071 gabor_160_alt gabor_133 gabor_091_alt "1_63_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_071_160_133_091_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_045_framed blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 63 292 292 399 125 2142 2992 1992 fixation_cross gabor_163 gabor_078 gabor_008 gabor_142 gabor_163 gabor_078_alt gabor_008 gabor_142_alt "1_64_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2000_gabor_patch_orientation_163_078_008_142_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_053_framed gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_053_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1742 2992 2442 fixation_cross gabor_073 gabor_098 gabor_050 gabor_131 gabor_073 gabor_098 gabor_050_alt gabor_131_alt "1_65_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_073_098_050_131_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_109 gabor_176 gabor_002 gabor_128 gabor_109_alt gabor_176 gabor_002_alt gabor_128 "1_66_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_109_176_002_128_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_002_framed gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 61 292 292 399 125 1842 2992 2292 fixation_cross gabor_037 gabor_009 gabor_152 gabor_115 gabor_037 gabor_009 gabor_152_alt gabor_115_alt "1_67_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_037_009_152_115_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_070_framed blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 2042 2992 2542 fixation_cross gabor_027 gabor_155 gabor_011 gabor_092 gabor_027_alt gabor_155 gabor_011 gabor_092_alt "1_68_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_027_155_011_092_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_092_framed blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 63 292 292 399 125 1842 2992 2542 fixation_cross gabor_035 gabor_003 gabor_112 gabor_141 gabor_035_alt gabor_003 gabor_112 gabor_141_alt "1_69_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2550_gabor_patch_orientation_035_003_112_141_target_position_1_4_retrieval_position_2" gabor_circ gabor_052_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_052_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 42 62 292 292 399 125 1792 2992 1892 fixation_cross gabor_071 gabor_017 gabor_180 gabor_136 gabor_071_alt gabor_017_alt gabor_180 gabor_136 "1_70_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_071_017_180_136_target_position_1_2_retrieval_position_2" gabor_circ gabor_017_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; }; # 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; };
609f72516d81b8c7511c69f1c08126f282c6b4f2
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH3/EX3.6/MS_6.sce
4a8d9f566f4fe76c4bc8e0f793d473fd0dfb85bf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
478
sce
MS_6.sce
// sum 3-6 clc; clear; delT=100; ab=18*10^-6; aa=23*10^-6; delta=(360*ab*delT)+(450*aa*delT); lc=delta-0.6; Ea=70*10^3; Eb=105*10^3; Aa=1600; Ab=1300; P=lc/((360/(Ab*Eb))+(450/(Aa*Ea))); P=P*10^-3; //Let the change in length be delL delL=(aa*450*delT)-(P*10^3*450/(Aa*Ea)); // printing data in scilab o/p window printf("P is %f kN ",P); printf("\n delL is %f mm ",delL); // The difference in the answer of delL is due to round-off errors.