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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c3fe59b1dc6246c0a852e95b04b4ea799fcff3d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3547/CH6/EX6.14/EX6_14.sce | e8d2d4838437f1eb73131dc9f98322e2688eb3d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 842 | sce | EX6_14.sce | // Example 6.13
// Calculation of the upper bound on the single-pass gain
// Page no 297
clc;
clear;
close;
//Given data
n=3.5; // Refractive index
c1=3*10^8; // Velocity of light
L=200*10^-6; // Amplifier length
a=0.09;
b=-(1.2*0.1805^2+0.6);
c=1;
// The geometric mean of the facet reflectivity R
f=c1/(2*n*L);
x1 =( -1*b+ sqrt ((b ^2) -4*a*c)) /(2* a); // 1 s t r o o t
x2 =( -1*b- sqrt ((b ^2) -4*a*c)) /(2* a); // 2nd r o o t
//Displaying results in the command window
printf("\n The geometric mean of the facet reflectivity R = %0.2f GHz ",f*10^-9);
printf("\n The upper bound on the single-pass gain Gs = %0.2f or ",x1);
printf("\n The upper bound on the single-pass gain Gs = %0.2f ",x2);
// The answers vary due to round off error
|
4eaed1e502bb35e0b290f620858e24da09622ad9 | 56938bc67f1727ac61cf330ce0ff113a40babdb4 | /TP1/TP1.sce | b156b23b11380a875c75479d721728e1edb02191 | [] | no_license | royceda/Math-finance | a3b1e54bf3311514760d3d025eb55a94c0d53965 | f9a28b6cd5baf2ded9cb2eed8ec6c94e0ec738fa | refs/heads/master | 2021-01-10T04:22:52.831869 | 2015-11-25T22:06:16 | 2015-11-25T22:06:16 | 43,753,795 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,826 | sce | TP1.sce | //Exercice 1
rand('seed',0)
test = rand
class = 50;
n = 1000;
xx = rand(n,1);
clf();
//red
histplot(class, xx, style=6);
legend(["1000"])
n = 10000;
yy = rand(n,1);
//green
clf();
histplot(class, yy, style=5);
legend(["10000"])
n = 100000;
zz = rand(n,1);
//grey
clf();
histplot(class, zz, style=3);
legend(["100000"])
n = 1000000;
aa = rand(n,1);
//blue
clf();
histplot(class, aa, style=2);
legend(["1000000"])
//Exercice 2
deff('[p]=myexp(n, a)', 'p=-1/a*log(rand(n,1))');
n=1000000;
x=[0:0.1:4];
clf();
histplot(1000, myexp(n,2), style=2);
plot2d(x,2*exp(-2*x), style=5);
legend(["n = 1000000, class = 1000"])
//Exercice 3
x1=[0,1,2,3,4,5,6,7,8];
p1=[1/9, 1/9, 1/9, 1/9, 1/9, 1/9, 1/9, 1/9, 1/9, 1/9]
//
// simule une variable aléatoire discrète
// d’ensemble de valeurs possibles x_1,....,x_d
// avec probabilités respectives p_1,...,p_d
// x=( x_1,....,x_d), p=(p_1,...,p_d)
//
function [y] = discrete(x,p)
rand('uniform');
d = length(p);
pp = [0 p(1:(d-1))];
cpp = cumsum(pp);
cp = cumsum(p);
U = rand(1,1);
k = find((cpp <= U) & (U<cp));
y = x(k);
endfunction
x = [0,1,2,3,4];
p = [1/5, 1/5, 1/5, 1/5, 1/5];
a = discrete(x,p);
function [y] = simudsc(n, x, p)
for j = 1:n
y(j) = discrete(x,p);
end
endfunction
v1 = [-3,-1.5,0,2,2.5];
p1 = [0.2,0.3,0.1,0.3,0.1];
n = 1000;
yy = simudsc(n,v1,p1);
clf();
histplot(100, yy, style=5);
legend(["simudsc n=1000"])
//Exercice 4
a = 9;
b = 10;
r = rand(1,1)*(b-a)+a;
function [X] = BM(n)
theta = rand(n,1)*2*%pi+0;
R = myexp(n,1/2);
for i = 1:n
X(i) = cos(theta(i))*sqrt(R(i));
end
endfunction
//clf();
n=100000;
//histplot(1000, BM(n), style=2);
//legend(['n=500000, class=1000'])
x=[-5:0.1:5]
//plot2d(x,1/(4*sqrt(2*%pi))*exp(-(x-3)**2/2*4**2), style=1)
//plot2d(x,1/(2*sqrt(2*%pi))*exp(-x**2/4), style=1)
//X = grand(n,1,'nor',3,4);
//histplot(1000, X, style=4);
//Exercice 5
function [vect]=rejet1()
u = rand(1,1)*2-1;
v = rand(1,1)*2-1;
r = u**2 + v**2;
if r>1 then
vect = rejet1();
end
if r>1 then
rejet1();
else
z = sqrt((-2*log(r))/r);
x = u*z;
y = v*z;
X = x;
Y = y;
//print(%io(2),X,Y,r);
vect(1) = X
vect(2) = Y
vect(3) = r
end
endfunction
function [p]=rejet(n)
for i=1:n
V = rejet1();
p(1)(i) = V(1);
p(2)(i) = V(2);
end
endfunction
n = 1000000;
clf();
histplot(1000, rejet(n), style=2);
legend(['n=100000, class=1000'])
|
8ed7ee324c5d66355243ef046ba74a92326bc6fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH5/EX5.16/Ex5_16.sce | a8b77fb172e34588e3937a1a4a9052efe63cab86 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 585 | sce | Ex5_16.sce | //=========================================================================
// chapter 5 example 16
clc;
clear;
//input data
eF = 5.4; //fermi energy in eV
k = 1.38*10^-23; // k in joule/K
//calculation
e0 = (3*eF)/5; //average energy in eV
T = (e0*(1.6*10^-19)*2)/(3*k); //temperature in K
//result
mprintf('average energy =%3.2f.eV\n',e0);
mprintf('temperature =%3.2e.K\n',T);
//========================================================================
|
c2eef783eb0c5b9a30636dbfad6ea5500ad80bac | 04e4dfecf86c47abbad9ad721bcbc552300a8834 | /pid_controller/pi_ta_data.sce | ce905935ed200b9380917cfd353544b42545506f | [] | no_license | rupakrokade/scilab_local_codes | 702f741a5cadc6da56e428f7379971818238ff22 | 4de8383487def7f18a1f19906397ed4eaf42480e | refs/heads/master | 2021-01-19T06:58:47.689324 | 2015-10-24T11:55:34 | 2015-10-24T11:55:34 | 26,806,574 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,016 | sce | pi_ta_data.sce | 0.000E+00 0.000E+00 0.390E+02 0.350E+02
0.500E+00 0.341E+02 0.390E+02 0.350E+02
0.100E+01 0.341E+02 0.000E+00 0.900E+00
0.150E+01 0.341E+02 0.101E+00 0.900E+00
0.200E+01 0.341E+02 0.202E+00 0.900E+00
0.250E+01 0.343E+02 0.304E+00 0.900E+00
0.300E+01 0.341E+02 0.000E+00 0.700E+00
0.350E+01 0.343E+02 0.188E+01 0.900E+00
0.400E+01 0.341E+02 0.180E+00 0.700E+00
0.450E+01 0.341E+02 0.206E+01 0.900E+00
0.500E+01 0.341E+02 0.216E+01 0.900E+00
0.550E+01 0.341E+02 0.226E+01 0.900E+00
0.600E+01 0.341E+02 0.236E+01 0.900E+00
0.650E+01 0.341E+02 0.246E+01 0.900E+00
0.700E+01 0.343E+02 0.256E+01 0.900E+00
0.750E+01 0.343E+02 0.866E+00 0.700E+00
0.800E+01 0.343E+02 0.945E+00 0.700E+00
0.850E+01 0.343E+02 0.102E+01 0.700E+00
0.900E+01 0.343E+02 0.110E+01 0.700E+00
0.950E+01 0.343E+02 0.118E+01 0.700E+00
0.100E+02 0.343E+02 0.126E+01 0.700E+00
0.105E+02 0.343E+02 0.134E+01 0.700E+00
0.110E+02 0.343E+02 0.142E+01 0.700E+00
0.115E+02 0.343E+02 0.150E+01 0.700E+00
0.120E+02 0.343E+02 0.157E+01 0.700E+00
0.125E+02 0.343E+02 0.165E+01 0.700E+00
0.130E+02 0.343E+02 0.173E+01 0.700E+00
0.135E+02 0.343E+02 0.181E+01 0.700E+00
0.140E+02 0.343E+02 0.189E+01 0.700E+00
0.145E+02 0.343E+02 0.197E+01 0.700E+00
0.150E+02 0.343E+02 0.205E+01 0.700E+00
0.155E+02 0.343E+02 0.213E+01 0.700E+00
0.160E+02 0.343E+02 0.220E+01 0.700E+00
0.165E+02 0.344E+02 0.228E+01 0.700E+00
0.170E+02 0.343E+02 0.146E+01 0.600E+00
0.175E+02 0.343E+02 0.243E+01 0.700E+00
0.180E+02 0.343E+02 0.251E+01 0.700E+00
0.185E+02 0.343E+02 0.259E+01 0.700E+00
0.190E+02 0.343E+02 0.267E+01 0.700E+00
0.195E+02 0.343E+02 0.274E+01 0.700E+00
0.200E+02 0.343E+02 0.282E+01 0.700E+00
0.205E+02 0.343E+02 0.290E+01 0.700E+00
0.210E+02 0.343E+02 0.298E+01 0.700E+00
0.215E+02 0.343E+02 0.306E+01 0.700E+00
0.220E+02 0.343E+02 0.314E+01 0.700E+00
0.225E+02 0.344E+02 0.322E+01 0.700E+00
0.230E+02 0.343E+02 0.240E+01 0.600E+00
0.235E+02 0.343E+02 0.336E+01 0.700E+00
0.240E+02 0.343E+02 0.344E+01 0.700E+00
0.245E+02 0.344E+02 0.352E+01 0.700E+00
0.250E+02 0.344E+02 0.270E+01 0.600E+00
0.255E+02 0.344E+02 0.277E+01 0.600E+00
0.260E+02 0.344E+02 0.283E+01 0.600E+00
0.265E+02 0.344E+02 0.290E+01 0.600E+00
0.270E+02 0.344E+02 0.297E+01 0.600E+00
0.275E+02 0.344E+02 0.304E+01 0.600E+00
0.280E+02 0.344E+02 0.310E+01 0.600E+00
0.285E+02 0.344E+02 0.317E+01 0.600E+00
0.290E+02 0.345E+02 0.324E+01 0.600E+00
0.295E+02 0.344E+02 0.241E+01 0.500E+00
0.300E+02 0.344E+02 0.336E+01 0.600E+00
0.305E+02 0.344E+02 0.343E+01 0.600E+00
0.310E+02 0.344E+02 0.350E+01 0.600E+00
0.315E+02 0.344E+02 0.357E+01 0.600E+00
0.320E+02 0.344E+02 0.363E+01 0.600E+00
0.325E+02 0.344E+02 0.370E+01 0.600E+00
0.330E+02 0.344E+02 0.377E+01 0.600E+00
0.335E+02 0.344E+02 0.384E+01 0.600E+00
0.340E+02 0.344E+02 0.390E+01 0.600E+00
0.345E+02 0.344E+02 0.397E+01 0.600E+00
0.350E+02 0.344E+02 0.404E+01 0.600E+00
0.355E+02 0.345E+02 0.411E+01 0.600E+00
0.360E+02 0.344E+02 0.327E+01 0.500E+00
0.365E+02 0.344E+02 0.423E+01 0.600E+00
0.370E+02 0.344E+02 0.430E+01 0.600E+00
0.375E+02 0.344E+02 0.436E+01 0.600E+00
0.380E+02 0.345E+02 0.443E+01 0.600E+00
0.385E+02 0.344E+02 0.360E+01 0.500E+00
0.390E+02 0.345E+02 0.456E+01 0.600E+00
0.395E+02 0.344E+02 0.372E+01 0.500E+00
0.400E+02 0.345E+02 0.468E+01 0.600E+00
0.405E+02 0.345E+02 0.385E+01 0.500E+00
0.410E+02 0.345E+02 0.390E+01 0.500E+00
0.415E+02 0.345E+02 0.396E+01 0.500E+00
0.420E+02 0.346E+02 0.402E+01 0.500E+00
0.425E+02 0.345E+02 0.317E+01 0.400E+00
0.430E+02 0.345E+02 0.412E+01 0.500E+00
0.435E+02 0.345E+02 0.417E+01 0.500E+00
0.440E+02 0.345E+02 0.423E+01 0.500E+00
0.445E+02 0.346E+02 0.429E+01 0.500E+00
0.450E+02 0.346E+02 0.344E+01 0.400E+00
0.455E+02 0.346E+02 0.349E+01 0.400E+00
0.460E+02 0.346E+02 0.353E+01 0.400E+00
0.465E+02 0.346E+02 0.358E+01 0.400E+00
0.470E+02 0.346E+02 0.362E+01 0.400E+00
0.475E+02 0.346E+02 0.367E+01 0.400E+00
0.480E+02 0.346E+02 0.371E+01 0.400E+00
0.485E+02 0.346E+02 0.376E+01 0.400E+00
0.490E+02 0.346E+02 0.380E+01 0.400E+00
0.495E+02 0.347E+02 0.385E+01 0.400E+00
0.500E+02 0.346E+02 0.299E+01 0.300E+00
0.505E+02 0.346E+02 0.393E+01 0.400E+00
0.510E+02 0.347E+02 0.397E+01 0.400E+00
0.515E+02 0.347E+02 0.312E+01 0.300E+00
0.520E+02 0.347E+02 0.315E+01 0.300E+00
0.525E+02 0.347E+02 0.318E+01 0.300E+00
0.530E+02 0.347E+02 0.322E+01 0.300E+00
0.535E+02 0.347E+02 0.325E+01 0.300E+00
0.540E+02 0.346E+02 0.328E+01 0.300E+00
0.545E+02 0.346E+02 0.422E+01 0.400E+00
0.550E+02 0.347E+02 0.426E+01 0.400E+00
0.555E+02 0.347E+02 0.341E+01 0.300E+00
0.560E+02 0.347E+02 0.344E+01 0.300E+00
0.565E+02 0.347E+02 0.348E+01 0.300E+00
|
5824cc77a6cbf21d1d4ce57483a233b5cad1da28 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2015/CH9/EX9.11/9_11.sce | 4be13c8d80bad9a340fb8fa5bb56521c77398233 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 713 | sce | 9_11.sce |
clc
//initialisation of variables
r=0.287
p=1.01325 //pressure in bar
v=5 //volume in m*m*m
t=288 //temparature in k
t1=303 //temparature in k
t2=403 //temparature in k
p2=4.08 //pressure in bar
p1=0.98 //pressure in bar
p3=17 //pressure in bar
n=1.25
c=0.06 //clearance volume by swept volume
//CALCULATIONS
m=(p*v)/(r*t)
rp=p2/p1
t2s=(t1*(p2/p1)^((n-1)/n))
wr=(n/n-1)*r*(t2-t1)
wc=2*wr
veff=(1+c-c*(rp)^(1/n))
x=(p*100*v*t1)/(p1*100*t) //x=(v1-v4)
vs=x/veff
vsc=vs/125
d1=((4*vsc)/%pi)^(1/3)
//RESULTS
printf('volumetric efficiency is %2f',veff)
printf('\nstoke volume is %2fm*m*m/min',vs)
printf('\nstroke volume per cycle is %2fm*m*m',vsc)
printf('\nstoke of piston is %2f',d1)
|
5c0555cddc6d110720546d6048c55dea1082b070 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH9/EX9.1/example9_1.sce | 35a20826ea203c78c3005bd57ead820844b0e98c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | example9_1.sce | //Chapter 9
//Example 9_1
//Page 214
clear;clc;
d=200;
r=1.2/2;
loop_l=(1e-7)*(1+4*log(d/r));
printf("Loop indictance per length of the line = %.2f*10^-7 H \n\n", loop_l*1e7 );
printf("Loop indictance per km of the line = %.3f mH \n\n", loop_l*1e6 );
|
f633b0e08554e477f73dab3542ef4bb1e046e638 | 881e0bcc7118244a24f736786ac36140acfb885e | /yeast/results/GAssist-ADI-C.yeast-4/result8s0.tst | db243b8061af46ca491deec5264f8d72c0b79fce | [] | no_license | woshahua/Experiment_File | 3e34e5a4a622d6d260fbdf8d5ef2711712aad9bc | 6a139cd3f779373799cb926ba90d978235b0de0d | refs/heads/master | 2021-01-01T06:57:13.285197 | 2017-07-28T08:17:38 | 2017-07-28T08:17:38 | 97,557,409 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,585 | tst | result8s0.tst | @relation yeast-4
@attribute Mcg real [0.11, 1.0]
@attribute Gvh real [0.13, 1.0]
@attribute Alm real [0.21, 1.0]
@attribute Mit real [0.0, 1.0]
@attribute Erl real [0.5, 1.0]
@attribute Pox real [0.0, 0.83]
@attribute Vac real [0.0, 0.73]
@attribute Nuc real [0.0, 1.0]
@attribute Class {MIT, NUC, CYT, ME1, ME2, ME3, EXC, VAC, POX, ERL}
@inputs Mcg, Gvh, Alm, Mit, Erl, Pox, Vac, Nuc
@outputs Class
MIT MIT
CYT NUC
NUC MIT
ME1 ME1
ME3 ME3
MIT MIT
CYT CYT
MIT MIT
MIT CYT
MIT MIT
MIT MIT
NUC NUC
MIT CYT
NUC CYT
CYT NUC
NUC NUC
NUC NUC
ME3 ME3
CYT CYT
POX CYT
CYT CYT
MIT MIT
CYT CYT
ME3 ME3
CYT CYT
CYT ME3
CYT CYT
ME1 ME3
NUC CYT
CYT NUC
CYT CYT
NUC CYT
NUC CYT
NUC MIT
NUC NUC
ME3 ME3
MIT CYT
NUC NUC
CYT CYT
ME3 NUC
ME2 ME3
CYT CYT
MIT CYT
ME3 ME3
MIT MIT
ME2 ME3
NUC NUC
MIT MIT
MIT CYT
MIT CYT
MIT MIT
MIT MIT
MIT CYT
MIT MIT
NUC NUC
MIT MIT
NUC CYT
NUC CYT
NUC NUC
NUC NUC
ME2 MIT
MIT CYT
CYT CYT
ME3 ME3
MIT NUC
MIT NUC
EXC EXC
EXC EXC
ME3 ME3
VAC ME3
ME3 ME3
CYT CYT
CYT CYT
ME3 ME3
NUC CYT
NUC CYT
NUC CYT
NUC ME3
NUC CYT
CYT CYT
NUC CYT
CYT CYT
CYT MIT
CYT NUC
CYT NUC
CYT EXC
CYT NUC
CYT MIT
CYT CYT
CYT CYT
ME1 ME1
CYT CYT
NUC CYT
ME2 ME3
NUC CYT
NUC NUC
ME3 ME3
ME3 ME3
NUC NUC
NUC NUC
NUC CYT
NUC NUC
NUC NUC
NUC NUC
CYT NUC
CYT NUC
MIT MIT
EXC MIT
CYT NUC
NUC CYT
CYT CYT
NUC NUC
CYT CYT
CYT CYT
NUC NUC
CYT CYT
CYT CYT
MIT MIT
NUC NUC
VAC CYT
CYT ME3
ME2 ME1
NUC NUC
NUC MIT
ME3 ME3
CYT MIT
ME3 ME3
NUC MIT
ME3 ME3
NUC NUC
ME1 EXC
ME1 ME1
ME3 ME3
NUC NUC
CYT CYT
CYT CYT
CYT CYT
CYT NUC
NUC CYT
CYT NUC
CYT MIT
CYT CYT
CYT NUC
CYT CYT
EXC MIT
NUC CYT
VAC ME3
POX ME1
|
18a5366fdec83cdd24f28282d7e72592452d8780 | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3876/CH9/EX9.9/Ex9_9.sce | 2cce2a7c9a8ffa99a4792d84b0857bf28f0f2556 | [] | no_license | psinalkar1988/Scilab-TBC-Uploads-1 | 159b750ddf97aad1119598b124c8ea6508966e40 | ae4c2ff8cbc3acc5033a9904425bc362472e09a3 | refs/heads/master | 2021-09-25T22:44:08.781062 | 2018-10-26T06:57:45 | 2018-10-26T06:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | sce | Ex9_9.sce |
//Chapter 9 Ionic Equilibria and Buffer Action
clc;
clear;
//Initialisation of Variables
c= 0.010 //M
Ksp= 1.56*10**-10
M= 108 //gms
C= 10**-3 //M
//CALCULATIONS
K= Ksp/C
m= M*K
m1= M*c
//RESULTS
mprintf("The atomic weight of silver being %d, the weight of silver remaining \n in solution is %.2e gram",M,m)
mprintf("\nThe original quantity of silver in the solution was %.2e grams",m1)
|
afdeec741e5c5b8bb83f072a80e4273fe6727412 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3515/CH1/EX1.25/Ex_1_25.sce | 4a347f2585409f1301ae00e06a17128706ea7409 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 759 | sce | Ex_1_25.sce | // Exa 1.25
format('v',7);
clc;
clear;
close;
// Given data
R1= 9;// in kΩ
R2= 1;// in kΩ
R3= 2;// in kΩ
R4= 3;// in kΩ
// The output voltage, vo1= (1+R1/R2)*va
vo1BYva= (1+R1/R2);// (i)
// Voltage at node va= R4*v1/(R3+R4)
vaBYv1= R4/(R3+R4);// (ii)
// From (i) and (ii)
vo1BYv1= vo1BYva*vaBYv1;// (iii)
// The output voltage, vo2= (1+R1/R2)*va
vo2BYva= (1+R1/R2);// (iv)
// Voltage at node va= R3*v2/(R3+R4)
vaBYv2= R3/(R3+R4);// (v)
// From (i) and (ii)
vo2BYv2= vo2BYva*vaBYv2;// (iii)
// The output voltage, vo3= (-R1/R2)*v3
vo3BYv3= (-R1/R2);// (i)
// Total output vo= vo1 + vo2 + vo3
disp("Total voltage is "+string(vo1BYv1)+" v1 + "+string(vo2BYv2)+" v2 "+string(vo3BYv3)+" v3")
|
0664e6bcb4d765375592876183c24b5fe3514efc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2837/CH21/EX21.5/Ex21_5.sce | 953bae2a884ff36564746273231d8715a482e540 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 468 | sce | Ex21_5.sce | clc
clear
//Initalization of variables
v1=1234
v2=532
kb=0.92
alp=20 //degrees
ve=900
r=2200 //ft/s
g=32.17 //ft/s^2
J=778
w=67000
//calculations
vr=sqrt(v1^2 +v2^2)
vr2=vr*kb
vrc=vr2*cosd(alp)
reheat=(vr^2 - vr2^2 )/(2*g*J)
v22=sqrt((vrc-ve)^2 +(vr2*sind(alp))^2)
ein=r^2 /(2*g*J)
eout=w/J + v22^2 /(2*g*J)
re2=ein-eout
//results
printf("\n In case 1, Blade reheat = %.2f Btu/lb",reheat)
printf("\n In case 2, Blade reheat = %.1f Btu/lb",re2)
|
b342daf2069d0c57bbec69520e9e23002aab3eb1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH6/EX6.19/Ex6_19.sce | b8c55a2195ef04dd3de6f9859f1f80aa02ae3f14 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 491 | sce | Ex6_19.sce | clear;
clc;
//Example 6.19
Idss=12;
Vp=-4;
Rl=10;
//lambda=y
y=0.01;
Av=0.9;
//gm=(-2*Idss/Vp)*(1-Vgs/Vp)
gm=2;
Vgs=(1+gm*Vp/(2*Idss))*Vp;
printf('\ngate to source voltage=%.3f V\n',Vgs)
Idq=Idss*(1-Vgs/Vp)^2;
printf('\nquiescent drain current=%.3f mA\n',Idq)
Rs=(-Vgs+10)/Idq;
printf('\nRs=%.2f KOhm\n',Rs)
ro=(1/(y*Idq));
printf('\noutput resistance=%.3f KOhm\n',ro)
x=Rl*ro/(Rl+ro);
t=x*Rs/(x+Rs);
Av=gm*t/(1+gm*t);
printf('\nsmall signal voltage gain=%.3f \n',Av)
|
3c6cb5ec49c024520b0e64da78d51b28526678ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH6/EX6.26/exa_6_26.sce | cec9069fea005aca80a62d098f9c703525eff4a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 221 | sce | exa_6_26.sce | // Exa 6.26
clc;
clear;
close;
// Given data
V_P= -5;// in V
I_D= 4;// in mA
V_GS= -2;// in V
// Formula I_D= I_DSS*(1-V_GS/V_P)^2
I_DSS= I_D/(1-V_GS/V_P)^2;// in mA
disp(I_DSS,"The value of I_DSS in mA is :")
|
47297bd611a60976f60dda472f2689e22e85884b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH15/EX15.1/Ex15_1.sce | 9d07ee2dbe26a75f1737b5a257369059230d7634 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 122 | sce | Ex15_1.sce | clc;
V1=2;
V2=[4 0];
Vdiff1=V2(1,1)-V1;
Vdiff2=V2(1,2)-V2;
disp('V',Vdiff1,"Vdiff1=");
disp('V',Vdiff2,"Vdiff2=");
|
52e5803359b9f6c77ce78028c66446373d0c40cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH4/EX4.3f/eg4_3f.sce | a71d156123e28422bd58af3056c542c3a58d83a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 260 | sce | eg4_3f.sce | disp(0.1/0.3875, "probability that B =0 given G=1 ");
disp(0.175/0.3875, "probability that B =1 given G=1 ");
disp(0.1125/0.3875, "probability that B =2 given G=1 ");
disp(0/0.3875, "probability that B =3 given G=1 ");
//The values are taken from Table 4.2 |
021a9d8ead3831ae9b12df35aa674db6a5e334ff | 47adabef6eb8924aff50314b05cfd89f90e19aec | /tests/unit_tests/scilab_sum.tst | c91b7e494064e4e7ce3cd23571b7e3a0fecf9555 | [
"BSD-3-Clause"
] | permissive | sengupta/scilab-http | acf41286543dfadb62bfbf1fc74d19cd6ec65815 | 114ac7ab3a55e08399a82e8a1c084bc23cace3a3 | refs/heads/master | 2021-03-12T20:38:08.900774 | 2012-04-03T13:14:33 | 2012-04-03T13:14:33 | 3,886,870 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 386 | tst | scilab_sum.tst | // This file is released under the 3-clause BSD license. See COPYING-BSD.
//=================================
// load toolbox_skeleton
if ~isdef('scilab_sum') then
root_tlbx_path = SCI+'\contrib\toolbox_skeleton\';
exec(root_tlbx_path + 'loader.sce',-1);
end
//=================================
if scilab_sum(3,5) <> 8 then pause,end
//=================================
|
137960805b2090f786ee6a2b60a1794738945da0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH3/EX3.6/exa_3_6.sce | f19443028261eeb5f7bac5ccb4fc1a0fdbd0373d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | exa_3_6.sce | // Exa 3.6
clc;
clear;
close;
//given data
R1=330;// in ohm
R_f=3.3;// in k ohm
R_f=R_f*10^3;// in ohm
R_in= 2;// in M ohm
R_in=R_in*10^6;// in ohm
R_out=75;// in ohm
A=2*10^5;
f_o=5;// in Hz
B= R1/(R1+R_f);
AB= A*B;
A_f = -R_f/R1;
disp(A_f,"Voltage gain")
R_inf= R1;
disp(R_inf,"Input Resistance in ohm")
R_outf= R_out/(1+A*B);// in ohm
disp(R_outf,"Output Resistance in ohm");
f_f= f_o*(1+A*B);// in Hz
disp(f_f*10^-3,"Bandwidth in kHz");
|
c10d68f9a4c1a2f4f06bd5af72fdddf40dce7e43 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH5/EX5.15/15.sce | d30f0bb73a12d525c4ca49476b3334c2b2628c0e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 920 | sce | 15.sce | clc
clear
//Input data
Px=16 //Pressure before the shock in kPa
Poy=70 //Stagnation pressure after shock in kPa
To=300+273 //Stagnation temperature in K
k=1.4 //Adiabatic constant
//Calculation
p1=Poy/Px //Pressure ratio
Mx=1.735 //Mach number upstream of shock
My=0.631 //Mach number downstream of shock
p2=0.84 //Ratio of stagnation pressures after and before shock from gas tables
t1=1.483 //Temperature ratio after and before shock from gas tables
Tx=To/(1+((k-1)/2)*Mx^2) //Temperature upstream of shock in K
Ty=Tx*t1 //Temperature downstream of shock in K
Pox=Poy/p2 //Stagnation pressure before shock in kPa
//Output
printf('(A)Mach number of the tunnal is Mx=%3.3f (My=%3.3f)\n (B)Upstream of the tube:\n Static temperature is %3i K\n Total pressure is %3.1f kPa\n (C)Downstream of the tube:\n Static temperature is %3i K\n Total pressure is %3i kPa',Mx,My,Tx,Pox,Ty,Poy)
|
3d01b88f3b92f3706f45419ef3add52df76973e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2409/CH12/EX12.15/Ex12_15.sce | bf4188e44ec5d35dc83222ede65a70f7e6aa2df2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 399 | sce | Ex12_15.sce |
//Variable Declaration
EIRP=56 //Equivalent Isotropically radiated power(dBW)
BO=6 //Output Backoff(dB)
TFL=2 //Transmitter feeder loss(dB)
GT=50 //Antenna gain(dB)
//Calculation
PTWTA=EIRP-GT+TFL //Power output of TWTA(dBW)
PTWTAS=PTWTA+BO //Saturated power output of TWTA(dBW)
//Result
printf("Power output of the TWTA required for full saturated EIRP is %.f dBW",PTWTAS)
|
37283436a52003c8f3eb4472c3f11118860348a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH12/EX12.5/Example12_5.sce | 96b2d682717ccaf2083f8b1f12f0ac1a65793596 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 532 | sce | Example12_5.sce | //Example 12.5
clear;
clc;
Vclamp=5;
n=12;
f0step=1;
Vz5=3.6;
R1=20*10^3;
R2=R1;
R3=6.2*10^3;
f0FSR=(2^n)*f0step;
iO=100*10^(-6);
C=(iO*(R2/R1))/(4*Vclamp*f0FSR);
printf("Designed Digitally Programmable triangular or square wave oscillator");
printf("\nR1=%.f kohms",R1*10^(-3));
printf("\nR2=%.f kohms",R2*10^(-3));
printf("\nR3=%.1f kohms",R3*10^(-3));
printf("\nC=%.2f nF",C*10^9);
printf("\nUse 1.0 nF, which is more easily available, and raise R1 to 24.3 kohms,1 percent"); |
d5b3d11c1e521969f38f6e561e927cda00b488e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1682/CH3/EX3.4/Exa3_4.sce | b73ba139d71c7cf6d3bc895ebc699c31e40fac73 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 239 | sce | Exa3_4.sce | //Exa3_4
clc;
clear;
close;
//given data is :
F=500000;//in rupees
n=15;//in years
i=18;//% per annum
A=F*((i/100)/((1+i/100)^n-1));
disp("The annual equal ammount which must be deposited for 15 years is : "+string(A)+" Rupees."); |
afbb9fd19c68cefea564c87dc855a8cee59851c5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1586/CH5/EX5.3/EXP5_3.sce | e4e4e0d4f7e6384dc0ced1d0b909db85eb6aa9b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 896 | sce | EXP5_3.sce | clc;funcprot(0);//EXAMPLE 5.3
// Initialisation of Variables
X=0.1;.......//Thickness of SIlicon Wafer in cm
n=8;.......//No. of atoms in silicon per cell
ni=1;..........//No of phosphorous atoms present for every 10^7 Si atoms
ns=400;.......//No of phosphorous atoms present for every 10^7 Si atoms
ci1=(ni/10^7)*100;..........//Initial compositions in atomic percent
cs1=(ns/10^7)*100;...........//Surface compositions in atomic percent
G1=(ci1-cs1)/X;.....//concentration gradient in percent/cm
a0=1.6*10^-22;........//The lattice parameter of silicon
v=(10^7/n)*a0;......//volume of the unit cell in cm^3
ci2=ni/v;..........//The compositions in atoms/cm^3
cs2=ns/v;..........//The compositions in atoms/cm^3
G2=(ci2-cs2)/X;.....//concentration gradient in percent/cm^3.cm
disp(G1,"concentration gradient in percent/cm:")
disp(G2,"concentration gradient in percent/cm^3.cm:")
|
08bdb97fbbc1bdc4c2cc045f149d8e109c0bb887 | 8458ae69238b4e9e89cec1f6bdb30f6d009e3053 | /plots/PlotFrequencyResponse.sci | c23fea2e15c7a7b65be88dceddd18ce172e7103d | [] | no_license | keigorori/signal_processing | aa5f18bcb2be385ce3a4fef208d29b05a036faf9 | a30e41e3fd2c3287af43e0d4bd554020a5055ff3 | refs/heads/master | 2020-04-05T10:45:01.018660 | 2019-02-08T02:08:59 | 2019-02-08T02:08:59 | 156,809,290 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | sci | PlotFrequencyResponse.sci | ////////////////////////
// 周波数応答のプロット
////////////////////////
function PlotFrequencyResponse(frequencyResponse, frequencyGrid, handle, style, diplayRect)
// パワースペクトル
fr_dB = 20*log10(frequencyResponse);
// プロット
scf(handle);
plot2d("ln", frequencyGrid, fr_dB(1:size(frequencyGrid,'c')), style, rect=displayRect);
xtitle('周波数応答', '[Hz]', '[dB]');
endfunction
|
3fc50d8864b30bcfbc9d442931707d18b170cb8b | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH2/EX2.3/2_3.sce | 5ab99da5c78bc2618240d3eb398120129e1bca9c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | 2_3.sce | clear; clc; close;
E = 10; //volts
R = 500; //ohms
Vdq = 0; //volts
Idq = 20*10^(-3); //amperes
diary('C:\Users\DELL\Desktop\intern\chapter_2\2_3.txt');
disp(Vdq,'Voltage at Q-point is :');
disp(Idq,'Current at Q-point is :');
|
60acf944dd06d6a6172c3b5474b4f064199bfd6f | ac66d3377862c825111275d71485e42fdec9c1bd | /Resources/res/map/map1305.sce | 127e6e86ecfd5e72676710c42c9c28f9b2f9e580 | [] | no_license | AIRIA/CreazyBomber | 2338d2ad46218180f822682d680ece3a8e0b46c3 | 68668fb95a9865ef1306e5b0d24fd959531eb7ad | refs/heads/master | 2021-01-10T19:58:49.272075 | 2014-07-15T09:55:00 | 2014-07-15T09:55:00 | 19,776,025 | 0 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 2,935 | sce | map1305.sce | <?xml version="1.0" encoding="UTF-8"?>
<Project Name="map1305" Width="13" Height="13" CellSize="40" BackgroundSize="1" Background="11plus.png">
<Cell Name="贝壳" X="3" Y="1" />
<Cell Name="木箱" X="4" Y="1" />
<Cell Name="贝壳" X="6" Y="1" />
<Cell Name="企鹅(怪)" X="9" Y="1" arg0="15" />
<Cell Name="贝壳" X="10" Y="1" />
<Cell Name="食人鱼-右" X="2" Y="2" arg0="3" arg1="1.00" />
<Cell Name="冰墙" X="4" Y="2" />
<Cell Name="出生点" X="5" Y="2" />
<Cell Name="冰墙" X="6" Y="2" />
<Cell Name="木箱" X="7" Y="2" />
<Cell Name="冰墙" X="8" Y="2" />
<Cell Name="冰墙" X="10" Y="2" />
<Cell Name="木箱" X="11" Y="2" />
<Cell Name="木箱" X="1" Y="3" />
<Cell Name="贝壳" X="2" Y="3" />
<Cell Name="木箱" X="9" Y="3" />
<Cell Name="贝壳" X="10" Y="3" />
<Cell Name="冰墙" X="2" Y="4" />
<Cell Name="木箱" X="3" Y="4" />
<Cell Name="贝壳" X="4" Y="4" />
<Cell Name="贝壳" X="5" Y="4" />
<Cell Name="冰墙" X="6" Y="4" />
<Cell Name="食人鱼-左" X="8" Y="4" arg0="2" arg1="1.00" />
<Cell Name="贝壳" X="9" Y="4" />
<Cell Name="冰墙" X="10" Y="4" />
<Cell Name="飞鱼(怪)" X="11" Y="4" arg0="14" />
<Cell Name="贝壳" X="1" Y="5" />
<Cell Name="贝壳" X="6" Y="5" />
<Cell Name="贝壳" X="7" Y="5" />
<Cell Name="贝壳" X="11" Y="5" />
<Cell Name="木箱" X="1" Y="6" />
<Cell Name="冰墙" X="2" Y="6" />
<Cell Name="食人鱼-左" X="4" Y="6" arg0="2" arg1="1.00" />
<Cell Name="企鹅(怪)" X="5" Y="6" arg0="15" />
<Cell Name="冰墙" X="6" Y="6" />
<Cell Name="冰墙" X="8" Y="6" />
<Cell Name="贝壳" X="9" Y="6" />
<Cell Name="冰墙" X="10" Y="6" />
<Cell Name="贝壳" X="1" Y="7" />
<Cell Name="木箱" X="2" Y="7" />
<Cell Name="贝壳" X="3" Y="7" />
<Cell Name="贝壳" X="7" Y="7" />
<Cell Name="贝壳" X="9" Y="7" />
<Cell Name="企鹅(怪)" X="11" Y="7" arg0="15" />
<Cell Name="飞鱼(怪)" X="1" Y="8" arg0="14" />
<Cell Name="冰墙" X="2" Y="8" />
<Cell Name="冰墙" X="4" Y="8" />
<Cell Name="贝壳" X="5" Y="8" />
<Cell Name="冰墙" X="6" Y="8" />
<Cell Name="冰墙" X="8" Y="8" />
<Cell Name="食人鱼-左" X="10" Y="8" arg0="2" arg1="1.00" />
<Cell Name="贝壳" X="2" Y="9" />
<Cell Name="贝壳" X="5" Y="9" />
<Cell Name="木箱" X="6" Y="9" />
<Cell Name="贝壳" X="7" Y="9" />
<Cell Name="木箱" X="1" Y="10" />
<Cell Name="食人鱼-右" X="2" Y="10" arg0="3" arg1="1.00" />
<Cell Name="冰墙" X="4" Y="10" />
<Cell Name="冰墙" X="6" Y="10" />
<Cell Name="冰墙" X="8" Y="10" />
<Cell Name="通关点-1" X="9" Y="10" />
<Cell Name="冰墙" X="10" Y="10" />
<Cell Name="木箱" X="11" Y="10" />
<Cell Name="贝壳" X="3" Y="11" />
<Cell Name="海豹(怪)" X="5" Y="11" arg0="16" />
<Cell Name="贝壳" X="7" Y="11" />
<Cell Name="木箱" X="8" Y="11" />
<Cell Name="木箱" X="9" Y="11" />
</Project> |
40aa2d0c22b96fe1f2c7fffe72481dc5387d81be | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH24/EX24.3/Example24_3.sce | 96520138e76b691274a9977da0f93dfb22bf3f25 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 852 | sce | Example24_3.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 17: ELECTRIC POWER SUPPLY SYSTEMS
// EXAMPLE : 17.3 :
// Page number 424
clear ; clc ; close ; // Clear the work space and console
// Given data
PF = 0.95 // Lagging power factor
// Calculations
P_1 = 1.0 // Power in terms of V*I_1
P_2 = 2.0*PF**2 // Power in terms of V*I_1
P_additional_percentage = (P_2-P_1)/P_1*100 // Percentage additional power transmitted in a 3-phase 3-wire system
// Results
disp("PART II - EXAMPLE : 17.3 : SOLUTION :-")
printf("\nPercentage additional power transmitted in a 3-phase 3-wire system = %.f percent", P_additional_percentage)
|
a751b7cc928679d09ae7c30b372ba0a310a7cec7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH13/EX13.63/Ex13_63.sce | 3cf4441efc4a66c29fea8bb9f655285ed38799b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 279 | sce | Ex13_63.sce | //EX13_63 Pg-35
clc
clear
printf(" Addition of four hexadecimal numbers")
printf("\n Therefore (4FB)_16+(75D)_16+(A12)_16+(C39)_16 = ")
x=['4FB']
y=['75D']
u=['A12']
v=['C39']
x1=hex2dec(x)
y1=hex2dec(y)
u1=hex2dec(u)
v1=hex2dec(v)
z=x1+y1+u1+v1
a=dec2hex(z)
printf("%s",a)
|
bb4bd2861a564ebe0639439e4ae07e40e71d2862 | 449d555969bfd7befe906877abab098c6e63a0e8 | /995/CH4/EX4.10/Ex4_10.sce | c407cacd2428e3cb68bbca41e0b10112af00aea7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 195 | sce | Ex4_10.sce | //Ex:4.10
clc;
clear;
close;
L=1*10^-3;
f1=100;
f2=10000;
X_L1=(2*%pi*f1*L);
X_L2=(2*%pi*f2*L);
printf("Reactance at 100Hz = %f ohm",X_L1);
printf("\nReactance at 10kHz = %f ohm",X_L2); |
e87e8bcdc1a531b9dac1df8a26762a04c6621800 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3375/CH9/EX9.9/Ex9_9.sce | ed013c901318dacbf99e7274808e50cf89aff9b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 288 | sce | Ex9_9.sce | //Example 9.9
//Student's t-distribution
//Page No. 553
clc;clear;close;
n=4;
t=3.18; //from table A2 in book
x=[65.3,68.2,67.7,66.4];
x_avg=(x(1)+x(2)+x(3)+x(4))/4;
sigma=1.308;
printf('\nx = %.1f +- %.2f\nx_avg = %.1f +- %.3f',x_avg,t*sigma,x_avg,t*sigma/sqrt(n));
|
b0bd5574700f44b5d7fa4e2c40818a847b5a7408 | 449d555969bfd7befe906877abab098c6e63a0e8 | /28/CH7/EX7.3/ex7_3.sce | d1f41c1f659be3966b6e88ef3003f3324e5c4b94 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 156 | sce | ex7_3.sce | s=%s;
syms k
H=syslin('c',1+(k/(s*(s+1)*(s+2))))
evans(H,5)
d=derivat(H)
p=numer(d)
a=roots(p) // a=breakaway point
disp(a,"breakaway ppoint=")
|
c6281a0f2b6cc5151a9142964eadd4deb1326a8f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH2/EX2.21/21.sce | 6da24af27ccd5e46b340c2e25b9ece2e351a61ed | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 441 | sce | 21.sce | clc
// Given that
lambda = 5890 // Wavelength in angstrom
r = 60 // Angle of Refraction in degree
mu = 1.5 // Refractive index of material
n = 1 // order of fringe
// Sample Problem 21 on page no. 108
printf("\n # PROBLEM 21 # \n")
printf("\n Standard formula used \n 2*mu*t*cos(r) = n*lambda\n")
t = n*lambda*1e-10/(2*mu*cos(r*%pi/180)) // Calculation of thickness of sheet
printf("\n Thickness of sheet is %e mm.", t*1e3)
|
8fca58f657110478103aaf279ec88257aabeae3d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1199/CH2/EX2.38/2_38.sci | c27ae6688e61dc9197d6c1bbb12c57ce6e087e72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 291 | sci | 2_38.sci | // 2.38
clc;
b=0.02;
t=0.004;
I=(1/12)*b*t^3;
F=25;
l=0.25;
E=200*10^9;
x=(F*l^3)/(3*E*I);
printf("deflection=%.2f m",x)
DpF=x/F;
Se=DpF*0.5*1000;
Re=(10/1000)*(2/10);
F_min=Re/Se;
F_max=10/Se;
printf("\nminimum force=%.2f N",F_min)
printf("\nmaximum force=%.2f N",F_max)
|
d33c05cd57ef751c4665f565a797b7caf77ebf3c | 9224090b07cb3f466fe72819cf90ca0c4dedc901 | /Exercise 9/Exercise 9b.sce | 6f83ec9c732fe3b727c120fa94fbbe00bad304c2 | [] | no_license | MGYBY/advanced_ocean_modelling | 8c383b09f4077174559bd7964062625012026fa0 | 848f0f4d616d472021c31582b64557f04067ce74 | refs/heads/main | 2023-07-14T14:37:57.714203 | 2021-08-20T20:13:49 | 2021-08-20T20:13:49 | 398,386,684 | 4 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 2,009 | sce | Exercise 9b.sce | //======================================
// Exercise 9: Convective Entrainment
//======================================
// This script produces an animation of float movements
// Author: Jochen Kaempf, March 2015 (update)
f = gcf(); f.figure_size = [1000,400]; scf(0);
// read input data
trx1=read("TRx.dat",-1,3000); // x-coordinates of floats
try1=read("TRz.dat",-1,3000); // z-coordinates of floats
rho1=read("rho.dat",-1,201); // density field
[ntot nx] = size(rho1); x = (0:5:1000)'; z = (0:5:100)';
[ntot ntra] =size(trx1);
time = 0.0;
for n = 1:ntot // animation loop
time = n*3; // time in minutes
// grab data block
itop = (n-1)*21+1; ibot = itop+20;
rho = rho1(itop:ibot,1:201)';
// grab data line
trax = trx1(n,1:ntra); tray = try1(n,1:ntra);
drawlater; clf();
// draw floats
plot2d(trax,-tray+2,-3);//
m = gce(); m.children.mark_size = 0.1;
xset("fpf"," "); col(1:10) = 4;
contour2d(x,-z,rho,10,col);
// specify graph & axis properties
a = gca(); a.font_size = 3; a.data_bounds = [0,-100;1000,0];
a.auto_ticks = ["off","off","on"]; a.sub_ticks = [3,3];
a.x_ticks = tlist(["ticks", "locations","labels"],..
[0 200 400 600 800 1000], ["0" "200" "400" "600" "800" "1000"]);
a.y_ticks = tlist(["ticks", "locations","labels"],..
[-100 -80 -60 -40 -20 0], ["-100" "-80" "-60" "-40" "-20" "0"]);
title("Time = "+string(0.1*int(10*time))+" min","fontsize",4,'position',[400 0]); // add title
xstring(470, -15,"x (m)"); // add x label
// change font size & set textcolor to black
txt=gce(); txt.font_size = 4; txt.font_foreground = -1;
xstring(5, -54,"z (m)"); // add z label
txt=gce(); txt.font_size = 4; txt.font_foreground = -1;
drawnow;
// save frames as sequential GIF files (optional)
//if n < 10 then
// xs2gif(0,'ex100'+string(n)+'.gif')
//else
// if n < 100 then
// xs2gif(0,'ex10'+string(n)+'.gif')
// else
// xs2gif(0,'ex1'+string(n)+'.gif')
// end
//end
end // end reference for animation loop
|
d82207b935be1c3d3ccbc06ceaef5fe03c6fce1e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH11/EX11.5/CH11Exa5.sce | ad08227e9a93b5c441828634144d5bb98b296f2b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 992 | sce | CH11Exa5.sce | // Scilab code Exa11.5 : : Page-536 (2011)
clc; clear;
B = 1.4; // Magnetic field, tesla
R = 88e-002; // Radius of the orbit, metre
q = 1.6023e-019; // Charge of the deutron, C
M_d = 2.014102*1.66e-27; // Mass of the deutron, Kg
M_He = 4.002603*1.66e-27; // Mass of the He ion, Kg
E = B^2*R^2*q^2/(2*M_d*1.6e-13); // Energy og the emerging deutron, mega electron volts
f = B*q/(2*%pi*M_d)*10^-6; // Frequency of the deutron voltage, mega cycles per sec
B_He = 2*%pi*M_He*f*10^6/(2*q); // Magnetic field required for He(++) ions, weber per square metre
B_change = B-B_He; // Change in magnetic field, tesla
printf("\nThe energy of the emerging deutron = %4.1f MeV\nThe frequency of the dee voltage = %5.2f MHz\nThe change in magnetic field = %4.2f tesla", E, f, B_change);
// Result
// The energy of the emerging deutron = 36.4 MeV
// The frequency of the dee voltage = 10.68 MHz
// The change in magnetic field = 0.01 tesla |
148bd3089c5045baf22bada69bf6021c4c67f805 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH5/EX5.10/example10.sce | ead15a8d9aa3d52929dd81467349888a36565abd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 730 | sce | example10.sce | clc
clear
//input data
R=0.5//Degree of reaction
P0=2.2//Inlet pressure in bar
T0=443//Inlet temperature in K
N=2400//Rotor running speed in rpm
Dm=0.5//Rotor mean diameter in m
a1=36//Rotor inlet angle in degree
a2=19//Stator exit angle in degree
ns=0.88//Stage efficiency
m=1//Mass flow rate of steam in kg/s
//calculations
b2=a1//Outlet angle of the rotor blade in degree
b1=a2//Inlet angle of the rotor blade in degree
U=(3.1415*Dm*N)/60//Mean blade speed in m/s
Ca=(2*U*R)/(tand(b2)-tand(b1))//Axial velocity in m/s
W=m*U*Ca*(tand(a1)+tand(a2))*10^-3//Power output in kW
dh=W/ns//Stage enthalpy drop in kJ/kg
//output
printf('(a)Power output is %3.2f kW\n(b)Stage enthalpy drop is %3.2f kJ/kg',W,dh)
|
7f77f9914b637b692950f1faea9984fdf3ce0328 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/MP82VCF/ATWM1_Working_Memory_MEG_MP82VCF_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce | 1e14d3da3284d1df306afc48511e439ef302a84d | [] | 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,615 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_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;
44 62 292 292 399 125 2042 2992 2592 fixation_cross gabor_174 gabor_026 gabor_111 gabor_054 gabor_174_alt gabor_026_alt gabor_111 gabor_054 "1_1_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_174_026_111_054_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_054_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_054_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_163 gabor_085 gabor_005 gabor_033 gabor_163 gabor_085 gabor_005_alt gabor_033_alt "1_2_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_163_085_005_033_target_position_1_2_retrieval_position_1" gabor_163_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_088 gabor_136 gabor_028 gabor_055 gabor_088 gabor_136_alt gabor_028_alt gabor_055 "1_3_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_088_136_028_055_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2042 fixation_cross gabor_131 gabor_051 gabor_098 gabor_025 gabor_131 gabor_051_alt gabor_098_alt gabor_025 "1_4_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_131_051_098_025_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_156 gabor_111 gabor_069 gabor_128 gabor_156_alt gabor_111_alt gabor_069 gabor_128 "1_5_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_156_111_069_128_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_175_framed blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2192 fixation_cross gabor_036 gabor_064 gabor_010 gabor_097 gabor_036_alt gabor_064_alt gabor_010 gabor_097 "1_6_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_036_064_010_097_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2592 fixation_cross gabor_067 gabor_011 gabor_095 gabor_143 gabor_067 gabor_011_alt gabor_095_alt gabor_143 "1_7_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_067_011_095_143_target_position_1_4_retrieval_position_1" gabor_067_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1842 2992 2192 fixation_cross gabor_121 gabor_104 gabor_053 gabor_083 gabor_121_alt gabor_104 gabor_053_alt gabor_083 "1_8_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2200_gabor_patch_orientation_121_104_053_083_target_position_2_4_retrieval_position_1" gabor_121_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2542 fixation_cross gabor_002 gabor_034 gabor_055 gabor_170 gabor_002 gabor_034_alt gabor_055_alt gabor_170 "1_9_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2550_gabor_patch_orientation_002_034_055_170_target_position_1_4_retrieval_position_1" gabor_142_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_142_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_156 gabor_049 gabor_175 gabor_030 gabor_156 gabor_049 gabor_175_alt gabor_030_alt "1_10_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_156_049_175_030_target_position_1_2_retrieval_position_2" gabor_circ gabor_099_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_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;
44 62 292 292 399 125 2242 2992 1992 fixation_cross gabor_151 gabor_133 gabor_002 gabor_108 gabor_151_alt gabor_133 gabor_002_alt gabor_108 "1_11_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2000_gabor_patch_orientation_151_133_002_108_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_108_framed blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_125 gabor_176 gabor_094 gabor_061 gabor_125_alt gabor_176 gabor_094 gabor_061_alt "1_12_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_125_176_094_061_target_position_2_3_retrieval_position_2" gabor_circ gabor_036_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1792 2992 2242 fixation_cross gabor_032 gabor_103 gabor_164 gabor_086 gabor_032 gabor_103_alt gabor_164 gabor_086_alt "1_13_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2250_gabor_patch_orientation_032_103_164_086_target_position_1_3_retrieval_position_2" gabor_circ gabor_057_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_057_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_165 gabor_180 gabor_101 gabor_029 gabor_165 gabor_180_alt gabor_101 gabor_029_alt "1_14_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_165_180_101_029_target_position_1_3_retrieval_position_1" gabor_165_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1742 2992 2192 fixation_cross gabor_001 gabor_145 gabor_083 gabor_022 gabor_001 gabor_145_alt gabor_083_alt gabor_022 "1_15_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2200_gabor_patch_orientation_001_145_083_022_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_128_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_128_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 2292 fixation_cross gabor_102 gabor_021 gabor_085 gabor_040 gabor_102_alt gabor_021_alt gabor_085 gabor_040 "1_16_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_102_021_085_040_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_085_framed gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_038 gabor_105 gabor_015 gabor_175 gabor_038_alt gabor_105_alt gabor_015 gabor_175 "1_17_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_038_105_015_175_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_128_framed blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 1992 fixation_cross gabor_131 gabor_004 gabor_053 gabor_073 gabor_131 gabor_004_alt gabor_053_alt gabor_073 "1_18_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_131_004_053_073_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_023_framed blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 2092 fixation_cross gabor_078 gabor_140 gabor_108 gabor_029 gabor_078_alt gabor_140 gabor_108_alt gabor_029 "1_19_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_078_140_108_029_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_166_framed blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_166_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 1942 fixation_cross gabor_155 gabor_120 gabor_103 gabor_014 gabor_155_alt gabor_120 gabor_103 gabor_014_alt "1_20_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_155_120_103_014_target_position_2_3_retrieval_position_2" gabor_circ gabor_120_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2042 2992 2392 fixation_cross gabor_033 gabor_148 gabor_088 gabor_058 gabor_033_alt gabor_148 gabor_088 gabor_058_alt "1_21_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_2400_gabor_patch_orientation_033_148_088_058_target_position_2_3_retrieval_position_1" gabor_170_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_170_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_013 gabor_065 gabor_151 gabor_130 gabor_013_alt gabor_065_alt gabor_151 gabor_130 "1_22_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_013_065_151_130_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_101_framed gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_101_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2592 fixation_cross gabor_177 gabor_103 gabor_037 gabor_064 gabor_177_alt gabor_103 gabor_037 gabor_064_alt "1_23_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2600_gabor_patch_orientation_177_103_037_064_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2242 2992 2042 fixation_cross gabor_142 gabor_037 gabor_093 gabor_054 gabor_142 gabor_037 gabor_093_alt gabor_054_alt "1_24_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2250_3000_2050_gabor_patch_orientation_142_037_093_054_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_054_framed blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_054_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_147 gabor_131 gabor_023 gabor_074 gabor_147_alt gabor_131 gabor_023 gabor_074_alt "1_25_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_147_131_023_074_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_163_framed gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2292 fixation_cross gabor_058 gabor_117 gabor_170 gabor_099 gabor_058 gabor_117_alt gabor_170_alt gabor_099 "1_26_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_058_117_170_099_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_099_framed blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_099_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_089 gabor_121 gabor_175 gabor_143 gabor_089 gabor_121_alt gabor_175 gabor_143_alt "1_27_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_089_121_175_143_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_037_framed gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2192 fixation_cross gabor_021 gabor_128 gabor_079 gabor_098 gabor_021 gabor_128_alt gabor_079 gabor_098_alt "1_28_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_021_128_079_098_target_position_1_3_retrieval_position_1" gabor_021_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_012 gabor_092 gabor_061 gabor_027 gabor_012 gabor_092 gabor_061_alt gabor_027_alt "1_29_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_012_092_061_027_target_position_1_2_retrieval_position_1" gabor_012_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2142 2992 2092 fixation_cross gabor_065 gabor_174 gabor_011 gabor_128 gabor_065 gabor_174_alt gabor_011_alt gabor_128 "1_30_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2100_gabor_patch_orientation_065_174_011_128_target_position_1_4_retrieval_position_2" gabor_circ gabor_174_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_174_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2542 fixation_cross gabor_127 gabor_062 gabor_009 gabor_145 gabor_127 gabor_062_alt gabor_009_alt gabor_145 "1_31_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_127_062_009_145_target_position_1_4_retrieval_position_1" gabor_080_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_080 gabor_099 gabor_040 gabor_121 gabor_080 gabor_099 gabor_040_alt gabor_121_alt "1_32_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_080_099_040_121_target_position_1_2_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_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_099_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2392 fixation_cross gabor_134 gabor_118 gabor_047 gabor_095 gabor_134 gabor_118_alt gabor_047_alt gabor_095 "1_33_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_134_118_047_095_target_position_1_4_retrieval_position_1" gabor_180_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1992 2992 2492 fixation_cross gabor_179 gabor_018 gabor_062 gabor_132 gabor_179 gabor_018_alt gabor_062_alt gabor_132 "1_34_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2500_gabor_patch_orientation_179_018_062_132_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_062_framed gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_062_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2592 fixation_cross gabor_022 gabor_179 gabor_108 gabor_001 gabor_022 gabor_179_alt gabor_108_alt gabor_001 "1_35_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_022_179_108_001_target_position_1_4_retrieval_position_1" gabor_067_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 1992 fixation_cross gabor_176 gabor_153 gabor_094 gabor_022 gabor_176 gabor_153_alt gabor_094_alt gabor_022 "1_36_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_176_153_094_022_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_070_framed blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_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;
44 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_123 gabor_003 gabor_054 gabor_083 gabor_123_alt gabor_003 gabor_054_alt gabor_083 "1_37_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_123_003_054_083_target_position_2_4_retrieval_position_2" gabor_circ gabor_003_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 2542 fixation_cross gabor_110 gabor_021 gabor_056 gabor_003 gabor_110 gabor_021_alt gabor_056_alt gabor_003 "1_38_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_110_021_056_003_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_003_framed blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2192 2992 2492 fixation_cross gabor_153 gabor_101 gabor_023 gabor_178 gabor_153 gabor_101 gabor_023_alt gabor_178_alt "1_39_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2500_gabor_patch_orientation_153_101_023_178_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_023_framed gabor_circ blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_023_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2292 fixation_cross gabor_133 gabor_084 gabor_149 gabor_064 gabor_133_alt gabor_084 gabor_149 gabor_064_alt "1_40_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_133_084_149_064_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_149_framed gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_053 gabor_070 gabor_085 gabor_003 gabor_053_alt gabor_070_alt gabor_085 gabor_003 "1_41_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_053_070_085_003_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_142_framed blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_142_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2242 fixation_cross gabor_043 gabor_162 gabor_075 gabor_119 gabor_043 gabor_162_alt gabor_075_alt gabor_119 "1_42_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_043_162_075_119_target_position_1_4_retrieval_position_1" gabor_093_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_038 gabor_175 gabor_012 gabor_069 gabor_038 gabor_175_alt gabor_012 gabor_069_alt "1_43_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_038_175_012_069_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_152_framed gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_091 gabor_032 gabor_154 gabor_003 gabor_091_alt gabor_032_alt gabor_154 gabor_003 "1_44_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_091_032_154_003_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_003_framed blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1842 2992 2492 fixation_cross gabor_148 gabor_020 gabor_065 gabor_091 gabor_148_alt gabor_020 gabor_065_alt gabor_091 "1_45_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2500_gabor_patch_orientation_148_020_065_091_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_110_framed gabor_circ blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_110_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_151 gabor_123 gabor_063 gabor_101 gabor_151 gabor_123_alt gabor_063_alt gabor_101 "1_46_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_151_123_063_101_target_position_1_4_retrieval_position_1" gabor_011_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_173 gabor_013 gabor_119 gabor_094 gabor_173_alt gabor_013 gabor_119 gabor_094_alt "1_47_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_173_013_119_094_target_position_2_3_retrieval_position_2" gabor_circ gabor_013_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_155 gabor_004 gabor_072 gabor_111 gabor_155 gabor_004 gabor_072_alt gabor_111_alt "1_48_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_155_004_072_111_target_position_1_2_retrieval_position_2" gabor_circ gabor_004_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_111 gabor_002 gabor_161 gabor_132 gabor_111_alt gabor_002 gabor_161_alt gabor_132 "1_49_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_111_002_161_132_target_position_2_4_retrieval_position_2" gabor_circ gabor_002_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 2092 fixation_cross gabor_151 gabor_098 gabor_117 gabor_039 gabor_151_alt gabor_098_alt gabor_117 gabor_039 "1_50_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_151_098_117_039_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_067_framed gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2442 fixation_cross gabor_061 gabor_003 gabor_121 gabor_083 gabor_061_alt gabor_003_alt gabor_121 gabor_083 "1_51_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_061_003_121_083_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_037_framed blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2292 fixation_cross gabor_081 gabor_059 gabor_130 gabor_102 gabor_081 gabor_059_alt gabor_130_alt gabor_102 "1_52_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_081_059_130_102_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_102_framed blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1892 2992 2042 fixation_cross gabor_039 gabor_017 gabor_097 gabor_170 gabor_039_alt gabor_017 gabor_097 gabor_170_alt "1_53_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2050_gabor_patch_orientation_039_017_097_170_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_124_framed blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_124_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_078 gabor_026 gabor_158 gabor_096 gabor_078_alt gabor_026_alt gabor_158 gabor_096 "1_54_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_078_026_158_096_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_047_framed blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1792 2992 2442 fixation_cross gabor_152 gabor_045 gabor_105 gabor_086 gabor_152_alt gabor_045_alt gabor_105 gabor_086 "1_55_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2450_gabor_patch_orientation_152_045_105_086_target_position_3_4_retrieval_position_1" gabor_015_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_015_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 1942 fixation_cross gabor_012 gabor_170 gabor_032 gabor_102 gabor_012_alt gabor_170_alt gabor_032 gabor_102 "1_56_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_012_170_032_102_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_102_framed blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_123 gabor_057 gabor_008 gabor_078 gabor_123_alt gabor_057_alt gabor_008 gabor_078 "1_57_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_123_057_008_078_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_143_framed gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_050 gabor_110 gabor_130 gabor_066 gabor_050 gabor_110 gabor_130_alt gabor_066_alt "1_58_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_050_110_130_066_target_position_1_2_retrieval_position_1" gabor_050_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_014 gabor_082 gabor_161 gabor_042 gabor_014 gabor_082 gabor_161_alt gabor_042_alt "1_59_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_014_082_161_042_target_position_1_2_retrieval_position_2" gabor_circ gabor_082_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_122 gabor_070 gabor_098 gabor_055 gabor_122_alt gabor_070 gabor_098_alt gabor_055 "1_60_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_122_070_098_055_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2142 2992 1892 fixation_cross gabor_116 gabor_168 gabor_003 gabor_149 gabor_116_alt gabor_168_alt gabor_003 gabor_149 "1_61_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_1900_gabor_patch_orientation_116_168_003_149_target_position_3_4_retrieval_position_2" gabor_circ gabor_030_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_030_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2242 fixation_cross gabor_038 gabor_079 gabor_096 gabor_019 gabor_038_alt gabor_079 gabor_096_alt gabor_019 "1_62_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_038_079_096_019_target_position_2_4_retrieval_position_2" gabor_circ gabor_079_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_126 gabor_005 gabor_083 gabor_059 gabor_126_alt gabor_005 gabor_083_alt gabor_059 "1_63_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_126_005_083_059_target_position_2_4_retrieval_position_2" gabor_circ gabor_142_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_142_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_012 gabor_090 gabor_069 gabor_052 gabor_012_alt gabor_090 gabor_069 gabor_052_alt "1_64_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_012_090_069_052_target_position_2_3_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 1892 fixation_cross gabor_082 gabor_065 gabor_153 gabor_124 gabor_082 gabor_065_alt gabor_153_alt gabor_124 "1_65_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_082_065_153_124_target_position_1_4_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2092 2992 2342 fixation_cross gabor_042 gabor_058 gabor_086 gabor_018 gabor_042_alt gabor_058 gabor_086_alt gabor_018 "1_66_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2350_gabor_patch_orientation_042_058_086_018_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_086_framed gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_086_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 1942 fixation_cross gabor_094 gabor_005 gabor_150 gabor_127 gabor_094_alt gabor_005_alt gabor_150 gabor_127 "1_67_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_094_005_150_127_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_174_framed blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2342 fixation_cross gabor_083 gabor_155 gabor_028 gabor_170 gabor_083 gabor_155 gabor_028_alt gabor_170_alt "1_68_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_083_155_028_170_target_position_1_2_retrieval_position_2" gabor_circ gabor_110_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1942 2992 1892 fixation_cross gabor_102 gabor_087 gabor_071 gabor_159 gabor_102_alt gabor_087 gabor_071 gabor_159_alt "1_69_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_102_087_071_159_target_position_2_3_retrieval_position_1" gabor_102_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_102_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_173 gabor_060 gabor_136 gabor_119 gabor_173_alt gabor_060 gabor_136 gabor_119_alt "1_70_Encoding_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_173_060_136_119_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_136_framed gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P3_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_3" 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;
}; |
cacaea87271b8c49c9442e2900c1c5a62d127bb2 | ae90aa32e949a5eab9665f526f886f05860161d2 | /code/nand2tetris/08/FunctionCalls/StaticsTest/StaticsTest.tst | 00d3839e4cf0c0006143b0f9384e8cbd7145b71e | [
"CC-BY-SA-3.0",
"MIT"
] | permissive | cccbook/sp | 4097ab760cfb013b689dc4739a439de29d85d324 | aff23e6b18ba6221022b14b024fd562427c46d9a | refs/heads/master | 2022-05-22T03:31:33.324045 | 2019-06-06T07:04:37 | 2019-06-06T07:04:37 | 156,299,694 | 257 | 96 | MIT | 2022-03-19T08:48:32 | 2018-11-05T23:56:37 | Assembly | UTF-8 | Scilab | false | false | 395 | tst | StaticsTest.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/08/FunctionCalls/StaticsTest/StaticsTest.tst
load StaticsTest.asm,
output-file StaticsTest.out,
compare-to StaticsTest.cmp,
output-list RAM[0]%D1.6.1 RAM[261]%D1.6.1 RAM[262]%D1.6.1;
set RAM[0] 256,
repeat 2500 {
ticktock;
}
output;
|
e41c8c9dc5a571a22777ea2a2b8b89b1e17e68a8 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Chi-RW-C/results/Chi-RW-C.vowel-10-1tra/result8.tst | 68d96b01536eeb4be0796f37027a1b82dfc83ebc | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 967 | tst | result8.tst | @relation vowel
@attribute TT integer[0,1]
@attribute SpeakerNumber integer[0,14]
@attribute Sex integer[0,1]
@attribute F0 real[-5.211,-0.941]
@attribute F1 real[-1.274,5.074]
@attribute F2 real[-2.487,1.431]
@attribute F3 real[-1.409,2.377]
@attribute F4 real[-2.127,1.831]
@attribute F5 real[-0.836,2.327]
@attribute F6 real[-1.537,1.403]
@attribute F7 real[-1.293,2.039]
@attribute F8 real[-1.613,1.309]
@attribute F9 real[-1.68,1.396]
@attribute Class{0,1,2,3,4,5,6,7,8,9,10}
@inputs TT,SpeakerNumber,Sex,F0,F1,F2,F3,F4,F5,F6,F7,F8,F9
@outputs Class
@data
0 0
2 2
5 3
6 9
10 2
7 7
2 3
7 7
0 0
4 4
5 4
10 1
9 9
2 1
3 3
1 1
5 3
8 9
0 1
5 4
3 ?
8 8
3 3
7 7
2 2
1 1
8 9
2 2
6 9
3 3
4 4
4 4
9 9
5 1
10 8
1 1
5 3
6 6
10 3
8 9
10 3
4 4
2 2
3 1
6 8
6 7
10 8
0 0
9 9
6 6
9 9
8 9
10 9
0 0
10 0
1 1
8 8
1 1
5 3
5 3
9 9
1 9
6 7
2 0
4 3
7 7
9 9
4 3
3 3
7 7
6 9
8 7
10 1
3 3
6 7
2 8
5 3
7 7
0 0
9 8
0 0
7 7
9 8
1 0
3 3
8 7
0 0
7 7
8 1
2 2
7 6
1 1
3 3
9 9
4 7
0 0
1 1
4 6
4 6
|
b084b2ea043d63ff66b3bd468d498ad93ce2debd | 449d555969bfd7befe906877abab098c6e63a0e8 | /73/CH8/EX8.8/Example8_8.sci | f7a66d872718631ed2c7f566e0407837bc950ec0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 690 | sci | Example8_8.sci | //Chapter 8_Applications of Operational Amplifier
//Caption : Vp and Vo
//Example8.8: In the circuit of non-inverting summing Op-Amp, V1=+2V, V2=-4V, V3=+5V. input resistors for all the three input signal are same and are equal to 1 kilo Ohm.The feedback resistor Rf is 2 kilo ohm. Determine the voltage Vp at the noninverting pin of the Op-Amp and the output Vo. Assume ideal Op=Amp.
//Solution:
clear;
clc;
Rf=2*10^3;//feedback resistor
R1=1*10^3;
R2=R1;
R3=R2;
V1=2;
V2=-4;
V3=5;
n=3;//no of inputs
Vp=(Rf/R1*V1+Rf/R2*V2+Rf/R3*V3)/n;
Vo=(1+Rf/R1)*Vp;
disp('V',Vp,'voltage at noninverting pin is:')
disp('V',Vo,'output voltage voltage of noninverting summing Op-Amp is:') |
67f6d3cf56e8435449caf43292c056dbeb65d505 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3739/CH2/EX2.7/EX2_7.sce | d4a6d55972aff594e137ee616338c138041d2370 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 640 | sce | EX2_7.sce | //Chapter 2, Example 2.7, page 39
clc
//Initialisation
f=7.5 //frequency in GHz
d=40 //link distance in Km
Pt=30 //transmitter power in dBm
La=15 //additional loss
Pth=-78 //RX threshold
//Calculation
FSL=92.4+(20*log10(f*d)) //FSL
RSL=Pt-(0.4*FSL)-La //RSL
FM=RSL-Pth //fade margin
//Result
printf("(1) Received signal level (RSL) = %.1f dBm",RSL)
printf("\n(2) Fade margin = %.1f dB",FM)
|
b4a96891361b2373540957d049f24def2c42c133 | 404a2e3f51b4ebdb3077527e16a7c546e1ce4f43 | /cnum/el_gauss-seideliuri.sci | 7d573e213e498ab3368843001293652a7ebdb1b1 | [] | no_license | iuripereira/gradprojects | a20e5d6dadec39f7a1574d3aeb3b08e108b7ee28 | 9ed9fc3f9b60ff8634b7699b5b593b345ee7b5ef | refs/heads/main | 2023-03-07T22:51:30.209708 | 2021-02-21T23:31:47 | 2021-02-21T23:31:47 | 341,007,435 | 0 | 0 | null | null | null | null | ISO-8859-2 | Scilab | false | false | 616 | sci | el_gauss-seideliuri.sci | // Métodos Iterativos - Gauss-Seidel
function [x] = gaussseidel(a, b, x0, m, tol)
n = length(b);
e = tol;
ea = e + 1;
// Método de Gauss-Seidel
max_it = m;
it = 0;
while (ea > e) & (it < max_it) do
for i = 1 : n
somat = 0;
for k = 1 : (i-1)
somat = somat + a(i,k)*x0(k);
end
//for k = (i + 1) : n
// somat = somat + a(i,k)*ya(k);
//end
x0(i) = (1/a(i,i))*(b(i) - somat);
end;
//ea = max( abs(y - ya) );
//ya = y;
it = it + 1;
end
x0
endfunction
|
8993d8a27a0eecc5e1ddd9dfeea735eba83b1a17 | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH5/EX5.7/5_7.sce | a0d99db2dcc4c998da65d3256335cddb09a62048 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 402 | sce | 5_7.sce | ha = 260; // Enthalpy of air
hg = 912; // Enthalpy of gas
Va = 270; // Velocity of air
f = 0.0190; // Fuel to air ratio wf/wa
Ef = 44500; // Chemical energy of fuel in kJ/kg
Q = 21; // Heat loss from the engine
Eg = 0.05*f*Ef/(1+f); // As 5% of chemical energy is not released in reaction
Vg = sqrt(2000*(((ha+(Va^2*0.001)/2+(f*Ef)-Q)/(1+f))-hg-Eg));
disp("m/s",Vg,"Velocity of exhaust gas is") |
cfb780b5751c183d24a9475610e4c61fa7c696de | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/diffuse_rel/mrdifrun1_14.sce | 9880abb3241bd9fab2e4e8e207433cbdc2f948d9 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 970 | sce | mrdifrun1_14.sce | jobname='mrdifrun1_14';
exec("diffuse/diffuse_utils.sce");
exec("diffuse/mymultireactdiffuse.sce");
exec("diffuse/newtempmultireactconc.sce");
exec("diffuse/mconcupdate.sce");
exec("diffuse/getconcsub.sce");
exec("diffuse/lap3d.sce");
exec("diffuse/cmdott.sce");
exec("diffuse/compfunc.sce");
dt=0.000100;
h=0.050000;
dif(1)=0.100000;
dif(2)=0.200000;
dif(3)=0.300000;
ic1(1)=0.000000;
ic1(2)=0.125000;
ic1(3)=-0.125000;
ic2(1)=-0.500000;
ic2(2)=0.000000;
ic2(3)=0.000000;
ic3(1)=0.000000;
ic3(2)=0.250000;
ic3(3)=0.000000;
rootdirectory='/scratch/cs1mkg/results/diffuse_rel';
inconsts=[ic1,ic2,ic3]; nspec=3; nsteps=15;nsubsteps=1;n1=20;n2=20;n3=1;
in(1)=n1; in(2)=n2; in(3)=n3;in(4)=h; in(5)=nspec;
concsin=rand(n1,n2,n3,nspec); sources=zeros(n1,n2,n3,nspec);sinks=zeros(n1,n2,n3,nspec);
sirout=mymultireactdiffuse(rootdirectory,jobname,nsteps, nsubsteps, dt, dif, in, concsin, sources, sinks,inconsts);
mgendxgen(rootdirectory,jobname,nsteps,n1,n2,n3,nspec);
exit;
|
d3566f8d852aa2af76274c93ffb4fe3a98d18d1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /698/CH17/EX17.6/P6_prev_prob_with_different_angles.sce | f50a64b89e434445a7c48f838701334ebe97e2f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 893 | sce | P6_prev_prob_with_different_angles.sce | clc
//Example 17.5
//Previous problem with different angles
//------------------------------------------------------------------------------
//Given data
//diameter of gear
d=0.25 //m
r=d/2
//torque
Mt=200 //Nm
//number of teeth
Ng=45
//angles
phi_n=20 //degrees
alpha=30 //degrees
res6=mopen(TMPDIR+'6_prev_prob_with_different_angles.txt','wt')
//tangential force
Ft=Mt/r
mfprintf(res6,'(a)Ft=Mt/r\n\t=%d N\n\n',Ft)
//Separating force
Fr=Ft*(tand(phi_n)/cosd(alpha))
mfprintf(res6,'(b)Fr=Ft*tan(phi_n)/cos(alpha)\n\t=%d N\n\n',Fr)
//Axial thrust force
Fa=Ft*tand(alpha)
mfprintf(res6,'(c)Fa=Ft*tan(alpha)\n\t=%d N',Fa)
mclose(res6)
editor(TMPDIR+'6_prev_prob_with_different_angles.txt')
//------------------------------------------------------------------------------
//-----------------------------End of program-----------------------------------
|
d5b72b61cfa49406cc6e4b0bb456f118445e927a | 717ddeb7e700373742c617a95e25a2376565112c | /479/CH3/EX3.4/Example_3_4.sce | 497c963a7a4c32d21c87642fef379e87ab99482e | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 746 | sce | Example_3_4.sce | //Chemical Engineering Thermodynamics
//Chapter 3
//First Law of Thermodynamics
//Example 3.4
clear;
clc;
//Given
W = 0;//work done during the process
P1 = 1;//Initial pressure in atm
P2 = 10;//Final pressure in atm
V2 = V1;//Initial & final volume are equal
Cv = 0.23//specific heat at constant volume in Kcal/Kg deg K
//(delQ/delT)=Q
Q = 1.3;//Rate of heat addition in Kcal/min
m = 2.5//Weight of an ideal gas in Kg
T1 = 298//Initial temperature in Kelvin
//To calculate the time taken for the gas to attain 10 atm
//Q = m*Cv*(delT/delt)=1.3
T2 = (P2*T1)/(P1);//Final temperature in Kelvin
t = ((m*Cv)/1.3)*(T2-T1);//time taken in minutes
mprintf('The time taken to attain a pressure of 10 atm is %f hrs',t/60);
//end |
58eb2baf9aa0e313bffa69b514092b416b030df1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH2/EX2.6/Example2_6.sce | c3d9fd0a9e5acba8803c74c9d334a05ca690cfbe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,139 | sce | Example2_6.sce | //Example 2.6
//Program to estimate
//(a) The maximum core diameter of an optical fiber for Example 2.4
//(b) The new core diameter for single mode operation when the
//relative refractive index difference is reduced by a factor of 10
clear;
clc ;
close ;
//Given data
V=2.4; //Normalized Frequency
lambda=0.85*10^(-6); //metre - OPERATING WAVELENGTH
n1=1.48; //CORE REFRACTIVE INDEX
delta=0.015; //RELATIVE REFRACTIVE INDEX DIFFERENCE
//(a) The maximum core radius of the optical fiber with delta=1.5%
a1=V*lambda/(2*%pi*n1*sqrt(2*delta));
//(b) The new core radius for single mode operation when the
//relative refractive index difference is reduced by a factor of 10
delta=delta/10;
a2=V*lambda/(2*%pi*n1*sqrt(2*delta));
//Displaying the Results in Command Window
printf("\n\n\t The maximum core diameter of the optical fiber with delta 1.5 percent is %0.1f micrometre.",2*a1*10^6);
printf("\n\n\t The new core diameter for single mode operation when the relative refractive index difference is reduced by a factor of 10 is %0.1f micrometre.",2*a2*10^6); |
d999ce1a29c135d3303e95a19a474c172c7f6f0f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH8/EX8.32/Ex8_32.sce | 957557827d516164af273520c98e3c93abf333ae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,548 | sce | Ex8_32.sce | //CHAPTER 8- DIRECT CURRENT MACHINES
//Example 32
clc;
disp("CHAPTER 8");
disp("EXAMPLE 32");
//VARIABLE INITIALIZATION
v_t=250; //in Volts
I=20; //in Amperes
N1=1000; //in rpm
P=4; //number of poles
r_p=0.05; //resistance of field coil on each pole in Ohms
r_a=0.2; //in Ohms
//SOLUTION
r_se=P*r_p;
r_m=r_a+r_se; //resistance of motor
E_b1=v_t-(I*r_m);
T1=I^2;
//solution (a)
//solving the quadratic equation directly,
r=10; //in Ohms
a=1.02;
b=-25;
c=-400;
D=b^2-(4*a*c);
x1=(-b+sqrt(D))/(2*a);
x2=(-b-sqrt(D))/(2*a);
//to extract the positive root out of the two
if (x1>0 & x2<0)
I1=x1;
else (x1<0 & x2>0)
I1=x2;
end;
I_a=((10.2*I1)-v_t)/r;
E_b2=v_t-(I_a*r_a);
N2=((E_b2/E_b1)*I*N1)/I1;
N2=round(N2); //to round off the value
disp(sprintf("(a) The speed with 10 Ω resistance in parallel with the armature is %d rpm",N2));
//solution (b)
//solving the quadratic equation directly,
a=5/7;
b=0;
c=-400;
D=b^2-(4*a*c);
y1=(-b+sqrt(D))/(2*a);
y2=(-b-sqrt(D))/(2*a);
//to extract the positive root out of the two
if (y1>0 & y2<0)
I2=y1;
else (y1<0 & y2>0)
I2=y2;
end;
E_b3=v_t-(I2*r_a);
N3=((E_b3/E_b1)*I*N1)/(I2*a);
N3=round(N3); //to round off the value
disp(sprintf("(b) The speed with 0.5 Ω resistance in parallel with series field is %d rpm",N3));
//The answers are slightly different due to the precision of floating point numbers
//END
|
0b1d5ef111a78a674752674636dc691141c20dc2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2165/CH1/EX1.5/1_5.sce | d2a0c785c964e1d6e6f75857909345b8ff98e6f0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | 1_5.sce | clc
//initialisation of variables
Gama=1.33//ft/lb
p=100//lb/in^2
p1=20//lb/in^2
v2=10.05//ft^3
v=3//ft/lb
//CALCULATIONS
W=144*(p*v-p1*v2)/0.33//ft lb
//RESULTS
printf('The work done=% f ft lb',W)
|
7c554dd22842998078aaefd8c70f5846aceb37f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1046/CH6/EX6.4/6_4.sce | dfb7f92ef835c24069d132f23d2258e8d2a875cf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,290 | sce | 6_4.sce | //Example 6.4
//Calculate the physical properties of the liquid.
//Given
W1=200 //kg/h, rate of entering toluene
muv=10^-5 //kg/m s, viscosity of toluene vapour
mul=2.31*10^-4 //kg/m s, viscosity of benzene
rhol=753 //kg/m^3, density of benzene
rhov=3.7 //kg/m^3, density of toluene vapour
Cpl=1968 //j/kg C, specific heat of benzene
kl=0.112 //W/m C, thermal conductivity of benzene
T1=160 //C tube wall temp.
T2=120 //C , saturated temp.
Te=T1-T2 //C, excess temp.
Lv=3.63*10^5 //j/kg, enthalpy of vaporization
s=1.66*10^-2 //N/m, surface tension
//Calculation of hc & hb
w=0.125 //m, mean step size
d=0.0211 //, internal diameter of tube
G=W1/(3600*%pi/4*(d^2)) //kg/m^2 s, mass flow rate
Re1=G*(1-w)*d/mul //Reynold no.
Prl=Cpl*mul/kl //Prandtl no.
//from eq. 6.23
x=(w/(1-w))^(0.9)*(rhol/rhov)^(0.5)*(muv/mul)^0.1 //let x=1/succepsibility
//from eq. 6.22
F=2.35*(x+0.231)^0.736 //factor signifies 'liquid only reynold no.' to a two phase reynold no.
//from eq. 7.21
Re2=10^-4*Re1*F^1.25 //Reynold no.
//from eq. 6.18
S=(1+0.12*Re2^1.14)^-1 //boiling supression factor
//from eq. 6.15
hc=0.023*Re1^(0.8)*Prl^(0.4)*(kl/d)*F //W/m^2 C, forced convection boiling part
//from eq. 6.16
mulv=(1/rhov)-(1/rhol) //m^3/kg, kinetic viscosity of liquid vpaour
dpsat=Te*Lv/((T2+273)*mulv) //N/m^2, change in saturated presssure
//nucleate boiling part hb
hb=1.218*10^-3*(kl^0.79*Cpl^0.45*rhol^0.49*Te^0.24*dpsat^0.75*S/(s^0.5*mul^0.29*Lv^0.24*rhov^0.24))
h=hc+hb //W/m^2 C, total heat transfer coefficient
//calculation of required heat transfer area
a=5 //%, persentage change in rate of vaporization
W2=W1*a/100 //kg/h, rate of vaporization
W2_=W2/3600 //kg/s
Q=W2_*Lv //W,heat load
A=Q/(h*Te) //m^2, area of heat transfer
l=A/(%pi*d) //m, required length of tube
//from table 6.2
Tl=0.393
printf("The total tube length is %f m",Tl)
|
5167fa73446e989f18c8571f044bc89268b4b9d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH2/EX2.7/Ch02Ex7.sce | 0a518618871be93a751feb9cc1ce86f687083ae6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 456 | sce | Ch02Ex7.sce | // Scilab Code Ex2.7 : Page:81 (2011)
clc;clear;
del_x = 1e-09; // Uncertainty in position of the electron, m
m0 = 9.1e-031;....// Rest mass of an electron, kg
hcut = 1.054e-034;....// Planck's constant,in J-s
del_v = hcut/(2*del_x*m0);....// Uncertainity in velocity of the electron
printf("\nThe uncertainity in the velocity of an electron = %4.2e m/s",del_v);
// Result
// The uncertainity in the velocity of an electron = 5.79e+04 m/s
|
7fac3d7b204f02a117df763b13fa769f07fd712b | afcf746e249b9463101019f07a47845355c6acc2 | /starter_files/project/task2/RShift.tst | 11754e39c5535be4b139c970dfc6a9a706bffa2e | [] | no_license | jyuan2pace/CS506 | afca44ee8df14436d72de97e658a61841091e651 | fa80d2786f006c226c6e6413ee23fe306d6c57d0 | refs/heads/master | 2020-07-28T13:04:37.077116 | 2019-11-24T20:15:20 | 2019-11-24T20:15:20 | 209,419,478 | 8 | 11 | null | null | null | null | UTF-8 | Scilab | false | false | 346 | tst | RShift.tst | load RShift.hdl,
output-file RShift.out,
compare-to RShift.cmp,
output-list in%D1.16.1 out%D1.16.1;
set in 1,
eval,
output;
set in -1,
eval,
output;
set in 2,
eval,
output;
set in -2,
eval,
output;
set in %X8000,
eval,
output;
set in 256,
eval,
output;
set in -256,
eval,
output;
set in %XFFF0,
eval,
output;
|
4dde66220ae5a61494e0f93739e64fe9559b0491 | 449d555969bfd7befe906877abab098c6e63a0e8 | /50/CH7/EX7.1/ex_7_1.sce | d857f64d6c0355a8ce48f1ac566f137598bb7460 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 454 | sce | ex_7_1.sce | // example 7.1
// solve by shooting method;
// u''=u+1;
// u(0)=0; u(1)=%e-1;
// let -> U1(x)=du/dx;
// U2(x)=d2u/dx2;
// U(x)=[U1(x);U2(x)]
// hence ;
// dU/dx=f(x,U);
deff('[w]=f(x,U)','w=[U(2); U(1)+1]')
h=0.25;
x=[0:h:1];
ub=[0,%e-1];
up=[0:1:10];
[U] = shooting(ub,up,x,f);
// the solution obtained would show the values of u and their derivatives at various x taken in regular intervals of h; |
c17a54ae2937798d1ba75b585af58f9d4fc14e60 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3574/CH2/EX2.3/EX2_3.sce | 7e3a125c359934028899cb9df707942cedc834e9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,128 | sce | EX2_3.sce | // Example 2.3
// Computation of (a) Exciting current and its quadrature components
// (b) Equalizing magnetic reactance and equivalent core loss resistance
// (c) Magnetizing current (d)repeat (a) and (b) for the transformer in the
// step up mode
//Page No. 44
clc;
clear;
close;
Fp=0.210; // Power factor
Pcore=138; // Active power
VT=2400; // Voltage applied to primary
VT1=240; // 240-V primary voltage -- Second case
// (a)Exciting current and its quadrature components
Theta=acosd(Fp); // Angle
Thetai=-Theta; // As phase angle of applied voltage is zero
Ife=Pcore/VT; // Exciting current
I0=Ife/Fp; // Quadrature component
Im=tand(Thetai)*Ife; // Quadrature component
Im=Im*-1;
// (b) Equalizing magnetic reactance and equivalent core loss resistance
XM=VT/Im; // Magnetic reactance
Rfe=VT/Ife; // Core-loss resistance
XM=XM/1000;
Rfe=Rfe/1000;
//(c) Magnetizing current
Ife1=Pcore/VT1; // Exciting current
I01=Ife1/cosd(Thetai);
IM1=tand(Thetai)*Ife1; // Quadrature component
IM1=IM1*-1;
//(d) repeat (a) and (b) for the transformer in the step up mode
XM1=VT1/IM1; // Magnetizing reactance
Rfe1=VT1/Ife1; // Core-loss resistance
//Display result on command window
printf("\n Exciting current = %0.4f A ",Ife);
printf("\n Exciting current quadrature component 1 = %0.4f A ",I0);
printf("\n Exciting current quadrature component 2 = %0.3f A ",Im);
printf("\n Equivalent magnetic reactance = %0.2f kOhm ",XM);
printf("\n Equivalent core loss resistance = %0.1f kOhm ",Rfe);
printf("\n Exciting current in step-up mode = %0.3f A ",Ife1);
printf("\n Exciting current in step-up mode quadrature component 1 = %0.2f A ",I01);
printf("\n Exciting current in step-up mode quadrature component 2 = %0.2f A ",IM1);
printf("\n Equivalent magnetic reactance in the step up mode = %0.1f Ohm ",XM1);
printf("\n Equivalent core loss resistance in the step up mode = %0.1f Ohm ",Rfe1);
|
980ec3a04dbe2c8d3caf367e06f12ad5d36fe7bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /980/CH15/EX15.12/15_12.sce | eda29064137a3720b8242caa570abfd58fb887ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 136 | sce | 15_12.sce | clc;
clear;
format('e',11);
phi=45;
f=10*10^6;
Ntb=(f*cosd(phi))^2/81*10^-6;
disp(Ntb,"The electron density(in electrons/cc)=");
|
ef2160a38cdce13869078055adc2680c822e983f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1991/CH3/EX3.2/2.sce | 2fda7980a3de1c9e7250034f4a06414b74c505e1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 2.sce | clc
clear
//input data
a=1.28 //refractive index of X
b=1.41 //refractive index of Y
//calculation of condition for total internal reflection
x=(a/b)
c=asind(x) // calculating critical angle
//output
printf("light incident with an angle greater than %3.3f degrees will be totally internally reflected",c)
|
568e2fbb0576b3f1628203622c85f981c4783fd9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH6/EX6.5/Chapter6_Exampl5.sce | 9013936e3d79489e910c2c5a348c1f8a3e23c41d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 986 | sce | Chapter6_Exampl5.sce | clc
clear
//INPUT DATA
tmin=293;//minimum temperature in K
t3=317;//temperature in K
m=0.008;//mass flow rate in kg/s
hf1=54.81;//enthalpy in kJ/kg
hfg1=140.91;//enthalpy in kJ/kg
hg1=195.78;//enthalpy in kJ/kg
hf2=78.68;//enthalpy in kJ/kg
hfg2=125.87;//enthalpy in kJ/kg
hg2=204.54;//enthalpy in kJ/kg
vf1=0.2078;//entropy in kJ/kgK
vf2=0.2845;//entropy in kJ/kgK
vg1=0.6884;//entropy in kJ/kgK
vg2=0.6814;//entropy in kJ/kgK
t2=320.49;//from t-s diagram temperature in K
cp=0.64;//specific pressure
//CALCULATIONS
h2=hg2+cp*(t2-t3);//enthalpy in kJ/kg
wc=m*(h2-hg1);//compressor work in kJ/s
Rc=m*(hg1-hf2);//Refrigiration capacity in kW
Rc1=Rc*60/210;//Refrigiration capacity in TR
copv=Rc/wc;//COP of VCR system
copc=(tmin/(t3-tmin));//COP of carnot refrigeration cycle in percentage
//OUTPUT
printf('(a)The compressive work input is %3.5f kJ/s \n (b)Refrigiration capacity is %3.4f TR \n (c)COPvcr is %3.3f \n (d)COPc is %3.3f',wc,Rc,copv,copc)
|
bb528a3250cb8b8b0e8667b68b3f3b1198dc1e1e | 3b9d7536a267f8c26d200f8a04cf846ae7278d6f | /gaussjordan.sce | 8687d9fc0ac1ed8f3d5570f1008259366bdd0fe7 | [] | no_license | vanisharm/linear_algebra | 0179ee46ad0e4cffeca4ae1e30ded864f5c2abd2 | a57eed41d2ae556ee0ff895a7e5953dbfe53fc93 | refs/heads/master | 2021-01-01T07:08:57.304584 | 2020-06-05T06:33:17 | 2020-06-05T06:33:17 | 239,162,939 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 944 | sce | gaussjordan.sce | clc;
clear;
A=[0,0,0;0,0,0;0,0,0]
A(1,1)=input("enter a11: ")
A(1,2)=input("enter a12: ")
A(1,3)=input("enter a13: ")
A(2,1)=input("enter a21: ")
A(2,2)=input("enter a22: ")
A(2,3)=input("enter a23: ")
A(3,1)=input("enter a31: ")
A(3,2)=input("enter a32: ")
A(3,3)=input("enter a33: ")
n=length(A(1,:))
Aug=[A,eye(n,n)]
//Forward elimination
for j=1:n-1
for i=j+1:n
Aug(i,j:2*n)=Aug(i,j:2*n)-Aug(i,j)/Aug(j,j)*Aug(j,j:2*n)
end
end
//Backward elimination
for j=n:-1:2
Aug(1:j-1,:)=Aug(1:j-1,:)-Aug(1:j-1,j)/Aug(j,j)*Aug(j,:)
end
//Diagonal Normalisation
for j=1:n
Aug(j,:)=Aug(j,:)/Aug(j,j)
end
B=Aug(:,n+1:2*n)
disp(B,'The inverse of A is');
|
312f8bfb8b7e6c455098e8dfe461f2232a670d1b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH2/EX2.3/23.sce | b5f85fd038f96724cefdc116b96db21395e82734 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 192 | sce | 23.sce | // problem 2.3
w=90
// By archemde's principle
// weight of water dispalced = weight of sphere
z=9810
v=w/z
d=(v*12/3.142)^0.33333
disp(d,"external diameter of hollow of sphere in m")
|
5bf42dfe5d5da46012f1feb8358fa8d6f0020438 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH17/EX17.1/Ex17_1.sce | a8db2ad05351f98459fb477f02269633f2c23164 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 590 | sce | Ex17_1.sce | //Example 17.1
T=30;//Temperature (C)
T=T+273;//Temperature (K)
v_w=331*sqrt(T/273);//Speed of sound in air at sea level(m/s)
f_min=20;//Minimum frequency (Hz)
f_max=20000;//Maximum frequency (Hz)
lambda_max=v_w/f_min;//Maximum wavelength (m)
printf('Maximum wavelength = %0.0f m',lambda_max)//Restricting answer to two significant figures
lambda_min=v_w/f_max;//Minimum wavelength (m)
printf('\nMinimum wavelength = %0.1f cm',lambda_min*100)
//The answer varies due to round off error
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
3e0d79069d401ace340905c310915ca49477523e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2195/CH2/EX2.7.2.c/ex_2_7_2_c.sce | 1ac7d2159bcc13baef55eb05996d8366c00f3839 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 346 | sce | ex_2_7_2_c.sce | //Example 2.7.2.c://standard deviation
clc;
clear;
format('v',6)
q=[101.2,101.4,101.7,101.3,101.3,101.2,101.0,101.3,101.5,101.1];//
AM= mean(q);//arithematic mean in mm
for i= 1:10
qb(i)= q(i)-AM;
end
Q= [qb(1),qb(2),qb(3),qb(4),qb(5),qb(6),qb(7),qb(8),qb(9),qb(10)];//
SD=stdev(Q);//standard deviation
disp(SD,"standard deviation in volts") |
3390ee8a02c1e4e5106a8a2127b8e309ee6e6c1a | 1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08 | /Scilab/Basic Gaussian Distribution.sce | b467e125c32a592c6012eb453161b3737408ef44 | [] | no_license | lrayzman/SI-Scripts | 5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d | 9ab161c6deff2a27c9da906e37aa68964fabb036 | refs/heads/master | 2020-09-25T16:23:23.389526 | 2020-02-09T02:13:46 | 2020-02-09T02:13:46 | 66,975,754 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 600 | sce | Basic Gaussian Distribution.sce | //This script generates a basic normalized gaussian distribution curve
/////////////////////////////////////
//Enter parameters:
//standard deviation//
sigma=0.02;
/////////////////////
//mean//
mu=0.5;
////////
////////////////////////////////////
//Create a horizontal axis array
N=1000;
x=[0:1/N:1];
//Generate the Gaussian PDF
rho_of_x=1/(2*%pi*sigma)*exp(-(x-mu)^2/(2*sigma^2));
//Plot me
plot2d(x, rho_of_x/max(rho_of_x));
//Now plot the logarithmic transformation of Gaussian PDF
xset("window", 1)
plot2d(x, log10(rho_of_x/max(rho_of_x)))
|
09f0ff293bebd500d8b58e4b5d8dbcbbc17dd090 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH5/EX5.6/Ex5_6.sce | c696ecc78e0ec5170bca253efac9f58b59117120 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex5_6.sce | //Initilization of variables
W1=40 //lb
W2=30 //lb
theta1=30 //degrees
//Calculations
//Summing the forces parallel to 30 degree plane
T=40*sind(theta1)
theta=asind(T/W2)
//Result
clc
printf('The tension in the cable is %flb and the angle theta is %f degrees',T,theta)
|
6f22422969567c66e535c672384213686391daad | 6c19fd9795e06b3237b519eb409161b82ee804d2 | /Exercici6.sce | b08dabd9e2417a55feb5a99167b0177190de93e8 | [] | no_license | Sergimech/PID_Control_Actuadors | 0ed339974dd570065847f0e60ac1a6dae018c2a6 | 6c92fd9cf7d788bfba5ca8a12aed26457be97d4b | refs/heads/master | 2020-06-10T22:51:48.682988 | 2016-12-07T16:02:08 | 2016-12-07T16:02:08 | 75,851,663 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 509 | sce | Exercici6.sce | //Limpiamos consola
clear
clc
//Declaración de variable
thau=0.001;
gammA=20;
//[theta]=linspace(1,10,10);
//theta=theta';
//Declaración de la kp
kp=10;
//Declaración del vector Kd con valores del 1 al 10 de 1 en 1 para el control
[kd]=linspace(1,10,10);
//Ecuación de control
(theta.^3)-(2*(theta.^2))+(1+(gammA*kd*thau.^2)+(gammA*kd*thau))*(theta.^2)-((gammA*kd*thau)*theta)==0; //theta(s) son las frecuencias naturales del sistema
//Plot de theta en función de Kd
scf(0);
plot2d(theta,kd);
|
91ebc05ed1828d951669595f48fc6bfba85757d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH2/EX2.37/37.sci | 828d8421447db2a665ee7f1b41d353671fd5ca17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 553 | sci | 37.sci | clc;
clear all;
disp("thermal conductivity of gas")
rt=10^(-3);//m inside radius of tube
L=0.25;//m length of tube
rw=0.025*10^(-3);// m radius of electric wire
tt=150;// degree C inside tube temperature
tw=175;// degree C wire temperature
I=0.5;// A current through element
V=4;// V voltage across element
Q=V*I;// W
disp("W",Q,"heat transfer rate =")
//Q=2*3.1416*L*k*(tw-tt)/log(rt/rw)
X=(2*3.1416*L*(tw-tt)/log(rt/rw))
k=Q/X;// thermal conductivity of the gas
disp("W/(m*C)",k,"thermal conductivity of the gas =")
|
0a162ef2d4d65a31c67459b19e7a168775000b57 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2912/CH10/EX10.6/Ex10_6.sce | 97ab27deb8e46a57753af41d8d43a7d17c6164a5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 496 | sce | Ex10_6.sce | // chapter 10
// example 10.6
// calculate frequency of EM waves
// page 314
clear;
clc;
// given
V=8.50; // in micro V (voltage across Josephson junction )
e=1.6E-19; // in C (charge of electron)
h=6.626E-34; // in J/s (Planck’s constant)
//calculate
V=V*1E-6; // changing unit from V to microVolt
v=2*e*V/h; // calculation of frequency of EM waves
printf('\nThe frequency of EM waves is \tv=%1.3E Hz',v);
// Note: the answer in the book is wrong due to calculation misatke
|
8523952a6140a262c966376352f0c2eaec231fbc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1994/CH9/EX9.25/Example9_25.sce | 64283abd00db695b6ac73437a8130052410f5fda | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 695 | sce | Example9_25.sce | //Chapter-9,Example9_25,pg 9_78
V=400
Po1=18.5*10^3
Pi1=22.5*10^3
Rsh=200
Ra=0.4
Po2=9*10^3
I1=Pi1/V
Ish=V/Rsh
Ia1=I1-Ish
Acl=(Ia1^2)*Ra//armature copper loss
Scl=(Ish^2)*Rsh//shunt feild copper loss
TL=Pi1-Po1//total losses
SFl=TL-(Acl+Scl)//stray and friction loss
//case-2
Pm=Po2+SFl//mechanical power
//Pm=Eb2*Ia2.........(1)
//Eb2=V-Ia2*Ra.......(2)
//using (1) and (2)
//0.4*(Ia2^2)-400*Ia2+11022.75=0
a=0.4
b=-400
c=11022.775
Ia2=(-b-sqrt((b^2)-4*a*c))/(2*a)//neglecting higher value
Pi2=Po2+(Ia2^2)*Ra+(Ish^2)*Rsh+SFl
n=Po2*100/Pi2//efficiency
printf("power input in case-2\n")
printf("Pi2=%.3f W\n",Pi2)
printf("efficiency of motor\n")
printf("n=%.2f ",n)
|
fb085b35399b0dc9d4101a9133df886422defc01 | a674f7b984545698214f8164107cc4e15916c573 | /A/A.1/mission_A1.sci | 96a1ba228ead8462168cc62257ee1ad3dbde2807 | [] | no_license | enzo-billis/Projet_CESI_Scilab_Missions | 6bb843b68b64660f8ed235cde4213dd4d3343375 | 07434c89170e237aff6a78ad4d59034b6e47f382 | refs/heads/master | 2021-03-16T10:27:15.255047 | 2018-03-05T08:02:40 | 2018-03-05T08:02:40 | 120,597,704 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 655 | sci | mission_A1.sci | function Mission_A1()
//stocke l'image dans variable
image=readpbm("Encelade_surface.pbm")
//trouve le plus haut niveau niveau de gris - le stocke dans une variable
valeur=max(image)
//afficher coordonnées plus haut niveau de gris dans la matrice
[y,x]=find(image==valeur)
disp("Voici la ou les cordoonnee(s) pour atterir (coordonnée y, coordonnée x):")
disp([y,x])
//afficher la valeur du plus haut niveau de gris (correspondant aux coordonnées)
disp("La valeur du plus haut niveau de gris est:")
disp(valeur)
//afficher image
display_gray(image)
endfunction
|
4de8a5be8ca8345f443b06ca665483556cf4d459 | 127061b879bebda7ce03f6910c80d0702ad1a713 | /BasisTrans/PIL_tri_j_sym.sci | cc2970797b96494e02801c4590fac27be9ed8e3b | [] | no_license | pipidog/PiLib-Scilab | 961df791bb59b9a16b3a32288f54316c6954f128 | 125ffa71b0752bfdcef922a0b898263e726db533 | refs/heads/master | 2021-01-18T20:30:43.364412 | 2017-08-17T00:58:50 | 2017-08-17T00:58:50 | 100,546,695 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 519 | sci | PIL_tri_j_sym.sci | // **** Purpose ****
// calculate the 3j symbol
// **** Variables ****
// [j1]: 1x1, iteger or half-integer
// <= j1 parameter
// [m1]: 1x1, iteger or half-integer
// [val]: 1x1, real or complex
// => value of 3j symbol
// => cobinatorial
// **** Version ****
// 05/01/2014
// **** Comment ****
// This program provides you the values of 3-j symbol
// see "Wigner 3-j symbols" (wiki)
function val=PIL_tri_j_sym(j1,j2,j3,m1,m2,m3)
val=( ((-1)^(j1-j2-m3))/sqrt(2*j3+1) )*PIL_cg_coff(j1,j2,m1,m2,j3,-m3)
endfunction
|
32a0fa1953aa0d82157f14ca178ed32601738f25 | 9123dfeae79fb833afcfb6e324566667b5fe4c17 | /extras/Database/Admin/T1.tst | 8082c660c6906b011ac7da42108fa0bdd956db3a | [] | no_license | dima-online/frsi | 52be79451cb1c8133aa52d3af9668d7fe7227b51 | 1bac80c248a63cb05395635412620ca2fdb9b07b | refs/heads/master | 2021-04-28T10:00:17.764756 | 2017-09-20T13:59:39 | 2017-09-20T13:59:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 481 | tst | T1.tst | PL/SQL Developer Test script 3.0
23
declare
i integer;
id_ right_items.id % type;
begin
for Rec in (select gi1.*
from tmp_right_items gi1)
loop
begin
select gi2.id
into id_
from right_items gi2
where gi2.name = Rec.Name;
update tmp_right_items gi3
set gi3.right_item = id_
where gi3.id = Rec.Id;
exception
when no_data_found then
id_ := null;
end;
end loop;
end;
0
0
|
6caadd2eda047b11b2b07939d5aade77ff3dd7fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /839/CH28/EX28.2/Example_28_2.sce | b16ada1fa00f987057843c2e24b2212e3eb4fa1f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | Example_28_2.sce | //clear//
clear;
clc;
//Example 28.2
//Given
x = 0.14;
xavg = 0.10;
t = 3; //[min]
x =[10.24,9.3,7.94,10.24,11.08,10.03,11.91,9.72,9.20,10.76,10.97,10.55]/100;
//Solution
mu = xavg;
N =12;
xbar = mean(x);
//Substituing in Eq.(28.20)
Ip = sqrt((N-1)*mu*(1-mu)/(sum(x^2)-xbar*sum(x)));
//Using Eq.(28.18)
s = stdev(x);
disp(s,'s =',Ip,'Ip =')
|
c30e4be4de2489659086d3826ad7fd8b1fa4fb80 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH5/EX5.8/5_8.sce | de3fc89647b203bec773b05b836eafc92a643118 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | sce | 5_8.sce | //ques-5.8
//Calculating pH of NaOH
clc
N=0.01;//normality of NaOH
a=0.01;//hydroxide in NaOH
b=10^-14/a;//hydrogen in NaOH
pH=-log10(b);//pH of NaOH
printf("pH value of given NaOH is %.0f.",pH);
|
8303552902f7a8ef53d0d0ef0fc52c52529a4ee6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1004/CH3/EX3.5/Ch03Ex5.sci | f31d4f27a5573e5b4f96d9abca32f7cad4d916fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 531 | sci | Ch03Ex5.sci | // Scilab code: Ex3.5 : wavelength of a particle: Pg: 79 (2008)
h = 6.624e-034; // Planck's constant, J-s
m = 9e-031; // Mass of an electron, kg
U = 1.6e-017; // Kinetic energy of an particle, joule
// Since U = (m*v^2)/2; // Kinetic energy of a particle, joule
// such that v = sqrt(2*U/m); // Velocity of the particle, m/s
L = h/sqrt(2*m*U); // wavelength of a particle, m
printf("\nThe wavelength of a particle = %5.3f angstorm", L/1e-010);
// Result
// The wavelength of a particle = 1.234 angstorm |
590a4890fe090697e3cce0ddc4a6cb98602e2082 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH2/EX2.7w/2_7w.sce | 4a3dba3048891ff7de65eb0b9343c44ec59022ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 617 | sce | 2_7w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 2.7w
//calculation of unit vector
//given data
ax=5; //x component of A vector
ay=1; //y component of A vector
az=-2; //z component of A vector
//calculation
A=sqrt((ax*ax)+(ay*ay)+(az*az));
uax=ax/A; //x component of unit vector of A vector
uay=ay/A; //y component of unit vector of A vector
uaz=az/A; //z component of unit vector of A vector
disp(uax,'x component of unit vector of A vector');
disp(uay,'y component of unit vector of A vector');
disp(uaz,'z component of unit vector of A vector');
|
80c7ca4ac139dc43b64c176ffdff2783e78e5ce6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH9/EX9.15/example_9_15.sce | 8bf3da37f181b2597f9da71e426200c8d36d6784 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 59 | sce | example_9_15.sce | s=%s
sys=syslin('c',(k)/(s*(s+1)*(s+2)*(s+3)))
evans(sys) |
f6f7fefa276ca20fd083ba0d34adf1627300d269 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3159/CH6/EX6.6/Ex6_6.sce | ed2a0498b20a132bdefd325b2f33f8e49f93eaa7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex6_6.sce | // Compute the angle at the bottom of groove of a boundary
clc
Gamma_gb = 1 // let, energy of grain boundary
Gamma_s = 3* Gamma_gb// energy of free surface
printf("\n Example 6.6")
theta = 2*acos(1/2*Gamma_gb/Gamma_s)
printf("\n Angle at the bottom of groove of a boundary is %d degrees.",ceil(theta*180/%pi))
|
7e2a71952ac78c56493a55f190cef5c27db18408 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH4/EX4.38.1/Ex4_38.sce | f43c09c324814d1e6d2890250898685652464b8c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,036 | sce | Ex4_38.sce | clc
clear
//Case 1
P=10; //in bar
Cps=2.1; //in kJ/kg K
x=0.85; //Dryness fraction
Hf=762.8; //in kJ/kg
Hfg=2015.3; //in kJ/kg
Vg=0.194; //in m^3/kg
Hg=2778.1; //in kJ/kg
H=Hf+(x*Hfg);
printf('Case 1: When x=0.85 \n \n');
printf('Enthalpy of steam: %2.2f kJ',H);
printf('\n');
U=H-(P*100*x*Vg);
printf('Internal Energy of steam: %2.2f kJ',U);
printf('\n');
//Case 2
H=Hg; //in kJ/kg
printf('\n \nCase 2: When steam is dry and saturated \n \n');
printf('Enthalpy of steam: %2.2f kJ',H);
printf('\n');
U=H-(P*100*Vg);
printf('Internal Energy of steam: %2.2f kJ',U);
printf('\n');
//Case 3
Tsup=300+273; //in K
Tsat=179.9+273; //in K
H=Hg+(Cps*(Tsup-Tsat));
printf('\n \nCase 3: When steam is superheated to 300 C \n \n');
printf('Enthalpy of steam: %2.2f kJ',H);
printf('\n');
Vsup=(Tsup/Tsat)*Vg;
U=H-(P*100*Vsup);
printf('Internal Energy of steam: %2.2f kJ',U);
printf('\n');
|
109b5b2625bc99ce5944459849d859dbb72add08 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2258/CH6/EX6.8/6_8.sce | 327148eed487314a5baa21c2bb1c53461bce4e3c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 395 | sce | 6_8.sce | clc();
clear;
// To calculate the polarizability and relative permittivity of He
R=0.55; //radius of He atom in angstrom
R=R*10^-10; //radius of He atom in m
epsilon_0=8.84*10^-12; //f/m
N=2.7*10^25;
alpha_e=4*%pi*epsilon_0*R^3;
epsilon_r=(N*alpha_e/epsilon_0)+1;
printf("polarizability in farad m^2 is");
disp(alpha_e);
printf("relative permitivity is");
disp(epsilon_r);
|
6b6455637659960fb018de374eefb2c6bb9d9db7 | b12941be3faf1fd1024c2c0437aa3a4ddcbbfd67 | /whatif2/fase_1.tst | 5de6eaf121ebb49f64cac67e8a3f32d664f7cfb3 | [] | no_license | JanWielemaker/optica | 950bd860825ab753236ce1daa399ee7a0b31b3ee | 3a378df314b5a60926b325089edac89c00cc8c6d | refs/heads/master | 2020-06-12T14:22:46.567191 | 2019-06-21T11:24:41 | 2019-06-21T11:24:41 | 194,328,239 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,568 | tst | fase_1.tst | /* Questionaire created by optica toolkit
Date: Mon Mar 16 19:01:46 1998
*/
question(1, '1.01',
'De lamp wordt iets naar rechts bewogen.
Waar zal de uittredende lichtstraal de hoofdas snijden?',
[ 'Dichterbij de lens.',
'Even ver van de lens vandaan.',
'Verder van de lens vandaan'
],
state(state, '',
[ m6 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(3),
sfere_left(10),
sfere_right(10),
breaking_index(1.51),
pos_x(7),
show_gauge(false),
instrument_name(lens)),
l2 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(0),
instrument_name(lamp1))
])).
question(2, '1.02',
'De lamp wordt iets naar links bewogen.
Waar zal de uittredende lichtstraal de hoofdas snijden?',
[ 'Dichterbij de lens.',
'Even ver van de lens vandaan.',
'Verder van de lens vandaan.'
],
state(state, '',
[ m6 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(6),
sfere_left(0),
sfere_right(10),
breaking_index(1.51),
pos_x(15),
show_gauge(false),
instrument_name(lens)),
l2 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(3),
instrument_name(lamp1))
])).
question(3, '1.03',
'De lens wordt iets naar rechts bewogen.
Waar zal de uitredende lichtstraal de hoofdas snijden?',
[ 'Dichterbij de lens.',
'Even ver van de lens vandaan.',
'Verder van de lens vandaan.'
],
state(state, '',
[ m6 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(6),
sfere_left(0),
sfere_right(10),
breaking_index(1.51),
pos_x(14),
show_gauge(false),
instrument_name(lens)),
l2 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(0),
instrument_name(lamp1))
])).
question(4, '1.04',
'De lens wordt iets naar links bewogen.
Waar zal de uittredende lichtstraal de hoofdas snijden?',
[ 'Dichterbij de lens.',
'Even ver van de lens vandaan.',
'Verder van de lens vandaan.'
],
state(state, '',
[ m4 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(4),
sfere_left(10),
sfere_right(10),
breaking_index(1.51),
pos_x(14),
show_gauge(true),
instrument_name(lens)),
l1 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(0),
instrument_name(lamp1))
])).
question(5, '1.05',
'De lichtstraal wordt iets meer naar beneden gericht.
Waar zal de uittredende lichtstraal de hoofdas snijden?',
[ 'Dichterbij de lens.',
'Even ver van de lens vandaan.',
'Verder van de lens vandaan.'
],
state(state, '',
[ m6 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(6),
sfere_left(0),
sfere_right(10),
breaking_index(1.51),
pos_x(14),
show_gauge(false),
instrument_name(lens)),
l2 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(0),
instrument_name(lamp1))
])).
question(6, '1.06',
'De lichtstraal wordt iets meer naar boven gericht.
Waar zal de uittredende lichtstraal de hoofdas snijden?',
[ 'Dichterbij de lens.',
'Even ver van de lens vandaan.',
'Verder van de lens vandaan.'
],
state(state, '',
[ m6 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(3),
sfere_left(10),
sfere_right(10),
breaking_index(1.51),
pos_x(7),
show_gauge(false),
instrument_name(lens)),
l2 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(0),
instrument_name(lamp1))
])).
question(7, '1.07',
'De afgebeelde lens wordt vervangen door een dubbelbolle lens.
Waar zal de uittredende lichtstraal de hoofdas snijden?',
[ 'Dichterbij de lens.',
'Verder van de lens vandaan.',
'De uittredende straal snijdt de hoofdas niet meer.'
],
state(state, '',
[ m6 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(6),
sfere_left(0),
sfere_right(10),
breaking_index(1.51),
pos_x(14),
show_gauge(false),
instrument_name(lens)),
l2 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(0),
instrument_name(lamp1))
])).
question(8, '1.08',
'De afgebeelde lens wordt vervangen door een dubbelholle lens.
Waar zal de uittredende lichtstraal de hoofdas snijden?',
[ 'Dichterbij de lens.',
'Verder van de lens vandaan.',
'De uittredende straal snijdt de hoofdas niet meer.'
],
state(state, '',
[ m6 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(3),
sfere_left(10),
sfere_right(10),
breaking_index(1.51),
pos_x(7),
show_gauge(false),
instrument_name(lens)),
l2 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(0),
instrument_name(lamp1))
])).
question(9, '1.09',
'De afgebeelde lens wordt vervangen door een platbolle lens.
Waar zal de uittredende lichtstraal de hoofdas snijden?',
[ 'Dichterbij de lens.',
'Verder van de lens vandaan.',
'De uittredende straal snijdt de hoofdas niet meer.'
],
state(state, '',
[ m6 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(3),
sfere_left(10),
sfere_right(10),
breaking_index(1.51),
pos_x(3.5),
show_gauge(false),
instrument_name(lens)),
l2 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(0),
instrument_name(lamp1))
])).
question(10, '1.10',
'De afgebeelde lens wordt vervangen door een platholle lens.
Wat zal er gebeuren met de hoek die de uittredende lichtstraal maakt met de hoofdas?',
[ 'Deze wordt groter.',
'Deze blijft gelijk.',
'Deze wordt kleiner'
],
state(state, '',
[ m6 = lens(label(''),
radius(5),
thickness(0.1),
focal_distance(-3),
sfere_left(-10),
sfere_right(-10),
breaking_index(1.51),
pos_x(6),
show_gauge(false),
instrument_name(lens)),
l2 = lamp1(switch(true),
angle(10),
pos_y(0),
pos_x(0),
instrument_name(lamp1))
])).
|
ef3f4cec252985410b4da942d5cbd2b837ac6705 | bbf84038a44646a2fcb96b7d840d8b4f721e93bd | /Determine Cluster Size and Nearest Cluster.sce | d7c3633845e81369e30b828ec18b5d194dfcd142 | [] | no_license | Dhwaninaik22/SCILAB | 2e1f685572ef4868792391e3ec187cf1a2e946bb | e954a2bd9452d6363cbe16d480858cc98ea2dca4 | refs/heads/main | 2023-06-25T23:19:06.513029 | 2021-07-28T16:34:47 | 2021-07-28T16:34:47 | 390,406,576 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 395 | sce | Determine Cluster Size and Nearest Cluster.sce | clc
ci=15
CI=10^((ci)/10)
q=(6*(CI))^0.25
K=ceil(q*q/3)//cluster size
disp(K,'minimum cluster size')
k=7
q1=sqrt(3*k)
c1i1=q1^4/6
C1I1=10*log10(c1i1)
if (C1I1<20) then
disp(,'cluster size cannot meet the desired C/I requirement')
C2I2=10^(20/10)
q2=(6*C2I2)^0.25
k1=ceil((q2)^2/3)
disp(k1,'nearest valid cluster size K')
else
disp(,'cluster size determined is adequate')
end
|
a56c43b0e678a8aab08de97f1ca70a4faee38ecf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1703/CH13/EX13.2/13_2.sce | 9c374b30dc6b74d55825574fa43fba29ff8e0b9e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 556 | sce | 13_2.sce |
clc
//initialisation of variables
P1= 1100 //lb/in^2
P2= 85 //lb/in^2
f= 0.01
g= 32.2 //ft/sec^2
l= 1600 //ft
r= 1/8
W= 2500 //lb
d= 6 //in
//CALCULATIONS
L= W*d
P= L*2.31/(%pi*(d/2)^2)
s1= P1*2540/1100
s2= P2*196/85
vp= sqrt((s1-s2-P)/(4*f*l/(2*g*r)))
V= vp/16
Vl= V*d
Vp= sqrt((s1/3)/(4*f*l/(2*g*r)))
vl= Vp*d/16
Hr= s1-(s1/3)-s2
Lr= Hr*%pi*(d/2)^2/(2.31*d)
//RESULTS
printf("In case 1, velocity of load = %.2f ft/sec",Vl)
printf("\n In case 2, velocity of load = %.2f ft/sec",vl)
printf ('\n Load to be lifted = %.f lb ',Lr)
|
47a0c54794b47316087cd2f97779b4c76a7027f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /716/CH2/EX2.4.c/Solved_Ex2_4c.sce | a114d7aa93c062be1161b5b84a3c4b930a162757 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 520 | sce | Solved_Ex2_4c.sce | //find power of periodic signal x(t)=3cos(5*w0*t)
clc;
//To plot signal*************************//
t=-5:0.01:5;
w0=0.25*%pi;
x=3*cos(5*w0.*t);//given signal
plot(t,x);
//***************************************//
t=-50:0.01:50;
x=3*cos(5*w0.*t);
T=length(t);
//To calculate Energy
xsq=x.^2;//adds squares of all the 'x' values(integrates 'x^2' terms)
v=sum(xsq);//energy
//To calculate Power
xsq=x.^2;
P=1/T*v;//divide by 2T,to take the average rate of energy(gives power)
disp('watts',P,'Power='); |
f8730614b331dc3e82ec7ef4e8fd5735a4f6aa75 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH9/EX9.6/example6.sce | 685332f8f7eacc48335555ca28097d4ab3ba06a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,044 | sce | example6.sce | clc
clear
//input data
H=60//Head on the pelton wheel in m
N=200//Speed of the pelton wheel in rpm
P=100//Power developed by the pelton wheel in kW
Cv=0.98//Velocity coefficient
UC1=0.45//Speed ratio
n0=0.85//Overall efficiency of the wheel
g=9.81//Acceleration due to gravity in m/s^2
dw=1000//Density of water in kg/m^3
//calculations
C1=Cv*(2*g*H)^(1/2)//Velocity of the jet in m/s
U=UC1*(2*g*H)^(1/2)//Velocity of the buckets in m/s
D=(60*U)/(3.1415*N)//Diameter of the wheel in m
Q=(P*10^3)/(dw*g*H*n0)//Discharge of the wheel in m^3/s
d=((4*Q)/(3.1415*C1))^(1/2)//Diameter of the jet in m
Z=15+(D/(2*d))+1//Number of buckets rounding off to nearest decimal as the final answer has a decimal value less than 0.5
w=5*d//Width of the buckets in m
de=1.2*d//Depth of the buckets in m
//output
printf('(a)Diameter of the wheel is %3.2f m\n(b)Diameter of the jet is %3.3f m\n(c)Number of buckets is %3.f\n(d)Size of the buckets is \n width of the bucket is %3.3f m\n Depth of the bucket is %3.3f m',D,d,Z,w,de)
|
44b2f216a8c9b4dd3a59f2a03480e47ad935326e | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/elem/asinh.sci | 0f6a4a6f9f15ee680e552ff8a3245e69ce091e6d | [
"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 | 343 | sci | asinh.sci | function t=asinh(x)
// Element wise Hyperbolic sine inverse of x
// Entries of x must be in ]-1,i[
// Entries of t are in ]-inf,inf[ x ]-pi/2,pi/2[
// ]-inf, 0 ] x [-pi/2]
// and [ 0 ,inf[ x [ pi/2]
//!
// Copyright INRIA
if type(x)<>1 then error(53),end
t=log(x+sqrt(x.*x+ones(x)))
|
cfa6d948c9fa968bd4fff8f1ca204ce462c2935b | 449d555969bfd7befe906877abab098c6e63a0e8 | /615/CH10/EX10.1/10_1.sce | 23a164ee2b49e4aeb9978a7586eca347b7fee106 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 517 | sce | 10_1.sce | //polymer chemistry//
//example 10.1//
N1=5;//no of molecules//
N2=10;
N3=20;
N4=20;
N5=10;
M1=5000;//molecular mass of each molecule//
M2=6000;
M3=10000;
M4=15000;
M5=25000;
M=(M1*N1+M2*N2+M3*N3+M4*N4+M5*N5)/(N1+N2+N3+N4+N5);//formula for number average molecular mass//
printf("The number average molecular mass is %f",M);
Mw=(N1*M1^2+N2*M2^2+N3*M3^2+N4*M4^2+N5*M5^2)/(M1*N1+M2*N2+M3*N3+M4*N4+M5*N5);//formula of weight-average molecular mass//
printf("\nThe weight average molecular mass is %f",Mw); |
b289544a0cbd1aa10bd671ad396d01eb8b64c914 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH1/EX1.36/ex1_36.sce | d61b9e8ab871b6048cfb93b3f77cf77c86cbbcc9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 815 | sce | ex1_36.sce | //Chapter-1, Example 1.36, Page 48
//=============================================================================
clc;
clear;
//INPUT DATA
Rs=25;//total resistance when two resistances are connected in series in ohms
Rp=6;//total resistance when two resistances are connected in parallel in ohms
//let individual resistances be R1 and R2 ohms
//CALCULATIONS
//Rs=(R1+R2)---eqn(1)
//Rp=((R1*R2)/(R1+R2))---eqn(2)
//let (R1*R2)=x
//let(R1-R2)=y
//solving eqn(1)and eqn(2)
x=Rs*Rp;//in ohms
y=sqrt((Rs)^2-(4*x));//eqn---(3)
//solving eqn(1) and eqn(3)
z=Rs+y;
R1=z/2;//resistance1 in ohms
R2=Rs-R1;//resistance2 in ohms
//OUTPUT
mprintf("Thus the individual resistances are R1=%d ohms and R2=%d ohms ",R1,R2);
//=================================END OF PROGRAM==============================
|
35efbe2e8318376bce53fc8acab6757a53be058c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2409/CH13/EX13.6/Ex13_6.sce | 0a67d26e2bd5836843daea8d1ecddeff36b4edc5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,585 | sce | Ex13_6.sce |
//Variable Decalration
LU=200 //Uplink propogation loss(dB)
LD=196 //Downlink propogation loss(dB)
GE=25 //Receiving gain of earth station(dB)
GE1=25 //Transmit gain of E1 in the direction of S(dB)
GS=9 //receive gain of S in the direction of E1(dB)
GS1=9 //Transmit gain of satellite S1 in the direction of E(dB)
GTE=48 //Transmit gain of E(dB)
GRE=48 //Receive gain of E(dB)
GRS=19 //Receive gain of S(dB)
GTS=19 //Transmit gain of S(dB)
US=-60 //Maximum power spectral density(dBJ)
US1=1 //Maximum power spectral density(uJ)
UE1=10 //Maximum power spectral density transmitted by earth station(uJ)
UE=-50 //Maximum power spectral density transmitted by earth station(dBJ)
k=-228.6
//Calculation
URS=UE+GTE+GRS-LU//Received power spectral density at satellite S(dB)
URE=US+GTS+GRE-LD//Received power spectral density at satellite E(dB)
y=URE-URS //Transmission gain for network R(dB)
I1=US+GS1+GE-LD //Interference received by earth station(dB)
I2=UE+GE1+GS-LU //Uplink Interference(dB)
delTE=I1-k //Earth station receiver input(dBK)
delTE=10**(delTE/10) //Earth station receiver input(K)
delTS=I2-k //Noise temperature at satellite receiver input(dBK)
delTSE=y+delTS //Noise Temperature rise(dBKelvin)
delTSE=10**(delTSE/10) //Noise Temperature rise(Kelvin)
delT=delTSE+delTE //Equivalent noise temperature rise
disp(URE)
disp(URS)
//Results
printf("The transmission gain is %.f dB",y)
printf("The interference levels I1 an I2 are %.f %.f dBJ respectively",I1,I2)
printf("The equivalent temperature rise overall is %.2f Kelvin",delT)
|
3327e00bb6e31f1b8323844653341b65a0541480 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH16/EX16.7/example7_sce.sce | 89e7ab3f1018eec2018f1d57be7cd99e41124431 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | example7_sce.sce | //chapter 16
//example 16.7
//page 689
printf("\n")
printf("given")
Vo=14;Vr3=.5;Ib=500*10^-9;f=1*10^3;
disp("square wave generator")
Vcc=Vo+1
UTP=Vr3;LTP=UTP;
I2=100*Ib;
R3=Vr3/I2
R2=(Vo-Vr3)/I2
t=1/(2*f)
V=UTP-(-LTP)
C1=.1*10^-6;
I1=(C1*V)/t
R1=Vo/I1 |
ddf9cabebdbb0f498e88815a87ee6771414fcdfd | 5f48beee3dc825617c83ba20a7c82c544061af65 | /tests/s/95.tst | 36f5ef49f387b62f1639a10ee8f904fa4894074d | [] | no_license | grenkin/compiler | bed06cd6dac49c1ca89d2723174210cd3dc8efea | 30634ec46fba10333cf284399f577be7fb8e5b61 | refs/heads/master | 2020-06-20T12:44:17.903582 | 2016-11-27T03:08:20 | 2016-11-27T03:08:20 | 74,863,612 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 26 | tst | 95.tst | int main(void)
{
++1--;
} |
a4f9f70c96404d982f0c149755e285b5ecf9599b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2273/CH3/EX3.1/ex3_1.sce | 4a2915242486500e90e888e756fb85a1162176bf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 805 | sce | ex3_1.sce | //calculate the weight of the conductor required
clear;
clc;
//soltion
//given
p=30*10^6;//watts// power to be transmitted
v=132*10^3;//volts//Line voltage
l=120*10^3;//m//length of 3 phase 3 wire line
n=0.9;//efficieny of the transmission line
pf=.8;//power factor
d1=1.78*10^-8;//ohm m//resistivity of copper
d2=2.6*10^-8;//ohm m//resistivity of aluminuim
D1=8.9*10^3;//(kg/m^3)//specific gravity of the copper
D2=2*10^3;//(kg/m^3)//specific gravity of the aluminium
printf("Weight of the conductor required \n\n");
printf("W=(3*d*l^2*P*D)/((1-n)*V^2*pf^2) kg\n\n\n");
W1=(3*d1*l^2*p*D1)/((1-n)*v^2*pf^2);
printf("Weight of coppper required= %d kg\n\n",round(W1/1000)*1000);
W2=(3*d2*l^2*p*D2)/((1-n)*v^2*pf^2);
printf("Weight of aluminuim required= %d kg\n\n\n",round(W2/100)*100);
|
2784894916d5ac2ec3c051885691b13da9e6429b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH9/EX9.21/example21.sce | 57175c34a9768d3414657e910baa97ee9474cb44 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,128 | sce | example21.sce | //Chapter-9 example 21
//=============================================================================
clc;
clear;
//input data
//dl1 = lamda/20;
//dl2 = lamda/30;
//dl3 = lamda/40;
//Calculations
//Rr = 80*(pi*pi)*(dl/lamda)^2 Radiation Resistance in ohms
//Rr1 = 80*(pi*pi)*(dl1/lamda)^2 Radiation Resistance in ohms
//Rr1 = 80*(pi*pi)*((lamda/20)/lamda)^2 Radiation Resistance in ohms
Rr1 =80*(%pi*%pi)*(1/20)^2 ;
//Rr2 = 80*(pi*pi)*(dl2/lamda)^2 Radiation Resistance in ohms
//Rr2 = 80*(pi*pi)*((lamda/30)/lamda)^2 Radiation Resistance in ohms
Rr2 =80*(%pi*%pi)*(1/30)^2 ;
//Rr3 = 80*(pi*pi)*(dl3/lamda)^2 Radiation Resistance in ohms
//Rr3 = 80*(pi*pi)*((lamda/40)/lamda)^2 Radiation Resistance in ohms
Rr3 =80*(%pi*%pi)*(1/40)^2 ;
//Output
mprintf('If Hertzian dipole length is lamda/20 then Radiation Resistance = %3.3f ohm\n If Hertzian dipole length is lamda/30 then Radiation Resistance = %3.3f ohm\n If Hertzian dipole length is lamda/40 then Radiation Resistance = %3.3f ohm\n',Rr1,Rr2,Rr3) ;
//=============end of the program==============================================
|
3ce05243762052dfd04e45bc286e373c34a444ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH18/EX18.19w/18_19w.sce | ebfaa6da92b5cb270afe4ff8aa0d698dbeeb1b7d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 479 | sce | 18_19w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 18.19w
//calculation of focal length of thin lens
//given data
R1=10; //radius of curvature(in cm) of first surface of given lens
R2=20; //radius of curvature(in cm) of second surface of given lens
mu=1.5; //refractive index of the material of lens
//calculation
f=1/((mu-1)*(1/R1-1/R2)); //lens maker's formula
disp(f,'focal length(in cm) of the given lens is');
|
3f0935a291ef3537971288b1d5568818504a439b | 93640402789b9a9d07c82958f433765f1e2a8397 | /part 1/Add4.tst | d108ea721d89e3089057a26cfd35e53fe14cfee8 | [] | no_license | Slayingripper/Z80-CPU | 7a6b71f9e59850c3d4492a7f1867f4e81be278ba | 451873966cf071f8088407300629994a8d33f13c | refs/heads/master | 2020-05-04T02:42:27.419333 | 2019-04-01T19:27:22 | 2019-04-01T19:27:22 | 178,932,396 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,001 | tst | Add4.tst | // This file is adapted from part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
load Add4.hdl,
output-file Add4.out,
compare-to Add4.cmp,
output-list carryIn%B3.1.3 a%B1.4.1 b%B1.4.1 out%B1.4.1 carryOut%B3.4.3;
set carryIn %B0,
set a %B0000,
set b %B0000,
eval,
output;
set a %B0000,
set b %B1111,
eval,
output;
set a %B1111,
set b %B1111,
eval,
output;
set a %B1010,
set b %B0101,
eval,
output;
set a %B0110,
set b %B0011,
eval,
output;
set a %B0110,
set b %B1110,
eval,
output;
set a %B1000,
set b %B0111,
eval,
output;
set a %B1000,
set b %B1000,
eval,
output;
set carryIn %B1,
set a %B0000,
set b %B0000,
eval,
output;
set a %B0000,
set b %B1111,
eval,
output;
set a %B1111,
set b %B1111,
eval,
output;
set a %B1010,
set b %B0101,
eval,
output;
set a %B0110,
set b %B0011,
eval,
output;
set a %B0110,
set b %B1110,
eval,
output;
set a %B1000,
set b %B0111,
eval,
output;
set a %B1000,
set b %B1000,
eval,
output; |
a87ea242fcff443da3c166da62903dc2f0c3ded6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH3/EX3.10/example_3_10.sce | 226c2ece3400717fcc63c8e8ad23d0ec8ed61b18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 84 | sce | example_3_10.sce | syms s t R C
C=R*(1+2*%e^-s)/(2*s^2 + 2*s +1)
disp(C/R,'transfer function=')
|
6eaf0c5f97c229b60bc87f98637837d84d9d2d33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH2/EX2.58/EX_2_58.SCE | 81acf1fb39523134369123cc6783ab87a9655f36 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 376 | sce | EX_2_58.SCE | // Example 2.58:ressitive paramters
clc;
clear;
close;
Ic= 2.6; //in milli amperes
Vt=26;//volatge
ft=500;//frequency in mega hertz
Cbc=3;//in pico farad
rbb=100;//in ohms
rbe=1;//IN KILLO OHMS
gm=Ic/Vt;//transconductance
Beta= gm*rbe*10^3;//
Cbe= (((gm)/(2*%pi*ft*10^6))-Cbc*10^-12)*10^12;//in pico farad
disp(gm,"transconductance")
disp(Cbe,"in pico farad")
|
cc6a9228507049326b459a03307e2edf11b0a8b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2855/CH9/EX9.27/Ex9_27.sce | c0afd211b8fd3d2f179d11c58cf6888f1ffbb68b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 619 | sce | Ex9_27.sce | //Chapter 9
//page no 340
//given
clc;
clear all;
a=4; //in micrometer
V=2.4;
aw=1; //in degree
NA1=0.2;
n1=1.45; //refractive index
y=1; //in micrometer
omega=a*[0.65+1.62*V^-1.5+2.88*V^-6]/sqrt(2);
printf("\n Normalised spot view (w)= %0.2f micrometer",omega);
Lsml=2.17*(y/omega)^2;
printf("\n Insertion loss due to lateral,Lsm= %0.2f dB",Lsml); //answer is wrong in book
Lsmg=2.17*(aw*%pi/180*omega*n1*V/a/NA1)^2;
printf("\n Insertion loss due to angular,Lsm= %0.2f dB",Lsmg);
printf("\n Total Insertion loss,Lsmtotal= %0.2f dB",Lsml+Lsmg);
|
df9a83bcd8e47e4c145ccac81cc9b4fd5f5c5ce1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH4/EX4.27/Ex4_27.sce | 42c166d918daa1a2014e158b3e4e746e30a4f6f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 912 | sce | Ex4_27.sce | clc;
Vt=230;//output voltage
Ra=0.3;//armature circuit resistance
Rf=160;//field circuit resistance
Il=40;//line current at full load & rated voltage
Ia1=3.33//armature current at rated voltage & no load speed of 1000 rpm
//No load counter emf is-
Ea1=Vt-Ia1*Ra;
If=Vt/Rf;//field current
//At full load armature current is-
Ia2=Il-If;
Ea2=Vt-Ia2*Ra;//Counter emf at full load
//At full load, the field flux is-
//Phi_2=0.96*phi_1
//The conter emf Ea, is given by- Ea=Ka*phi*Wm
//Ea1/Ea2=(Ka*phi_1*Wm1)/(Ka*phi_2*Wm2)=(phi_1*n1)/(phi_2*n2) or 229/218.43=(1000*phi_1)/n2*(0.96*phi_1)...(1)
//from equation (1)
n2=995;//full load speed
//At full load, Ea2=Ka*phi_2*Wm
//Ka*phi_2=Ea2/Wm
//Electromagnetic or developed, torque at full load is, Te=Ka*phi_2*Ia2
Te=(Ea2*60)/(2*%pi*n2)*Ia2;//Electromagnetic torque developed.
printf('Electromagnetic or developed, torque at full load is %f.',Te);
|
3dba9b7a48c3861506bc7ddbfb9da79515890044 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3440/CH2/EX2.7/Ex2_7.sce | be1154cfc6f09595393b39ca208dfabd41106147 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sce | Ex2_7.sce | clc
T=300 //K
k=8.617*10^-5 //eV/K
q=1.6*10**-19 //C
m0=0.91*10^-30//kg
ni=2.25*10^6//cm^-3
nn0=10^16//cm^-3
taun=2*10^-9//sec
taup=2*10^-9//sec
pn0=ni^2/nn0
disp(pn0,"before illumination pn0 in cm^-3 is")
GL=(10^13)/(1*10^-6)
nn=nn0+taun*GL
disp(nn,"after illumination nn in cm^-3 is") //textbook ans is wrong
pn=pn0+taup*GL
disp(pn,"after illumination pn in cm^-3 is")
|
8c1c1711876e2db7f9ca1ea1205971d30a758677 | 449d555969bfd7befe906877abab098c6e63a0e8 | /135/CH3/EX3.17/EX17.sce | e996728352c8292735825454d55a5d6e00ceabed | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 666 | sce | EX17.sce | // Example 3.17: (a) R, maximum possible value of load current
// (b) Range of V
clc, clear
Vz=50; // Diode voltage in volts
Izmin=5e-3; // in amperes
Izmax=40e-3; // in amperes
disp("Part (a)");
ILmin=0;
V=200; // Input voltage in volts
R=(V-Vz)/(Izmax-ILmin); // in ohms
ILmax=((V-Vz)/R)-Izmin; // in amperes
Rk=R*1e-3; // in kilo-ohms
ILmax=ILmax*1e3; // in miliamperes
disp(Rk,"R(kΩ) =");
disp(ILmax,"Maximum possible value of load current (mA) =");
disp("Part (b)");
IL=25e-3;
Vmin=Vz+R*(Izmin+IL); // in volts
Vmax=Vz+R*(Izmax+IL); // in volts
disp(Vmin,"Minimum value of V (V) =");
disp(Vmax,"Maximum value of V (V) ="); |
28479797d2e920164fe1a820dcd71b80ccecef2b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3860/CH1/EX1.21/Ex1_21.sce | f07a47cc568d1e69faa0171aa4967f97d242016b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 509 | sce | Ex1_21.sce | //Example 1.21: Overflow for unsigned numbers in Example 1.21(a) and for signed numbers in Example 1.21(b)
clc;
disp('Example 1.21(a)')
x=bitcmp(7,4) //finds complement of 5
y=1;
u=x+y //1 is added to the complement
w=5
z=w+u;
r = dec2bin(z); // binary equivalent of decimal number
disp('The binary number is = ');
disp(r)
disp('Example 1.21(b)')
x=7
y=5;
u=x+y //1 is added to the complement
r = dec2bin(u); // binary equivalent of decimal number
disp('The binary number is = ');
disp(r)
|
23fa1b979eba53b971f34576752034755da83d88 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2213/CH11/EX11.6/ex_11_6.sce | 41467a747ffb304bf1afeeb9f95dd5f54a315709 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex_11_6.sce | //Example 11.6: Current
clc;
clear;
close;
//given data :
format('v',8)
ix=200;//amperes
r=0.02;//in ohms
x=poly(0,"x");
p=-19+12*x+0*x^2;//
y=roots(p);//km
ipx=ix*(3-y);//in amperes
inx=2*ix;//in amperes
it=ipx+inx;//in amperes
disp(it,"current through negetive booster in amperes is")
|
64e6dc65587d52c668c1949a79212b22f8ad4206 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH10/EX10.13/13.sce | 6af5efa36b9f08b3c5d1ffdd9adf4ccd344a1fa0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 713 | sce | 13.sce | clc
disp("(i) Mass of spray water required")
//At 22 0c
p_vs=0.0264; //bar
phi_3=0.55;
p_t=1.0132; //bar
p_v3=phi_3*p_vs;
W3=0.622*p_v3/(p_t-p_v3);
//At 3 0C
p_vs1=0.0076; //bar
p_v1=p_vs1;
W1=0.622*p_v1/(p_t-p_v1);
R=287;
T_3=295; //K
v=R*T_3/(p_t-p_v3)/10^5;
m=(W3-W1)/v;
disp(" Mass of spray water required=")
disp(m)
disp("kg moisture/m^3")
disp("(ii) Temperature to which the air must be heated")
t_dp=12.5; //0C
cp=1.005;
t_db3=22; //0C
h_g3=2524; //kJ/kg
h_vapour3=h_g3 + 1.88*(t_db3 - t_dp);
W2=0.0047;
h_g2=2524; //kJ/kg
h4=41.87;
t_db2=(cp*t_db3 + W3*h_vapour3 -W2*h_g2 + 1.88*W2*t_dp - (W3-W2)*h4)/(cp-W2*1.88);
disp("t_db2=")
disp(t_db2)
disp("0C") |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.