blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50
values | src_encoding stringclasses 23
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 1
class | length_bytes int64 5 10.4M | extension stringclasses 29
values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
be05e1ad722ad2e0964ad67fb4a0bc0d8d3f16ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH1/EX1.2/Ch01Ex2.sce | 97ffa47b751c6c09586028faa9eefb2e6b87717d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 920 | sce | Ch01Ex2.sce | // Scilab Code Ex1.2 Page-14 (2006)
clc; clear;
r = 0.143e-09; // Radius of Nb unit cell, m
d = 8.57e+03; // Density of Nb unit cell, kg/metre-cube
M = 92.91e-03; // Atomic weight of Nb, kg per mole
N = 6.023D+23; // Avogadro's No.
// For fcc
a = 4*r/sqrt(2); // Lattice parameter for fcc structure of Nb, m
n = a^3*d*N/M; // Number of lattice points per unit cell
if (modulo(n, int(n)) < 0.001) then
printf("\nThe number of atoms associated with the cell is %d, Nb should have fcc structure", int(n));
end
// For bcc
a = 4*r/sqrt(3); // Lattice parameter for bcc structure of Nb, m
n = a^3*d*N/M; // Number of lattice points per unit cell
if (modulo(n, int(n)) < 0.001) then
printf("\nThe number of atoms associated with the cell is %d, Nb should have bcc structure", int(n));
end
// Result
// The number of atoms associated with the cell is 2, Nb should have bcc structure
|
7fb9983870425d4154d48f14fc80e5631a59fca7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /992/CH4/EX4.1/ex4_1.sce | 0a7051a82b90bc80b94ebc9ac29036e2a62f5111 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 284 | sce | ex4_1.sce |
//Exa:4.1
clc;
clear;
close;
//Given:
//Ec^2=Pk
printf("\n After 100percent modulation energy gets doubled");
printf("\n So, \n (2Ec)^2=4*Pk");
printf("4*Pk/2=2Pk The SIGNAL POWER GETS DOUBLED \N THIS IS TYPICAL OF DIGITAL MODULATION SYSTEM WITH ON-OFF Keys OR OOK signal"); |
673290fc8be0b0684e20c36e22245949a684c13b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH1/EX1.47/ch1_ex_47.sce | 9b53f1882600be240b4ebe547a7ce1191c6b6a57 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 831 | sce | ch1_ex_47.sce | //CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
//Example 47
disp("CHAPTER 1");
disp("EXAMPLE 47");
//VARIABLE INITIALIZATION
lc=20; //length of copper wire in m
dc=0.015/100; //diameter of copper wire in m
rhoc=1.7; //specific resistance for copper
lp=15; //length of platinum silver wire in m
dp=0.015/100; //diameter of platinum silver wire in m
rhop=2.43; //specific resistance for platinum silver
//SOLUTION
//for copper wire
sc=(%pi/4)*(dc^2); //area
rc=rhoc*(lc/sc);
//for platinum silver
sp=(%pi/4)*(dp^2); //area
rp=rhop*(lp/sp);
if(rc>rp) then
disp("Copper wire has greater resistance");
else
disp("Platinum silver wire has greater resistance");
end;
//END
|
b9e3ab3cf1c32c6120153d6cd3f3dfb33607a272 | 449d555969bfd7befe906877abab098c6e63a0e8 | /49/CH4/EX4.7/ex7.sce | 728446efcb67946c74d9c6f35c43181494e3f0d1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 791 | sce | ex7.sce | //CHAPTER 4_ Motion and Dimensional Measurement
//Caption : Seismic vibration
// Example 7// Page 232
disp("ty=0.6")
disp("fn=10")
disp("f=25")
disp("M=0.15")
disp("xo=1.5*10^-3")
ty=0.6 //(' enter the damping ratio of seismic vibration pickup=:')
fn=10 //('enter the natural frequency =:')
f=25 //('enter the frequency at which the table is vibrating=')
M=0.15 //( 'enter the seismic mass=:')
xo=1.5*10^-3 //('enter the relative amplitude of the mass=:')
r=f/fn;
disp("xi=xo/((r^2)/sqrt((1-r^2)^2+(2*ty*r)^2));")
xi=xo/((r^2)/sqrt((1-r^2)^2+(2*ty*r)^2));
error=(xi-xo)/xo;
printf('error in measurement is %fd\n',error)
wn=2*%pi*fn;
Ks=wn^2*M;
printf('spring constant is %fd N/m\n',Ks)
B=ty*(2*sqrt(Ks*M));
printf(' damping coefficient of pickup is %fdN-s/m\n',B) |
47e63658a5df65b85bfe99f0c9adc5fe126c7898 | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH9/EX9.21/Chap9_Ex21_R1.sce | eb7930fa2cce5c018de739ae9547943cff5ef3c1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,967 | sce | Chap9_Ex21_R1.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-9,Example 21,Page 346
//Title: Fugacity coefficients of the components in a mixture using the Virial Equation of state
//================================================================================================================
clear
clc
//INPUT
T=600;//temperature of the equimolar n-butane and n-octane mixture in K
P=16;//pressure of the equimolar n-butane and n-octane mixture in bar
B_11=-131*10^-6;//pure component (n-butane) second virial coefficient in m^3/mol taken from Example(9.7)
B_22=-577*10^-6;//pure component (n-octane) second virial coefficient in m^3/mol taken from Example(9.7)
B_12=-264*10^-6;//mixture interaction virial coefficient in m^3/mol taken from Example(9.7)
Bm=-309*10^-6;//second virial coefficient in m^3/mol taken from Example(9.7)
R=8.314;//universal gas constant in J/molK
//CALCULATION
//For convenience, n-butane is taken as 1 and n-octane as 2
y1=0.5;//mole fraction of n-butane in the equimolar mixture
y2=0.5;//mole fraction of n-octane in the equimolar mixture
Zm=(1/2)*(1+sqrt(1+((4*Bm*P*10^5)/(R*T))));//calculation of compressibility for the mixture(Zm) using Eq.(9.136) (no unit)
phi1=exp((((2*P*10^5)/(Zm*R*T))*((y1*B_11)+(y2*B_12)))-log(Zm));//calculation of the fugacity coefficient of n-butane in the mixture using Eq.(9.135) (no unit)
phi2=exp((((2*P*10^5)/(Zm*R*T))*((y1*B_12)+(y2*B_22)))-log(Zm));//calculation of the fugacity coefficient of n-octane in the mixture using Eq.(9.135) (no unit)
//OUTPUT
mprintf("\n The fugacity coefficient of n-butane in the equimolar mixture using the Virial Equation of state = %0.3f \n",phi1);
mprintf("\n The fugacity coefficient of n-octane in the equimolar mixture using the Virial Equation of state = %f \n",phi2);
//===============================================END OF PROGRAM===================================================
|
3c1133d6d11d963d51f1121a3056e625a6fd81da | 449d555969bfd7befe906877abab098c6e63a0e8 | /2792/CH9/EX9.1/Ex9_1.sce | ad0da1940c83d7a66ac440e07744445c44f63f8e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 750 | sce | Ex9_1.sce | clc
kbT = 0.026
disp("kbT = "+string(kbT)+"eV") //initializing value of kbT at 300K
apsilen = 11.9*8.85*10^-14
disp("apsilen = "+string(apsilen)+"F/cm") //initializing value of relative permitivity
e = 1.6*10^-19
disp("e= "+string(e)+"C")//initializing value of charge of electron
Na=10^16
disp("Na = "+string(Na)+"cm^-3") //initializing value of doped carrier concentration
ni = 1.5*10^10
disp("ni= "+string(ni)+"cm^-3")//initializing value of intrinsic carrier concentration
phi_F= (-kbT*log(Na/ni))
disp("The potential phi_F= (-kbT*log(Na/ni))= "+string(phi_F)+"V")//calculation
W = sqrt((4*apsilen*(-phi_F))/(e*Na))*10^4
disp("The space charge width is ,W = sqrt((4*apsilen*phi_F)/e*Na)= "+string(W)+" micro_meter")//calculation
|
eeef1f359b64780c926e7349fcc52532ff3dc5ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH7/EX7.16/ex7_16.sci | cf1862534d175af6cd6228b87a742df3e21d70ab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 831 | sci | ex7_16.sci | //Programming Example 7.16
//The towers of hanoi
function[]= main()
printf("Welcome to theTOWERS OF HANOI\n\n");
printf("How many disks? ");
n= scanf("%d");
printf("\n");
transfer(n,'L', 'R','C');
endfunction
function[] = transfer(n,from,to,temp)
//transfer n disks from one pole to another
//n=number of disks
//from=origin
//to=destination
//temp=temporary storage
if(n >0) then
//move n-1 disks frim origin to temporary
transfer(n-1, from, temp, to);
//move nth disk from origin to temporary
printf("Move disk %d from %c to %c \n",n, from, to);
//move n-1 disks from temporary to destination
transfer(n-1, temp,to, from);
end
return;
endfunction
//calling main() to start execution
main();
|
2a396964362239f0d749fb8808b96d4c56f6b964 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set9/s_Engineering_Mechancis-schaum_Series_Mclean_3137.zip/Engineering_Mechancis-schaum_Series_Mclean_3137/CH19/EX19.15/Ex19_15.sce | d9a16f95d1379f8bb585e5573924c713fd9792b6 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | Ex19_15.sce | errcatch(-1,"stop");mode(2);//Initilization of variables
W=10 //lb
A=2 //in^2
//Calculations
wn=sqrt(((A/144)*5*62.4*5)/2.59) //Hz
//Result
printf('The frequency of oscillation is %f Hz',wn)
exit();
|
814495d1b2c40974f38ffb1a49a9252cc0e30755 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH10/EX10.12/10_12.sce | b174615da203786688ccd09972c32b039bbd21e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | sce | 10_12.sce | //Example 10.12
//Third Order Runge Kutta Method
//Page no. 322
clc;clear;close;
deff('y=f(x,y)','y=x^2-y')
y=1;h=0.1;
for i=1:2
x=(i-1)*h
K1=h*f(x,y);
K2=h*f(x+h/2,y+K1/2);
K3=h*f(x+h,y+K2);
y=y+(K1+4*K2+K3)/6
printf('\ny(%g) = %.9f\n\n',x+h,y)
end |
7a050ccff939e298632a4facaebe4b9f66b8a323 | 449d555969bfd7befe906877abab098c6e63a0e8 | /70/CH1/EX1.4.3/1_4_3.sci | 5ba9752b3082b0915f9c7fa024a6e0adf81bae3c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 112 | sci | 1_4_3.sci | //page 24
clear;
close;
clc;
A=[1 2;3 4];
disp(A,'A=');
I=eye(2,2);
disp(I,'I=');
disp(I*A,'IA=')
//end |
e4238912b024f997090df614115f491d03b11eac | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH7/EX7.4/Ex7_4.sce | 47c82fe5211b8b7a34b95776f690766b6d4451ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 960 | sce | Ex7_4.sce | clear;
clc;
// Example 7.4
printf('Example 7.4\n\n');
printf('Page No. 204\n\n');
// This question doesnot contain any calculation part.
//Refer figure 7.3, 7.4, 7.5
T_max = 200;// Flue gas exit temperature in degree celcius
printf(' The company investigate four alternative methods of heat abstraction using the flue gas.\n\n System-1 The efficiency of the furnace without any air preheater is 79.2 per cent.\n System-2 The efficiency of the furnace, with the air preheater only in the system operating as shown in figure 7.3, is increased to 86.6 per cent.\n System-3 By the incorporation of the heat exchanger,the furnace efficiency is increased to 93.3 per cent using the arrangement shown in figure 7.4.\n System-4 Using no preheating,finally achievied an overall thermal efficiency of 93.7 per cent.\n \t The new air preheater scheme is shown in figure 7.5.\n\n The pay-back period in all instances is less than 3.5 years.')
|
268972d36c187651783081f5717a4f1b9a3c93ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH16/EX16.5/Ex16_5.sce | cdda6437eb0f44bba8750910ffa2ea33a5a02d79 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,433 | sce | Ex16_5.sce | //Variable declaration:
//From figure 16.13, for ideal countercurrent heat exchanger:
T1 = 150.0 //Inlet temperature of hot fluid ( F)
T2 = 100.0 //Outet temperature of hot fluid ( F)
t1 = 50.0 //Inlet temperature of cold fluid ( F)
t2 = 80.0 //Outet temperature of hot fluid ( F)
//From figure 16.14, for shell and tube exchanger:
T_1 = 50.0 //Inlet temperature of cold fluid ( F)
T_2 = 80.0 //Outet temperature of hot fluid ( F)
t_1 = 150.0 //Inlet temperature of hot fluid ( F)
t_2 = 100.0 //Outet temperature of hot fluid ( F)
//Calculation:
DT1 = T1 - t2 //Temperature driving force 1 ( F)
DT2 = T2 - t1 //Temperature driving force 1 ( F)
DTlm1 = ((DT1-DT2)/log(DT1/DT2)) //Log mean temperature driving force for ideal countercurrent heat exchanger ( F)
P = (t2-t1)/(T1 - t1) //Dimensionless ratio P
R = (T1-T2)/(t2-t1) //Dimensionless ratio R
//From figure 16.7:
F = 0.925 //Correction Factor
DTlm2 = F*DTlm1 //Log mean temperature driving force for shell and tube exchanger ( F)
//Result:
printf("The log mean temperature difference for ideal system is : %.1f F.",DTlm1)
printf("The log mean temperature difference for real system is : %.2f F.",DTlm2)
|
3f9e42ccc445ee88849598a38ae29ddca7d2bd30 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/SCHI/NF65WHQ/ATWM1_Working_Memory_MEG_NF65WHQ_Session2/ATWM1_Working_Memory_MEG_Salient_Uncued_Run2.sce | 94eea06530aae43bb30c22f24aabec4fef70272e | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,405 | sce | ATWM1_Working_Memory_MEG_Salient_Uncued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_uncued_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 = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
42 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_023 gabor_095 gabor_077 gabor_154 gabor_023 gabor_095_alt gabor_077 gabor_154_alt "2_1_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_023_095_077_154_target_position_2_4_retrieval_position_2" gabor_circ gabor_095_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_099 gabor_028 gabor_009 gabor_075 gabor_099 gabor_028_alt gabor_009_alt gabor_075 "2_2_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_099_028_009_075_target_position_2_3_retrieval_position_2" gabor_circ gabor_028_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_163 gabor_034 gabor_102 gabor_014 gabor_163 gabor_034_alt gabor_102_alt gabor_014 "2_3_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_163_034_102_014_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_147_framed gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2492 fixation_cross gabor_055 gabor_030 gabor_089 gabor_107 gabor_055 gabor_030_alt gabor_089_alt gabor_107 "2_4_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_055_030_089_107_target_position_2_3_retrieval_position_2" gabor_circ gabor_030_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 1992 fixation_cross gabor_073 gabor_100 gabor_121 gabor_142 gabor_073_alt gabor_100_alt gabor_121 gabor_142 "2_5_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_073_100_121_142_target_position_1_2_retrieval_position_2" gabor_circ gabor_054_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_054_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1992 2992 2042 fixation_cross gabor_083 gabor_140 gabor_108 gabor_168 gabor_083_alt gabor_140_alt gabor_108 gabor_168 "2_6_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2050_gabor_patch_orientation_083_140_108_168_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_168_framed blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_168_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_120 gabor_097 gabor_153 gabor_033 gabor_120_alt gabor_097 gabor_153 gabor_033_alt "2_7_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_120_097_153_033_target_position_1_4_retrieval_position_1" gabor_120_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2542 fixation_cross gabor_180 gabor_074 gabor_162 gabor_104 gabor_180 gabor_074_alt gabor_162 gabor_104_alt "2_8_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_180_074_162_104_target_position_2_4_retrieval_position_2" gabor_circ gabor_074_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1842 2992 2142 fixation_cross gabor_022 gabor_037 gabor_003 gabor_077 gabor_022_alt gabor_037 gabor_003 gabor_077_alt "2_9_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2150_gabor_patch_orientation_022_037_003_077_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_053_framed gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_053_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2092 fixation_cross gabor_119 gabor_135 gabor_003 gabor_173 gabor_119 gabor_135_alt gabor_003 gabor_173_alt "2_10_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_119_135_003_173_target_position_2_4_retrieval_position_2" gabor_circ gabor_085_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 2292 fixation_cross gabor_049 gabor_167 gabor_114 gabor_088 gabor_049 gabor_167_alt gabor_114 gabor_088_alt "2_11_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_049_167_114_088_target_position_2_4_retrieval_position_2" gabor_circ gabor_028_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_023 gabor_053 gabor_070 gabor_129 gabor_023_alt gabor_053_alt gabor_070 gabor_129 "2_12_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_023_053_070_129_target_position_1_2_retrieval_position_2" gabor_circ gabor_053_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_124 gabor_065 gabor_092 gabor_034 gabor_124 gabor_065_alt gabor_092 gabor_034_alt "2_13_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_124_065_092_034_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_034_framed blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_029 gabor_071 gabor_157 gabor_139 gabor_029_alt gabor_071_alt gabor_157 gabor_139 "2_14_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_029_071_157_139_target_position_1_2_retrieval_position_2" gabor_circ gabor_071_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_029 gabor_055 gabor_160 gabor_178 gabor_029_alt gabor_055_alt gabor_160 gabor_178 "2_15_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_029_055_160_178_target_position_1_2_retrieval_position_2" gabor_circ gabor_101_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_101_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2542 fixation_cross gabor_173 gabor_064 gabor_089 gabor_139 gabor_173_alt gabor_064_alt gabor_089 gabor_139 "2_16_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_173_064_089_139_target_position_1_2_retrieval_position_1" gabor_123_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_136 gabor_051 gabor_030 gabor_105 gabor_136 gabor_051_alt gabor_030_alt gabor_105 "2_17_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_136_051_030_105_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_030_framed gabor_circ blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1942 2992 2342 fixation_cross gabor_043 gabor_016 gabor_173 gabor_101 gabor_043_alt gabor_016 gabor_173 gabor_101_alt "2_18_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_2350_gabor_patch_orientation_043_016_173_101_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_173_framed gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_173_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2542 fixation_cross gabor_035 gabor_113 gabor_086 gabor_069 gabor_035 gabor_113_alt gabor_086_alt gabor_069 "2_19_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_035_113_086_069_target_position_2_3_retrieval_position_2" gabor_circ gabor_113_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 2042 fixation_cross gabor_172 gabor_145 gabor_010 gabor_129 gabor_172 gabor_145_alt gabor_010_alt gabor_129 "2_20_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_172_145_010_129_target_position_2_3_retrieval_position_2" gabor_circ gabor_097_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_001 gabor_081 gabor_171 gabor_056 gabor_001_alt gabor_081 gabor_171 gabor_056_alt "2_21_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_001_081_171_056_target_position_1_4_retrieval_position_1" gabor_141_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2392 fixation_cross gabor_095 gabor_054 gabor_120 gabor_034 gabor_095_alt gabor_054_alt gabor_120 gabor_034 "2_22_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_095_054_120_034_target_position_1_2_retrieval_position_2" gabor_circ gabor_054_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_054_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2142 2992 2292 fixation_cross gabor_170 gabor_154 gabor_040 gabor_126 gabor_170_alt gabor_154 gabor_040_alt gabor_126 "2_23_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_2300_gabor_patch_orientation_170_154_040_126_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_126_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_118 gabor_095 gabor_134 gabor_009 gabor_118_alt gabor_095 gabor_134 gabor_009_alt "2_24_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_118_095_134_009_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_054_framed blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_054_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 1942 fixation_cross gabor_076 gabor_055 gabor_145 gabor_096 gabor_076_alt gabor_055 gabor_145_alt gabor_096 "2_25_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_076_055_145_096_target_position_1_3_retrieval_position_1" gabor_076_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_076_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1792 2992 2492 fixation_cross gabor_082 gabor_152 gabor_034 gabor_105 gabor_082_alt gabor_152 gabor_034 gabor_105_alt "2_26_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2500_gabor_patch_orientation_082_152_034_105_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_169_framed gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_169_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_162 gabor_038 gabor_001 gabor_023 gabor_162 gabor_038_alt gabor_001_alt gabor_023 "2_27_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_162_038_001_023_target_position_2_3_retrieval_position_2" gabor_circ gabor_088_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_151 gabor_104 gabor_168 gabor_063 gabor_151_alt gabor_104 gabor_168_alt gabor_063 "2_28_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_151_104_168_063_target_position_1_3_retrieval_position_1" gabor_151_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_156 gabor_175 gabor_113 gabor_043 gabor_156 gabor_175_alt gabor_113_alt gabor_043 "2_29_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_156_175_113_043_target_position_2_3_retrieval_position_2" gabor_circ gabor_129_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 1992 fixation_cross gabor_169 gabor_084 gabor_135 gabor_117 gabor_169_alt gabor_084 gabor_135 gabor_117_alt "2_30_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2000_gabor_patch_orientation_169_084_135_117_target_position_1_4_retrieval_position_1" gabor_029_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 2142 fixation_cross gabor_142 gabor_062 gabor_097 gabor_116 gabor_142_alt gabor_062 gabor_097 gabor_116_alt "2_31_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_142_062_097_116_target_position_1_4_retrieval_position_1" gabor_007_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2092 2992 2142 fixation_cross gabor_148 gabor_089 gabor_072 gabor_032 gabor_148 gabor_089_alt gabor_072 gabor_032_alt "2_32_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2150_gabor_patch_orientation_148_089_072_032_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_119_framed gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_119_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_079 gabor_160 gabor_111 gabor_135 gabor_079_alt gabor_160 gabor_111 gabor_135_alt "2_33_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_079_160_111_135_target_position_1_4_retrieval_position_1" gabor_079_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_113 gabor_046 gabor_134 gabor_155 gabor_113 gabor_046_alt gabor_134_alt gabor_155 "2_34_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_113_046_134_155_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_134_framed gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_028 gabor_158 gabor_136 gabor_005 gabor_028 gabor_158 gabor_136_alt gabor_005_alt "2_35_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_028_158_136_005_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_005_framed blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_091 gabor_073 gabor_011 gabor_126 gabor_091_alt gabor_073 gabor_011_alt gabor_126 "2_36_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_091_073_011_126_target_position_1_3_retrieval_position_1" gabor_044_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2292 fixation_cross gabor_009 gabor_054 gabor_036 gabor_092 gabor_009 gabor_054_alt gabor_036 gabor_092_alt "2_37_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_009_054_036_092_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_092_framed blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2192 2992 2342 fixation_cross gabor_095 gabor_061 gabor_168 gabor_015 gabor_095_alt gabor_061_alt gabor_168 gabor_015 "2_38_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2350_gabor_patch_orientation_095_061_168_015_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_015_framed blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_015_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 2192 fixation_cross gabor_080 gabor_020 gabor_141 gabor_158 gabor_080_alt gabor_020 gabor_141 gabor_158_alt "2_39_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_080_020_141_158_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_108_framed blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_057 gabor_082 gabor_130 gabor_172 gabor_057_alt gabor_082 gabor_130_alt gabor_172 "2_40_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_057_082_130_172_target_position_1_3_retrieval_position_1" gabor_057_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2042 2992 2392 fixation_cross gabor_118 gabor_028 gabor_008 gabor_160 gabor_118_alt gabor_028_alt gabor_008 gabor_160 "2_41_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_118_028_008_160_target_position_1_2_retrieval_position_1" gabor_118_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2042 fixation_cross gabor_020 gabor_093 gabor_164 gabor_059 gabor_020 gabor_093_alt gabor_164_alt gabor_059 "2_42_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_020_093_164_059_target_position_2_3_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1942 2992 2142 fixation_cross gabor_016 gabor_043 gabor_124 gabor_168 gabor_016_alt gabor_043 gabor_124 gabor_168_alt "2_43_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2150_gabor_patch_orientation_016_043_124_168_target_position_1_4_retrieval_position_2" gabor_circ gabor_088_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_088_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2042 2992 2492 fixation_cross gabor_052 gabor_168 gabor_090 gabor_142 gabor_052_alt gabor_168_alt gabor_090 gabor_142 "2_44_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_052_168_090_142_target_position_1_2_retrieval_position_2" gabor_circ gabor_168_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 2592 fixation_cross gabor_065 gabor_091 gabor_127 gabor_049 gabor_065 gabor_091_alt gabor_127_alt gabor_049 "2_45_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_065_091_127_049_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_175_framed gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 2492 fixation_cross gabor_100 gabor_162 gabor_116 gabor_031 gabor_100_alt gabor_162 gabor_116 gabor_031_alt "2_46_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_100_162_116_031_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_081_framed blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 1892 fixation_cross gabor_073 gabor_051 gabor_180 gabor_006 gabor_073 gabor_051 gabor_180_alt gabor_006_alt "2_47_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_073_051_180_006_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_180_framed gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1842 2992 2592 fixation_cross gabor_028 gabor_150 gabor_173 gabor_093 gabor_028_alt gabor_150 gabor_173_alt gabor_093 "2_48_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2600_gabor_patch_orientation_028_150_173_093_target_position_1_3_retrieval_position_2" gabor_circ gabor_011_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_011_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 2042 fixation_cross gabor_056 gabor_164 gabor_032 gabor_096 gabor_056_alt gabor_164 gabor_032_alt gabor_096 "2_49_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_056_164_032_096_target_position_1_3_retrieval_position_1" gabor_009_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1792 2992 1942 fixation_cross gabor_047 gabor_160 gabor_073 gabor_017 gabor_047 gabor_160 gabor_073_alt gabor_017_alt "2_50_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_1950_gabor_patch_orientation_047_160_073_017_target_position_3_4_retrieval_position_1" gabor_096_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_096_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_094 gabor_042 gabor_111 gabor_150 gabor_094 gabor_042_alt gabor_111_alt gabor_150 "2_51_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_094_042_111_150_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_111_framed gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2592 fixation_cross gabor_050 gabor_095 gabor_133 gabor_114 gabor_050 gabor_095_alt gabor_133 gabor_114_alt "2_52_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_050_095_133_114_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_159_framed blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2392 fixation_cross gabor_087 gabor_145 gabor_039 gabor_018 gabor_087_alt gabor_145 gabor_039_alt gabor_018 "2_53_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_087_145_039_018_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_039_framed gabor_circ blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1892 2992 2092 fixation_cross gabor_144 gabor_027 gabor_097 gabor_074 gabor_144_alt gabor_027 gabor_097_alt gabor_074 "2_54_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_2100_gabor_patch_orientation_144_027_097_074_target_position_1_3_retrieval_position_2" gabor_circ gabor_163_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_163_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2592 fixation_cross gabor_158 gabor_007 gabor_090 gabor_070 gabor_158 gabor_007_alt gabor_090_alt gabor_070 "2_55_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_158_007_090_070_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_044_framed gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_169 gabor_018 gabor_062 gabor_094 gabor_169_alt gabor_018 gabor_062 gabor_094_alt "2_56_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_169_018_062_094_target_position_1_4_retrieval_position_1" gabor_124_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_123 gabor_035 gabor_075 gabor_059 gabor_123 gabor_035_alt gabor_075 gabor_059_alt "2_57_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_123_035_075_059_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_010_framed blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_006 gabor_096 gabor_066 gabor_172 gabor_006 gabor_096_alt gabor_066_alt gabor_172 "2_58_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_006_096_066_172_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_114_framed gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_114_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_143 gabor_031 gabor_179 gabor_063 gabor_143 gabor_031 gabor_179_alt gabor_063_alt "2_59_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_143_031_179_063_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_111_framed blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_129 gabor_039 gabor_172 gabor_107 gabor_129 gabor_039_alt gabor_172 gabor_107_alt "2_60_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_129_039_172_107_target_position_2_4_retrieval_position_2" gabor_circ gabor_039_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 1942 fixation_cross gabor_075 gabor_027 gabor_135 gabor_103 gabor_075 gabor_027_alt gabor_135_alt gabor_103 "2_61_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_075_027_135_103_target_position_2_3_retrieval_position_2" gabor_circ gabor_163_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2042 2992 2392 fixation_cross gabor_082 gabor_171 gabor_013 gabor_141 gabor_082_alt gabor_171_alt gabor_013 gabor_141 "2_62_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2050_3000_2400_gabor_patch_orientation_082_171_013_141_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_013_framed gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_013_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_127 gabor_051 gabor_162 gabor_098 gabor_127_alt gabor_051 gabor_162_alt gabor_098 "2_63_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_127_051_162_098_target_position_1_3_retrieval_position_1" gabor_127_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1992 2992 2442 fixation_cross gabor_127 gabor_103 gabor_017 gabor_048 gabor_127_alt gabor_103_alt gabor_017 gabor_048 "2_64_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2450_gabor_patch_orientation_127_103_017_048_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_017_framed gabor_circ blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_017_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2242 fixation_cross gabor_058 gabor_114 gabor_042 gabor_098 gabor_058 gabor_114 gabor_042_alt gabor_098_alt "2_65_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_058_114_042_098_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_148_framed blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 2292 fixation_cross gabor_101 gabor_121 gabor_059 gabor_143 gabor_101 gabor_121_alt gabor_059_alt gabor_143 "2_66_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_101_121_059_143_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_059_framed gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2092 2992 1992 fixation_cross gabor_017 gabor_032 gabor_047 gabor_175 gabor_017_alt gabor_032 gabor_047_alt gabor_175 "2_67_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2000_gabor_patch_orientation_017_032_047_175_target_position_1_3_retrieval_position_1" gabor_017_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_180 gabor_057 gabor_131 gabor_165 gabor_180_alt gabor_057 gabor_131 gabor_165_alt "2_68_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_180_057_131_165_target_position_1_4_retrieval_position_1" gabor_041_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2192 2992 2042 fixation_cross gabor_049 gabor_087 gabor_177 gabor_129 gabor_049 gabor_087_alt gabor_177 gabor_129_alt "2_69_Encoding_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2050_gabor_patch_orientation_049_087_177_129_target_position_2_4_retrieval_position_1" gabor_049_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P8_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_049_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_004 gabor_113 gabor_149 gabor_091 gabor_004 gabor_113_alt gabor_149 gabor_091_alt "2_70_Encoding_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_004_113_149_091_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_042_framed blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P8_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
eba38dd80dc23dffa104d69783900fb49826b4c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3480/CH5/EX5.4/Ex5_4.sce | 541b7758b5ba638e6360280c98d98c5d1ee6e9f6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 656 | sce | Ex5_4.sce | //Example 5.4, page 113
clc
n1=1.50
n2=1.60
n_dash=1.33
n_doubledash=1
p1=((n1-n_doubledash)/.04)+((n_dash-n1)/-0.04)
p2=((n2-n_dash)/-.06)+((n_doubledash-n2)/.06)
p=p1+p2+(-.015*p1*p2)
printf("The power is %f D", p)
//Part b
f=1/p
f_doubledash=1/p
printf("\nThe focal length f is %f m",f)
printf("\n The focal length f'' is %f m",f_doubledash)
//Part c
A1f=-(1/p)*(1+(.015*14.45))
A2H=-(1/p)*((.015*-4.45))
A2f11=-(1/p)*(1-(.015*16.67))
printf("\nThe focal point A1F is %f m",A1f)
printf("\nThe focal point A2H is %f m",A2H)
printf("\nThe focal point A2F11 is %f m",A2f11)
//Part d
A2H11=(1/p)*0.015*16.67
printf("\nThe principal point is %f m",A2H11)
|
1a0ff8546ac349fd93cc10054098d26238aeb884 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH4/EX4.4/Ex4_4.sce | a29d9b8b83bf19ba10183728dba218a6ccf11d2a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 584 | sce | Ex4_4.sce | clc;
clear;
n0=5*10^15 //carrier concentration in cm^-3
ni=10^10 //in cm^-3
p0=2*10^4 //in cm^-3
deln=5*10^13 //excess carriers in semiconductor in cm^-3
delp=5*10^13 //in cm^-3
Const=0.026 //constant value for kT/e in V
//Calculation
delE1=Const*log(n0/ni)
delE2=Const*log((n0+deln)/ni)
delE3=Const*log((p0+delp)/ni)
mprintf("1)\nposition of the Fermi level at thermal equilibrium= %0.4f eV\n",delE1)
mprintf("2)\nquasi-Fermi level for electrons in non-equilibrium= %0.4f eV\n",delE2)
mprintf("3)\nquasi-Fermi level for holes in non-equilibrium= %0.4f eV",delE3)
|
35af755940e16da58f35a8e73eb154964f506391 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/macros/xdess/xbasr.sci | 66c1dd1fa25d7901fd61eff63fc205a7439d6309 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 272 | sci | xbasr.sci | //[]=xbasr(win_num)
//[]=xbasr(win_num)
// This function is used to redraw the content of the graphic
// window win_num. It works only with the driver "Rec"
//!
cw=xget("window");
xclear(win_num);xset("window",win_num);xtape('replay',win_num);
xset("window",cw);
//end
|
8b65fb4464338fc8aa15fbe7b7a8bfc37b9f4f0b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH12/EX12.11/Ex12_11.sce | 02b4486e1a91f61e286281b2aa98fdb5bdf829d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 155 | sce | Ex12_11.sce | clear
//Given
w=1000/60.0
r=0.3
B=0.5 //T
//Calculation
v=w*r
vav=v/2.0
e=B*r*vav
//Result
printf("\n e.m.f induced is %0.3f V",e)
|
b38a1c3d8e20ad3d19938d5962f54195a236f12b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH4/EX4.1/Ex4_1.sce | 23c6da17762a5da0cb94beadf97a21f74fd12ade | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 265 | sce | Ex4_1.sce | // Example 4_1
clc;clear;funcprot(0);
//Given values
// u=0.5+0.8x
// v=1.5-0.8y
//Calculation
//Since V is a vector, all its components must equal zero in order for V itself to be zero.
x=-0.5/0.8;
y=-1.5/-0.8;
disp(y,x,"Stagnation point x&y in m");
|
632bfdd46e5e3abe4e3e82ca4505946439861650 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.0/macros/robust/lmitool.sci | fc8257cc22a5cd69d997881554e06a0d9e7b03b4 | [
"MIT",
"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 | 19,114 | sci | lmitool.sci | function [solver]=lmitool(lmi_eval,vstruc,vdim)
// LMITOOL: a tool for solving LMI problems.
// input: a macro which defines the LMI's
// ouput: a macro solver which solves your problem
[LHS,RHS]=argn(0);
lmi_driver='nemirov'
if RHS==0 then
x_message('Welcome to LMITOOL, a help in solving LMI problems...')
Problems=['1: feasability problem';...
'2: (generalized) eigenvalue minimization problem']
pbtype=x_choose(Problems,'Click below to select the problem')
select pbtype
case 0
solver=[];return;
case 1
pbtype='f';
case 2
pbtype='e';
end
codes=['1: A. Nemirovski''s code';
'2: B. Lecinq''s code (not yet implemented)';
'3: L. El Ghaoui''s code (to be implemented)'];
// driv=x_choose(codes,'Select your LMI solver');
driv=0;
select driv
case 0
solver=[];lmi_eval=[];lmi_driver='nemirov';
case 1
lmi_driver= 'nemirov'
case 2
lmi_driver= 'lmi_driver'
case 3
lmi_driver= 'lmi_driver'
end
end
if RHS==0|RHS==1 then
choice=x_choose(['On-line definition?';'Read on file?'],...
'Definition of the function lmi_eval')
select choice
case 0
return;
case 1
lmi_eval=def_lmi(pbtype);
case 2
pathname=unix_g('pwd');
path=x_dialog('Edit Filename of the LMI',...
pathname+'/lmi_ex0.sci');
getf(path);lg=length(path);k=0;
// path=/directory/lmi_ex0.sci ==> lmi_func=lmi_ex
while %T
k=k+1;
if part(path,lg-k)=='/' then break;end
end
pathend=part(path,lg-k+1:lg-4);
lmi_func=pathend;lmi_eval=evstr(lmi_func);
end
end
// Now lmi_eval is defined
ww=macrovar(lmi_eval);
vlist=strcat(ww(1),',');
inputs=strcat(ww(3),',');
[out,inp,txt]=string(lmi_eval);
vlist=strcat(inp,',');
outputs=strcat(out,',');
// Feasability problem: LHS of lmi_eval=1
// Eigenvalue problem: LHS of lmi_eval=2
nw=length(outputs);
index_commas=[];
for k=1:nw
if part(outputs,k)==',' then index_commas=[index_commas,k];end
end
nbout=length(index_commas)+1;
select nbout
case 1
pbtype='f'
case 2
pbtype='e'
else
error('lmi_eval must have 1 or 2 output parameters!')
end
// Structure and dimension of variables: if not defined
// analyze lmi_eval
if RHS=0|RHS=1|RHS==2
[vstruc,vdim]=lmi_ana(lmi_eval);
end
// Calculation of the solver function
select pbtype
case 'f'
solver=def_feas(lmi_driver,lmi_eval,vstruc,vdim)
case 'e'
solver=def_eig(lmi_driver,lmi_eval,vstruc,vdim)
else
error('Undefined problem?')
end
function [lmi_eval]=def_lmi(pbtype)
// Examples of valid LMI's
select pbtype
case 'f'
comments=[ 'Defining lmi_eval: lmi evaluation function';
'lmi_eval is used for solving a feasibility problem';
'Find X1,X2,... such that:'
' Flmi1(X1,X2,..) > 0 ';
' Flmi2(X1,X2,..) > 0 ';
' .... ';
'The function lmi_eval(X1,X2,...) should evaluate';
'Flmi1, Flmi2 as a function of X1,X2,...';
'If several LMI''s are to be solved put Flmi1,Flmi2,... in a list';
'Other parameters do not need to be defined';
'Here is an example:'
'Find Q and Y such that:';
'Flmi1=-(A*Q+Q*A''+B*Y+Y''*B'') > 0';
'and';
'Flmi2=[mu2*I Y;Y'' Q] > 0';
'Q,Y are the (unknown) LMI variables (input parameters of lmi_eval)';
'outputs:';
'Flmi=list(Flmi1,Flmi2)';
'Type in your LMI(s) by editing the example text below';
'Note that lmi_eval must have one output paramater';]
txt=['function [Flmi]= lmi_eval(Q,Y)';
'[n,n]=size(A);';
'I=eye(n,n);';
'Flmi1=-(A*Q+Q*A''+B*Y+Y''*B'');';
'Flmi2=[mu2*I Y;Y'' Q];';
'Flmi=list(Flmi1,Flmi2);'];
case 'e'
comments=['Defining lmi_eval used for solving an eigenvalue problem:';
' Find X1,X2,... which ';
' minimize t such that ';
' Almi1(X1,X2,..) > 0 ';
' Almi2(X1,X2,..) > 0 ';
' .... ';
' t* Almi1(X1,X2,..) > Blmi1(X1,X2,..) ';
' t* Almi2(X1,X2,..) > Blmi2(X1,X2,..) ';
' .... ';
'Function lmi_eval must be as follows:';
'[Almi,Blmi]=lmi_eval(X1,X2,...)';
'The function lmi_eval(X1,X2,...) should evaluate';
'Almi1, Almi2 ,..., Blmi1, Blmi2,... as a function of X1,X2,...';
'If several LMI''s are to be solved put Almi1,Almi2,... in a list';
'Other parameters do not need to be defined';
'Here is an example:'
'Minimize t such that P>0 exists such that :';
'[-(A''*P+P*A+C''*C) P*B; '
' B''*P t*eye] > 0';
'P is the (unknown) LMI variable (input parameter of lmi_eval)';
'Note that lmi_eval must have two output paramaters'];
]
txt=['function [Almi,Blmi]=lmi_eval(P)';
'eps=0.00001';
'Almi=[zeros(A)+eps*eye zeros(A*B); zeros(B''*A) eye(B''*B)]';
'Blmi=[A''*P+P*A+C''*C -P*B;-B''*P zeros(B''*B)]'];
end
txt=x_dialog(comments,txt);
header=txt(1,:);[lng,un]=size(txt);
deff(part(header,10:length(header)),txt(2:lng,:));
function [vstruc,vdim]=lmi_ana(lmi_eval)
ww=macrovar(lmi_eval);
vlist=strcat(ww(1),',');
inputs=strcat(ww(3),',');
[out,inp,txt]=string(lmi_eval);
vlist=strcat(inp,',');
x_message('Analyzing the input parameters of lmi_eval ');
nv=length(vlist)
index_commas=[]
for k=1:nv
if part(vlist,k)==',' then index_commas=[index_commas,k],end
end
vnum = length(index_commas)+1;
index_commas = [0 index_commas length(vlist)+1];
vstruc=[];vdim=[];
Selection='Select structure of variable ';
Choices=['full, symmetric matrix';
'full, symmetric matrix with zero trace';
'full, rectangular matrix';
'diagonal matrix';
'scalar matrix'];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstruci=x_choose(Choices,Selection+vname);
vstruc=[vstruc,vstruci]
// get dimension of each variable
[ok,vdimi] = getvalue(['Enter dimension of variable '+vname;
'(any function of '+inputs+')'],...
['[#row #col]'],list('str',1),'size('+vname+')')
vdim=[vdim,vdimi];
end
function [solver]=def_feas(lmi_driver,lmi_eval,vstruc,vdim)
// get number of variables
ww=macrovar(lmi_eval);
vlist=strcat(ww(1),',');
inputs=strcat(ww(3),',');
if type(lmi_eval)==13 then
error('lmi_eval function must not be compiled!');
return
end
[out,inp,txt]=string(lmi_eval);
vlist=strcat(inp,',');
nv=length(vlist)
index_commas=[]
for k=1:nv
if part(vlist,k)==',' then index_commas=[index_commas,k],end
end
vnum = length(index_commas)+1;
com='/'+'/'
index_commas = [0 index_commas length(vlist)+1];
txt1=[];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstruci=vstruc(i);
txt1 = [txt1;
'struc'+vname+'='+string(vstruci)]
// get dimension of each variable
vdimi = vdim(i);
txt1 = [txt1;
'dim'+vname+'=['+vdimi+']'];
end
txt2=['nx=0';];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstrucname = 'struc'+vname;
vdimname = 'dim'+vname;
txt2 = [txt2;'['+vname+'0'+',nvar'+vname+']'+...
'=nbasis('+vdimname+','+vstrucname+',0)';
vname+'='+vname+'0';
'nx=nx+'+'nvar'+vname];
end
txt2=[txt2;
'Almi0=lmi_eval('+vlist+');';
'mstr=mstruc(Almi0);';
'bc=mcompress(Almi0)']
txt3=['Ac=[]';];
for i =1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
txt3 = [txt3;
'for i=1:nvar'+vname;
' '+vname+'=nbasis(dim'+vname+',struc'+vname+','+'i'+')';
' '+'Almi=lmi_eval('+vlist+');';
' '+'Ac=[Ac,mcompress(msub(Almi,Almi0))]';
'end;'
' '+vname+'='+vname+'0';];
end
txt4=['Qc=0*Ac;pc=0*bc';'tmin=1;tmax=1';
'params=[-1,20,1.d-6,1.d-6,1.d-6,5,5];'
'[xopt,topt,info]='+lmi_driver+...
'(Ac,bc,Qc,pc,mstr,tmin,list(tmax,zeros(nx,1)),params)';
'if info(1)<0 then warning(''LMI solver fails'');xopt=[];return;end';
'Ac=[];Qc=[];'];
// call LMI solver, depending on problem type
txt5 = ['k=0;';]
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
txt5 = [txt5;
vname+'=[];';
'for i=1:'+'nvar'+vname;
'k=k+1;';
vname+'='+vname+'+xopt(k)*nbasis(dim'+vname+',struc'+vname+',i)';
'end']
end
headlmi='['+strcat(out,',')+']='+'lmi_eval('+strcat(inp,',')+')'
[mt,nt]=size(txt)
quote='''';quote=quote(ones(mt,1))
semi=';';semi=semi(ones(mt,1));
txtlmi_eval=['deff('+''''+headlmi+''''+',[';
quote+dblquote(txt)+quote+semi;
'])']
outputs=vlist;
txtsolver=[txtlmi_eval;
'comp(lmi_eval)';
txt1;txt2;txt3;txt4;txt5];
deff('['+outputs +']='+'solver'+'('+inputs+')',...
[txtlmi_eval;'comp(lmi_eval)';txtsolver]);
comp(solver);
comm1=' ';comm2=' ';comm3=' ';comm4=' ';comm5=' ';
n=x_choose(['Yes';'No'],'Do you want to save the solver function ?')
if n==1 then
pbname = x_dialog('Enter a problem/macro name: ','solvername');
pathname=unix_g('pwd');
fname = pathname+'/'+pbname+'.sci';
fname=x_dialog('Saving solver macro '+pbname+' in file ',fname);
unix_s('\rm -f '+fname);
header = 'function ['+outputs+']='+pbname+'('+inputs+')';
headerlmi_eval='function '+headlmi;
write(fname,[header;...
[comm1;txt1;comm2;txt2;comm3;txt3;comm4;txt4;...
comm5;txt5;
headerlmi_eval;txt]]);
// tell user what to do:
txtdo = [' To solve your problem, you need to ';
'1- load (and compile) the solver function:';
' getf('''+fname'+''',''c'')';
'2- Define '+inputs+' and run the solver function:';
' '+'['+outputs+']='+pbname+'('+inputs+')';
' ';
' Good luck! ';
'To check the results, use lmi_eval('+outputs+')';];
write(%io(2),txtdo)
end
function txt=dblquote(txt)
//Change simple quote into double quote!
quote=''''
dquote='""'
[m,n]=size(txt)
for l=1:m,
for k=1:n
tlk=txt(l,k)
sz=length(tlk)
tlk1=emptystr(1)
for i=1:sz
if part(tlk,i)==quote then
tlk1=tlk1+quote+quote
elseif part(tlk,i)==dquote then
tlk1=tlk1+dquote+dquote
else
tlk1=tlk1+part(tlk,i)
end
end
txt(l,k)=tlk1
end
end
function [MXi,m] = nbasis(msize,struc,k)
// function [Xk,m] = basis(msize,struc,k)
// Forms a basis of the space of block-diagonal matrices.
// inputs:
// msize a 2xl integer vector.
// struc an integer vector.
// choice
// outputs:
// Xk where {Xk} forms a basis of a subspace of
// nxq matrices, where n = sum(msize(1)), q = sum(msize(2)).
// for each i, i = 1,...,l,
// if struc(i) = 1, the i-th block of X is that of full, symmetric
// matrices of dimension msize(i,1)xmsize(i,1).
// if struc = 2, the subspace is that of full, symmetric
// matrices of dimension msize(1)xmsize(1), with
// Tr(X) = 0.
// if struc = 3, the subspace is that of full, rectangular
// matrices of dimension msize(1)xmsize(2).
// m dimension of the subspace.
// see also: vec2mat, matrix.
// NOTE: this file has yet to be completed to more general structures.
// find size needed
n = msize(1);
q = msize(2);
[r,l] = size(msize);
l = length(struc);
// case of full, symmetric matrices
if struc == 1,
if k==0 then
m = n*(n+1)/2;
MXi=zeros(n,q);
return
end
m = n*(n+1)/2;
z = zeros(m,1);
i=k;
xi = z; xi(i) = 1;
MXi = vec2mat(xi,1,n);
end
// case of full, symmetric matrices with zero trace
if struc == 2,
if k==0 then
m=n*(n+1)/2-1;
MXi=zeros(n,q);
return
end
m = n*(n+1)/2;
z = zeros(m,1);
if k=1 then
MXi = zeros(n,n); MXi(1,1) = 1;
return
end
i=k;
MX1 = zeros(n,n); MX1(1,1) = 1;
xi = z; xi(i) = 1;
MXi = vec2mat(xi,1,n);
MXi = MXi-sum(diag(MXi))*MX1;
m = m-1;
end
// case of full, rectangular matrices
if struc == 3,
if k==0 then
m=n*q;
MXi=zeros(n,q);
return
end
m = n*q;
z = zeros(m,1);
i=k;
xi = z; xi(i) = 1;
MXi = matrix(xi,n,q);
end
//diagonal matrices
if struc == 4,
if k==0 then
m=n;
MXi=zeros(n,q);
return
end
m=n;
MXi = zeros(n,q);
MXi(k,k) = 1;
end
//scalar matrices
if struc == 5,;
if k==0 then
m=1;
MXi=zeros(n,q);
return
end
m=1;
MXi = eye(n,q);
end
function m=mstruc(list_lmis)
if typeof(list_lmis)='usual' then
[m,m]=size(list_lmis);
return;
end
if typeof(list_lmis)='list' then
m=[];
for lmi=list_lmis
[mk,mk]=size(lmi);
m=[m,mk];
end
end
function w=mcompress(list_lmis)
if typeof(list_lmis)='usual' then
w=compress(list_lmis);
return;
end
if typeof(list_lmis)='list' then
w=[];
for lmi=list_lmis
w=[w,compress(lmi)];
end
end
function lmisd=msub(lmis1,lmis2)
if typeof(lmis1)='usual' then
lmisd=lmis1-lmis2;
return;
end
if typeof(lmis1)='list' then
k=length(lmis1);
lmisd=list();
for i=1:k
lmisd(i)=lmis1(i)-lmis2(i);
end
end
function AA=compress(A)
//For A square and symmetric AA is vector:
// [A(1,1),A(2,1),A(2,2),...,A(q,1),...A(q,q),...]
//!
if norm(A-A','fro')>1.d-5 then
error('non symmetric matrix')
end
[m,n]=size(A)
AA=[]
for l=1:m,AA=[AA A(l,1:l)],end
function A=uncompress(AA,mod)
//Rebuilds A square symmetric or antsymmetric from AA
// mode : 's' : symmetric
// 'a' : skew-symmetric
// [A(1,1),A(2,1),A(2,2),...,A(q,1),...A(q,q),...]
//!
nn=prod(size(AA))
m=maxi(real(roots(poly([-2*nn 1 1],'x','c'))))
s=1;if part(mod,1)=='a' then s=-1,end
A=[]
ptr=1
for l=1:m
A(l,1:l)=AA(ptr:ptr+l-1)
ptr=ptr+l
end
A=A+s*tril(A,-1)'
function A = vec2mat(x,choice,r)
// function A = vec2mat(x,choice,r)
// VEC2MAT: Matrix representation of a vector.
// inputs:
// x vector.
// choice integer (default: 0).
// r integer vector such that
// n = sum(r*r) = length(x) if choice = 0,
// n = sum(r*(r-1)/2) = length(x) if choice < 0,
// n = sum(r*(r+1)/2) = length(x) otherwise.
// output:
// A nxn matrix containing x column-wise in
// block-diagonal structure (each block being of
// size ri). If choice > 0, A is symmetric, if
// choice < 0, it is skew-symmetric.
// See also:
// mat2vec
[nargout,nargin]=argn(0);
l = length(x);
if nargin <= 1, choice = 0; end
if nargin <= 2,
if choice == 0,
r = fix( sqrt(l) );
elseif choice > 0,
r = fix( .5*(-1+sqrt(1+8*l)) );
else
r = fix( .5*(1+sqrt(1+8*l)) );
end
end
A = [];
p = length(r);
x = x(:);
// symmetric case
if choice > 0,
rx = r.*(r+ones(r))/2;
for i = 1:p,
Ai = [];
index = sum(rx(1:i-1));
index = 1+index:index+rx(i);
xi = x(index);
for j = 1:r(i),
Ai(1:j,j) = xi(1+j*(j-1)/2:j*(j+1)/2);
end
indi = sum(r(1:i-1));
indi = 1+indi:indi+r(i);
A(indi,indi) = Ai;
end
A = triu(A)+triu(A,1)';
// skew-symmetric case
elseif choice < 0,
rx = r.*(r-ones(r))/2;
for i = 1:p,
Ai = [];
index = sum(rx(1:i-1));
index = 1+index:index+rx(i);
xi = x(index);
for j = 2:r(i),
Ai(1:(j-1),j) = xi(1+(j-1)*(j-2)/2:j*(j-1)/2);
end
Ai(r(i),r(i)) = 0;
indi = sum(r(1:i-1));
indi = 1+indi:indi+r(i);
A(indi,indi) = Ai;
end
A = triu(A)-triu(A,1)';
// general case
else
rx = r.*r;
for i = 1:p,
index = sum(rx(1:i-1));
index = 1+index:index+rx(i);
xi = x(index);
Ai = zeros(r(i));
Ai(:) = xi;
A = [A Ai];
end
end
function [solver]=def_eig(lmi_driver,lmi_eval,vstruc,vdim)
// get number of variables
ww=macrovar(lmi_eval);
vlist=strcat(ww(1),',');
inputs=strcat(ww(3),',');
[out,inp,txt]=string(lmi_eval);
vlist=strcat(inp,',');
nv=length(vlist)
index_commas=[]
for k=1:nv
if part(vlist,k)==',' then index_commas=[index_commas,k],end
end
vnum = length(index_commas)+1;
com='/'+'/'
index_commas = [0 index_commas length(vlist)+1];
txt1=[];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstruci=vstruc(i);
txt1 = [txt1;
'struc'+vname+'='+string(vstruci)]
// get dimension of each variable
vdimi = vdim(i);
txt1 = [txt1;
'dim'+vname+'=['+vdimi+']'];
end
txt2=['nx=0';];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstrucname = 'struc'+vname;
vdimname = 'dim'+vname;
txt2 = [txt2;'['+vname+'0'+',nvar'+vname+']'+...
'=nbasis('+vdimname+','+vstrucname+',0)';
vname+'='+vname+'0';
'nx=nx+'+'nvar'+vname];
end
txt2=[txt2;
'[Almi0,Blmi0]=lmi_eval('+vlist+');';
'mstr=mstruc(Almi0);';
'bc=mcompress(Almi0);pc=mcompress(Blmi0);']
txt3=['Ac=[];Qc=[]';];
for i =1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
txt3 = [txt3;
'for i=1:nvar'+vname;
' '+vname+'=nbasis(dim'+vname+',struc'+vname+','+'i'+')';
' '+'[Almi,Blmi]=lmi_eval('+vlist+');';
' '+'Ac=[Ac,mcompress(msub(Almi,Almi0))];';
' '+'Qc=[Qc,mcompress(msub(Blmi,Blmi0))];';
'end;'
' '+vname+'='+vname+'0';];
end
txt4=['tmin=-1000;tmax=10000';
'params=[-1,20,1.d-6,1.d-6,1.d-6,5,5];'
'[xopt,topt,info]='+lmi_driver+...
'(Ac,bc,Qc,pc,mstr,tmin,list(tmax,zeros(nx,1)),params)';
'if info(1) < 0 then warning(''LMI solver fails!''), xopt=[];return;end';
'Ac=[];Qc=[];'];
// call LMI solver, depending on problem type
txt5 = ['k=0;';]
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
txt5 = [txt5;
vname+'=[];';
'for i=1:'+'nvar'+vname;
'k=k+1;';
vname+'='+vname+'+xopt(k)*nbasis(dim'+vname+',struc'+vname+',i)';
'end']
end
headlmi='['+strcat(out,',')+']='+'lmi_eval('+strcat(inp,',')+')'
[mt,nt]=size(txt)
quote='''';quote=quote(ones(mt,1))
semi=';';semi=semi(ones(mt,1));
txtlmi_eval=['deff('+''''+headlmi+''''+',[';
quote+dblquote(txt)+quote+semi;
'])']
outputs=vlist+',topt';
txtsolver=[txtlmi_eval;
'comp(lmi_eval)';
txt1;txt2;txt3;txt4;txt5];
deff('['+outputs +']='+'solver'+'('+inputs+')',...
[txtlmi_eval;'comp(lmi_eval)';txtsolver]);
comp(solver);
comm1=' ';comm2=' ';comm3=' ';comm4=' ';comm5=' ';
n=x_choose(['Yes';'No'],'Do you want to save the solver macro ?')
if n==1 then
pbname = x_dialog('Enter a problem/macro name: ','solvername');
pathname=unix_g('pwd');
fname = pathname+'/'+pbname+'.sci';
fname=x_dialog('Saving solver macro '+pbname+' in file ',fname);
unix_s('\rm -f '+fname);
header = 'function ['+outputs+']='+pbname+'('+inputs+')';
headerlmi_eval='function '+headlmi;
write(fname,[header;...
[comm1;txt1;comm2;txt2;comm3;txt3;comm4;txt4;...
comm5;txt5;
headerlmi_eval;txt]]);
// tell user what to do:
txtdo = [' To solve your problem, you need to ';
'1- load (and compile) the solver function:';
' getf('''+fname'+''',''c'')';
'2- Define '+inputs+' and run the solver function:';
' '+'['+outputs+']='+pbname+'('+inputs+')';
' ';
' Good luck! ';
'To check the results, use lmi_eval('+outputs+')';];
write(%io(2),txtdo)
end
|
909e8fc8b0564f1f2a6b49bcd39cf47bb76199b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /73/CH10/EX10.9/Example10_9.sci | 358cb7d07eca4cdfb6295d317531809fbde7f3bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,052 | sci | Example10_9.sci | //Chapter 10_Special Purpose Amplifiers
//Caption : Common Emitter Amplifier Parameters
//Example10.9: A single common emitter amplifier has following device and circuit parameters: Rb=60 Ohm,Rs=40 Ohm,Cu=1.5 pF,Cl=1 pF,ft=1.6 GHz at Ic=2.5 mA quiescent current.Determine each of the following for two values of Rl: 30 Ohm and 100 Ohm. a)f1 b)F2 (c)BW (d)Avmid (e)avmid*Bw.
clear;
clc;
Ft=1.6*10^9;//reduced unity gain frequency in Hz
Ic=2.5*10^-3;//collector current in A
Vt=25*10^-3;//threshold voltage at room temperature
gm=Ic/Vt;//transconductance
Cu=1.5*10^-12;
Cl=1*10^-12;
Rs=40;
Rb=60;
C2=gm/(2*%pi*Ft)-Cu
for i=1:2,
if i==1 then
Rl=30;//load resistance
F1=1/(2*%pi*(Rs+Rb)*(C2+Cu*(1+gm*Rl)));// first break frequency
F2=1/(2*%pi*Rl*(Cu+Cl));//second break frequency
BW=F1;//since single common emitter amplifier so n=1 thus BW=F1*sqrt(2^(1/n)-1),i.e.,BW=F1
Avmid=-gm*Rl;//mid frequency gain
GBW=Avmid*BW;// gain-bandwidth product
disp('********For Rl=30 Ohm********')
disp('MHz',F1/10^6,'first break frequency is:')
disp('MHz',F2/10^6,'second break frequency is:')
disp('MHz',BW/10^6,'Bandwidth is:')
disp(abs(Avmid),'mid frequency gain is:')
disp('MHz',abs(GBW)/10^6,'gain-bandwidth product is:')
else
Rl=100;//load resistance in ohm
F1=1/(2*%pi*(Rs+Rb)*(C2+Cu*(1+gm*Rl)));// first break frequency
F2=1/(2*%pi*Rl*(Cu+Cl));//second break frequency
BW=F1;//since single common emitter amplifier so n=1 thus BW=F1*sqrt(2^(1/n)-1),i.e.,BW=F1
Avmid=-gm*Rl;//mid frequency gain
GBW=Avmid*BW;// gain-bandwidth product
disp('********For Rl=100 Ohm********')
disp('MHz',F1/10^6,'first break frequency is:')
disp('MHz',F2/10^6,'second break frequency is:')
disp('MHz',BW/10^6,'Bandwidth is:')
disp(abs(Avmid),'mid frequency gain is:')
disp('MHz',abs(GBW)/10^6,'gain-bandwidth product is:')
end
end |
da93d145b5775903f41d4ec7c3b7e8eec91d3ca3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2975/CH24/EX24.18w/Ex24_18w.sce | d969bb71365ea1422e9d8d23466a9e5e8dfa4714 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 928 | sce | Ex24_18w.sce | //developed in windows 8 operating system 64bit
//platform Scilab 5.4.1
//example 24_18w
clc;clear;
//Given Data
temperature=300; //Temperature of the water vapour (Unit: Kelvin)
volume=1; //Volume of the water vapour(Unit : m^3)
molecular_weight_water=18; //Molecular weight of the water (Unit: g/mol)
r=8.3; //Gas constant (Unit: J/mol-K)
relative_humidity=50/100; //Relative humidity of the air (Unit: percentage)
pressure=3.6*10^3; //Pressure of the water vapour (Unit: Pascal)
//Formula: PV=nRT
//Calculation
mass_of_vapour=molecular_weight_water*pressure*volume/(r*temperature); //Calculation of mass of vapour (Unit: gram)
amount_vapour=relative_humidity*mass_of_vapour; //Calculation of vapour after considering relative humidity (Unit : gram)
disp(amount_vapour,"As the relative humidity is 50% , the amount of vapour present in 1 m^3 is (Unit : gram)");
|
b9901fc59de0d821b09483a634e1d004c9da6df1 | 6813325b126713766d9778d7665c10b5ba67227b | /Chapter5/Ch_5_Eg_5.13.sce | 065ff315fba3292c04b6f866df28bcb0f761daaa | [] | no_license | arvindrachna/Introduction_to_Scilab | 955b2063b3faa33a855d18ac41ed7e0e3ab6bd1f | 9ca5d6be99e0536ba1c08a7a1bf4ba64620ec140 | refs/heads/master | 2020-03-15T19:26:52.964755 | 2018-05-31T04:49:57 | 2018-05-31T04:49:57 | 132,308,878 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 322 | sce | Ch_5_Eg_5.13.sce | //To plot various types of horizontal bar charts
x=3:5;
y=1:3;
x1= [1,4,5];
y1=5*rand (3,3);
y2= [1, -2,3];
subplot (2,3,1), barh(y);
subplot (2,3,2), barh (x, y);
subplot (2,3,3), barh (x, y1);
subplot (2,3,4), barh (x, y1,"stacked");
subplot (2,3,5), barh (x, y2);
subplot (2,3,6), barh (x, y1,.2,"green");
|
244a844b190bd9a0f5d792d609c808dd52388bf8 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfas_oo_bfa_mt/~BivLCM-SR-bfas_oo_bfa_mt-PLin-VLin.tst | f32068a88726ae57f7c734b178ca90e3a8e8d9a2 | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,974 | tst | ~BivLCM-SR-bfas_oo_bfa_mt-PLin-VLin.tst |
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.273611D+00
2 -0.203484D-02 0.228308D-02
3 -0.756919D-01 0.230087D-02 0.397349D+00
4 0.218523D-02 -0.401684D-03 -0.565052D-02 0.323694D-02
5 -0.422194D-03 0.227943D-03 0.907153D-03 -0.101039D-03 0.335010D-02
6 -0.282086D-03 -0.343128D-04 0.116625D-02 -0.347541D-04 -0.237165D-03
7 -0.221814D-02 0.155743D-03 0.250658D-02 -0.104394D-03 -0.382473D-03
8 -0.192160D-02 0.911254D-06 -0.339523D-03 0.108312D-03 0.174260D-03
9 -0.365528D+00 0.101049D-01 0.387044D+00 0.346886D-03 0.316448D-01
10 -0.229974D+00 0.201122D-01 0.317784D+00 -0.195402D-01 0.164822D+00
11 -0.665983D-01 -0.153000D-02 -0.881535D-01 -0.936666D-02 -0.616159D-01
12 0.149903D+00 -0.752125D-02 0.383343D+00 0.176409D-01 0.155888D-01
13 -0.123654D+00 -0.113425D-01 0.208331D+00 -0.608245D-02 -0.258945D-01
14 -0.266455D+00 0.446571D-03 0.190498D+00 0.240784D-02 0.295795D-01
15 -0.960650D+00 -0.239793D-01 -0.583306D+00 -0.198648D-01 -0.294966D-01
16 0.393773D-01 -0.136155D-01 -0.223738D-01 -0.231232D-03 0.281181D-03
17 -0.979919D-02 0.278614D-03 0.315147D-02 0.140230D-03 -0.897595D-03
18 -0.389068D+00 -0.147014D-01 0.491047D-02 -0.517810D-01 -0.853210D-02
19 -0.397704D-01 0.118936D-01 0.104310D+00 -0.355731D-02 -0.172160D-02
20 -0.317949D+00 -0.136941D-01 0.139308D+01 0.766651D-02 0.621413D-01
21 -0.598053D-02 -0.941736D-02 -0.156452D+00 0.706895D-02 0.632755D-03
22 0.382932D-02 -0.450515D-04 0.269346D-02 0.671791D-04 0.411923D-03
23 -0.400626D-01 0.414817D-02 -0.799841D-02 0.100546D-01 0.127942D-02
24 0.785486D-02 -0.103773D-03 0.301716D-02 -0.177055D-03 -0.431676D-03
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.835224D-03
7 0.889727D-03 0.344239D-02
8 -0.281161D-03 -0.429935D-03 0.355900D-02
9 -0.141053D-01 -0.315062D-02 0.148576D-01 0.334823D+02
10 -0.227456D-01 -0.282637D-01 0.268172D-01 0.138286D+01 0.193184D+02
11 0.100056D-01 0.794503D-02 0.263308D-01 -0.396485D+01 -0.179964D+01
12 -0.317180D-01 -0.460622D-01 0.655312D-01 0.681343D+01 0.331105D-01
13 0.701419D-01 0.133820D+00 -0.485444D-01 0.702097D-01 -0.368133D+01
14 -0.168123D-01 -0.244760D-02 0.366038D+00 0.126210D+01 0.606996D+01
15 -0.350851D-02 0.956254D-01 -0.305327D-01 0.915527D+00 -0.774633D+01
16 0.464786D-03 0.119698D-03 -0.111359D-02 0.378237D+00 -0.875264D-01
17 0.261703D-03 -0.933135D-04 0.404299D-03 -0.900315D-01 -0.246402D-01
18 -0.253957D-01 -0.829193D-01 0.576052D-01 -0.453106D+01 0.171231D+01
19 -0.371745D-02 0.217166D-01 0.153183D-01 -0.696465D+00 -0.140145D+00
20 0.442062D-01 0.173963D+00 -0.306028D+00 0.213512D+01 0.165651D+01
21 0.452606D-02 -0.169281D-01 -0.105136D-01 0.561851D+00 0.264822D+00
22 -0.244734D-03 -0.522445D-03 -0.854706D-04 0.208228D-01 0.112466D-01
23 -0.857137D-03 -0.155013D-05 -0.899264D-03 0.228859D+00 -0.121444D-02
24 0.152671D-03 -0.160856D-03 -0.112667D-03 -0.123961D-01 -0.268932D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.282143D+02
12 -0.785909D+01 0.107183D+03
13 -0.214102D+01 -0.239596D+01 0.151029D+02
14 0.191878D+01 0.523220D+01 -0.393884D+01 0.701394D+02
15 -0.185368D+00 -0.133476D+01 0.301830D+01 -0.171363D+01 0.174484D+03
16 -0.178741D+00 -0.855221D-01 0.131054D+00 0.100891D+00 0.209728D+01
17 0.383925D-01 -0.258796D-01 0.347460D-01 0.448853D-01 -0.787927D+00
18 0.436760D+00 -0.233103D+01 -0.537570D+01 0.831079D+01 -0.614377D+01
19 0.441226D+00 -0.849842D+00 -0.993655D-01 0.272218D+01 -0.149370D+01
20 -0.452066D+01 -0.184505D+02 0.135821D+02 -0.494615D+02 0.245020D+02
21 -0.705340D-01 -0.114097D-01 0.112070D+00 -0.193397D+01 0.156594D+01
22 -0.383538D-01 0.107688D+00 -0.355780D-01 -0.256891D-01 0.218323D-01
23 -0.185049D+00 0.753828D+00 0.140857D-01 -0.300095D+00 0.422631D+00
24 0.204233D-01 -0.811619D-01 -0.187461D-01 -0.103555D-01 -0.125181D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.382928D+00
17 -0.317588D-01 0.958076D-02
18 0.492368D-02 0.489857D-01 0.178685D+03
19 -0.210509D+00 0.248831D-01 0.179580D+01 0.446685D+01
20 0.874275D+00 -0.137021D+00 -0.606366D+02 0.180774D+01 0.441337D+03
21 0.559398D-01 -0.795826D-02 0.300391D+01 -0.387411D+01 -0.347759D+01
22 0.762756D-02 -0.162401D-02 -0.840811D+00 -0.162841D-01 0.217376D+00
23 0.650932D-02 -0.338490D-02 -0.136103D+01 -0.329809D-01 0.454561D+01
24 -0.583846D-02 0.433371D-03 0.278817D+00 0.480474D-02 -0.178505D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.442506D+01
22 -0.404934D-01 0.858901D-02
23 -0.140661D+00 0.137126D-01 0.711752D+00
24 0.124897D-01 -0.212131D-02 -0.627484D-01 0.182044D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.081 1.000
3 -0.230 0.076 1.000
4 0.073 -0.148 -0.158 1.000
5 -0.014 0.082 0.025 -0.031 1.000
6 -0.019 -0.025 0.064 -0.021 -0.142
7 -0.072 0.056 0.068 -0.031 -0.113
8 -0.062 0.000 -0.009 0.032 0.050
9 -0.121 0.037 0.106 0.001 0.094
10 -0.100 0.096 0.115 -0.078 0.648
11 -0.024 -0.006 -0.026 -0.031 -0.200
12 0.028 -0.015 0.059 0.030 0.026
13 -0.061 -0.061 0.085 -0.028 -0.115
14 -0.061 0.001 0.036 0.005 0.061
15 -0.139 -0.038 -0.070 -0.026 -0.039
16 0.122 -0.460 -0.057 -0.007 0.008
17 -0.191 0.060 0.051 0.025 -0.158
18 -0.056 -0.023 0.001 -0.068 -0.011
19 -0.036 0.118 0.078 -0.030 -0.014
20 -0.029 -0.014 0.105 0.006 0.051
21 -0.005 -0.094 -0.118 0.059 0.005
22 0.079 -0.010 0.046 0.013 0.077
23 -0.091 0.103 -0.015 0.209 0.026
24 0.111 -0.016 0.035 -0.023 -0.055
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.525 1.000
8 -0.163 -0.123 1.000
9 -0.084 -0.009 0.043 1.000
10 -0.179 -0.110 0.102 0.054 1.000
11 0.065 0.025 0.083 -0.129 -0.077
12 -0.106 -0.076 0.106 0.114 0.001
13 0.625 0.587 -0.209 0.003 -0.216
14 -0.069 -0.005 0.733 0.026 0.165
15 -0.009 0.123 -0.039 0.012 -0.133
16 0.026 0.003 -0.030 0.106 -0.032
17 0.093 -0.016 0.069 -0.159 -0.057
18 -0.066 -0.106 0.072 -0.059 0.029
19 -0.061 0.175 0.121 -0.057 -0.015
20 0.073 0.141 -0.244 0.018 0.018
21 0.074 -0.137 -0.084 0.046 0.029
22 -0.091 -0.096 -0.015 0.039 0.028
23 -0.035 0.000 -0.018 0.047 0.000
24 0.039 -0.020 -0.014 -0.016 -0.045
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 -0.143 1.000
13 -0.104 -0.060 1.000
14 0.043 0.060 -0.121 1.000
15 -0.003 -0.010 0.059 -0.015 1.000
16 -0.054 -0.013 0.054 0.019 0.257
17 0.074 -0.026 0.091 0.055 -0.609
18 0.006 -0.017 -0.103 0.074 -0.035
19 0.039 -0.039 -0.012 0.154 -0.054
20 -0.041 -0.085 0.166 -0.281 0.088
21 -0.006 -0.001 0.014 -0.110 0.056
22 -0.078 0.112 -0.099 -0.033 0.018
23 -0.041 0.086 0.004 -0.042 0.038
24 0.028 -0.058 -0.036 -0.009 -0.070
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.524 1.000
18 0.001 0.037 1.000
19 -0.161 0.120 0.064 1.000
20 0.067 -0.067 -0.216 0.041 1.000
21 0.043 -0.039 0.107 -0.871 -0.079
22 0.133 -0.179 -0.679 -0.083 0.112
23 0.012 -0.041 -0.121 -0.018 0.256
24 -0.070 0.033 0.155 0.017 -0.630
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.208 1.000
23 -0.079 0.175 1.000
24 0.044 -0.170 -0.551 1.000
|
0f0094f412e4759b39c926de49ad791fa2f5b03b | 0778f91e335afef58ae45c5a33184587cee76088 | /SistemaEDOeuler.sci | 5340cb1d3126c7f87055695872f88398a97cd567 | [] | no_license | LtavaresII/CN | b38e6f5531a3597f8705bdf163f4cec49f49d51e | 0dcfb182692dee3ecf71d62162f986f816b3d687 | refs/heads/master | 2020-03-25T23:35:53.410172 | 2018-12-05T14:17:32 | 2018-12-05T14:17:32 | 144,282,768 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 501 | sci | SistemaEDOeuler.sci | function z = gL1(t,L1,L2)
z = -0.4427*sqrt(L1) + 0.23*(4 + 4*sin(t));
endfunction
function z = gL1(t,L1,L2)
z = -0.4427*sqrt(L2) + 0.4427*sqrt(L1);
endfunction
function [t,L1,L2] = eulerSistema(a,b,h,L10,L20)
t = a:h:b
n = length(t);
L1(1) = L10
L2(1) = L20
for i = 1:n-1
kL1 = gL1(t(i),L1(i),L2(i))
kL2 = gL2(t(i),L1(i),L2(i))
L1(i+1) = L1(i) + kL1*h
L2(i+1) = L2(i) + kL2*h
end
endfunction
[t,L1,L2] = eulerSistema(0,30,1,0,0)
|
41241d35436e9c5cf918fe7a46e5758b520c9e15 | 449d555969bfd7befe906877abab098c6e63a0e8 | /839/CH8/EX8.1/Example_8_1.sce | 2a30d5e1b5f6f7cf491889934efa0d9e5a3cd732 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 911 | sce | Example_8_1.sce | //clear//
clear;
clc;
//Example 8.1
//Given
vdot = 40; //[gal/min]
pb = 50; //[lbf/in.^2]
Za = 4; //[ft]
Zb = 10; //[ft]
hfs = 0.5; //[lbf/in.^2]
hfd = 5.5; //[lbf/in.^2]
neta = 0.6;
rho = 54; //[lb/ft^3]
pv = 3.8; //[lbf/in.^2]
g = 9.8; //[m/s^2]
gc = 32.17 //[ft-lb/lbf-s^2]
hf = hfs+hfd; // [lbf/in.^2]
//(a)
//Using data from Appendix 5
Vb_bar = vdot/6.34; //[ft/s]
//Using Eq.(4.32)
Wp_neta = ((14.7+pb)*144/rho)+(g/gc*10)+(Vb_bar^2/(2*gc))+(hf*144/54)-(14.7*144/54); // [ft-lbf/lb]
delta_H = Wp_neta;
//(b)
mdot = vdot*rho/(7.48*60); // [lb/s]
//Using Eq.(8.7), the input power is
Pb = mdot*delta_H/(550*neta) // [hp]
//(c)
padash = 14.7*144/rho;
//The vapor pressure corresponding to a head
hv = pv*144/rho; // [ft-lbf/lb]
//friction in the suction line
hfs = 0.5*144/rho ; // [ft-lbf/lb]
//Using Eq.(8.7), value of available
NPSH = padash-hv-hfs-Za // [ft]
|
9de2080e8b96ab5d9efff0e1ff80f31600d91726 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH3/EX3.20/Ex3_20.sce | ed107fe674c41bdb7dcef02625e160baaa180260 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 253 | sce | Ex3_20.sce | //Chapter 3: Thermodynamic and Chemical Equilibrium
//Problem: 20
clc;
// Solution
Eq_HI = 1.56 / 2
Eq_H2 = 0.22 / 2
Eq_I2 = 0.22 / 2
Kc = Eq_H2 * Eq_I2 / (Eq_HI ** 2)
mprintf("The equilibrium constant for the dissociation reaction %.4f",Kc)
|
a16c858479e4e88adeb167f2dc5280a5c94d2298 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH9/EX9.3/9_3.sce | 06b88da6b0ea397ad2dfae97085bcfcd695c2910 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 404 | sce | 9_3.sce | clear;
clc;
Ro=500;Td=1*(10^-6);Tr=0.3*(10^-6);
n=1.1*((Td/Tr)^(3/2));
N=round(n);
printf("-Number of T-sections required = %f\n",N);
C=Td/(1.07*N*Ro);
printf("-C = %f microfarads\n",C*(10^6));
L=(Ro*Td)/(1.07*n);
printf("-L = %f mH",L*(10^3));
//the difference in result of L is due to erroneous value in textbook.
disp("The difference in result of L is due to erroneous value in textbook")
|
348c64e562c58fd679d454da5521ce33869150d0 | 31c6b1437c7dc52b977bf6790b1b24eff7f7b5f5 | /search_test.sce | f6b72d0770274325c6b366064852ae1915a84be9 | [] | 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 | 303 | sce | search_test.sce | ModuleName=""
Version="0.01"
DateModified="19-Oct-2015"
DateOfCreation="19-Oct-2015"
Author="Rob Eccleston"
Description=""
test=["a", "b", "c"]
search_for="d"
search_result=grep(test, search_for)
if search_result<>[]
mprintf ("found")
end
|
20f95d192881b987b2c7975d43bc7fc161654b60 | bccc40c870821aa0926bcb3bcd6e30c02f5c9ea7 | /GuidesProcedure_TEST.tst | 853c4a345bafdcba292c122f1020b0f8c56b7b22 | [] | no_license | rivkazi/DataBaseProject--PLSQL | 27c7c8b3cf34f64de9709030064c41020d1595d4 | 70c6f93f6fa0f1f4ec3e42c7051f883ad118d018 | refs/heads/main | 2023-06-30T21:02:42.217915 | 2021-08-04T21:22:05 | 2021-08-04T21:22:05 | 392,821,978 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 101 | tst | GuidesProcedure_TEST.tst | PL/SQL Developer Test script 3.0
4
begin
-- Call the procedure
GuidesProcedure;
end;
0
0
|
b2c3abc6fbf5fe85cec0f5806a55546c86d44635 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH7/EX7.4/ex7_4.sce | c52b362bc8c69adb1e3dfcbf99bee18ff0b065e9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sce | ex7_4.sce | // Exa 7.4
clc;
clear;
close;
format('v',6)
// Given data
V_DD = 30;// in V
R_D = 5;// in k ohm
R_D = R_D * 10^3;// in ohm
I_D = 2.5;// in mA
I_D = I_D * 10^-3;// in A
R_S = 200;// in ohm
// V_DD = (I_D*R_D) + V_DS + (I_D*R_S);
V_DS = V_DD - (I_D*(R_D+R_S));// in V
disp(V_DS,"The value of V_DS in V is");
// The value of V_GS
V_GS = -I_D*R_S;// in V
disp(V_GS,"The value of V_GS in V is");
|
8d694941c5983257cd28d5b8089c69c583548299 | 9715cbe7e8e57bb70f628b3bd021842f99fbad75 | /taller/soluciones/multiplicarEscalar.sce | bf9f34d99e20096c8295da4a5861dc0e9aa228d4 | [] | no_license | UNIVALLE-EISC/numerical-methods | a3e3f432a6dc54a5ba845789ace2bf39db7ac6fe | 3ea9401e281523e15be0525bfe36e48560caf646 | refs/heads/master | 2021-01-10T15:22:36.080955 | 2018-10-02T21:37:42 | 2018-10-02T21:37:42 | 51,824,833 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 98 | sce | multiplicarEscalar.sce | function matrizR = multiplicarEscalar(escalar, matrizA)
matrizR = escalar*matrizA
endfunction
|
ad815232204e128abf2dc0578da2cb0b4a1ce382 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3840/CH7/EX7.8/Ex7_8.sce | 07e9f04c3d2789e222fad4d248c6744ced8715ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 338 | sce | Ex7_8.sce | clear
//
//
//
//Variable declaration
r=5.29*10**-11 //radius(m)
B=2 //magnetic induction(web/m**2)
e=1.6*10**-19 //charge(c)
m=9.1*10**-31 //mass(kg)
//Calculation
d_mew=e**2*r**2*B/(4*m) //change in magnetic moment(Am**2)
//Result
printf("\n change in magnetic moment is %0.3f *10**-29 A-m**2",d_mew*10**29)
|
66a45dbb0f148619bb718c516c84a89c7b2c0843 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2444/CH8/EX8.10/ex8_10.sce | 14a58db4dd5443688577c9d46f380e2613fbfaea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 992 | sce | ex8_10.sce | // Exa 8.10
clc;
clear;
close;
format('v',5)
// Given data
V_CC = 12;// in V
r_e = 25;// in mV
r_e = r_e * 10^-3;// in V
R1 = 1.2;// in Mohm
R1 = R1 * 10^6;// in ohm
R3 = 1.2;// in Mohm
R3 = R3 * 10^6;// in ohm
R4 = 8;// in k ohm
R4 = R4 * 10^3;// in ohm
R5 = 24;// in k ohm
R5 = R5 * 10^3;// in ohm
Beta1 = 100;// unit less
Beta2 = 100;// unit less
I_B2 = V_CC/R3;// in A
I_C2 = Beta2*I_B2;// in A
I_E2 = I_C2;// in A
r_e2 = r_e/I_E2;// in ohm
Rac2 = (R4*R5)/(R4+R5);// in ohm
Av2 = -(Rac2/r_e2);//voltage gain of second stage
disp(Av2,"The voltage gain of second stage is");
Rac1 = (R3*(Beta2*r_e2))/(R3+(Beta2*r_e2));// in ohm
L = 1;// in H
f = 4;// in kHz
f = f * 10^3;// in Hz
X_L = 2*%pi*f*L;// in ohm
r_e1 = r_e2;// in ohm
Av1 = round(-Rac1/r_e1 );// voltage gain of first stage
disp(Av1,"The voltage gain of first stage at 4 kHz is");
Av = Av1*Av2;// overall voltage gain
Av = 20*log10(Av);// in dB
disp(Av,"The overall voltage gain in dB is");
|
4a9b17e824d1709b8706522117af2cbbd371c63c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2219/CH9/EX9.13/Ex9_13.sce | 066470771af49c5bf7853a6ee29736b4c6379b9d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 891 | sce | Ex9_13.sce | // Chapter 9 example 13
// Data taken from Ex 12
//------------------------------------------------------------------------------
clc;
clear;
// Given Data
PW = 10^-6; // Pulse width in sec
Pp = 100*10^3; // Peak power in watts
PRF = 1000; // pulse rep.rate
N_target= 20; // no of target hits in 1 dwell period
// Calculations
PE = Pp*PW; // Pulse energy in Joule
LE = N_target *PE; // look energy
DC = PW*PRF // Duty cycle
Pav = Pp*DC; // Average power
Pavg = 10*log10(Pav); // Avg power in dB
Pp_dB = 10*log10(Pp); // Peak power in dB
DCCF = Pp_dB - Pavg // Duty cycle correction factor
// Output
mprintf('Duty cycle correction factor = %d dB',DCCF);
//-----------------------------------------------------------------------------
|
650a0a70aea0853d88e9eba1825405d3e4589aa6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/DEPENDENCIES/cross_product.sci | c00b7ebdf96ae2f1e139a68777b0eedf445c8d9b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 190 | sci | cross_product.sci | //Vector Product of two given vectors
function [val] = crossproduct(A, B)
val = [A(2) * B(3) - A(3) * B(2),
A(3) * B(1) - A(1) * B(3),
A(1) * B(2) - A(2) * B(1)]
endfunction |
8df6f391006439112128ef75003174a235d15c6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH1/EX1.58/Example_1_58.sce | af3cb005bc8c286f9b7d207889f7b4c28175c98f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 404 | sce | Example_1_58.sce | // Example 1.58 An unbiased die is thrown
clc;
clear;
p=1/6;
Ex=p*(1+2+3+4+5+6);
Ey=p*(1+2+3+4+5+6);
Ez=p*(1+2+3+4+5+6);
Ew=p*(1+2+3+4+5+6);
disp(Ex+Ey+Ez+Ew,"Mathematical expectation of the sum is the sum of mathematical expectations for 4 dice respectively (Es)=",Ex,"Mathematical Expectation of the number of points (Ex)=",p,"Variable x can take any of the values with probability (p)= ");
|
cf134b7ab984478f5c1e0f60fe0a2298859c4097 | 449d555969bfd7befe906877abab098c6e63a0e8 | /284/CH5/EX5.5/ex_5.sce | 62b77d9cb8b26aba63368b0436bb51581ced3de3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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.sce | // Chapter 5_Non equilibrium excess carriers in semiconductors
//Caption_Relaxation time
//Ex_5//page 190
Nd=10^16 //donor concentration
e=1.6*(10^-19) //electronic charge
mun=1200 //mobility
sig=e*mun*Nd
epsR=11.7 //dielectric constant for silicon
epso=8.85*(10^-14)
eps=epso*epsR //permitivity of silicon
taud=eps/sig //dielectric relaxation time constant
tau=taud*10^12
printf('The dielectric relaxation time constant for this semiconductor is %1.2f ps',tau) |
fc5a854297b42b8ce1f69dbc1253e3cad3bdbd55 | 449d555969bfd7befe906877abab098c6e63a0e8 | /40/CH3/EX3.21c/Exa_3_21c.sce | a7bc600dfc1912b62a6b6882d5bf56860d3e33eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 522 | sce | Exa_3_21c.sce | clear;close;clc;
max_limit=10;
h=[1/2 1/2 1/2];
n2=0:length(h)-1;
x=[2 4 6 8 10];
n1=0:length(x)-1;
y=convol(x,h);
n=0:length(x)+length(h)-2;
a=gca();
subplot(211);
plot2d3('gnn',n2,h);
xtitle('impulse Response','n','h[n]');
a.thickness=2;
a.y_location="origin";
a=gca();
subplot(212);
plot2d3('gnn',n1,x);
a.y_location="origin";
xtitle('input response','n','x[n]');
xset("window",1);
a=gca();
plot2d3('gnn',n,y)
a.y_location="origin";
a.x_location="origin";
xtitle('output response','n','y[n]');
|
ca607f04f7ee88212f5bc45134aa5e327a385808 | 449d555969bfd7befe906877abab098c6e63a0e8 | /964/CH27/EX27.2/27_2.sce | d6d1851aa2080c69eb33f19efa1b3394ecd3380f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 613 | sce | 27_2.sce | //clc()
z(1) = 10.0035;
T(1) = 40;
Ta = 20;
h = 0.5;
for i = 1:20
k11(i) = z(i);
k12(i) = 5*10^-8*(T(i) - Ta)^4;
z1 = z(i) + h/2;
T1 = T(i) + h/2;
k21(i) = z1;
k22(i) = 5*10^-8*(T1 - Ta)^4;
z1 = z(i) + h/2;
T1 = T(i) + h/2;
k31(i) = z1;
k32(i) = 5*10^-8*(T1 - Ta)^4;
z1 = z(i) + h;
T1 = T(i) + h;
k41(i) = z1;
k42(i) = 5*10^-8*(T1 - Ta)^4;
T(i+1) = T(i) + ( k11(i) + 2* k21(i) + 2*k31(i) + k41(i))*h/6;
z(i+1) = z(i) + ( k12(i) + 2* k22(i) + 2*k32(i) + k42(i))*h/6;
end
x=0:0.5:10;
plot(x,T(1:21))
xtitle("T vs x","x","T")
|
d7e2d77087bcd69664e13f16838994db5b2a4a18 | 25ec4bae7c1d991a8b4f36a96650a07061417648 | /Exemplos/exemplo03AjusteRGB/azul.sce | 41acf53f7c5876877dc3aa6a7f67b6f7dba92bdf | [] | no_license | OtacilioNeto/EV3MicroPythonExamples | 716f76e4179d98157577d68b116a33a078aed085 | 037af9585402fe294d3c82d3b7d88cb49bc26bcf | refs/heads/master | 2023-06-08T19:34:49.916922 | 2023-06-02T13:24:10 | 2023-06-02T13:24:10 | 226,492,496 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 22,845 | sce | azul.sce | // Red Green Blue Red Green Blue
azul = [
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 3 9 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 3 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 34 2 8 21;
3 12 33 3 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 3 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 9 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 3 9 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 3 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 3 8 21;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 3 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 3 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 3 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 34 3 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 34 2 8 20;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 3 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 3 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 3 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 3 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 35 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 3 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 3 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 3 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 3 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 3 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 35 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 34 2 8 20;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 3 9 21;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 3 9 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 34 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 3 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 34 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 9 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 3 9 21;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 34 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 34 2 8 21;
3 12 33 3 8 21;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 34 2 9 21;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 21;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 33 2 8 20;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 20;
3 12 33 2 8 21;
3 12 34 2 8 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 21;
3 12 33 2 9 21;
3 12 33 2 8 20;
3 12 33 2 9 21;
3 12 34 2 8 20;
3 12 33 2 8 21;
];
|
c681d6a22457109f8ef8b6e33909fe053be88ad6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH28/EX28.9/Ex28_9.sce | be4ebced7ccf1a1f314fd850cb83445720ee4a42 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | sce | Ex28_9.sce | clc;
//e.g 28.9
C1=0.001*10**-6;
C2=0.01*10**-6;
L=5*10**-6;
AV=C2/C1;
disp(AV);
C=(C1*C2)/(C1+C2)
fo=1/(2*%pi*sqrt(L*C));
disp('MHZ',fo*10**-6,"fo=");
|
20b597c910b5aef572486cdccb6332a87a8c1263 | c884d985cf07964dbaf65b3204ef1bebb38d4f23 | /new_raphson.sci | 9b8dad54f1309d7932189db2ca1907f9294e7fb1 | [] | no_license | mbgaspar/Computacao-cientifica | 710f99c81f2ae342c782584bae2fef666f78f76c | 8168c0bdcaa14cf9d2b57ba34e15fd0833e69ee3 | refs/heads/master | 2021-11-05T01:50:18.159560 | 2021-10-29T12:09:10 | 2021-10-29T12:09:10 | 220,349,256 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,721 | sci | new_raphson.sci | function [raiz, iter]=new_raphson(fun, derivada, es, maxi)
// Cálculo das raizes por Newton-Raphson
// function [raiz,iter]=new_raphson(funcao, derivada, x0, es, it)
// onde raiz é a raiz procurada de funcao
// iter é o n. de iterações realizadas para o erro especificado
// funcao é a função de entrada literal em x
// derivada é a derivada da função de entrada literal em x
// es é o criterio de parada que é opcional
// maxi é o numero maximo de iterações
// A cond. inicial x0 é escolhida com auxilio de um gráfico
// Exemplo de chamada:
//
// fun = 'log(x) + x'
// dxdt = '(1 ./x) + 1' //operdor ponto por causa do gráfico
// [raiz,iter]=new_raphson(fun, dxdt, 0.0001,50)
//
// Construção do gráfico da função
a = input("Entre com o limite inferior de x a = ");
b = input("Entre com o limite superior de x b = ");
x = linspace(a,b,100); //cria espaço linear
f = evstr(funcao)
plot2d(x,f);
xgrid;
// escolha do valor inicial
x0 = input("Entre com o valor inicial x0 = ");
i = 0; x = x0; ea=100;
// se es nao foi estabelecido usa 0.0001%
if argn(2) < 3 then
es = 0.0001;
end
// se maxi nao foi estabelecido usa 50
if argn(2) < 4 then
maxi = 50;
end
printf("Iter\tRaiz\terro aproximado %% \n");
// inicio do processo iterativo
while ea > es & i < maxi do
fxi = evstr(funcao);
dxi = evstr(derivada);
if dxi == 0 then
error("Derivada nula, divisão por zero");
end
xi = x - (fxi/dxi);
i= i+1;
if xi ~=0 then // xi não pode ser zero
ea = abs((xi - x)/xi)*100;
end
printf("%d\t%.10f\t%f\n",i,xi,ea);
x = xi;
end
if i == maxi then
raiz = 'divergiu';
else
raiz = xi;
end
iter = i;
endfunction
|
c4d8e33a4f9d7a9220c7110480a2abea97e861e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1634/CH1/EX1.11/example1_11.sce | 94b6f57aa3b5f0ccdad15afe8382c69d4109d029 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | sce | example1_11.sce |
//exapple 1.11
clc; funcprot(0);
// Initialization of Variable
pi=3.14159;
theta=-8-30/60;
H=322;//hour angle
delta=50;
//in triangle ZPM(figure in book)
PZ=(90-delta)*pi/180;
H=2*pi-H*pi/180;
PM=(90-theta)*pi/180;
ZM=acos((cos(PZ)*cos(PM)+sin(PM)*sin(PZ)*cos(H)));
alpha=pi/2-ZM;
disp(alpha*180/pi,"altitude of star in (degrees):");
A=((cos(PM)-cos(PZ)*cos(ZM))/sin(PZ)/sin(ZM));
if A<0 then
A=-A;
A=acos(A);
A=180-A*180/pi;
disp(A,"azimuth of star in (degrees) eastwards:")
end
|
9511558d2767b058b2f72113884fb6389ca89c2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH9/EX9.2/Ch09Ex2.sce | f406affa91c0c8fd8f3ac72bebeddc4cf82bb002 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 528 | sce | Ch09Ex2.sce | // Scilab code Ex9.2: Pg 307 (2005)
clc; clear;
h_cross = 6.58e-16; // Reduced Plank's constant, eV-s
S = h_cross*sqrt(3)/2; // Spin angular momentum, eV-s
S_z = h_cross/2; // Z-component of spin angular momentum, eV-s
theta_up = acosd(S_z/S);
theta_down = acosd(-S_z/S);
printf("\nFor up spin state, theta = %4.2f degrees", theta_up);
printf("\nFor down spin state, theta = %5.1f degrees", theta_down);
// Result
// For up spin state, theta = 54.74 degrees
// For down spin state, theta = 125.3 degrees
|
30df373bd785bbb536b927fd4e370ee525eb2799 | 28f88c035b368ddbe3efd8f5dbf48f01496d1ad0 | /lab1/Xor.tst | 578512e7d76abfa69caab51878c669d0a434beaf | [] | no_license | sandeepkasimalla/Computer_System_Design_CS4110 | 46c06acd04c7b0477ff37b76d127c15f005feb9b | 79d89db0b19f18b9a337fd8e18926114959c5323 | refs/heads/master | 2020-07-11T22:45:14.966087 | 2019-11-21T18:46:33 | 2019-11-21T18:46:33 | 204,659,866 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 273 | tst | Xor.tst | load Xor.hdl,
output-file Xor.out,
compare-to Xor.cmp,
output-list ip1%B3.1.3 ip2%B3.1.3 out%B3.1.3;
set ip1 0,
set ip2 0,
eval,
output;
set ip1 0,
set ip2 1,
eval,
output;
set ip1 1,
set ip2 0,
eval,
output;
set ip1 1,
set ip2 1,
eval,
output;
|
d045e7d31cf01ba3ac4bab77f55cabc03d77ddf7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /803/CH3/EX3.2/ex3_2.sce | 5f53801deffbc6e7eab236266f5b13c838450643 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sce | ex3_2.sce | clc
vr=20*1.852*(1000/3600);..//target radial speed
f=10^9;..//base frequency
c=3*(10^8);
lamda=(c/f);
fd=2*(vr/lamda);..//doppler speed
disp("Hz",fd,"Doppler Shift is")
|
08918ee173d084206b21d1bbebb8f8c98b7daf1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH5/EX5.25/5_25.sci | 735a57d645e550fa72ccd70dbee2caa9c18a9ce1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 234 | sci | 5_25.sci | // Calculating the sensitivity and maximum output voltage
clc;
Se_thermocouple=500-(-72);
disp(Se_thermocouple,'Sensitivity of thermocouple (micro V/degree C)=')
Vo=Se_thermocouple*100*10^-6;
disp(Vo,'maximum output voltage(V)=') |
4be3a171649a1d47ea0305157a844c92f2f1fcb5 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3/macros/scicos/getorigin.sci | 7884ba83ba5ae0bfd86558be5efbe13704f6ce05 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 75 | sci | getorigin.sci | function [x,y]=getorigin(o)
execstr('[x,y]='+o(5)+'(''getorigin'',o)')
|
177ce8eea632cee6fae87bca0dcf86310bfc6d47 | 856429599e37bd3e8adecb62584b9f337d9f5d22 | /MIGRACION/CONF_COASEGURO/02_test_Mig_Companias.tst | d7d8de4a925c6847627a858d8c61a5d22e7ce557 | [] | no_license | aldemarg911/conf_migra | ad3016defa7d79b26403dc599c688565191b0f94 | 639c31819afa35bb32758a5d31355872b3f9930c | refs/heads/master | 2021-05-14T07:19:19.473261 | 2018-01-26T18:29:17 | 2018-01-26T18:29:17 | 116,261,125 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,123 | tst | 02_test_Mig_Companias.tst | PL/SQL Developer Test script 3.0
77
-- Created on 27/07/2017 by HGOMEZ
declare
-- Local variables here
num_err NUMBER;
v_error BOOLEAN := FALSE;
v_error_i BOOLEAN := FALSE;
v_ccompani companias.ccompani%TYPE;
--
l_mensajes t_iax_mensajes;
--
CURSOR lc_mig_companias IS
SELECT c.mig_pk, c.mig_fk, c.ccompani, c.tcompani, c.ctipcom, p.idperson
FROM mig_companias c, mig_personas p
WHERE 1 = 1
AND c.ncarga = 20047 --pncarga
AND c.cestmig = 1
AND c.mig_fk = p.mig_pk
AND p.idperson != 0
--AND c.ncarga = p.ncarga
AND p.mig_pk = '860069195'
;
begin
-- Test statements here
FOR x IN lc_mig_companias
LOOP
--
v_ccompani := NULL;
v_error_i := FALSE;
--
num_err := pac_md_companias.f_set_compania(psperson => x.idperson,
pccompani => v_ccompani,
ptcompani => x.tcompani,
pcpais => 170,
pctipiva => 0,
pccomisi => NULL,
pcunespa => NULL,
pffalta => f_sysdate,
pfbaja => NULL,
pccontable => NULL,
pctipcom => 0,
pcafili => NULL,
pccasamat => NULL,
pcsuperfinan => NULL,
pcdian => NULL,
pccalifi => NULL,
pcenticalifi => NULL,
pnanycalif => NULL,
pnpatrimonio => NULL,
ppimpint => NULL,
pctramtax => NULL,
pcinverfas => NULL,
mensajes => l_mensajes);
--
FOR i IN (SELECT p.*
FROM TABLE(l_mensajes) p)
LOOP
--
IF i.cerror = 111313 -- Proceso Correcto. (No es error)
THEN
--
NULL;
--
ELSE
--
dbms_output.put_line( x.mig_pk ||' - Error:' || i.cerror || '-' || i.terror || ' lineap: '|| dbms_utility.format_error_backtrace);
v_error_i := TRUE;
v_error := TRUE;
--
END IF;
--
END LOOP;
--
dbms_output.put_line('v_ccompani:'||v_ccompani);
--
END LOOP;
--
end;
0
0
|
5a315df55895657b1a0af64e4871e79ee5bde474 | 449d555969bfd7befe906877abab098c6e63a0e8 | /632/CH8/EX8.18/example8_18.sce | c4fc267107397a4e3a09980fad8b6ab95f19a8bf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 444 | sce | example8_18.sce | //clc()
P = 101.3;//kPa
Td = 303;//K
Tw = 288;//K
//using psychometric chart,
Y1 = 0.0045;//kg water/ kg dry air
PY = 18;//%
Theated = 356.7;//K
Cb = 1.005;
Ca = 1.884;
Cs = Cb + Y1 * Ca;
Q = 1 * Cs * (Theated - Td);
disp("kg water/ kg dry air",Y1,"(a)Humidity of the initial air = ")
disp("%",PY,"(b)Percent humidity = ")
disp("K",Theated,"(c)Temperature to which the air is heated = ")
disp("kJ",Q,"(d)Heat to be suppplied = ") |
82397525f00851b0695aff052c838b0dd19939ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /964/CH22/EX22.3/22_3.sce | 0843fc181267c7da80d906654bb107a3f597da31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 825 | sce | 22_3.sce | //clc()
//f(x) = 0.2 + 25*x - 200*x^2 + 675*x^3 - 900*x^4 + 400*x^5
// for using two point gauss legendre formulae, the intervals have to be changed to -1 and 1
//therefore, x = 0.4 + 0.4 * xd
//thus the integral is transferred to
//(0.2 + 25*(0.4+0.4*x) - 200*(0.4 + 0.4*x)^2 + 675*(0.4 + 0.4*x)^3 - 900*(0.4 + 0.4*x)^4 + 400*(0.4 + 0.4*x)^5)*0.4
//for three point gauss legendre formulae
x1 = -(1/3) ^ 0.5;
x2 = (1/3) ^ 0.5;
I1 = (0.2 + 25*(0.4+0.4*x1) - 200*(0.4 + 0.4*x1)^2 + 675*(0.4 + 0.4*x1)^3 - 900*(0.4 + 0.4*x1)^4 + 400*(0.4 + 0.4*x1)^5)*0.4;
I2 = (0.2 + 25*(0.4+0.4*x2) - 200*(0.4 + 0.4*x2)^2 + 675*(0.4 + 0.4*x2)^3 - 900*(0.4 + 0.4*x2)^4 + 400*(0.4 + 0.4*x2)^5)*0.4;
I = I1 + I2;
disp(I,"Integral obtained using gauss legendre formulae =")
t = 1.640533;
e = (t - I)*100/t;
disp("%",e,"error = ")
|
0a6bd0f1e7a42d611d40663a901e933c8967ee2c | 449d555969bfd7befe906877abab098c6e63a0e8 | /83/CH8/EX8.1/example_8_1.sce | 1aca454b4a1cb9897ed369c4ad66ee0282ba9a58 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 681 | sce | example_8_1.sce | //Chapter 8
//Example 8.1
//page 300
//To determine the change in the frequency
clear;clc;
f=50;
H=5e3;
KE=H*100*1000; //K.E stored in the generator
PI=50e6; //power input to generator before the stem valve is closed
EE=PI*0.4 ; //Excess energy input to the rotating parts
fnew=f*((KE+EE)/KE)^0.5; //frequency at the end of the 0.4sec
printf('\nKinetic Energy stored in the rotating parts of generator and turbine = %d kW-sec',KE/1000);
printf('\nExcess power input to generator before the stem valve begins to close=%d MW',PI/1000000);
printf('\nExcess energy input to rotating parts in 0.4sec=%d kW-sec',EE/1000);
printf('\nFrequency at the end of 0.4sec=%0.2f Hz\n\n',fnew);
|
d45a6342e8ab47583793d9b71c8092347a7f0d92 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH14/EX14.7/14_7.sce | bccf8463a280090b02dbf41f53ad8a40b5721ddf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 72 | sce | 14_7.sce |
ksine=1.11
ksqr=1
err=(ksine-ksqr)/ksqr*100
disp("percent",err)
|
65bcdbd75c1a8603e9d75752f33fa87143370b66 | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH3/EX3.30/example_30.sce | 5ae626691822faab4e3db46864b385b1fe1b92b7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example_30.sce | clc
clear
printf("example 3.30 page number 118\n\n")
//to find the heat of combustion
delta_n = 10-12; //mole per mole napthanlene
//basis 1g
moles_napthalene = (1/128);
disp('part 1')
Qv = 40.28 //in kJ
Qp = Qv-(delta_n*moles_napthalene*8.3144*298/1000);
printf("heat of combustion = %f kJ\n\n",Qp)
disp('part 2')
delta_H = 44.05 //in kJ/gmol
water_formed = 4/128; //in g mol
Qp1 = Qp - (delta_H*water_formed);
printf("heat of combustion = %f kJ",Qp1)
|
78a0538caafe99a0a8527d3e6061f5bd45083465 | 8cf6372d3b1745aa382131f243c0d4097a0b937f | /proj1/Drinks.tst | 122732746677db7e5f9d27c79bf3685d3b1591ea | [] | no_license | s9v/CS492-Nand2Tetris | 8da5f1899dec3f93374d41d0b5954620fabc4f50 | f1491d2b128aa45f1c55e3d16c091496fc54b833 | refs/heads/master | 2021-09-15T10:07:08.791830 | 2018-05-30T08:46:34 | 2018-05-30T08:46:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 556 | tst | Drinks.tst | load Drinks.hdl,
output-file Drinks.out,
output-list wine%B3.1.3 water%B3.1.3 juice%B3.1.3 cond1%B3.1.3 cond2%B3.1.3 cond3%B3.1.3 ;
set wine 0,
set water 0,
set juice 0,
eval,
output;
set wine 1,
set water 0,
set juice 0,
eval,
output;
set wine 0,
set water 1,
set juice 0,
eval,
output;
set wine 1,
set water 1,
set juice 0,
eval,
output;
set wine 0,
set water 0,
set juice 1,
eval,
output;
set wine 1,
set water 0,
set juice 1,
eval,
output;
set wine 0,
set water 1,
set juice 1,
eval,
output;
set wine 1,
set water 1,
set juice 1,
eval,
output;
|
b491a5c2c919337747f39f8d81c1a26aefbccbdc | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH42/EX42.10/42_10.sce | ad5e4a60a85e7669b1bf855c06fecd57d7f842cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,437 | sce | 42_10.sce | //Problem 42.10: The current input to a filter section is 24/_10° mA and the current output is 8/_-45° mA. Determine for the section (a) the attenuation coefficient, (b) the phase shift coefficient, and (c) the propagation coefficient. (d) If five such sections are cascaded determine the output current of the fifth stage and the overall propagation constant of the network.
//initializing the variables:
ri1 = 0.024; // in amperes
ri2 = 0.008; // in amperes
thetai1 = 10; // in ddegrees
thetai2 = -45; // in ddegrees
//calculation:
//currents
I1 = ri1*cos(thetai1*%pi/180) + %i*ri1*sin(thetai1*%pi/180)
I2 = ri2*cos(thetai2*%pi/180) + %i*ri2*sin(thetai2*%pi/180)
//ir
ir = I1/I2
irmag = ri1/ri2
thetai = thetai1-thetai2
//attenuation coefficient
a = log(irmag)
//phase shift coefficient
b = thetai*%pi/180
//propagation coefficient
r = a + %i*b
//output current of the fifth stage
I6 = I1/(ir^5)
x = ir^5
xmg = (real(x)^2 + imag(x)^2)^0.5
//overall attenuation coefficient
ad = log(xmg)
//overall phase shift coefficient
bd = atan(imag(x)/real(x)) + 2*%pi
printf("\n\n Result \n\n")
printf("\nattenuation coefficient is %.3f N ",a)
printf("\nphase shift coefficient is %.3f rad ",b)
printf("\npropagation coefficient is %.3f + (%.3f)i ",a,b)
printf("\nthe output current of the fifth stage is %.2E + (%.2E)i A and the overall propagation coefficient is %.2f + (%.2f)i",real(I6),imag(I6),ad,bd) |
6a20f096658fc21db53f70bb60191a2abfffbb78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3774/CH9/EX9.7/Ex9_7.sce | 0adbaae087c967b2167813c73d847732fe45f3d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 681 | sce | Ex9_7.sce | // exa 9.7 Pg 267
clc;clear;close;
// Given Data
two_beta=30;// degree
W=400*10**3;// N
d=100;// mm
p=12;// mm
mu=0.15;// coefficient of thread friction
dm=d-p/2;// mm
dc=d-p;// mm
l=2*p;// mm
alfa=atand(l/%pi/dm);// degree
mu_e=mu/cosd(two_beta/2);// virtual coefficient of friction
fi=atand(mu);// degree
Tf=W*dm/2*tand(alfa+fi);// N.mm (Frictional torque for raising load)
T=W*dm/4*tand(fi);// N.mm
To=W*dm/2*tand(alfa);// N.mm (Torque without friction)
eta1=To/Tf*100;// %
printf('\n Efficiency during raising the load = %.2f %%',eta1)
eta2=T/To*100;// %
printf('\n Efficiency during lowering the load = %.2f %%',eta2)
// Note - answer & solution is wrong in the textbook.
|
236cd8c5c3954d939c433cbe6dd1b67b3a25cb1a | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH14/EX14.6/6.sce | d327a80a7d057702af04365ca7becdb788b751b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 478 | sce | 6.sce | clc
cpw=4.18; //kJ/kg
disp("(i) Quantity of ice produced")
t=20; //0C
L=335; //kJ/kg
capacity=280; //tonnes
Q1=cpw*t + L; //Heat to be extracted per kg of water (to form ice at 0°C)
Rn=capacity*14000; //kJ/h
m_ice=Rn*24/Q1/1000;
disp("Quantity of ice produced in 24 hours =")
disp(m_ice)
disp("tonnes")
disp("(ii) Minimum power required =")
T1=298; //K
T2=263; //K
COP=T2/(T1-T2);
W=Rn/COP/3600; //kJ/s
disp("Power required =")
disp(W)
disp("kW") |
20dfef34ecfe9a3129f03f4a10843dfbf5cf057c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH3/EX3.3/Ex3_3.sce | 1b761a17a3d54567261edafbbcceaf228e6554d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 622 | sce | Ex3_3.sce | // Chapter 3 example 3
clc;
clear;
// Variable declaration
ur = 90; // relative permeability
n = 300; // turns per m
i = 0.5; // current in amp
d = 10*10^-3; // diameter of iron rod
l = 2; // length of iron rod
// Calculations
V = %pi*(d/2)^2 * l // volume of rod
M = (ur - 1)*n*i // magnetisation
m = M*V // magnetic moment
// Output
mprintf('Magnetic Moment of the rod = %3.3g A-m^2\n ',m);
mprintf('Note: In textbook length of iron rod given as 2m whereas in calculation it is wrongly taken as 0.2m' )
|
8e45a2fe545957d98f3f6bc0a8438528fc71d21a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH3/EX3.a.05/Ex3a_a_5.sce | 8719ee4b63ba8a3f949a87b96d9cc3b0b0d26237 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex3a_a_5.sce | // Scilab Code Ex3a.a.5: Page-135 (2008)
clc; clear;
phi1 = 0; // Phase of the first SHM, degree
phi2 = 60; // Phase of the second SHM, degree
phi3 = 90; // Phase of the third SHM, degree
a1 = 1.0; // Amplitude of the first SHM, cm
a2 = 1.5; // Amplitude of the second SHM, cm
a3 = 2.0; // Amplitude of the third SHM, cm
A = sqrt((a1 + a2*cosd(phi2)+a3*cosd(phi3))^2 + (a2*sind(phi2)+a3*sind(phi3))^2); // Resultant amplitude relative to the first SHM, cm
phi = atand((a2*sind(phi2)+a3*sind(phi3))/(a1 + a2*cosd(phi2)+a3*cosd(phi3))); // Resultant phase angle relative to the first SHM, degree
printf("\nThe resultant amplitude and phase angle relative to the first SHM = %4.2f cm and %2d degrees respectively", A, phi);
// Result
// The resultant amplitude and phase angle relative to the first SHM are 3.73 cm and 62 degrees respectively |
7dfb752658d6f924217849c012b8e1e90d2d4dc0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH6/EX6.2.1/ques2_1.sce | d74452da1c56e0d08f73fa28a7187443b73ad474 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 94 | sce | ques2_1.sce | //ques1
disp('definite integral');
syms x
f=integ((cos(x))^6,x,0,%pi/2);
disp(float(f));
|
ffa9547add33f87ac318069a0a0918a70c6947aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /683/CH3/EX3.16/MS_16.sce | f1608fb95a82002efd943926eaefebabb1fa9868 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 195 | sce | MS_16.sce | // sum 3-16
clc;
clear;
D=22;
d=20;
r=1;
K=2.2;
sigmax=130;
sigmax=sigmax/K;
Z=%pi*d^3/32;
M=sigmax*Z*10^-3;
// printing data in scilab o/p window
printf("M is %0.3f Nm ",M); |
096bb5c5ba6cd6e4f6897caea8d4a445721f1970 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/pei_tseng_notch.sci | 1de0fcd352d18f34c7d34667eadf1d5ac91c0d06 | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,284 | sci | pei_tseng_notch.sci | function [b, a] = pei_tseng_notch (frequencies, bandwidths)
//Return coefficients for an IIR notch-filter.
//Calling Sequence
//[b, a] = pei_tseng_notch (frequencies, bandwidths)
//b = pei_tseng_notch (frequencies, bandwidths)
//Parameters
//frequencies: filter frequencies
//bandwidths: bandwidths to be used with filter
//Description
//This is an Octave function.
//It return coefficients for an IIR notch-filter with one or more filter frequencies and according bandwidths. The filter is based on a all pass filter that performs phasereversal at filter frequencies.
//This leads to removal of those frequencies of the original and phase-distorted signal.
//Examples
//sf = 800; sf2 = sf/2;
//data=[[1;zeros(sf-1,1)],sinetone(49,sf,1,1),sinetone(50,sf,1,1),sinetone(51,sf,1,1)];
//[b,a]=pei_tseng_notch ( 50 / sf2, 2/sf2 )
//b =
//
// 0.99213 -1.83322 0.99213
//
//a =
//
// 1.00000 -1.83322 0.98426
funcprot(0);
lhs = argn(1)
rhs = argn(2)
if (rhs < 2 | rhs > 2)
error("Wrong number of input arguments.")
end
select(rhs)
case 2 then
if(lhs==1)
b = callOctave("pei_tseng_notch", frequencies, bandwidths)
elseif(lhs==2)
[b, a] = callOctave("pei_tseng_notch", frequencies, bandwidths)
else
error("Wrong number of output argments.")
end
end
endfunction
|
2f726b3c788401ec0de2ea6de72eb4e78dcfb1bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH1/EX1.23/chapter1_23.sce | 78d95719d713e95ebe66631715931862fae41ece | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 789 | sce | chapter1_23.sce | //example1.23
clc
disp("The branch currents are shown in the fig 1.93(a)")
disp("Applying KVL to the two loops,")
disp("-2(I1)-5(I2)+12=0")
disp("i.e 2(I1)+5(I2)=12 ..(1)")
disp("-4(I1-I2)-6(I1-I2)+5(I2)=0")
disp("i.e -10(I1)+15(I2)=0")
disp("Solving equation (1) and (2),")
disp("2(I1)+5(10/15)(I1)=12")
i=9/4
format(5)
disp(i,"I1(in A)=")
disp("put this value of I1 in eq (2),we get")
i=(10/15)*2.25
disp(i,"I2(in A)=(10/15)*2.25=")
disp(" Branch Current voltage drop")
disp(" A-B I1=2.25A 2(I1)=4.5V")
disp(" B-C I1-I2=0.75A 4(I1-I2)=3V")
disp(" C-D I1-I2=0.75A 6(I1-I2)=4.5V")
disp(" B-E I2=1.5A 5(I2)=7.5V")
disp(" F-A I1=2.25A 12V source")
|
bf2d5e5cd8e3ed1c614cffc219d4be6e0ddf755c | e0f8f5b90758e1d2d3d75342630b61dd6a34acce | /resRet.sci | 2f46491ae34907c2dcbe86d5bb013125be16193d | [
"MIT"
] | permissive | gilvandrocesardemedeiros/ComputacaoNumerica | 6dbf5ab06d34b3a29456508c994fbc3c1ceb47c8 | 13045eaaa847a5fc01707c66f530b21c096e4ff4 | refs/heads/master | 2020-04-04T17:17:19.928386 | 2019-07-14T19:03:49 | 2019-07-14T19:03:49 | 156,114,630 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 219 | sci | resRet.sci | function [X] = resRet(A,b)
[l,c] = size(A)
for i = l:-1:1
valor = 0
for j = c:-1:i+1
valor = valor + A(i,j)*X(j)
end
X(i) = (b(i) - valor)/A(i,i)
end
endfunction
|
b4bbf97b627ee84bc715ffa995e3ec510f28132b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH20/EX20.5/example20_5.sce | 99e94589e5391a4ad7a1a13e31032c43fe7c2345 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | example20_5.sce | clc
// Given that
V = 10e3 // voltage in V
i = 2e-3 // current in amp
// Sample Problem 5 on page no. 20.8
printf("\n # PROBLEM 5 # \n")
printf("Standard formula used \n ")
printf("1/2*m*v^2 = eV \n")
v = 0.593e6*sqrt(V)
printf("\n Velocity of electron is %e m/sec.",v)
|
dc82eca57007974aeea766eea5384914009b60f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2309/CH1/EX1.3/Ex1_3.sce | 781780c9ee38a302ae8be5411887409ebca43b43 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 603 | sce | Ex1_3.sce | // Chapter 1 Example 3
//==============================================================================
clc;
clear;
//input data
f = 1.5*10^6; //frequency of ultrasonics in Hz
d6 = 2.75*10^-3; // distance between 6 consecutive nodes
//Calculations
d = d6/5; // distance b/w two nodes
lamda = 2*d; // wavelength in m
v = f*lamda; // velocity of ultrasonics
//Output
mprintf('Velocity of ultrasonics = %3.0f m/sec',v);
//==============================================================================
|
fdb8e9cb80680b8554d4575ec79df4a569ad5f5d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH5/EX5.2/Ex5_2.sce | 38a4848382afea7f18949f393b5c75f2f10bf2f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 400 | sce | Ex5_2.sce | clc;clear;
//Example 5.2
//given data
Dtank=3*12;//in inches
Djet=0.5;
h0=2;
h1=4;
//constants used
g=32.2;//in ft/s^2
//calculations
//min - mout = dmCV/dt
//mout = p*(2*g*h*Ajet)^2
//mCV = p*Atank*h
//from these we get dt = Dtank^2/Djet^2 * (dh/(2*g*h)^2)
t=integrate('Dtank^2/Djet^2*(1/sqrt(2*g*h))','h',h0,h1);
t=(t/60);//in min
disp(t,'time taken to drop to 2ft in min')
|
69c6400398176a3a7500337dadee887781e0ef4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /125/CH8/EX8.9/Problem9.sce | 2c34220a44ae92940b2d021e342afc7717fb4ea6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 952 | sce | Problem9.sce | //Caption: Develop a perceptron AND function with bipolar inputs and targets
//Problem 9
//page441
close;
clear;
clc;
X1 = [1,-1,1,-1]; //X1 and X2 are input vectors to AND function
X2 = [1,1,-1,-1];
//b = [1,1,1,1]; //Biasing vector
T = [1,-1,-1,-1]; //Target vector for AND function
W1 = 0; //Weights are initialized
W2 = 0;
b = 0; //bias initialized
alpha = 1; //learning rate
for i = 1:length(X1)
Yin(i) = b+X1(i)*W1+X2(i)*W2;
if (Yin(i)>=1)
Y(i)=1;
elseif((Yin(i)<1)&(Yin(i)>=-1))
Y(i)=0;
elseif(Yin(i)<-1)
Y(i)=-1;
end
disp(Yin(i),'Yin=')
disp(Y(i),'Y=')
if(Y(i)~=T(i))
b = b+alpha*T(i);
W1 = W1+alpha*T(i)*X1(i);
W2 = W2+alpha*T(i)*X2(i);
disp(b,'b=')
disp(W1,'W1=')
disp(W2,'W2=')
end
end
disp('Final Weights after one iteration are')
disp(b,'Bias Weigth b=')
disp(W1,'W1=')
disp(W2,'W2=') |
0dfe5cc66da665fd6c837b20395dda5e3f4ed167 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1055/CH10/EX10.1/ch10_1.sce | e35b2be6f765604730455513b7d9f5ae395304b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 739 | sce | ch10_1.sce | // To determine the total power , active and reactive , supplied by the generator and the p.f at which the generator must operate .
clear
clc;
V=1;//voltage (p.u)
Pa=.5;//active power at A (p.u)
Pr=.375;// reactive power at A(p.u)
Xca=0.075+0.04;// reactance between C and A
Pl=((Pa^2)+(Pr^2))*Xca/(V^2);
pac=1.5;
prc=2;
Pta=.5+1.5;// total active power between E and C
Ptr=Pr+Pl+2;// reactive power between E and C
Xt=.05+.025;//total reactance beteween E an C
Pl2=((2*2) + (2.4199^2));// loss (p.u)
Pat=200;
Prt=315.9;
pf=.5349;
mprintf("Total active power supplied by generator =%.0f MW\n",Pat);
mprintf("Total reactive power supplied by generator =%.1f MW \n",Prt);
mprintf("p.f of the generator =%.4f \n",pf);
|
fa90c821d4fece49bdba3804174f609776824301 | e6d9508e396451df8e97d49189647d523d0061d9 | /TUTORIAL.SCE | 50069e27e0a006033ff6aa5448c0a6b7589ccead | [] | no_license | petervillar/The-Ticket | b88a4f317d7a1a38a93167a315e8d436747c6722 | 05fd25474c0018fa4a3ff11f8e37abda38d805e6 | refs/heads/master | 2020-04-01T05:00:55.670399 | 2018-12-23T23:21:26 | 2018-12-23T23:21:26 | 152,886,523 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 17,478 | sce | TUTORIAL.SCE | ;
; TUTORIAL source file 16/12/18
;
#include symbols.sce
/CTL ;Control Section (null char is an underline)
_
/TOK ;Tokens as supplied with PAW under CP/M
_the_
_you_
_are_
ing_
_to_
_and
_is_
You_
and_
The_
n't_
_of_
_you
ing
ed_
_a_
_op
ith
out
ent
_to
_in
all
_th
_it
ter
ave
_be
ver
her
and
ear
You
_on
en_
ose
no
ic
ap
_b
gh
__
ad
is
_c
ir
ay
ur
un
oo
_d
lo
ro
ac
se
ri
li
ti
om
bl
ck
I_
ed
ee
_f
ha
pe
e_
t_
in
s_
th
,_
er
d_
on
to
an
ar
en
ou
or
st
._
ow
le
at
al
re
y_
ch
am
el
_w
as
es
it
_s
ll
do
op
sh
me
he
bo
hi
ca
pl
il
cl
_a
of
_h
tt
mo
ke
ve
so
e.
d.
t.
vi
ly
id
sc
_p
em
r_
;------------------------------------------------------------------------------
/VOC ;Vocabulary
; Movements ie verbs and nouns < 14
N 2 noun
NORTH 2 noun
S 3 noun
SOUTH 3 noun
E 4 noun
EAST 4 noun
W 5 noun
WEST 5 noun
NE 6 noun
NW 7 noun
SE 8 noun
SW 9 noun
U 10 noun
UP 10 noun
ASCEN 10 verb
D 11 noun
DOWN 11 noun
DESCE 11 verb
; Nouns <20 means can be used as verbs
; <50 means a proper noun ie not an 'IT'
I 14 noun
INVEN 14 noun
ALL 20 noun
LOT 20 noun
EVERY 20 noun
;
DOG 21 noun
BIRD 22 noun
;
HERE 37 noun
;
TORCH 50 noun
BAG 51 noun
SANDW 52 noun
APPLE 53 noun
BUS 54 noun
TICKE 54 noun
LEAD 55 noun
ANORA 56 noun
GATE 57 noun
RAILI 58 noun
GRASS 59 noun
PATH 60 noun
BENCH 61 noun
POND 62 noun
BANDS 63 noun
IRON 63 noun
TREE 64 noun
BRANC 64 noun
LEAF 64 noun
; Verbs
GET 20 verb
TAKE 20 verb
DROP 21 verb
PUT 21 verb
REMOV 22 verb
WEAR 23 verb
R 24 verb
REDES 24 verb
QUIT 25 verb
Q 25 verb
STOP 25 verb
SAVE 26 verb
LOAD 27 verb
RAMSA 28 verb
RAMLO 29 verb
LOOK 30 verb
EXAMI 30 verb
X 30 verb
SAY 31 verb
ASK 31 verb
TALK 31 verb
SPEAK 31 verb
TIE 34 verb
UNTIE 35 verb
SIT 36 verb
STAY 36 verb
COME 37 verb
TURN 38 verb
CLIMB 39 verb
; Adjectives
SMALL 2 adjective
BIG 3 adjective
LARGE 3 adjective
OLD 4 adjective
NEW 5 adjective
HARD 6 adjective
SOFT 7 adjective
SHORT 8 adjective
LONG 9 adjective
;
LIT 10 adjective
UNLIT 11 adjective
; Adverbs
QUICK 2 adverb
SLOWL 3 adverb
QUIET 4 adverb
LOUDL 5 adverb
CAREF 6 adverb
SOFTL 6 adverb
GENTL 6 adverb
; Prepositions
TO 2 preposition
FROM 3 preposition
IN 4 preposition
OUT 5 preposition
THROU 6 preposition
OVER 7 preposition
UNDER 8 preposition
BY 9 preposition
ON 10 preposition
OFF 11 preposition
AT 12 preposition
EXCEP 13 preposition
; Pronouns
IT 2 pronoun
THEM 2 pronoun
; Conjugations
AND 2 conjugation
THEN 2 conjugation
;
;------------------------------------------------------------------------------
/STX ;System Message Texts
/0
It's too dark to see anything.
/1
I can also see
/2
What now?
/3
What next?
/4
What should I do now?
/5
What should I do next?
/6
I was not able to understand any of that.
/7
I can't go in that direction.
/8
I can't do that.
/9
I have with me
/10
I am wearing
/11 ;*Spare
/12
Are you sure?
/13
Would you like another go?
/14 ;*Spare
/15
Done.
/16
Press any key to continue.
/17 ;*You have taken
/18 ;*\sturn
/19 ;*s
/20 ;*.[CR]
/21 ;*You have scored
/22 ;*%[CR]
/23
I'm not wearing one of those.
/24
I can't. I'm wearing the _.
/25
I already have the _.
/26
There isn't one of those here.
/27
I can't carry any more things.
/28
I don't have one of those.
/29
I'm already wearing the _.
/30 ;One upper case character only
Y
/31 ;One upper case character only
N
/32
More...
/33
>
/34 ;*Spare
/35
Time passes...
/36
I now have the _.
/37
I'm now wearing the _.
/38
I've removed the _.
/39
I've dropped the _.
/40
I can't wear the _.
/41
I can't remove the _.
/42
I can't remove the _. My hands are full.
/43
The _ weighs too much for me.
/44
The _ is in the
/45
The _ isn't in the
/46
,
/47
and
/48
.
/49
I don't have the _.
/50
I'm not wearing the _.
/51
.
/52
There isn't one of those in the
/53
Nothing.
/54 ;Letter for Tape
T
/55 ;Disc
D
/56
Drive not ready - press any key to retry.
/57
I/O Error.
/58
Disc or Directory may be full.
/59
Invalid filename.
/60
Type in name of file:
/61
Start tape.
/62
Tape or Disc?
;------------------------------------------------------------------------------
/MTX ;Message Texts
/0
The apple is crisp and green.
/1
It's a cheese and pickle sandwich.
/2
The ticket has "City Bus Company" printed on it.
/3
The bench is firmly screwed to a concrete base.
/4
The bus arrives. I hand the ticket to the driver who
smiles and says "Sorry I'm late, hope you haven't been
standing too long?".
/5
In the bag there is:
/6
The bird drops the ticket to peck at the sandwich.
/7
The bird snatches the ticket.
/8
The bird ignores me.
/9
A small bird is here.
/10
The bird has a ticket in its beak.
/11
A small bird settles on the ground.
/12
A small bird lands on the branch.
/13
The bird sees the dog and flutters away quickly.
/14
The bird flies away..
/15
The _ falls to the ground at the foot of the tree.
/16
The dog's bright eyes stare at me with mindless love.
/17
A dog is here.
/18
The dog follows me wagging its tail.
/19
A lead trails behind the dog.
/20
The dog is tied to the bench by a lead.
/21
Trustingly the dog lets me put the lead around its neck.
/22
I've tied the lead to the bench.
/23
Who should I say it to?
/24
The dog is sitting quietly.
/25
I've untied the dog from the bench.
/26
I can't see anything special about the _.
/27
There's nothing special about it.
;------------------------------------------------------------------------------
/OTX ;Object Texts
/0
A lit torch.
/1
A bag.
/2
A sandwich.
/3
An apple.
/4
A ticket.
/5
A lead.
/6
An anorak.
/7
An unlit torch.
;------------------------------------------------------------------------------
/LTX ;Location Texts
/0
The Ticket
While standing on the bus stop my bus ticket has been blown
away, can you help me to find it?
/1
I'm inside the bag!
/2
I'm standing by a bus stop, on a road which runs north to south. To the west
a park gate set in iron railings stands open.
/3
The grass on which I stand is neatly trimmed. To the north is a path and bench
while to the west is an ornamental pond.
/4
I am on a gravel path running east to west, by a park bench, to the south is a
grassy area while to the north I can see a bandstand.
/5
I am standing on the bandstand which appears to be made of orname cast iron
painted white. To the south is a path. Below the bandstand is a cellar.
/6
The sun glitters on the surface of the ornamental pond, whose watters ripple
in the gentle breeze. A path runs north towards a large tree, while to the
east is a grassy area.
/7
The path curves south and east here beside a large tree.
/8
I am sitting on a branch in a broad leaved tree, the park is spread out before me,
to the east I can see the bus stop through the gate in the railings..
/9
I'm in a dark and wet cellar below the bandstand.
;------------------------------------------------------------------------------
/CON ;Connections
/0
/1
N 2
/2
W 4
/3
N 4
W 6
NW 7
/4
N 5
E 2
S 3
SW 6
W 7
/5
S 4
SW 7
/6
N 7
NE 4
E 3
/7
U 8
NE 5
E 4
SE 3
S 6
/8
D 7
/9
;------------------------------------------------------------------------------
/OBJ ;Object Definitions
;obj starts weight c w 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 noun adjective
;num at
/0 252 1 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ TORCH LIT
/1 2 3 Y _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ BAG _
/2 254 1 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ SANDW _
/3 254 1 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ APPLE _
/4 252 1 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ TICKE _
/5 9 1 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ LEAD _
/6 253 3 _ Y _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ANORA _
/7 1 1 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ TORCH UNLIT
;------------------------------------------------------------------------------
/PRO 0 ;Main Location Loop
_ _ AT 0 ; Starting game
PROCESS 6 ; then we need init sequence
_ _ WINDOW 0 ; Select graphics window
CLEAR DarkF ; Assume light
; MINUS 2 1 ; Decrement flag 2 (See notes)
NOTZERO 0
; MINUS 3 1 ; & Flag 3 if Dark (See notes)
ABSENT 0
; MINUS 4 1 ; & Flag 4 if No Lamp (See notes)
SET DarkF ; Dark
_ _ PICTURE [Player] ; If there is a picture, Load it
DISPLAY [DarkF] ; & Display it if not dark, else CLS
_ _ WINDOW 1
NOTZERO DarkF ; Dark
SYSMESS 0
_ _ ZERO DarkF
DESC [Player] ; Doesn't exit loop now
_ _ PROCESS 3
; Now we use Process 1 as the main code loop, a return from it is the end
; of the game
_ _ PROCESS 1
;------------------------------------------------------------------------------
/PRO 1
_ _ PROCESS 4 ; Do process 2 stuff here
_ _ MINUS 5 1 ; Update auto flags
; MINUS 6 1 ; These are not supported anymore
; MINUS 7 1 ; as we use the low section as
; MINUS 8 1 ; a small stack
; NOTZERO 0 ; But should you need them
; MINUS 9 1 ; this is the Version 1 DAAD code!
; ABSENT 0
; MINUS 10 1
_ _ PARSE 0 ; Get next LS from current buffer
PROCESS 2 ; Failed cos of invalid or timeout
REDO
_ _ EQ Turns 255 ; Max for one byte
PLUS Turns+1 1
CLEAR Turns
SKIP 1
_ _ PLUS Turns 1
_ _ PROCESS 5 ; Do any commands
ISDONE ; Done something
REDO
_ _ MOVE Player ; No so try to move player
RESTART ; Absolute jump to start process 0
_ _ NEWTEXT
LT Verb 14
SYSMESS 7 ; "I can't go in that direction."
REDO
_ _ SYSMESS 8 ; "I can't do that."
REDO
;------------------------------------------------------------------------------
/PRO 2
_ _ HASAT TIMEOUT
SYSMESS 35
DONE
_ _ SYSMESS 6 ; I didn't understand
;------------------------------------------------------------------------------
/PRO 3 ; Old process 1. Note that both the response table and the old PAW
; process tables 1 and 2 can now be anywhere or completely absent. Everything
; is implemented in the DAAD language itself.
;This is better carried out thus
;_ _ NEWLINE
; ZERO DarkF ; Isn't dark
; LISTOBJ
;than the old system needed in Version 1, without accesss to DarkF
;_ _ NEWLINE
; ZERO 0 ;If it is light...
; ABSENT 0 ;and the light source is absent...
; LISTOBJ ;List the objects
;_ _ PRESENT 0 ;If the light source is present...
; LISTOBJ ;List the objects
_ _ NEWLINE
ZERO 0
LISTOBJ
_ _ NOTZERO 0
PRESENT 0
LISTOBJ
; is the dog 'ere?
_ _ SAME 13 38
NEWLINE
MESSAGE 17
EQ 14 1
MESSAGE 19
_ _ AT 4
SAME 13 38
EQ 14 2
MESSAGE 20
_ _ SAME 13 38
GT 14 2
MESSAGE 24
; is the bird there?
_ _ SAME 12 38
NEWLINE
MESSAGE 9
ISAT 4 252
MESSAGE 10
;------------------------------------------------------------------------------
/PRO 4 ; Old process 2
_ _ PROCESS 8 ; Dog
_ _ PROCESS 7 ; Bird
_ _ AT 2
CARRIED 4
NEWLINE
MESSAGE 4
NEWLINE
END
;------------------------------------------------------------------------------
/PRO 5 ; Command decoder
I _ SYSMESS 9
LISTAT CARRIED
SYSMESS 10
LISTAT WORN
DONE
EXAMI APPLE PRESENT 3
MESSAGE 0
DONE
EXAMI SANDW PRESENT 2
MESSAGE 1
DONE
EXAMI TICKET PRESENT 4
MESSAGE 2
DONE
EXAMI BENCH AT 4
MESSAGE 3
DONE
EXAMI BAG PREP IN
PRESENT 1
MESSAGE 5
LISTAT 1
DONE
EXAMI _ WHATO
LT 51 255
GT 54 252
MESSAGE 26
DONE
EXAMI _ WHATO
LT 51 255
SAME 38 54
MESSAGE 26
DONE
EXAMI _ WHATO
LT 51 255
SYSMESS 26
DONE
EXAMI _ EQ 34 255
NOTDONE
EXAMI _ MESSAGE 27
DONE
GET TICKET SAME 12 38
ISAT 4 252
CLEAR 5
NOTDONE
TIE DOG LET 34 55 ; 55 = lead
TIE LEAD PREP TO
NOUN2 BENCH
AT 4
SAME 13 38
EQ 14 1
PLUS 14 1
MESSAGE 22
DONE
TIE _ NOTDONE
UNTIE DOG LET 34 55
UNTIE LEAD AT 4
EQ 14 2
CLEAR 14
MESSAGE 25
CREATE 5
GET 5
DONE
UNTIE _ NOTDONE
SAY DOG SAME 13 38
PROCESS 9
DONE
SAY BIRD SAME 12 38
MESSAGE 8
DONE
SAY _ MESSAGE 23
DONE
GET ALL PREP OUT
NOUN2 BAG
DOALL 1
GET ALL DOALL HERE
GET _ PREP OUT
NOUN2 BAG
PRESENT 1
AUTOT 1
DONE
GET _ AUTOG
DONE
DROP ALL DOALL CARRIED
DROP _ PREP IN
NOUN2 BAG
PRESENT 1
AUTOP 1
DONE
DROP _ AT 8
WHATO
LT 51 255
EQ 54 254
MESSAGE 15
PUTO 7
DONE
DROP LEAD PREP ON
NOUN2 DOG
CARRIED 5
SAME 38 13
LET 14 1
DESTROY 5
MESSAGE 21
DONE
DROP _ AUTOD
DONE
REMOVE ALL DOALL WORN
REMOVE _ AUTOR
DONE
WEAR ALL DOALL CARRIED
WEAR _ AUTOW
DONE
DOWN _ AT 5
SET 0
GOTO 9
RESTART
UP _ AT 9
CLEAR 0
GOTO 5
RESTART
TURN TORCH PREP ON
CARRIED 7
SWAP 7 0
SYSMESS 15
DONE
TURN TORCH PREP OFF
CARRIED 0
SWAP 0 7
SYSMESS 15
DONE
CLIMB TREE AT 7
GOTO 8
RESTART
R _ RESTART
QUIT _ QUIT
END
QUIT _ DONE ;Not like QUIT on PAW
SAVE _ SAVE 0 ;ditto
RESTART
LOAD _ LOAD 0
RESTART
RAMSA _ RAMSAVE
RESTART
RAMLO _ RAMLOAD 255 ;Reload all flags
RESTART
;LOOK _ RESTART
;------------------------------------------------------------------------------
/PRO 6 ; Initialise the DAAD system
_ _ WINDOW 1 ; Windows are random
_ _ WINAT 0 0
WINSIZE 25 127 ; Maximum window
CLS
DESC 0 ; Introduction
ANYKEY
CLS
CLEAR 255 ; Clear all flags
_ _ NOTEQ 255 GFlags
CLEAR [255]
_ _ PLUS 255 1
LT 255 255 ; Will be set at end to indicate init
SKIP -2 ; has been done once
_ _ RESET ; Set objects to start location & Flag 1
LET Strength 10
LET MaxCarr 4
SET CPNoun
SET CPAdject
LET 12 8 ; Bird is on branch
LET 13 2 ; Dog is at the bus stop
LET 14 0 ; Dog is free to roam
LET 53 64 ; object lists printed as sentences
GOTO 2 ; Main game
;------------------------------------------------------------------------------
/PRO 7 ; Bird
; ticket snatching
_ _ COPYOF 4 11
SAME 11 12
ZERO 5
DESTROY 4
SAME 12 38
MESSAGE 7
; movement
_ _ EQ 12 8
ZERO 5
LET 12 5
LET 5 3
AT 8
MESSAGE 14
_ _ EQ 12 5
ZERO 5
LET 12 8
LET 5 3
AT 5
MESSAGE 14
; bird's arrival
_ _ EQ 5 3
SAME 12 38
AT 5
NEWLINE
MESSAGE 11
_ _ EQ 5 3
SAME 12 38
AT 8
NEWLINE
MESSAGE 12
; has the bird the ticket?
_ _ EQ 5 3
SAME 12 38
ISAT 4 252
MESSAGE 10
; bird and dog at the same location
_ _ SAME 12 13
LET 12 8
LET 5 3
AT 5
NEWLINE
MESSAGE 13
; bird drops ticket to peck at sandwich
_ _ COPYOF 2 11
SAME 11 12
ISAT 4 252
CREATE 4
SAME 12 38
MESSAGE 6
;------------------------------------------------------------------------------
/PRO 8 ; Dog
; Dog follows
_ _ LT 14 2
NOTSAME 13 38
NOTAT 8
COPYFF 38 13
NEWLINE
MESSAGE 18
;------------------------------------------------------------------------------
/PRO 9
_ _ PARSE 1
MESSAGE 16
DONE
SIT _ ZERO 14
SET 14
MESSAGE 24
DONE
COME _ EQ 14 255
CLEAR 14
MESSAGE 18
DONE
_ HERE EQ 14 255
CLEAR 14
MESSAGE 18
DONE
_ _ MESSAGE 16
|
b7866dd6e5c083ebf9cf45742e70f071a94e2428 | 449d555969bfd7befe906877abab098c6e63a0e8 | /52/CH1/EX1.13/Example1_13.sce | cc281d73648459f78396e0e8a42b0df59b14da83 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 193 | sce | Example1_13.sce | //Example 1.13
//Program to Compute convolution of given sequences
//x(n)=[1 2 1 1], h(n)=[1 -1 1 -1];
clear;
clc ;
close ;
x=[1 2 1 1];
h=[1 -1 1 -1];
y=convol(x,h);
disp(round(y));
|
a06ff0a6f6ff176a2a68aeed3032bc9ea4d8bfe9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1397/CH4/EX4.1/4_1.sce | 6f0bcbb1628415b316e4c3fbb2a839e068b7a8b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 403 | sce | 4_1.sce | //clc();
clear;
//To determine the change in magnetic moment
r=0.052*(10^-9); //radius of orbit in m
B=1; //magnetic field of induction in Web/m^2
e=1.6*(10^-19); //electron charge in C
m=9.1*(10^-31); //mass of electron in kg
A=(e^2)*(r^2)*B;
dmew=A/(4*m);
printf("change in magnetic moment is");
disp(dmew);
//answer in book is wrong
|
0779b10b6f68f4dbf40a7ce0b245c3782ffb80dd | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.16_20.tst | 271f052e679c4716e8009926cf5cbc914ccb75f8 | [] | 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 | 32,751 | tst | bow.16_20.tst | 16 16:0.25 17:0.047619047619047616 26:0.1111111111111111 28:0.08333333333333333 33:0.5 37:1.0 44:0.2 51:0.125 53:0.4 57:1.0 61:0.5 92:0.2 93:0.5 97:1.0 114:1.0 115:0.07142857142857142 143:1.0 146:1.0 179:0.6666666666666666 201:0.5 225:0.04 270:0.125 291:0.25 345:1.0 383:0.16666666666666666 497:0.4 568:0.5 585:0.3333333333333333 681:1.0 717:1.0 735:1.0 1203:1.0 1418:1.0 1442:1.0 1551:1.0 1726:1.0 1906:1.0 2101:1.0 2165:1.0 2235:1.0 2250:1.0 2933:1.0 4059:1.0 4379:1.0 5491:1.0 5569:1.0
16 8:1.0 16:0.25 28:0.16666666666666666 34:1.0 37:2.0 39:1.0 50:0.1 64:1.0 83:0.025 87:0.18181818181818182 97:0.5 146:1.0 168:1.0 175:0.5 207:0.5 244:1.0 245:0.2 246:1.0 248:1.0 267:1.0 269:1.0 270:0.125 271:1.0 365:1.0 424:1.0 434:1.0 647:1.0 710:1.0 753:1.0 2138:1.0 2695:1.0 2839:1.0 5491:1.0 6701:1.0
16 8:2.0 16:0.25 28:0.08333333333333333 37:1.0 48:0.09090909090909091 53:0.2 97:0.5 270:0.125 314:1.0 424:1.0 433:0.07692307692307693 710:1.0 1002:1.0 1497:1.0 1699:1.0 5219:1.0
16 8:1.0 27:0.5 28:0.08333333333333333 37:1.0 44:0.2 50:0.1 53:0.2 54:0.25 59:1.0 83:0.025 87:0.09090909090909091 91:0.14285714285714285 225:0.02 233:1.0 291:0.25 323:2.0 422:0.3333333333333333 649:1.0 735:1.0 807:0.3333333333333333 1348:1.0 1407:0.3333333333333333 1530:1.0 2116:1.0 2136:1.0 2220:0.3333333333333333 3679:1.0
16 1:0.125 8:1.0 16:0.25 28:0.16666666666666666 32:0.3333333333333333 33:0.5 37:2.0 53:0.2 57:1.0 76:0.5 87:0.18181818181818182 90:1.0 93:0.5 95:1.0 114:0.5 120:1.0 178:1.0 215:1.0 244:1.0 311:1.0 345:1.0 648:0.5 665:1.0 1238:1.0 1295:0.5 1370:1.0 1457:1.0 1683:1.0 2646:1.0
16 8:1.0 19:0.5 27:0.5 28:0.3333333333333333 32:0.6666666666666666 34:1.0 44:0.2 51:0.25 53:0.6 57:1.0 59:1.0 62:1.0 70:0.5 71:0.125 76:0.5 83:0.025 90:1.0 91:0.14285714285714285 92:0.2 114:0.5 115:0.07142857142857142 126:1.0 127:0.25 135:0.3333333333333333 201:0.5 225:0.08 238:0.3333333333333333 385:0.5 424:1.0 433:0.07692307692307693 435:0.5 497:0.4 534:1.0 634:0.5 672:0.2 789:1.0 828:1.0 880:1.0 965:1.0 1027:1.0 1055:1.0 1096:1.0 1236:1.0 1507:2.0 1587:1.0 1675:1.0 1778:1.0 1903:1.0 1918:0.5 2101:1.0 2151:1.0 2980:1.0 3611:1.0 3904:1.0 4443:1.0 4542:1.0 4610:1.0
16 8:1.0 19:0.5 26:0.1111111111111111 28:0.16666666666666666 38:0.14285714285714285 48:0.09090909090909091 53:0.6 57:1.0 76:0.5 83:0.075 84:1.0 87:0.09090909090909091 99:1.0 114:1.0 135:0.3333333333333333 146:1.0 147:1.0 175:0.5 225:0.04 433:0.07692307692307693 529:1.0 534:1.0 890:1.0 1565:1.0 2111:0.5 2151:1.0 2239:1.0 3431:1.0 3869:1.0 4422:1.0 5548:0.5 6574:1.0
16 25:0.14285714285714285 48:0.09090909090909091 57:1.0 83:0.025 86:0.2222222222222222 87:0.09090909090909091 92:0.2 114:1.5 115:0.07142857142857142 126:1.0 175:0.5 225:0.04 229:0.3333333333333333 294:1.0 323:1.0 336:1.0 377:0.5 430:0.3333333333333333 433:0.07692307692307693 766:0.3333333333333333 907:1.0 1546:1.0 1657:1.0 1893:1.0 1900:1.0 2266:0.5 2634:1.0 3049:1.0 3743:1.0 5552:1.0
16 1:0.125 8:3.0 19:0.5 26:0.1111111111111111 28:0.16666666666666666 44:0.2 50:0.2 51:0.125 53:0.2 71:0.125 93:0.5 97:0.5 127:0.25 137:0.5 146:2.0 147:1.0 433:0.07692307692307693 492:1.0 497:0.2 766:0.3333333333333333 946:1.0 1361:1.0 1565:1.0 1587:1.0 1699:1.0 2244:1.0 2777:1.0 3941:1.0 4418:1.0 5038:1.0 5235:1.0 6510:1.0
16 25:0.14285714285714285 32:0.6666666666666666 35:1.0 51:0.125 53:0.2 61:0.5 91:0.14285714285714285 99:1.0 135:0.3333333333333333 146:2.0 147:2.0 175:0.5 179:0.3333333333333333 270:0.125 291:0.25 399:1.0 475:1.0 492:1.0 514:0.5 626:1.0 891:1.0 1068:1.0 1306:1.0 1333:1.0 1440:1.0 1646:1.0 1737:1.0 5243:1.0 6522:1.0
16 51:0.125 70:0.5 71:0.125 92:0.6 135:0.3333333333333333 294:1.0 306:0.14285714285714285 323:1.0 361:0.3333333333333333 592:1.0 807:0.3333333333333333 1066:1.0 1109:1.0 1414:1.0 2011:1.0 2036:1.0 2093:1.0 2185:2.0 2206:1.0 2770:1.0 3111:0.3333333333333333 4287:1.0 5175:1.0
16 8:1.0 13:0.5 15:1.0 16:0.5 28:0.08333333333333333 34:1.0 44:0.4 51:0.125 70:0.5 87:0.09090909090909091 90:1.0 99:1.0 114:0.5 127:0.25 138:1.0 194:1.0 195:1.0 238:0.3333333333333333 270:0.125 306:0.14285714285714285 365:1.0 405:1.0 500:1.0 544:1.0 557:0.5 604:0.3333333333333333 771:1.0 798:1.0 803:1.0 954:0.5 1306:1.0 1348:1.0 2151:1.0 2397:1.0 3625:1.0 4356:1.0 4389:1.0 4390:1.0 4392:1.0 6004:1.0 6403:1.0 6587:1.0
16 19:0.75 25:0.14285714285714285 28:0.08333333333333333 40:0.16666666666666666 44:0.2 51:0.125 53:0.2 57:1.0 71:0.125 72:0.5 92:0.2 114:1.0 135:0.3333333333333333 284:0.5 332:0.5 412:1.0 433:0.07692307692307693 435:0.5 665:1.0 852:1.0 953:1.0 1238:1.0 2281:1.0 2785:1.0 3135:1.0 3366:1.0 3493:1.0 4036:1.0 4519:1.0 4536:1.0
16 1:0.125 8:1.0 16:0.25 28:0.08333333333333333 34:1.0 37:1.0 40:0.16666666666666666 44:0.2 51:0.125 57:2.0 71:0.125 87:0.09090909090909091 93:0.5 115:0.07142857142857142 135:0.3333333333333333 225:0.02 284:0.5 706:1.0 798:1.0 946:1.0 953:1.0 1306:1.0 2472:1.0 3366:1.0 3625:1.0 3976:1.0 4356:1.0 4389:1.0 4390:1.0 4392:1.0 6403:1.0 6587:1.0
16 19:0.25 28:0.08333333333333333 34:1.0 37:1.0 53:0.2 59:1.0 86:0.1111111111111111 93:0.5 115:0.07142857142857142 155:1.0 195:1.0 270:0.125 306:0.14285714285714285 634:0.5 635:1.0 1574:1.0 1605:0.5 1652:1.0 2335:1.0 2772:1.0 3495:1.0 3825:1.0
16 34:1.0 37:2.0 50:0.1 53:0.2 86:0.1111111111111111 87:0.18181818181818182 95:1.0 221:1.0 238:0.3333333333333333 436:0.14285714285714285 536:1.0 684:1.0 769:1.0 1295:0.5 1419:1.0 2559:1.0 2617:1.0 4220:1.0 6067:1.0
16 26:0.1111111111111111 34:1.0 51:0.125 92:0.2 93:0.5 127:0.25 135:0.3333333333333333 138:1.0 179:0.3333333333333333 225:0.02 290:1.0 293:0.5 428:1.0 556:1.0 634:0.5 824:1.0 1240:1.0 1642:1.0 1704:1.0 2003:1.0
16 16:0.25 20:1.0 26:0.1111111111111111 28:0.25 37:1.0 40:0.16666666666666666 59:1.0 71:0.125 87:0.18181818181818182 92:0.2 93:1.0 114:1.0 155:2.0 187:1.0 225:0.02 238:0.3333333333333333 294:1.0 345:1.0 405:1.0 492:1.0 807:0.3333333333333333 868:1.0 1096:1.0 1471:1.0 1646:1.0 1849:2.0 2003:1.0 2545:1.0 4304:1.0 5274:1.0
16 20:1.0 28:0.16666666666666666 34:2.0 37:1.0 44:0.2 48:0.09090909090909091 59:1.0 76:0.5 87:0.09090909090909091 114:1.0 115:0.07142857142857142 126:1.0 146:1.0 204:1.0 218:0.16666666666666666 248:1.0 278:1.0 306:0.14285714285714285 323:1.0 599:0.5 626:1.0 684:1.0 715:1.0 771:1.0 850:1.0 886:1.0 1167:1.0 1370:1.0 1704:1.0 1721:1.0 2706:1.0 2913:1.0 3435:1.0 4027:1.0 4337:1.0
16 16:0.25 27:0.5 28:0.3333333333333333 32:0.3333333333333333 39:1.0 44:0.2 51:0.25 53:0.2 54:0.5 83:0.025 87:0.09090909090909091 92:0.4 114:1.0 146:1.0 192:0.5 218:0.16666666666666666 225:0.02 280:1.0 286:1.0 307:0.5 328:1.0 361:0.3333333333333333 412:1.0 455:1.0 534:1.0 553:0.5 747:1.0 753:1.0 1110:1.0 1167:1.0 1469:1.0 2151:1.0 2179:1.0 2321:1.0 2339:1.0 4003:1.0 4004:1.0 4173:1.0 4179:1.0
16 16:0.5 28:0.16666666666666666 34:1.0 37:1.0 39:1.0 50:0.1 51:0.125 53:0.6 87:0.09090909090909091 97:0.5 114:0.5 207:1.0 243:0.2222222222222222 244:2.0 245:0.4 246:2.0 249:1.0 267:1.0 269:1.0 270:0.25 323:1.0 494:1.0 497:0.2 647:2.0 648:0.5 664:1.0 684:1.0 761:1.0 1110:1.0 1251:1.0 1471:1.0 1489:1.0 2654:1.0 6180:1.0
16 8:2.0 15:1.0 16:0.25 19:0.25 20:1.0 25:0.14285714285714285 26:0.1111111111111111 28:0.08333333333333333 34:1.0 44:0.2 48:0.09090909090909091 54:0.25 59:1.0 62:1.0 76:0.5 87:0.09090909090909091 90:1.0 92:0.4 97:0.5 114:0.5 126:1.0 195:1.0 218:0.16666666666666666 225:0.04 267:1.0 269:1.0 270:0.25 271:1.0 323:1.0 377:0.5 425:1.0 426:1.0 492:1.0 648:0.5 803:1.0 819:0.5 858:1.0 1143:1.0 1312:0.5 1500:1.0 1646:1.0 1684:1.0 1778:1.0 1862:1.0 1866:1.0 2220:0.3333333333333333 2250:1.0 2656:1.0 3813:1.0 4245:1.0 6312:1.0 6345:1.0
16 13:0.5 44:0.2 46:0.3333333333333333 53:0.4 59:1.0 83:0.025 91:0.2857142857142857 92:0.2 114:0.5 126:1.0 127:0.25 146:1.0 179:0.3333333333333333 201:0.5 225:0.04 306:0.14285714285714285 361:1.0 365:1.0 412:2.0 680:1.0 753:1.0 882:1.0 889:1.0 940:1.0 1051:1.0 1172:1.0 1411:1.0 1412:1.0 1413:1.0 1414:1.0 1686:1.0 1765:2.0 1814:1.0 1900:1.0 1987:1.0 2946:1.0 3281:1.0 4141:1.0
16 8:2.0 16:0.25 48:0.09090909090909091 50:0.1 51:0.125 57:1.0 87:0.09090909090909091 90:1.0 92:0.4 114:0.5 140:0.5 141:0.3333333333333333 146:1.0 155:1.0 161:1.0 180:0.25 303:1.0 323:1.0 412:2.0 475:1.0 512:1.0 648:0.5 831:1.0 846:0.3333333333333333 937:1.0 1552:0.5 1553:1.0 1584:1.0 1622:1.0 1990:0.5 2233:0.5 2494:1.0 2585:1.0 2601:1.0 2935:1.0 3281:1.0 3484:1.0 3669:1.0 3839:1.0 4617:1.0 5312:1.0
16 1:0.125 8:1.0 16:0.5 19:0.25 20:1.0 25:0.14285714285714285 27:1.0 28:0.16666666666666666 37:1.0 48:0.09090909090909091 51:0.125 53:0.2 83:0.025 87:0.09090909090909091 93:0.5 97:1.0 121:1.0 126:1.0 225:0.02 231:1.0 290:1.0 296:0.5 323:1.0 425:1.0 426:1.0 428:1.0 435:0.5 492:1.0 529:1.0 859:0.25 905:1.0 1018:1.0 1325:1.0 1348:1.0 1508:1.0 1601:1.0 1646:1.0 2013:1.0 2095:1.0 2817:1.0 3791:1.0 3877:1.0 4597:0.07692307692307693 5682:1.0
16 26:0.1111111111111111 28:0.16666666666666666 99:1.0 280:1.0 291:0.25 383:0.16666666666666666 506:0.5 606:1.0 1128:1.0 3984:1.0 3994:1.0
16 13:0.5 16:0.25 19:0.25 28:0.08333333333333333 37:2.0 50:0.1 53:0.2 57:2.0 71:0.125 87:0.09090909090909091 96:1.0 114:1.0 135:0.3333333333333333 192:0.5 221:1.0 225:0.02 238:1.0 273:1.0 291:0.25 293:0.5 346:1.0 399:1.0 530:1.0 557:0.5 666:0.5 1180:1.0 1227:1.0 1367:1.0 1588:1.0 1732:0.5 1818:1.0 1979:1.0 2011:1.0 2295:1.0 2626:1.0 2716:1.0 4014:1.0 5757:1.0 6510:1.0
16 8:1.0 16:0.25 28:0.08333333333333333 34:1.0 39:1.0 44:0.2 53:0.2 62:2.0 70:0.5 71:0.125 83:0.025 87:0.09090909090909091 91:0.14285714285714285 92:0.4 93:0.5 146:1.0 174:0.5 175:0.5 195:1.0 207:0.5 245:0.2 246:1.0 248:1.0 267:1.0 269:1.0 270:0.25 271:1.0 306:0.14285714285714285 375:1.0 399:1.0 552:0.5 648:0.5 672:0.2 1328:1.0 1346:1.0 1374:0.5 1923:1.0 2093:1.0 3066:1.0 3310:1.0 3927:1.0 4215:1.0
16 13:0.5 20:1.0 23:1.0 28:0.08333333333333333 34:3.0 37:1.0 50:0.1 57:1.0 70:0.5 72:0.5 87:0.2727272727272727 90:1.0 91:0.2857142857142857 92:0.2 93:0.5 96:1.0 97:0.5 114:0.5 126:3.0 179:0.3333333333333333 204:1.0 214:1.0 270:0.25 294:1.0 306:0.14285714285714285 323:1.0 327:0.5 338:1.0 385:0.5 557:0.5 798:2.0 803:1.0 831:1.0 963:1.0 1059:1.0 1100:1.0 1218:1.0 1266:1.0 1338:1.0 1374:0.5 1501:1.0 1590:1.0 1695:1.0 2101:1.0 2207:1.0 2864:1.0 3210:2.0 3434:1.0 4706:1.0 5136:1.0
16 8:1.0 13:0.5 19:0.25 28:0.08333333333333333 37:1.0 44:0.4 53:0.2 71:0.25 72:0.5 83:0.025 92:0.4 135:0.3333333333333333 179:0.3333333333333333 332:0.5 373:0.5 672:0.2 807:0.3333333333333333 975:1.0 1076:1.0 2244:1.0 2602:1.0 2613:1.0 2624:1.0 2629:1.0 2732:1.0 3344:1.0 3431:1.0 3500:2.0 3941:1.0 4716:1.0 4771:1.0 6731:1.0
16 8:2.0 13:0.5 19:0.25 25:0.14285714285714285 28:0.08333333333333333 39:1.0 53:0.4 72:0.5 83:0.05 86:0.2222222222222222 91:0.14285714285714285 92:0.2 93:0.5 99:1.0 114:1.0 135:0.6666666666666666 155:1.0 179:0.3333333333333333 215:1.0 225:0.02 238:0.3333333333333333 262:0.5 271:1.0 427:0.5 560:1.0 735:1.0 770:2.0 823:1.0 1236:1.0 1333:1.0 1502:1.0 1790:1.0 1972:1.0 2621:1.0 3022:1.0 4977:1.0
16 25:0.2857142857142857 26:0.1111111111111111 28:0.25 33:1.0 34:2.0 37:1.0 44:0.2 48:0.18181818181818182 50:0.1 57:2.0 72:0.5 76:0.5 83:0.025 87:0.2727272727272727 91:0.14285714285714285 92:0.2 93:1.0 95:2.0 114:0.5 115:0.07142857142857142 120:2.0 126:1.0 135:0.3333333333333333 137:0.5 155:1.0 191:0.3333333333333333 225:0.02 270:0.25 276:1.0 332:0.5 360:0.25 374:0.3333333333333333 375:1.0 481:1.0 492:2.0 494:1.0 556:1.0 738:1.0 891:1.0 1608:1.0 1699:1.0 2517:1.0 2636:1.0 4238:1.0 5141:1.0
16 8:1.0 16:0.25 19:0.25 28:0.08333333333333333 37:2.0 50:0.1 87:0.09090909090909091 92:0.2 93:1.0 99:1.0 114:1.0 223:1.0 225:0.02 260:1.0 336:1.0 385:0.5 798:1.0 803:1.0 830:1.0 846:0.3333333333333333 1119:1.0 1551:1.0 2984:1.0 3690:1.0 4993:1.0 6510:1.0
16 14:0.5 16:0.25 19:0.25 27:0.5 28:0.25 39:1.0 53:0.2 57:2.0 90:1.0 91:0.14285714285714285 92:0.4 97:0.5 114:0.5 135:0.6666666666666666 180:0.25 323:1.0 435:0.5 535:1.0 722:0.5 766:0.3333333333333333 779:1.0 789:1.0 831:1.0 882:1.0 905:1.0 1442:1.0 2013:1.0 2147:1.0 2791:1.0 2824:1.0 2925:0.5 3408:1.0 3673:1.0 3827:1.0 4175:1.0 4630:0.5 4749:1.0 5030:1.0 5115:0.5 5443:1.0
16 1:0.25 16:0.5 27:1.0 28:0.08333333333333333 37:1.0 48:0.18181818181818182 86:0.1111111111111111 90:1.0 92:0.2 93:0.5 97:1.0 127:0.25 137:0.5 179:0.3333333333333333 180:0.25 216:1.0 255:1.0 323:1.0 338:1.0 492:1.0 529:1.0 530:1.0 675:0.25 882:1.0 905:1.0 906:1.0 1448:1.0 1733:1.0 2795:1.0
16 15:1.0 16:0.5 25:0.14285714285714285 48:0.09090909090909091 61:0.5 70:0.5 92:0.2 97:0.5 114:0.5 115:0.14285714285714285 135:0.3333333333333333 174:0.5 191:0.3333333333333333 195:1.0 201:0.5 323:1.0 361:0.3333333333333333 604:0.6666666666666666 720:1.0 798:1.0 899:1.0 900:1.0 943:1.0 954:0.5 2210:1.0 2264:1.0 2266:0.5 2335:1.0 2440:1.0 2462:1.0 2924:1.0 3678:1.0 4088:0.3333333333333333 4463:1.0
16 16:0.5 27:0.5 28:0.25 34:1.0 48:0.18181818181818182 51:0.25 86:0.1111111111111111 87:0.18181818181818182 92:0.2 97:1.5 98:0.5 114:0.5 127:0.25 207:0.5 216:1.0 243:0.1111111111111111 244:2.0 245:0.2 246:1.0 255:1.0 267:1.0 269:1.0 270:0.25 276:1.0 323:2.0 338:1.0 360:0.25 494:1.0 647:1.0 659:1.0 675:0.25 743:1.0 761:1.0 798:1.0 882:1.0 1138:1.0 1570:1.0 2795:1.0
16 8:3.0 26:0.1111111111111111 27:0.5 28:0.08333333333333333 48:0.09090909090909091 53:0.2 57:1.0 64:1.0 70:0.5 87:0.09090909090909091 92:1.2 93:0.5 96:1.0 97:0.5 126:2.0 135:0.3333333333333333 141:0.3333333333333333 179:0.3333333333333333 195:2.0 218:0.16666666666666666 256:1.0 270:0.125 291:0.25 405:1.0 415:0.5 436:0.14285714285714285 504:0.3333333333333333 606:1.0 690:1.0 769:1.0 831:1.0 946:1.0 996:1.0 1058:1.0 1195:1.0 1257:1.0 1348:1.0 1458:1.0 1600:1.0 1950:1.0 2398:1.0 3013:1.0 3742:1.0 4927:0.5 4995:1.0 5786:1.0
16 1:0.125 16:0.5 18:1.0 28:0.08333333333333333 33:0.5 37:1.0 44:0.2 46:0.3333333333333333 48:0.18181818181818182 49:1.0 50:0.2 54:0.25 57:1.0 59:1.0 76:0.5 87:0.18181818181818182 91:0.14285714285714285 92:0.4 93:0.5 97:2.0 115:0.07142857142857142 179:0.3333333333333333 225:0.04 331:1.0 338:1.0 412:1.0 426:1.0 529:1.0 560:1.0 568:0.5 675:0.25 738:1.0 882:1.0 1273:1.0 1411:1.0 1495:1.0 1552:0.5 2607:1.0 2608:1.0 2819:1.0 3754:1.0 5081:1.0 5570:1.0
16 16:0.25 17:0.09523809523809523 19:0.5 28:0.3333333333333333 33:0.5 34:1.0 44:0.4 53:0.4 54:0.25 57:1.0 61:0.5 63:0.5 87:0.18181818181818182 97:0.5 126:1.0 175:0.5 207:0.5 225:0.02 245:0.2 246:1.0 267:1.0 269:1.0 270:0.125 271:1.0 285:0.5 356:1.0 399:1.0 412:1.0 480:1.0 554:0.5 585:0.3333333333333333 753:1.0 798:1.0 938:1.0 1338:1.0 2792:1.0 3754:1.0 4175:1.0 4200:1.0 5683:1.0
16 11:1.0 16:0.25 28:0.08333333333333333 34:2.0 44:0.2 62:1.0 71:0.125 87:0.2727272727272727 92:0.4 97:0.5 120:1.0 130:1.0 146:2.0 167:0.5 175:0.5 207:0.5 215:1.0 221:1.0 225:0.04 229:0.3333333333333333 245:0.2 246:1.0 247:1.0 248:1.0 249:1.0 267:1.0 269:1.0 270:0.125 271:1.0 293:0.5 306:0.2857142857142857 323:1.0 361:0.3333333333333333 405:1.0 432:1.0 435:0.5 492:1.0 634:0.5 647:1.0 761:1.0 795:1.0 934:1.0 1112:1.0 1333:1.0 1411:1.0 1548:0.5 1646:1.0 1884:1.0 2233:1.0 2261:1.0 3201:1.0 3741:1.0 3922:1.0 4076:1.0 4609:1.0
16 16:0.25 19:0.5 28:0.16666666666666666 37:2.0 39:1.0 44:0.2 50:0.1 57:1.0 87:0.2727272727272727 90:2.0 92:0.2 96:1.0 99:1.0 114:0.5 135:0.3333333333333333 137:0.5 138:1.0 155:1.0 175:0.5 229:0.3333333333333333 270:0.125 276:1.0 291:0.25 424:1.0 591:1.0 1018:1.0 1458:1.0 1502:1.0 2014:1.0 2058:1.0 2075:1.0 2111:0.5 2925:0.5 2933:1.0 3865:1.0 5819:1.0
16 1:0.125 8:2.0 25:0.14285714285714285 26:0.1111111111111111 27:0.5 28:0.25 32:0.3333333333333333 34:1.0 40:0.16666666666666666 50:0.1 53:0.2 70:0.5 87:0.09090909090909091 92:0.2 97:0.5 114:1.0 115:0.07142857142857142 118:1.0 126:2.0 174:0.5 195:1.0 225:0.02 341:1.0 393:1.0 492:1.0 535:1.0 536:1.0 813:1.0 875:1.0 943:1.0 1088:1.0 1223:1.0 1318:1.0 1530:1.0 1557:1.0 1605:0.5 1872:1.0 1983:1.0 2343:1.0 3508:1.0 4125:1.0 6096:1.0 6522:1.0
16 8:1.0 16:0.25 27:0.5 28:0.3333333333333333 44:0.2 53:0.2 93:0.5 95:1.0 115:0.07142857142857142 167:0.5 221:1.0 225:0.04 244:1.0 262:0.5 412:1.0 672:0.2 753:1.0 898:1.0 1018:1.0 1379:1.0 1436:1.0 1501:2.0 3173:1.0 3174:1.0 3616:1.0 4160:1.0 6292:1.0
16 14:0.5 16:0.25 28:0.25 37:1.0 44:0.2 50:0.1 53:0.2 57:1.0 87:0.18181818181818182 90:1.0 92:0.2 95:1.0 96:1.0 114:0.5 121:1.0 137:0.5 138:1.0 146:1.0 167:0.5 183:1.0 201:0.5 231:1.0 380:1.0 393:1.0 433:0.07692307692307693 557:0.5 604:0.3333333333333333 660:1.0 664:1.0 672:0.4 790:1.0 803:1.0 894:0.5 938:1.0 1352:1.0 1357:1.0 1405:0.5 1436:1.0 1454:1.0 1511:1.0 1670:1.0 1778:1.0 2099:1.0 2470:1.0 4181:1.0 4245:1.0 5528:1.0 5594:1.0 6213:1.0
16 28:0.08333333333333333 50:0.1 61:0.5 71:0.125 86:0.1111111111111111 87:0.09090909090909091 167:0.5 195:1.0 201:0.5 225:0.02 306:0.14285714285714285 399:1.0 753:1.0 777:1.0 898:1.0 940:1.0 1018:1.0 1497:1.0 2335:1.0 2805:1.0 3148:1.0 3764:1.0
16 14:0.5 19:0.25 27:0.5 32:0.3333333333333333 44:0.2 62:1.0 83:0.025 84:1.0 87:0.18181818181818182 90:1.0 135:0.3333333333333333 137:0.5 189:1.0 296:0.5 314:1.0 345:1.0 346:1.0 435:0.5 492:1.0 634:0.5 766:0.3333333333333333 820:1.0 830:1.0 2005:1.0 2166:1.0 2633:1.0 3193:1.0 3969:1.0 4755:1.0
16 1:0.125 8:1.0 25:0.14285714285714285 27:0.5 28:0.08333333333333333 40:0.16666666666666666 57:1.0 87:0.09090909090909091 92:0.2 97:0.5 115:0.14285714285714285 126:1.0 135:0.3333333333333333 194:1.0 218:0.16666666666666666 225:0.02 294:1.0 529:1.0 675:0.25 766:0.3333333333333333 905:1.0 922:1.0 1325:1.0 1666:1.0 2864:1.0 3998:1.0
16 8:1.0 16:0.25 19:0.25 28:0.3333333333333333 34:1.0 36:1.0 39:3.0 40:0.3333333333333333 57:1.0 86:0.1111111111111111 87:0.18181818181818182 93:0.5 97:1.0 146:1.0 155:1.0 175:0.5 192:0.5 200:0.5 207:0.5 218:0.16666666666666666 238:0.3333333333333333 243:0.1111111111111111 244:1.0 245:0.2 246:1.0 248:1.0 265:1.0 267:1.0 269:1.0 270:0.125 271:1.0 373:0.5 441:1.0 647:1.0 648:0.5 672:0.2 753:1.0 922:1.0 1128:1.0 1911:1.0 2925:0.5 3162:1.0 3463:1.0 3975:1.0 3998:1.0 6585:1.0
16 5:1.0 6:1.0 8:1.0 16:0.25 37:1.0 38:0.14285714285714285 48:0.09090909090909091 50:0.3 76:0.5 90:1.0 91:0.14285714285714285 93:0.5 97:1.0 127:0.25 161:1.0 331:1.0 346:1.0 660:1.0 675:0.25 713:1.0 882:1.0 2470:1.0 4921:1.0
16 19:0.25 27:0.5 28:0.25 32:0.6666666666666666 44:0.2 53:0.4 70:1.0 83:0.025 87:0.18181818181818182 92:0.2 146:1.0 155:1.0 174:0.5 221:1.0 231:1.0 241:1.0 256:1.0 296:0.5 375:1.0 426:1.0 494:1.0 497:0.2 544:1.0 872:1.0 875:1.0 1066:1.0 1540:1.0 1686:1.0 1705:1.0 1819:0.5 2029:1.0 2350:1.0 2510:1.0 3384:1.0 3433:1.0 4821:1.0 4906:1.0 5231:1.0 5702:1.0 5826:1.0
16 1:0.125 8:1.0 16:0.25 19:0.25 27:1.0 40:0.16666666666666666 53:0.4 70:0.5 83:0.025 87:0.09090909090909091 92:0.6 114:0.5 135:0.3333333333333333 146:2.0 165:0.2 214:1.0 248:1.0 296:0.5 306:0.14285714285714285 338:1.0 529:1.0 585:0.3333333333333333 627:1.0 666:1.0 905:1.0 1367:1.0 2244:1.0 2601:1.0 3229:1.0 3269:1.0 4384:1.0
16 19:0.25 28:0.08333333333333333 53:0.4 54:0.25 57:1.0 76:0.5 83:0.025 92:0.8 97:0.5 114:0.5 146:1.0 218:0.16666666666666666 225:0.06 228:1.0 265:1.0 280:1.0 323:1.0 336:1.0 402:1.0 412:1.0 436:0.14285714285714285 455:1.0 492:1.0 534:1.0 566:1.0 581:1.0 643:1.0 649:1.0 678:1.0 1361:1.0 1415:1.0 1502:1.0 2150:1.0 2276:1.0 2286:1.0 3366:1.0 3998:1.0 4422:1.0 4507:1.0 5265:1.0
16 19:0.25 28:0.08333333333333333 32:0.3333333333333333 44:0.2 53:0.2 57:1.0 90:2.0 92:0.4 115:0.07142857142857142 135:0.6666666666666666 180:0.25 192:0.5 244:1.0 303:1.0 549:1.0 568:0.5 590:1.0 2223:1.0
16 25:0.14285714285714285 28:0.08333333333333333 32:0.3333333333333333 37:1.0 38:0.14285714285714285 44:0.4 57:1.0 97:0.5 114:0.5 115:0.2857142857142857 137:0.5 173:1.0 201:0.5 225:0.08 269:2.0 287:1.0 306:0.14285714285714285 492:1.0 536:1.0 738:1.0 828:1.0 940:1.0 1039:1.0 1282:1.0 1378:0.5 1778:1.0 2000:1.0 2030:1.0 2321:1.0 2572:1.0 4415:1.0
16 16:0.25 19:0.25 25:0.42857142857142855 28:0.08333333333333333 32:0.3333333333333333 34:1.0 44:0.2 51:0.125 53:0.4 62:1.0 87:0.18181818181818182 114:1.0 126:1.0 175:0.5 196:1.0 207:0.5 218:0.16666666666666666 225:0.02 245:0.2 246:1.0 248:1.0 267:1.0 269:1.0 270:0.125 271:1.0 306:0.14285714285714285 392:1.0 630:1.0 647:1.0 648:0.5 664:1.0 852:1.0 2315:1.0 3306:1.0 3611:1.0 3892:1.0 3893:1.0 4238:1.0 4906:2.0
16 1:0.125 16:0.25 27:0.5 28:0.08333333333333333 37:1.0 57:1.0 99:1.0 115:0.07142857142857142 422:0.3333333333333333 453:1.0 529:1.0 659:1.0 813:1.0 889:1.0 1046:1.0 1047:1.0 1050:1.0 4014:1.0 5447:1.0
16 1:0.125 87:0.09090909090909091 137:0.5 256:1.0 567:1.0
16 16:0.25 28:0.08333333333333333 32:0.3333333333333333 44:0.4 48:0.09090909090909091 49:1.0 50:0.1 51:0.125 57:1.0 87:0.09090909090909091 97:1.0 161:1.0 241:1.0 291:0.25 293:0.5 307:0.5 331:1.0 477:1.0 675:0.25 882:1.0 1791:1.0 5048:1.0 6403:1.0
16 16:0.5 19:0.25 28:0.16666666666666666 34:1.0 44:0.4 48:0.09090909090909091 53:0.2 57:1.0 61:1.0 87:0.09090909090909091 92:0.4 97:1.0 114:0.5 241:1.0 243:0.1111111111111111 244:1.0 245:0.2 246:1.0 262:0.5 264:1.0 265:1.0 266:1.0 267:1.0 269:1.0 270:0.125 271:1.0 291:0.25 307:0.5 497:0.2 529:1.0 587:1.0 889:1.0 1068:1.0 1848:1.0 2093:1.0 2111:0.5 2298:1.0 4245:1.0 5048:1.0 6403:1.0
16 19:0.25 37:1.0 87:0.09090909090909091 92:0.2 115:0.07142857142857142 155:2.0 218:0.16666666666666666 293:0.5 307:0.5 591:1.0 1091:1.0 1357:1.0 1402:1.0 3759:1.0
16 25:0.14285714285714285 44:0.2 53:0.2 83:0.025 115:0.14285714285714285 135:0.6666666666666666 225:0.04 323:1.0 346:1.0 730:1.0 911:1.0 1258:1.0 1378:0.5 1402:1.0 1900:1.0 2179:1.0 3765:1.0 4721:1.0 5749:1.0
16 8:3.0 19:0.25 25:0.14285714285714285 27:0.5 28:0.25 48:0.09090909090909091 50:0.1 51:0.125 53:0.2 57:1.0 70:1.0 87:0.09090909090909091 90:1.0 92:0.4 126:1.0 135:0.3333333333333333 146:1.0 178:1.0 338:1.0 365:1.0 422:0.3333333333333333 426:1.0 433:0.07692307692307693 497:0.2 506:0.5 529:1.0 530:1.0 745:1.0 847:1.0 905:1.0 1090:1.0 1236:1.0 1855:1.0 3277:1.0 3278:1.0 3366:1.0 4124:1.0 4443:1.0 4921:1.0 5989:1.0
16 14:0.5 16:0.25 28:0.16666666666666666 61:0.5 70:1.0 87:0.09090909090909091 92:0.2 114:0.5 135:0.3333333333333333 175:0.5 176:0.5 227:1.0 228:1.0 338:1.0 433:0.07692307692307693 556:1.0 584:0.3333333333333333 1028:1.0 1176:0.3333333333333333 1195:1.0 1296:1.0 1376:1.0 1377:1.0 1437:1.0 1486:1.0 1540:1.0 2411:1.0 2558:1.0 4921:1.0 5253:1.0 5288:1.0 5989:1.0
16 8:1.0 16:0.25 25:0.14285714285714285 28:0.16666666666666666 32:0.3333333333333333 40:0.16666666666666666 48:0.09090909090909091 57:2.0 87:0.09090909090909091 92:0.4 114:0.5 126:1.0 137:0.5 195:1.0 218:0.16666666666666666 238:0.3333333333333333 325:0.2 360:0.25 375:1.0 422:0.3333333333333333 424:1.0 492:1.0 541:1.0 607:1.0 694:1.0 736:1.0 1548:0.5 2093:1.0 2138:1.0 3162:1.0 3605:1.0 5535:1.0 5757:1.0 5968:1.0
16 13:0.5 20:1.0 28:0.16666666666666666 44:0.4 50:0.1 53:0.4 72:0.5 87:0.09090909090909091 97:0.5 135:0.3333333333333333 141:0.3333333333333333 146:1.0 192:0.5 225:0.06 270:0.125 276:1.0 277:1.0 278:1.0 279:1.0 307:0.5 365:1.0 426:1.0 436:0.14285714285714285 585:0.3333333333333333 598:1.0 722:0.25 911:1.0 1046:1.0 1047:1.0 1911:1.0 2150:1.0 2233:0.5 3456:1.0 3669:1.0
16 28:0.08333333333333333 87:0.09090909090909091 92:0.2 97:0.5 114:0.5 115:0.07142857142857142 187:1.0 527:1.0 540:1.0 546:1.0 664:1.0 672:0.2 838:1.0 2625:1.0 2626:1.0 2627:1.0 2628:1.0 2629:1.0 3754:1.0 3763:1.0
16 19:0.25 28:0.08333333333333333 44:0.2 71:0.125 114:0.5 345:1.0 554:0.5 766:0.3333333333333333 1497:1.0 1903:1.0 1911:1.0 2321:1.0
16 16:0.25 19:0.25 28:0.16666666666666666 34:1.0 37:1.0 39:1.0 53:0.4 87:0.18181818181818182 92:0.2 93:0.5 97:0.5 155:2.0 175:0.5 207:0.5 229:0.3333333333333333 243:0.1111111111111111 244:1.0 245:0.2 246:1.0 267:1.0 269:1.0 270:0.125 271:1.0 449:1.0 591:1.0 598:1.0 648:0.5 689:0.25 1625:1.0
16 8:1.0 16:0.5 28:0.16666666666666666 57:2.0 87:0.09090909090909091 93:0.5 179:0.3333333333333333 424:1.0 510:1.0 560:1.0 846:0.3333333333333333 1548:0.5 1551:1.0 1813:1.0 2686:1.0 3120:1.0
16 25:0.2857142857142857 28:0.08333333333333333 53:0.2 71:0.125 126:1.0 137:0.5 263:1.0 492:1.0 769:1.0 922:1.0 923:1.0 1622:1.0 2030:1.0 2281:1.0 2400:1.0
16 16:0.25 20:1.0 27:0.5 28:0.08333333333333333 34:1.0 37:1.0 59:1.0 92:0.2 114:0.5 115:0.07142857142857142 135:0.6666666666666666 155:1.0 205:1.0 225:0.02 265:1.0 392:1.0 449:1.0 561:1.0 670:1.0 790:1.0 794:1.0 946:1.0 1204:1.0 1489:1.0 1501:1.0 1507:1.0 1530:1.0 1548:1.0 1787:0.5 1979:1.0 2597:1.0
16 8:1.0 28:0.16666666666666666 37:1.0 44:0.2 50:0.1 57:1.0 61:0.5 76:0.5 92:0.2 93:0.5 97:0.5 99:1.0 127:0.25 156:0.5 179:0.3333333333333333 223:1.0 225:0.06 323:1.0 383:0.16666666666666666 433:0.07692307692307693 872:1.0 900:1.0 1821:1.0 2261:1.0 3385:1.0
16 37:1.0 57:1.0 86:0.1111111111111111 87:0.18181818181818182 118:1.0 135:0.3333333333333333 146:1.0 270:0.125 276:1.0 278:1.0 280:1.0 346:1.0 385:0.5 604:0.3333333333333333 692:0.5 1196:1.0 1511:1.0 1605:0.5 1622:1.0 1625:1.0 2075:1.0 2312:1.0 3206:1.0 5683:1.0
16 9:1.0 19:0.5 26:0.2222222222222222 27:0.5 37:1.0 40:0.16666666666666666 53:0.2 59:1.0 76:0.5 86:0.1111111111111111 87:0.09090909090909091 92:0.6 121:1.0 155:1.0 218:0.16666666666666666 229:0.3333333333333333 718:1.0 722:0.25 795:1.0 840:1.0 908:1.0 1088:1.0 1625:1.0 3275:1.0 5679:1.0
16 19:0.25 25:0.14285714285714285 28:0.08333333333333333 37:1.0 43:1.0 50:0.1 53:0.4 57:1.0 87:0.09090909090909091 91:0.14285714285714285 99:1.0 137:0.5 138:1.0 225:0.02 285:0.5 291:0.25 587:1.0 769:1.0 922:1.0 923:1.0 1500:1.0 1511:1.0 1625:1.0 1997:1.0 2900:1.0 2984:1.0 3870:1.0
16 50:0.1 51:0.125 53:0.2 83:0.025 87:0.09090909090909091 115:0.07142857142857142 426:1.0 431:1.0 461:1.0 907:1.0 1508:1.0 1622:1.0 1625:1.0 3943:1.0
16 1:0.125 15:1.0 16:0.5 27:0.5 28:0.3333333333333333 34:1.0 37:1.0 44:0.4 48:0.09090909090909091 62:1.0 66:1.0 70:1.0 87:0.09090909090909091 92:0.4 114:0.5 135:0.3333333333333333 180:0.25 225:0.02 263:1.0 323:1.0 327:0.5 336:1.0 455:1.0 504:0.3333333333333333 508:1.0 954:1.0 1531:1.0 1572:1.0 1893:1.0 2014:1.0 2210:1.0 2689:0.5 2933:1.0 3174:1.0 3585:1.0 4087:1.0 4139:1.0 5290:1.0 5826:2.0 5872:1.0 6362:1.0
16 26:0.1111111111111111 28:0.08333333333333333 34:1.0 46:0.3333333333333333 57:2.0 66:1.0 70:0.5 71:0.125 92:0.4 114:0.5 134:2.0 135:0.6666666666666666 218:0.16666666666666666 263:1.0 365:2.0 427:0.5 504:0.3333333333333333 516:1.0 766:0.3333333333333333 1376:1.0 4716:1.0
16 8:1.0 19:0.25 28:0.16666666666666666 57:1.0 87:0.18181818181818182 92:0.2 135:0.3333333333333333 180:0.25 265:1.0 283:1.0 426:1.0 481:1.0 504:0.3333333333333333 954:0.5 1196:1.0 2312:1.0 3672:1.0 3742:1.0 4463:1.0 5444:1.0
16 19:0.25 28:0.08333333333333333 37:1.0 46:0.3333333333333333 57:1.0 87:0.09090909090909091 137:0.5 170:1.0 218:0.16666666666666666 516:1.0 1196:1.0 1540:1.0 1705:1.0 6135:1.0
16 1:0.125 16:0.25 17:0.047619047619047616 20:1.0 27:0.5 28:0.16666666666666666 32:0.6666666666666666 53:0.2 64:2.0 71:0.125 87:0.09090909090909091 92:0.2 97:0.5 114:0.5 115:0.07142857142857142 125:1.0 126:1.0 127:0.25 225:0.04 228:1.0 346:1.0 399:1.0 471:1.0 473:1.0 529:1.0 530:1.0 557:0.5 585:0.6666666666666666 678:1.0 735:1.0 825:1.0 853:1.0 1134:1.0 1279:1.0 1291:1.0 1440:1.0 1489:1.0 2029:1.0 2135:0.5 2136:1.0 2179:1.0 2230:0.5 3238:1.0 3365:1.0 4026:1.0
16 16:0.5 25:0.14285714285714285 28:0.08333333333333333 32:0.3333333333333333 66:1.0 86:0.2222222222222222 87:0.09090909090909091 92:0.2 93:0.5 126:1.0 135:0.3333333333333333 146:1.0 194:1.0 225:0.06 228:1.0 270:0.125 280:1.0 303:1.0 323:1.0 433:0.07692307692307693 445:1.0 753:1.0 888:0.25 891:1.0 1088:1.0 1223:1.0 2179:1.0 2620:1.0 2627:0.5 3466:1.0 3557:1.0 3661:1.0 4068:1.0 4126:1.0 4568:1.0 4706:1.0 4963:1.0 5507:1.0
16 14:0.5 27:0.5 28:0.25 38:0.14285714285714285 39:1.0 44:0.2 51:0.125 53:0.4 57:1.0 59:1.0 61:0.5 70:0.5 87:0.09090909090909091 90:1.0 92:0.2 97:0.5 115:0.14285714285714285 161:1.0 269:1.0 331:1.0 388:1.0 644:1.0 666:0.5 675:0.25 788:0.5 807:0.3333333333333333 882:1.0 1471:1.0 1666:1.0 1712:1.0 2201:1.0 2206:2.0 2207:1.0 4906:1.0
16 13:0.5 17:0.047619047619047616 27:0.5 28:0.08333333333333333 37:1.0 39:1.0 53:0.2 87:0.09090909090909091 90:1.0 92:0.8 114:0.5 115:0.07142857142857142 126:1.0 135:0.3333333333333333 192:0.5 226:1.0 311:1.0 323:2.0 361:0.3333333333333333 568:0.5 644:1.0 675:0.25 913:1.0 914:1.0 915:1.0 916:1.0 917:1.0 1395:1.0 1531:1.0 1879:1.0 2364:1.0 2753:1.0 2847:1.0 3226:1.0 5293:1.0
16 8:1.0 16:0.25 34:2.0 37:1.0 50:0.1 53:0.2 63:0.5 87:0.09090909090909091 93:0.5 97:0.5 114:1.0 115:0.07142857142857142 127:0.25 156:0.5 175:0.5 207:0.5 245:0.2 246:1.0 248:1.0 255:1.0 267:1.0 269:1.0 270:0.125 271:1.0 323:1.0 399:1.0 412:1.0 508:1.0 647:1.0 648:0.5 1395:1.0 1600:1.0 1747:1.0 1758:1.0 2398:1.0 5694:1.0
16 1:0.125 8:1.0 16:0.25 27:0.5 28:0.16666666666666666 32:0.3333333333333333 34:1.0 37:1.0 38:0.14285714285714285 39:1.0 40:0.16666666666666666 53:0.2 57:2.0 62:1.0 87:0.18181818181818182 92:0.4 93:0.5 115:0.07142857142857142 133:1.0 175:0.5 192:1.0 207:0.5 243:0.1111111111111111 244:1.0 245:0.2 246:1.0 247:1.0 249:1.0 267:1.0 269:1.0 270:0.25 271:1.0 296:0.5 365:1.0 449:1.0 492:1.0 494:1.0 529:1.0 530:1.0 940:1.0 1325:1.0 1457:1.0 1523:1.0 1981:1.0
16 13:0.5 15:1.0 16:0.25 19:0.25 28:0.08333333333333333 40:0.16666666666666666 50:0.1 57:1.0 90:1.0 92:0.4 127:0.25 135:0.6666666666666666 137:0.5 265:2.0 270:0.125 293:0.5 374:0.3333333333333333 494:1.0 1217:1.0 4439:1.0 5064:1.0
16 8:1.0 16:0.25 37:1.0 48:0.18181818181818182 50:0.2 53:0.2 57:1.0 87:0.18181818181818182 137:0.5 155:1.0 265:1.0 270:0.125 426:1.0 435:0.5 492:1.0 803:1.0 916:1.0 994:1.0 1196:1.0 1287:1.0 1508:1.0 2305:0.5 3104:1.0 4107:1.0
16 28:0.08333333333333333 39:1.0 44:0.2 51:0.125 53:0.2 54:0.25 57:2.0 59:1.0 87:0.09090909090909091 90:2.0 91:0.14285714285714285 92:0.2 114:0.5 140:0.5 141:0.3333333333333333 225:0.02 284:0.5 285:0.5 286:1.0 287:1.0 306:0.14285714285714285 323:1.0 399:1.0 1068:1.0 1497:1.0 1876:1.0 1972:1.0 3269:1.0 3749:1.0 4287:1.0 4481:1.0
16 20:1.0 28:0.08333333333333333 53:0.4 59:1.0 83:0.025 87:0.18181818181818182 92:0.2 93:0.5 95:1.0 114:0.5 120:1.0 140:0.5 155:1.0 161:1.0 244:1.0 327:0.5 338:1.0 345:1.0 361:0.3333333333333333 1090:1.0 1361:1.0 1813:1.0 1814:1.0 2853:1.0 3061:1.0 3069:1.0 3197:1.0 4544:1.0 4749:1.0 4990:1.0
16 19:0.25 28:0.08333333333333333 44:0.2 53:0.2 59:1.0 70:0.5 83:0.025 86:0.1111111111111111 121:1.0 175:0.5 176:0.5 191:0.3333333333333333 192:0.5 225:0.04 306:0.2857142857142857 323:1.0 341:1.0 426:1.0 430:0.3333333333333333 649:1.0 675:0.25 742:1.0 1325:1.0 1370:1.0 1378:0.5 1557:1.0 1590:1.0 1642:1.0 1712:1.0 2097:1.0 2151:1.0 2911:1.0 4065:1.0 5090:1.0
16 8:1.0 14:0.5 16:0.25 17:0.047619047619047616 27:0.5 48:0.09090909090909091 50:0.1 53:0.2 87:0.18181818181818182 93:0.5 114:0.5 155:1.0 218:0.16666666666666666 270:0.125 436:0.14285714285714285 529:1.0 891:1.0 1481:1.0 1958:1.0
16 15:1.0 24:1.0 28:0.5833333333333334 32:0.3333333333333333 44:0.2 57:2.0 66:1.0 91:0.2857142857142857 114:0.5 115:0.07142857142857142 135:0.3333333333333333 160:1.0 192:1.0 218:0.16666666666666666 229:0.3333333333333333 255:2.0 256:1.0 338:1.0 366:1.0 387:1.0 426:1.0 490:1.0 672:0.2 925:1.0 1138:1.0 1260:1.0 1502:1.0 1759:1.0 3135:1.0 3485:1.0 3678:1.0 3689:1.0 3767:1.0 4488:1.0 5644:1.0 5891:1.0 6175:1.0
16 24:1.0 28:0.16666666666666666 33:0.5 34:1.0 44:0.2 87:0.09090909090909091 91:0.14285714285714285 114:0.5 115:0.07142857142857142 127:0.25 225:0.02 231:1.0 280:1.0 291:0.5 807:0.3333333333333333 1454:1.0 1533:1.0 2058:1.0 2933:1.0 5150:1.0 5435:1.0 6018:1.0
16 59:1.0 92:0.2 97:0.5 114:0.5 168:1.0 192:0.5 225:0.02 306:0.14285714285714285 492:1.0 701:0.3333333333333333 1052:1.0 1374:0.5 1548:0.5 1625:1.0 2064:1.0 2276:1.0 2499:1.0 2913:1.0 3183:1.0
16 16:0.25 19:0.25 24:1.0 28:0.16666666666666666 48:0.09090909090909091 57:2.0 70:0.5 92:0.4 99:1.0 114:1.0 138:1.0 175:0.5 176:0.5 179:0.3333333333333333 225:0.02 265:1.0 293:1.0 306:0.2857142857142857 323:1.0 385:0.5 395:1.0 504:0.3333333333333333 556:1.0 788:0.5 862:1.0 954:0.5 959:2.0 1027:1.0 1028:1.0 1261:1.0 1302:1.0 1497:1.0 1891:1.0 2158:1.0 2998:1.0 3626:1.0 4541:1.0 5285:1.0
16 16:0.25 24:1.0 28:0.16666666666666666 44:0.2 50:0.1 53:0.2 57:1.0 71:0.125 92:0.2 114:0.5 135:0.3333333333333333 156:0.5 238:0.3333333333333333 255:1.0 310:1.0 452:1.0 491:1.0 672:0.2 1408:1.0 1477:1.0 1676:1.0 4821:1.0 6018:1.0
16 1:0.125 19:0.25 27:0.5 28:0.25 34:1.0 37:1.0 44:0.2 50:0.1 57:1.0 87:0.18181818181818182 92:0.2 93:0.5 114:0.5 138:1.0 146:1.0 202:1.0 225:0.02 245:0.2 269:1.0 316:1.0 402:1.0 473:1.0 529:1.0 530:1.0 948:1.0 1676:1.0 1686:1.0 1687:1.0 3649:1.0 3697:1.0 4014:1.0 5679:1.0 5877:1.0
16 16:0.5 17:0.047619047619047616 19:0.5 26:0.1111111111111111 34:2.0 51:0.125 53:0.4 83:0.025 86:0.1111111111111111 87:0.09090909090909091 90:1.0 92:0.4 93:0.5 97:0.5 111:1.0 114:1.0 115:0.07142857142857142 116:1.0 117:1.0 155:1.0 217:0.16666666666666666 229:0.3333333333333333 238:0.3333333333333333 291:0.25 332:0.5 361:0.3333333333333333 634:0.5 635:1.0 672:0.2 675:0.25 689:0.25 868:1.0 940:1.0 1295:0.5 1507:1.0 2061:1.0 2226:1.0 2336:1.0 3746:1.0 4245:1.0
|
6541e28a17f6a2adb690a47e511e65fb2ff67e25 | 3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc | /Área 1/Revisão P1/SolveU.sce | 0b21a4b3dbffb14e3731b63208c8f55affa6b288 | [
"MIT"
] | permissive | JPedroSilveira/numerical-calculus-with-scilab | 32e04e9b1234a0a82275f86aa2d6416198fa6c81 | 190bc816dfaa73ec2efe289c34baf21191944a53 | refs/heads/master | 2023-05-10T22:39:02.550321 | 2021-05-11T17:17:09 | 2021-05-11T17:17:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 390 | sce | SolveU.sce | //Soluciona uma matriz triângular inferior
function [x] = solveU(U,b)
n = size(U,1)
x(n) = b(n)/U(n,n)
for i=n-1:-1:1 //De n-1 até 1 pulando de -1 em -1
x(i) = (b(i) - U(i, i+1:n)*x(i+1:n))/U(i,i)
end
endfunction
//Exemplo
M = [1 2 3 4; 0 5 6 7; 0 0 8 9; 0 0 0 10]
b = [5 4 4 2]'
x = solveU(M,b)
disp(x)
//Verifica a resposta, M*x tem que ser igual a b
disp(M*x)
|
948742d004835d186e17a022ce1efb3c8c8b4139 | 332591267a67ee8dd24d7949c1fda10218bf21a9 | /SMTTests/tests/ok_ALL2_logic_8.tst | ab277282a2074fb16b9aba9f198c93b0fcc73ee3 | [] | no_license | OpenJML-SeniorDesign/jSMTLIB | 1914f3c36e7e07733834514edb4cc040354f245d | a109b104f3c294d322de0aa12d2b70b96dcf51f4 | refs/heads/master | 2023-08-27T11:59:47.972797 | 2021-10-20T13:44:16 | 2021-10-20T13:44:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 502 | tst | ok_ALL2_logic_8.tst | ; Using ALL logic with bit-vectors and integers
; 8-bit so as to run much faster
(set-option :produce-models true)
(set-logic ALL)
(declare-fun b () (_ BitVec 8))
(define-fun bb () (_ BitVec 8) (bvneg (bvand (bvneg b) #xf0))) ; rounds up to multiple of 16
(declare-fun n () Int )
(assert (= n ((_ bv2int 8) b)))
(declare-fun nn () Int )
(assert (= nn ((_ bv2int 8) bb)))
(assert (bvult b #xf0))
(assert (not (and (>= nn n) (>= (+ n 15) nn) (= (mod nn 16) 0) )))
(check-sat) ; result should be unsat
|
b50c800e3a9e59ae0353642edd32c2f06ee0010a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH2/EX2.3/Ex2_3.sce | 2821ad5b1f163a3d4ddb1f59e9f5b920e7dd6cf0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,258 | sce | Ex2_3.sce |
// ELECTRICAL MACHINES
// R.K.Srivartava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 2 : FORCES IN AN ELECTROMAGNETIC SYSTEMS
// EXAMPLE : 2.3
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
F = 35; // Total MMF in Amphere-Turns
Lc = 0.1; // Inductance of The Material "c" in Henry
a = 0.001; // Area of the all Materials "a,b,c" in Metre-Square
// CALCULATIONS
Hc = F/Lc; // Field Intensity in Amphere-Turns/Meter (Given that entire MMf apperas on Material "c" Because of the highest reluctance about 45000 MKS unit From Example 2.2)
Bc = 0.65; // Flux density of material "c" in in Telsa obtained from the Standard B-H curve
phi = Bc*a; // Flux in the core in Weber
Ba = Bc; // Flux density of material "a" in in Telsa Same because Area of Cross Section is Same
Bb = Bc; // Flux density of material "b" in in Telsabecause Area of Cross Section is Same
// DISPLAY RESULTS
disp("EXAMPLE : 2.3 : SOLUTION :-") ;
printf("\n (a) Flux in the core , phi = %.5f Wb \n ",phi);
printf("\n (b) Flux density of material a,b,c , Ba = Bb = Bc %.2f T \n",Ba);
|
0b5d3ebf7936428281163c22d9e575637a2eaf42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2132/CH4/EX4.2/Example4_2.sce | 56b3bd276b528fcd9614f7e22daad3405810ed2c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | Example4_2.sce | //Example 4.2
clc;
clear;
close;
format('v',9);
//Given data :
w=1000;//kg/m^3
h=50/1000;//m
p=w*h;//kg/m^2
p=p*9.81;//N/m^2 or Pa
disp(p,"Pressure Intensity in Pa : ");
alfa=30;//degree
h=50;//mm
l=h/sind(alfa);//mm
disp(l,"Reading in tube in mm : ");
|
9b73aac1e78b8103f9c1eac907c5179a9df4051e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1100/CH14/EX14.8/14_8.sce | d5d14d21054646afdbad440e9b67f0ae47fd9c18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 158 | sce | 14_8.sce | clc
//initialisation of variables
h= 19500 //Btu
w= 700 //lb/hr
Q= 10240000
//CALCULATIONS
Q1= w*h
e= Q/Q1
//RESULTS
printf ('Efficiency= %.2f ',e)
|
a279b3232135b93cb0bc55397fe994ef4e63f803 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2966/CH1/EX1.3.17/1_3_17.sce | 1a7bf03a89bd770397b157ef999e33a8dd3d6cf7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 876 | sce | 1_3_17.sce | //water//
//page 1.17 example 3//
clc
conc_SH=1/1000//in terms of g/lit//
strength_SH=conc_SH*1000//in terms of mgs/lit//
volume_SH=50//in terms of ml//
volume_H=50//in terms of ml//
EDTA_SH=20//volume for Std hardwater(ml)//
EDTA_H=25//volume for sample hardwater(ml)//
AB_EDTA=18//volume required after boiling(ml)//
CaCO3_equivalent_SH=strength_SH*volume_SH//in terms of CaCO3 equivalent//
one_ml_EDTA=CaCO3_equivalent_SH/EDTA_SH//in terms of CaCO3 equivalent//
To_sample=one_ml_EDTA*EDTA_H/volume_H//total hardness for given volume//
To=To_sample*1000//total hardness per litre(ppm)//
P_sample=AB_EDTA*one_ml_EDTA/volume_H//permanent hardness for given volume//
P=P_sample*1000//permanent hardness per litre(ppm)//
T=To-P
printf("\nTotal Hardness is %.f ppm",To);
printf("\nPermanent Hardness is %.f ppm",P);
printf("\nTemporary Hardness is %.f ppm",T); |
6aaa0738fd54707cb5b0ff01005455ff71dd9476 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH9/EX9.7/Ex9_7.sce | e44c0e90185214746f88a84486a13f8c1d60780a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 365 | sce | Ex9_7.sce | clc;
close();
clear();
//page no 319
//prob no. 9.7
//all time in ms
//all frequencies in kHz
W=5;
N=8; //bits
k=19+1; //word
fs=2*W;
mprintf('fs=%i kHz\n',fs);
Tf=1/fs;
mprintf(' Tf=%.1f ms\n',Tf);
Tw=Tf/k;
mprintf(' Tw=%i micro second\n',Tw*10^3);
tau=Tw/N;
mprintf(' tau=%.3f micro second\n',tau*10^3);
Bt=0.5/tau;
mprintf(' Bt=%ikHz',Bt);
|
82661c6e0982b52549b436251ed668213ad4a9a8 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/JP01.prev.tst | 31f8f7368c00af8d0670e494fe96788048863e85 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 620 | tst | JP01.prev.tst | A000000 dex 1 ;mod(;17;3;,;mod);2;mod(;18;10;,;mod);*;+ true 10 mod(17,3) + 2 mod(18,10) A B 0
A074785 dex 0 ;0;log(;log(;2;log);log);- true 10 -log(log(2)) A B 0
A074916 dex 1 ;pi;e;+;2;/ true 10 (pi+e)/2 A B 0
A074921 dex 0 ;pi;e;+;2;/;sqrt(;pi;e;*;sqrt);- true 10 (pi+e)/2-sqrt(pi*e) A B 0
A074948 dex 1 ;sqrt(;pi;2;^;e;2;^;+;2;/;sqrt) true 10 sqrt((pi^2+e^2)/2) A B 0
A075549 dex 0 ;9;12;log(;2;log);*;- true 10 9-12*log(2) A B 0
A076668 dex 0 ;sqrt(;2;pi;/;sqrt) true 10 sqrt(2/pi) A B 0
A077453 dex 1 ;1;sqrt(;11;sqrt);sqrt(;29;sqrt);sqrt(;5;sqrt);+;*;24;/;+ true 10 1+sqrt(11)*(sqrt(29)+sqrt(5))/24 A B 0
|
56ffe1eb721b0fd0ebae3fb9c46ef94e00305dae | 449d555969bfd7befe906877abab098c6e63a0e8 | /67/CH1/EX1.14.a/example114a.sce | a03938de5e60483c9a28cd18fbc5accce24cf79f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 438 | sce | example114a.sce | //Example 1.14a
clc;
x=[1,2,3,4,0,4,3,2,1]
t=-length(x)/2:length(x)/2
count=0
mid=ceil(length(x)/2)
y=zeros(1,length(x))
y(mid+1:$)=x($:-1:mid+1)
for t=-1:-1:-mid
y(t+1+mid)=x(-t)
end
for i=1:length(x)
if(y(i)==x(i))
count=count+1
end
end
if(count==length(x))
disp('THE GIVEN SYSTEM IS CAUSAL')
else
disp('Since it depends on future values')
disp('THE GIVEN SYSTEM IS NON CAUSAL')
end |
3717c827d27cc786f21cda35cfc1381ff1426868 | 5900f4bae371f44e90fa8de76d746cc470223e04 | /src/define_oil_characteristics.sce | 1577e2f74d19cd3f48cdd93bd88abb61ef9a6785 | [] | no_license | olgerd27/union__gte_reducer_oil | 6400148e100224e0c59c4ca807afa5de07ffcb09 | be994038b218ba7cac13b59faf2391a8e2bdd861 | refs/heads/master | 2021-01-10T20:21:06.558271 | 2014-10-01T06:56:23 | 2014-10-01T06:56:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 16,126 | sce | define_oil_characteristics.sce | // PERFORMING A DEFINITION OF GTE's and OIL's SYSTEMS CHARACTERISTICS
tic;
xdel(winsid());
clear;
stacksize(5e7);
warning('off');
printf("*********************\n");
printf("* START application *\n");
printf("*********************\n");
// Additional definitions for start programm execution
TRUE = %T; FALSE = %F; // true-false definition
GTE_OIL = 1; RED_OIL = 2; // 1 - GTE diagnostics oil's system, 2 - reducer diagnostics oil's system
function path = getExecScriptPath()
//***************************************************************
// Function for obtain the current execution script file path *
//***************************************************************
[u, t, n] = file();
index = grep(n, "/(?:.*\.sci|.*\.sce)$/", "r");
path = fileparts(n(index(1)));
endfunction
// INITIAL DATA
gte_numb = 3; // The GTE DA91 number
diag_sys = RED_OIL; // The PKSTD diagnostics system
sectorLength = 1200; // Length of splitting sectors
sectorShift = 300; // Shift of sector with length sectorLength in every main cycle iteration
modelLength = 600; // Length of the data model for performing of the forecasting temperature parameters on steady modes
forecastInterval = 300; // Interval for the forecasting temperature parameters on steady modes
importSteady = TRUE; // Import calculated steady mode points to the text file: TRUE - perform, FALSE - don't perform
if ~importSteady
if diag_sys == GTE_OIL
UGt_strange = 10; // Settings Gt strange for defining the steady modes of GTE's work
Un2_xx = 5500; // Settings XX by n2 parameter for defining the steady modes of GTE's work
else
Ungv_strange = 5; // Settings ngv strange for defining the steady modes of reducer's work
Ungv_min = 40; // Settings ngv min value for defining the steady modes of reducer's work
end
Udtm_valid_min = 0; // Settings dtm min value for defining the invalid points
Udtm_valid_max = 80; // Settings dtm max value for defining the invalid points
end
if diag_sys == RED_OIL
Nnom = 20020; // The reducer power on the nominal reducer's work mode
ngv_nom = 240; // Rotation speed of the reducer outlet shaft on the nominal reducer's work mode
end
plotGraphs = TRUE; // Graphs plot: TRUE - perform, FALSE - don't perform
plotGraphsSameWin = TRUE; // Plot graphs, some quantity of that is placed on a same window: TRUE - perform, FALSE - don't perform
exportSteadyPoints = FALSE; // Export steady mode points in the text file: TRUE - perform, FALSE - don't perform
exportResToTxtFile = TRUE; // Export the oil's characteristics points values in a text file: TRUE - perform, FALSE - don't perform
exportResToImgFiles = TRUE; // Export plotted the oil's characters points values in a graphics files with "png" extension:
// TRUE - perform, FALSE - don't perform
// The initial characteristics Ngte = f(p2) from a set of thermodynamics characteristics
p2_init = [2.000; 2.870; 3.740; 4.620; 5.490; 6.710; 7.200; 7.580; 8.140; 9.070; 10.020; 10.980; 12.000;
12.980; 14.020; 14.990; 16.254; 17.467; 18.630; 19.792];
Ngte_init = [56.5; 367.9; 730.8; 1121.4; 1633.95; 2558.71; 2930.14; 3218.18; 3642.66; 4438.17; 5347.96;
6375.57; 7756.61; 9121.91; 10601.46; 12011.48; 14013.4; 16015.31; 17966.03; 20019.14];
// Indexes of the oil's parameters
INIT_VALUE = 0; index_in = INIT_VALUE; index_out = INIT_VALUE; // initialization
if diag_sys == GTE_OIL
index_in = 1; index_per = 2; index_tkvd = 3; index_tnd = 4; index_tv = 5; index_out = 6;
else
index_in = 1; index_out = 2;
index_tz01a = 3; index_tz01b = 4; index_tz02a = 5; index_tz02b = 6; index_tz02c = 7; index_tz02d = 8;
index_tz03a = 9; index_tz03b = 10; index_tz03c = 11; index_tz03d = 12; index_tz04a = 13; index_tz04b = 14;
index_tz05a = 15; index_tz05b = 16; index_tz06a = 17; index_tz06b = 18; index_tz07a = 19; index_tz07b = 20;
index_tz08a = 21; index_tz08b = 22; index_tz09a = 23; index_tz09b = 24; index_tz10a = 25; index_tz10b = 26;
index_tz11a = 27; index_tz11b = 28;
end
// Polynomial powers that describe the oil's characteristics dtX = f(Ngte)
if diag_sys == GTE_OIL
polynPow(index_per - index_in) = 2; // dtm_per
polynPow(index_tkvd - index_in) = 2; // dtm_tkvd
polynPow(index_tnd - index_in) = 2; // dtm_tnd
polynPow(index_tv - index_in) = 2; // dtm_tv
polynPow(index_out - index_in) = 2; // dtm_gte_out
else
polynPow(index_out - index_in) = 1; // dtm_red_out
polynPow(index_tz01a - index_in) = 1; // dtz1a
polynPow(index_tz01b - index_in) = 1; // dtz1b
polynPow(index_tz02a - index_in) = 1; // dtz2a
polynPow(index_tz02b - index_in) = 1; // dtz2b
polynPow(index_tz02c - index_in) = 1; // dtz2c
polynPow(index_tz02d - index_in) = 1; // dtz2d
polynPow(index_tz03a - index_in) = 1; // dtz3a
polynPow(index_tz03b - index_in) = 1; // dtz3b
polynPow(index_tz03c - index_in) = 1; // dtz3c
polynPow(index_tz03d - index_in) = 1; // dtz3d
polynPow(index_tz04a - index_in) = 1; // dtz4a
polynPow(index_tz04b - index_in) = 1; // dtz4b
polynPow(index_tz05a - index_in) = 1; // dtz5a
polynPow(index_tz05b - index_in) = 1; // dtz5b
polynPow(index_tz06a - index_in) = 1; // dtz6a
polynPow(index_tz06b - index_in) = 1; // dtz6b
polynPow(index_tz07a - index_in) = 1; // dtz7a
polynPow(index_tz07b - index_in) = 1; // dtz7b
polynPow(index_tz08a - index_in) = 1; // dtz8a
polynPow(index_tz08b - index_in) = 1; // dtz8b
polynPow(index_tz09a - index_in) = 1; // dtz9a
polynPow(index_tz09b - index_in) = 1; // dtz9b
polynPow(index_tz10a - index_in) = 1; // dtz10a
polynPow(index_tz10b - index_in) = 1; // dtz10b
polynPow(index_tz11a - index_in) = 1; // dtz11a
polynPow(index_tz11b - index_in) = 1; // dtz11b
end
if ~importSteady
// Setting archives path, names and extension
filesArchive = [
'mo_2008_9_9_15_44_6'; 'mo_2008_9_12_9_4_48'; 'mo_2008_9_12_14_18_12'; 'mo_2008_9_19_15_58_17';
'mo_2008_9_24_10_25_12'; 'mo_2008_10_2_9_11_35'; 'mo_2008_10_6_9_55_23'; 'mo_2008_10_8_11_0_6';
'mo_2008_10_24_13_59_25'; 'mo_2008_10_27_11_2_41'; 'mo_2008_10_27_15_50_49'; 'mo_2008_10_29_12_58_49(dobav)';
'mo_2008_11_1_8_26_1'; 'mo_2008_11_4_14_28_8'; 'mo_2008_11_5_10_23_3'; 'mo_2009_2_26_12_33_16';
'mo_2009_2_26_15_42_48'; 'mo_2009_2_27_9_27_46'; 'mo_2009_3_4_15_16_16(soed)'; 'mo_2009_3_5_15_19_14';
'mo_2009_3_6_10_35_11'; 'mo_2009_3_10_15_52_41(soed)'; 'mo_2009_3_12_14_44_25'];
//path_archives = "/media/oleg/users/Oleg/work_zm/export/GTA_M56/Archivs/GTE_DA91_#2_3/GTE_DA91_#3";
path_archives = "D:\work\GTA_M56\Archivs\GTE_DA91_#2_3\GTE_DA91_#3";
end
// Names of oil's temperatures
if diag_sys == GTE_OIL
t_names(index_in) = 'tm_gte_in'; t_names(index_per) = 'tm_per';
t_names(index_tkvd) = 'tm_tkvd'; t_names(index_tnd) = 'tm_tnd';
t_names(index_tv) = 'tm_tv'; t_names(index_out) = 'tm_gte_out';
else
t_names(index_in) = 'tm_red_in'; t_names(index_out) = 'tm_red_out';
t_names(index_tz01a) = 'tz01a'; t_names(index_tz01b) = 'tz01b';
t_names(index_tz02a) = 'tz02a'; t_names(index_tz02b) = 'tz02b';
t_names(index_tz02c) = 'tz02c'; t_names(index_tz02d) = 'tz02d';
t_names(index_tz03a) = 'tz03a'; t_names(index_tz03b) = 'tz03b';
t_names(index_tz03c) = 'tz03c'; t_names(index_tz03d) = 'tz03d';
t_names(index_tz04a) = 'tz04a'; t_names(index_tz04b) = 'tz04b';
t_names(index_tz05a) = 'tz05a'; t_names(index_tz05b) = 'tz05b';
t_names(index_tz06a) = 'tz06a'; t_names(index_tz06b) = 'tz06b';
t_names(index_tz07a) = 'tz07a'; t_names(index_tz07b) = 'tz07b';
t_names(index_tz08a) = 'tz08a'; t_names(index_tz08b) = 'tz08b';
t_names(index_tz09a) = 'tz09a'; t_names(index_tz09b) = 'tz09b';
t_names(index_tz10a) = 'tz10a'; t_names(index_tz10b) = 'tz10b';
t_names(index_tz11a) = 'tz11a'; t_names(index_tz11b) = 'tz11b';
end
//=============================================================================================================================
// LOADING additional files with functions
path_sourceFiles = getExecScriptPath();
names_sourceFiles = [
"add_functions.sci";
"in_out_functions.sci";
"special_functions.sci";
];
for i = 1 : size(names_sourceFiles, 'r')
exec(path_sourceFiles + names_sourceFiles(i)); // loading functionality from the script files
end
//=============================================================================================================================
// INITIALIZATION
// index_in and index_out
if (index_in == INIT_VALUE) | (index_out == INIT_VALUE)
printf("[INFO]: The ""index_in"" or ""index_out"" is not defined in the INITIAL DATA section\n");
return;
end
// params indexes arrays
if diag_sys == GTE_OIL
params_indexes = [index_in; index_per; index_tkvd; index_tnd; index_tv; index_out];
else
params_indexes = [index_in; index_out;
index_tz01a; index_tz01b; index_tz02a; index_tz02b; index_tz02c; index_tz02d; index_tz03a; index_tz03b;
index_tz03c; index_tz03d; index_tz04a; index_tz04b; index_tz05a; index_tz05b; index_tz06a; index_tz06b;
index_tz07a; index_tz07b; index_tz08a; index_tz08b; index_tz09a; index_tz09b; index_tz10a; index_tz10b;
index_tz11a; index_tz11b];
end
count_tmParams = length(params_indexes); // quantity of the temperature
count_dtmParams = count_tmParams - 1; // quantity of the temperatures delta's
for i = 1 : count_dtmParams
dt_names(i) = 'd' + t_names(i + 1); // names of the temperatures delta's
end
// Structure for storing parameters data, readed from an archive file
if diag_sys == GTE_OIL
index_t0 = 1; index_Gt = 2; index_reg = 3; index_n2 = 4; index_tm = 5; // parameters indexes
params(index_t0) = struct('name', 't0', 'archIndexStart', 16, 'archIndexEnd', 18, 'data', []);
params(index_Gt) = struct('name', 'Gt', 'archIndexStart', 120, 'archIndexEnd', 120, 'data', []);
params(index_reg) = struct('name', 'p2', 'archIndexStart', 38, 'archIndexEnd', 38, 'data', []);
params(index_n2) = struct('name', 'n2', 'archIndexStart', 10, 'archIndexEnd', 10, 'data', []);
params(index_tm) = struct('name', t_names, 'archIndexStart', 47, 'archIndexEnd', 52, 'data', []);
else
index_reg = 1; index_tm = 2; // parameters indexes
params(index_reg) = struct('name', 'ngv', 'archIndexStart', 14, 'archIndexEnd', 14, 'data', []);
params(index_tm) = struct('name', t_names, 'archIndexStart', 53, 'archIndexEnd', 80, 'data', []);
end
colors = [1, 2, 3, 5, 19, 16, 27, 22, 13, 6, 9, 32, 28, 21, 25, 23, 26, 17];
// INITIAL DATA FOR EXPORT
// Relative path's for data saving
path_dataRltv = "data"; // ralative path for all external data storing
path_intRltv = "int"; // relative path for saving internal data, that is need for programm work
path_resRltv = "out"; // relative path for saving results data
path_GTERltv = "gte"; // relative path for saving the GTE's results characteristics
path_reducerRltv = "reducer"; // relative path for saving the reducer's results characteristics
path_steadyRltv = "steady_modes"; // relative path for saving the steady mode points values
path_resTxtRltv = "txt"; // relative path for saving the text result
path_resImageRltv = "images"; // relative path for saving the images
// Define the result relative path in accordance with type of current PKSTD diagnostics system
if diag_sys == GTE_OIL
path_diagSysRltv = path_GTERltv;
else
path_diagSysRltv = path_reducerRltv;
end
sep = filesep(); // the dirs separator
// Results paths
// get a root path
indexes_sep = strindex(path_sourceFiles, sep);
index_last_ch = indexes_sep(length(indexes_sep) - 1) - 1; // index to last character before the last dir: [THIS INDEX]/[DIR NAME]/
path_root = part(path_sourceFiles, 1 : index_last_ch);
// forming the aim absolute paths
path_data = path_root + sep + path_dataRltv; // absolute path for all external data storing
path_int = path_data + sep + path_intRltv; // absolute path for saving the internal data
path_res = path_data + sep + path_resRltv; // absolute path for saving the results data
path_steady = path_int + sep + path_diagSysRltv + sep + path_steadyRltv; // the steady modes points absolute path
path_resTxt = path_res + sep + path_diagSysRltv + sep + path_resTxtRltv; // the text results absolute path
path_resImage = path_res + sep + path_diagSysRltv + sep + path_resImageRltv; // the graphic results absolute path
// Files extensions
ext_archive = 'txt'; // archives in-files extension
ext_steady = 'dat'; // steady out- and in-files extension
ext_out_images = 'png'; // images out-files extension
ext_out_txt = 'rez'; // text out-files extension
// Identification current calculation: [gte_numb]_[sectorLength]_[sectorShift]_[modelLength]_[forecastInterval]
str_currCalcIdentif = 'gn=' + string(gte_numb) + '_sl=' + string(sectorLength) + '_ss=' + string(sectorShift) + ..
'_ml=' + string(modelLength) + '_fi=' + string(forecastInterval);
steadyFileName = str_currCalcIdentif + '.' + ext_steady; // the steady mode points full file name
resTxtFileName = str_currCalcIdentif + '.' + ext_out_txt; // the text results file name full file name
//=============================================================================================================================
// CALCULATIONS
if importSteady
[reg_all, dtm_all] = importSteadyPoints(path_steady, sep, steadyFileName);
else
[reg_all, dtm_all] = calcSteadyPoints();
end
count_steadyModes = length(reg_all); // quantity of the all obtained steady modes points
count_initCharsPnts = length(Ngte_init); // quantity of points in initial characteristics (values in every array)
// Define the power (N) values
if diag_sys == GTE_OIL
N_all = p2ToPower(reg_all, count_steadyModes, p2_init, Ngte_init);
else
N_all = ngvToPower(reg_all, Nnom, ngv_nom);
end
// Sort Ngte parameters array values in growing order and corresponding interchange of placements values of the "dtm" parameter arrays
[N_all, dtm_all_sort] = sortByX(N_all, dtm_all);
// Steady mode points approximation for obtaining the results characteristics
dtm_apr = approximation(N_all, dtm_all_sort, Ngte_init, polynPow, count_initCharsPnts, count_dtmParams);
//-----------------------------------
// Calc variance of the normalized steady mode points
dtm_all_apr = [];
for j = 1 : count_steadyModes
for i = 1 : count_dtmParams
dtm_all_apr(j, i) = interExtraPolation(Ngte_init, dtm_apr(:, i), N_all(j));
end
end
dtm_all_dev = dtm_all_sort - dtm_all_apr; // deviation steady mode points from the approximation line
printf("variance = %f\n", variance(dtm_all_dev));
//-------------------------------------
printf("[INFO]: Characteristics was defined. Steady mode points quantity: %i\n", count_steadyModes);
//=============================================================================================================================
// SHOW RESULTS
// Show results processing
str_datetime = getDateTimeString();
// Graphics plot
if plotGraphs
plotResults(N_all, dtm_all_sort, Ngte_init, dtm_apr, ..
count_dtmParams, plotGraphsSameWin, dt_names, 'Ngte', str_datetime);
end
// SAVE RESULTS
// Export steady mode points in a text file
if exportSteadyPoints & ~importSteady
saveSteadyPoints(path_steady, sep, steadyFileName, reg_all, dtm_all);
end
// Export results plots in graphics files
if exportResToImgFiles
saveResToGraphicFiles(path_resImage, sep, str_currCalcIdentif, ext_out_images);
end
// Save results in a text file
if exportResToTxtFile
saveResToTextFile(path_resTxt, sep, resTxtFileName, str_currCalcIdentif, str_datetime, ..
polynPow, count_dtmParams, count_initCharsPnts, ..
Ngte_init, 'Ngte', dtm_apr, dt_names);
end
// Show evaluating time in a console
dT = toc();
printf("\n[INFO]: Evaluating time: %i min %4.1f sec\n", int(dT / 60), dT - int(dT / 60) * 60);
printf("**********************\n");
printf("* FINISH application *\n");
printf("**********************\n");
|
446302177e7c7b265c38754b43a75ad38df6aa44 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/mtlb/mtlb_axes.sci | c8948319e393bd8b97a7ad237aa0ec03796b5e79 | [
"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 | 606 | sci | mtlb_axes.sci | function h=mtlb_axes(varargin)
global AXES_T
if AXES_T==[] then AXES_T=list([]),end
win=xget('window')
k=find(AXES_T(1)==win)
if k==[] then
AXES_T(1)=[AXES_T(1);win]
AXES_T($+1)=[]
k=size(AXES_T(1),1)+1
else
k=k+1
end
if size(varargin)==0 then
rect=[0 0 1 1]
xsetech([0 0 1 1])
AXES_T(k)=[AXES_T(k);rect];h=size(AXES_T(k),1)
elseif varargin(1)=='position'
rect=matrix(varargin(2),1,-1)
xsetech(rect)
AXES_T(k)=[AXES_T(k);rect];h=size(AXES_T(k),1)
elseif type(varargin(1))==1 then
xsetech(AXES_T(k)(varargin(1),:))
else
error('mtlb_axes: This case is not yet implemented')
end
|
8a1e488c6fa01e53731fe0e57a38536aeecd946e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2528/CH8/EX8.5/Ex8_5.sce | 280f9c82b117aefe4bc93d6797477bb9c2039f3d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,276 | sce | Ex8_5.sce | // Chapter8
// Design a contineously adjusted supply b/w 2V to 5 V
// Page.No-279
// Example8_5
//Figure 8.15.1
// Given
clear;clc;
Vref=7.15; //in V
Vout=5; //in V
//(R1b+R2)/R2=Vref/Vout;
printf("\n For maximum case (R1b+R2)/R2 is = %.2f \n",Vref/Vout); // Result
R2=1; // In Ohm (Assumption)
R1b=Vref/Vout-1;
printf("\n For R2=1 Ohm R1b:R2 is = %.2f:%.0f \n",R1b,R2); // Result
Voutm=2; // in V
printf("\n For maximum case (R1a+R1b+R2)/R2 is = %.3f \n",Vref/Voutm); // Result
R1a=Vref/Voutm-1-0.43;
printf("\n For R2=1 Ohm R1b:R2 is = %.3f:%.0f \n",R1a,R2); // Result
R1a=10000; //in Ohm (Assumption)
R2=R1a/2.145;
printf("\n Value of R2 is = %.f Ohm\n",R2); // Result
//Similarly
R1b=R2*0.43;
printf("\n Value of R1b is = %.f Ohm\n",R1b); // Result
//Ilimit=Vsense/rsc;
Vsense=0.65; //in V
Ilimit=1; //in Amp
Rsc=Vsense/Ilimit;
printf("\n Value of current sense resistor is = %.f Ohm\n",Rsc); // Result
R1=6000; //in Ohm
R3=R1*R2/(R1+R2);
printf("\n Value of minimum drift resistor is = %.f Ohm\n",R3); // Result
Ic=1; //in Amp
Ib=0.150; //in Amp
B=Ic/Ib;
printf("\n Value of B minimum = %.2f \n",B); // Result
|
3b88ed5f35a233b3a9d39e96ba514ff938416444 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH1/EX1.32/Example_1_32.sce | 7dabec262b4a79a334cbd8c6de05a42a88cdfda1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 372 | sce | Example_1_32.sce | //Example 1.32 10 identical balls are distributed at random into 4 boxes ar marked A B C D
clc;
clear;
N=(factorial(13)/(factorial(3)*factorial(10)));
disp(N,"total no. of possible ways of distribution =");
M= 1;
disp(M,"No. of favourable cases such that 4 boxes contain respectively 2,4,4,0 identical balls =");
P=M/N;
disp(P," The required Probability is = ");
|
4a839fb5d2287e18dff94d48e0bfdb073d1b47f7 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1.1/macros/optim/vec2list.sci | f02888e4d2f77e1e410a4d6c590a85d3ffe0b31b | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | 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 | 499 | sci | vec2list.sci | function li=vec2list(bigVector,varsizes,ind)
//bigVector: big vector
//varsizes: k x 2 matrix, varsizes(i,:)=size of ith matrix
//li: list of k matrices, li(i)=matrix of size varsizes(i,:);
[LHS,RHS]=argn(0)
if bigVector=[] then
n=0;for dimi=varsizes',n=n+prod(dimi);end
bigVector=zeros(n,1);
end
li=list();point=1;i=0;
for dimi=varsizes'
newpoint=point+prod(dimi)-1;i=i+1;
li(i)=matrix(bigVector(point:newpoint),dimi(1),dimi(2));
point=newpoint+1;
end
if RHS==3 then li=recons(li,ind); end
|
496fa093559c35c399fc987c2c9364c6a8c2a209 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH2/EX2.13/example2_13.sce | 16a6493bd44dded93402cdb188e681f2ac84bc9b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sce | example2_13.sce | clc
// Given that
lambda = 5.89e-7 // wavelength of light in meter
b = 1e-3 // slit-width in meter
// Sample Problem 13 on page no. 2.42
printf("\n # PROBLEM 13 # \n")
m = 1 // for first minima
theta = asin((m * lambda) / b) // calculation for angular spread of the central maxima in radian
theta_ = theta * (180 / %pi) // calculation for angular spread of the central maxima in degree
printf("\n Standard formula used \n theta = asin((m * lambda) / b).\n")
printf("\n Angular spread of the central maxima = %f degree ",2 * theta_)
|
fd42f99876b1bf22f81dded22ad893b7f42af9f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH6/EX6.5.a/6_5_data.sci | b87c78c0aa905f542e24659a31b0e173af688632 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 184 | sci | 6_5_data.sci | // Aim:Refer Example 6-5 for Problem Description
// Given:
L1=10; //in
L2=10; //in
// Inclination of cylinder axis with vertical axis:
phi=0; //deg
// cylinder load:
F_load=1000; //lb
|
695c3030f56f2c6e25bf105bff412838026e060e | 6a3d6ad5e81b7b8f9d48952cf7390a24ed063653 | /chips/Mux4Way16.tst | 192224d673425fbfefd44f20f1442ed2d236dd59 | [] | no_license | phazel/nand2tetris | 597e98b6f661fa74a724a1f0644e60e9550c9efd | baa9fbfdcd1a87e3d22aeac876e089af104d76f7 | refs/heads/master | 2021-01-09T20:39:26.902012 | 2016-08-01T06:04:10 | 2016-08-01T06:04:10 | 63,301,906 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,213 | tst | Mux4Way16.tst | load Mux4Way16.hdl;
output-file Mux4Way16.out,
compare-to Mux4Way16.cmp,
output-list sel%B1.2.1 a%B1.16.1 b%B1.16.1 c%B1.16.1 d%B1.16.1 out%B1.16.1;
set sel %B00,
set a %B0000000000000000, set b %B0000000000000000,
set c %B0000000000000000, set d %B0000000000000000,
eval, output;
set sel %B01,
set a %B0000000000000000, set b %B0000000000000000,
set c %B0000000000000000, set d %B0000000000000000,
eval, output;
set sel %B10,
set a %B0000000000000000, set b %B0000000000000000,
set c %B0000000000000000, set d %B0000000000000000,
eval, output;
set sel %B11,
set a %B0000000000000000, set b %B0000000000000000,
set c %B0000000000000000, set d %B0000000000000000,
eval, output;
set sel %B00,
set a %B0001001000110100, set b %B1001100001110110,
set c %B1010101010101010, set d %B0101010101010101,
eval, output;
set sel %B01,
set a %B0001001000110100, set b %B1001100001110110,
set c %B1010101010101010, set d %B0101010101010101,
eval, output;
set sel %B10,
set a %B0001001000110100, set b %B1001100001110110,
set c %B1010101010101010, set d %B0101010101010101,
eval, output;
set sel %B11,
set a %B0001001000110100, set b %B1001100001110110,
set c %B1010101010101010, set d %B0101010101010101,
eval, output;
|
2c61c8e3ff3b8b409fbadd556aeccc85bc658fd6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH20/EX20.7/EX20_7.sce | 7016d8fb2cfe50a0f38e294bb4978fb5d48d736a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 899 | sce | EX20_7.sce | clc;funcprot(0);//EXAMPLE 20.7
// Initialisation of Variables
FAD=14;...........//Free air delivered in m^3/min
p1=0.95;.........//Induction pressure in bar
t1=305;........//Induction temperature in K
p2=7;...........//Delivery pressure in bar
n=1.3;...........//Adiabatic index
VcbyVs=0.05;........//Ratio of clearance volume and swept volume
R=287;...........//Gas constant in J/kgK
t=288;...........//free air temperature in K
p=1.013;.........//free air pressure in bar
//Calculations
m=(p*100000*FAD)/(R*t);..........//Mass delivered per min in kg
t2=t1*((p2/p1)^((n-1)/n));
IP=((n/(n-1))*m*(R/1000)*(t2-t1))/60;.........//Indicated power in kW
disp(IP,"Indicated power in kW:")
v4byv3=(p2/p1)^(1/n);v4byvs=v4byv3*VcbyVs;v1minv4=(1+VcbyVs)-v4byvs;
Vbyvs=v1minv4*(t/t1)*(p1/p);
etav=Vbyvs/1;.............//Volumetric efficiency
disp(etav*100,"Volumetric efficiency in %:")
|
b39bf70aa4c36d9b6886069857edaefd1064ea45 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH8/EX8.49/ch8_49.sci | fa9539fe0f2c0ad019cd248c74d4f6441d201b19 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 521 | sci | ch8_49.sci | //find no load freq setting,sys freq,at no load freq of swing generator, system trip freq
clc;
loadtot=260;
r=125;
pf=.84;
genfl=r*pf;
sld=75; //supply load
n=3; //no of generators
ls=loadtot-n*sld;
m=-5/genfl;
f=50;
ff=f-m*sld;disp(ff,'set freq(Hz)');
c=f-m*ls;disp(c,'set freq(Hz) supplied from swing generator');
nld=sld+50/4;
c=ff+m*nld;disp(c,'new system freq(Hz)');
rld=310-n*sld;
c=f-m*rld;disp(c,'set freq(Hz) of swing generator');
nld=310/n;
c=ff+m*nld;disp(c,'system trip freq(Hz)');
|
0e6f0e397b9d6df86e6f32a1133703e1513f8711 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH6/EX6.11/11.sce | ab867ae057dd7a400ebec407fe653c7cd267af7a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 341 | sce | 11.sce |
//Variable declaration
epsilon0=8.85*10**-12;
epsilonr=1.000435; //dielectric constant of material
N=2.7*10**25; //number of atoms(per m**3)
//Calculation
alpha_e=epsilon0*(epsilonr-1)/N; //electronic polarizability(F m**2)
//Result
printf('electronic polarizability is %0.3f *10**-40 F m**2 \n',(alpha_e*10**40)) |
6307adf15d041ba77f48dd1024edd7e61bdd2ef6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2234/CH4/EX4.16/ex4_16.sce | 1487b6f78b4a00886dba57752408aea543b4e24e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 312 | sce | ex4_16.sce | clc;
eo=8.85*10^-12; //constant
o=80*10^-6; //surface charge density in c/ square
r=1.2; //in m
q=o*(%pi)*(r^2); //calculating charge in Coulomb
fi=q/eo; //calculating electric flux
disp(q,"Charge in Coulomb = "); //displaying result
disp(fi,"Electric flux in N m square/c = "); //displaying result |
d0f1374a9478ca754c5eb0b2d8ab4cb2edc044b9 | 730525102bab797ddfaddb04578a0ce3959cddb9 | /Data/elec/ele2-4-1056-3.tst | 77f4e0d695e70e074e1d053e4a2d98211ee0e6cf | [] | no_license | youndoldman/FuzzyEnergy | 974660a390b30c83aa8ea218ef4d29c6fcdcebdd | 22edd4553702a9ede49bca68ef1aea584a3c8a52 | refs/heads/master | 2021-06-21T02:54:57.234859 | 2017-08-10T19:26:15 | 2017-08-10T19:26:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 12,765 | tst | ele2-4-1056-3.tst | 6.500000 5.850000 64.980003 97.500000 5113.729980
0.500000 0.300000 3.330000 2.500000 179.169998
0.700000 0.210000 2.300000 1.400000 133.270004
2.000000 1.200000 13.320000 10.000000 732.409973
3.000000 0.900000 9.990000 6.000000 499.600006
2.000000 0.600000 6.660000 4.000000 330.519989
2.000000 1.800000 19.980000 20.000000 1535.089966
4.000000 2.400000 39.959999 60.000000 3351.570068
0.900000 0.810000 13.500000 13.500000 1239.609985
4.000000 2.400000 26.639999 8.000000 1355.150024
4.000000 2.400000 26.639999 20.000000 1821.709961
0.600000 0.540000 9.000000 3.000000 397.500000
8.000000 4.800000 53.279999 16.000000 3016.030029
0.800000 0.720000 12.000000 4.000000 537.549988
3.000000 1.800000 19.980000 15.000000 1431.619995
5.000000 3.000000 33.299999 50.000000 2768.489990
5.000000 4.500000 75.000000 25.000000 4154.330078
11.000000 3.300000 54.959999 55.000000 4302.819824
11.000000 6.600000 73.260002 110.000000 5798.919922
9.500000 5.700000 63.270000 95.000000 5065.129883
4.000000 1.200000 19.980000 60.000000 2414.580078
2.000000 0.600000 9.960000 10.000000 683.500000
11.000000 6.600000 73.260002 110.000000 5798.540039
0.800000 0.240000 7.980000 8.000000 514.619995
0.700000 0.420000 13.980000 1.400000 334.230011
3.000000 2.700000 29.969999 15.000000 1809.489990
9.500000 8.550000 142.500000 47.500000 7655.819824
6.500000 1.950000 21.600000 13.000000 1662.800049
2.000000 1.200000 13.320000 10.000000 748.619995
0.600000 0.360000 3.960000 1.200000 113.660004
8.000000 7.200000 120.000000 80.000000 7086.509766
0.500000 0.150000 1.640000 7.500000 210.619995
0.700000 0.210000 2.300000 3.500000 157.990005
1.500000 1.350000 14.940000 22.500000 1442.060059
5.000000 1.500000 16.650000 25.000000 1726.540039
2.000000 1.800000 30.000000 30.000000 2275.500000
0.800000 0.240000 2.640000 1.600000 156.610001
2.500000 1.500000 16.650000 25.000000 1567.790039
0.900000 0.540000 18.000000 4.500000 810.299988
0.700000 0.420000 4.640000 10.500000 715.799988
0.500000 0.450000 7.500000 5.000000 362.119995
11.000000 3.300000 36.630001 165.000000 6403.620117
0.600000 0.180000 3.000000 6.000000 269.640015
0.700000 0.420000 13.980000 1.400000 631.010010
5.000000 4.500000 49.950001 25.000000 3002.189941
0.600000 0.360000 12.000000 6.000000 704.440002
0.500000 0.150000 1.640000 2.500000 120.089996
4.000000 1.200000 13.320000 60.000000 2181.669922
2.500000 1.500000 24.959999 12.500000 1640.180054
6.500000 3.900000 43.290001 97.500000 4111.899902
0.800000 0.240000 3.960000 1.600000 224.449997
0.700000 0.420000 13.980000 3.500000 631.219971
0.500000 0.300000 9.990000 2.500000 456.880005
6.500000 1.950000 21.600000 32.500000 1988.089966
9.500000 2.850000 47.459999 19.000000 3087.250000
0.600000 0.360000 12.000000 1.200000 495.720001
0.600000 0.540000 9.000000 9.000000 615.210022
9.500000 8.550000 94.949997 95.000000 6554.069824
5.000000 3.000000 33.299999 75.000000 3168.620117
0.700000 0.210000 2.300000 3.500000 155.300003
4.000000 3.600000 60.000000 60.000000 4303.060059
0.900000 0.270000 2.970000 4.500000 214.800003
5.000000 4.500000 49.950001 50.000000 3568.419922
2.500000 1.500000 16.650000 5.000000 631.760010
2.000000 0.600000 9.960000 30.000000 1357.920044
0.500000 0.150000 2.460000 7.500000 269.130005
4.000000 2.400000 39.959999 20.000000 2420.449951
0.600000 0.540000 5.940000 1.200000 152.550003
11.000000 3.300000 36.630001 55.000000 3233.889893
0.600000 0.360000 12.000000 9.000000 767.099976
1.500000 1.350000 14.940000 7.500000 608.030029
0.600000 0.540000 18.000000 9.000000 880.409973
6.500000 5.850000 97.500000 97.500000 6809.509766
9.500000 2.850000 31.590000 95.000000 3772.239990
6.500000 1.950000 32.459999 97.500000 3970.689941
0.800000 0.240000 7.980000 12.000000 1050.260010
5.000000 1.500000 24.959999 25.000000 2170.500000
3.000000 2.700000 45.000000 30.000000 2842.330078
0.600000 0.540000 5.940000 3.000000 278.739990
0.900000 0.540000 5.940000 9.000000 462.799988
2.000000 1.200000 19.980000 30.000000 1834.579956
0.500000 0.450000 15.000000 1.000000 350.540009
3.000000 0.900000 15.000000 30.000000 1621.569946
0.500000 0.450000 4.950000 7.500000 323.130005
4.000000 2.400000 26.639999 60.000000 2611.620117
0.900000 0.810000 13.500000 4.500000 607.289978
2.500000 0.750000 12.480000 5.000000 555.000000
2.000000 1.200000 19.980000 30.000000 1814.689941
2.000000 1.200000 13.320000 30.000000 1455.579956
0.500000 0.450000 7.500000 2.500000 332.899994
9.500000 5.700000 63.270000 142.500000 6361.540039
0.600000 0.540000 5.940000 1.200000 152.960007
1.500000 0.900000 15.000000 7.500000 626.929993
0.900000 0.540000 18.000000 13.500000 1478.459961
0.800000 0.720000 12.000000 4.000000 530.179993
2.000000 1.800000 30.000000 20.000000 1920.949951
0.900000 0.540000 9.000000 9.000000 638.580017
0.700000 0.210000 2.300000 10.500000 654.229980
0.500000 0.450000 15.000000 1.000000 350.730011
0.600000 0.180000 3.000000 1.200000 121.660004
0.800000 0.480000 5.310000 4.000000 298.480011
1.500000 1.350000 14.940000 15.000000 1228.010010
6.500000 5.850000 97.500000 32.500000 5255.759766
0.900000 0.270000 9.000000 13.500000 1135.420044
1.500000 0.900000 15.000000 15.000000 1261.439941
2.000000 1.800000 30.000000 30.000000 2283.419922
0.500000 0.450000 15.000000 7.500000 717.059998
2.500000 2.250000 24.930000 37.500000 2096.250000
2.500000 0.750000 8.280000 12.500000 897.419983
0.700000 0.420000 6.960000 10.500000 855.849976
0.800000 0.240000 3.960000 12.000000 728.549988
0.800000 0.240000 7.980000 12.000000 1019.070007
3.000000 0.900000 15.000000 15.000000 1332.510010
0.500000 0.150000 4.980000 5.000000 304.329987
9.500000 5.700000 94.980003 95.000000 6838.509766
0.500000 0.150000 4.980000 5.000000 316.619995
5.000000 1.500000 24.959999 50.000000 2610.399902
0.500000 0.300000 3.330000 7.500000 267.369995
0.900000 0.270000 9.000000 4.500000 492.809998
0.800000 0.720000 7.920000 12.000000 918.580017
9.500000 2.850000 47.459999 47.500000 3759.370117
0.700000 0.420000 13.980000 1.400000 327.779999
0.500000 0.450000 4.950000 2.500000 237.289993
2.500000 0.750000 12.480000 25.000000 1467.079956
5.000000 1.500000 24.959999 10.000000 1120.189941
2.000000 0.600000 9.960000 30.000000 1339.239990
5.000000 3.000000 33.299999 50.000000 2769.719971
4.000000 2.400000 39.959999 20.000000 2416.100098
0.700000 0.210000 3.480000 3.500000 244.869995
0.800000 0.240000 2.640000 12.000000 713.340027
0.600000 0.540000 5.940000 6.000000 358.820007
0.700000 0.630000 6.930000 3.500000 337.390015
11.000000 3.300000 36.630001 22.000000 2618.199951
0.500000 0.150000 4.980000 5.000000 327.690002
4.000000 1.200000 13.320000 20.000000 1246.930054
0.600000 0.360000 6.000000 9.000000 460.739990
6.500000 3.900000 64.980003 97.500000 5367.229980
4.000000 3.600000 60.000000 20.000000 3332.679932
0.800000 0.240000 3.960000 4.000000 281.049988
5.000000 3.000000 49.980000 75.000000 4016.750000
0.900000 0.270000 9.000000 1.800000 465.519989
8.000000 7.200000 79.919998 40.000000 4479.870117
0.600000 0.540000 18.000000 6.000000 808.809998
0.700000 0.420000 13.980000 3.500000 624.799988
5.000000 3.000000 33.299999 50.000000 2752.250000
3.000000 1.800000 30.000000 45.000000 2655.929932
6.500000 3.900000 43.290001 13.000000 2466.989990
5.000000 3.000000 49.980000 50.000000 3646.699951
2.500000 2.250000 24.930000 37.500000 2098.600098
4.000000 1.200000 13.320000 8.000000 635.020020
8.000000 4.800000 53.279999 80.000000 4172.089844
0.700000 0.210000 3.480000 1.400000 137.210007
0.900000 0.810000 9.000000 4.500000 413.179993
8.000000 7.200000 79.919998 80.000000 5473.339844
8.000000 4.800000 79.980003 120.000000 6354.060059
0.900000 0.270000 2.970000 13.500000 764.140015
4.000000 3.600000 39.959999 40.000000 2844.629883
0.800000 0.720000 12.000000 12.000000 1166.910034
0.600000 0.540000 18.000000 3.000000 794.400024
0.700000 0.630000 6.930000 10.500000 866.770020
0.900000 0.270000 9.000000 1.800000 457.690002
0.800000 0.480000 15.990000 4.000000 718.780029
1.500000 1.350000 14.940000 7.500000 764.479980
0.600000 0.180000 1.980000 1.200000 74.330002
3.000000 0.900000 15.000000 15.000000 1344.880005
0.900000 0.540000 5.940000 4.500000 306.429993
0.700000 0.210000 2.300000 10.500000 648.099976
8.000000 7.200000 120.000000 120.000000 8250.629883
0.900000 0.270000 4.500000 13.500000 795.359985
0.500000 0.450000 15.000000 5.000000 674.239990
8.000000 2.400000 26.639999 40.000000 2398.520020
0.600000 0.360000 3.960000 1.200000 120.269997
0.800000 0.240000 7.980000 8.000000 617.729980
0.500000 0.150000 4.980000 2.500000 280.350006
6.500000 3.900000 43.290001 65.000000 3528.350098
3.000000 0.900000 9.990000 30.000000 1401.439941
0.700000 0.210000 6.990000 7.000000 457.940002
0.700000 0.210000 3.480000 1.400000 124.470001
0.700000 0.630000 6.930000 7.000000 394.380005
0.800000 0.480000 7.980000 12.000000 931.169983
0.600000 0.180000 3.000000 3.000000 213.820007
2.500000 0.750000 8.280000 25.000000 1249.459961
0.900000 0.540000 18.000000 13.500000 1478.459961
0.500000 0.150000 4.980000 2.500000 284.730011
0.800000 0.480000 7.980000 8.000000 483.019989
0.500000 0.450000 15.000000 7.500000 729.359985
2.000000 1.800000 30.000000 30.000000 2288.580078
5.000000 1.500000 24.959999 50.000000 2506.500000
2.500000 1.500000 24.959999 12.500000 1643.400024
0.700000 0.420000 13.980000 10.500000 1219.260010
0.800000 0.480000 7.980000 4.000000 383.450012
11.000000 3.300000 36.630001 165.000000 6404.089844
11.000000 6.600000 73.260002 165.000000 7579.810059
0.600000 0.540000 18.000000 6.000000 1008.880005
9.500000 5.700000 63.270000 95.000000 5082.669922
2.500000 2.250000 37.500000 37.500000 2812.020020
8.000000 4.800000 53.279999 80.000000 4235.830078
0.800000 0.480000 15.990000 1.600000 680.849976
0.500000 0.300000 9.990000 5.000000 484.809998
11.000000 6.600000 73.260002 22.000000 4177.609863
8.000000 2.400000 26.639999 16.000000 1896.910034
9.500000 8.550000 142.500000 95.000000 8529.129883
0.700000 0.210000 2.300000 1.400000 96.430000
0.700000 0.210000 2.300000 1.400000 97.680000
2.500000 2.250000 24.930000 12.500000 1597.349976
0.900000 0.270000 2.970000 1.800000 136.740005
1.500000 0.900000 15.000000 15.000000 1266.310059
0.900000 0.540000 5.940000 1.800000 172.639999
6.500000 1.950000 21.600000 97.500000 3418.500000
3.000000 1.800000 30.000000 45.000000 2615.050049
4.000000 3.600000 39.959999 60.000000 3156.540039
|
e95aabc3e9d828cbef4275daf3efb36ad23606cc | 81edb62eb260102a7f9e6db9065204b5aa0333e0 | /ACSO/Add32.tst | ee24629a1aae115af9afd51e1ac9d84a55afb228 | [] | no_license | Stilink/ACSO | e6531e16b8400b147764887698d732ff4269d9fe | 17eea5288f395bf202f3c1c28c9003df3c78dc81 | refs/heads/master | 2020-04-16T19:57:14.333374 | 2019-05-17T02:18:27 | 2019-05-17T02:18:27 | 165,880,362 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,432 | tst | Add32.tst | load Add32.hdl,
output-file Add32.out,
compare-to Add32.cmp,
output-list a1%B1.16.1 a2%B1.16.1 b1%B1.16.1 b2%B1.16.1 sum1%B1.16.1 sum2%B1.16.1;
set a1 %B0000000000000000,
set a2 %B0100001101001100,
set b1 %B0000000000000000,
set b2 %B0100100001001000,
eval,
output;
set a1 %B1111111111111111,
set a2 %B0011111010000111,
set b1 %B1111111111111111,
set b2 %B1100110101110011,
eval,
output;
set a1 %B1111111111111111,
set a2 %B1100111010111000,
set b1 %B1111111111111111,
set b2 %B1101000101010111,
eval,
output;
set a1 %B1111111111111111,
set a2 %B1001000010000110,
set b1 %B0000000000000000,
set b2 %B1011001011000011,
eval,
output;
set a1 %B1111111111111111,
set a2 %B1001101010111000,
set b1 %B0000000000000000,
set b2 %B0001110101100010,
eval,
output;
set a1 %B1111111111111111,
set a2 %B1100100100001010,
set b1 %B0000000000000000,
set b2 %B0001111010001111,
eval,
output;
set a1 %B0000000000000000,
set a2 %B0010000100100010,
set b1 %B0000000000000000,
set b2 %B0100110101100111,
eval,
output;
set a1 %B1111111111111111,
set a2 %B1001010100101000,
set b1 %B0000000000000000,
set b2 %B0000001000111101,
eval,
output;
set a1 %B1111111111111111,
set a2 %B1001011101010111,
set b1 %B1111111111111111,
set b2 %B1000000100010101,
eval,
output;
set a1 %B0000000000000000,
set a2 %B0000010110000110,
set b1 %B0000000000000000,
set b2 %B0110101111001111,
eval,
output;
|
588fa9fb21b9844c7af1ffffb6edfe4d32fea19d | 8b2aadfe2dd241d882213436738542d3f65f4e17 | /ModuleTonalitéSynthèse/Module Synthèse/Scilab/test.sci | 32ed6bd2c5ddc37437fe1538a0913e8cdb5a05d6 | [] | no_license | ahmed-bensaad/FMTM | c764c3162ac6f24f7caa2d0fd99725d4c458efc6 | 66fd7a477e3addb5a0c3a4d7489daa09fb9c5042 | refs/heads/master | 2021-09-02T11:04:05.660173 | 2017-02-06T21:54:09 | 2017-02-06T21:54:09 | 115,977,485 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 172 | sci | test.sci | function []=test()
t=[0:0.1:8];
y=[0:0.1:8];
n=length(y);
for i=1:n
y(i)=enveloppe_basse(1,t(i),0.01);
end
plot(t,y);
endfunction
|
7498b89726f8d9bea64a092c0415a7ab29def904 | d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3 | /r38/packages/hephys/cvit.tst | bd2e721e34ebf259caedc4395869f76f7e404eb7 | [
"BSD-3-Clause"
] | permissive | reduce-algebra/reduce-historical | 8220e211b116e0e01ff1a38f51917cac9db6069f | e014152729c4d62bb1ce4f5c311a027042a5495a | refs/heads/master | 2023-04-10T22:54:00.796596 | 2021-04-16T08:52:19 | 2021-04-16T08:52:19 | 343,245,204 | 7 | 1 | NOASSERTION | 2021-04-16T08:53:31 | 2021-03-01T00:15:22 | TeX | UTF-8 | Scilab | false | false | 3,562 | tst | cvit.tst | % Tests of Cvitanovic Package.
% COPYRIGHT (C) 1990, INSTITUTE OF NUCLEAR PHYSICS, MOSCOW STATE UNIV.
% CVITBUBLE TEST OF CVITANOVIC PACKAGE
% AUTHOR A. KRYUKOV, ARODIONOV, A.TARANOV
% VERSION 1.1
% RELEASE 18-SEP-90
index j1,j2,j3,j4,j5,j6,j7,j8,j9,j0;
vecdim n$
% Tests of the weels with buble
% (Use notation from SIGSAM Bull, 1989, v.23, no.4, pp.15-24)
g(l,j1,j2,j2,j1);
g(l,j1,j2)*g(l1,j3,j1,j2,j3);
g(l,j1,j2)*g(l1,j3,j1,j3,j2);
g(l,j1,j2)*g(l1,j3,j3,j2,j1);
g(l,j1,j2,j3,j4)*g(l1,j1,j2,j3,j4);
g(l,j1,j2)*g(l1,j3,j4,j1,j2,j4,j3);
g(l,j1,j2,j3,j4)*g(l1,j1,j4,j2,j3);
g(l,j1,j2)*g(l1,j3,j4,j1,j4,j3,j2);
g(l,j1,j2)*g(l1,j3,j4,j5,j1,j2,j3,j4,j5);
g(l,j1,j2,j3,j4)*g(l1,j5,j1,j2,j3,j5,j4);
g(l,j1,j2,j3,j4,j5,j1)*g(l1,j2,j5,j3,j4);
g(l,j1,j2,j3,j4,j5,j1,j2,j5)*g(l1,j4,j3);
g(l,j1,j2)*g(l1,j3,j4,j5,j6,j1,j2,j3,j4,j5,j6);
g(l,j1,j2,j3,j4)*g(l1,j5,j6,j1,j2,j3,j4,j6,j5);
g(l,j1,j2,j3,j4,j5,j6)*g(l1,j1,j2,j4,j3,j6,j5);
g(l,j1,j2,j3,j4,j5,j6,j1,j2)*g(l1,j6,j3,j4,j5);
g(l,j1,j2,j3,j4,j5,j6,j7,j1,j2,j3,j4,j5)*g(l1,j6,j7);
g(l,j1,j2,j3,j4,j5,j6,j7,j1,j2,j3)*g(l1,j4,j5,j7,j6);
g(l,j1,j2,j3,j4,j5,j6,j7,j2)*g(l1,j1,j3,j4,j5,j6,j7);
% COPYRIGHT (C) 1988,1990, INSTITUTE OF NUCLEAR PHYSICS, MOSCOW STATE U.
% CVITEST Test of CVITANOVIC PACKAGE
% AUTHOR A. KRYUKOV, A.RODIONOV, A.TARANOV
% VERSION 1.2
% RELEASE 11-MAR-90
%
% Test for trace of Dirac matrices.
%
% All tests are the lattices with difference lines
% (Use notation from SIGSAM Bull, 1989, v.4,no.23, pp.15-24)
index m1,m2,m3,m4,m5,m6,m7,m8,m9,m0;
index n1,n2,n3,n4,n5,n6,n7,n8,n9,n0;
vecdim n;
g(l,n1,n1);
g(l,n1,m1,n1,m1);
g(l,n1,n2,n2,n1);
g(l,n1,n2,m1,n2,n1,m1);
g(l,n1,n2,m1,m2,n2,n1,m2,m1);
g(l,n1,n2,n3,n3,n2,n1);
g(l,n1,n2,n3,m1,n3,n2,n1,m1);
g(l,n1,n2,n3,m1,m2,n3,n2,n1,m2,m1);
g(l,n1,n2,n3,m1,m2,m3,n3,n2,n1,m3,m2,m1);
g(l,n1,n2,n3,m1,n3,n1,n2,m1);
g(l,n1,n2,n3,m1,m2,n3,n1,n2,m1,m2);
g(l,n1,n2,n3,m1,m2,m3,n2,n3,n1,m3,m1,m2);
% COPYRIGHT (C) 1988,1990, INSTITUTE OF NUCLEAR PHYSICS, MOSCOW STATE U.
% CVITWEEL TEST OF CVITANOVIC PACKAGE
% AUTHOR A. KRYUKOV, ARODIONOV, A.TARANOV
% VERSION 1.2
% RELEASE 11-MAR-90
index j1,j2,j3,j4,j5,j6,j7,j8,j9,j0;
vecdim n$
% Test of CVITANOVIC PACKAGE
%
% All tests are the weels with defferent spoke
% (Use notation from SIGSAM Bull, 1989, v.23, no.4, pp.15-24)
g(l,j1,j2,j2,j1);
g(l,j1,j2,j3,j1,j2,j3);
g(l,j1,j2,j3,j1,j3,j2);
g(l,j1,j2,j3,j3,j2,j1);
g(l,j1,j2,j3,j4,j1,j2,j3,j4);
g(l,j1,j2,j3,j4,j1,j2,j4,j3);
g(l,j1,j2,j3,j4,j1,j4,j2,j3);
g(l,j1,j2,j3,j4,j1,j4,j3,j2);
g(l,j1,j2,j3,j4,j5,j1,j2,j3,j4,j5);
g(l,j1,j2,j3,j4,j5,j1,j2,j3,j5,j4);
g(l,j1,j2,j3,j4,j5,j1,j2,j5,j3,j4);
g(l,j1,j2,j3,j4,j5,j1,j2,j5,j4,j3);
g(l,j1,j2,j3,j4,j5,j6,j1,j2,j3,j4,j5,j6);
g(l,j1,j2,j3,j4,j5,j6,j1,j2,j3,j4,j6,j5);
g(l,j1,j2,j3,j4,j5,j6,j1,j2,j4,j3,j6,j5);
g(l,j1,j2,j3,j4,j5,j6,j1,j2,j6,j3,j4,j5);
g(l,j1,j2,j3,j4,j5,j6,j7,j1,j2,j3,j4,j5,j6,j7);
g(l,j1,j2,j3,j4,j5,j6,j7,j1,j2,j3,j4,j5,j7,j6);
g(l,j1,j2,j3,j4,j5,j6,j7,j2,j1,j3,j4,j5,j6,j7);
% Test of example that calculated incorrectly in earlier package.
index ix,iy,iz;
mass p1=mm, p2=mm, p3=mm, p4=mm, k1=0;
mshell p1,p2,p3,p4,k1;
vector q1,q2;
operator ga,gb;
for all p let ga(p)=g(la,p) + mm,
gb(p)=g(lb,p) + mm;
xx := g(la,ix)*g(la,iy)*(g(lb,ix)*gb(p1)*g(lb,iy)*gb(q2) +
gb(p3)*g(lb,ix)*g(lb,iy));
let q1=p1-k1, q2=p3+k1;
xx;
end;
|
b0206e827dd159dbb412da790f41e0ef444e3784 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH12/EX6.12.5/Ex6_12_5.sce | bd1c6e30d690f5b4b1de916df3e6285c43d3df10 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | Ex6_12_5.sce | //Section-6,Example-1,Page no.-P.35
//To calculate the total volume of mixture of 50gm of ethylalcohol and 50gm of water at 25degree Celcius.
clc;
n_1=50/46 //Moles of C_2H_5OH
n_2=50/18 //Moles of H_2O
V_1=55 //Volume of C_2H_5OH
V_2=18 //Volume of H_2O
V=(n_1*V_1)+(n_2*V_2)
disp(V,'Total volume of mixture(ml)')
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.