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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4b1f660a325456ef283f158c2cefbc7cfdde38b7 | c7ca7c2793552f5f73495c73ad14a36f10d92e80 | /VISA/tp_ensembles_flou/generation.sce | bd69b81169bb03c747704abd64fdd68cb08e3750 | [] | no_license | UchihaMadamiaow/Lille1-Master-Info | f402fb69497b1dd100236ed634590deae983bbcc | 353b05ede296d729bc66b0cec8fa146a3552448b | refs/heads/master | 2021-09-07T19:14:09.730841 | 2018-02-27T19:13:57 | 2018-02-27T19:13:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,415 | sce | generation.sce |
basse=zeros(1,40);
moyenne=zeros(1,40);
haute=zeros(1,40);
temperature=zeros(1,15);
for i=1:10
basse(i)=1;
end
for i=11:20
basse(i)=1-(i-10)*0.1;
end
for i=11:20
moyenne(i)=(i-10)*0.1;
end
for i=21:30
moyenne(i)=1-(i-20)*0.1;
end
for i=21:30
haute(i)=(i-20)*0.1;
end
for i=31:40
haute(i)=1;
end
for i=8:10
temperature(i)=(i-8)*0.5;
end
for i=11:15
temperature(i)=1;
end
function exercice1()
clf();
plot2d(basse, style=2);
plot2d(moyenne, style=3);
plot2d(haute, style=5);
plot2d(1:40, max(basse,moyenne));
endfunction
function exercice2()
clf();
minimum=zeros(1,40);
maximum=zeros(1,40);
minimum=minFromE(basse,moyenne);
minimum=minFromE(minimum,haute);
maximum=maxFromE(moyenne,haute);
maximum=maxFromE(maximum,basse);
plot2d(minimum, style=2);
plot2d(maximum, style=5);
endfunction
function exercice3(temp)
clf();
a=zeros(1,15);
indice=basse(temp);
for i=1:15
a(i)=min(temperature(i), indice);
end
plot2d(temperature, style=5);
plot2d(a, style=2);
endfunction
function a=minFromE(e1, e2)
len=length(e1);
for i=1:len
a(i)=min(e1(i),e2(i));
end
endfunction
function a=maxFromE(e1, e2)
len=length(e1);
for i=1:len
a(i)=max(e1(i),e2(i));
end
endfunction
//exercice1();
//exercice2();
exercice3(12);
|
52708b7c9067b5d899b2ff9fdc3a599ca806a10c | c247bce84b3facd1a13b48e7417327c40c8b3898 | /FOPID/foBPF.sci | f7e8310e3edac4a21a9add4b07fd8a81c8ca9b52 | [] | no_license | AstroSayan/FuzzyFOPID | 9de9fa761301da6ae1f5dfe7b8e7e8214f3b472b | ea0e31e8fa0b36e407de9dfa466cf46b583e4103 | refs/heads/main | 2023-04-26T19:18:30.590337 | 2021-05-13T18:27:32 | 2021-05-13T18:27:32 | 367,137,779 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 489 | sci | foBPF.sci | function [H,wp]=foBPF(alpha,bita,wc,f,N,w)
s=poly(0,'s'); s=syslin('c',s/((0*s)+1));
exec('C:\Users\SAYAN\Documents\FuzzyFOPID\fod.sci');
alphaTemp=fix(alpha);
alp=alpha-alphaTemp;
bitaTemp=fix(bita);
bi=bita-bitaTemp;
num=(wc^alpha)*((s^bitaTemp)*fod(bi,f,N,w));
den=((s^alphaTemp)*fod(alp,f,N,w))+(wc^alpha);
H=num/den;
wptemp=sqrt(alpha^2+4*bita*(alpha-bita)*tan(alpha*%pi/2)^2);
wp=wc*((cos(alpha*%pi/2)*((2*bita-alpha)+(wptemp)))/(2*(alpha-bita)))^(1/alpha);
endfunction
|
92daa4266935efa10b93a93f3a62f12db7b58b04 | 449d555969bfd7befe906877abab098c6e63a0e8 | /851/CH3/EX3.4/Example3_4.sce | 138a4bac1a08a95b73d0ab0a870afaecbceb1905 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example3_4.sce | //clear//
//Caption:Matched Filter output for Noise-like signal
//Example3.4: Matched Filter output for noise like input
clear;
close;
clc;
phit =0.1*rand(1,10,'uniform');
hopt = phit;
phi0t = convol(phit,hopt);
phi0t = phi0t/max(phi0t);
subplot(2,1,1)
a =gca();
a.x_location = "origin";
a.y_location = "origin";
a.data_bounds = [0,-1;1,1];
plot2d([1:length(phit)],phit);
xlabel(' t')
ylabel(' phi(t)')
title('Figure 3.16 (a) Noise Like input signal')
subplot(2,1,2)
a =gca();
a.x_location = "origin";
a.y_location = "origin";
a.data_bounds = [0,-1;1,1];
plot2d([1:length(phi0t)],phi0t);
xlabel(' t')
ylabel(' phi0(t)')
title('Figure 3.16 (b) Matched Filter output')
|
813b29276948ab6c3884047630bca4e6a91a3776 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2858/CH5/EX5.1/Ex5_1.sce | bdb33eea1cfd76069997e78d0b5f1dcdf94eb452 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 353 | sce | Ex5_1.sce | //example 5.1
clc; funcprot(0);
//first solution
B1=2.5;
B2=B1;
z=12.5;
L1=5;
L2=L1;
m=B1/z;
n=B2/z;
//from table of tthe values using m,n
q=2000;
I=0.0328;
deltasigma=q*4*I;
disp(deltasigma,"change in pressure in lb/ft^2");
//second solution
Ic=0.131;//from table
deltasigma=q*Ic;
disp(deltasigma,"change in pressure in lb/ft^2");
|
11c2c74a2501bf97280a50e514adc093e865f29c | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH29/EX29.03/29_03.sce | 90da727af28cf93224ede86ec7b5464d97c9e982 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,461 | sce | 29_03.sce | //Problem 29.03: A coil of inductance 120 mH and resistance 150 ohm is connected in parallel with a variable capacitor across a 20 V, 4 kHz supply. Determine for the condition when the supply current is a minimum, (a) the capacitance of the capacitor, (b) the dynamic resistance, (c) the supply current, (d) the Q-factor, (e) the band-width, (f) the upper and lower -3 dB frequencies, and (g) the value of the circuit impedance at the -3 dB frequencies.
//initializing the variables:
R = 150; // in ohms
L = 0.120; // IN Henry
V = 20; //in volts
fr = 4000; // in Hz
//calculation:
//capacitance, C
C = 1/(L*[(2*%pi*fr)^2 + ((R^2)/(L^2))])
Rd = L/(C*R)
//Current at resonance
Ir = V/Rd
wr = 2*%pi*fr
//Q-factor at resonance, Q = wr*L/R
Qr = wr*L/R
//bandwidth,.(f2 − f1)
bw = fr/Qr
//upper half-power frequency, f2
f2 = (bw + ((bw^2) + 4*(fr^2))^0.5)/2
//lower half-power frequency, f1
f1 = f2 - bw
//impedance at the −3 dB frequencies
Z = Rd/(2^0.5)
printf("\n\n Result \n\n")
printf("\n (a)the capacitance of the capacitor,C is %.2E F",C)
printf("\n (b)dynamic resistance %.2E ohm ",Rd)
printf("\n (c)Current at resonance, Ir is %.3E A ",Ir)
printf("\n (d)Q-factor at resonance is %.2f ",Qr)
printf("\n (e)bandwidth is %.0f Hz ",bw)
printf("\n (f)the upper half-power frequency, f2 is %.0f Hz and the lower half-power frequency, f1 is %.0f Hz ",f2,f1)
printf("\n (g)impedance at the −3 dB frequencies is %.3E ohm",Z) |
ba304e6ac48309656288fdf6ef43b4d8c5310f3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /911/CH7/EX7.9.b/ex_7_9_b.sce | 223249024b0a981ba30c2c8c0387d707fad06e82 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 642 | sce | ex_7_9_b.sce | // example 7.9(b)//
clc
//clears the screen//
clear
//clears all variables//
disp('here ABCD = 1011 and G1''=1 and G2''=1')
r= input('Enter the value of G1'' (0 or 1) : ' );
//accepting the inputs from the user//
t=input('Enter the value of G2'' (0 or 1): ' );
sel = input ('Enter the values of ABCD : ' );
strb = bitcmp(bitand (r,t),1);
if strb ==0 then
//checking whether strobe is high or low//
if sel ==1100 then
y= 'The two pulses are steered to the Y12 output ' ;
else
y= 'The output Y12 remains in the High state ';
end
else
y='The output Y12 remains in the High state ' ;
end
disp (y)
//displaying result// |
f0906b0ab8e6fc93b04c8c0570877af74cf8b5da | 449d555969bfd7befe906877abab098c6e63a0e8 | /3556/CH9/EX9.10/Ex9_10.sce | 517b83fdcc052fae21c1705d4c4abd4f2c612f88 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 712 | sce | Ex9_10.sce | clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 2 : AC Circuits
// Chapter 9 : Sinusoids and Phasors
// Example 9 - 10
clear; clc; close;
//
// Given data
Z1 = complex(0.0000,-10.0000);
Z2 = complex(3.0000,-2.0000);
Z3 = complex(8.0000,10.0000);
//
// Calculations Zp = Z2//Z3
Zp = (Z2*Z3)/(Z2+Z3);
// Calculations Ztot
Zin = Z1 + Zp
Zin_real = real(Zin);
Zin_imaginer = imag(Zin);
//
disp("Example 9-10 Solution : ");
printf(" \n Zin_real = Real Part of Zin = %.3f Ohm",Zin_real)
printf(" \n Zin_angle = Imaginer Part of Zin = %.3f Ohm",Zin_imaginer)
|
aeb991265995ef600a35ff7d609ac0c9b1548ec4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH11/EX11.7/7.sce | db2d08679ea31fe6a416091cd5bf44c0a5fe1efe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 679 | sce | 7.sce | clc
clear
//INPUT DATA
l=12*10^-3//length of semi conductor crystal in m
b=1*10^-3//breadth of semi conductor crystal in m
t=1*10^-3//thickness of semi conductor crystal in m
I=20*10^-3//current in A
Vh=37*10^-6//voltage measured across the width in V
B=0.5//magnetic flux density in Wb/m^2
e=1.6*10^-19//charge of electron in coulombs
//CALCULATION
RH=((Vh*t)/(I*B))/10^-6//Hall coefficient of semiconductor in C^-1 m^3 *10^-6
ne=(1/(RH*10^-6*e))/10^23//The density of the charge carrier in electrons/m^3*10^23
//OUTPUT
printf('Hall coefficient of semiconductor is %3.1f*10^-6 C^-1 m^3\n The density of the charge carrier is %3.2f*10^23 electrons/m^3',RH,ne)
|
17d9630ca8cc487f3ea52910d57d95bb399f96c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH9/EX9.10/Ex9_10.sce | 7f0b7ad7004d7f15941322598dff539a1ad848d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,038 | sce | Ex9_10.sce | // Initilization of variables
W=24 // kN // Load acting at pt C
Laf=12 // m // length of the tie beam
l=4 // m// length of each member in the tie
h=3 // m // height of the slings
Lae=8 // m
// Calculations
s=sqrt((l^2)+(h^2)) // m // sloping length
// From triangle BCD,
theta=acosd(h/s)
// SUPPORT REACTIONS
Rf=(W*l)/Laf // kN // take moment at A
Ra=W-Rf // kN // sum Fy=0
// now pass a sectio mn through the truss and consider te equilibrium of the left hand portion
Fce=(Ra*l)/h // kN (T) // Take moment at B
Fbd=((W*l)-(Ra*Lae))/h // kN (C) // take moment at E
Fbe=(Ra-W)/cosd(theta) // kN
Fbd=(-Ra*l)/h // kN // take moment at C
Fce=((Ra*Lae)-(W*l))/h // kN (T) // take moment at D
Fcd=(W-Ra)/cosd(theta) // kN (T) // sum Fy=0
// Resuts
clc
printf('(1) The axial force in the bar CE (Fce) is %f kN \n',Fce)
printf('(2) The axial force in the bar BD (Fbd) is %f kN \n',Fbd)
printf('(3) The axial force in the bar BE (Fbe) is %f kN \n',Fbe)
printf('(4) The axial force in the bar CD (Fcd) is %f kN \n',Fcd)
|
627266826d53d279004fab5e733c352904229121 | 8458ae69238b4e9e89cec1f6bdb30f6d009e3053 | /scripts/PlotFrequency.sce | 047ca7282ba6b381e407ce14908094532c9bb0a4 | [] | 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 | 659 | sce | PlotFrequency.sce | ///////////////////////////////////////////////////////////
// 入力波形の周波数特性をプロット
///////////////////////////////////////////////////////////
clear();
cd(get_absolute_file_path('PlotFrequency.sce'));// ディレクトリ変更
exec( '../plots/PlotFrequency.sci');
// ファイル入力
inputPath = '../data/';
inputFilename = 'white_10sec_1ch_16bit_48k.wav';
[input, samplingRate, bits] = wavread(inputPath + inputFilename); // ファイル読み込み
// プロット
h = scf(1);
clf();
displayRect=[100, -90, 10000, 3]; // 表示領域
PlotFrequency(input, samplingRate, 'hn', h, 2, displayRect); // 出力波形
xgrid();
|
678b6f7326f0e1eca62c08dc9626b2cd7f69dbed | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH5/EX5.50/50.sce | 24ba8cb3c43f495843215037365cfe1fde0e5899 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 821 | sce | 50.sce | clc
cp=2.093; //kJ/kg0C
c=4.187;
Lf=333.33; //kJ/kg
m=1; //kg
T0=273; //K
T1=268; //K
T2=298; //K
Q_s=m*cp*(T0-T1);
Q_f=m*Lf;
Q_l=m*c*(T2-T0);
Q=Q_s+Q_f+Q_l;
disp("(i) Entropy increase of the universe")
ds_atm=-Q/T2;
ds_sys1=m*cp*log(T0/T1);
ds_sys2=Lf/T0;
ds_sys3=m*c*log(T2/T0);
ds_total=ds_sys1+ds_sys2+ds_sys3;
ds_universe=ds_total+ds_atm;
disp("Entropy increase of universe=")
disp(ds_universe)
disp("kJ/K")
disp("(ii) Minimum amount of work necessary to convert the water back into ice at – 5°C, Wmin.")
dS_refrigerator=0;
// dS_atm=(Q+W)/T;
// dS_universe >= 0
// dS_system=(s1-s4)
//dS_universe=dS_system+dS_refrigerator+dS_atm
dS_system=-1.6263; //kJ/kg K
T=298; //K
//For minimum work
W_min=T*(-dS_system)-Q;
disp("Minimum work done =")
disp(W_min)
disp("kJ") |
fbfd1e63d56277eae751313036052e178a7ec756 | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/allpassshift/test_12.sce | afb5d6e81d7b69d2e5542a0f759afcbf64bd76e6 | [] | no_license | shreniknambiar/FOSSEE-DSP-Toolbox | 1f498499c1bb18b626b77ff037905e51eee9b601 | aec8e1cea8d49e75686743bb5b7d814d3ca38801 | refs/heads/master | 2020-12-10T03:28:37.484363 | 2017-06-27T17:47:15 | 2017-06-27T17:47:15 | 95,582,974 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 309 | sce | test_12.sce | // Test # 12 : Valid input test case #1
exec('./allpassshift.sci',-1);
[n,d]=allpassshift(0.4541,0.7584);
disp(d);
disp(n);
//
//Scilab Output
//d= 1. 0.1300301 0.
//n =0. - 0.1300301 - 1.
//
//Matlab Output
//d= 1.0000 0.1300 0
//n= 0 -0.1300 -1.0000
|
2dbc40d0250ab2812fc88e2fe0c34f65737b537e | e8014c7bc123c7a3f3e549fac46e9794e303d4e0 | /src/bid_test.tst | 2bef7cdb1916c522d1ffa9ac4c0c1e9c73cb9550 | [] | no_license | GEoURo/DBS_Lab1 | 44810d235d6fd5e41cd9adaf1b17622077c22a58 | ba17156c3ea371443b0b0e8e73ee26cab0741a87 | refs/heads/master | 2020-05-15T20:19:15.816554 | 2019-04-28T11:08:38 | 2019-04-28T11:08:38 | 182,477,963 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 206 | tst | bid_test.tst | PL/SQL Developer Test script 3.0
9
-- Created on 2019/4/20 by JERRY
declare
-- Local variables here
i integer;
begin
-- Test statements here
change_bid('00000001',
'B001');
end;
0
0
|
d1adb71d17079fbe09b5df13c49e7de1ea34e5b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH2/EX2.14/ex2_14.sce | 5f961f8d3d5a32f081fc9a9fbf20490ad723b9a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,073 | sce | ex2_14.sce | // Exa 2.14
format('v',6);clc;clear;close;
// Given data
V = 150;//voltage in V
R1 = 50;//resistance in k ohm
R2 = 100;//resistance in k ohm
V_AB = R1 * (V/(R1+R2));// in V
sensitivity = 1;// in k ohm/V
R = sensitivity*V_AB;// in k ohm
V_AB1 = ((R1*R)/(R1+R))*( V/(R2+(R1*R)/(R1+R)) );//voltage reading on the voltmeter in V
disp("Part (i) When voltmeter sensitivity is 1 kΩ/volt : ")
disp(V_AB1,"The voltage reading on the voltmeter in V is : ")
Per_Error= ((V_AB-V_AB1)/V_AB)*100;// %e in %
disp(Per_Error,"The percentage error in % is : ")
sensitivity = 25;// in k ohm/V
R = sensitivity*V_AB;// in k ohm
Rnet = (R1*R)/(R1+R);// assumed for calculation
V_AB2 = Rnet*( V/(R2+Rnet) );// in V
disp("Part (ii) When voltmeter sensitivity is 25 kΩ/volt : ")
disp(V_AB2,"The voltage reading on the voltmeter in V is : ")
Per_Error = ((V_AB-V_AB2)/V_AB)*100;// %e in %
disp(Per_Error,"The percentage error in % is : ")
disp("Thus the voltmeter with low sensitivity shows more error");
disp(" while voltmeter with high sensitivity shows less error.")
|
bcb053aeb787d126385d1f4c8a8509d512d70366 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2300/CH3/EX3.11.1/Ex3_1.sce | 05cd35166083ce0d3c01aacc95d14db58f3208c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 536 | sce | Ex3_1.sce |
//scilab 5.4.1
//WINDOWS 7 Operating System
//chapter 3 PROPERTIES OF SEMICONDUCTORS
//example 1
clc
//Given data
T=300; //K
ni=1.5*10^16; //Intrinsic carrier concentartion per m^3
yn=0.13; //Electron mobility in m^2/(V*s)
yp=0.05; //Hole mobility in m^2/(V*s)
e=1.6*10^-19; //Charge of electron in C
//Required Formula
Gi=e*ni*(yn+yp); //Intrinsic conductivity
Ri=1/Gi; //Intrinsic resistivity
disp('S/m',Gi,'Intrinsic conductivity=');
disp('ohm*meter',Ri,'Intrinsic resistivity=');
//End
|
711c51bacc4d52e77cf39fe94aae6b91e2d1d97e | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/ofemdemo/demo_mode.sce | 19d0c3e7dc14d437fb10b2dfde7b1323663bbe7a | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,866 | sce | demo_mode.sce | //=========================================================//
// DEMO_MODE //
//=========================================================//
fegui();
//---------------------------------------------------------//
// 1. Geometry declaration with femesh //
// See section 3.1.2 of the tutorial //
//---------------------------------------------------------//
FEnode=[1 0 0 0 -.5 -.5 0;2 0 0 0 -.5+1/6 -.5 0;3 0 0 0 -.5 .5-1/6 0
4 0 0 0 -.5+1/6 .5-1/6 0;5 0 0 0 -.5 .5 0;6 0 0 0 -.5+1/6 .5 0
7 0 0 0 .5-1/6 .5 0;8 0 0 0 .5 .5 0;9 0 0 0 .5-1/6 .5-1/6 0
10 0 0 0 .5 .5-1/6 0;11 0 0 0 .5-1/6 -.5 0;12 0 0 0 .5 -.5 0];
FEelt = [%inf abs('quad4');4 6 5 3 1 1;9 10 8 7 1 1];
FEel0 = [%inf abs('quad4');1 2 4 3 1 1];
femesh(';divide 5 1;addsel;');
FEel0 = [%inf abs('quad4');11 12 10 9 1 1];
femesh(';divide 5 1;addsel;');
FEel0 = [%inf abs('quad4');4 6 7 9 1 1];
femesh(';divide 4 1;addsel;');
femesh('join group 1:4');
femesh(';selgroup1;extrude 10 0 0 .25;');
FEelt = FEel0; FEel0 = [];
FEelt(2:size(FEelt,1),1:8)=FEelt(2:size(FEelt,1),[5:8 1:4]);
model = femesh('model');
//---------------------------------------------------------//
// 2. Handling material properties //
// See section 3.1.4 of the tutorial //
//---------------------------------------------------------//
model.pl = [1 1 2e11 .30 7800 (190e9/2/(1+.29))];
//---------------------------------------------------------//
// 3. Boundary conditions and constraints //
// See section 3.2.1 of the tutorial //
//---------------------------------------------------------//
model = fe_case(model,'fixdof','base','z==0');
//---------------------------------------------------------//
// 4. Assembly //
// See section 3.3.1 of the tutorial //
//---------------------------------------------------------//
model = fe_mk(model);
model.DOF = model.Stack(3).entries.DOF;
//---------------------------------------------------------//
// 5. Normal modes //
// See section 3.3.3 of the tutorial //
//---------------------------------------------------------//
def=struct('def',[],'DOF',model.DOF,'data',[]);
[tmpdef,tmpdata] = fe_eig(model.K(1).entries,model.K(2).entries,[1 4 0 11]);
def.def = tmpdef; def.data = tmpdata;
StrainEnergy = fe_stres('ener',model,def);
//---------------------------------------------------------//
// 6. Visualization of deformed structure //
// See section 3.4 of the tutorial //
//---------------------------------------------------------//
feplot(model.Node,model.Elt,def.def,model.DOF,1,StrainEnergy);
|
9b65550afc15a48db7e75dcf3c74bb4f1736a9b4 | cc2d34f24c651a9d4b81fc3ebd32ef5a23c5ef13 | /SCILAB5/test_manager.sci | 9b21df2bd75329b56829d5c16aa6d8a1365ee0f4 | [] | no_license | b4ss3k/D_DSP | 85cfacf4e948109faa33cbc424390b44f53cc197 | aabcc12fe0305e29713de6c0538428dd9ef323d3 | refs/heads/master | 2020-04-06T04:46:40.053395 | 2015-08-05T01:24:16 | 2015-08-05T01:24:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,157 | sci | test_manager.sci | //
//Example of how to use the fsfirlin macro for the design
//of an FIR filter by a frequency sampling technique.
//
//Two filters are designed : the first (response hst1) with
//abrupt transitions from 0 to 1 between passbands and stop
//bands; the second (response hst2) with one sample in each
//transition band (amplitude 0.5) for smoothing.
//
if testactor==1 then
hd=[zeros(1,15) ones(1,10) zeros(1,39)];//desired samples
hst1=fsfirlin(hd,1);//filter with no sample in the transition
hd(15)=.5;hd(26)=.5;//samples in the transition bands
hst2=fsfirlin(hd,1);//corresponding filter
pas=1/prod(size(hst1))*.5;
fg=0:pas:.5;//normalized frequencies grid
plot2d([1 1].*.fg(1:257)',[hst1' hst2']);
else
// 2nd example
hd=[0*ones(1,15) ones(1,10) 0*ones(1,39)];//desired samples
hst1=fsfirlin(hd,1);//filter with no sample in the transition
hd(15)=.5;hd(26)=.5;//samples in the transition bands
hst2=fsfirlin(hd,1);//corresponding filter
pas=1/prod(size(hst1))*.5;
fg=0:pas:.5;//normalized frequencies grid
n=prod(size(hst1))
plot(fg(1:n),hst1);
plot2d(fg(1:n)',hst2',[3],"000");
end;
|
4d41d0ef2589c28fa148340c0d9727ec759454f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1358/CH7/EX7.11/Example711.sce | 15eb5cbeb406e3c762e79afa542cd654d760d333 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,630 | sce | Example711.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 7, Example 11")
disp("The overall efficiency of turbine from nozzle inlet to diffuser outlet is given by")
disp("etatt = (T01 - T03)/(T01 - T03ss)")
disp("Turbine work per unit mass flow")
disp("W = U2^2 = Cp(T01 - T03); (Cw3 = 0)")
disp("Now using isentropic p–T relation")
disp("T01 (1 - T03ss/T01) = T01(1 - (P03/P01)((gamma-1)/gamma)")
disp("Therefore")
disp("U2^2 = etatt*Cp*T01(1 - (P03/P01)^((gamma-1)/gamma)")
etatt = 0.9;
Cp = 1147;
T01 = 1145;
P03 = 100;
P01 = 310;
U2 = (etatt*Cp*T01*(1 - (P03/P01)^0.2498))^0.5
disp("Impeller tip speed, U2 = 539.45 m/s")
disp("The Mach number of the absolute flow velocity at nozzle exit is given by")
disp("M = C1/a1 = U1/alpha1*sin(alpha1)")
disp("Since the flow is adiabatic across the nozzle, we have")
disp("T01 = T02 = T2 + C2^2/2Cp = T2 + U2^2/2Cp(sin(alpha2))^2")
disp("or T2/T01 = 1 - U2^2/2CpT01(sin(alpha2))^2; but Cp = gamma*R/(gamma - 1)")
disp("Therefore; T2/T01 = 1 - U2^2*(gamma - 1)/(2gammaRT01(sin(alpha2))^2")
disp(" = 1- U2^2*(gammaa-1)/(2*a01^2 * (sin(alpha2))^2)")
disp("But (T2/T01)^2 = a2/a01 = a2/a02; since T01 = T02")
disp("and a2/a02 = U2/M2*a02*sin(alpha2)")
disp(" Therefore (U2/M2*a02*sin(alpha2))^2 = 1 - U2^2*(gammaa-1)/(2*a01^2 * (sin(alpha2))^2)")
disp("and 1 = (U2/a02*sin(alpha2))^2 *((gamma - 1)/2 + 1/M2^2)")
disp("or (sin(alpha2))^2 = (U2/a02)^2 * ((gamma - 1)/2 + 1/M2^2)")
disp("Therefore nozzle angle alpha2 = 75 degrees")
|
6ec0cb19edab23bb6660c26a3f80f431b47013f5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH6/EX6.18/6_18.sce | 52e008ddfa9367790d6e8f6e59a29f7eb99817de | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 304 | sce | 6_18.sce | //Chapter 6, Problem 18
clc;
Q=10*10^-3; //Charge
W=1.2; //Energy stored
V=(2*W)/Q; //Calculating voltage
C=Q/V; //Calculating capacitance
disp("(a)");
printf("Voltage = %f V\n\n",V);
disp("(b)");
printf("Capacitance = %f uF",C*10^6);
|
fc3488627b662bd4b6e70084c47bd2c414974713 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/scicos/get_rectangle.sci | 00a50148dbef197d6ad04710fbb59270f284bdab | [
"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 | 594 | sci | get_rectangle.sci | function [ox,oy,w,h,ok]=get_rectangle(xc,yc)
// Copyright INRIA
pat=xget('pattern')
xset('pattern',default_color(0))
dr=driver()
if dr=='Rec' then driver('X11'),end
//
rep(3)=-1
ox=xc
oy=yc
w=0;h=0
ok=%t
first=%t
pixmap=xget('pixmap')==1
while rep(3)==-1 do
xrect(ox,oy,w,h)
if pixmap then xset('wshow'),end
if first then rep=xgetmouse();else rep=xgetmouse(0),end
xrect(ox,oy,w,h)
if pixmap then xset('wshow'),end
xc1=rep(1);yc1=rep(2)
ox=mini(xc,xc1)
oy=maxi(yc,yc1)
w=abs(xc-xc1);h=abs(yc-yc1)
first=%f
end
if rep(3)==2 then ok=%f,end
driver(dr)
xset('pattern',pat)
|
5b52e476e6c18883578e05f0b779b8b028c4ed5d | da207569fa9aed2805e4deb68f9fa187bde74ccf | /S wave equation 1.sce | aa0bd79dad019c3474b4084450649853e2ff18c1 | [] | no_license | vishu-byte/Schrodinger-Equation-usinf-finite-difference-method-and-vector-spaces | 2707ec4478e684283c5bbf751552ce71209cdf20 | b927c379c1737d41f4201b6de00a830275c98900 | refs/heads/main | 2022-12-19T18:30:09.094509 | 2020-10-09T15:23:13 | 2020-10-09T15:23:13 | 302,677,969 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,957 | sce | S wave equation 1.sce | //TO SOLVE SPHERICAL WAVE SCHRODINGER EQUATION USING VECTOR SPACES AND FINITE DIFFERENCE METHOD
//BY VISHU SAINI
//7 OCT. 2020
//GIVEN WAVE EQUATION IS OF THE FORM
/*
y''= A(r)y(r)
y(0)=0
y(n)=0 lim n-->inf
*/
/* We write the above equation in form:
H|y> = E|y> ..(Eigen Value Problem)
where,
H=T+V (Hamiltonian Operator)
Also, ket |y> is a vector of N dimensional function space(N is user input)
*/
clc()
clear
//1.Initialize the problem
/*a.Define Constants */
c=1
Am=1e-10
hbar = 1973
e=3.795
m=0.511e6/c^2
k=m/(hbar)^2
/*b.Initialize Potential Function*/
function p=potential(r)
p = -(e^2)/r
endfunction
/*c.Boundary Conditions*/
a=0.00001
b=10
ya=0
yb=0
//Discrete N dimensional Vector Space
N=input("Enter dimension of Function Space N ")
h=(b-a)/(N-1) //step-size
/*a.Iniitalize R array(grid points)*/
for i=1:N
R(i,1)=0
end
R(1,1)= a
for i=2:N
R(i,1)=a+(i-1)*h
end
/*b.Initialize |y> */
for i=1:N
Y(i,1)=0
end
Y(1,1)=ya
Y(N,1)=yb
/*We will plot three eigenfunctions in end*/
Y1=Y
Y2=Y
Y3=Y
//2.HAMILTONIAN MATRIX
/* a.Kinetic energy matrix */
for i=1:N-2
for j=1:N-2
A(i,j)=0
end
end
for i=1:N-2
A(i,i)=-2
end
for i=1:N-3
A(i+1,i)=1
A(i,i+1)=1
end
K=-A/(2*h*h*k) //KE matirx
/*b. Potential Matrix */
for i=1:N-2
V(i,i)=potential(R(i+1,1))
end
/*c. Hamiltonian matrix*/
H=K+V
//3.Eigen Value Problem
[c,d]=spec(H)
disp("Eigenfunctions To Be Plotted")
disp("Enter for which Eigenvalue, eigenfunctions are to be plotted (integer) ")
u=input("Enter first value ")
v=input("Enter second value ")
w=input("Enter third value ")
disp("Corresponding Eigen Values")
disp(d(u,u))
disp(d(v,v))
disp(d(w,w))
/*b.eigenfunction*/
for i=1:N-2
Y1(i+1,1)=c(i,u) //eigenfunction for 1st eigenvalue
end
for i=1:N-2
Y2(i+1,1)=c(i,v) //eigenfunction for 2nd eigenvalue
end
for i=1:N-2
Y3(i+1,1)=c(i,w) //eigenfunction for 5th eigenvalue
end
//4.PLOT THE EIGENFUNTIONS AND PROBABLITY DENSITIES
clf()
/*a.Eigenfunctions*/
subplot(121)
plot2d(R,Y1,1)
plot2d(R,Y2,2)
plot2d(R,Y3,5)
xtitle("Eigenfunctions", boxed=%t)
g = gca()// axes handle
g.x_location = "origin"
g.y_location = "origin"
g.box = "on"
xgrid(7,1,1)
legend("Eigenfunction "+string(u)+"","Eigenfunction "+string(v)+"","Eigenfunction "+string(w)+"")
/*b.Probability densitites*/
subplot(122)
plot2d(R,Y1^2,1)
plot2d(R,Y2^2,2)
plot2d(R,Y3^2,5)
xtitle("Probabiltiy densities for Eigenfunctions", boxed=%t)
g = gca()// axes handle
g.x_location = "origin"
g.y_location = "origin"
g.box = "on"
xgrid(6,1,1)
legend("Probability Density "+string(u)+"","Probability Density "+string(v)+"","Probability Density "+string(w)+"")
|
c0d865a0ffc45432ab763db7cd38203ab2d9d942 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH14/EX14.8/Example14_8.sce | 6082725f5b601df2a5cfee401c1e7102d9c0a5b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,017 | sce | Example14_8.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 7: UNDERGROUND CABLES
// EXAMPLE : 7.8 :
// Page number 215
clear ; clc ; close ; // Clear the work space and console
// Given data
V = 33.0 // Line Voltage(kV)
D_2 = 2.0 // Conductor diameter(cm)
D_1 = 3.0 // Sheath diameter(cm)
// Calculations
R_2 = D_2/2 // Conductor radius(cm)
R_1 = D_1/2 // Sheath radius(cm)
g_max = V/(R_2*log(R_1/R_2)) // RMS value of maximum stress in the insulation(kV/cm)
g_min = V/(R_1*log(R_1/R_2)) // RMS value of minimum stress in the insulation(kV/cm)
// Results
disp("PART II - EXAMPLE : 7.8 : SOLUTION :-")
printf("\nMaximum stress in the insulation, g_max = %.2f kV/cm (rms)", g_max)
printf("\nMinimum stress in the insulation, g_min = %.2f kV/cm (rms)", g_min)
|
f92f8b16773be89d2f65e08222ce44eae5cc7f23 | 717ddeb7e700373742c617a95e25a2376565112c | /830/CH5/EX5.2.1/Circular_Conv_DFT.sce | 3ed0894bea49ed40bbf5c534cff303f1836151bb | [] | 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 | 356 | sce | Circular_Conv_DFT.sce | //Graphical//
//Example 5.2.1 and Example 5.2.2
//Performing Circular COnvolution
//Using DFT
clear;
clc;
close;
L = 4; //Length of the Sequence
N = 4; // N -point DFT
x1 = [2,1,2,1];
x2 = [1,2,3,4];
//Computing DFT
X1 = dft(x1,-1)
X2 = dft(x2,-1)
//Multiplication of 2 DFTs
X3 = X1.*X2
//Circular Convolution Result
x3 =abs(dft(X3,1))
|
ba9c18b151fa01f3c85989507fc27744f633688a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH3/EX3.30/Chapter3_Exampl30.sce | eb1e72a8f9039e217b00a69a7b4ff56c5850f7cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 926 | sce | Chapter3_Exampl30.sce | clc
clear
//INPUT DATA
cp=1.005;//specific pressure
cv=0.718;//specific volume
R=0.287;//gas constant
p1=100;//Pressure in kPa
t1=30;//temperature in Degree C
t2=800;//temperature in Degree C
g=1.4;//constant
Rc=5;//compression ratio
Qs=900;//heat supplied in kJ/kg
nr=0.75;//regenerator efficiency in percentage
//CALCULATIONS
Qs1=R*(t2+273)*log(Rc)+(1-nr)*cv*(t2-t1);//heat supplied in kJ/kg
m=Qs/Qs1;//mass flow rate in kg/min
wn=(m/60)*R*log(Rc)*(t2-t1);//net work done in kW
ns=(wn/(Qs/60))*100;//Thermal efficiency in percentage
vs=((m)*R*(t1+273)*(1-(1/Rc)))/(p1*60);//swept volume in m^3/s
pm=wn/vs;//mean effective pressure in kN/m^2
P=wn*1;//Power developed by the engine in kW
//OUTPUT
printf('(i)The net work done is %3.2f kW \n (ii)Thermal efficiency is %3.2f percentage \n (iii)mean effective pressure is %3.2f kN/m^2 \n (iv)Power developed by the engine is %3.2f kW ',wn,ns,pm,P)
|
b83d09052d0e42650c9932b0ed08f6331aeb7d67 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /RoE.sce | 162ab9ad799bbaa4fb3ce54af126bae1f9d6bfd0 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 12,242 | sce | RoE.sce | Name=RoE
PlayerCharacters=RoE Player
BotCharacters=RoE Opp.bot
IsChallenge=false
Timelimit=90.0
PlayerProfile=Ascended Tracking
AddedBots=Long Strafe Bot.bot;Long Strafe Bot.bot;Long Strafe Bot.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=AscendedStrafesv2.map
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=true
ScoreMultKillEfficiency=false
GameTag=Tracking
WeaponHeroTag=
DifficultyTag=2
AuthorsTag=KovaaK
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=true
Description=Track 3 targets at a variety of ranges and angles. The weapon you use is hitscan and does more damage if you are centered on your target. Difference from v2 is that v3 allows you to ADS/zoom.
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=RoE Opp
DodgeProfileNames=Long Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=RoE Opp
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Character Profile]
Name=RoE Player
MaxHealth=100.0
WeaponProfileNames=M4A1 RoE;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=RoE Opp
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=Long Strafes
MaxTargetDistance=100000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.025
BlockedMovementReactionMax=0.05
[Weapon Profile]
Name=M4A1 RoE
Type=Hitscan
ShotsPerClick=1
DamagePerShot=20.0
KnockbackFactor=4.0
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=2.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.6
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=20.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=0.0,0.1,0.0,0.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=0.0,0.1,0.0,0.0
MaxRecoilUp=1.0
MinRecoilUp=1.0
MinRecoilHoriz=-0.5
MaxRecoilHoriz=0.5
FirstShotRecoilMult=2.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
|
1d1ab0c668b6edbb5b0e4afadedea64b6af1b6d3 | 0b49de312685c7ca5b2ad71845b859c3a3c7fd5d | /vendor/ast-sudoku/src/cmd/sudoku/data/multiple-2.tst | 137169f64ea665fd46e34441c0f2e3266c90cc2f | [] | no_license | htoigo/sudokurry | 0ac9bc4472b4169a2f87753b477217338b06982b | a7f78fe3cdaa2bacb81fb4595b906a34e674880d | refs/heads/master | 2021-01-01T18:31:07.985262 | 2018-06-04T17:38:46 | 2018-06-04T17:38:46 | 98,352,641 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 201 | tst | multiple-2.tst | # 50,044,975 solutions
# sudoku -f- -Fpuzzles=%n%,guesses=%Q%,iterations=%I%,seconds=%t -qF -a multiple-2.tst
....69.3.
..1......
.6......2
4.5..3...
.......5.
.16.....7
....9....
.......71
1........
|
bac7bb9d340673157871715b0051a9c7676f6a1a | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.8_2.tst | 65f10f66a8e654a1668a9dcd19bed226a92dd385 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 27,018 | tst | bow.8_2.tst | 8 6:1.0 7:0.5 10:0.3333333333333333 11:0.2222222222222222 14:0.5 22:1.0 23:1.0 30:0.25 36:0.3333333333333333 39:0.3333333333333333 43:0.2 46:4.0 79:1.0 90:0.01639344262295082 139:0.5 263:0.14285714285714285 539:0.3333333333333333 584:1.0 756:0.1111111111111111 772:0.5 805:0.5 815:1.0 822:0.5 1110:1.0 1264:1.0 1591:1.0 1626:1.0 1713:1.0 2136:1.0 2837:1.0 2875:1.0 2886:2.0 3043:1.0 3447:1.0 4577:1.0 6407:1.0 6549:1.0 7043:1.0 7257:1.0 8065:1.0
8 11:0.3333333333333333 33:1.0 39:0.6666666666666666 46:1.0 69:1.0 90:0.01639344262295082 115:1.0 129:1.0 170:0.07692307692307693 247:1.0 540:0.14285714285714285 755:1.0 756:0.1111111111111111 1110:1.0 1144:0.2 1300:1.0 1335:1.0 1745:1.0 2079:0.3333333333333333 2275:1.0 2276:0.5 2607:1.0 4984:1.0 4999:1.0 5414:1.0 5516:1.0 5538:1.0 5543:1.0 7622:1.0
8 6:1.0 10:0.3333333333333333 13:1.0 19:1.0 28:0.06666666666666667 43:0.2 46:1.0 68:0.09090909090909091 90:0.01639344262295082 110:0.5 210:0.16666666666666666 547:0.25 742:0.5 815:1.0 1933:0.5 3621:1.0 3687:1.0 4059:1.0 4871:1.0 4904:1.0 5071:1.0 5715:1.0 6380:1.0 8100:1.0
8 4:0.5 11:0.1111111111111111 18:0.25 30:0.125 37:1.0 39:0.3333333333333333 59:0.3333333333333333 82:0.07692307692307693 83:0.07692307692307693 90:0.01639344262295082 168:0.125 170:0.07692307692307693 210:0.3333333333333333 263:0.14285714285714285 353:0.25 462:1.0 587:1.0 624:0.5 650:1.0 801:2.0 811:1.0 815:1.0 1159:1.0 1315:1.0 2909:1.0 3014:1.0 3035:1.0 3971:1.0 5194:1.0 6456:1.0
8 10:0.16666666666666666 14:0.5 19:1.0 28:0.06666666666666667 30:0.125 46:1.0 53:0.3333333333333333 59:0.6666666666666666 68:0.09090909090909091 69:1.0 70:1.0 90:0.01639344262295082 184:1.0 265:0.08333333333333333 584:1.0 650:1.0 674:1.0 765:1.0 801:1.0 805:0.5 1041:1.0 1374:0.5 1605:1.0 2828:1.0 3016:0.5 4932:1.0 6358:1.0
8 6:1.0 11:0.2222222222222222 28:0.06666666666666667 35:0.25 36:0.3333333333333333 37:1.0 39:0.3333333333333333 43:0.2 46:1.0 59:0.3333333333333333 68:0.09090909090909091 82:0.07692307692307693 212:1.0 232:1.0 265:0.08333333333333333 369:0.1 414:1.0 419:0.3333333333333333 431:1.0 534:1.0 770:1.0 783:1.0 1205:1.0 4904:1.0 5137:1.0 5207:1.0 5312:1.0 6407:1.0 7079:1.0 7292:1.0 7993:1.0
8 11:0.1111111111111111 13:1.0 14:1.5 24:1.0 29:1.0 30:0.0625 41:1.0 43:0.4 68:0.36363636363636365 74:1.0 139:0.5 259:0.5 349:1.0 362:1.0 377:0.25 531:1.0 586:0.16666666666666666 902:1.0 1255:1.0 1481:1.0 1605:1.0 2952:1.0 4198:1.0 4823:1.0 5561:1.0 5586:1.0 7951:1.0
8 10:0.16666666666666666 11:0.2222222222222222 29:1.0 30:0.0625 45:1.0 46:2.0 59:0.3333333333333333 82:0.07692307692307693 115:1.0 136:1.0 144:1.0 210:0.16666666666666666 212:1.0 250:0.07692307692307693 424:0.5 453:0.3333333333333333 569:0.5 831:0.5 1156:1.0 1741:1.0 2733:1.0 3035:1.0 3823:1.0 4933:1.0 5713:1.0 5808:1.0 6549:1.0 7581:1.0
8 19:1.0 30:0.0625 46:2.0 59:0.3333333333333333 65:1.0 68:0.18181818181818182 168:0.125 896:0.5 1546:1.0 1636:1.0 4756:0.5 4887:1.0 4920:0.3333333333333333 5108:1.0 5254:1.0 5446:1.0 5754:1.0
8 6:1.0 10:0.16666666666666666 11:0.1111111111111111 20:0.5 30:0.0625 39:0.6666666666666666 43:0.2 46:2.0 59:0.3333333333333333 68:0.09090909090909091 82:0.07692307692307693 90:0.01639344262295082 170:0.07692307692307693 210:0.16666666666666666 249:1.0 369:0.1 439:0.5 479:0.3333333333333333 517:0.3333333333333333 587:1.0 719:0.3333333333333333 742:0.5 801:1.0 815:1.0 1287:0.5 2733:1.0 5338:1.0 7160:1.0 7273:1.0
8 10:0.16666666666666666 11:0.2222222222222222 19:2.0 28:0.06666666666666667 30:0.0625 46:1.0 56:0.0625 144:1.0 168:0.125 187:1.0 210:0.16666666666666666 286:0.1111111111111111 363:1.0 380:0.3333333333333333 505:0.5 509:0.5 983:1.0 1127:0.5 3235:1.0 5032:1.0 6064:1.0 6542:1.0
8 7:0.5 14:0.5 19:2.0 28:0.06666666666666667 30:0.125 46:1.0 56:0.0625 170:0.07692307692307693 247:1.0 399:1.0 416:0.5 1117:1.0 1288:1.0 1818:1.0 2011:1.0 5648:0.5 5695:1.0 6731:1.0 7043:1.0 7713:1.0
8 6:1.0 7:0.5 10:0.16666666666666666 11:0.1111111111111111 30:0.0625 46:1.0 82:0.07692307692307693 90:0.04918032786885246 100:0.25 135:0.3333333333333333 139:0.5 142:0.5 170:0.07692307692307693 369:0.1 385:1.0 419:0.3333333333333333 531:1.0 740:1.0 1394:1.0 1565:1.0 1629:1.0 2136:1.0 2328:1.0 4904:1.0 5198:1.0 7428:1.0
8 11:0.1111111111111111 19:1.0 30:0.0625 43:0.2 46:1.0 53:0.3333333333333333 56:0.0625 63:0.2 70:1.0 90:0.01639344262295082 100:0.25 168:0.125 187:1.0 237:1.0 377:0.25 1097:1.0 1605:1.0 3660:1.0 5282:1.0 6326:1.0 7165:1.0 7850:1.0
8 14:1.0 19:1.0 28:0.06666666666666667 30:0.1875 45:1.0 46:1.0 63:0.2 90:0.01639344262295082 135:0.3333333333333333 168:0.125 206:0.3333333333333333 247:1.0 265:0.08333333333333333 416:0.5 517:0.3333333333333333 568:1.0 756:0.1111111111111111 815:2.0 941:1.0 1066:1.0 1404:1.0 2079:0.3333333333333333 2245:0.5 5159:1.0 5174:0.25 5687:1.0 6356:1.0 6396:1.0 7907:1.0
8 10:0.3333333333333333 11:0.2222222222222222 39:0.3333333333333333 68:0.09090909090909091 89:0.14285714285714285 170:0.07692307692307693 210:0.16666666666666666 259:0.5 264:0.3333333333333333 490:1.0 619:1.0 1090:2.0 1591:1.0 1777:1.0 1878:1.0 2165:1.0 2674:0.5 3255:1.0 4920:0.3333333333333333 5601:1.0 6644:1.0
8 39:0.3333333333333333 83:0.07692307692307693 414:1.0 509:0.5 876:0.5 1751:1.0 2421:1.0 5500:1.0 6163:0.5 7776:1.0 7940:1.0
8 10:0.16666666666666666 14:0.5 20:0.5 24:1.0 82:0.07692307692307693 153:1.0 163:1.0 212:1.0 313:0.25 359:0.3333333333333333 380:0.3333333333333333 1033:1.0 1258:0.5 1767:1.0 5200:0.5 6172:1.0 7558:1.0 8089:1.0
8 4:0.5 10:0.16666666666666666 11:0.1111111111111111 59:0.3333333333333333 64:0.3333333333333333 68:0.09090909090909091 83:0.15384615384615385 90:0.03278688524590164 263:0.14285714285714285 329:0.5 414:1.0 428:1.0 545:0.25 569:0.5 724:1.0 822:0.5 958:1.0 1258:0.5 1404:1.0 4907:1.0 6262:1.0 6933:1.0
8 11:0.1111111111111111 30:0.0625 46:1.0 56:0.0625 82:0.07692307692307693 90:0.01639344262295082 438:0.3333333333333333 966:1.0 1363:1.0 1392:1.0 4904:1.0 5149:1.0 5505:0.3333333333333333 6964:1.0
8 15:0.5 35:0.25 39:0.3333333333333333 43:0.4 68:0.09090909090909091 69:1.0 90:0.01639344262295082 234:0.0625 369:0.1 584:1.0 621:1.0 2402:1.0 2490:1.0 2909:1.0 4904:1.0 5678:1.0 5877:1.0 6160:1.0 6550:1.0 6551:1.0
8 11:0.1111111111111111 18:0.25 43:0.2 100:0.25 168:0.125 194:1.0 306:1.0 355:1.0 370:1.0 479:0.3333333333333333 590:1.0 1127:0.5 1707:1.0 5231:1.0 5752:1.0 5997:1.0 6916:1.0
8 19:1.0 28:0.13333333333333333 29:1.0 30:0.1875 35:0.25 39:0.3333333333333333 46:4.0 59:0.3333333333333333 90:0.01639344262295082 168:0.125 173:1.0 176:1.0 194:1.0 265:0.08333333333333333 509:0.5 756:0.1111111111111111 1073:1.0 3624:1.0 3971:1.0 6791:1.0
8 28:0.06666666666666667 30:0.0625 46:1.0 59:0.3333333333333333 68:0.09090909090909091 108:1.0 158:1.0 168:0.125 210:0.16666666666666666 226:1.0 453:0.3333333333333333 586:0.16666666666666666 2058:1.0 2128:1.0 2930:0.5 3001:1.0 4890:1.0 5073:1.0 5231:1.0 6589:1.0
8 11:0.1111111111111111 30:0.0625 46:1.0 56:0.0625 59:0.3333333333333333 68:0.09090909090909091 83:0.07692307692307693 163:1.0 226:1.0 231:1.0 250:0.07692307692307693 263:0.14285714285714285 586:0.16666666666666666 681:1.0 1117:1.0 1756:0.5 2065:1.0 2072:1.0 2165:2.0 2553:1.0 2930:0.5 3069:1.0 4145:2.0 5071:1.0 5100:1.0
8 11:0.1111111111111111 14:0.5 43:0.2 59:0.3333333333333333 82:0.07692307692307693 83:0.07692307692307693 90:0.03278688524590164 100:0.5 187:1.0 366:1.0 394:0.5 650:1.0 756:0.1111111111111111 815:1.0 2165:1.0 2523:1.0 2723:1.0 4313:1.0 4920:0.3333333333333333 7337:1.0 7595:1.0 8017:1.0
8 18:0.25 30:0.0625 33:1.0 43:0.2 46:1.0 59:0.3333333333333333 68:0.09090909090909091 82:0.15384615384615385 83:0.07692307692307693 89:0.14285714285714285 90:0.01639344262295082 126:0.25 168:0.125 242:1.0 264:0.3333333333333333 286:0.1111111111111111 329:0.5 368:0.3333333333333333 569:0.5 1096:1.0 1258:0.5 1281:1.0 1606:1.0 2909:1.0 4985:1.0 5056:1.0
8 10:0.16666666666666666 13:1.0 14:0.5 18:0.25 30:0.0625 46:1.0 90:0.04918032786885246 136:1.0 142:0.5 168:0.25 242:1.0 294:0.5 369:0.1 370:1.0 569:0.5 1216:0.5 4100:1.0 5123:1.0
8 11:0.1111111111111111 18:0.25 28:0.06666666666666667 30:0.125 39:0.3333333333333333 43:0.2 46:2.0 53:0.3333333333333333 59:0.3333333333333333 90:0.03278688524590164 142:0.5 158:1.0 210:0.16666666666666666 231:1.0 297:0.5 300:0.3333333333333333 326:0.125 402:1.0 446:0.3333333333333333 509:0.5 540:0.14285714285714285 654:1.0 795:1.0 1256:1.0 1558:1.0 3745:1.0 5073:1.0 5921:1.0 6649:1.0
8 17:0.5 30:0.125 68:0.09090909090909091 83:0.07692307692307693 90:0.01639344262295082 126:0.25 170:0.07692307692307693 263:0.14285714285714285 264:0.3333333333333333 399:1.0 509:0.5 1437:0.5 1712:1.0 2581:0.3333333333333333 3630:1.0 4904:1.0 5254:1.0 7923:1.0
8 11:0.1111111111111111 17:0.5 28:0.13333333333333333 30:0.125 37:1.0 43:0.2 46:2.0 59:0.6666666666666666 68:0.09090909090909091 83:0.07692307692307693 89:0.14285714285714285 90:0.01639344262295082 117:0.5 139:0.5 153:1.0 212:1.0 231:1.0 264:0.3333333333333333 332:0.5 369:0.1 531:1.0 703:1.0 815:1.0 1615:1.0 1756:0.5 2674:0.5 2963:1.0 3450:1.0 4920:0.3333333333333333 5071:1.0 5985:1.0 7819:1.0
8 4:0.5 10:0.16666666666666666 29:1.0 30:0.1875 46:1.0 59:0.6666666666666666 68:0.09090909090909091 82:0.07692307692307693 90:0.01639344262295082 170:0.07692307692307693 231:1.0 263:0.14285714285714285 292:1.0 443:1.0 457:1.0 587:1.0 1454:1.0 1710:1.0 3325:0.5 7113:1.0
8 10:0.16666666666666666 11:0.1111111111111111 59:0.3333333333333333 90:0.03278688524590164 142:0.5 153:1.0 297:0.5 327:1.0 357:0.5 636:0.5 721:0.5 1105:1.0 1333:1.0 1335:1.0 1369:1.0 1438:1.0 2434:1.0 3624:1.0 3793:0.5 3847:1.0 4001:1.0 4904:1.0 4951:1.0 4999:1.0 5654:1.0 5676:1.0 6052:1.0 7523:1.0
8 10:0.16666666666666666 11:0.2222222222222222 18:0.25 19:1.0 30:0.125 36:0.3333333333333333 46:3.0 82:0.07692307692307693 84:1.0 112:1.0 119:0.2 212:1.0 264:0.3333333333333333 349:1.0 358:1.0 517:0.3333333333333333 587:1.0 621:1.0 703:1.0 902:1.0 1049:2.0 2470:1.0 3935:1.0 4880:1.0 5272:1.0 5848:1.0 6233:1.0 7719:1.0 8005:1.0
8 10:0.16666666666666666 11:0.2222222222222222 28:0.06666666666666667 33:1.0 39:0.3333333333333333 46:2.0 59:0.6666666666666666 110:0.5 135:0.3333333333333333 139:0.5 153:1.0 250:0.23076923076923078 298:0.3333333333333333 313:0.25 479:0.3333333333333333 646:0.16666666666666666 801:1.0 1699:1.0 2027:1.0 3687:1.0 5494:1.0 7720:1.0
8 11:0.1111111111111111 28:0.13333333333333333 46:2.0 135:0.3333333333333333 153:1.0 1129:1.0 1410:1.0 3368:0.3333333333333333 8081:1.0
8 35:0.25 63:0.2 82:0.07692307692307693 234:0.0625 6163:0.5 7632:1.0
8 11:0.1111111111111111 28:0.13333333333333333 30:0.0625 43:0.2 53:0.3333333333333333 68:0.09090909090909091 121:1.0 353:0.25 377:0.25 399:1.0 418:1.0 2685:1.0 2889:1.0 3097:1.0 5224:1.0 8036:1.0
8 28:0.06666666666666667 30:0.1875 35:0.25 39:0.3333333333333333 43:0.2 46:3.0 63:0.2 82:0.07692307692307693 140:1.0 158:1.0 210:0.16666666666666666 230:2.0 265:0.08333333333333333 280:1.0 286:0.1111111111111111 369:0.1 479:0.3333333333333333 756:0.1111111111111111 1205:1.0 1354:1.0 5073:1.0 5186:1.0 5801:1.0 5877:1.0 6659:1.0 6836:1.0 6854:1.0
8 11:0.3333333333333333 18:0.25 19:1.0 28:0.06666666666666667 30:0.0625 35:0.5 37:1.0 39:0.3333333333333333 79:1.0 82:0.07692307692307693 100:0.5 126:0.25 170:0.15384615384615385 212:1.0 358:1.0 491:1.0 531:1.0 636:0.5 1218:1.0 1231:1.0 1452:0.5 2140:1.0 2218:1.0 2674:0.5 4519:1.0 5895:1.0 7147:1.0 7419:1.0 7815:1.0 7951:1.0
8 10:0.16666666666666666 11:0.2222222222222222 28:0.06666666666666667 30:0.1875 43:0.2 1354:1.0 2387:1.0 2389:1.0 3800:2.0 5231:1.0 5353:1.0 5895:1.0
8 14:0.5 18:0.25 28:0.06666666666666667 46:1.0 90:0.03278688524590164 163:1.0 265:0.08333333333333333 313:0.25 354:1.0 479:0.3333333333333333 1000:1.0 1958:1.0 4131:1.0 5149:1.0 7773:1.0
8 6:1.0 30:0.0625 46:2.0 68:0.09090909090909091 131:0.5 156:0.5 168:0.125 233:1.0 264:0.3333333333333333 286:0.1111111111111111 359:0.3333333333333333 531:1.0 534:1.0 539:0.3333333333333333 801:1.0 1184:0.5 1606:1.0 3016:0.5 5263:1.0 6952:1.0 7236:1.0 7457:1.0
8 30:0.0625 35:0.25 83:0.07692307692307693 90:0.01639344262295082 156:0.5 161:1.0 170:0.07692307692307693 401:0.3333333333333333 518:1.0 611:1.0 2200:1.0 2470:1.0 4035:1.0 5041:1.0 5935:0.5 6366:1.0 7121:1.0 7165:1.0
8 10:0.16666666666666666 18:0.25 19:1.0 46:1.0 82:0.07692307692307693 131:0.5 298:0.3333333333333333 313:0.25 479:0.3333333333333333 896:0.5 2517:0.5 2909:1.0 3276:1.0
8 19:1.0 46:2.0 56:0.0625 59:1.0 63:0.2 68:0.09090909090909091 82:0.07692307692307693 83:0.07692307692307693 90:0.03278688524590164 242:1.0 297:0.5 322:1.0 326:0.125 354:1.0 367:0.5 385:1.0 419:0.3333333333333333 784:1.0 804:1.0 887:1.0 946:0.5 1115:1.0 1361:1.0 1615:1.0 1973:1.0 4742:1.0 5149:1.0 7003:1.0
8 10:0.16666666666666666 11:0.1111111111111111 18:0.25 19:2.0 28:0.06666666666666667 39:0.3333333333333333 43:0.2 46:1.0 59:0.3333333333333333 82:0.07692307692307693 168:0.125 321:1.0 355:1.0 372:1.0 419:0.3333333333333333 479:0.6666666666666666 584:1.0 596:0.2 661:1.0 1333:1.0 1374:0.5 2291:1.0 3103:1.0 3167:1.0 3818:1.0 3955:1.0 3961:1.0 5087:1.0 6524:1.0
8 29:1.0 46:1.0 186:1.0 771:1.0 2459:1.0 2940:1.0 3888:1.0 4906:1.0 5848:1.0
8 11:0.1111111111111111 30:0.0625 46:1.0 59:0.3333333333333333 83:0.07692307692307693 162:1.0 210:0.16666666666666666 320:1.0 1055:1.0 1102:0.5 1300:1.0 1335:1.0 1374:0.5 2287:1.0 4916:0.16666666666666666 5451:1.0 5525:2.0 5993:0.5 6312:1.0 6876:1.0
8 11:0.1111111111111111 30:0.0625 69:1.0 83:0.07692307692307693 90:0.04918032786885246 263:0.14285714285714285 283:0.2 424:0.5 1076:1.0 1310:1.0 1909:1.0 1982:1.0 2202:1.0 3652:1.0 4557:1.0 4920:0.3333333333333333 7825:1.0
8 11:0.1111111111111111 28:0.13333333333333333 29:1.0 43:0.2 46:1.0 68:0.09090909090909091 90:0.01639344262295082 100:0.5 186:1.0 250:0.07692307692307693 313:0.25 524:1.0 801:1.0 815:1.0 1098:1.0 1388:1.0 1924:1.0 2382:1.0 2959:0.5 3325:0.5 3687:1.0 4178:1.0 4931:1.0 5181:1.0 5254:1.0
8 30:0.125 39:0.3333333333333333 52:1.0 59:0.6666666666666666 108:1.0 150:1.0 161:2.0 250:0.07692307692307693 587:1.0 707:1.0 708:1.0 1105:1.0 1216:0.5 1250:2.0 2455:1.0 2548:1.0 3291:1.0 4099:1.0 4715:1.0 6324:1.0 6537:1.0
8 11:0.3333333333333333 18:0.25 28:0.13333333333333333 29:3.0 46:1.0 131:0.5 153:2.0 212:1.0 453:0.3333333333333333 551:1.0 588:0.5 770:1.0 1354:1.0 2476:1.0 2606:1.0 2886:1.0 2950:1.0 3663:1.0 4464:1.0 4920:0.3333333333333333 5133:1.0 5350:1.0 5608:1.0 6396:1.0 6594:1.0 6929:1.0 7442:1.0
8 19:2.0 36:0.3333333333333333 43:0.4 46:3.0 59:0.6666666666666666 73:0.5 89:0.14285714285714285 187:1.0 234:0.0625 286:0.1111111111111111 419:0.3333333333333333 650:1.0 719:0.3333333333333333 942:1.0 1216:0.5 2553:1.0 3272:1.0 4577:1.0 4916:0.16666666666666666 5451:1.0 5834:1.0
8 30:0.0625 39:0.3333333333333333 59:0.3333333333333333 90:0.01639344262295082 587:1.0 650:1.0 815:1.0 2553:1.0 5234:1.0
8 10:0.16666666666666666 11:0.2222222222222222 30:0.0625 36:0.3333333333333333 37:1.0 39:0.6666666666666666 59:0.6666666666666666 68:0.09090909090909091 83:0.07692307692307693 88:1.0 90:0.01639344262295082 161:1.0 170:0.07692307692307693 230:1.0 234:0.0625 365:1.0 369:0.1 419:0.3333333333333333 587:1.0 621:1.0 1358:1.0 1638:1.0 1900:1.0 3927:1.0 5086:1.0 5713:1.0 6039:1.0
8 10:0.16666666666666666 30:0.125 46:3.0 83:0.07692307692307693 86:1.0 135:0.3333333333333333 719:0.3333333333333333 1028:1.0 1374:0.5 3133:1.0 3296:1.0 4059:1.0 4769:1.0 4951:1.0 5125:1.0 5631:1.0 7362:1.0 7876:1.0
8 11:0.1111111111111111 28:0.13333333333333333 46:1.0 53:0.3333333333333333 59:0.6666666666666666 88:1.0 90:0.01639344262295082 100:0.25 134:1.0 250:0.07692307692307693 286:0.1111111111111111 505:0.5 545:0.25 742:0.5 2581:0.3333333333333333 3624:1.0 4176:1.0 4807:1.0 4917:1.0 5217:1.0 5240:0.5 5330:1.0 5520:1.0 5645:1.0 5995:1.0 6674:1.0 7553:1.0
8 11:0.2222222222222222 18:0.25 43:0.2 46:2.0 90:0.03278688524590164 142:0.5 186:1.0 210:0.16666666666666666 1960:1.0 2567:1.0 4176:1.0 5511:1.0
8 10:0.16666666666666666 28:0.06666666666666667 30:0.125 39:0.3333333333333333 46:1.0 59:0.3333333333333333 135:0.3333333333333333 158:1.0 210:0.16666666666666666 212:1.0 234:0.0625 352:0.06666666666666667 509:0.5 719:0.3333333333333333 801:1.0 973:1.0 1023:1.0 1605:1.0 2079:0.3333333333333333 2354:1.0 2674:0.5 2839:1.0 5073:1.0 6047:1.0
8 30:0.0625 43:0.2 59:0.3333333333333333 83:0.07692307692307693 212:1.0 337:1.0 509:0.5 590:1.0 644:1.0 719:0.3333333333333333 1023:1.0 1605:1.0 1834:1.0 2354:1.0 4859:1.0 6059:1.0 7664:1.0
8 10:0.16666666666666666 11:0.2222222222222222 46:1.0 50:1.0 59:0.3333333333333333 90:0.01639344262295082 286:0.1111111111111111 888:0.5 1634:1.0 2203:1.0 3368:0.3333333333333333 4376:1.0
8 4:1.0 11:0.1111111111111111 21:1.0 29:1.0 30:0.125 36:0.3333333333333333 59:0.3333333333333333 68:0.09090909090909091 89:0.14285714285714285 168:0.25 170:0.07692307692307693 186:1.0 419:0.3333333333333333 568:1.0 1248:1.0 1989:0.5
8 30:0.0625 59:0.3333333333333333 83:0.07692307692307693 90:0.01639344262295082 100:0.25 168:0.125 169:1.0 210:0.16666666666666666 212:1.0 561:1.0 815:1.0 1688:1.0 3624:1.0 4607:1.0 4927:1.0 7579:1.0
8 10:0.3333333333333333 14:0.5 30:0.0625 68:0.09090909090909091 83:0.07692307692307693 90:0.01639344262295082 110:0.5 359:0.3333333333333333 719:0.3333333333333333 795:1.0 1699:1.0 3414:1.0 5629:1.0 6112:0.5
8 14:0.5 43:0.2 46:2.0 68:0.09090909090909091 126:0.25 210:0.16666666666666666 300:0.3333333333333333 313:0.25 359:0.3333333333333333 414:1.0 416:0.5 419:0.3333333333333333 505:0.5 519:1.0 703:1.0 965:0.5 6446:1.0 7625:1.0
8 10:0.3333333333333333 18:0.25 30:0.0625 39:0.3333333333333333 46:1.0 63:0.2 90:0.01639344262295082 95:1.0 186:1.0 210:0.16666666666666666 242:1.0 359:0.3333333333333333 363:1.0 419:0.3333333333333333 509:0.5 531:1.0 673:1.0 682:0.5 772:0.5 787:1.0 801:1.0 1513:1.0 1978:1.0 2079:0.3333333333333333 2276:0.5 2836:1.0 4907:1.0
8 19:1.0 30:0.0625 35:0.25 59:0.3333333333333333 264:0.3333333333333333 438:0.3333333333333333 756:0.1111111111111111 2038:1.0 2280:1.0 2839:1.0 5051:1.0 6074:1.0 6971:1.0 7148:1.0
8 11:0.2222222222222222 39:0.6666666666666666 43:0.4 59:0.6666666666666666 68:0.2727272727272727 90:0.03278688524590164 134:1.0 138:0.3333333333333333 156:0.5 187:1.0 254:1.0 259:0.5 300:0.3333333333333333 368:0.3333333333333333 385:1.0 419:0.3333333333333333 524:1.0 559:1.0 560:1.0 804:1.0 815:1.0 1166:1.0 2079:0.3333333333333333 2183:1.0 3914:1.0 4832:1.0 5338:1.0 5699:1.0 6934:1.0 7553:1.0 7857:1.0
8 6:1.0 7:1.0 11:0.1111111111111111 14:1.0 43:0.2 59:0.3333333333333333 156:0.5 212:1.0 234:0.0625 329:0.5 380:0.6666666666666666 479:0.3333333333333333 497:1.0 646:0.16666666666666666 925:1.0 1499:1.0 1669:1.0 1699:1.0 4286:0.25 5886:1.0 6164:1.0 7547:1.0 7548:1.0
8 11:0.1111111111111111 28:0.06666666666666667 90:0.01639344262295082 135:0.3333333333333333 142:0.5 187:1.0 297:0.5 329:0.5 369:0.2 500:1.0 708:1.0 1270:1.0 1333:1.0 1449:1.0 1910:1.0 2620:1.0 5053:0.3333333333333333 5268:1.0
8 30:0.0625 43:0.2 46:1.0 68:0.18181818181818182 89:0.2857142857142857 90:0.01639344262295082 91:0.5 264:0.3333333333333333 357:0.5 369:0.1 419:0.3333333333333333 540:0.14285714285714285 584:1.0 626:0.5 981:1.0 1011:1.0 2470:1.0 4577:1.0 6638:1.0
8 10:0.16666666666666666 28:0.06666666666666667 30:0.1875 59:0.3333333333333333 90:0.01639344262295082 100:0.25 163:1.0 234:0.0625 254:1.0 540:0.14285714285714285 654:1.0 656:1.0 944:1.0 1144:0.2 1447:1.0 1516:1.0 2245:0.5 4920:0.3333333333333333 4999:1.0 5033:0.5 5186:1.0 5189:0.5 5538:1.0 5550:1.0 5990:1.0
8 7:0.5 11:0.1111111111111111 14:1.0 30:0.125 43:0.2 46:1.0 74:1.0 88:1.0 100:0.25 131:0.5 170:0.07692307692307693 279:1.0 377:0.25 587:1.0 896:0.5 902:1.0 1090:1.0 1322:1.0 2927:1.0 3146:1.0 3196:1.0 3660:1.0 4854:1.0 5950:1.0 6492:1.0
8 30:0.0625 59:0.3333333333333333 82:0.07692307692307693 156:0.5 242:1.0 259:0.5 262:1.0 369:0.1 801:1.0 1655:1.0 2280:1.0 4178:1.0 4350:1.0 5164:1.0 5408:1.0 5409:1.0 5946:1.0 6941:1.0
8 10:0.16666666666666666 11:0.3333333333333333 14:0.5 28:0.06666666666666667 30:0.25 36:0.3333333333333333 39:0.3333333333333333 40:1.0 43:0.2 59:0.3333333333333333 82:0.07692307692307693 156:0.5 160:0.3333333333333333 212:1.0 306:1.0 540:0.14285714285714285 559:1.0 586:0.16666666666666666 601:1.0 896:0.5 1027:1.0 1333:1.0 1437:0.5 1753:1.0 1889:1.0 2422:1.0 2423:1.0 2597:1.0 2790:1.0 3660:1.0 4269:1.0 4610:1.0 4807:1.0 4859:1.0 4998:1.0 5451:1.0 5452:1.0 6941:1.0 8005:1.0
8 10:0.5 11:0.1111111111111111 18:0.5 19:1.0 30:0.0625 33:1.0 39:0.3333333333333333 43:0.2 46:1.0 48:0.5 107:1.0 161:1.0 234:0.0625 265:0.08333333333333333 369:0.1 479:0.3333333333333333 811:1.0 965:0.5 1216:0.5 1591:1.0 1733:1.0 1753:1.0 2079:0.3333333333333333 2192:1.0 2522:1.0 4823:1.0 5063:2.0 5154:1.0 5415:1.0 6157:1.0 6209:1.0
8 7:0.5 9:1.0 11:0.4444444444444444 39:0.6666666666666666 43:0.4 46:1.0 48:0.5 59:0.3333333333333333 63:0.4 68:0.09090909090909091 153:1.0 160:0.3333333333333333 168:0.125 170:0.07692307692307693 234:0.0625 247:1.0 265:0.08333333333333333 377:0.25 414:1.0 419:0.3333333333333333 584:1.0 824:1.0 1291:1.0 1743:1.0 1777:1.0 1933:0.5 2389:1.0 3081:1.0 3636:1.0 3669:1.0 5125:1.0 5769:1.0 6615:1.0 6785:1.0
8 6:1.0 10:0.16666666666666666 11:0.1111111111111111 46:1.0 59:0.3333333333333333 69:1.0 88:1.0 131:0.5 250:0.07692307692307693 304:1.0 329:0.5 719:0.3333333333333333 756:0.1111111111111111 804:1.0 1924:1.0 3456:1.0 4774:1.0 4913:1.0 5728:1.0 6781:1.0
8 18:0.25 19:1.0 43:0.2 59:0.3333333333333333 89:0.14285714285714285 158:1.0 168:0.125 210:0.16666666666666666 286:0.1111111111111111 359:0.3333333333333333 362:1.0 369:0.1 673:1.0 1003:1.0 1323:1.0 1551:1.0 1973:1.0 2079:0.3333333333333333 2467:1.0 5165:1.0 6549:1.0
8 7:0.5 10:0.16666666666666666 14:0.5 43:0.2 46:1.0 68:0.2727272727272727 83:0.07692307692307693 90:0.01639344262295082 109:1.0 135:0.3333333333333333 186:1.0 210:0.16666666666666666 380:0.3333333333333333 419:0.6666666666666666 509:0.5 1076:1.0 1097:1.0 1126:1.0 3243:1.0 5007:0.5 6567:1.0 6721:1.0
8 10:0.16666666666666666 18:0.25 19:1.0 59:0.3333333333333333 64:0.3333333333333333 73:0.5 82:0.07692307692307693 96:1.0 170:0.07692307692307693 264:0.3333333333333333 517:0.3333333333333333 785:1.0 2079:0.3333333333333333 2291:1.0 2598:1.0 2889:1.0 3231:1.0 5477:1.0 5640:1.0 5811:1.0 6352:1.0 6456:1.0 7244:1.0
8 10:0.16666666666666666 17:0.5 24:1.0 28:0.06666666666666667 30:0.125 43:0.2 48:0.5 59:0.6666666666666666 84:1.0 135:0.3333333333333333 138:0.3333333333333333 168:0.125 212:1.0 357:0.5 606:1.0 870:1.0 896:0.5 956:1.0 1210:1.0 1978:1.0 2165:1.0 2494:1.0 2523:1.0 4948:1.0 5068:1.0 5254:1.0 5654:1.0 6465:1.0 6477:1.0 6478:1.0
8 11:0.2222222222222222 13:1.0 18:0.25 28:0.06666666666666667 30:0.0625 46:1.0 63:0.2 90:0.01639344262295082 100:0.25 109:1.0 124:0.3333333333333333 300:0.3333333333333333 423:1.0 636:0.5 2892:1.0 3624:1.0 4841:1.0 4842:1.0 5715:1.0 5740:1.0 6334:1.0
8 11:0.1111111111111111 19:1.0 43:0.4 68:0.09090909090909091 90:0.01639344262295082 168:0.125 176:2.0 212:1.0 359:0.3333333333333333 369:0.1 377:0.25 414:1.0 531:1.0 815:1.0 1096:1.0 1558:1.0 3254:1.0 3325:0.5 5594:1.0 5877:1.0
8 18:0.25 46:1.0 63:0.2 64:0.3333333333333333 82:0.07692307692307693 90:0.01639344262295082 168:0.125 212:1.0 326:0.125 369:0.1 520:1.0 974:1.0 1171:1.0 2078:1.0 3287:1.0 3288:1.0 4018:1.0 4916:0.16666666666666666 5162:1.0 5588:1.0 5805:1.0 7072:1.0 7244:1.0 7270:1.0
8 10:0.16666666666666666 28:0.06666666666666667 30:0.0625 46:1.0 81:1.0 160:0.3333333333333333 204:1.0 249:1.0 276:1.0 286:0.1111111111111111 357:0.5 430:1.0 547:0.25 945:1.0 1215:1.0 1509:1.0 3338:1.0 4813:1.0 6583:1.0
8 39:0.3333333333333333 45:1.0 46:1.0 59:0.3333333333333333 82:0.23076923076923078 90:0.01639344262295082 100:0.25 135:0.3333333333333333 168:0.125 353:0.25 385:1.0 419:0.3333333333333333 531:1.0 539:0.3333333333333333 624:0.5 681:1.0 1404:1.0 2345:1.0 2607:1.0 6767:1.0 6941:1.0 7457:1.0
8 9:1.0 10:0.16666666666666666 11:0.1111111111111111 13:1.0 19:1.0 30:0.0625 46:1.0 68:0.09090909090909091 69:1.0 90:0.01639344262295082 100:0.25 107:1.0 187:1.0 377:0.25 509:0.5 745:1.0 801:1.0 815:1.0 902:1.0 1467:1.0 3255:1.0 3663:1.0 4702:1.0 5012:1.0 5013:1.0 5118:0.3333333333333333 6291:1.0
8 14:0.5 30:0.25 46:1.0 56:0.0625 59:0.3333333333333333 83:0.07692307692307693 90:0.01639344262295082 100:0.25 156:0.5 176:1.0 540:0.14285714285714285 587:2.0 896:0.5 941:1.0 1476:1.0 1605:1.0 3375:1.0 5376:1.0 6172:1.0
8 10:0.3333333333333333 11:0.1111111111111111 30:0.0625 35:0.25 43:0.2 56:0.0625 59:0.3333333333333333 90:0.04918032786885246 135:0.3333333333333333 170:0.07692307692307693 173:1.0 263:0.2857142857142857 326:0.125 327:2.0 390:1.0 815:1.0 1261:1.0 2055:0.5 2647:1.0 5537:0.5 7113:1.0 8027:1.0
8 19:1.0 28:0.06666666666666667 46:2.0 53:0.3333333333333333 56:0.0625 59:0.6666666666666666 68:0.09090909090909091 82:0.07692307692307693 90:0.01639344262295082 100:0.25 212:1.0 254:1.0 264:0.3333333333333333 344:1.0 359:0.3333333333333333 569:0.5 584:1.0 4933:1.0 4975:1.0 4985:1.0 5080:1.0 5451:1.0 5452:1.0
8 531:1.0 636:0.5 3847:1.0 4920:0.3333333333333333
8 30:0.0625 39:0.6666666666666666 64:0.3333333333333333 68:0.09090909090909091 212:1.0 286:0.1111111111111111 419:0.3333333333333333 479:0.3333333333333333 770:1.0 1076:1.0 1615:1.0 2366:1.0 2523:1.0 4906:1.0 4931:1.0 5284:1.0
8 10:0.3333333333333333 30:0.1875 39:0.6666666666666666 59:0.3333333333333333 63:0.2 82:0.07692307692307693 108:1.0 139:0.5 156:0.5 210:0.16666666666666666 385:1.0 419:0.3333333333333333 750:1.0 1611:1.0 1926:1.0 3522:1.0 4588:1.0 5018:1.0 6265:1.0 7625:1.0 7850:1.0
8 6:1.0 19:1.0 29:1.0 30:0.3125 37:1.0 43:0.2 46:3.0 56:0.0625 59:0.3333333333333333 64:0.3333333333333333 161:1.0 173:1.0 234:0.0625 254:2.0 313:0.25 359:0.3333333333333333 452:1.0 650:2.0 708:1.0 787:1.0 1005:1.0 1250:1.0 1479:0.5 1910:1.0 2023:1.0 4913:1.0 4993:0.3333333333333333 5555:1.0 7045:1.0 7079:1.0
8 14:0.5 29:1.0 31:1.0 43:0.2 59:0.6666666666666666 63:0.2 90:0.01639344262295082 109:1.0 117:0.5 234:0.0625 256:1.0 286:0.2222222222222222 424:0.5 584:1.0 925:1.0 1000:1.0 1028:2.0 1374:0.5 1675:1.0 1756:0.5 2088:1.0 2387:1.0 2523:1.0 2579:1.0 4928:1.0 5147:1.0 5162:1.0 5640:1.0 7026:1.0 7867:2.0
8 11:0.2222222222222222 17:0.5 19:1.0 28:0.06666666666666667 30:0.0625 33:1.0 39:0.3333333333333333 45:1.0 46:1.0 53:0.3333333333333333 59:1.0 68:0.09090909090909091 82:0.15384615384615385 170:0.07692307692307693 250:0.07692307692307693 377:0.25 385:1.0 497:1.0 596:0.2 770:1.0 785:1.0 829:1.0 862:1.0 944:1.0 1096:1.0 1261:1.0 1617:1.0 2023:1.0 2366:1.0 3017:1.0 4920:0.3333333333333333 4993:0.3333333333333333 5164:1.0 6059:1.0
8 10:0.16666666666666666 19:2.0 28:0.06666666666666667 30:0.125 45:1.0 46:2.0 83:0.15384615384615385 112:1.0 117:0.5 156:0.5 250:0.07692307692307693 297:0.5 380:0.3333333333333333 446:0.3333333333333333 728:0.3333333333333333 756:0.1111111111111111 1062:1.0 1117:1.0 1216:0.5 1481:1.0 1999:1.0 2027:1.0 2280:1.0 3325:0.5 3505:1.0 4913:1.0 5063:1.0 5846:1.0 6059:1.0 7029:1.0 7540:1.0
8 18:0.25 19:1.0 30:0.25 43:0.2 53:0.3333333333333333 68:0.18181818181818182 115:1.0 212:1.0 247:1.0 254:1.0 801:2.0 1102:0.16666666666666666 1569:0.5 1888:1.0 1979:1.0 2550:1.0 4047:1.0 4812:1.0 4932:1.0 7128:1.0
|
e4a9372248511d2c0bb2ddc313d0210baf09cbc6 | 01697f0dc71290a6b6e233849a73d19a883845f1 | /sem04/lab03/l03q01.sce | 0951b13b1ba911d0b12bf2bbb5291391fecfadce | [] | no_license | aaruni96/Math-Lab | 5d83a13547308bd9d1b7daa28be29a49e1020fbd | 488469c9aba9251f5725e0851fb19e2aef38d234 | refs/heads/master | 2021-01-12T06:29:53.790743 | 2018-04-27T09:21:40 | 2018-04-27T09:21:40 | 77,370,232 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 359 | sce | l03q01.sce | clc;
clear;
g=[1,-1,%i,-(%i)];
h=[1,-1];
eg=1;
a=0;
for i=1:4
ig(i)=eg/g(i);
end
mprintf("Inverse elements of G are\n");
disp(ig);
for i=1:1
for j=1:4
if g(j)*h(i)*ig(j)==h(1) | g(j)*h(i)*ig(j)==h(2) then
a=1;
else
a=0;
abort;
end
end
end
if a==1 then
mprintf("H is a normal subgroup\n");
else
mprintf("H is not a normal subgroup\n");
end
|
0a10978607bfcbdc28616fa146027cb569daca48 | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/CH10/EX10.4/10_4.sce | 667240355d908aa63604732995843397b1752165 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 10_4.sce | pathname=get_absolute_file_path('10_4.sce')
filename=pathname+filesep()+'10_4data.sci'
exec(filename)
for i=1:3
f(i)=(0.5*%pi*i/L)*(EI/(rho*A))^0.5;
end
printf("\nf1: %f",f(1));
printf("\nf2: %f",f(2));
printf("\nf3: %f",f(3)); |
80d9d29706884359a6b4364b681183bda0d8798f | 6e8de6b748e1c43c2730c5888c09816c97a8aa6c | /ni/scilab_02.sce | 5116652ba3f06331971ec6587d304bcd9d8808ed | [] | no_license | maxadamski/wiwiwi | 3f35e9c91430a69a8ad50c6b20efef2fb3cfbb9b | c0545dca29dc37f6e9b65920d8c36174e4b23793 | refs/heads/master | 2023-04-13T10:09:07.440602 | 2023-04-03T20:28:10 | 2023-04-03T20:28:10 | 115,282,771 | 38 | 18 | null | null | null | null | UTF-8 | Scilab | false | false | 962 | sce | scilab_02.sce | disp('Zadanie 1')
disp(82:92)
disp('Zadanie 2')
disp((1:4) + 1)
disp('Zadanie 3')
disp((-8:2:-4)./(8:-2:4))
disp('Zadanie 4')
V = [5, -5, 9 ,12, -1, 0, 4]
V(V > 0) = 10
disp(V)
disp('Zadanie 5')
MOD = [-5 9 12; -1 0 -12; 9 6 1]
MOD(modulo(MOD, 3) == 0) = -2
disp(MOD)
disp('Zadanie 6')
disp(rand(3, 3) + eye(3, 3)*3)
disp('Zadanie 7')
MAG_A = testmatrix('magi', 5)
MAG_B = MAG_A(2:3, :)
disp(MAG_A)
disp(MAG_B)
disp('Zadanie 8')
MAG_C = [MAG_A; MAG_B]
disp(MAG_C)
disp('Zadanie 9')
disp(roots([1, 0, -4, -2]))
disp('Zadanie 10')
A = [1 2 -1; 1 3 2; -1 -3 -1]
B = [2 -1 0; 1 2 1; 1 0 0]
disp('A * X = B <-> X = inv(A) * B')
disp(inv(A)*B)
disp('X * A = B <-> X = B * inv(A)')
disp(B*inv(A))
disp('Zadanie 11')
F = [0, 1]
F_n = 10
for i = 3:F_n
F(i) = F(i - 2) + F(i - 1)
end
disp(F)
disp(sum(F))
disp('Zadanie 12')
H = []
for i = 1:5
for j = 1:5
H(i,j) = 1 / (i + j - 1)
end
end
disp(H)
|
7c63b7ce66b6c338107d1cc9ee09943e43a84ac6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH9/EX9.8/9_8.sci | 9d3ef021a4c20451eb8f3a9a3e2583a9cbb75f12 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 224 | sci | 9_8.sci | // calculate angle to which tube is incliend to horizontal
clc;
P=9.81;
g=9.81;
dm=0.864*10^3;
R=4*10^-3;
d=2;
D=20;
th=asind(P/(g*dm*R*(1+(d/D)^2)));
disp(th,'angle to which tube is incliend to horizontal(degree)') |
ae7a1983946919a723198dec44e1c74c03dea6e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH5/EX5.14.b/solution5_14.sce | 7471b617e23de07e459d56f83b7d6285c72978cb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,774 | sce | solution5_14.sce |
function[] = plot_format()
//Get the handle of current axes
g = gca()
//Give labels and set label properties
g.labels_font_color=5
g.font_size=3
g.grid=[1,1]
g.box="off"
endfunction
//Obtain path of solution file
path = get_absolute_file_path('solution5_14.sce')
//Obtain path of data file
datapath = path + filesep() + 'data5_14.sci'
//Obtain path of function file
funcpath = path + filesep() + 'functions5_14.sci'
//Clear all
clc
//Execute the data file
exec(datapath)
exec(funcpath,[-1])
//Calculate Sdash (N/mm2)
Sdash = (50/100)*Sut
//Calculate Ka, Kb and Kc
[Ka, Kb, Kc] = fluctuate(op, d, reliability)
//From Fig. 5.24
//Ka = 0.82
//Calculate endurance limit stress for vessel Se (N/mm2)
Se = Ka * Kb * Kc * Sdash
//Assume thickness of plate to be 1mm t
t = 1
//Calculate sigmaMax and sigmaMin (N/mm2)
sigmaMax = (Pmax * Di)/(4 * t)
sigmaMin = (Pmin * Di)/(4 * t)
//Calculate sigmaA and sigmaM (N/mm2)
sigmaM = (sigmaMax + sigmaMin)/2
sigmaA = (sigmaMax - sigmaMin)/2
theta = atand(sigmaA/sigmaM)
//Plot modified Goodman diagram
//The common quadrilateral in the plot is the area of concern
x1 = {0 Syt}
y1 = {Syt 0}
x2 = {0 Sut}
y2 = {Se 0}
plot(x1,y1,'-*')
plot(x2,y2,'--*')
plot_format()
title('Modified Goodman diagram (Example 5.14)')
xlabel('sigmaM (N/mm2)')
ylabel('sigmaA (N/mm2)')
//Calculate Sm (N/mm2)
Sm = 1/((tand(theta)/Se) + (1/Sut))
//Calculate Sa (N/mm2)
Sa = Sm * tand(theta)
//Calculate the actual value of t (mm)
t = (sigmaA * fs)/Sa
//Print results
printf('\nThickness of plate(t) = %f mm\n',t)
printf('\nAnswer is slightly different because of use of equation 5.18\n')
printf('Use value of Ka from Fig.5.24 in order to obtain the mentioned result\n')
|
7a40ac046e0b2ceeb1c61b64ac7b2fba9d370907 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH24/EX24.4/Ex24_4.sce | eb49afda891bbb4ce540edac027e04e8dd07c102 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,083 | sce | Ex24_4.sce | //Variable declaration:
fm = 30/100 //Mole fraction of methane
fe = 50/100 //Mole fraction of ethane
fp = 20/100 //Mole fraction of pentane
LFLm = 0.046 //Lower flammability limit for methane
LFLe = 0.035 //Lower flammability limit for ethane
LFLp = 0.014 //Lower flammability limit for propane
UFLm = 0.142 //Upper flammability limit for methane
UFLe = 0.151 //Upper flammability limit for ethane
UFLp = 0.078 //Upper flammability limit for propane
//Calculation:
LFLmix = 1/((fm/LFLm)+(fe/LFLe)+(fp/LFLp)) //Lower flammability limit of gas mixture
UFLmix = 1/((fm/UFLm)+(fe/UFLe)+(fp/UFLp)) //Upper flammability limit of gas mixture
//Result:
printf("The upper flammability limit (UFL) of the gas mixture is : %.2f %%",UFLmix*100)
printf("The lower flammability limit (LFL) of the gas mixture is : %.2f %%",LFLmix*100)
printf("There is a printing mistake in book.")
|
bcf3fafd11d88873e4ce9cba7fa2ce324152a65c | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /kMatlab/kAmbient.sci | 64ce107d54c21fa26cf8c1f32583ddd4b8ffc13b | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 695 | sci | kAmbient.sci | function [r] = kAmbient(ref)
// Ouput variables initialisation (not found in input variables)
r=[];
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
//KAMBIENT Get the value of the ambient light sensors of Khepera
//
//value = kAmbient(ref)
// Return a vector of 8 values corresponding to the 8
// ambient light sensors of Khepera.
// Use the reference obtained with kopen.
// Written by Yves Piguet, 8/98.
reply = kcmd(ref,"O");
// !! L.12: Matlab function sscanf not yet converted, original calling sequence used
[value,count,errmsg] = sscanf(reply,"o,%d,%d,%d,%d,%d,%d,%d,%d");
if isempty(errmsg) then
r = value;
else
r = -1;
end;
endfunction
|
095545aef7a55859b19b842ddb70b291ff9d7825 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH1/EX1.26/ex1_26.sce | 4cf198ca3d93f3fb4a1a066c1d56b3178b96e079 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex1_26.sce | //Chapter-1, Example 1.26, Page 41
//=============================================================================
clc;
clear;
//INPUT DATA
V=230;//supply voltage in volts
I1=12;//initial current in A
I2=16;//final current in A
//CALCULATIONS
I=I2-I1;//current through the resistance placed in parallel in A
R=V/I;//resistance in ohms by ohm's law
//OUTPUT
mprintf("Thus the resistance placed in parallel is %2.1f ohm ",R);
//=================================END OF PROGRAM==============================
|
527235edfc21b62ab15cb6c359e43307542c4ecf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH5/EX5.3.1/Ex5_3.sce | 75e3cc2f6cfa3e08b3bf3aa430b647dca61cd2b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 545 | sce | Ex5_3.sce | clc
clear
P=12; //in bar
CV=34000; //in kJ/kg
T=250; //in C
Ms=10; //in kg/kg of coal
Tfw=36; //in C
Hfw=150.74; //in kJ/kg
Hg=2784.8; //in kJ/kg
Tsup=T;
Tsat=188; //in C
Cps=2.1; //in kJ/kg K
H=Hg+(Cps*(Tsup-Tsat));
Me=(Ms*(H-Hfw))/2257;
printf('Equivalent evaporation: %3.2f kg/kg of coal',Me);
printf('\n');
Eff=(Me*250)/21.296;
printf('Boiler Power: %3.2f kW',Eff);
printf('\n');
|
65bd80cfebe827b29c1910bd119c6643b2490af3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH14/EX14.1/example1.sce | 0a79a7fcefb4b6d8c4e2fe525a396a1ad8831957 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,167 | sce | example1.sce | // calculate drain current at given gate-source voltages
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 14-1, page 482
clear; clc; close;
// Given data
// D-MOSFET
Vgsoff=-3;// gate-source cutoff voltage in volts
Idss=6*10^-3 ;// maximum drain current in amperes
Vgs1=-1 ;// gate source voltage in volts
Vgs2=-2 ;// gate source voltage in volts
Vgs3=0 ;// gate source voltage in volts
Vgs4=1 ;// gate source voltage in volts
Vgs5=2 ;// gate source voltage in volts
// Calculations
Id1=Idss*(1-(Vgs1/Vgsoff))^2 ;// drain current in amperes
Id2=Idss*(1-(Vgs2/Vgsoff))^2 ;// drain current in amperes
Id3=Idss*(1-(Vgs3/Vgsoff))^2 ;// drain current in amperes
Id4=Idss*(1-(Vgs4/Vgsoff))^2 ;// drain current in amperes
Id5=Idss*(1-(Vgs5/Vgsoff))^2 ;// drain current in amperes
disp("amperes",Id1,"drain current 1=")
disp("amperes",Id2,"drain current 2=")
disp("amperes",Id3,"drain current 3=")
disp("amperes",Id4,"drain current 4=")
disp("amperes",Id5,"drain current 5=")
// Result
// Values of Drain current is 2.67, 0.667, 6, 10.7, 16.7 mAmperes respectively. |
22e79bca563fbb21fdae6b4e1498b4e58b94b32a | e806e966b06a53388fb300d89534354b222c2cad | /macros/ftrans2.sci | 233e9cce09fd9795397f1b1a761e6e8c64e0dcc3 | [] | no_license | gursimarsingh/FOSSEE_Image_Processing_Toolbox | 76c9d524193ade302c48efe11936fe640f4de200 | a6df67e8bcd5159cde27556f4f6a315f8dc2215f | refs/heads/master | 2021-01-22T02:08:45.870957 | 2017-01-15T21:26:17 | 2017-01-15T21:26:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sci | ftrans2.sci | // Function Name = Frequency Transformation
// Inputs = 1-D FIR filter b; Transform t(varargin(1))
// Output = 2-D FIR filter h
function[h] = ftrans2(b, t)
[lhs, rhs] = argn(0)
select rhs
case 1 then
out = opencv_ftrans2(b)
case 2 then
out = opencv_ftrans2(b, varargin(1))
end
channel = size(out)
for i = 1: channel
h(:,:,i) = out(i)
end
endfunction
|
69ed0958a742137359cbe83951b3e3c68474d5a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3401/CH1/EX1.3/Ex1_3.sce | 14f637b58f3cd52c9c309b33f49b9108fb4b7a77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 132 | sce | Ex1_3.sce | clc
a1=5*10^-8// a=5A = 5*10^-8cm
n=2// number of atoms is 2
d=n/(a1*a1*2^0.5)
disp(d,"the value of d in atoms per cm^2 is")
|
3357d6c7b9706b70bba3dd249c304fbc59f166b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2792/CH3/EX3.2/Ex3_2.sce | 0d5872127828c12235e1771aaa1696941251169c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 688 | sce | Ex3_2.sce | clc
mo = 9.1*10^-31
disp("mo = "+string(mo)+"kg") //initializing value of mass of electron
ml = 0.98*mo
disp("ml* = "+string(ml)+"kg") //initializing value of longitudinal mass
mt = 0.19*mo
disp("mt*= "+string(mt)+"kg")//initializing value of transverse mass
u=1500*10^(-4)
disp("u = "+string(u)+"m^2(Vs)^-1") //initializing value of mobility of pure silicon
e = 1.6*10^-19
disp("e= "+string(e)+"C")//initializing value of charge of electron
Msig = 3*((2/mt)+(1/ml))^(-1)
disp("The conductivity mass is ,(Msig* = 3*((2/mt)+(1/ml))^(-1)))= "+string(Msig)+"kg")//calculation
Tsc = u*Msig/e
disp("The scattering time is ,Tsc = u*Msig/e= "+string(Tsc)+"s")//calculation
|
11935c80ea375d92f9ba7006e25d0ef08897ea01 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1538/CH16/EX16.3/Ex16_3.sce | 104096743a3a3b5fa6b455845070b3d30c95962a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 487 | sce | Ex16_3.sce | //example-16.3
//page no-495
//given
//young's modulus
E=51*10^9 //Pa
//poisson's ratio
nu=0.22
//magnitude of burger's vector
b=2*10^-10 //m
//we know that shear modulus is given by
G=E/2/(1-nu) //Pa
//elastic strain energy of dislocation in cold worked tin
Ue=1/2*G*b^2*10^12 //Pa m
//the strain energy in tin before cold working may be neglected as it is smaller by three orders of magnitude.
printf ("the change in energy during recrystallization is %f Pa m",Ue)
|
307848d49b89a0a52621a4bd1b8375c92bd5549a | 449d555969bfd7befe906877abab098c6e63a0e8 | /617/CH12/EX12.1/Example12_1.sci | ace91e5d6349a3720a7e3ab85874d0a413efbadf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,135 | sci | Example12_1.sci | clc();
clear;
// To calculate the heat loss per linear foot from a 4-in. (out-side diameter=4.5 in.)nominal horizontal steel pipe covered with 1 in.of insulation
D=4.5/12; // Outer diameter of pipe in ft
D2=6.5/12; // Outer diameter of insulation in ft
k=0.035; // Thermal conductivity in Btu/hr-ft-degF
T1=400; // Temperature of pipe in degF
T3=70; // Temperature of air in degF
T2=120; // Assumed temperature in degF
h=2*k*(T1-T2)/(D2*(T2-T3)*log(D2/D)); // Sum of coefficient of convection and radiation
delT=T2-T3; // Temperature differnce in degF
T2=120; // Assumed temperature in degF
printf("The assumption of T2=120 comes out to be satisfactory and hc+hr=%.1f \n ",h);
q=h*%pi*D2*delT; // Heat loss in Btu/hr
printf("The heat loss per unit foot of pipe is %d Btu/hr-ft",q);
|
e0576572d026ef29b72486900f0e40ded3cd0cf0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /25/CH9/EX9.5/9_5.sce | 16fba33d21628569583b97a266d856ca521f70f6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 420 | sce | 9_5.sce | // example:-9.5,page no.-492.
// design a band pass filter having a 0.5 db equal ripple respnse with N=3.
N=3;Zo=50;f=1*10^9;delta=1*10^8;
L1=1.596;L3=1.5963;C2=1.0967;Rl=1.000;
L_1=(L1*Zo)/(2*%pi*f*delta);
C_1=delta/(2*%pi*f*L1*Zo);
L_2=(delta*Zo)/(2*%pi*f*C2);
C_2=C2/(2*%pi*f*delta*Zo);
L_3=(L3*Zo)/(2*%pi*f*delta);
C_3=delta/(2*%pi*f*L3*Zo);
disp(L_1)
disp(L_2)
disp(C_1)
disp(C_2)
disp(L_3)
disp(C_3) |
4ca8a9fe551b58dd950a86aebf42aaf8e65e6e40 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1106/CH5/EX5.1/ex5_1.sce | 6f9c3cdafec42fd167e2180df7f65904f8058ab4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 163 | sce | ex5_1.sce | // Example 5.1, Page No-234
clear
clc
Vz1=5.5
Vz2=5.5
Aol=100000
Vd=0.7
Vo=Vz1+Vd // Plus or minus
Vich=Vo/Aol
Vich=Vich*1000
printf('Delta Vi=%.3f mV', Vich)
|
2fe0769a89b8046d85df3895d447f0e98b2d4b53 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH7/EX7.42/42.sci | 909012ba900756a4df6cac0dbfafc35697482d47 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 630 | sci | 42.sci | clc;
clear all;
disp("heat transfer from plate")
L=0.8;//m
U=45;//m/s
ts=300;//degree C
ta=20;// degree C
Re=5*10^5;
k=0.03638;// W/m.C
v=30.08*10^(-6);//m^2/s
Pr=0.682;
xc=Re*v/U;
h=0.664*(k/xc)*Re^0.5*Pr^(1/3);
A=xc*1;
Qlam=h*A*(ts-ta);
disp("W",Qlam,"Heat transfer from laminar portion =")
ReL=U*L/v;
h=0.036*k/(L-xc)*(ReL^0.8-Re^0.8)*Pr^(1/3)
Qturb=h*(0.8-A)*(ts-ta);
disp("W",Qturb,"Heat transfer from turbulent portion =")
Qtotal=Qlam+Qturb;
disp("W",Qtotal,"Heat transfer from both portions =")
h=0.036*k/L*(ReL^0.8)*Pr^(1/3);
Qt=h*L*(ts-ta);
e=(Qt/Qtotal-1)*100;
disp("%",e,"Percentage error =")
|
8c5e41e057363791d018f431872973bc49ec8f7a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1892/CH1/EX1.72/Example1_72.sce | 31788b459de6344b5ec365df02be3205c664a477 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sce | Example1_72.sce | // Example 1.72
clc;clear;close;
// Given data
format('v',6);
V=500;//in Volt
f1=50;//in Hz
phase=3;//no. of phase
P=6;//no. of poles
Nr=995;//in rpm
Pm=20;//mech power in KW
StatorLoss=1500;//in watts
pf=0.87;//power facator
//calculations
Ns=f1*120/P;//in rpm
S=(Ns-Nr)/Ns;//slip
disp(S,"(a) Slip is : ");
Prc=S/(1-S)*Pm*1000;//in watts
disp(Prc,"(b) Rotor I^2*R Loss in watts : ");
RotorInput=Prc/S;//in watts
TotalInput=RotorInput+StatorLoss;//in watts
disp(TotalInput/1000,"(c) Total input in KW : ");
LineCurrent=TotalInput/sqrt(3)/V/pf;//in Ampere
disp(LineCurrent,"(d) Line current in Ampere : ")
fr=S*f1;//in Hz
disp(fr,"Rotor frequency in HZ : ");
|
02480568469a7b6225b552ee461a81d4a78fcfc5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH3/EX3.25/ex3_25.sce | b7bcea9aee720419177d044c933780e40c95c86c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 477 | sce | ex3_25.sce | // Exa 3.25
clc;
clear;
close;
// Given data
P1 = 14;// in bar
P3 = 2.222;// in bar
V3byV1 = P1/P3;
P2 = 1.05;// in bar
Gamma = log(P1/P2)/log(V3byV1);
C_P = 1.005;// in kJ/kg-K
C_V = C_P/Gamma;// in kJ/kg-K
T3 = 343;// in degree C
T3 = T3 + 273;// in K
T2 = ceil(T3*P2)/P3;// in K
m = 0.5;// in kg
del_U = m*C_V*(T2-T3);// in kJ
disp(del_U,"Change in internal energy in kJ is");
disp("i.e. there is a loss of "+string(abs(del_U))+" kJ of internal energy")
|
80e543d13559c2ba861e9ad0a65e7291f0d08d3b | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/RA72WYU/ATWM1_Working_Memory_MEG_RA72WYU_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce | 688e5f7e15dcf588ac7f9461f1a119fde531354b | [] | 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,645 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
} 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 1742 2992 2342 fixation_cross gabor_042 gabor_066 gabor_124 gabor_171 gabor_042 gabor_066 gabor_124_alt gabor_171_alt "2_1_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_042_066_124_171_target_position_1_2_retrieval_position_1" gabor_042_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_134 gabor_052 gabor_092 gabor_019 gabor_134 gabor_052_alt gabor_092_alt gabor_019 "2_2_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_134_052_092_019_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_019_framed blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2192 2992 1992 fixation_cross gabor_153 gabor_138 gabor_067 gabor_082 gabor_153_alt gabor_138 gabor_067 gabor_082_alt "2_3_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_153_138_067_082_target_position_2_3_retrieval_position_2" gabor_circ gabor_002_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1992 2992 2142 fixation_cross gabor_129 gabor_044 gabor_104 gabor_014 gabor_129 gabor_044_alt gabor_104_alt gabor_014 "2_4_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_2000_3000_2150_gabor_patch_orientation_129_044_104_014_target_position_1_4_retrieval_position_2" gabor_circ gabor_044_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_044_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1942 2992 2242 fixation_cross gabor_063 gabor_146 gabor_093 gabor_123 gabor_063_alt gabor_146_alt gabor_093 gabor_123 "2_5_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_063_146_093_123_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1742 2992 2042 fixation_cross gabor_072 gabor_087 gabor_010 gabor_128 gabor_072 gabor_087 gabor_010_alt gabor_128_alt "2_6_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_072_087_010_128_target_position_1_2_retrieval_position_2" gabor_circ gabor_042_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1892 2992 2092 fixation_cross gabor_175 gabor_160 gabor_089 gabor_007 gabor_175_alt gabor_160_alt gabor_089 gabor_007 "2_7_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_175_160_089_007_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_007_framed blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_083 gabor_104 gabor_122 gabor_140 gabor_083 gabor_104_alt gabor_122_alt gabor_140 "2_8_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_083_104_122_140_target_position_1_4_retrieval_position_1" gabor_083_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_120 gabor_140 gabor_056 gabor_089 gabor_120 gabor_140_alt gabor_056_alt gabor_089 "2_9_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_120_140_056_089_target_position_1_4_retrieval_position_1" gabor_120_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2242 2992 2392 fixation_cross gabor_123 gabor_081 gabor_062 gabor_143 gabor_123 gabor_081_alt gabor_062 gabor_143_alt "2_10_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_123_081_062_143_target_position_1_3_retrieval_position_1" gabor_123_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1892 2992 1992 fixation_cross gabor_146 gabor_020 gabor_087 gabor_037 gabor_146_alt gabor_020 gabor_087_alt gabor_037 "2_11_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_146_020_087_037_target_position_2_4_retrieval_position_2" gabor_circ gabor_020_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_068 gabor_130 gabor_095 gabor_173 gabor_068 gabor_130_alt gabor_095_alt gabor_173 "2_12_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_068_130_095_173_target_position_1_4_retrieval_position_1" gabor_068_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1792 2992 2142 fixation_cross gabor_023 gabor_167 gabor_004 gabor_050 gabor_023 gabor_167_alt gabor_004_alt gabor_050 "2_13_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_1800_3000_2150_gabor_patch_orientation_023_167_004_050_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_004_framed gabor_circ blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_004_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_070 gabor_108 gabor_086 gabor_155 gabor_070_alt gabor_108 gabor_086 gabor_155_alt "2_14_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_070_108_086_155_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_086_framed gabor_circ blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1892 2992 2092 fixation_cross gabor_011 gabor_098 gabor_060 gabor_034 gabor_011 gabor_098 gabor_060_alt gabor_034_alt "2_15_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_011_098_060_034_target_position_1_2_retrieval_position_2" gabor_circ gabor_098_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1842 2992 2342 fixation_cross gabor_016 gabor_159 gabor_077 gabor_098 gabor_016 gabor_159 gabor_077_alt gabor_098_alt "2_16_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_1850_3000_2350_gabor_patch_orientation_016_159_077_098_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_124_framed gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_124_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 2242 fixation_cross gabor_128 gabor_068 gabor_145 gabor_093 gabor_128_alt gabor_068_alt gabor_145 gabor_093 "2_17_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_128_068_145_093_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_145_framed gabor_circ blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1942 2992 2042 fixation_cross gabor_004 gabor_136 gabor_116 gabor_065 gabor_004_alt gabor_136 gabor_116_alt gabor_065 "2_18_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_004_136_116_065_target_position_2_4_retrieval_position_2" gabor_circ gabor_136_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1842 2992 2242 fixation_cross gabor_028 gabor_100 gabor_068 gabor_051 gabor_028_alt gabor_100 gabor_068 gabor_051_alt "2_19_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_028_100_068_051_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_116_framed gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_091 gabor_170 gabor_146 gabor_057 gabor_091_alt gabor_170 gabor_146 gabor_057_alt "2_20_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_091_170_146_057_target_position_2_3_retrieval_position_2" gabor_circ gabor_170_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_123 gabor_165 gabor_100 gabor_144 gabor_123_alt gabor_165 gabor_100 gabor_144_alt "2_21_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_123_165_100_144_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_055_framed gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1992 2992 2092 fixation_cross gabor_063 gabor_147 gabor_078 gabor_126 gabor_063 gabor_147 gabor_078_alt gabor_126_alt "2_22_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_063_147_078_126_target_position_1_2_retrieval_position_2" gabor_circ gabor_009_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1892 2992 2242 fixation_cross gabor_037 gabor_006 gabor_120 gabor_064 gabor_037 gabor_006_alt gabor_120 gabor_064_alt "2_23_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_1900_3000_2250_gabor_patch_orientation_037_006_120_064_target_position_1_3_retrieval_position_2" gabor_circ gabor_006_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_006_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1842 2992 2092 fixation_cross gabor_180 gabor_001 gabor_040 gabor_109 gabor_180_alt gabor_001_alt gabor_040 gabor_109 "2_24_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_180_001_040_109_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_060_framed blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1892 2992 2442 fixation_cross gabor_099 gabor_150 gabor_078 gabor_027 gabor_099_alt gabor_150 gabor_078 gabor_027_alt "2_25_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_1900_3000_2450_gabor_patch_orientation_099_150_078_027_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_027_framed blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_027_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_002 gabor_049 gabor_122 gabor_172 gabor_002 gabor_049_alt gabor_122_alt gabor_172 "2_26_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_002_049_122_172_target_position_1_4_retrieval_position_1" gabor_139_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_088 gabor_029 gabor_170 gabor_109 gabor_088 gabor_029_alt gabor_170 gabor_109_alt "2_27_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_088_029_170_109_target_position_1_3_retrieval_position_1" gabor_137_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_176 gabor_120 gabor_033 gabor_008 gabor_176_alt gabor_120_alt gabor_033 gabor_008 "2_28_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_176_120_033_008_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_058_framed blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1942 2992 2142 fixation_cross gabor_148 gabor_077 gabor_060 gabor_105 gabor_148 gabor_077 gabor_060_alt gabor_105_alt "2_29_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_1950_3000_2150_gabor_patch_orientation_148_077_060_105_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_015_framed gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_015_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_130 gabor_162 gabor_048 gabor_014 gabor_130 gabor_162_alt gabor_048_alt gabor_014 "2_30_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_130_162_048_014_target_position_1_4_retrieval_position_1" gabor_084_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_092 gabor_072 gabor_048 gabor_122 gabor_092_alt gabor_072 gabor_048 gabor_122_alt "2_31_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_092_072_048_122_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_048_framed gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2142 2992 2342 fixation_cross gabor_002 gabor_068 gabor_176 gabor_130 gabor_002_alt gabor_068_alt gabor_176 gabor_130 "2_32_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2150_3000_2350_gabor_patch_orientation_002_068_176_130_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_176_framed gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_106 gabor_018 gabor_037 gabor_152 gabor_106_alt gabor_018 gabor_037 gabor_152_alt "2_33_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_106_018_037_152_target_position_2_3_retrieval_position_2" gabor_circ gabor_065_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1792 2992 2492 fixation_cross gabor_133 gabor_072 gabor_048 gabor_156 gabor_133_alt gabor_072 gabor_048_alt gabor_156 "2_34_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_1800_3000_2500_gabor_patch_orientation_133_072_048_156_target_position_2_4_retrieval_position_1" gabor_133_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_133_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2092 2992 2192 fixation_cross gabor_036 gabor_145 gabor_002 gabor_161 gabor_036 gabor_145_alt gabor_002 gabor_161_alt "2_35_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_036_145_002_161_target_position_1_3_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_109 gabor_027 gabor_093 gabor_153 gabor_109_alt gabor_027 gabor_093 gabor_153_alt "2_36_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_109_027_093_153_target_position_2_3_retrieval_position_2" gabor_circ gabor_027_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_152 gabor_017 gabor_170 gabor_034 gabor_152 gabor_017_alt gabor_170_alt gabor_034 "2_37_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_152_017_170_034_target_position_1_4_retrieval_position_1" gabor_152_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_090 gabor_136 gabor_153 gabor_117 gabor_090_alt gabor_136 gabor_153 gabor_117_alt "2_38_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_090_136_153_117_target_position_2_3_retrieval_position_2" gabor_circ gabor_136_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2092 2992 2192 fixation_cross gabor_057 gabor_020 gabor_138 gabor_110 gabor_057_alt gabor_020_alt gabor_138 gabor_110 "2_39_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_057_020_138_110_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_138_framed gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2242 2992 2042 fixation_cross gabor_139 gabor_123 gabor_034 gabor_161 gabor_139_alt gabor_123 gabor_034_alt gabor_161 "2_40_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2250_3000_2050_gabor_patch_orientation_139_123_034_161_target_position_2_4_retrieval_position_2" gabor_circ gabor_076_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_076_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 2092 2992 2392 fixation_cross gabor_123 gabor_081 gabor_061 gabor_013 gabor_123 gabor_081_alt gabor_061_alt gabor_013 "2_41_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_2100_3000_2400_gabor_patch_orientation_123_081_061_013_target_position_1_4_retrieval_position_2" gabor_circ gabor_033_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_033_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_150 gabor_099 gabor_117 gabor_032 gabor_150_alt gabor_099_alt gabor_117 gabor_032 "2_42_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_150_099_117_032_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_167_framed blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_167_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1842 2992 2092 fixation_cross gabor_066 gabor_099 gabor_017 gabor_035 gabor_066_alt gabor_099_alt gabor_017 gabor_035 "2_43_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_066_099_017_035_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_017_framed gabor_circ blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2192 2992 2242 fixation_cross gabor_143 gabor_170 gabor_113 gabor_003 gabor_143 gabor_170_alt gabor_113 gabor_003_alt "2_44_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_143_170_113_003_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_113_framed gabor_circ blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2092 2992 2442 fixation_cross gabor_003 gabor_091 gabor_169 gabor_124 gabor_003 gabor_091_alt gabor_169 gabor_124_alt "2_45_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_003_091_169_124_target_position_1_3_retrieval_position_1" gabor_003_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_177 gabor_026 gabor_047 gabor_009 gabor_177 gabor_026 gabor_047_alt gabor_009_alt "2_46_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_177_026_047_009_target_position_1_2_retrieval_position_2" gabor_circ gabor_161_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 2142 2992 1992 fixation_cross gabor_066 gabor_108 gabor_148 gabor_086 gabor_066 gabor_108 gabor_148_alt gabor_086_alt "2_47_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_2150_3000_2000_gabor_patch_orientation_066_108_148_086_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_037_framed blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_037_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2142 2992 2292 fixation_cross gabor_096 gabor_130 gabor_055 gabor_022 gabor_096_alt gabor_130 gabor_055_alt gabor_022 "2_48_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_096_130_055_022_target_position_2_4_retrieval_position_2" gabor_circ gabor_176_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1992 2992 2442 fixation_cross gabor_087 gabor_005 gabor_025 gabor_046 gabor_087 gabor_005 gabor_025_alt gabor_046_alt "2_49_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2000_3000_2450_gabor_patch_orientation_087_005_025_046_target_position_1_2_retrieval_position_1" gabor_135_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_035 gabor_013 gabor_098 gabor_149 gabor_035 gabor_013_alt gabor_098 gabor_149_alt "2_50_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_035_013_098_149_target_position_1_3_retrieval_position_1" gabor_080_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1742 2992 2042 fixation_cross gabor_002 gabor_051 gabor_113 gabor_176 gabor_002 gabor_051 gabor_113_alt gabor_176_alt "2_51_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_1750_3000_2050_gabor_patch_orientation_002_051_113_176_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_130_framed blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_130_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_059 gabor_175 gabor_132 gabor_043 gabor_059 gabor_175_alt gabor_132 gabor_043_alt "2_52_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_059_175_132_043_target_position_1_3_retrieval_position_1" gabor_059_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_094 gabor_054 gabor_079 gabor_026 gabor_094 gabor_054 gabor_079_alt gabor_026_alt "2_53_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_094_054_079_026_target_position_1_2_retrieval_position_2" gabor_circ gabor_008_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2192 2992 2492 fixation_cross gabor_136 gabor_014 gabor_083 gabor_167 gabor_136_alt gabor_014_alt gabor_083 gabor_167 "2_54_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_136_014_083_167_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_030_framed blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2142 2992 2292 fixation_cross gabor_025 gabor_115 gabor_141 gabor_088 gabor_025_alt gabor_115 gabor_141_alt gabor_088 "2_55_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_025_115_141_088_target_position_2_4_retrieval_position_2" gabor_circ gabor_065_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_131 gabor_100 gabor_067 gabor_178 gabor_131 gabor_100_alt gabor_067_alt gabor_178 "2_56_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_131_100_067_178_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_178_framed blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1992 2992 2042 fixation_cross gabor_038 gabor_076 gabor_146 gabor_115 gabor_038_alt gabor_076 gabor_146 gabor_115_alt "2_57_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_2000_3000_2050_gabor_patch_orientation_038_076_146_115_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_163_framed blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_163_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2142 2992 2192 fixation_cross gabor_082 gabor_127 gabor_020 gabor_001 gabor_082 gabor_127 gabor_020_alt gabor_001_alt "2_58_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_082_127_020_001_target_position_1_2_retrieval_position_1" gabor_037_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_054 gabor_159 gabor_141 gabor_088 gabor_054 gabor_159 gabor_141_alt gabor_088_alt "2_59_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_054_159_141_088_target_position_1_2_retrieval_position_1" gabor_006_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2192 2992 2192 fixation_cross gabor_140 gabor_089 gabor_158 gabor_069 gabor_140_alt gabor_089 gabor_158_alt gabor_069 "2_60_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_140_089_158_069_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_069_framed blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_069_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2492 fixation_cross gabor_041 gabor_123 gabor_018 gabor_092 gabor_041_alt gabor_123 gabor_018_alt gabor_092 "2_61_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_041_123_018_092_target_position_2_4_retrieval_position_2" gabor_circ gabor_172_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1992 2992 2292 fixation_cross gabor_129 gabor_162 gabor_056 gabor_039 gabor_129 gabor_162 gabor_056_alt gabor_039_alt "2_62_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_2000_3000_2300_gabor_patch_orientation_129_162_056_039_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_039_framed blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_039_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_153 gabor_078 gabor_127 gabor_094 gabor_153 gabor_078_alt gabor_127_alt gabor_094 "2_63_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_153_078_127_094_target_position_1_4_retrieval_position_1" gabor_153_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_025 gabor_009 gabor_071 gabor_049 gabor_025 gabor_009_alt gabor_071_alt gabor_049 "2_64_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_025_009_071_049_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_098_framed blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 2442 fixation_cross gabor_043 gabor_174 gabor_002 gabor_157 gabor_043_alt gabor_174 gabor_002_alt gabor_157 "2_65_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_043_174_002_157_target_position_2_4_retrieval_position_2" gabor_circ gabor_129_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_059 gabor_168 gabor_079 gabor_011 gabor_059_alt gabor_168 gabor_079_alt gabor_011 "2_66_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_059_168_079_011_target_position_2_4_retrieval_position_2" gabor_circ gabor_032_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2242 2992 2242 fixation_cross gabor_067 gabor_021 gabor_044 gabor_111 gabor_067_alt gabor_021 gabor_044 gabor_111_alt "2_67_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_067_021_044_111_target_position_2_3_retrieval_position_2" gabor_circ gabor_156_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_156_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1942 2992 2492 fixation_cross gabor_036 gabor_052 gabor_077 gabor_016 gabor_036_alt gabor_052 gabor_077_alt gabor_016 "2_68_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_1950_3000_2500_gabor_patch_orientation_036_052_077_016_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_123_framed gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_123_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_059 gabor_091 gabor_140 gabor_033 gabor_059 gabor_091_alt gabor_140_alt gabor_033 "2_69_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_059_091_140_033_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_170_framed blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1942 2992 2342 fixation_cross gabor_158 gabor_096 gabor_018 gabor_141 gabor_158 gabor_096_alt gabor_018_alt gabor_141 "2_70_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_1950_3000_2350_gabor_patch_orientation_158_096_018_141_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_018_framed gabor_circ blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_018_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
da934fc1024baa4ebdc2a7f7841905f9829f0d44 | fa96b6f7b84fc275c3bc6a2ec1413711285aa54a | /Negative, Logarithmic & Power Law Transform/Power law Transformation.sce | b6875cfcf95e27523a84d5b723a0026dd942f671 | [] | no_license | Sid-149/Image-Processing-and-Machine-Vision | 9d4d4308b39d7bd3fb0ab8171531fbbfe4381de9 | 94bb83e4005b39c2f08d15e23c5be73cde01b364 | refs/heads/main | 2022-12-30T01:51:08.942675 | 2020-10-19T05:15:12 | 2020-10-19T05:15:12 | 302,541,282 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 465 | sce | Power law Transformation.sce | clc
clear
im=imread('color.jpg')
subplot(1,5,1)
title('Orignal')
imshow(im)
a=rgb2gray(im)
n=im2double(a)
subplot(1,5,2)
title('Doubled')
imshow(n)
s1=n.^0.2
c=(255)/max(max(s1))
s2=s1*c
u=uint8(s2)
subplot(1,5,3)
title('Alpha=0.2')
imshow(u)
s1=n.^0.4
c=(255)/max(max(s1))
s2=s1*c
u=uint8(s2)
subplot(1,5,4)
title('Alpha=0.4')
imshow(u)
s1=n.^0.6
c=(255)/max(max(s1))
s2=s1*c
u=uint8(s2)
subplot(1,5,5)
title('Alpha=0.6')
imshow(u)
|
a7e8a0012af44415e0b29294c36f097ee31491f6 | 8ea401b354e99fe129b2961e8ee6f780dedb12bd | /examples/pandasfunc.sce | 281d8c7bef42cf779a7a8bad0906752c909ecaf8 | [
"BSD-2-Clause"
] | permissive | adityadhinavahi/SciPandas | 91340ca30e7b4a0d76102a6622c97733a28923eb | b78b7571652acf527f877d9f1ce18115f327fa18 | refs/heads/master | 2022-12-20T04:04:35.984747 | 2020-08-19T16:10:51 | 2020-08-19T16:10:51 | 288,765,541 | 0 | 1 | null | 2020-08-19T15:35:04 | 2020-08-19T15:14:46 | Python | UTF-8 | Scilab | false | false | 276 | sce | pandasfunc.sce | //Load SciPandas before execution
pd = pandas();
df = pd.read_csv(".\train.csv");
pd_func = pandasfunc()
array = [""'a''",""'b''",""'c''"]
pd_df = pd_func.DataFrame("{"+array(1)+":[1],"+array(2)+":[2],"+array(3)+":[3]}");
disp(pd_df); //Create a pandas dataframe and display
|
e7312a0463492def5599bc7d1d1f5a1d17dc5090 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2288/CH2/EX2.15.1/ex2_15_1.sce | 8a59353fb2853e5a81f79a296cf443afec516006 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex2_15_1.sce | //Exa 2.15.1
clc;
clear;
close;
// Given data
del_E = 0.3;// in eV
T1 = 300;// in K
T2 = 330;// in K
// del_E = K * T1 * log(N/N_c) where del_E= E_C-E_F
// del_E1 = K * T2 * log(N/N_c) where del_E1= E_C-E_F at T= 330 °K
del_E1 = del_E*(T2/T1);// in eV
disp("The Fermi level will be "+string(del_E1)+" eV below the conduction band")
|
86dc4d199145a6e7c2f328394368bc55cbd91973 | 449d555969bfd7befe906877abab098c6e63a0e8 | /854/CH1/EX1.1/Example1_1.sce | 92c8631e08f019998cadddd357f362338d105d48 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 259 | sce | Example1_1.sce | //clear//
//Caption:Program to find the unit vector
//Example1.1
//page 8
G = [2,-2,-1]; //position of point G in cartesian coordinate system
aG = G/norm(G);
disp(aG,'Unit Vector aG =')
//Result
//Unit Vector aG =
// 0.6666667 - 0.6666667 - 0.3333333 |
08e44d2ac2c7a9d78a10f396da82c2c20d97c2c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3885/CH6/EX6.9/Ex6_9.sci | b4e38f2ccd3c3c7bdd768778aff39b106e55d40b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,952 | sci | Ex6_9.sci | //control systems by Nagoor Kani A
//Edition 3
//Year of publication 2015
//Scilab version 6.0.0
//operating systems windows 10
// Example 6.9
clc;
clear;
s=poly(0,'s')
//calculation of gain K
kv=80//given velocity error constant
// open loop transfer function G(s)=K/s*(s+3)(s+6)
//by definition of velocity error constant applying limit s=0 in G(s)
disp('the value of K is 1440;')
h=syslin('c',1440/(s*(s+3)*(s+6)))
bode(h)
show_margins(h)
xtitle("uncompensated system")
//from the plot the phase margin of uncompensated system is -46
pm=40//choose PM of compensated system is 40 degree
phigcn=40-180// phase of G(s) at new gain cross over frequency
wgcn=1.8//the frequency corrosponding to phase of -140 is 1.8 rad/sec
wgcl=4//choose gain cross over frequency of lag compensator as 4rad/sec
agcl=23//db magnitude at egcl is 23db
//agcl=20log*betaa
betaa=10^(agcl/20)
disp(betaa,'the value of betaa is')
zc1=wgcl/10//zero of lag compensator
t1=10/wgcl
disp(t1,'the value of t1 is ')
pc1=1/(betaa*t1)
disp(pc1,'pole of lag compensator is')
//transfer function of lag section is (betaa*1+st1)/(1+s*betaa*t1)
hc1=syslin('c',(14*(1+2.5*s))/(1+35*s))
disp(hc1,'transfer function of lag section')
alpha=1/betaa
disp(alpha,'the value of alpha is')
wmdb=-20*log(1/sqrt(alpha))////db magnitude
wm=17//from the bode plot of uncompensated system the frequency wm corrosponding to db gain of -12db is 17rad/sec
t2=1/(wm*sqrt(alpha))
//transfer function of lead section is (alpha*1+st2)/(1+s*alpha*t2)
hc2=syslin('c',(0.07*(1+0.22*s))/(1+0.0154*s))
disp(hc2,'transfer function of lead section')
hc3=syslin('c',hc1*hc2)
disp(hc3,'the tansfer function of lag lead compensation system is')
//open loop transfer function of compensated system is h*hc3
hcmp=syslin('c',h*hc3)
disp(hcmp,'the overll transfer function of compensated system')
figure()
bode(hcmp)
show_margins(hcmp)
xtitle("compensated system")
|
2fdbc43ac5bb763be3fb872db920cd45d2209c1d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH24/EX24.3/Ex24_3.sce | a50b2d2dbbcfe4deb41ad4bc10552569a9ecc1db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,191 | sce | Ex24_3.sce |
function[r,theta]=rect2pol(A)
x=real(A)
y=imag(A)
r=sqrt(x^2+y^2)
theta=atan(y/x)
endfunction
function[z]=pol2rect(r,theta)
x=r*cos(theta)
y=r*sin(theta)
z=x+y*%i
endfunction
function[r]=mag(A)
x=real(A)
y=imag(A)
r=sqrt(x^2+y^2)
endfunction
f=50//frequency
P=4//no. of poles
Ns=120*f/P//synchronous speed
Nr=1425
s=(Ns-Nr)/Ns//slip
R2_dash=7.5
X2_dash=4.5
Xm=150
Zf=(Xm*%i/2)*(R2_dash/(2*s)+%i*X2_dash/2)/(R2_dash/(2*s)+%i*(Xm+X2_dash)/2)//forward impedance
Zb=(%i*Xm/2)*(R2_dash/(2*(2-s))+%i*X2_dash/2)/(R2_dash/(2*(2-s))+%i*(Xm+X2_dash)/2)//backward impedance
Z1=2.5+4.5*%i
Zin=Z1+Zf+Zb//input impedance
//calculating input current
V1=pol2rect(230,0)
I1=V1/Zin
[I1 theta]=rect2pol(I1)
mprintf("Input current drawn by the motor is %f A at %f pf lagging\n", I1,cos(theta))
//calculating air gap power
Pgf=I1^2*real(Zf)//air gap power due to forward field
Pgb=I1^2*real(Zb)//air gap power due to backward field
Pg=Pgf+Pgb
mprintf("Air gap power=%f W\n",Pg)
//calculating rotor copper losses
Prc=s*Pgf+(2-s)*Pgb
mprintf("Rotor copper losses=%f W",Prc)
//answers vary from the textbook due to round off error
|
d33ba2ae438676043a8b0199fe45bcc52f598efb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH5/EX5.12/5_12.sce | 0e73484c0f3695f59154914ad3200772b9929991 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 452 | sce | 5_12.sce | clear;
clc;
R=80;C=0.06*(10^-6);L=0;G=0;f=2500;al=0.04;ratio=40;
fc=2*f;
//ratio=ratio off resistance to inductance of loading coil
A=2/(3.14*3.14*C*4*f*f); //A=Lc*d
B=al/(%pi*f*1.414*C/2);
C=%pi*f*1.414*C/2;
y=poly([ratio*C*100*A -al*100 80*100*C],"x","coeff");
a=roots(y);
b=round(a(1,1)*100)/100;
Lo=round((A/b)*1000)/1000;
printf("Adding %f Henry coils at intervals of %f km is the practical and economically possible solution.",Lo,b)
|
36cb3cbd746578646cbbc8d6d0fa02365507b101 | 54cca39cd1cf7f62b001c8a4d64dcc3d29e3cb4e | /Memoryleak/memoryleak.sce | be0ed9306240d07327ae53424380f3c9098fead9 | [] | no_license | hamling-ling/NumericalResearches | d2487c2566c24ba3dc674e7e17f1745c1020d542 | a824357d7650d3ed86220f1315ee37e577285a7d | refs/heads/master | 2021-01-25T08:36:58.455319 | 2015-04-22T15:17:21 | 2015-04-22T15:17:21 | 7,775,139 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 276 | sce | memoryleak.sce | clear
ys0=read("playstop2.dat",-1,1)
ys1=read("playstop_fixed.dat",-1,1)
sz0=size(ys0)
sz1=size(ys1)
xs0=[1:15:sz0(1,1)*15]'
xs1=[1:1:sz1(1,1)]'
xlabel("time(sec)")
ylabel("virtual bytes(M byte)")
plot2d(xs0,ys0./(10^6),color("red"))
plot2d(xs1,ys1./(10^6),color("blue"))
|
7ff8244c0a34b3216f934a01d04532a6c0a6186e | 32869948ce801ed2e69b5fb986fc310cab9a6d4a | /help/en_US/build_help.sce | 190ec858a3de0a7281fae12a5c858b987b92d6b6 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ierturk/SciPowerLab | 54ed5755cf4f3854176d7088f893317fe86cc0cf | da5d153272bae12564c1ded95241d6b40c8b4a90 | refs/heads/master | 2022-07-20T15:29:09.447509 | 2022-07-18T21:10:36 | 2022-07-18T21:10:36 | 94,237,627 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 168 | sce | build_help.sce | // ErturkMe - Copyright 2011 - 2022
// http://erturk.me
// ierturk@ieee.org
// See license.txt
tbx_build_help(TOOLBOX_TITLE,get_absolute_file_path("build_help.sce"));
|
add6ec03344d84ca90d0b26ed561441cce88423e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH5/EX5.2/ex5_2.sce | b60769f5e8b82843238fd6596c013e036527f688 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex5_2.sce | // Exa 5.2
clc;
clear;
close;
format('v',6)
// Given data
R_Ph = 16;// in ohm
X_L = 12;// in ohm
V_L = 400;// in V
disp(V_L,"The line voltage in V is");
f = 50;// in Hz
V_Ph = V_L/sqrt(3);// in V
disp(V_Ph,"The phase voltage in V is");
Z_Ph = R_Ph + %i*X_L;// in ohm
I_Ph= V_Ph/Z_Ph;// in A
I_L= I_Ph;// in A
phi= atand(imag(I_L),real(I_L));
cos_phi= R_Ph/abs(Z_Ph);
disp(abs(I_L),"The line current in A is : ")
disp(abs(I_Ph),"The line current in A is : ")
disp("Power factor is : "+string(cos_phi)+" lagging")
P= sqrt(3)*V_L*abs(I_L)*cos_phi;// in W
disp(P,"The power absorbed in W is : ")
|
cb83f4367ff0b019044b830e0887c9c2e025a3a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3822/CH4/EX4.2/Ex4_2.sce | e867556753cfd13d2e4ae109f9c432c44dc53152 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 641 | sce | Ex4_2.sce |
//Optoelectronics and Fiber Optics Communication by C.R. Sarkar and D.C. Sarkar
//Example 4.2
//OS = Windows 7
//Scilab version 5.5.2
clc;
clear;
//given
NA=0.18;//numerical aperture
RD=30;//radiance of the source in W/Sr/cm^2
d=50*10^-4;//core diameter in cm
R=0.01;//Fresnel reflection coefficient
a=d/2;//radius of the core in cm
A=%pi*((a)^2);//emission area of the source in cm^2
Pc=%pi*(1-R)*A*RD*((NA)^2);//optical power coupled to the fiber in W
mprintf("\n Optical power coupled to the fiber is =%.0f uW",Pc*1e6);//multiplication by 1e6 for conversion of unit from W to uW//the answer given in textbook is wrong
|
d5edeca8f97b2f1369235dca9e3a9e70c05499e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /60/CH6/EX6.11/ex_11.sce | c7c897c5af3a228558675e5b6375879b1513587b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 699 | sce | ex_11.sce |
//Example 6.11
x0=-1
x1=18
//pi=<f,pi>
p0=integrate('exp(x)','x',x0,x1)
p1=integrate('x*exp(x)','x',x0,x1)
p2=integrate('(exp(x))*((x^2)-(1/3))','x',x0,x1)
p3=integrate('(exp(x))*((x^3)-3*x/5)','x',x0,x1)
//for legendre polynomials one can show
//si= <pi,pi> = 2/(2*i+1)
s0=2/(2*0+1)
s1=2/(2+1)
s2=2/(2*2+1)
s3=2/(2*3+1)
//di*=<f,pi>/si
//p*(x)=y=d0*1+d1*x+d2*(3/2)*((x^2)-(1/3))+d3*((x^3)-3*x/5)*(5/2)
//p*(x)=y=(p0/s0)*1+(p1/s1)*x+(p2/s2)*(3/2)*((x^2)-(1/3))+(p3/s3)*((x^3)-3*x/5)*(5/2)
poly(0,"x")
y=1.17552011*(1)+(1.103638324)*(x)+(0.3578143506)*(3/2)*((x^2)-(1/3))+(0.07045563367)*((x^3)-3*x/5)*(5/2)
//On (-1,1) ,this polynomial a maximum deviation from exp(x) of about 0.01
|
1fdaf8e32428ffa57d24e3c89f677f14d8f132e9 | 8a3446e086bbb6afa038ee746f941996286b32c6 | /Tests/LVRT_LV3.tst | 676d530f2f3e7929a2a6feeedd3996fb393c0f17 | [] | no_license | FREA-ENT/svp_UL1741SA | ec5c7fa9a8a2f27b72ba6cea2960699613e10743 | 5d22145fcae26c33fcd62218ff185f6ed0a1bc34 | refs/heads/master | 2020-03-27T21:36:40.461101 | 2018-09-05T07:58:29 | 2018-09-05T07:58:29 | 147,161,108 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,756 | tst | LVRT_LV3.tst | <scriptConfig name="LVRT_LV3" script="SA9_volt_ride_through">
<params>
<param name="vrt.v_test" type="float">0.0</param>
<param name="eut.t_msa" type="float">1.0</param>
<param name="vrt.t_hold" type="float">1.0</param>
<param name="gridsim.frea.phases" type="int">1</param>
<param name="eut.v_msa" type="float">2.0</param>
<param name="vrt.n_r" type="int">3</param>
<param name="eut.vrt_t_dwell" type="int">5</param>
<param name="vrt.v_grid_min" type="float">100.0</param>
<param name="vrt.v_grid_max" type="float">100.0</param>
<param name="eut.v_nom" type="float">190.0</param>
<param name="gridsim.frea.ip_port" type="int">2001</param>
<param name="eut.p_rated" type="int">40000</param>
<param name="gridsim.frea.ip_addr" type="string">127.0.0.1</param>
<param name="aist.script_version" type="string">2.0.0</param>
<param name="aist.library_version" type="string">2.1.0</param>
<param name="hil.mode" type="string">Disabled</param>
<param name="loadsim.mode" type="string">Disabled</param>
<param name="der.mode" type="string">Disabled</param>
<param name="gridsim.auto_config" type="string">Enabled</param>
<param name="vrt.p_20" type="string">Enabled</param>
<param name="vrt.p_100" type="string">Enabled</param>
<param name="gridsim.mode" type="string">FREA_AC_Simulator</param>
<param name="das_das_wf.mode" type="string">Manual</param>
<param name="das_das_rms.mode" type="string">Manual</param>
<param name="eut.phases" type="string">Single Phase</param>
<param name="gridsim.frea.comm" type="string">TCP/IP</param>
<param name="vrt.test_label" type="string">lvrt_lv3</param>
</params>
</scriptConfig>
|
172c2a2f55c6e8f35d23f8c0ad05609ce93e3dfe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH3/EX3.31/Chapter3_Exampl31.sce | e00d2b8f210a462629132a004347756b2cd8a500 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 547 | sce | Chapter3_Exampl31.sce | clc
clear
//INPUT DATA
t1=300;//temperature in Degree C
t2=700;//temperature in Degree C
p1=1;//pressure in bar
p3=12;//pressure in bar
R=0.287;//gas constant
//CALCULATIONS
ns=(1-(t1/t2))*100;//Thermal efficiency in percentage
Rc=((p3/p1)*(t1/t2));//compression ratio
wn=R*log(Rc)*(t2-t1);//net work done in kJ/kg
vs=(R*t1*(1-(1/Rc)))/(p1);//swept volume in m^3/kg
pm=wn/vs;//mean effective pressure in bar
//OUTPUT
printf('(i)Thermal efficiency is %3.2f percentage \n (ii)The mean effective pressure is %3.2f bar',ns,pm)
|
0f32e4ddafb0b37c823a92a00238654928cfe063 | 31c6b1437c7dc52b977bf6790b1b24eff7f7b5f5 | /findallpeaks.sci | 47015fccc25074716bf7bd0f8c272664926b46a5 | [] | no_license | RobinEccleston/Scilab-Snippets | 4744c071ef891cc4905cbecc000a1f5bf667a8f7 | 7886058a25ec4821cfeba6d8e148a0a2aced330c | refs/heads/master | 2021-01-26T00:48:02.042794 | 2020-02-26T11:35:49 | 2020-02-26T11:35:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,196 | sci | findallpeaks.sci | ModuleName="findallpeaks";
Version="0.01";
DateModified="13-Feb-2015";
DateOfCreation="13-Feb-2015";
Author="Rob Eccleston";
Description="Find peaks in a vector of values, returns two arrays of peaks and troughs.";
mprintf("Loading " + ModuleName + " V" + Version + ", Last Modified: " + DateModified + "\n")
function [ Peaks, Troughs ] = findallpeaks(y)
y=y-min(y)
y=y/max(y)
dydx=diff(y)
ddyddx=diff(dydx)
ZeroCrossings=[]
ThisValue=y(1)
Peaks=[]
Troughs=[]
for i=2:max(size(dydx))-1
ThisValue=dydx(i-1)
NextValue=dydx(i)
if (ThisValue>0 & NextValue <0) | (ThisValue<0 & NextValue >0) | (ThisValue==0) then
ZeroCrossings=[ZeroCrossings i]
end
end
for j=1:max(size(ZeroCrossings))
Direction=ddyddx(ZeroCrossings(j)-1)
if j>150 then
//pause
end
if Direction<0 then
Peaks=[Peaks ZeroCrossings(j)]
end
if Direction>0 then
Troughs=[Troughs ZeroCrossings(j)]
end
end
endfunction
|
b48acc76f58cd23f5d2c506ef4b5b48e76e686a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1442/CH18/EX18.6/18_6.sce | cade13c78a1f8223f9fe17d3f7bac3251aa49536 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 655 | sce | 18_6.sce | clc
//initialisation of variables
v= 0.0011 //m^3
P1= 1200 //Mpa
P2= 140 //Mpa
h5= -103 //kJ/kg
x4= 0.860
x7= 0.253
x5= 0.337
h1= 1658.1 //kJ/kg
h7= 343.7 //kJ/kg
h6= -1008 //kJ/kg
h4= 639 //kJ/kg
h3= 40 //kJ/kg
Tc= -10 //C
Th= 125 //C
Ta= 25 //C
m1= 1 //kg/s
m7= 6.23 //kg/s
m6= 7.23 //kg/s
//CALCULATIONS
h6= h5+v*(P1-P2)
cr= (x4-x7)/(x5-x7)
Qhbym= h1+(m7/m1)*h7-(m6/m1)*h6
Qcbym= h4-h3
COP= Qcbym/Qhbym
COPcarnot= ((273.15+Tc)/(273.15+Th))*((Th-Ta)/(Ta-Tc))
//RESULTS
printf (' Enthalpy= %.1f kJ/kg',h6)
printf (' \n circulation ratio= %.3f ',cr)
printf (' \n COP= %.3f ',COP)
printf (' \n COP carnot= %.3f ',COPcarnot)
|
2e1682ddb6890374aa5ec836e83cf16aa38a0ad2 | 8d952a06e3809a06825a3be7b067201f3652f16a | /debug/example/common/Scilab/constants.sce | 2a96b531a73f92946d905f863b4b522574b08dea | [
"GPL-3.0-only",
"MIT"
] | permissive | andyLaurito92/haikunet | b771eaf6bd91292485f0a49698ce123b9308d676 | db44623b248c56735c28a5f589c3239dc7e9855e | refs/heads/master | 2021-06-14T12:38:38.996450 | 2021-05-05T18:26:02 | 2021-05-05T18:26:02 | 75,564,849 | 2 | 1 | MIT | 2021-05-05T18:26:26 | 2016-12-04T21:12:31 | C++ | UTF-8 | Scilab | false | false | 1,780 | sce | constants.sce | // this file defines constants (just for readability)
// Distributions (Check matching in ParameterReader::DISTRIBUTION_PARAMETER enum)
DISTRIBUTION_CONSTANT = 0; // parameters: 'value'
DISTRIBUTION_EXPONENTIAL = 1; // parameters: 'mu'
DISTRIBUTION_PARETO = 2; // parameters: 'shape' and 'scale'
DISTRIBUTION_SLIT = 3; // parameters: 'val1', 'val2' and 'mean'. Like a bernulli, but with values different from 0 or 1.
DISTRIBUTION_NORMAL = 4; // parameters: 'mu', 'var'
DISTRIBUTION_FELIX = 5; // parameters: 'period', 'mode'. If(mode==DISTRIBUTION_FELIX_MODE_HIGH_THROUGHOUT) 'size_bytes', 'buffer_bytes','timeout', 'out_size_bytes'
FELIX_MODE_LOW_LATENCY = 0;
FELIX_MODE_HIGH_THROUGHOUT = 1;
// Loggers .
// To be configured with <modelName>.<varName>.logger variable
// All these loggers will use the configured logging backend (Scilab or CmdLine, set with option variable_logging_backend)
//(Check matching in ConfigurationLogger::CONFIGURATION_LOGGERS enum)
LOGGER_ALL = 0; // logs everything
LOGGER_SAMPLER = 1; // parameters: 'mu'
// RANDOM SEEDS (from STDEVS.h) (any other will be taken as a custom seed if you want to reproduce a particular simulation)
REPRODUCIBLE_SEED = 0 ; // Uses always the same random numbers (Reproducible)
UNIQUE_SEED = -1; // Uses unique random numbers (generates a new seed).
CUSTOM_SEED = "set_your_seed_here"; // Any other value (different from 0 or -1) will be used as a custom seed (to reproduce a past simulation)
// Network usual notation
k=1E3; // Kilobit unit
M=k^2; // Megabit unit
G=k^3; // Gigabit unit
// log levels
LOG_LEVEL_NONE = 0;
LOG_LEVEL_IMPORTANT = 100;
LOG_LEVEL_PRIORITY = 1000;
LOG_LEVEL_FULL_LOGGING = 10000;
LOG_LEVEL_ALL = 99999999;
LOG_LEVEL_INIT = 10; |
954f6acfab3ee4ec6fe45d27383388c76252f805 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH13/EX13.15/Ex13_15.sce | 5e37948e6703c5dcd56a914a8211522e0d5a8c17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,182 | sce | Ex13_15.sce | // chapter 13
// example 13.15
// fig. 13.40
// Plot instantaneous junction temperature
// page-841-842
clear;
clc;
clf;
// given
P2=0, P4=0, P6=0; // in W
P1=1000, P3=1400, P5=700; // in W
t1=1, t3=1, t5=1; // in ms
theta1=0.035, theta3=0.035, theta5=0.035; // in degree C/W
t2=0.5, t4=0.5, t6=0.5; // in ms
theta2=0.025, theta4=0.025, theta6=0.025; // in degree C/W
// calculate
del_TJ1=theta1*P1;
del_TJ1_5=del_TJ1-theta2*P1;
del_TJ2_5=del_TJ1_5+theta3*P3;
del_TJ3=del_TJ2_5-theta4*P3;
del_TJ4=del_TJ3+theta5*P5;
del_TJ4_5=del_TJ4-theta6*P5;
printf("\n\ndel_TJ1=%.f degree C",del_TJ1);
printf("\n\ndel_TJ1_5=%.f degree C",del_TJ1_5);
printf("\n\ndel_TJ2_5=%.f degree C",del_TJ2_5);
printf("\n\ndel_TJ3=%.f degree C",del_TJ3);
printf("\n\ndel_TJ4=%.f degree C",del_TJ4);
printf("\n\ndel_TJ4_5=%.f degree C",del_TJ4_5);
del_TJ=[del_TJ1 del_TJ1_5 del_TJ2_5 del_TJ3 del_TJ4 del_TJ4_5];
plot2d(del_TJ,nax=[1,6,1,7],rect=[0,0,5,60]);
xlabel("t (ms)");
ylabel("del_TJ (degree C)");
title("Junction temperature rise plot");
// Note :There is calculation mistake in the book while calculating del_TJ_3 and hence all other values are also affected. Thats why answers in the book are wrong |
1fbdf8b63b8796cb3fb5f3d0e94435505507ac53 | 8d952a06e3809a06825a3be7b067201f3652f16a | /debug/bin/BackDoor/macros/buildmacros.sce | a13d0339faa7cd662788dc7bef780a32c82122bf | [
"GPL-3.0-only",
"MIT"
] | permissive | andyLaurito92/haikunet | b771eaf6bd91292485f0a49698ce123b9308d676 | db44623b248c56735c28a5f589c3239dc7e9855e | refs/heads/master | 2021-06-14T12:38:38.996450 | 2021-05-05T18:26:02 | 2021-05-05T18:26:02 | 75,564,849 | 2 | 1 | MIT | 2021-05-05T18:26:26 | 2016-12-04T21:12:31 | C++ | UTF-8 | Scilab | false | false | 123 | sce | buildmacros.sce | // This file is released into the public domain
tbx_build_macros(TOOLBOX_NAME,get_absolute_file_path("buildmacros.sce"));
|
38cd2c7943ebceedd03ac6c6a2085499499013c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2024/CH12/EX12.1/12_1.sce | 913617c4a92d99fba332ff857811d97942e5bd3c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 704 | sce | 12_1.sce | clc
//Initialization of variables
p1=600 //psia
p2=0.2563 //psia
t1=486.21 //F
t2=60 //F
//calculations
disp("from steam tables,")
h1=1203.2
hf1=471.6
hfg1=731.6
h2=1088
hf2=28.06
hfg2=1059.9
s1=1.4454
sf1=0.6720
sfg1=0.7734
s2=2.0948
sf2=0.0555
sfg2=2.0393
xd=(s1-sf2)/sfg2
hd=hf2+xd*hfg2
xa=0.3023
ha=hf2+xa*hfg2
wbc=0
wda=0
wcd=h1-hd
wab=ha-hf1
W=wab+wcd+wbc+wda
Wrev=hfg1- (t2+459.7)*sfg1
etat=(t1-t2)/(t1+459.7)
etac=W/Wrev
etae=W/Wrev
Wr=Wrev/(wcd)
//results
printf("Thermal efficiency = %d percent",etat*100)
printf("\n Compression efficiency = %d percent",etac*100)
printf("\n Expansion efficiency = %d percent",etae*100)
printf("\n Work ratio = %.2f ",Wr)
|
831f1028cc3b7ae21d46e434d2e23a3d28009010 | 3a97da3a62f6f24ab4fd2ac63474a40f1b6bc37f | /lab3/cudd-3.0.0/cplusplus/test.tst | 93fabf59b252154c0b0675688c4d04093a8f0ab8 | [] | no_license | Luke2336/EDA_2021_Spring | 89d11c9cbf6662e92d8c9f6001652fdbfe7f0fca | 6173b9844f8643f0301bcc9e15fa2026a7867d54 | refs/heads/main | 2023-06-06T01:33:11.539509 | 2021-06-16T07:16:27 | 2021-06-16T07:16:27 | 349,317,415 | 4 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 12,186 | tst | test.tst | Entering testBdd
f: 3 nodes 1 leaves 1 minterms
11 1
g: 3 nodes 1 leaves 3 minterms
0- 1
11 1
f and g are not complementary
f is less than or equal to g
g: 2 nodes 1 leaves 2 minterms
1- 1
h: 2 nodes 1 leaves 2 minterms
-1 1
x + h has 3 nodes
h: 3 nodes 1 leaves 3 minterms
01 1
1- 1
Entering testAdd
r: 6 nodes 3 leaves 3 minterms
01 1
10 1
11 2
s: 4 nodes 2 leaves 1 minterms
11 3
s: 1 nodes 1 leaves 4 minterms
-- inf
p is less than or equal to r
r: 4 nodes 2 leaves 3 minterms
01 1
1- 1
Entering testAdd2
f: 7 nodes 4 leaves 4 minterms
00 0.1
01 0.2
10 0.3
11 0.4
l: 7 nodes 4 leaves 4 minterms
00 -2.30259
01 -1.60944
10 -1.20397
11 -0.916291
r: 7 nodes 4 leaves 4 minterms
00 -0.230259
01 -0.321888
10 -0.361192
11 -0.366516
e: 1 nodes 1 leaves 4 minterms
-- 1.84644
Entering testZdd
s: 3 nodes 3 minterms
1- 1
01 1
v is less than s
s: 1 nodes 1 minterms
01 1
Entering testBdd2
f: 7 nodes 1 leaves 7 minterms
01-1 1
101- 1
1101 1
111- 1
Irredundant cover of f:
1-1- 1
-1-1 1
Number of minterms (arbitrary precision): 7
Number of minterms (extended precision): 7.000000e+00Two-literal clauses of f:
x2 | x3
x1 | x2
x0 | x3
x0 | x1
vect[0]
1--- 1
vect[1]
0--- 1
-1-- 1
vect[2]
10-- 1
--1- 1
vect[3]
0--- 1
-10- 1
---1 1
digraph "DD" {
size = "7.5,10"
center = true;
edge [dir = none];
{ node [shape = plaintext];
edge [style = invis];
"CONST NODES" [style = invis];
" x0 " -> " x1 " -> " x2 " -> " x3 " -> "CONST NODES";
}
{ rank = same; node [shape = box]; edge [style = invis];
" v0 " -> " v1 " -> " v2 " -> " v3 "; }
{ rank = same; " x0 ";
"0x7";
"0x4c";
"0x49";
"0xb";
}
{ rank = same; " x1 ";
"0x8";
"0x48";
"0x4b";
}
{ rank = same; " x2 ";
"0x39";
"0x4a";
}
{ rank = same; " x3 ";
"0x3a";
}
{ rank = same; "CONST NODES";
{ node [shape = box]; "0x1";
}
}
" v0 " -> "0x7" [style = solid];
" v1 " -> "0xb" [style = solid];
" v2 " -> "0x49" [style = solid];
" v3 " -> "0x4c" [style = solid];
"0x7" -> "0x1";
"0x7" -> "0x1" [style = dotted];
"0x4c" -> "0x4b";
"0x4c" -> "0x1" [style = dashed];
"0x49" -> "0x48";
"0x49" -> "0x39" [style = dashed];
"0xb" -> "0x8";
"0xb" -> "0x1" [style = dashed];
"0x8" -> "0x1";
"0x8" -> "0x1" [style = dotted];
"0x48" -> "0x39";
"0x48" -> "0x1" [style = dashed];
"0x4b" -> "0x4a";
"0x4b" -> "0x3a" [style = dashed];
"0x39" -> "0x1";
"0x39" -> "0x1" [style = dotted];
"0x4a" -> "0x3a";
"0x4a" -> "0x1" [style = dashed];
"0x3a" -> "0x1";
"0x3a" -> "0x1" [style = dotted];
"0x1" [label = "1"];
}
Entering testBdd3
f: 10 nodes 1 leaves 50 minterms
0-0-0- 1
0-0-10 1
0-100- 1
0-1010 1
0-11-- 1
10-00- 1
10-010 1
10-1-- 1
11000- 1
110010 1
1101-- 1
1110-1 1
111101 1
f1: 5 nodes 1 leaves 36 minterms
0---0- 1
0---10 1
10--0- 1
10--10 1
f1 is less than or equal to f
g: 6 nodes 1 leaves 62 minterms
0----- 1
10---- 1
110--- 1
1110-- 1
11110- 1
h: 8 nodes 1 leaves 51 minterms
0-0-0- 1
0-0-10 1
0-100- 1
0-1010 1
0-11-- 1
10-00- 1
10-010 1
10-1-- 1
11000- 1
110010 1
1101-- 1
111--1 1
g * h == f
Entering testZdd2
p[0]: 3 nodes 1 leaves 64 minterms
----0-0 1
----1-1 1
p[1]: 5 nodes 1 leaves 64 minterms
--0-0-0 1
--0-10- 1
--1-0-1 1
--1-11- 1
p[2]: 7 nodes 1 leaves 64 minterms
0-0-0-0 1
0-0-10- 1
0-10--- 1
1-0-0-1 1
1-0-11- 1
1-11--- 1
p[3]: 8 nodes 1 leaves 64 minterms
0-0-0-1 1
0-0-11- 1
0-11--- 1
11----- 1
digraph "DD" {
size = "7.5,10"
center = true;
edge [dir = none];
{ node [shape = plaintext];
edge [style = invis];
"CONST NODES" [style = invis];
" a2 " -> " b2 " -> " a1 " -> " b1 " -> " a0 " -> " b0 " -> " c0 " -> "CONST NODES";
}
{ rank = same; node [shape = box]; edge [style = invis];
" s0 " -> " s1 " -> " s2 " -> " c3 "; }
{ rank = same; " a2 ";
"0x82";
"0x83";
}
{ rank = same; " b2 ";
"0x8";
}
{ rank = same; " a1 ";
"0x80";
"0x81";
}
{ rank = same; " b1 ";
"0x3a";
}
{ rank = same; " a0 ";
"0x7f";
"0x7e";
}
{ rank = same; " b0 ";
"0x59";
}
{ rank = same; " c0 ";
"0x7d";
}
{ rank = same; "CONST NODES";
{ node [shape = box]; "0x1";
}
}
" s0 " -> "0x7e" [style = solid];
" s1 " -> "0x80" [style = solid];
" s2 " -> "0x82" [style = solid];
" c3 " -> "0x83" [style = solid];
"0x82" -> "0x81";
"0x82" -> "0x81" [style = dotted];
"0x83" -> "0x8";
"0x83" -> "0x81" [style = dashed];
"0x8" -> "0x1";
"0x8" -> "0x1" [style = dotted];
"0x80" -> "0x7f";
"0x80" -> "0x7f" [style = dotted];
"0x81" -> "0x3a";
"0x81" -> "0x7f" [style = dashed];
"0x3a" -> "0x1";
"0x3a" -> "0x1" [style = dotted];
"0x7f" -> "0x59";
"0x7f" -> "0x7d" [style = dashed];
"0x7e" -> "0x7d";
"0x7e" -> "0x7d" [style = dotted];
"0x59" -> "0x1";
"0x59" -> "0x1" [style = dotted];
"0x7d" -> "0x1";
"0x7d" -> "0x1" [style = dotted];
"0x1" [label = "1"];
}
z[0]: 4 nodes 2 minterms
00000000100010 1
00000000010001 1
z[1]: 10 nodes 4 minterms
00001000101000 1
00001000010010 1
00000100100100 1
00000100010001 1
z[2]: 16 nodes 6 minterms
10001010000000 1
10000100101000 1
10000100010010 1
01001001000000 1
01000100100100 1
01000100010001 1
z[3]: 10 nodes 4 minterms
10100000000000 1
01001010000000 1
01000100101000 1
01000100010010 1
z[0]
----1-1 1
----0-0 1
z[0]
----0-0 1
----1-1 1
z[1]
--1-11- 1
--1-0-1 1
--0-10- 1
--0-0-0 1
z[1]
--0-0-0 1
--0-10- 1
--1-0-1 1
--1-11- 1
z[2]
1-11--- 1
1-0-11- 1
1-0-0-1 1
0-10--- 1
0-0-10- 1
0-0-0-0 1
z[2]
0-0-0-0 1
0-0-10- 1
0-10--- 1
1-0-0-1 1
1-0-11- 1
1-11--- 1
z[3]
11----- 1
0-11--- 1
0-0-11- 1
0-0-0-1 1
z[3]
0-0-0-1 1
0-0-11- 1
0-11--- 1
11----- 1
digraph "ZDD" {
size = "7.5,10"
center = true;
edge [dir = none];
{ node [shape = plaintext];
edge [style = invis];
"CONST NODES" [style = invis];
" a2+ " -> " a2- " -> " b2+ " -> " a1+ " -> " a1- " -> " b1+ " -> " b1- " -> " a0+ " -> " a0- " -> " b0+ " -> " b0- " -> " c0+ " -> " c0- " -> "CONST NODES";
}
{ rank = same; node [shape = box]; edge [style = invis];
" s0 " -> " s1 " -> " s2 " -> " c3 "; }
{ rank = same; " a2+ ";
"0x3b";
"0x44";
}
{ rank = same; " a2- ";
"0x37";
"0x42";
}
{ rank = same; " b2+ ";
"0x3e";
}
{ rank = same; " a1+ ";
"0x32";
"0x24";
"0x2b";
}
{ rank = same; " a1- ";
"0x30";
"0x22";
}
{ rank = same; " b1+ ";
"0x2c";
}
{ rank = same; " b1- ";
"0x27";
}
{ rank = same; " a0+ ";
"0xf";
"0x16";
"0x1d";
}
{ rank = same; " a0- ";
"0xd";
"0x1b";
}
{ rank = same; " b0+ ";
"0x17";
}
{ rank = same; " b0- ";
"0x12";
}
{ rank = same; " c0+ ";
"0x6";
}
{ rank = same; " c0- ";
"0x5";
}
{ rank = same; "CONST NODES";
{ node [shape = box]; "0x2";
"0x1";
}
}
" s0 " -> "0xf" [style = solid];
" s1 " -> "0x24" [style = solid];
" s2 " -> "0x3b" [style = solid];
" c3 " -> "0x44" [style = solid];
"0x3b" -> "0x32";
"0x3b" -> "0x37" [style = dashed];
"0x44" -> "0x3e";
"0x44" -> "0x42" [style = dashed];
"0x37" -> "0x2b";
"0x37" -> "0x2" [style = dashed];
"0x42" -> "0x32";
"0x42" -> "0x2" [style = dashed];
"0x3e" -> "0x1";
"0x3e" -> "0x2" [style = dashed];
"0x32" -> "0x2c";
"0x32" -> "0x30" [style = dashed];
"0x24" -> "0x1d";
"0x24" -> "0x22" [style = dashed];
"0x2b" -> "0x27";
"0x2b" -> "0x22" [style = dashed];
"0x30" -> "0x1d";
"0x30" -> "0x2" [style = dashed];
"0x22" -> "0x16";
"0x22" -> "0x2" [style = dashed];
"0x2c" -> "0x1";
"0x2c" -> "0x2" [style = dashed];
"0x27" -> "0x1";
"0x27" -> "0x2" [style = dashed];
"0xf" -> "0x6";
"0xf" -> "0xd" [style = dashed];
"0x16" -> "0x12";
"0x16" -> "0xd" [style = dashed];
"0x1d" -> "0x17";
"0x1d" -> "0x1b" [style = dashed];
"0xd" -> "0x5";
"0xd" -> "0x2" [style = dashed];
"0x1b" -> "0x6";
"0x1b" -> "0x2" [style = dashed];
"0x17" -> "0x1";
"0x17" -> "0x2" [style = dashed];
"0x12" -> "0x1";
"0x12" -> "0x2" [style = dashed];
"0x6" -> "0x1";
"0x6" -> "0x2" [style = dashed];
"0x5" -> "0x1";
"0x5" -> "0x2" [style = dashed];
"0x2" [label = "0"];
"0x1" [label = "1"];
}
Entering testBdd4
f: 5 nodes 1 leaves 3 minterms
000----------- 1
11------------ 1
g: 5 nodes 1 leaves 3 minterms
000 1
11- 1
f and h are identical
Entering testBdd5
digraph "DD" {
size = "7.5,10"
center = true;
edge [dir = none];
{ node [shape = plaintext];
edge [style = invis];
"CONST NODES" [style = invis];
" a " -> " b " -> " c " -> " d " -> "CONST NODES";
}
{ rank = same; node [shape = box]; edge [style = invis];
" lb " -> " ub " -> " f " -> " primes " -> " lprime "; }
{ rank = same; " a ";
"0x75";
}
{ rank = same; " b ";
"0x6f";
"0x74";
"0x76";
"0x6b";
}
{ rank = same; " c ";
"0x29";
"0x6d";
}
{ rank = same; " d ";
"0x3a";
}
{ rank = same; "CONST NODES";
{ node [shape = box]; "0x1";
}
}
" lb " -> "0x76" [style = dotted];
" ub " -> "0x3a" [style = solid];
" f " -> "0x75" [style = solid];
" primes " -> "0x6b" [style = solid];
" lprime " -> "0x6b" [style = solid];
"0x75" -> "0x6f";
"0x75" -> "0x74" [style = dashed];
"0x6f" -> "0x3a";
"0x6f" -> "0x6d" [style = dotted];
"0x74" -> "0x29";
"0x74" -> "0x1" [style = dotted];
"0x76" -> "0x6d";
"0x76" -> "0x1" [style = dashed];
"0x6b" -> "0x3a";
"0x6b" -> "0x1" [style = dotted];
"0x29" -> "0x3a";
"0x29" -> "0x1" [style = dashed];
"0x6d" -> "0x1";
"0x6d" -> "0x3a" [style = dotted];
"0x3a" -> "0x1";
"0x3a" -> "0x1" [style = dotted];
"0x1" [label = "1"];
}
primes(1): 3 nodes 1 leaves 4 minterms
-1-1---------- 1
primes(2): is the zero DD
primes(3): 4 nodes 1 leaves 2 minterms
1-01---------- 1
primes(4): 6 nodes 1 leaves 5 minterms
-1-1---------- 1
010----------- 1
primes(5): 4 nodes 1 leaves 2 minterms
01-1---------- 1
l1: 7 nodes 1 leaves 3 minterms
0111---------- 1
111----------- 1
u1: 4 nodes 1 leaves 8 minterms
000----------- 1
011----------- 1
1-1----------- 1
interpolant1: 4 nodes 1 leaves 6 minterms
011----------- 1
1-1----------- 1
l2: 7 nodes 1 leaves 5 minterms
001----------- 1
0110---------- 1
101----------- 1
u2: 5 nodes 1 leaves 8 minterms
-000---------- 1
-01----------- 1
-110---------- 1
interpolant2: 5 nodes 1 leaves 6 minterms
-01----------- 1
-110---------- 1
l3: 4 nodes 1 leaves 2 minterms
00-1---------- 1
u3: 3 nodes 1 leaves 4 minterms
-0-1---------- 1
interpolant3: 3 nodes 1 leaves 4 minterms
-0-1---------- 1
Entering testErrorHandling
Oops! Caught: empty DD.
Caught: Invalid argument.
f = var[1] | (var[2] & var[3])
var[0] | var[1] is not a cube
Cudd_Cofactor: Invalid restriction 2
Caught: Invalid argument.
f : 511 nodes 1 leaves 115422332637413376 minterms
g : 511 nodes 1 leaves 115422332637413376 minterms
h Caught: empty DD.
f : 88 nodes 1 leaves 226007109 minterms
g : 91 nodes 1 leaves 3143500301 minterms
h : 142 nodes 1 leaves 2917493192 minterms
Caught: Maximum memory exceeded.
Caught: Timeout expired. Lag = 119 ms.
**** CUDD modifiable parameters ****
Hard limit for cache size: 2796202
Cache hit threshold for resizing: 30%
Garbage collection enabled: yes
Limit for fast unique table growth: 1677721
Maximum number of variables sifted per reordering: 1000
Maximum number of variable swaps per reordering: 2000000
Maximum growth while sifting a variable: 1.2
Dynamic reordering of BDDs enabled: no
Default BDD reordering method: 4
Dynamic reordering of ZDDs enabled: no
Default ZDD reordering method: 4
Realignment of ZDDs to BDDs enabled: no
Realignment of BDDs to ZDDs enabled: no
Dead nodes counted in triggering reordering: no
Group checking criterion: 7
Recombination threshold: 0
Symmetry violation threshold: 0
Arc violation threshold: 0
GA population size: 0
Number of crossovers for GA: 0
Next reordering threshold: 4004
**** CUDD non-modifiable parameters ****
Memory in use: 146651984
Peak number of nodes: 2044
Peak number of live nodes: 2030
Number of BDD variables: 60
Number of ZDD variables: 14
Number of cache entries: 524288
Number of cache look-ups: 3847
Number of cache hits: 876
Number of cache insertions: 3052
Number of cache collisions: 5
Number of cache deletions: 2295
Cache used slots = 0.17% (expected 0.17%)
Soft limit for cache size: 76800
Number of buckets in unique table: 19200
Used buckets in unique table: 4.29% (expected 4.19%)
Number of BDD and ADD nodes: 2634
Number of ZDD nodes: 14
Number of dead BDD and ADD nodes: 2570
Number of dead ZDD nodes: 0
Total number of nodes allocated: 4857
Total number of nodes reclaimed: 154
Garbage collections so far: 3
Time for garbage collection: 0.01 sec
Reorderings so far: 0
Time for reordering: 0.00 sec
|
57208a6c3feeac09597cb7eda615c283f7390884 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH20/EX20.5/20_5.sce | 65728eafe15454daa67390528c655c4ff538783a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 229 | sce | 20_5.sce | //Power driven wheel
omega0=30*%pi
omega=0
theta=720*%pi //rad
//thus using kinematic equations
alpha=-1.9635 //rad/sec^2
//Also
t=(30*%pi)/(1.9635) //sec
printf("\nRetardation is %.3f rad/sec^2\nt=%.3f sec",-alpha,t)
|
77e09324a98fecaf92e192272a6ea1ac69409ca8 | fc97dca636256fc30f018840e244a173c06ec54b | /hard/tests/negation.tst | c03c224d00f5465e07558120d7b4d4a3265aef8c | [
"MIT"
] | permissive | tuomasb/compiler | 23fd2190bc6911380a5acf45241c1f2b2580538f | aa366ace6f2c29b5e0080faf8c50dcb7be0b02f4 | refs/heads/master | 2020-05-17T21:51:17.977674 | 2014-06-09T00:24:17 | 2014-06-09T00:24:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 64 | tst | negation.tst | main {
boolean a;
a := false;
print( ! a);
return a;
}
|
15f899f20031a484b83ab66babee2d2168a96910 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH21/EX21.6/Ex21_6.sce | a3200f5441b61c194e6c8a3ed6a579c6cd9fb284 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sce | Ex21_6.sce | //chapter21
//example21.6
//page472
Rl=4 // kilo ohm
R=1 // kilo ohm
Vin_peak=10 // V
Vout_peak=Vin_peak*Rl/(Rl+R)
Vout_min=0 // because of diode
printf("peak output voltage = %.3f V \n",Vout_peak)
// plotting input and output waveforms in same graph using following code instead of using xcos
clf()
t=linspace(0,2*%pi,100)
Vin=Vin_peak*sin(t)
Vout=Vout_peak*sin(t)+Vout_min
plot2d(t,Vin,style=2,rect=[0,0,10,20])
xtitle("input - blue output - green","t","volts")
plot2d(t,Vout,style=3,rect=[0,0,10,20])
|
670ede007256457f8987a54fb2d88e3732f51c2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /615/CH7/EX7.2/7_2.sce | ec6cfaeb8a4c1a5dad8880c961cd3ee439b3b8b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 514 | sce | 7_2.sce | //water chemistry//
//example 7.2//
F=56;//atomic weight of ferrus//
S=32;//atomic weight of sulphur//
O=16;//atomic weight of oxygen//
Ca=40;//atomic weight of calsium//
C=12;//atomic weight of carbon//
W1=F+S+(4*O);//molecular weight of FeSO4//
W2=Ca+C+(3*O);//molecular weight of CaCO3//
A=(W1/W2)*100;
printf("Required FeSO4 for 100ppm of hardness is %fmg/lit",A);
P=210.5;//required ppm of hardness//
B=(A/100)*P;
printf("\nRequired FeSO4 for 210.5ppm of hardness is %fmg/lit or ppm of FeSO4",B); |
3d37f61ed48f5c1af655c8b96ba1872c6575ad6c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3035/CH4/EX4.8/Ex4_8.sce | c434fed2316addb4f8e42d7b1623eb59356f8d5c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,417 | sce | Ex4_8.sce |
// Variable Declaration
r = 0.015 //Radius of each conductor(m)
D_a1a2 = 0.3 //Distance b/w conductor a1 & a2(m)
D_a2a1 = 0.3 //Distance b/w conductor a2 & a1(m)
D_a1b1 = 15.3 //Distance b/w conductor a1 & b1(m)
D_a1b2 = 15.6 //Distance b/w conductor a1 & b2(m)
D_a2b1 = 15.0 //Distance b/w conductor a2 & b1(m)
D_a2b2 = 15.3 //Distance b/w conductor a2 & b2(m)
D_b1c1 = 15.3 //Distance b/w conductor b1 & c1(m)
D_b1c2 = 15.6 //Distance b/w conductor b1 & c2(m)
D_b2c1 = 15.0 //Distance b/w conductor b2 & c1(m)
D_b2c2 = 15.3 //Distance b/w conductor b2 & c2(m)
D_a1c1 = 30.6 //Distance b/w conductor a1 & c1(m)
D_a1c2 = 30.9 //Distance b/w conductor a1 & c2(m)
D_a2c1 = 30.3 //Distance b/w conductor a2 & c1(m)
D_a2c2 = 30.6 //Distance b/w conductor a2 & c2(m)
// Calculation Section
D_s = (D_a1a2 * r * D_a2a1 * r)**(1.0/4) //Geometric mean radius(m)
D_ab = (D_a1b1 * D_a1b2 * D_a2b1 * D_a2b2)**(1.0/4) //Mutual GMD b/w conductor a & b(m)
D_bc = (D_b1c1 * D_b1c2 * D_b2c1 * D_b2c2)**(1.0/4) //Mutual GMD b/w conductor b & c(m)
D_ca = (D_a1c1 * D_a1c2 * D_a2c1 * D_a2c2)**(1.0/4) //Mutual GMD b/w conductor c & a(m)
D_m = (D_ab * D_bc * D_ca)**(1.0/3) //Geometric mean separation(m)
C_n = 2 * %pi * 8.854 * 10**(-9) /(log(D_m/D_s)) //Capacitance per phase(F/km)
// Result Section
printf('Capacitance per phase , C_n = %.3e F/km' ,C_n)
|
d2d806d467898fdfcb2bb7a51b4016716784aea7 | f19d1dec66f19d3a8644043d3033428fc560a6c9 | /sql/menus.tst | fd025e34538bf788e591d907825d34482a5559ff | [
"Apache-2.0"
] | permissive | kurtericmiller/Zbloggi | f08686b1c3b42e2092ca0a013251661009c2cc55 | 5c4f33157635805eb3c7b4c0a1c1cf389acc5725 | refs/heads/master | 2016-09-03T07:38:59.278337 | 2012-08-01T20:30:08 | 2012-08-01T20:30:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,883 | tst | menus.tst |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `menus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menus` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`menu` varchar(15) NOT NULL,
`title` varchar(15) NOT NULL,
`link` varchar(30) NOT NULL,
`ordering` int(2) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MEMORY AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `menus` WRITE;
/*!40000 ALTER TABLE `menus` DISABLE KEYS */;
INSERT INTO `menus` VALUES (1,'main','Home','/',1,'0000-00-00 00:00:00','2012-03-25 05:35:59'),(2,'main','Blog','/blog',2,'2012-03-25 06:12:02','2012-03-25 06:12:02'),(3,'main','Books','/books',3,'2012-03-25 06:13:09','2012-03-25 06:13:09'),(4,'admin','Articles','/admin/article',1,'2012-03-25 07:22:10','2012-03-25 07:22:10'),(5,'admin','Comments','/admin/comment',2,'2012-03-25 07:24:13','2012-03-25 07:24:13'),(6,'admin','Users','/admin/user',3,'2012-03-25 07:24:46','2012-03-25 07:24:46'),(7,'admin','Sections','/admin/section',4,'2012-03-25 07:25:34','2012-03-25 07:25:34'),(8,'admin','Config','/admin/setting',6,'2012-03-25 07:26:07','2012-03-25 07:26:07'),(9,'admin','Books','/admin/book',7,'2012-03-25 07:26:48','2012-03-25 07:26:48'),(12,'admin','Search','/admin/index/search',8,'2012-03-25 07:31:49','2012-03-25 08:37:56'),(11,'admin','Menus','/admin/menu',5,'2012-03-25 07:30:19','2012-03-25 07:30:19'),(13,'admin','Latest Version','http://ymozend.dev/version',9,'2012-04-02 22:55:58','2012-04-02 22:55:58'),(14,'admin','XmlRpc','/xmlrpc/client',10,'2012-06-01 22:19:36','2012-06-01 22:19:36');
/*!40000 ALTER TABLE `menus` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
cfc1b397b8f535c86f2e1c83c66f7686e3415b4d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH20/EX20.13/20_13.sce | 101573dd134d0aeee8ddc85f6ba2a31d5b837ed5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 20_13.sce | //ques-20.13
//Calculating binding energy per nucleon for Krypton
clc
M=83.9115;//atomic mass of Krypton (in amu)
mp=1.00727;//mass of proton (in amu)
mn=1.008665;//mass of neutron (in amu)
me=0.000548;//mass of electron (in amu)
dm=36*mp+48*mn+36*me-M;//mass defect
BE=(dm*931)/84;
printf("The binding energy per nucleon for Krypton is %.6f Mev.",BE);
|
81def396e92909cef52e580d4cd9e502a95ffe8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3890/CH2/EX2.1/Ex2_1.sce | 3755bf30df93086e5715e32e8f43d2465aaab585 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 877 | sce | Ex2_1.sce | //Electric machines and power systems by Syed A Nasar
//Publisher:TataMcgraw Hill
//Year: 2002 ; Edition - 7
//Example 2.1
//Scilab Version : 6.0.0 ; OS : Windows
clc;
clear;
a1=5*10^-4;a2=10*10^-4; //area of cross sections in m^2
l1=24*10^-2;l2=8*10^-2; //mean length in m
ur=500; //relative permiability of the material
u0=4*3.14*10^-7 //permiabiity of free space
u=ur*u0; //permiablity in H/m
r1=l1/(u*a1); //reluctance of material with lenght l1
r2=l2/(u*a2); //reluctance of material with lenght l2
r_a=r1/2+r2; //net reluctance of a 200 turn coilin H^-1
r_b=r1*r2/(r1+r2)+r1; //net reluctance of 100 turn coil in H^-1
printf('the net reluctance of 200 turn coil is %2f in H^-1\n',r_a)
printf('the net reluctance of 100 turn coil is %2f in H^-1\n',r_b)
|
c4c5316fecca204b24f139a94dbe1a98572d8f4c | c59576b9f96a7b26dc5bc0d52998ad818380b8cf | /test/iban.tst | 2e1341e667860cc9e87960ee267f15752f18aae3 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/checkdig | 0588535521d9106a5c777a809e50d64a9204fa3c | 3570d246efd0d102f1a2652dfe752884b5d346d8 | refs/heads/master | 2022-02-14T07:41:43.949901 | 2022-01-28T15:00:07 | 2022-01-28T15:00:07 | 30,117,975 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,057 | tst | iban.tst | AD12 0001 2030 2003 5910 0100
AT61 1904 3002 3457 3201
BE68 5390 0754 7034
HR12 1001 0051 8630 0016 0
CY17 0020 0128 0000 0012 0052 7600
CZ65 0800 0000 1920 0014 5399
DK50 0040 0440 1162 43
EE38 2200 2210 2014 5685
FI21 1234 5600 0007 85
FR14 2004 1010 0505 0001 3M02 606
DE89 3704 0044 0532 0130 00
GI75 NWBK 0000 0000 7099 453
GR16 0110 1250 0000 0001 2300 695
HU42 1177 3016 1111 1018 0000 0000
IS14 0159 2600 7654 5510 7303 39
IE29 AIBK 9311 5212 3456 78
IT60 X054 2811 1010 0000 0123 456
LV80 BANK 0000 4351 9500 1
LT12 1000 0111 0100 1000
LI21 0881 0000 2324 013A A
LU28 0019 4006 4475 0000
MK07 300 0000000424 25
MT84 MALT 0110 0001 2345 MTLC AST0
NL91 ABNA 0417 1643 00
NO93 8601 1117 947
PL27 1140 2004 0000 3002 0135 5387
PT50 0002 0123 1234 5678 9015 4
RO49 AAAA 1B31 0075 9384 0000
CS73 2600 0560 1001 6113 79
SK31 1200 0000 1987 4263 7541
SI56 1910 0000 0123 438
ES91 2100 0418 4502 0005 1332
SE35 5000 0000 0549 1000 0003
CH93 0076 2011 6238 5295 7
GB29 NWBK 6016 1331 9268 19
TN59 1420 7207 1007 0712 9648
|
991fce777bc72760d0cd426b4c669dd9ce4ca0d7 | f2635c3a10a2508720f5d231581bbcf58664cf12 | /pl/math/test/testcases/random/float.tst | fa77efecfabb7a4ffb0ad547145fd00ceb4b8295 | [
"LLVM-exception",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | xboxfanj/optimized-routines | 9ed0fef9346076e3eaf952cecd9b6c39cca8d92b | e312306d13daf9c044145ca26fb34ef7704fae81 | refs/heads/master | 2023-01-21T08:14:26.298438 | 2022-12-21T00:02:54 | 2023-01-10T16:39:37 | 232,194,104 | 0 | 0 | MIT | 2020-01-06T22:07:31 | 2020-01-06T22:07:30 | null | UTF-8 | Scilab | false | false | 224 | tst | float.tst | !! float.tst - Random test case specification for SP functions
!!
!! Copyright (c) 2022-2023, Arm Limited.
!! SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
test erff 10000
test log10f 10000
test tanf 10000
|
eca705801dfe0f22f47a49263b589b799614f1f8 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.1_9.tst | 24c2d5dae0658defecfc43a6ca81216c46c612ca | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 3,552 | tst | bow.1_9.tst | 1 10:0.5 19:0.047619047619047616 30:0.125 66:0.5 149:1.0 203:1.0
1 4:0.1 11:1.0 49:0.14285714285714285 249:0.5 345:1.0 1103:1.0 1329:1.0
1 3:0.3333333333333333 13:0.5 14:0.06666666666666667 17:0.017241379310344827 28:1.0 30:0.125 84:0.07692307692307693 187:1.0 298:1.0 883:1.0
1 4:0.1 6:1.0 10:0.5 14:0.06666666666666667 17:0.034482758620689655 25:1.0 74:0.3333333333333333 84:0.07692307692307693 665:1.0 721:1.0
1 4:0.1 84:0.07692307692307693 150:1.0 156:1.0 542:1.0 1421:1.0
1 6:1.0 13:0.5 14:0.03333333333333333 19:0.047619047619047616
1 6:1.0 10:0.5 13:0.5 14:0.03333333333333333 17:0.034482758620689655 19:0.047619047619047616 49:0.14285714285714285 68:1.0 69:0.5 137:1.0 181:0.5 517:1.0 990:1.0 1366:1.0
1 14:0.03333333333333333 17:0.034482758620689655 25:1.0 30:0.125 72:1.0 121:0.3333333333333333 404:1.0 469:1.0 475:1.0 698:1.0
1 13:0.5 19:0.09523809523809523 20:1.0 55:0.5 74:0.6666666666666666 159:0.14285714285714285 160:1.0
1 13:0.5 14:0.03333333333333333 17:0.017241379310344827 30:0.125 69:0.25 121:0.3333333333333333 149:1.0 160:2.0 183:0.3333333333333333 226:1.0 249:0.5 286:1.0 556:1.0 611:1.0 1482:1.0 1522:1.0 1524:1.0
1 4:0.1 6:1.0 10:0.5 14:0.03333333333333333 54:0.5 84:0.07692307692307693 86:1.0 93:1.0 569:1.0 663:1.0 1176:1.0
1 25:1.0 396:1.0 494:1.0 1081:0.5
1 25:1.0 30:0.125 84:0.07692307692307693 148:1.0 286:1.0 326:1.0 409:1.0 1159:1.0 1173:1.0
1 3:0.3333333333333333 6:1.0 13:0.5 14:0.1 25:1.0 28:1.0 29:1.0 42:0.14285714285714285 43:0.25 56:0.3333333333333333 60:1.0 181:0.5 207:0.16666666666666666 214:1.0 236:0.5 237:1.0 409:1.0 480:0.5 556:1.0 581:0.5 794:1.0 920:1.0 972:1.0
1 54:0.5 69:0.25 236:0.5 448:1.0 556:1.0 652:1.0
1 4:0.1 14:0.03333333333333333 54:0.5 64:1.0 171:0.5 598:1.0
1 4:0.1 14:0.03333333333333333 19:0.047619047619047616 25:1.0 69:0.25 542:1.0 851:0.5
1 349:0.2
1 10:0.5 13:0.5 25:1.0 69:0.25 70:1.0 193:0.5 1569:1.0
1 25:1.0 30:0.125 64:1.0 67:1.0 70:1.0 183:0.3333333333333333
1 279:1.0 1524:1.0
1 14:0.03333333333333333 69:0.25 1153:1.0
1 6:1.0 14:0.03333333333333333 30:0.125
1 4:0.1 19:0.047619047619047616 25:1.0 66:0.5 679:1.0 1524:1.0
1 10:0.5 19:0.047619047619047616 25:1.0 66:0.5 199:0.25 237:1.0 394:1.0
1 19:0.047619047619047616 69:0.25 84:0.07692307692307693 121:0.3333333333333333 189:0.5 249:0.5 355:0.5 489:1.0 511:1.0 961:1.0 1524:1.0
1 3:0.3333333333333333 6:1.0 14:0.06666666666666667 17:0.034482758620689655 19:0.09523809523809523 20:1.0 21:1.0 74:0.3333333333333333 91:1.0 181:0.5 226:1.0 249:0.5 274:0.5 602:1.0 705:1.0 856:1.0 911:1.0 1524:1.0
1 17:0.034482758620689655 19:0.047619047619047616 837:1.0 842:1.0
1 6:1.0 14:0.03333333333333333 17:0.034482758620689655 69:0.5 381:1.0 486:1.0 611:1.0 837:1.0
1 14:0.03333333333333333 17:0.017241379310344827 20:1.0 30:0.125 184:0.5 250:1.0 349:0.2 625:1.0 924:1.0 992:1.0 1041:1.0 1425:1.0
1 3:0.3333333333333333 4:0.2 349:0.2 1089:1.0
1 6:1.0 14:0.06666666666666667 17:0.017241379310344827 30:0.125 133:1.0 226:1.0 377:1.0 465:1.0
1 25:1.0 167:1.0 901:1.0
1 6:1.0 13:1.0 14:0.1 17:0.034482758620689655 19:0.047619047619047616 49:0.14285714285714285 74:0.3333333333333333 84:0.07692307692307693 256:1.0 442:1.0 553:1.0 837:1.0 1213:1.0
1 17:0.017241379310344827 20:1.0 25:1.0 147:1.0 171:1.0 284:1.0 828:1.0
1 13:0.5 127:1.0 249:0.5 441:1.0
1 14:0.03333333333333333 17:0.017241379310344827 475:1.0 883:1.0
1 4:0.1 13:0.5 202:0.125 1563:1.0
1 19:0.047619047619047616 20:1.0 21:1.0 43:0.25
1 3:0.3333333333333333 14:0.06666666666666667 17:0.017241379310344827 25:2.0 28:1.0 84:0.07692307692307693 298:1.0 326:1.0 462:1.0 716:1.0
|
c4cb52e58f0574211226ff7cc092bb0d02e52f10 | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/tests/Task/ao.sce | 029e47165acf8902639de02bed06be6f7eba7f9f | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 312 | sce | ao.sce | ao_data = 0.1:0.1:5;
ao = mdaqAOTask();
ao.init(1, ao_data', [0 5], %F, 100, 4);
ao.start();
ao.write(1, ao_data'-0.1, %T); disp('- 1');
ao.write(1, ao_data'-0.2, %T); disp('- 2');
ao.write(1, ao_data'-0.3, %T); disp('- 3');
ao.write(1, zeros(50, 1), %T); disp('- 4');
ao.waitUntilDone(-1);
ao.stop();
return;
|
acd88300ac1557c6950ec7caefe752a4257912aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH19/EX19.3/Ex19_3.sce | 86a7446c995a91022f765dfa35e41954f9eedda5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 141 | sce | Ex19_3.sce | //Example 19-3,Page No - 780
clear
clc
R=43*10^6
D=1200/3274
d=1/(5*R*D)
printf('The dispersion factor is %.1f ns/km',d*10^9)
|
343994480447ebaa1c49e8f9e91696e3c39c1f03 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH3/EX3.9/Ex3_9.sce | 3aeccf97faedc6ca437ee2c928b0f7c172f168f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 982 | sce | Ex3_9.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 3 Example 9")
W=-200;//shaft work in KJ/kg of air
deltah=100;//increase in enthalpy in KJ/kg of air
Q1=-90;//heat transferred to water in KJ/kg of air
disp("work interaction,W=-200 KJ/kg of air")
disp("increase in enthalpy of air=100 KJ/kg of air")
disp("total heat interaction,Q=heat transferred to water + heat transferred to atmosphere")
disp("writing steady flow energy equation on compressor,for unit mass of air entering at 1 and leaving at 2")
disp("h1+C1^2/2+g*z1+Q=h2+C2^2/2+g*z2+W")
disp("assuming no change in potential energy and kinetic energy")
disp("deltaK.E=deltaP.=0")
disp("total heat interaction(Q)in KJ/kg of air")
disp("Q=deltah+W")
Q=deltah+W
disp("Q=heat transferred to water + heat transferred to atmosphere=Q1+Q2")
disp("so heat transferred to atmosphere(Q2)in KJ/kg of air")
Q2=Q-Q1
|
1fbd55527bc6cd9db7556f6426cfcc989361a1f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH5/EX5.22/ex_5_22.sce | b83f42ceb496cd96ecb0e988eb1a89dd476ef161 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 489 | sce | ex_5_22.sce | clear;
clc;
close;
a=1.5;
dt=.1;
t=0:dt:10;
s=size(t);
x=ones(1,s(2))./(a^2+t^2);
y=[x($:-1:1) x];
t1=-10:dt:10.1;
a=gca();
plot(t1,y);
poly1=a.children.children;
poly1.thickness=3;
poly1.foreground=2;
xtitle('x(t)','t')
//clf();
wmax=10;
w=0:0.1:wmax;
Xw=x*exp(-%i*(w'*t))*dt;
Xw_mag=(Xw);
Xw_mag=[Xw_mag($:-1:1) Xw_mag];
w=[-w($:-1:1) w];
figure
a=gca()
plot2d(w,Xw_mag);
poly1=a.children.children;
poly1.thickness=3;
poly1.foreground=2;
xtitle('X(w)','w') |
728942ecfeb80f2454a67672af8d4103d50521ab | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH3/EX3.12/12.sce | 150c5abc03d5cebc99220debad73e9e5b5383314 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,500 | sce | 12.sce | clc
clear
//input data
M1=0.25 //Mach number at entrance
f=0.04/4 //frictional factor
D=0.15 //inner duct diameter in m
p1=0.9 //Stagnation pressure ratio at exit to entry when loss in stagnation pressure is 10%
ds=190 ///Change in entropy in J/kg-K
k=1.3 //Adiabatic constant
R=287 //Specific Gas constant in J/kg-K, wrong printing in question
//calculation
p2=2.4064 //Ratio of stagnation pressures at inlet to critical state from gas tables fanno flow tables @M1,k=1.3
X1=8.537 //frictional constant fanno parameter from gas tables,fanno flow tables @M1,k=1.3
p3=p1*p2 //Ratio of stagnation pressures at exit to critical state from gas tables fanno flow tables @M1,k=1.3
M2=0.28 //Mach number at p1=0.9 from gas tables @p3
X2=6.357 //frictional constant fanno parameter from gas tables,fanno flow tables @M2,k=1.3
X3=X1-X2 //overall frictional constant fanno parameter
L1=(X3*D)/(4*f) //Length of the pipe in m
p4=exp(ds/R) //Ratio of Stagnation pressure at entry to Stagnation pressure where ds=190
p5=p1/p4 //Ratio of Stagnation pressures where ds=190 to critical state
M3=0.56 //Mach number where ds=190
X4=0.674 //frictional constant fanno parameter from gas tables,fanno flow tables @M3,k=1.3
X5=X1-X4 //overall frictional constant fanno parameter
L2=(X5*D)/(4*f) //Length of the pipe in m
//output
printf('(A)Length of the pipe is %3.3f m\n (B)Length of the pipe would require to rise entropy by %3i J/kg-K is %3.5f m\n (C)Mach number is %3.2f',L1,ds,L2,M3)
|
b063da00cc1a985cc994399e83ad00d01d7f19ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH7/EX7.1/Ex7_1.sce | c592868ab7776c89bcf62fb09adfcfe3a9076385 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 543 | sce | Ex7_1.sce | clc;
p=6; // number of poles
c=40; // number of coils
w=2; // winding pitch for simplex lap winding
printf('Number of commutator segments is equal to number of coils=%f\n ',c);
k=1/3; // integer added(or subtracted) to calculate back pitch to make it an odd integer
yb=((2*c)/p)-k;
printf('Back pitch is %f \n',yb);
yf=yb-w;
printf('Front pitch for progressive winding is %f\n',yf);
yf=yb+w;
printf('Front pitch for retrogressive winding is %f\n',yf)
yc=1;
printf('For simplex lap winding, commutator pitch is equal to %f ',yc);
|
253d0e59efcf9aba13ea3dc841d2a3af18dff71f | fd6a414e5722e920e5ebe08c77fe0f70b29e77cf | /SpeechNoiseCancellation.sce | 3953d9dfc196db3e4f19263ec7fc312998effa8e | [] | no_license | JBouis/AudioProcessing | e774bdfaf38207643d441f975a96773ae3cbbd24 | c9f81b8d5ce447b014707b309ef209530219adc0 | refs/heads/master | 2021-05-18T02:21:40.839402 | 2020-03-29T15:22:16 | 2020-03-29T15:22:16 | 251,063,576 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,231 | sce | SpeechNoiseCancellation.sce | //Caption: Speech Noise Cancellation using LMS Adaptive Filter
clc;
function[y]= pow_1(x,N)
xold = 0.0;
for n =1:N
sumx = xold+(x(n)^2);
xold = sumx;
end
y = sumx/N;
endfunction
//Reading a speech signal
[x,Fs,bits]=wavread('C:\Test_Project\a-team_my_way.wav');
order = 40; // Adaptive filter order
x = x';
N = length(x);
t = 1:N;
//Plot the speech signal
figure(1)
subplot(2,1,1)
plot(t,x)
title('Noise free Speech Signal')
//Generation of noise signal
noise = 0.1*rand(1,length(x));
//Adding noise with speech signal
for i = 1:length(noise)
primary(i)= x(i)+noise(i);
end
//Plot the noisy speech signal
subplot(2,1,2)
plot(t,primary)
title('primary = speech+noise (input 1)')
//Reference noise generation
for i = 1:length(noise)
ref(i)= noise(i)+0.025*rand(10);
end
//Plot the reference noise
figure(2)
subplot(2,1,1)
plot(t,ref)
title('reference noise (input 2)')
//Adaptive filter coefficients initialized to zeros
w = zeros(order,1);
Average_Power = pow_1(x,N)
mu = 1/(10*order*Average_Power); //Adaptive filter step size
//Speech noise cancellation
for k = 1:110
for i =1:N-order-1
buffer = ref(i:i+order-1); //current order points of reference
desired(i) = primary(i)-buffer'*w; // dot product the reference & filter
w = w+(buffer.*mu*desired(i)); //update filter coefficients
end
end
//Plot the Adaptive Filter output
subplot(2,1,2)
plot([1:length(desired)],desired)
title('Denoised Speech Signal at Adaptive Filter Output')
//Calculation of Mean Squarred Error between the original speech signal and
//Adaptive filter output
for i =1:N-order-1
err(i) = x(i)-desired(i);
square_error(i)= err(i)*err(i);
end
MSE = (sum(square_error))/(N-order-1);
MSE_dB = 20*log10(MSE);
//Playing the original speech signal
sound(x,Fs,16)
//Delay between playing sound signals
for i = 1:1000
j = 1;
end
/////////////////////////////////
//Playing Noisy Speech Signal
sound(primary,Fs,16)
//Delay between playing sound signals
for i = 1:1000
j = 1;
end
/////////////////////////////////
//Playing denoised speech signal (Adaptive Filter Output)
sound(desired,Fs,16)
|
cfae691b8819f537fb5774bd637b4fdfff12925c | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH11/EX11.15/15.sce | c0b93cc092054533010ffd5af87f1b21edcd9ce1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 138 | sce | 15.sce | clc
AF_mole=(12.5+12.5*(79/21))/1;
AF_mass=AF_mole*28.97/(8*12+1*18);
disp("Air fuel ratio =")
disp(AF_mass)
disp("kg air/kg fuel") |
ccb2cc582e125a8bbd06f5f40c51bb1ed60eb3bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /462/CH2/EX2.5/ex_2_5.sce | 360f03235bb108077ffec5735f70777c4cc90208 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 850 | sce | ex_2_5.sce | //example 2.5//
clc
//clears the command window//
clear
//clears all the variables//
q =0;
b =0;
s =0;
//a=input(”Enter the decimal no to be converted to its binary equivalent: ”) ;
//accepting the decimal input from user//
a =0.65625;
d = modulo (a ,1) ;
//separating the decimal part and the integer part//
a = floor ( a ) ;
//removing the decimal part//
while (a >0)
//taking integer part into a matrix and convert to equivalent binary//
x = modulo (a ,2) ;
b = b + (10^ q ) * x ;
a = a /2;
a = floor ( a ) ;
q = q +1;
end
for i =1:10
//For values after decimal point converting to binary//
d = d *2;
q = floor ( d ) ;
s = s + q /(10^ i ) ;
if d >=1 then
d =d -1;
end
end
k=b+s;
disp('The binary equivalent of the given decimal number is =');
disp(k);
//displaying the final result .
|
779de6469c3e89161b4c5a5ecbed3e0e39d1ec1e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH4/EX4.24/Ch04Ex24.sce | ec8935fbd53a5783dac713da79b78b90268acd3f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 637 | sce | Ch04Ex24.sce | // Scilab Code Ex4.24:: Page-4.36 (2009)
clc; clear;
l = 17; // Length of the tube, cm
V = 37; // Volume of sugar solution, cc
theta = 15; // Angle of rotation of the plane of polarization, degrees
S = 68; // Specific rotation of sugar solution, degrees
// As S = 10*theta/(l*c), solving for c
c = 10*theta/(l*S); // Concentration of sugar solution, g/cc
m = c*V; // Mass of sugar in the solution contained in the tube, g
printf("\nThe mass of sugar in the solution contained in the tube = %3.1f g", m);
// Result
// The mass of sugar in the solution contained in the tube = 4.8 g
|
0891c80eb473a0d60eead0785572e47c1681bf26 | 717ddeb7e700373742c617a95e25a2376565112c | /72/CH8/EX8.4.1/8_4_1.sce | 494da828147a10ca354c10f4a172cc0260ad0d64 | [] | 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 | 594 | sce | 8_4_1.sce | //CAPTION: Breakdown_voltage_Of_a_BARITT_Diode
//chapter_no.-8, page_no.-338
//Example_no.8-4-1
clc;
//(a) Calculate_the_break_down_voltage
q=1.6*(10^-19);
N=2.8*(10^21);//Donor_Concentration
L=6*(10^-6);//silicon_length
er=11.8;//Relative_dielectric_constant
es=8.854*(10^-12)*er;
Vbd=(q*N*(L^2))/es;
disp(Vbd,'the_break_down_voltage_is_double_its_critical_voltage_as(in Volts)is =');
//(b)Calculate_the_break_down_electric_field
Ebd=Vbd/L;
disp(Ebd,'the_break_down_electric_field(in V/m)is =');
Ebd=Ebd/100;
disp(Ebd,'the_break_down_electric_field(in V/cm)is =');
|
b06d3b8aae9d10285655940a06537c7267f331f3 | 13c3ed7bef4d80dabd836219bbf4396f07cb934a | /magni_demo.sci | 2349e26a9e341a2427c3110f4a7438de37430783 | [] | no_license | Mushirahmed/scilab_workspace | 99f489a110a5e295ce9fca9991122d14840018d3 | f58b91b87bb0357fff82dcb97b05541e7e976eca | refs/heads/master | 2021-01-10T15:48:40.576771 | 2016-02-10T10:32:46 | 2016-02-10T10:32:46 | 43,348,489 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sci | magni_demo.sci | function magni_demo()
a = uint8([12.52,-13.56,-14.42;-32,-11,-10;-2,-20.87,-25]);
b = int8([-12.10,-11.15,-13;-10,-9.66,-12.89;-29.13,-33.12,-15]);
ans_a = abs(a);
ans_b = abs(b);
disp(ans_a);
disp(ans_b);
endfunction
|
f0c112912d6cb8af06aea0c1eefc5d8c52d70e78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH8/EX8.4/Ex8_4.sce | 2de0c6e1b95b463fc2fec6447a1a7c8bc1458ec3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,109 | sce | Ex8_4.sce |
// Example 8.4
// From the diagram 4.5
V1=20; // Source voltage
R=80; // Series resistance
io1=V1/R; // Steay state current
disp(' Steay state current (at t=0- ) = '+string(io1)+' Amp');
// Because current in inducor can't charge instantaneously
disp(' Steay state current (at t=0+ ) = '+string(io1)+' Amp');
V2=40; // Source voltage
Io2=(V1+V2)/R; // Steay state current at t= infinity
disp(' Steay state current (at t= infinity ) = '+string(Io2)+' Amp');
L=40*10^-3; // Inductor
t1=L/R; // Time COnstant
t=0.001; // Time of 1 ms
// By the formula ==> i(1 ms)= io1*(io1-Io2)*(1-e-(t/t1))
Ims=io1+(Io2-io1)*(1-exp (-t/t1)); // Steay state current (at t=1ms)
disp(' Steay state current (at t= 1ms ) = '+string(Ims)+' Amp');
// p 279 8.4 |
315250ff11342c9ce04e75c8eee8ed34f25fafa2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /323/CH5/EX5.22/ex5_22.sci | 8cb2bd4149ee147b5df93f95953130e96c8dd83c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sci | ex5_22.sci | //Ex5.22,Pg5.23
clc;
flkva=150 //Given
Wi=1.4 //Iron loss in kW
Wcu=1.6 //Copper loss in kW
//(a)
lkva=flkva*sqrt(Wi/Wcu)
printf("\n Load kVA=%.2f kVA \n",lkva)
//For maximum efficiency Wi=Wcu=1.4kW and pf=0.8
n= (lkva*0.8/((lkva*0.8)+Wi+Wcu))*100
printf("\n Efficiency=%.2f percent \n",n)
//(b)
n= (0.5*flkva*0.8/((0.5*flkva*0.8)+Wi+(0.5^2)*Wcu))*100
printf("\n Efficiency=%.2f percent \n",n)
|
3b8a432e220838329562506e17bfcc5b87a4e380 | 449d555969bfd7befe906877abab098c6e63a0e8 | /876/CH3/EX3.2/Ex3_2.sce | cb230b05c95e7851969702aec8cc1376dffef254 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 223 | sce | Ex3_2.sce | //caption:Find change in resistance
//Ex3.2
clc
clear
close
G=2//gauge factor
S=500//stress applied(in Kg/cm^2)
v=2*10^6//modulus of elasticity(in Kg/cm^2)
e=(S/v)
R=(e*G)*100
disp(R,'change in resistance(in %)=') |
98828e9a722e7487365424e227ecf5d70b123121 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2282/CH6/EX6.4/ex6_4.sce | 488c35d86070b2474e34df7d133a37742e26ffcd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 710 | sce | ex6_4.sce | // Example 6.4, page no-231
clear
clc
R=42150 //orbital radius of satellite
oi=0.25/100 // orbit inclination
acc=0.3 //error of 0.3 degree
c=3*10^8 // speed of light
x=oi*R
x=ceil(x*10)/10
y=R*2*%pi*acc/360
y=ceil(y*10)/10
z=sqrt(x^2+y^2)
z=ceil(z*10)/10
delay=z*10^6/c
delay=floor(delay*1000)/1000
pd=2*delay
printf("variation in alitude caused byorbit inclination = %.1fkm\n variation due to station-keeping error of 0.3° = %.1fkm",x,y)
printf("\n Both these errors will introduce a maximum range variation of %.1fkm\n This cause a one-way propagation delay of %.3fms\n Round trip propagation delay =%.2fms\n Dopler Shift = %.2f ms in 8h=56.25 ns/s",z,delay,delay*2,pd)
|
d4c722f6695e83171e9a9a9c39131995361cea6f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1514/CH10/EX10.4/10_4.sce | 6e3e154671d527acd1c41a7f0797be663c8f3c8d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | sce | 10_4.sce | //chapter 10
//example 10.4
//page 296
clear;
clc ;
//given
R1=3.9 ;
R2=2.2;//in Mohm
Rl=27;
Rs=1.5;//in kohm
gm=4 ;//mA/V
Rg=R1*R2/(R1+R2);
Zi=Rg;
Rp=1/gm;//in kohm
Zo=1000*(Rs*Rp)/(Rs+Rp);
Av=(gm*((Rs*Rl)/(Rs+Rl)))/(1+gm*((Rs*Rl)/(Rs+Rl)));
printf('\nZi=%.1f Mohm',Zi)
printf('\nZo=%d ohm',Zo)
printf('\nAv=%.2f ',Av)
|
7375bc38db4934028ff2ecfa889c3080655c4435 | 4058f38b392324aa5099819881f3c7d7219a174f | /3 bit Shift Register/SIPO/SIPO pos edge trig.sce | e7ad532cbc9028d9a738c1fcfd2d094935638d7b | [] | no_license | anupma-s/Scilab-Xcos-Arduino-Digital-Circuits | 612a033422bf14e2e58bcdce371f15cafb30224f | 2b4bf8e8f155d20a5eda2feb31c5523a51569d73 | refs/heads/master | 2021-01-20T17:20:13.073180 | 2016-07-04T15:25:07 | 2016-07-04T15:25:07 | 62,569,455 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,947 | sce | SIPO pos edge trig.sce | //3 bit SIPO shift register using D FFs
//input by user is given to FF2 (MSB FF).
//It then shifts rightwards serially and is eventually lost through
//FF0 (LSB FF) after 3 clock pulses
//outputs of all FFs (all bits) are obtained at all instances
ok=open_serial(1,2,115200);
if ok~=0 then error('Unable to open serial port, please check'); end
D2=0; //serial data input, input by user is given to FF2 (MSB FF), output of FF2=input of FF1
D1=0; //D1=Q2, FF1 (middle bit FF), output of FF1=input of FF0
D0=0; //D0=Q1, FF0 (LSB FF), output of FF0 = Q0
Q0=0;
pinstate=0; //clock or enable, common to all FFs
lastpinstate=0;
for i=1:5000
//pin 9=D0=LSB
if (D0==0)
cmd_digital_out(1,9,0)
else
cmd_digital_out(1,9,1)
end
//pin 10=Q1=D1=middle bit
if (D1==0)
cmd_digital_out(1,10,0)
else
cmd_digital_out(1,10,1)
end
//pin 11=Q2=D2=MSB
if (D2==0)
cmd_digital_out(1,11,0)
else
cmd_digital_out(1,11,1)
end
pinstate=cmd_digital_in(1,2) //reads the state of clock
//clock is common for all FFs thus only 1 if statement for detecting positive edge of clock
if (pinstate~=lastpinstate)
if(pinstate==1)
//order of FFs; FF2-FF1-FF0
//FF0
if (D0==0)
Q0=0;
else
Q0=1;
end
//FF1
if(D1==0)
D0=0;
else
D0=1;
end
//FF2
if(D2==0)
D1=0;
else
D1=1;
end
D2=cmd_digital_in(1,5) //input is given to D of FF2 (MSB FF)
end
sleep(50)
end
lastpinstate=pinstate;
end
close_serial(1)
|
db8341c0fa8e2b596b09b1eb0282dfb7bfe1341e | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH15/EX15.5/15_5.sce | 087fb03ff03aa7e29ef5be44b811d08d15ea5a04 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 143 | sce | 15_5.sce | clear; clc; close;
Idc = 50;
C = 100;
Vdc = 27.9;
r = (2.4*Idc/(C*Vdc))*100;
disp(r,'Ripple value of capacitor in percentage = ');
|
05b77846af5faf106021e7494e15337c6dcbda6d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3543/CH3/EX3.1/Ex3_1.sce | 2aa81343060af29ae9961648d3de83d0f17ebd6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 733 | sce | Ex3_1.sce | //Calculation of barrier potential
// Example 3.1
// Page no 80
clc;
clear all;
close;
//Given data
p=5; // Resistivity of p-region
n=2; // Resistivity of n-region
mu=3900;
k=0.026; //Boltzmann constant
ni=2.5*10^13; //Density of the electron hole pair
e=1.6*10^-19; //charge of electron
//Barrier potential calculation
r0=(1/p); // Reflection at the fiber air interface
r1=(1/n);
m=r1/(mu*e);
p=6.5*10^14; //Density of hole in p -region
Vb=k*log(p*m/ni^2);
//Displaying the result in command window
printf("\n Barrier potential(in V) = %0.3f",Vb);
// The answers vary due to round off error
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.