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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b6670306bf2a2539cadcc072604b22036a84c649 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3681/CH11/EX11.32/Ex11_32.sce | d560a36ddf58dbd0eec943af2dd516ca4706df90 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,420 | sce | Ex11_32.sce | // Calculating the number of stator slots and average flux density
clc;
disp('Example 11.32, Page No. = 11.58')
// Given Data
// 3 phase star connected direct watercooled generator
Q = 588;// MVA rating
E = 22000;// Voltage rating
p =2;// Number of poles
rpm = 2500;// R.p.m.
f = 50;// Frequency (in Hz)
D = 1.3;// Stator bore (in meter)
L = 6;// Core length (in meter)
Nc =2;// Number of conductors per slot
a = 2;// Circuits per phase
ac = 200000;// Ampere conductors per meter
Kw = 0.92;// Winding factor
// Winding is infinitely distributed with a phase spread of 60 degree
// Calculation of the number of stator slots and average flux density
ns = rpm/60;// Speed (r.p.s)
Eph = E/3^(1/2);// Voltage per phase
Iph = Q*10^(6)/(3^(1/2)*E);// Current per phase
Is = Iph/a;// Current in each conductor (in ampere)
Z = %pi*D*ac/Is;// Total number of armature conductors
Tph = int(Z/6+1);// Turns per phase for a three phase machine
Z = 6*Tph;// Actual number of conductors used
S = Z/Nc;// Number of slots
disp(S,'(a) Number of slots =');
F_pole = a*Eph/(4.44*f*Tph*Kw);// Flux per pole (in Wb)
pole_pitch = %pi*D/p;//Pole pitch (in meter)
Bav = F_pole/(pole_pitch*L);// Average flux density (in Wb per meter square)
disp(Bav,'(b) Average flux density (Wb per meter square) =');
//in book answers are 54 and 0.565 Wb per meter square respectively. The answers vary due to round off error
|
278d47621bf5c930cc82fcca1b3df2e25c5e6ad3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH2/EX2.18/18.sce | 356c24e684c95e7cadbde2dc456f7a956df045ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,503 | sce | 18.sce | clc
clear
//Input data
Po=7 //Stagnation pressure in bar
To=100+273 //Stagnation temperature in K
At=12 //Critical area in cm^2
A2=25.166 //Exit area in cm^2
k=1.4 //Adiabatic Constant
R=287 //Specific gas constant in J/kg-K
//Calculation
a1=A2/At //Ratio of areas
//subsonic
M2=0.29 //Exit mach number from gas tables @a1,k=1.4
p1=0.943 //Ratio of exit pressure to Stagnation pressure from isentropic gas tables @M2,k=1.4
P2=Po*p1 //exit pressure in bar
t1=0.983 //Ratio of exit temperature to Stagnation temperature from gas tables @M2,k=1.4
T2=To*t1 //Exit temperature in K
C2=M2*sqrt(k*R*T2) //Exit air velocity in m/s
//supersonic
M_2=2.25 //Exit mach number from gas tables @a1,k=1.4
p2=0.0865 //Ratio of exit pressure to Stagnation pressure from isentropic gas tables @M2,k=1.4
P_2=Po*p2 //exit pressure in bar
t2=0.497 //Ratio of exit temperature to Stagnation temperature from gas tables @M2,k=1.4
T_2=To*t2 //Exit temperature in K
C_2=M_2*sqrt(k*R*T_2) //Exit air velocity in m/s
d2=(P2*10^5)/(R*T2) //Density at exit in kg/s, P2 in Pa
m=d2*A2*10^-4*C2 //Mass flow rate in kg/s, A2 in m^2
//Output
printf('(A)Maximum mass flow rate is %3.3f kg/s\n (B)Subsonic exit condition:\n Temperature is %3.3f K\n Velocity is %3.2f m/s\n Pressure is %3.3f bar\n Mach number is %3.2f\n Supersonic exit condition:\n Temperature is %3.3f K\n Velocity is %3.2f m/s\n Pressure is %3.4f bar\n Mach number is %3.2f\n',m,T2,C2,P2,M2,T_2,C_2,P_2,M_2)
|
d3d977555226d3208ae55ebaf84b92623ac08322 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH2/EX2.16/2Ex16.sce | 52285511d6e3b68c470f2e4ecb22046535e72aa1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 156 | sce | 2Ex16.sce | //chapter 2 Ex 16
clc;
clear;
close;
n1=6; n2=7; n3=8; n4=9; n5=12;
n=lcm(int32([n1,n2,n3,n4]));
rem=1;
mprintf("The required number is %d",n+rem);
|
c1ad8e00e19ff3a0128b2ff861232db4410c8057 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1952/CH7/EX7.18/Ex7_18.sce | c637ae92853742d5fa109d5bd7da2a7acb3a008c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | Ex7_18.sce | // chapter 7 , Example7.18 , pg 217
ni=1.5*10^16 //intrinsic carrier density(in m^-3)
Un=0.13 //electron mobility (in m^2/(V*s))
up=0.05 //hole mobility (in m^2/(V*s))
e=1.6*10^-19 //charge in electron (in C)
sigma=ni*e*(Un+up) // electrical conductivity
printf("Electrical conductivity\n")
printf("sigma=%.6f (ohm*m)^-1",sigma)
|
4f9e804de76167e4773da7fe33e97f8088286301 | 9835e6a99ef801fdd06a9193c1846cae987d740a | /MissionsB/MissionB-3.sce | 64a5504941f3df03ab6e84f4aafabecb84c8ce1d | [] | no_license | Martinhubz/Exo-Life | c2356d064d2f4727b7a42b104aaca340c0e65a64 | dcea54e689b2d7bb3b454648d7cb6fb5a57f115f | refs/heads/master | 2021-04-30T08:52:50.851933 | 2018-02-13T16:19:34 | 2018-02-13T16:19:34 | 121,385,860 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 389 | sce | MissionB-3.sce | //---------Mission B-3-----------
//-------------------------------------
// Séparer les contrastes pour identifier les zones en fonction
//
funcprot(0)
getd("../Fonctions")
missPath="./MissionsB/"
nomMission="MissionB-3"
// PBM--->matrice
img = readpbm(missPath+"HD215497.pbm")
//Traitement de l'image
rendu = img;
//matrice--->PBM
writepbm(rendu,"../Rendus/"+nomMission+".pbm");
|
9203ef8cba8a312848fb0af30c3e5caac1f01bc9 | 939d8a9ae374f022f5fc19383476f574721d7533 | /hotel_doctest.tst | 29c8e281e8a488a2c27be0c16bd6c523eb47b44b | [] | no_license | mash-97/hotels | 617b501d74465adc5c2572c9cf4270e8d0d77f12 | 93e74886d3429751510527068a790443bfa60d21 | refs/heads/master | 2023-04-10T22:09:29.120914 | 2021-04-24T21:06:31 | 2021-04-24T21:06:31 | 360,302,104 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,117 | tst | hotel_doctest.tst | >>> from hotel import *
>>> from reservation import *
>>> from room import *
>>> random.seed(987)
>>> Reservation.booking_numbers = []
>>> r1 = Room("Queen", 105, 80.0)
>>> r1.set_up_room_availability(['May'], 2021)
>>> h = Hotel("Secret Nugget Hotel", [r1])
>>> date1 = datetime.date(2021, 5, 3)
>>> date2 = datetime.date(2021, 5, 10)
>>> h.make_reservation("Mrs. Santos", "Queen", date1, date2)
1953400675629
>>> print(h.reservations[1953400675629])
Booking number: 1953400675629
Name: Mrs. Santos
Room reserved: Room 105,Queen,80.0
Check-in date: 2021-05-03
Check-out date: 2021-05-10
"Hotel::object->get_reciept"
>>> r1 = Room("Queen", 105, 80.0)
>>> r2 = Room("Twin", 101, 55.0)
>>> r3 = Room("Queen", 107, 80.0)
>>> r1.set_up_room_availability(['May', 'Jun'], 2021)
>>> r2.set_up_room_availability(['May', 'Jun'], 2021)
>>> r3.set_up_room_availability(['May', 'Jun'], 2021)
>>> h = Hotel("Secret Nugget Hotel", [r1, r2, r3])
>>> date1 = datetime.date(2021, 5, 3)
>>> date2 = datetime.date(2021, 5, 10)
>>> num1 = h.make_reservation("Mrs. Santos", "Queen", date1, date2)
>>> h.get_receipt([num1])
560.0
>>> date3 = datetime.date(2021, 6, 5)
>>> num2 = h.make_reservation("Mrs. Santos", "Twin", date1, date3)
>>> h.get_receipt([num1, num2])
2375.0
>>> h.get_receipt([123])
0.0
"Hotel::object->get_reservation_for_booking_number"
>>> random.seed(137)
>>> Reservation.booking_numbers = []
>>> r1 = Room("Queen", 105, 80.0)
>>> r1.set_up_room_availability(['May'], 2021)
>>> h = Hotel("Secret Nugget Hotel", [r1])
>>> date1 = datetime.date(2021, 5, 3)
>>> date2 = datetime.date(2021, 5, 10)
>>> num1 = h.make_reservation("Mrs. Santos", "Queen", date1, date2)
>>> rsv = h.get_reservation_for_booking_number(num1)
>>> print(rsv)
Booking number: 4191471513010
Name: Mrs. Santos
Room reserved: Room 105,Queen,80.0
Check-in date: 2021-05-03
Check-out date: 2021-05-10
"Hotel::object->cancel_reservation"
>>> r1 = Room("Queen", 105, 80.0)
>>> r1.set_up_room_availability(['May'], 2021)
>>> h = Hotel("Secret Nugget Hotel", [r1])
>>> date1 = datetime.date(2021, 5, 3)
>>> date2 = datetime.date(2021, 5, 10)
>>> num1 = h.make_reservation("Mrs. Santos", "Queen", date1, date2)
>>> h.cancel_reservation(num1)
>>> num1 in h.reservations
False
>>> r1.availability[(2021, 5)][4]
True
"Hotel::object->get_available_room_types"
>>> r1 = Room("Queen", 105, 80.0)
>>> r2 = Room("Twin", 101, 55.0)
>>> r3 = Room("Queen", 107, 80.0)
>>> r1.set_up_room_availability(['May', 'Jun'], 2021)
>>> r2.set_up_room_availability(['May', 'Jun'], 2021)
>>> r3.set_up_room_availability(['May', 'Jun'], 2021)
>>> h = Hotel("Secret Nugget Hotel", [r1, r2, r3])
>>> types = h.get_available_room_types()
>>> types.sort()
>>> types
['Queen', 'Twin']
"Hotel->load_hotel_info_file"
>>> hotel_name, rooms = Hotel.load_hotel_info_file('hotels/overlook_hotel/hotel_info.txt')
>>> hotel_name
'Overlook Hotel'
>>> print(len(rooms))
500
>>> print(rooms[236])
Room 237,Twin,99.99
>>> type(rooms[499])==Room
True
>>> all(map(lambda r: type(r)==Room, rooms))
True
"Hotel::obj->save_hotel_info_file"
>>> r1 = Room("Double", 101, 99.99)
>>> r1.set_up_room_availability(['Oct', 'Nov', 'Dec'], 2021)
>>> h = Hotel("Queen Elizabeth Hotel", [r1], {})
>>> h.save_hotel_info_file()
>>> fobj = open('hotels/queen_elizabeth_hotel/hotel_info.txt', 'r')
>>> fobj.read()
'Queen Elizabeth Hotel\nRoom 101,Double,99.99\n'
>>> fobj.close()
"Hotel::obj->load_reservation_strings_for_month"
>>> name, rooms = Hotel.load_hotel_info_file('hotels/overlook_hotel/hotel_info.txt')
>>> h = Hotel(name, rooms, {})
>>> rsvs = h.load_reservation_strings_for_month('overlook_hotel', 'Oct', 1975)
>>> rsvs[237] == [(1975, 'Oct', 1, ''), (1975, 'Oct', 2, ''), (1975, 'Oct', 3, ''), (1975, 'Oct', 4, ''), (1975, 'Oct', 5, ''), (1975, 'Oct', 6, ''), (1975, 'Oct', 7, ''), (1975, 'Oct', 8, ''), (1975, 'Oct', 9, ''), (1975, 'Oct', 10, ''), (1975, 'Oct', 11, ''), (1975, 'Oct', 12, ''), (1975, 'Oct', 13, ''), (1975, 'Oct', 14, ''), (1975, 'Oct', 15, ''), (1975, 'Oct', 16, ''), (1975, 'Oct', 17, ''), (1975, 'Oct', 18, ''), (1975, 'Oct', 19, ''), (1975, 'Oct', 20, ''), (1975, 'Oct', 21, ''), (1975, 'Oct', 22, ''), (1975, 'Oct', 23, ''), (1975, 'Oct', 24, ''), (1975, 'Oct', 25, ''), (1975, 'Oct', 26, ''), (1975, 'Oct', 27, ''), (1975, 'Oct', 28, ''), (1975, 'Oct', 29, ''), (1975, 'Oct', 30, '9998701091820--Jack'), (1975, 'Oct', 31, '9998701091820--Jack')]
True
"Hotel::obj->save_reservations_for_month"
>>> random.seed(987)
>>> r1 = Room("Double", 237, 99.99)
>>> r1.set_up_room_availability(['Oct', 'Nov', 'Dec'], 2021)
>>> Reservation.booking_numbers = []
>>> h = Hotel("Queen Elizabeth Hotel", [r1], {})
>>> date1 = datetime.date(2021, 10, 30)
>>> date2 = datetime.date(2021, 12, 23)
>>> num = h.make_reservation("Jack", "Double", date1, date2)
>>> h.save_reservations_for_month('Oct', 2021)
>>> fobj = open('hotels/queen_elizabeth_hotel/2021_Oct.csv', 'r')
>>> fobj.read()
'237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1953400675629--Jack,1953400675629--Jack\n'
>>> fobj.close()
"Hotel::obj->save_hotel"
>>> random.seed(987)
>>> Reservation.booking_numbers = []
>>> r1 = Room("Double", 237, 99.99)
>>> r1.set_up_room_availability(['Oct', 'Nov', 'Dec'], 2021)
>>> h = Hotel("Queen Elizabeth Hotel", [r1], {})
>>> date1 = datetime.date(2021, 10, 30)
>>> date2 = datetime.date(2021, 12, 23)
>>> h.make_reservation("Jack", "Double", date1, date2)
1953400675629
>>> h.save_hotel()
>>> fobj = open('hotels/queen_elizabeth_hotel/hotel_info.txt', 'r')
>>> fobj.read()
'Queen Elizabeth Hotel\nRoom 237,Double,99.99\n'
>>> fobj.close()
>>> fobj = open('hotels/queen_elizabeth_hotel/2021_Oct.csv', 'r')
>>> fobj.read()
'237,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1953400675629--Jack,1953400675629--Jack\n'
>>> fobj.close()
"Hotel->load_hotel"
>>> random.seed(137)
>>> Reservation.booking_numbers = []
>>> hotel = Hotel.load_hotel('overlook_hotel')
>>> hotel.name
'Overlook Hotel'
>>> str(hotel.rooms[236])
'Room 237,Twin,99.99'
>>> print(hotel.reservations[9998701091820])
Booking number: 9998701091820
Name: Jack
Room reserved: Room 237,Twin,99.99
Check-in date: 1975-10-30
Check-out date: 1975-12-24
|
391bb344f9ad8ed26c0a8cb229f5dda7219e9bd2 | b23687e2eb02bcb6d0f581b7975f42c496faeda1 | /Convolution.sce | 70f2b2b688fc3e5765882c4051853cfa41c31b99 | [
"MIT"
] | permissive | harvishj/Scilab | bd3fbd3e679eb07aa088ff2bab40d491c6499770 | 9daada512f42ea6f52199a34d6b18e64b107af94 | refs/heads/master | 2021-07-14T15:06:03.621923 | 2020-10-05T06:35:43 | 2020-10-05T06:35:43 | 213,328,984 | 1 | 3 | MIT | 2020-10-05T06:35:44 | 2019-10-07T08:16:52 | Scilab | UTF-8 | Scilab | false | false | 204 | sce | Convolution.sce | clear;
clf;
clc;
n = 0:1:4;
x=[1,1,1,1];
y=[1,1];
z = conv(x,y);
plot2d3(n,z);
xgrid(2)
title("Convoluted function : x = [1,1,1,1]", "fontsize", 3);
xlabel("T","fontsize",3);
ylabel("X","fontsize",3);
|
a34673b9d21e33941833b87995eaefd7c255ee8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1004/CH11/EX11.2/Ch011Ex2.sci | 19ebee71767343876fd9db4cf2b41460c169ff01 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 671 | sci | Ch011Ex2.sci | // Scilab code: Ex11.2: Threshold energy for the reaction: Pg:229 (2008)
mu = 931.5; // Energy equivalent of 1 amu, MeV
mx = 1.008665; // Mass of neutron, amu
Mx = 13.003355; // Mass of carbon atom, amu
M_alpha = 4.002603; // Mass of alpha particle, amu
M_Be = 10.013534; // Mass of beryllium, amu
MD = (Mx + mx - M_Be - M_alpha); // Mass defect of the reaction, amu
Q = MD*mu; // Q-value of the nuclear reaction, MeV
E_th = -Q*(1 + mx/Mx); // Threshold energy for the reaction in the laboratory, MeV
printf("\nThe threshold energy of the reaction is = %4.2f MeV", E_th);
// Result
// The threshold energy of the reaction is = 4.13 MeV |
f148699459c8594fa4a00d3149eb5733fcfdfdb2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH6/EX6.10/Chap6_Ex10_R1.sce | 3ff21a30fe09b8242269ff5fabf6a540322e75af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,533 | sce | Chap6_Ex10_R1.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-6,Example 10,Page 223
//Title: Maximum work obtained from steam
//================================================================================================================
clear
clc
//INPUT
m=0.1;//mass of superheated steam in the piston cylinder assembly in kg
P1=3;//initial pressure of superheated steam in MPa
T1=300;//initial temperature of superheated steam in degree celsius
T0=300;//temperature of the reservoir which is placed in thermal contact with the piston-cylinder assembly in degree celsius
P2=0.1;//pressure of steam after expansion in MPa
// ADDITIONAL DATA PROVIDED
//For steam at P1 and T1:
h1=2995.1;//specific enthalpy of steam in kJ/kg
v1=0.08116;//specific volume of steam in m^3/kg
s1=6.5422;//entropy of steam in kJ/kgK
//For steam at P2 and T2:
h2=3074.5;//specific enthalpy of steam in kJ/kg
v2=2.6390;//specific volume of steam in m^3/kg
s2=8.2166;//entropy of steam in kJ/kgK
//CALCULATION
T0=T0+273.15;//conversion of temperature in K
//The maximum work can be carried out if the process is carried out reversibly, which is given by:
W=m*(h1-h2-(((P1*v1)-(P2*v2))*10^3)-(T0*(s1-s2)));//calculation of maximum work obtained from the steam using Eq.(6.90) in kJ
//OUTPUT
mprintf("\n The maximum work obtained from steam=%0.2f kJ\n",W);
//===============================================END OF PROGRAM===================================================
|
4469b70869850149094e89e01f53ff9b07af2416 | 449d555969bfd7befe906877abab098c6e63a0e8 | /323/CH7/EX7.14/ex7_14.sci | 4e6ad6d4b58a7798b48dfacd5c11cfdd1c854814 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 232 | sci | ex7_14.sci | //Chapter 7,Ex7.14,Pg7.30
clc;
Vdc=300
Rl=3000
Vm=Vdc*%pi/2 //For full wave rectifier
printf("\n Vm=%.2f V \n",Vm)
Vrms=Vm/sqrt(2) //RMS value of secondary voltage
Im=Vm/Rl //Peak diode current
printf("\n Im=%.2f A \n",Im)
|
573b9022fbb66cfd7c25b5944ef67f112ff8bd12 | c565d26060d56f516d954d4b378b8699c31a71ef | /Scilab/virtual_old/RampTest/scilabwrite.sce | 33b2c26029f27c26d88dd86e2c22fa94b73d248b | [] | no_license | rupakrokade/sbhs-manual | 26d6e458c5d6aaba858c3cb2d07ff646d90645ce | 5aad4829d5ba1cdf9cc62d72f794fab2b56dd786 | refs/heads/master | 2021-01-23T06:25:53.904684 | 2015-10-24T11:57:04 | 2015-10-24T11:57:04 | 5,258,478 | 0 | 0 | null | 2012-11-16T11:45:07 | 2012-08-01T11:36:17 | Scilab | UTF-8 | Scilab | false | false | 34,032 | sce | scilabwrite.sce | 0.10000E+00 0.00000E+00 0.10000E+03 0.10000E+01
0.10000E+01 0.40000E+02 0.50000E+02 0.10000E+01
0.30000E+01 0.40000E+02 0.50000E+02 0.30000E+01
0.50000E+01 0.40000E+02 0.50000E+02 0.50000E+01
0.70000E+01 0.40000E+02 0.50000E+02 0.70000E+01
0.90000E+01 0.40000E+02 0.50000E+02 0.90000E+01
0.11000E+02 0.40000E+02 0.50000E+02 0.11000E+02
0.13000E+02 0.40000E+02 0.50000E+02 0.13000E+02
0.15000E+02 0.40000E+02 0.50000E+02 0.15000E+02
0.17000E+02 0.40000E+02 0.50000E+02 0.17000E+02
0.19000E+02 0.40000E+02 0.50000E+02 0.19000E+02
0.21000E+02 0.40000E+02 0.50000E+02 0.21000E+02
0.23000E+02 0.40000E+02 0.50000E+02 0.23000E+02
0.25000E+02 0.40000E+02 0.50000E+02 0.25000E+02
0.27000E+02 0.40000E+02 0.50000E+02 0.27000E+02
0.29000E+02 0.40000E+02 0.50000E+02 0.29000E+02
0.31000E+02 0.40000E+02 0.50000E+02 0.31000E+02
0.33000E+02 0.40000E+02 0.50000E+02 0.33000E+02
0.35000E+02 0.40000E+02 0.50000E+02 0.35000E+02
0.37000E+02 0.40000E+02 0.50000E+02 0.37000E+02
0.39000E+02 0.40000E+02 0.50000E+02 0.39000E+02
0.41000E+02 0.40000E+02 0.50000E+02 0.41000E+02
0.43000E+02 0.40000E+02 0.50000E+02 0.43000E+02
0.45000E+02 0.40000E+02 0.50000E+02 0.45000E+02
0.47000E+02 0.40000E+02 0.50000E+02 0.47000E+02
0.49000E+02 0.40000E+02 0.50000E+02 0.49000E+02
0.51000E+02 0.40000E+02 0.50000E+02 0.51000E+02
0.53000E+02 0.40000E+02 0.50000E+02 0.53000E+02
0.55000E+02 0.40000E+02 0.50000E+02 0.55000E+02
0.57000E+02 0.40000E+02 0.50000E+02 0.57000E+02
0.59000E+02 0.40000E+02 0.50000E+02 0.59000E+02
0.61000E+02 0.40000E+02 0.50000E+02 0.61000E+02
0.63000E+02 0.40000E+02 0.50000E+02 0.63000E+02
0.65000E+02 0.40000E+02 0.50000E+02 0.65000E+02
0.67000E+02 0.40000E+02 0.50000E+02 0.67000E+02
0.69000E+02 0.40000E+02 0.50000E+02 0.69000E+02
0.71000E+02 0.40000E+02 0.50000E+02 0.71000E+02
0.73000E+02 0.40000E+02 0.50000E+02 0.73000E+02
0.75000E+02 0.40000E+02 0.50000E+02 0.75000E+02
0.77000E+02 0.40000E+02 0.50000E+02 0.77000E+02
0.79000E+02 0.40000E+02 0.50000E+02 0.79000E+02
0.81000E+02 0.40000E+02 0.50000E+02 0.81000E+02
0.83000E+02 0.40000E+02 0.50000E+02 0.83000E+02
0.85000E+02 0.40000E+02 0.50000E+02 0.85000E+02
0.87000E+02 0.40000E+02 0.50000E+02 0.87000E+02
0.89000E+02 0.40000E+02 0.50000E+02 0.89000E+02
0.91000E+02 0.40000E+02 0.50000E+02 0.91000E+02
0.93000E+02 0.40000E+02 0.50000E+02 0.93000E+02
0.95000E+02 0.40000E+02 0.50000E+02 0.95000E+02
0.97000E+02 0.40000E+02 0.50000E+02 0.97000E+02
0.99000E+02 0.40000E+02 0.50000E+02 0.99000E+02
0.10100E+03 0.40000E+02 0.50000E+02 0.10100E+03
0.10300E+03 0.40000E+02 0.50000E+02 0.10300E+03
0.10500E+03 0.40000E+02 0.50000E+02 0.10500E+03
0.10700E+03 0.40000E+02 0.50000E+02 0.10700E+03
0.10900E+03 0.40000E+02 0.50000E+02 0.10900E+03
0.11100E+03 0.40000E+02 0.50000E+02 0.11100E+03
0.11300E+03 0.40000E+02 0.50000E+02 0.11300E+03
0.11500E+03 0.40000E+02 0.50000E+02 0.11500E+03
0.11700E+03 0.40000E+02 0.50000E+02 0.11700E+03
0.11900E+03 0.40000E+02 0.50000E+02 0.11900E+03
0.12100E+03 0.40000E+02 0.50000E+02 0.12100E+03
0.12300E+03 0.40000E+02 0.50000E+02 0.12300E+03
0.12500E+03 0.40000E+02 0.50000E+02 0.12500E+03
0.12700E+03 0.40000E+02 0.50000E+02 0.12700E+03
0.12900E+03 0.40000E+02 0.50000E+02 0.12900E+03
0.13100E+03 0.40000E+02 0.50000E+02 0.13100E+03
0.13300E+03 0.40000E+02 0.50000E+02 0.13300E+03
0.13500E+03 0.40000E+02 0.50000E+02 0.13500E+03
0.13700E+03 0.40000E+02 0.50000E+02 0.13700E+03
0.13900E+03 0.40000E+02 0.50000E+02 0.13900E+03
0.14100E+03 0.40000E+02 0.50000E+02 0.14100E+03
0.14300E+03 0.40000E+02 0.50000E+02 0.14300E+03
0.14500E+03 0.40000E+02 0.50000E+02 0.14500E+03
0.14700E+03 0.40000E+02 0.50000E+02 0.14700E+03
0.14900E+03 0.40000E+02 0.50000E+02 0.14900E+03
0.15100E+03 0.40000E+02 0.50000E+02 0.15100E+03
0.15300E+03 0.40100E+02 0.50000E+02 0.15300E+03
0.15500E+03 0.40200E+02 0.50000E+02 0.15500E+03
0.15700E+03 0.40300E+02 0.50000E+02 0.15700E+03
0.15900E+03 0.40400E+02 0.50000E+02 0.15900E+03
0.16100E+03 0.40500E+02 0.50000E+02 0.16100E+03
0.16300E+03 0.40600E+02 0.50000E+02 0.16300E+03
0.16500E+03 0.40700E+02 0.50000E+02 0.16500E+03
0.16700E+03 0.40800E+02 0.50000E+02 0.16700E+03
0.16900E+03 0.40900E+02 0.50000E+02 0.16900E+03
0.17100E+03 0.41000E+02 0.50000E+02 0.17100E+03
0.17300E+03 0.41100E+02 0.50000E+02 0.17300E+03
0.17500E+03 0.41200E+02 0.50000E+02 0.17500E+03
0.17700E+03 0.41300E+02 0.50000E+02 0.17700E+03
0.17900E+03 0.41400E+02 0.50000E+02 0.17900E+03
0.18100E+03 0.41500E+02 0.50000E+02 0.18100E+03
0.18300E+03 0.41600E+02 0.50000E+02 0.18300E+03
0.18500E+03 0.41700E+02 0.50000E+02 0.18500E+03
0.18700E+03 0.41800E+02 0.50000E+02 0.18700E+03
0.18900E+03 0.41900E+02 0.50000E+02 0.18900E+03
0.19100E+03 0.42000E+02 0.50000E+02 0.19100E+03
0.19300E+03 0.42100E+02 0.50000E+02 0.19300E+03
0.19500E+03 0.42200E+02 0.50000E+02 0.19500E+03
0.19700E+03 0.42300E+02 0.50000E+02 0.19700E+03
0.19900E+03 0.42400E+02 0.50000E+02 0.19900E+03
0.20100E+03 0.42500E+02 0.50000E+02 0.20100E+03
0.20300E+03 0.42600E+02 0.50000E+02 0.20300E+03
0.20500E+03 0.42700E+02 0.50000E+02 0.20500E+03
0.20700E+03 0.42800E+02 0.50000E+02 0.20700E+03
0.20900E+03 0.42900E+02 0.50000E+02 0.20900E+03
0.21100E+03 0.43000E+02 0.50000E+02 0.21100E+03
0.21300E+03 0.43100E+02 0.50000E+02 0.21300E+03
0.21500E+03 0.43200E+02 0.50000E+02 0.21500E+03
0.21700E+03 0.43300E+02 0.50000E+02 0.21700E+03
0.21900E+03 0.43400E+02 0.50000E+02 0.21900E+03
0.22100E+03 0.43500E+02 0.50000E+02 0.22100E+03
0.22300E+03 0.43600E+02 0.50000E+02 0.22300E+03
0.22500E+03 0.43700E+02 0.50000E+02 0.22500E+03
0.22700E+03 0.43800E+02 0.50000E+02 0.22700E+03
0.22900E+03 0.43900E+02 0.50000E+02 0.22900E+03
0.23100E+03 0.44000E+02 0.50000E+02 0.23100E+03
0.23300E+03 0.44100E+02 0.50000E+02 0.23300E+03
0.23500E+03 0.44200E+02 0.50000E+02 0.23500E+03
0.23700E+03 0.44300E+02 0.50000E+02 0.23700E+03
0.23900E+03 0.44400E+02 0.50000E+02 0.23900E+03
0.24100E+03 0.44500E+02 0.50000E+02 0.24100E+03
0.24300E+03 0.44600E+02 0.50000E+02 0.24300E+03
0.24500E+03 0.44700E+02 0.50000E+02 0.24500E+03
0.24700E+03 0.44800E+02 0.50000E+02 0.24700E+03
0.24900E+03 0.44900E+02 0.50000E+02 0.24900E+03
0.25100E+03 0.45000E+02 0.50000E+02 0.25100E+03
0.25300E+03 0.45100E+02 0.50000E+02 0.25300E+03
0.25500E+03 0.45200E+02 0.50000E+02 0.25500E+03
0.25700E+03 0.45300E+02 0.50000E+02 0.25700E+03
0.25900E+03 0.45400E+02 0.50000E+02 0.25900E+03
0.26100E+03 0.45500E+02 0.50000E+02 0.26100E+03
0.26300E+03 0.45600E+02 0.50000E+02 0.26300E+03
0.26500E+03 0.45700E+02 0.50000E+02 0.26500E+03
0.26700E+03 0.45800E+02 0.50000E+02 0.26700E+03
0.26900E+03 0.45900E+02 0.50000E+02 0.26900E+03
0.27100E+03 0.46000E+02 0.50000E+02 0.27100E+03
0.27300E+03 0.46100E+02 0.50000E+02 0.27300E+03
0.27500E+03 0.46200E+02 0.50000E+02 0.27500E+03
0.27700E+03 0.46300E+02 0.50000E+02 0.27700E+03
0.27900E+03 0.46400E+02 0.50000E+02 0.27900E+03
0.28100E+03 0.46500E+02 0.50000E+02 0.28100E+03
0.28300E+03 0.46600E+02 0.50000E+02 0.28300E+03
0.28500E+03 0.46700E+02 0.50000E+02 0.28500E+03
0.28700E+03 0.46800E+02 0.50000E+02 0.28700E+03
0.28900E+03 0.46900E+02 0.50000E+02 0.28900E+03
0.29100E+03 0.47000E+02 0.50000E+02 0.29100E+03
0.29300E+03 0.47100E+02 0.50000E+02 0.29300E+03
0.29500E+03 0.47200E+02 0.50000E+02 0.29500E+03
0.29700E+03 0.47300E+02 0.50000E+02 0.29700E+03
0.29900E+03 0.47400E+02 0.50000E+02 0.29900E+03
0.30100E+03 0.47500E+02 0.50000E+02 0.30100E+03
0.30300E+03 0.47600E+02 0.50000E+02 0.30300E+03
0.30500E+03 0.47700E+02 0.50000E+02 0.30500E+03
0.30700E+03 0.47800E+02 0.50000E+02 0.30700E+03
0.30900E+03 0.47900E+02 0.50000E+02 0.30900E+03
0.31100E+03 0.48000E+02 0.50000E+02 0.31100E+03
0.31300E+03 0.48100E+02 0.50000E+02 0.31300E+03
0.31500E+03 0.48200E+02 0.50000E+02 0.31500E+03
0.31700E+03 0.48300E+02 0.50000E+02 0.31700E+03
0.31900E+03 0.48400E+02 0.50000E+02 0.31900E+03
0.32100E+03 0.48500E+02 0.50000E+02 0.32100E+03
0.32300E+03 0.48600E+02 0.50000E+02 0.32300E+03
0.32500E+03 0.48700E+02 0.50000E+02 0.32500E+03
0.32700E+03 0.48800E+02 0.50000E+02 0.32700E+03
0.32900E+03 0.48900E+02 0.50000E+02 0.32900E+03
0.33100E+03 0.49000E+02 0.50000E+02 0.33100E+03
0.33300E+03 0.49100E+02 0.50000E+02 0.33300E+03
0.33500E+03 0.49200E+02 0.50000E+02 0.33500E+03
0.33700E+03 0.49300E+02 0.50000E+02 0.33700E+03
0.33900E+03 0.49400E+02 0.50000E+02 0.33900E+03
0.34100E+03 0.49500E+02 0.50000E+02 0.34100E+03
0.34300E+03 0.49600E+02 0.50000E+02 0.34300E+03
0.34500E+03 0.49700E+02 0.50000E+02 0.34500E+03
0.34700E+03 0.49800E+02 0.50000E+02 0.34700E+03
0.34900E+03 0.49900E+02 0.50000E+02 0.34900E+03
0.35100E+03 0.50000E+02 0.50000E+02 0.35100E+03
0.35300E+03 0.50100E+02 0.50000E+02 0.35300E+03
0.35500E+03 0.50200E+02 0.50000E+02 0.35500E+03
0.35700E+03 0.50300E+02 0.50000E+02 0.35700E+03
0.35900E+03 0.50400E+02 0.50000E+02 0.35900E+03
0.36100E+03 0.50500E+02 0.50000E+02 0.36100E+03
0.36300E+03 0.50600E+02 0.50000E+02 0.36300E+03
0.36500E+03 0.50700E+02 0.50000E+02 0.36500E+03
0.36700E+03 0.50800E+02 0.50000E+02 0.36700E+03
0.36900E+03 0.50900E+02 0.50000E+02 0.36900E+03
0.37100E+03 0.51000E+02 0.50000E+02 0.37100E+03
0.37300E+03 0.51100E+02 0.50000E+02 0.37300E+03
0.37500E+03 0.51200E+02 0.50000E+02 0.37500E+03
0.37700E+03 0.51300E+02 0.50000E+02 0.37700E+03
0.37900E+03 0.51400E+02 0.50000E+02 0.37900E+03
0.38100E+03 0.51500E+02 0.50000E+02 0.38100E+03
0.38300E+03 0.51600E+02 0.50000E+02 0.38300E+03
0.38500E+03 0.51700E+02 0.50000E+02 0.38500E+03
0.38700E+03 0.51800E+02 0.50000E+02 0.38700E+03
0.38900E+03 0.51900E+02 0.50000E+02 0.38900E+03
0.39100E+03 0.52000E+02 0.50000E+02 0.39100E+03
0.39300E+03 0.52100E+02 0.50000E+02 0.39300E+03
0.39500E+03 0.52200E+02 0.50000E+02 0.39500E+03
0.39700E+03 0.52300E+02 0.50000E+02 0.39700E+03
0.39900E+03 0.52400E+02 0.50000E+02 0.39900E+03
0.40100E+03 0.52500E+02 0.50000E+02 0.40100E+03
0.40300E+03 0.52600E+02 0.50000E+02 0.40300E+03
0.40500E+03 0.52700E+02 0.50000E+02 0.40500E+03
0.40700E+03 0.52800E+02 0.50000E+02 0.40700E+03
0.40900E+03 0.52900E+02 0.50000E+02 0.40900E+03
0.41100E+03 0.53000E+02 0.50000E+02 0.41100E+03
0.41300E+03 0.53100E+02 0.50000E+02 0.41300E+03
0.41500E+03 0.53200E+02 0.50000E+02 0.41500E+03
0.41700E+03 0.53300E+02 0.50000E+02 0.41700E+03
0.41900E+03 0.53400E+02 0.50000E+02 0.41900E+03
0.42100E+03 0.53500E+02 0.50000E+02 0.42100E+03
0.42300E+03 0.53600E+02 0.50000E+02 0.42300E+03
0.42500E+03 0.53700E+02 0.50000E+02 0.42500E+03
0.42700E+03 0.53800E+02 0.50000E+02 0.42700E+03
0.42900E+03 0.53900E+02 0.50000E+02 0.42900E+03
0.43100E+03 0.54000E+02 0.50000E+02 0.43100E+03
0.43300E+03 0.54100E+02 0.50000E+02 0.43300E+03
0.43500E+03 0.54200E+02 0.50000E+02 0.43500E+03
0.43700E+03 0.54300E+02 0.50000E+02 0.43700E+03
0.43900E+03 0.54400E+02 0.50000E+02 0.43900E+03
0.44100E+03 0.54500E+02 0.50000E+02 0.44100E+03
0.44300E+03 0.54600E+02 0.50000E+02 0.44300E+03
0.44500E+03 0.54700E+02 0.50000E+02 0.44500E+03
0.44700E+03 0.54800E+02 0.50000E+02 0.44700E+03
0.44900E+03 0.54900E+02 0.50000E+02 0.44900E+03
0.45100E+03 0.55000E+02 0.50000E+02 0.45100E+03
0.45300E+03 0.55100E+02 0.50000E+02 0.45300E+03
0.45500E+03 0.55200E+02 0.50000E+02 0.45500E+03
0.45700E+03 0.55300E+02 0.50000E+02 0.45700E+03
0.45900E+03 0.55400E+02 0.50000E+02 0.45900E+03
0.46100E+03 0.55500E+02 0.50000E+02 0.46100E+03
0.46300E+03 0.55600E+02 0.50000E+02 0.46300E+03
0.46500E+03 0.55700E+02 0.50000E+02 0.46500E+03
0.46700E+03 0.55800E+02 0.50000E+02 0.46700E+03
0.46900E+03 0.55900E+02 0.50000E+02 0.46900E+03
0.47100E+03 0.56000E+02 0.50000E+02 0.47100E+03
0.47300E+03 0.56100E+02 0.50000E+02 0.47300E+03
0.47500E+03 0.56200E+02 0.50000E+02 0.47500E+03
0.47700E+03 0.56300E+02 0.50000E+02 0.47700E+03
0.47900E+03 0.56400E+02 0.50000E+02 0.47900E+03
0.48100E+03 0.56500E+02 0.50000E+02 0.48100E+03
0.48300E+03 0.56600E+02 0.50000E+02 0.48300E+03
0.48500E+03 0.56700E+02 0.50000E+02 0.48500E+03
0.48700E+03 0.56800E+02 0.50000E+02 0.48700E+03
0.48900E+03 0.56900E+02 0.50000E+02 0.48900E+03
0.49100E+03 0.57000E+02 0.50000E+02 0.49100E+03
0.49300E+03 0.57100E+02 0.50000E+02 0.49300E+03
0.49500E+03 0.57200E+02 0.50000E+02 0.49500E+03
0.49700E+03 0.57300E+02 0.50000E+02 0.49700E+03
0.49900E+03 0.57400E+02 0.50000E+02 0.49900E+03
0.50100E+03 0.57500E+02 0.50000E+02 0.50100E+03
0.50300E+03 0.57600E+02 0.50000E+02 0.50300E+03
0.50500E+03 0.57700E+02 0.50000E+02 0.50500E+03
0.50700E+03 0.57800E+02 0.50000E+02 0.50700E+03
0.50900E+03 0.57900E+02 0.50000E+02 0.50900E+03
0.51100E+03 0.58000E+02 0.50000E+02 0.51100E+03
0.51300E+03 0.58100E+02 0.50000E+02 0.51300E+03
0.51500E+03 0.58200E+02 0.50000E+02 0.51500E+03
0.51700E+03 0.58300E+02 0.50000E+02 0.51700E+03
0.51900E+03 0.58400E+02 0.50000E+02 0.51900E+03
0.52100E+03 0.58500E+02 0.50000E+02 0.52100E+03
0.52300E+03 0.58600E+02 0.50000E+02 0.52300E+03
0.52500E+03 0.58700E+02 0.50000E+02 0.52500E+03
0.52700E+03 0.58800E+02 0.50000E+02 0.52700E+03
0.52900E+03 0.58900E+02 0.50000E+02 0.52900E+03
0.53100E+03 0.59000E+02 0.50000E+02 0.53100E+03
0.53300E+03 0.59100E+02 0.50000E+02 0.53300E+03
0.53500E+03 0.59200E+02 0.50000E+02 0.53500E+03
0.53700E+03 0.59300E+02 0.50000E+02 0.53700E+03
0.53900E+03 0.59400E+02 0.50000E+02 0.53900E+03
0.54100E+03 0.59500E+02 0.50000E+02 0.54100E+03
0.54300E+03 0.59600E+02 0.50000E+02 0.54300E+03
0.54500E+03 0.59700E+02 0.50000E+02 0.54500E+03
0.54700E+03 0.59800E+02 0.50000E+02 0.54700E+03
0.54900E+03 0.59900E+02 0.50000E+02 0.54900E+03
0.55100E+03 0.60000E+02 0.50000E+02 0.55100E+03
0.55300E+03 0.60100E+02 0.50000E+02 0.55300E+03
0.55500E+03 0.60200E+02 0.50000E+02 0.55500E+03
0.55700E+03 0.60300E+02 0.50000E+02 0.55700E+03
0.55900E+03 0.60400E+02 0.50000E+02 0.55900E+03
0.56100E+03 0.60500E+02 0.50000E+02 0.56100E+03
0.56300E+03 0.60600E+02 0.50000E+02 0.56300E+03
0.56500E+03 0.60700E+02 0.50000E+02 0.56500E+03
0.56700E+03 0.60800E+02 0.50000E+02 0.56700E+03
0.56900E+03 0.60900E+02 0.50000E+02 0.56900E+03
0.57100E+03 0.61000E+02 0.50000E+02 0.57100E+03
0.57300E+03 0.61100E+02 0.50000E+02 0.57300E+03
0.57500E+03 0.61200E+02 0.50000E+02 0.57500E+03
0.57700E+03 0.61300E+02 0.50000E+02 0.57700E+03
0.57900E+03 0.61400E+02 0.50000E+02 0.57900E+03
0.58100E+03 0.61500E+02 0.50000E+02 0.58100E+03
0.58300E+03 0.61600E+02 0.50000E+02 0.58300E+03
0.58500E+03 0.61700E+02 0.50000E+02 0.58500E+03
0.58700E+03 0.61800E+02 0.50000E+02 0.58700E+03
0.58900E+03 0.61900E+02 0.50000E+02 0.58900E+03
0.59100E+03 0.62000E+02 0.50000E+02 0.59100E+03
0.59300E+03 0.62100E+02 0.50000E+02 0.59300E+03
0.59500E+03 0.62200E+02 0.50000E+02 0.59500E+03
0.59700E+03 0.62300E+02 0.50000E+02 0.59700E+03
0.59900E+03 0.62400E+02 0.50000E+02 0.59900E+03
0.60100E+03 0.62500E+02 0.50000E+02 0.60100E+03
0.60300E+03 0.62600E+02 0.50000E+02 0.60300E+03
0.60500E+03 0.62700E+02 0.50000E+02 0.60500E+03
0.60700E+03 0.62800E+02 0.50000E+02 0.60700E+03
0.60900E+03 0.62900E+02 0.50000E+02 0.60900E+03
0.61100E+03 0.63000E+02 0.50000E+02 0.61100E+03
0.61300E+03 0.63100E+02 0.50000E+02 0.61300E+03
0.61500E+03 0.63200E+02 0.50000E+02 0.61500E+03
0.61700E+03 0.63300E+02 0.50000E+02 0.61700E+03
0.61900E+03 0.63400E+02 0.50000E+02 0.61900E+03
0.62100E+03 0.63500E+02 0.50000E+02 0.62100E+03
0.62300E+03 0.63600E+02 0.50000E+02 0.62300E+03
0.62500E+03 0.63700E+02 0.50000E+02 0.62500E+03
0.62700E+03 0.63800E+02 0.50000E+02 0.62700E+03
0.62900E+03 0.63900E+02 0.50000E+02 0.62900E+03
0.63100E+03 0.64000E+02 0.50000E+02 0.63100E+03
0.63300E+03 0.64100E+02 0.50000E+02 0.63300E+03
0.63500E+03 0.64200E+02 0.50000E+02 0.63500E+03
0.63700E+03 0.64300E+02 0.50000E+02 0.63700E+03
0.63900E+03 0.64400E+02 0.50000E+02 0.63900E+03
0.64100E+03 0.64500E+02 0.50000E+02 0.64100E+03
0.64300E+03 0.64600E+02 0.50000E+02 0.64300E+03
0.64500E+03 0.64700E+02 0.50000E+02 0.64500E+03
0.64700E+03 0.64800E+02 0.50000E+02 0.64700E+03
0.64900E+03 0.64900E+02 0.50000E+02 0.64900E+03
0.65100E+03 0.65000E+02 0.50000E+02 0.65100E+03
0.65300E+03 0.65100E+02 0.50000E+02 0.65300E+03
0.65500E+03 0.65200E+02 0.50000E+02 0.65500E+03
0.65700E+03 0.65300E+02 0.50000E+02 0.65700E+03
0.65900E+03 0.65400E+02 0.50000E+02 0.65900E+03
0.66100E+03 0.65500E+02 0.50000E+02 0.66100E+03
0.66300E+03 0.65600E+02 0.50000E+02 0.66300E+03
0.66500E+03 0.65700E+02 0.50000E+02 0.66500E+03
0.66700E+03 0.65800E+02 0.50000E+02 0.66700E+03
0.66900E+03 0.65900E+02 0.50000E+02 0.66900E+03
0.67100E+03 0.66000E+02 0.50000E+02 0.67100E+03
0.67300E+03 0.66100E+02 0.50000E+02 0.67300E+03
0.67500E+03 0.66200E+02 0.50000E+02 0.67500E+03
0.67700E+03 0.66300E+02 0.50000E+02 0.67700E+03
0.67900E+03 0.66400E+02 0.50000E+02 0.67900E+03
0.68100E+03 0.66500E+02 0.50000E+02 0.68100E+03
0.68300E+03 0.66600E+02 0.50000E+02 0.68300E+03
0.68500E+03 0.66700E+02 0.50000E+02 0.68500E+03
0.68700E+03 0.66800E+02 0.50000E+02 0.68700E+03
0.68900E+03 0.66900E+02 0.50000E+02 0.68900E+03
0.69100E+03 0.67000E+02 0.50000E+02 0.69100E+03
0.69300E+03 0.67100E+02 0.50000E+02 0.69300E+03
0.69500E+03 0.67200E+02 0.50000E+02 0.69500E+03
0.69700E+03 0.67300E+02 0.50000E+02 0.69700E+03
0.69900E+03 0.67400E+02 0.50000E+02 0.69900E+03
0.70100E+03 0.67500E+02 0.50000E+02 0.70100E+03
0.70300E+03 0.67600E+02 0.50000E+02 0.70300E+03
0.70500E+03 0.67700E+02 0.50000E+02 0.70500E+03
0.70700E+03 0.67800E+02 0.50000E+02 0.70700E+03
0.70900E+03 0.67900E+02 0.50000E+02 0.70900E+03
0.71100E+03 0.68000E+02 0.50000E+02 0.71100E+03
0.71300E+03 0.68100E+02 0.50000E+02 0.71300E+03
0.71500E+03 0.68200E+02 0.50000E+02 0.71500E+03
0.71700E+03 0.68300E+02 0.50000E+02 0.71700E+03
0.71900E+03 0.68400E+02 0.50000E+02 0.71900E+03
0.72100E+03 0.68500E+02 0.50000E+02 0.72100E+03
0.72300E+03 0.68600E+02 0.50000E+02 0.72300E+03
0.72500E+03 0.68700E+02 0.50000E+02 0.72500E+03
0.72700E+03 0.68800E+02 0.50000E+02 0.72700E+03
0.72900E+03 0.68900E+02 0.50000E+02 0.72900E+03
0.73100E+03 0.69000E+02 0.50000E+02 0.73100E+03
0.73300E+03 0.69100E+02 0.50000E+02 0.73300E+03
0.73500E+03 0.69200E+02 0.50000E+02 0.73500E+03
0.73700E+03 0.69300E+02 0.50000E+02 0.73700E+03
0.73900E+03 0.69400E+02 0.50000E+02 0.73900E+03
0.74100E+03 0.69500E+02 0.50000E+02 0.74100E+03
0.74300E+03 0.69600E+02 0.50000E+02 0.74300E+03
0.74500E+03 0.69700E+02 0.50000E+02 0.74500E+03
0.74700E+03 0.69800E+02 0.50000E+02 0.74700E+03
0.74900E+03 0.69900E+02 0.50000E+02 0.74900E+03
0.75100E+03 0.70000E+02 0.50000E+02 0.75100E+03
0.75300E+03 0.70000E+02 0.50000E+02 0.75300E+03
0.75500E+03 0.70000E+02 0.50000E+02 0.75500E+03
0.75700E+03 0.70000E+02 0.50000E+02 0.75700E+03
0.75900E+03 0.70000E+02 0.50000E+02 0.75900E+03
0.76100E+03 0.70000E+02 0.50000E+02 0.76100E+03
0.76300E+03 0.70000E+02 0.50000E+02 0.76300E+03
0.76500E+03 0.70000E+02 0.50000E+02 0.76500E+03
0.76700E+03 0.70000E+02 0.50000E+02 0.76700E+03
0.76900E+03 0.70000E+02 0.50000E+02 0.76900E+03
0.77100E+03 0.70000E+02 0.50000E+02 0.77100E+03
0.77300E+03 0.70000E+02 0.50000E+02 0.77300E+03
0.77500E+03 0.70000E+02 0.50000E+02 0.77500E+03
0.77700E+03 0.70000E+02 0.50000E+02 0.77700E+03
0.77900E+03 0.70000E+02 0.50000E+02 0.77900E+03
0.78100E+03 0.70000E+02 0.50000E+02 0.78100E+03
0.78300E+03 0.70000E+02 0.50000E+02 0.78300E+03
0.78500E+03 0.70000E+02 0.50000E+02 0.78500E+03
0.78700E+03 0.70000E+02 0.50000E+02 0.78700E+03
0.78900E+03 0.70000E+02 0.50000E+02 0.78900E+03
0.79100E+03 0.70000E+02 0.50000E+02 0.79100E+03
0.79300E+03 0.70000E+02 0.50000E+02 0.79300E+03
0.79500E+03 0.70000E+02 0.50000E+02 0.79500E+03
0.79700E+03 0.70000E+02 0.50000E+02 0.79700E+03
0.79900E+03 0.70000E+02 0.50000E+02 0.79900E+03
0.80100E+03 0.70000E+02 0.50000E+02 0.80100E+03
0.80300E+03 0.70000E+02 0.50000E+02 0.80300E+03
0.80500E+03 0.70000E+02 0.50000E+02 0.80500E+03
0.80700E+03 0.70000E+02 0.50000E+02 0.80700E+03
0.80900E+03 0.70000E+02 0.50000E+02 0.80900E+03
0.81100E+03 0.70000E+02 0.50000E+02 0.81100E+03
0.81300E+03 0.70000E+02 0.50000E+02 0.81300E+03
0.81500E+03 0.70000E+02 0.50000E+02 0.81500E+03
0.81700E+03 0.70000E+02 0.50000E+02 0.81700E+03
0.81900E+03 0.70000E+02 0.50000E+02 0.81900E+03
0.82100E+03 0.70000E+02 0.50000E+02 0.82100E+03
0.82300E+03 0.70000E+02 0.50000E+02 0.82300E+03
0.82500E+03 0.70000E+02 0.50000E+02 0.82500E+03
0.82700E+03 0.70000E+02 0.50000E+02 0.82700E+03
0.82900E+03 0.70000E+02 0.50000E+02 0.82900E+03
0.83100E+03 0.70000E+02 0.50000E+02 0.83100E+03
0.83300E+03 0.70000E+02 0.50000E+02 0.83300E+03
0.83500E+03 0.70000E+02 0.50000E+02 0.83500E+03
0.83700E+03 0.70000E+02 0.50000E+02 0.83700E+03
0.83900E+03 0.70000E+02 0.50000E+02 0.83900E+03
0.84100E+03 0.70000E+02 0.50000E+02 0.84100E+03
0.84300E+03 0.70000E+02 0.50000E+02 0.84300E+03
0.84500E+03 0.70000E+02 0.50000E+02 0.84500E+03
0.84700E+03 0.70000E+02 0.50000E+02 0.84700E+03
0.84900E+03 0.70000E+02 0.50000E+02 0.84900E+03
0.85100E+03 0.70000E+02 0.50000E+02 0.85100E+03
0.85300E+03 0.70000E+02 0.50000E+02 0.85300E+03
0.85500E+03 0.70000E+02 0.50000E+02 0.85500E+03
0.85700E+03 0.70000E+02 0.50000E+02 0.85700E+03
0.85900E+03 0.70000E+02 0.50000E+02 0.85900E+03
0.86100E+03 0.70000E+02 0.50000E+02 0.86100E+03
0.86300E+03 0.70000E+02 0.50000E+02 0.86300E+03
0.86500E+03 0.70000E+02 0.50000E+02 0.86500E+03
0.86700E+03 0.70000E+02 0.50000E+02 0.86700E+03
0.86900E+03 0.70000E+02 0.50000E+02 0.86900E+03
0.87100E+03 0.70000E+02 0.50000E+02 0.87100E+03
0.87300E+03 0.70000E+02 0.50000E+02 0.87300E+03
0.87500E+03 0.70000E+02 0.50000E+02 0.87500E+03
0.87700E+03 0.70000E+02 0.50000E+02 0.87700E+03
0.87900E+03 0.70000E+02 0.50000E+02 0.87900E+03
0.88100E+03 0.70000E+02 0.50000E+02 0.88100E+03
0.88300E+03 0.70000E+02 0.50000E+02 0.88300E+03
0.88500E+03 0.70000E+02 0.50000E+02 0.88500E+03
0.88700E+03 0.70000E+02 0.50000E+02 0.88700E+03
0.88900E+03 0.70000E+02 0.50000E+02 0.88900E+03
0.89100E+03 0.70000E+02 0.50000E+02 0.89100E+03
0.89300E+03 0.70000E+02 0.50000E+02 0.89300E+03
0.89500E+03 0.70000E+02 0.50000E+02 0.89500E+03
0.89700E+03 0.70000E+02 0.50000E+02 0.89700E+03
0.89900E+03 0.70000E+02 0.50000E+02 0.89900E+03
0.90100E+03 0.70000E+02 0.50000E+02 0.90100E+03
0.90300E+03 0.70000E+02 0.50000E+02 0.90300E+03
0.90500E+03 0.70000E+02 0.50000E+02 0.90500E+03
0.90700E+03 0.70000E+02 0.50000E+02 0.90700E+03
0.90900E+03 0.70000E+02 0.50000E+02 0.90900E+03
0.91100E+03 0.70000E+02 0.50000E+02 0.91100E+03
0.91300E+03 0.70000E+02 0.50000E+02 0.91300E+03
0.91500E+03 0.70000E+02 0.50000E+02 0.91500E+03
0.91700E+03 0.70000E+02 0.50000E+02 0.91700E+03
0.91900E+03 0.70000E+02 0.50000E+02 0.91900E+03
0.92100E+03 0.70000E+02 0.50000E+02 0.92100E+03
0.92300E+03 0.70000E+02 0.50000E+02 0.92300E+03
0.92500E+03 0.70000E+02 0.50000E+02 0.92500E+03
0.92700E+03 0.70000E+02 0.50000E+02 0.92700E+03
0.92900E+03 0.70000E+02 0.50000E+02 0.92900E+03
0.93100E+03 0.70000E+02 0.50000E+02 0.93100E+03
0.93300E+03 0.70000E+02 0.50000E+02 0.93300E+03
0.93500E+03 0.70000E+02 0.50000E+02 0.93500E+03
0.93700E+03 0.70000E+02 0.50000E+02 0.93700E+03
0.93900E+03 0.70000E+02 0.50000E+02 0.93900E+03
0.94100E+03 0.70000E+02 0.50000E+02 0.94100E+03
0.94300E+03 0.70000E+02 0.50000E+02 0.94300E+03
0.94500E+03 0.70000E+02 0.50000E+02 0.94500E+03
0.94700E+03 0.70000E+02 0.50000E+02 0.94700E+03
0.94900E+03 0.70000E+02 0.50000E+02 0.94900E+03
0.95100E+03 0.70000E+02 0.50000E+02 0.95100E+03
0.95300E+03 0.70000E+02 0.50000E+02 0.95300E+03
0.95500E+03 0.70000E+02 0.50000E+02 0.95500E+03
0.95700E+03 0.70000E+02 0.50000E+02 0.95700E+03
0.95900E+03 0.70000E+02 0.50000E+02 0.95900E+03
0.96100E+03 0.70000E+02 0.50000E+02 0.96100E+03
0.96300E+03 0.70000E+02 0.50000E+02 0.96300E+03
0.96500E+03 0.70000E+02 0.50000E+02 0.96500E+03
0.96700E+03 0.70000E+02 0.50000E+02 0.96700E+03
0.96900E+03 0.70000E+02 0.50000E+02 0.96900E+03
0.97100E+03 0.70000E+02 0.50000E+02 0.97100E+03
0.97300E+03 0.70000E+02 0.50000E+02 0.97300E+03
0.97500E+03 0.70000E+02 0.50000E+02 0.97500E+03
0.97700E+03 0.70000E+02 0.50000E+02 0.97700E+03
0.97900E+03 0.70000E+02 0.50000E+02 0.97900E+03
0.98100E+03 0.70000E+02 0.50000E+02 0.98100E+03
0.98300E+03 0.70000E+02 0.50000E+02 0.98300E+03
0.98500E+03 0.70000E+02 0.50000E+02 0.98500E+03
0.98700E+03 0.70000E+02 0.50000E+02 0.98700E+03
0.98900E+03 0.70000E+02 0.50000E+02 0.98900E+03
0.99100E+03 0.70000E+02 0.50000E+02 0.99100E+03
0.99300E+03 0.70000E+02 0.50000E+02 0.99300E+03
0.99500E+03 0.70000E+02 0.50000E+02 0.99500E+03
0.99700E+03 0.70000E+02 0.50000E+02 0.99700E+03
0.99900E+03 0.70000E+02 0.50000E+02 0.99900E+03
0.10010E+04 0.70000E+02 0.50000E+02 0.10010E+04
0.10030E+04 0.70000E+02 0.50000E+02 0.10030E+04
0.10050E+04 0.70000E+02 0.50000E+02 0.10050E+04
0.10070E+04 0.70000E+02 0.50000E+02 0.10070E+04
0.10090E+04 0.70000E+02 0.50000E+02 0.10090E+04
0.10110E+04 0.70000E+02 0.50000E+02 0.10110E+04
0.10130E+04 0.70000E+02 0.50000E+02 0.10130E+04
0.10150E+04 0.70000E+02 0.50000E+02 0.10150E+04
0.10170E+04 0.70000E+02 0.50000E+02 0.10170E+04
0.10190E+04 0.70000E+02 0.50000E+02 0.10190E+04
0.10210E+04 0.70000E+02 0.50000E+02 0.10210E+04
0.10230E+04 0.70000E+02 0.50000E+02 0.10230E+04
0.10250E+04 0.70000E+02 0.50000E+02 0.10250E+04
0.10270E+04 0.70000E+02 0.50000E+02 0.10270E+04
0.10290E+04 0.70000E+02 0.50000E+02 0.10290E+04
0.10310E+04 0.70000E+02 0.50000E+02 0.10310E+04
0.10330E+04 0.70000E+02 0.50000E+02 0.10330E+04
0.10350E+04 0.70000E+02 0.50000E+02 0.10350E+04
0.10370E+04 0.70000E+02 0.50000E+02 0.10370E+04
0.10390E+04 0.70000E+02 0.50000E+02 0.10390E+04
0.10410E+04 0.70000E+02 0.50000E+02 0.10410E+04
0.10430E+04 0.70000E+02 0.50000E+02 0.10430E+04
0.10450E+04 0.70000E+02 0.50000E+02 0.10450E+04
0.10470E+04 0.70000E+02 0.50000E+02 0.10470E+04
0.10490E+04 0.70000E+02 0.50000E+02 0.10490E+04
0.10510E+04 0.70000E+02 0.50000E+02 0.10510E+04
0.10530E+04 0.70000E+02 0.50000E+02 0.10530E+04
0.10550E+04 0.70000E+02 0.50000E+02 0.10550E+04
0.10570E+04 0.70000E+02 0.50000E+02 0.10570E+04
0.10590E+04 0.70000E+02 0.50000E+02 0.10590E+04
0.10610E+04 0.70000E+02 0.50000E+02 0.10610E+04
0.10630E+04 0.70000E+02 0.50000E+02 0.10630E+04
0.10650E+04 0.70000E+02 0.50000E+02 0.10650E+04
0.10670E+04 0.70000E+02 0.50000E+02 0.10670E+04
0.10690E+04 0.70000E+02 0.50000E+02 0.10690E+04
0.10710E+04 0.70000E+02 0.50000E+02 0.10710E+04
0.10730E+04 0.70000E+02 0.50000E+02 0.10730E+04
0.10750E+04 0.70000E+02 0.50000E+02 0.10750E+04
0.10770E+04 0.70000E+02 0.50000E+02 0.10770E+04
0.10790E+04 0.70000E+02 0.50000E+02 0.10790E+04
0.10810E+04 0.70000E+02 0.50000E+02 0.10810E+04
0.10830E+04 0.70000E+02 0.50000E+02 0.10830E+04
0.10850E+04 0.70000E+02 0.50000E+02 0.10850E+04
0.10870E+04 0.70000E+02 0.50000E+02 0.10870E+04
0.10890E+04 0.70000E+02 0.50000E+02 0.10890E+04
0.10910E+04 0.70000E+02 0.50000E+02 0.10910E+04
0.10930E+04 0.70000E+02 0.50000E+02 0.10930E+04
0.10950E+04 0.70000E+02 0.50000E+02 0.10950E+04
0.10970E+04 0.70000E+02 0.50000E+02 0.10970E+04
0.10990E+04 0.70000E+02 0.50000E+02 0.10990E+04
0.11010E+04 0.70000E+02 0.50000E+02 0.11010E+04
0.11030E+04 0.70000E+02 0.50000E+02 0.11030E+04
0.11050E+04 0.70000E+02 0.50000E+02 0.11050E+04
0.11070E+04 0.70000E+02 0.50000E+02 0.11070E+04
0.11090E+04 0.70000E+02 0.50000E+02 0.11090E+04
0.11110E+04 0.70000E+02 0.50000E+02 0.11110E+04
0.11130E+04 0.70000E+02 0.50000E+02 0.11130E+04
0.11150E+04 0.70000E+02 0.50000E+02 0.11150E+04
0.11170E+04 0.70000E+02 0.50000E+02 0.11170E+04
0.11190E+04 0.70000E+02 0.50000E+02 0.11190E+04
0.11210E+04 0.70000E+02 0.50000E+02 0.11210E+04
0.11230E+04 0.70000E+02 0.50000E+02 0.11230E+04
0.11250E+04 0.70000E+02 0.50000E+02 0.11250E+04
0.11270E+04 0.70000E+02 0.50000E+02 0.11270E+04
0.11290E+04 0.70000E+02 0.50000E+02 0.11290E+04
0.11310E+04 0.70000E+02 0.50000E+02 0.11310E+04
0.11330E+04 0.70000E+02 0.50000E+02 0.11330E+04
0.11350E+04 0.70000E+02 0.50000E+02 0.11350E+04
0.11370E+04 0.70000E+02 0.50000E+02 0.11370E+04
0.11390E+04 0.70000E+02 0.50000E+02 0.11390E+04
0.11410E+04 0.70000E+02 0.50000E+02 0.11410E+04
0.11430E+04 0.70000E+02 0.50000E+02 0.11430E+04
0.11450E+04 0.70000E+02 0.50000E+02 0.11450E+04
0.11470E+04 0.70000E+02 0.50000E+02 0.11470E+04
0.11490E+04 0.70000E+02 0.50000E+02 0.11490E+04
0.11510E+04 0.70000E+02 0.50000E+02 0.11510E+04
0.11530E+04 0.70000E+02 0.50000E+02 0.11530E+04
0.11550E+04 0.70000E+02 0.50000E+02 0.11550E+04
0.11570E+04 0.70000E+02 0.50000E+02 0.11570E+04
0.11590E+04 0.70000E+02 0.50000E+02 0.11590E+04
0.11610E+04 0.70000E+02 0.50000E+02 0.11610E+04
0.11630E+04 0.70000E+02 0.50000E+02 0.11630E+04
0.11650E+04 0.70000E+02 0.50000E+02 0.11650E+04
0.11670E+04 0.70000E+02 0.50000E+02 0.11670E+04
0.11690E+04 0.70000E+02 0.50000E+02 0.11690E+04
0.11710E+04 0.70000E+02 0.50000E+02 0.11710E+04
0.11730E+04 0.70000E+02 0.50000E+02 0.11730E+04
0.11750E+04 0.70000E+02 0.50000E+02 0.11750E+04
0.11770E+04 0.70000E+02 0.50000E+02 0.11770E+04
0.11790E+04 0.70000E+02 0.50000E+02 0.11790E+04
0.11810E+04 0.70000E+02 0.50000E+02 0.11810E+04
0.11830E+04 0.70000E+02 0.50000E+02 0.11830E+04
0.11850E+04 0.70000E+02 0.50000E+02 0.11850E+04
0.11870E+04 0.70000E+02 0.50000E+02 0.11870E+04
0.11890E+04 0.70000E+02 0.50000E+02 0.11890E+04
0.11910E+04 0.70000E+02 0.50000E+02 0.11910E+04
0.11930E+04 0.70000E+02 0.50000E+02 0.11930E+04
0.11950E+04 0.70000E+02 0.50000E+02 0.11950E+04
0.11970E+04 0.70000E+02 0.50000E+02 0.11970E+04
0.11990E+04 0.70000E+02 0.50000E+02 0.11990E+04
0.12010E+04 0.70000E+02 0.50000E+02 0.12010E+04
0.12030E+04 0.70000E+02 0.50000E+02 0.12030E+04
0.12050E+04 0.70000E+02 0.50000E+02 0.12050E+04
0.12070E+04 0.70000E+02 0.50000E+02 0.12070E+04
0.12090E+04 0.70000E+02 0.50000E+02 0.12090E+04
0.12110E+04 0.70000E+02 0.50000E+02 0.12110E+04
0.12130E+04 0.70000E+02 0.50000E+02 0.12130E+04
0.12150E+04 0.70000E+02 0.50000E+02 0.12150E+04
0.12170E+04 0.70000E+02 0.50000E+02 0.12170E+04
0.12190E+04 0.70000E+02 0.50000E+02 0.12190E+04
0.12210E+04 0.70000E+02 0.50000E+02 0.12210E+04
0.12230E+04 0.70000E+02 0.50000E+02 0.12230E+04
0.12250E+04 0.70000E+02 0.50000E+02 0.12250E+04
0.12270E+04 0.70000E+02 0.50000E+02 0.12270E+04
0.12290E+04 0.70000E+02 0.50000E+02 0.12290E+04
0.12310E+04 0.70000E+02 0.50000E+02 0.12310E+04
0.12330E+04 0.70000E+02 0.50000E+02 0.12330E+04
0.12350E+04 0.70000E+02 0.50000E+02 0.12350E+04
0.12370E+04 0.70000E+02 0.50000E+02 0.12370E+04
0.12390E+04 0.70000E+02 0.50000E+02 0.12390E+04
0.12410E+04 0.70000E+02 0.50000E+02 0.12410E+04
0.12430E+04 0.70000E+02 0.50000E+02 0.12430E+04
0.12450E+04 0.70000E+02 0.50000E+02 0.12450E+04
0.12470E+04 0.70000E+02 0.50000E+02 0.12470E+04
0.12490E+04 0.70000E+02 0.50000E+02 0.12490E+04
0.12510E+04 0.70000E+02 0.50000E+02 0.12510E+04
0.12530E+04 0.70000E+02 0.50000E+02 0.12530E+04
0.12550E+04 0.70000E+02 0.50000E+02 0.12550E+04
0.12570E+04 0.70000E+02 0.50000E+02 0.12570E+04
0.12590E+04 0.70000E+02 0.50000E+02 0.12590E+04
0.12610E+04 0.70000E+02 0.50000E+02 0.12610E+04
0.12630E+04 0.70000E+02 0.50000E+02 0.12630E+04
0.12650E+04 0.70000E+02 0.50000E+02 0.12650E+04
0.12670E+04 0.70000E+02 0.50000E+02 0.12670E+04
0.12690E+04 0.70000E+02 0.50000E+02 0.12690E+04
0.12710E+04 0.70000E+02 0.50000E+02 0.12710E+04
0.12730E+04 0.70000E+02 0.50000E+02 0.12730E+04
0.12750E+04 0.70000E+02 0.50000E+02 0.12750E+04
0.12770E+04 0.70000E+02 0.50000E+02 0.12770E+04
0.12790E+04 0.70000E+02 0.50000E+02 0.12790E+04
0.12810E+04 0.70000E+02 0.50000E+02 0.12810E+04
0.12830E+04 0.70000E+02 0.50000E+02 0.12830E+04
0.12850E+04 0.70000E+02 0.50000E+02 0.12850E+04
0.12870E+04 0.70000E+02 0.50000E+02 0.12870E+04
0.12890E+04 0.70000E+02 0.50000E+02 0.12890E+04
0.12910E+04 0.70000E+02 0.50000E+02 0.12910E+04
0.12930E+04 0.70000E+02 0.50000E+02 0.12930E+04
0.12950E+04 0.70000E+02 0.50000E+02 0.12950E+04
0.12970E+04 0.70000E+02 0.50000E+02 0.12970E+04
0.12990E+04 0.70000E+02 0.50000E+02 0.12990E+04
0.13010E+04 0.70000E+02 0.50000E+02 0.13010E+04
0.13030E+04 0.70000E+02 0.50000E+02 0.13030E+04
0.13050E+04 0.70000E+02 0.50000E+02 0.13050E+04
0.13070E+04 0.70000E+02 0.50000E+02 0.13070E+04
0.13090E+04 0.70000E+02 0.50000E+02 0.13090E+04
0.13110E+04 0.70000E+02 0.50000E+02 0.13110E+04
0.13130E+04 0.70000E+02 0.50000E+02 0.13130E+04
0.13150E+04 0.70000E+02 0.50000E+02 0.13150E+04
0.13170E+04 0.70000E+02 0.50000E+02 0.13170E+04
0.13190E+04 0.70000E+02 0.50000E+02 0.13190E+04
0.13210E+04 0.70000E+02 0.50000E+02 0.13210E+04
0.13230E+04 0.70000E+02 0.50000E+02 0.13230E+04
0.13250E+04 0.70000E+02 0.50000E+02 0.13250E+04
0.13270E+04 0.70000E+02 0.50000E+02 0.13270E+04
0.13290E+04 0.70000E+02 0.50000E+02 0.13290E+04
0.13310E+04 0.70000E+02 0.50000E+02 0.13310E+04
0.13330E+04 0.70000E+02 0.50000E+02 0.13330E+04
0.13350E+04 0.70000E+02 0.50000E+02 0.13350E+04
0.13370E+04 0.70000E+02 0.50000E+02 0.13370E+04
0.13390E+04 0.70000E+02 0.50000E+02 0.13390E+04
0.13410E+04 0.70000E+02 0.50000E+02 0.13410E+04
0.13430E+04 0.70000E+02 0.50000E+02 0.13430E+04
0.13450E+04 0.70000E+02 0.50000E+02 0.13450E+04
0.13470E+04 0.70000E+02 0.50000E+02 0.13470E+04
0.13490E+04 0.70000E+02 0.50000E+02 0.13490E+04
0.13510E+04 0.70000E+02 0.50000E+02 0.13510E+04
0.13530E+04 0.70000E+02 0.50000E+02 0.13530E+04
0.13550E+04 0.70000E+02 0.50000E+02 0.13550E+04
0.13570E+04 0.70000E+02 0.50000E+02 0.13570E+04
0.13590E+04 0.70000E+02 0.50000E+02 0.13590E+04
0.13610E+04 0.70000E+02 0.50000E+02 0.13610E+04
0.13630E+04 0.70000E+02 0.50000E+02 0.13630E+04
0.13650E+04 0.70000E+02 0.50000E+02 0.13650E+04
0.13670E+04 0.70000E+02 0.50000E+02 0.13670E+04
0.13690E+04 0.70000E+02 0.50000E+02 0.13690E+04
0.13710E+04 0.70000E+02 0.50000E+02 0.13710E+04
0.13730E+04 0.70000E+02 0.50000E+02 0.13730E+04
0.13750E+04 0.70000E+02 0.50000E+02 0.13750E+04
0.13770E+04 0.70000E+02 0.50000E+02 0.13770E+04
0.13790E+04 0.70000E+02 0.50000E+02 0.13790E+04
0.13810E+04 0.70000E+02 0.50000E+02 0.13810E+04
0.13830E+04 0.70000E+02 0.50000E+02 0.13830E+04
0.13850E+04 0.70000E+02 0.50000E+02 0.13850E+04
0.13870E+04 0.70000E+02 0.50000E+02 0.13870E+04
0.13890E+04 0.70000E+02 0.50000E+02 0.13890E+04
0.13910E+04 0.70000E+02 0.50000E+02 0.13910E+04
0.13930E+04 0.70000E+02 0.50000E+02 0.13930E+04
0.13950E+04 0.70000E+02 0.50000E+02 0.13950E+04
0.13970E+04 0.70000E+02 0.50000E+02 0.13970E+04
0.13990E+04 0.70000E+02 0.50000E+02 0.13990E+04
0.14010E+04 0.70000E+02 0.50000E+02 0.14010E+04
0.14030E+04 0.70000E+02 0.50000E+02 0.14030E+04
0.14050E+04 0.70000E+02 0.50000E+02 0.14050E+04
0.14070E+04 0.70000E+02 0.50000E+02 0.14070E+04
0.14090E+04 0.70000E+02 0.50000E+02 0.14090E+04
0.14110E+04 0.70000E+02 0.50000E+02 0.14110E+04
0.14130E+04 0.70000E+02 0.50000E+02 0.14130E+04
0.14150E+04 0.70000E+02 0.50000E+02 0.14150E+04
|
185c30ff63aa44366f7eaafc7a2348407ced7fd5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1574/CH9/EX9.9/Aerials_Ex_9_9.sce | a41c72f4ec9afb935f955b15d499663d5aad2780 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sce | Aerials_Ex_9_9.sce | clc
//Chapter9
//Example9.9
//Given
//b
c=3e8
f=800e3// operating freq
dl=27//effective height
lambda=c/f
Rr=40*(3.142^2)*(dl/lambda)^2//Radiation Resistance
mprintf('Radiation resistance is %f ohm',Rr)
|
f43f2a4ddd48e93f18bafbf0994463b7ccfba385 | e3c27edbd2f0a8e733cee84b90a906c0a6d7c176 | /sem_3/c/adv_lin_pr/runsim.tst | 8f7781bce76e89acb7abb0545754b132c1e60ca0 | [] | no_license | dmitryhd/dmitryhd_code | c32223da5506156a068bbb0f20ad4cd06fdf2166 | 5173f6f74d4fa1c9c5fba9ffc4fc9134c56f4b0c | refs/heads/master | 2021-01-17T11:56:50.221745 | 2011-04-26T18:31:58 | 2011-04-26T18:31:58 | 1,650,576 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 33 | tst | runsim.tst | sleep 10
sleep 4
sleep 4
sleep 4
|
4b2481ed7165cca8f4cd7f0ec1fc59f85d2906a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH17/EX17.5/Ch017Ex5.sce | fbf57516417249764b14e604610d39f3e1d15fdd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,322 | sce | Ch017Ex5.sce | // Scilab code Ex17.5 : Pg:891 (2011)
clc;clear;
c = 1; // For simplicity assume speed of light to be unity, unit
nucleus = cell(4,4);
// For first reaction
nucleus(1,1).entries = 'N';
nucleus(1,2).entries = 7;
nucleus(1,3).entries = 14;
nucleus(1,4).entries = 14.00753;
nucleus(2,1).entries = 'He';
nucleus(2,2).entries = 2;
nucleus(2,3).entries = 4;
nucleus(2,4).entries = 4.00206;
nucleus(3,1).entries = 'O';
nucleus(3,2).entries = 8;
nucleus(3,3).entries = 17;
nucleus(3,4).entries = 17.00450;
nucleus(4,1).entries = 'H';
nucleus(4,2).entries = 1;
nucleus(4,3).entries = 1;
nucleus(4,4).entries = 1.00814;
Q = (nucleus(1,4).entries + nucleus(2,4).entries)*c^2 - (nucleus(3,4).entries + nucleus(4,4).entries)*c^2;
if Q < 0 then
T_state = "endothermic";
elseif Q > 0
T_state = "exothermic";
end
printf("\nThe reaction");
printf("\n%s(%d,%d) + %s(%d,%d) --> %s(%d,%d) + %s(%d,%d) is %s", nucleus(1,1).entries, nucleus(1,2).entries, nucleus(1,3).entries, nucleus(2,1).entries, nucleus(2,2).entries, nucleus(2,3).entries, nucleus(3,1).entries, nucleus(3,2).entries, nucleus(3,3).entries, nucleus(4,1).entries, nucleus(4,2).entries, nucleus(4,3).entries, T_state);
// For second reaction
nucleus(1,1).entries = 'Li';
nucleus(1,2).entries = 3;
nucleus(1,3).entries = 7;
nucleus(1,4).entries = 7.01822;
nucleus(2,1).entries = 'H';
nucleus(2,2).entries = 1;
nucleus(2,3).entries = 1;
nucleus(2,4).entries = 1.00814;
nucleus(3,1).entries = 'He';
nucleus(3,2).entries = 2;
nucleus(3,3).entries = 4;
nucleus(3,4).entries = 4.00206;
Q = (nucleus(1,4).entries + nucleus(2,4).entries)*c^2 - (nucleus(3,4).entries + nucleus(3,4).entries)*c^2;
if Q < 0 then
T_state = "endothermic";
elseif Q > 0
T_state = "exothermic";
end
printf("\nThe reaction");
printf("\n%s(%d,%d) + %s(%d,%d) --> %s(%d,%d) + %s(%d,%d) is %s", nucleus(1,1).entries, nucleus(1,2).entries, nucleus(1,3).entries, nucleus(2,1).entries, nucleus(2,2).entries, nucleus(2,3).entries, nucleus(3,1).entries, nucleus(3,2).entries, nucleus(3,3).entries, nucleus(4,1).entries, nucleus(4,2).entries, nucleus(4,3).entries, T_state);
// Result
//
// The reaction
// N(7,14) + He(2,4) --> O(8,17) + H(1,1) is endothermic
// The reaction
// Li(3,7) + H(1,1) --> He(2,4) + H(1,1) is exothermic
|
f3cd70f4186014cd9d4275a071c86b1390e00290 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH7/EX7.8/ch7_8.sci | 84469c0f77921289a594befeb7eb040e648cd1c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 428 | sci | ch7_8.sci | //to calculate electomagnetic power and torque
clc;
E_a=250;
R_a=.05;
n=3000;
w_m=(n*2*%pi)/60;
disp('when terminal voltage is 255V');
V_t=255;
I_a=(V_t-E_a)/R_a;
P_in=E_a*I_a;
disp(P_in,'electromagnetic power(W)');
T=P_in/w_m;
disp(T,'torque(Nm)');
disp('when terminal voltage is 248V');
V_t=248;
I_a=(E_a-V_t)/R_a;
P_in=E_a*I_a;
disp(P_in,'electromagnetic power(W)');
T=P_in/w_m;
disp(T,'torque(Nm)');
|
8f1dfc73ef0ff231b6da6cf1caccbf28977776dc | e4381b32d21150427f93b058541bb3343752bb0f | /sablona_A3/vystrizky_A3/autor_uzky.sce | 23fab42da44d8c4b4c52f068e46b645d7991d979 | [] | no_license | pirati-cz/plisty | c095da00bfa89792f8eb676fd5b756fc1454659d | 815dbc58f7a47f1b2740ffa068a2ff5f909ecba8 | refs/heads/master | 2020-12-24T19:04:07.572707 | 2016-05-16T20:52:51 | 2016-05-16T20:52:51 | 58,966,482 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,829 | sce | autor_uzky.sce | <SCRIBUSELEMUTF8 W="184.96062992126" H="96.5669290000005" previewData="iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAABOZJREFUaIHtl89vHdUVxz/nnDsz9otfntKQH45VJ05EQoAE4whekJtEwRIhlsCWnMSO2CCVTftH0C74R1iHBWKBEAuksKBVpbKoWkzjoKShEhBi48RO7Oc3c08X4OK6jvEzL0mlzmdzNefe8z3fM3NHc8doI2mSvJSkyQmgMAtPAAvu3kiS5ISIoCo7khD6o/u8mfWkSXKyKIrPOzs6fpOEcFwAd7/bkWVjRYz/yLL0lSSEo0WMXyQhHFPVnTHGb9aqHX4BB2Zgph2NhBAG0zQ5XVh4jhins47st9Pzd98IZk+6aW8w609CUl9qLn2oIlULYSDP8087snRcRKqLDammaToMpJXOzv0h2PNFUXwaQudAdP82sfDc7bm5C2vVlhEYuQyXZ2H25zZipn0x+rdpCM8PhPDrPy813sydhWD2ZBHjNRHpxB0gIiIi1JrN/BMzOwA4uICoCOLuTRXd5fidGH1WVbYCaZ4XfwXimgbOwbkqVH9uI6ryWBCpnhN5I1PtW46HEPpFpLq8RkWqIpKZ6b6V+SHYUUA2U9sAJmHyVXj1OlxvQnOzjSQhHBuN/qsPkuRrN91vZoeKovh7lqYjiGTB7ICoVMzC02bWpyJdRYw3OrLsYhHj1TRJXlSzHSJsSUJSD8GeMdXdiGTufusnG1luZgzGrsCVAorNNHJGZOQjkT8uuH+Fs1jE4gt3/8493nL32Rj9K0CBOx7jLRGp/rDlKkWM1x2/4x5n3JkVSADyoph091lgccNGDGwCJmxFgxtlFEZrUGs174GRQjoBE9LCXj0LZ3fAjgfpa1NUoHIBLmykmTNwZg/seRi+1uO+Rrug62V4+R14535rhmBoCqZuwI3vI1uqkIYN1vUWffo61+vf8RrUTsPpd+Hd1XMn4eSX8OU1uLYcM7P9uBdq2lcU8XMR6TKR7jzGK4CY6i+j+zd4zFVtj4hszYviipl253nxGaBpmpx199vBwtFms/mxw5LHOC0qNXcWVLXH3W/lef43U92rqnuaef6HdV/qBjSmYfoUnLoKV5fjdahPw/TKGEAI9pSq7grBnhCEJIS6u98WkS4z3evu36nKY6bW7dAws70IqNoBFdmiqruTEI4JqLvfdveZJITj0eNNEd0WzJ4CggiZO0uquiuYHcqL4i//9URqtVpNVXVlrBu6D8LBy3C5H/ob0JiEydW5c3NzHXmef82Pj315CyzXWWt7LI/6w+jB7LCo7szz/E8isj3G+M/76K3W/JGZ37094/9myv39qXXG/6S3t7d3TdGHgK4OLC5+tnjv9dcbjbrk1N/K781fmm/U38qXfv94gbxGc/7SQkMeh+HXaFy6NH+vLjkiIHVijGufgf5XOAgHX4AXAA7BoTrUH7WnlumDvhNwYmXsCBwZgIFH5alleqBnCIbWmnsWnj0CRx62p5bZCTuHYXi9Ncfh+GE4/LA8rceaH8TtsH0QBt+D935KYBAGb8LNKZgCtgBpu01uihrURmG0lZxTcGof7HswjjZBBSrn4fxmcodgqAd62u2pZVJIx2G8leP7aoZh+JEe5wOEi3BxMz9UqxmBkW2wrR2+WsLAxmE8beNLOgZjW2Fru/Q2xARMZJC1W/c8nK9Apd2690My2N2ARtuFv9duLMLddmuXlJSUlJSUlJSUlJSUlJSUlPzf8y8yN9iPthl+SAAAAABJRU5ErkJggg==" YP="490.204724543307" XP="631.417322834646" COUNT="3" Version="1.4.6">
<FONT NAME="Arial Regular"/>
<FONT NAME="Fira Sans Bold"/>
<FONT NAME="Fira Sans Book"/>
<FONT NAME="Fira Sans ExtraBold"/>
<FONT NAME="Fira Sans Light"/>
<FONT NAME="Fira Sans Medium"/>
<FONT NAME="Fira Sans Regular"/>
<FONT NAME="Lato Light"/>
<FONT NAME="PermianSerifTypeface Bold"/>
<FONT NAME="PermianSerifTypeface Italic"/>
<FONT NAME="PermianSerifTypeface Regular"/>
<FONT NAME="PermianSlabSerifTypeface Bold"/>
<COLOR Spot="0" Register="0" NAME="Black" CMYK="#000000ff"/>
<COLOR Spot="0" Register="0" NAME="Cervena" CMYK="#2effe814"/>
<COLOR Spot="0" Register="0" NAME="Cervena2" CMYK="#00e2c600"/>
<COLOR Spot="0" Register="0" NAME="Fialova" CMYK="#78871700"/>
<COLOR Spot="0" Register="0" NAME="Fialova2" CMYK="#44c9201b"/>
<COLOR Spot="0" Register="0" NAME="Modra" CMYK="#ff14000d"/>
<COLOR Spot="0" Register="0" NAME="Oranzova" CMYK="#007fff00"/>
<COLOR Spot="0" Register="0" NAME="Ruzova" CMYK="#02662601"/>
<COLOR Spot="0" Register="0" NAME="White" CMYK="#00000000"/>
<COLOR Spot="0" Register="0" NAME="Zelana" CMYK="#5700d900"/>
<COLOR Spot="0" Register="0" NAME="Zelena2" CMYK="#b300d500"/>
<COLOR Spot="0" Register="0" NAME="Zluta" CMYK="#1400c700"/>
<STYLE SCALEV="100" SCOLOR="Black" ALIGN="0" TXTSTP="-0.1" TXTSHX="5" TXTSHY="-5" FSHADE="100" INDENT="0" TXTSTW="-0.1" EFFECT="0" VOR="0" NACH="0" LINESPMode="0" FCOLOR="Black" DROP="0" TXTULP="-0.1" SCALEH="100" TXTULW="-0.1" KERN="0" DROPLIN="2" NAME="Volnytext-tucny" FONT="Fira Sans ExtraBold" LINESP="12.0000000000000" SSHADE="100" FIRST="0" BASE="0" FONTSIZE="10" DROPDIST="0" TXTOUT="1" BASEO="0"/>
<STYLE SCALEV="100" SCOLOR="Black" ALIGN="0" TXTSTP="-0.1" TXTSHX="5" TXTSHY="-5" FSHADE="100" INDENT="0" TXTSTW="-0.1" EFFECT="0" VOR="0" NACH="0" LINESPMode="0" FCOLOR="Black" DROP="0" TXTULP="-0.1" SCALEH="100" TXTULW="-0.1" KERN="0" DROPLIN="2" NAME="Volnytext-normal" FONT="Fira Sans Regular" LINESP="12.0000000000000" SSHADE="100" FIRST="0" BASE="0" FONTSIZE="10" DROPDIST="0" TXTOUT="1" BASEO="0"/>
<MultiLine Name="Teckovana">
<SubLine LineEnd="0" Dash="3" Width="1.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tenka">
<SubLine LineEnd="0" Dash="1" Width="0.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tenka teckovana">
<SubLine LineEnd="0" Dash="3" Width="0.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tlusta">
<SubLine LineEnd="0" Dash="1" Width="1.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Velmi tlusta">
<SubLine LineEnd="0" Dash="1" Width="2.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 85.748 0 85.748 0 85.748 0 85.748 0 85.748 90 85.748 90 85.748 90 85.748 90 0 90 0 90 0 90 0 90 0 0 0 0 " ANNAME="autor_uzky" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="85.7480313874012" XPOS="631.417322834646" relativePaths="1" EXTRA="0" PFILE="autor_uzky/j-michalek.png" TopLine="0" Pagenumber="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="90" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="" TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="496.771653543307" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="0.1530674158" TXTSCALE="100" LOCK="0" LOCALSCY="0.1522548571" PRFILE="sRGB IEC61966-2.1" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="0" ImageRes="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="2" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="0" ImageClip="" LOCALY="50.66692688" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="1" COCOOR="0 0 0 0 85.748 0 85.748 0 85.748 0 85.748 0 85.748 90 85.748 90 85.748 90 85.748 90 0 90 0 90 0 90 0 90 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="0" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="0" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16"/>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 113.386 0 113.386 0 113.386 0 113.386 0 113.386 70.8661 113.386 70.8661 113.386 70.8661 113.386 70.8661 0 70.8661 0 70.8661 0 70.8661 0 70.8661 0 0 0 0 " ANNAME="" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="113.3858268" XPOS="702.992125922047" relativePaths="1" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="70.86614173" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="PermianSerifTypeface Regular" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="" TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="490.204724543307" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="10" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="4" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="0" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="1" COCOOR="0 0 0 0 113.386 0 113.386 0 113.386 0 113.386 0 113.386 70.8661 113.386 70.8661 113.386 70.8661 113.386 70.8661 0 70.8661 0 70.8661 0 70.8661 0 70.8661 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="0" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16">
<ITEXT PSTYLE="Volnytext-tucny" CH="Mgr. Jakub Michálek" CFONT="Fira Sans ExtraBold"/>
<PARA PARENT="Volnytext-tucny"/>
<ITEXT PSTYLE="Volnytext-tucny" CH="Lídr Pirátů v Praze" CFONT="Fira Sans Book"/>
<PARA PARENT="Volnytext-tucny"/>
<PARA PARENT="Volnytext-tucny"/>
<ITEXT PSTYLE="Volnytext-normal" CH="jakub.michalek@pirati.cz" CFONT="Fira Sans Book"/>
<PARA PARENT="Volnytext-normal"/>
</ITEM>
<ITEM isTableItem="0" NUMPO="16" doOverprint="0" TransValue="0" PWIDTH="1" ANFLAG="0" ANTYPE="11" WIDTH="113.385826771654" POCOOR="0 0 0 0 113.386 0 113.386 0 113.386 0 113.386 0 113.386 14.1732 113.386 14.1732 113.386 14.1732 113.386 14.1732 0 14.1732 0 14.1732 0 14.1732 0 14.1732 0 0 0 0 " isGroupControl="0" TEXTRA="0" RADRECT="0" TopLine="0" ANZIEL="0" TXTULP="-0.1" LINESPMode="0" endArrowIndex="0" TXTULW="-0.1" TXTSTROKE="Black" TXTSTYLE="0" SHADE="100" PLINEART="1" LOCKR="0" AUTOTEXT="0" fillRule="1" BASEOF="0" ANPLACE="1" startArrowIndex="0" ANXACT="" textPathType="0" ANBLACT="" ANTOOLTIP="" EPROF="" TXTSCALE="100" REVERS="0" NUMCO="16" ANBCOL="Black" CLIPEDIT="0" LANGUAGE="Czech" NAMEDLST="" TXTBASE="0" ANFACT="" COCOOR="0 0 0 0 113.386 0 113.386 0 113.386 0 113.386 0 113.386 14.1732 113.386 14.1732 113.386 14.1732 113.386 14.1732 0 14.1732 0 14.1732 0 14.1732 0 14.1732 0 0 0 0 " ANVACT="" ANSCALE="0" TransValueS="0" PCOLOR="None" PICART="1" TXTSTRSH="100" ANFEED="1" COLUMNS="1" ANEACT="" ANNAME="Text457" TransBlend="0" NUMGROUP="0" IRENDER="1" FRTYPE="0" TEXTFLOW="0" ANDACT="" PCOLOR2="None" LINESP="15" TXTSCALEV="100" YPOS="524.409448784253" TEXTFLOWMODE="0" LOCK="0" ANCACT="" XPOS="702.992125984252" NEXTPAGE="-1" SCALETYPE="1" TransBlendS="0" PLTSHOW="0" ANBSTY="0" BottomLine="0" ANDOWN="" FLIPPEDH="0" relativePaths="1" TXTSTP="-0.1" FLOP="0" TXTSTW="-0.1" FLIPPEDV="0" ANNOTATION="1" PLINEJOIN="0" SHADE2="100" ANHTML="0" BACKPAGE="-1" TXTKERN="0" textPathFlipped="0" TXTOUT="1" PRFILE="" BOOKMARK="0" LeftLine="0" LOCALX="0" LOCALY="0" GRTYP="0" DASHOFF="0" DASHS="" ISIZE="10" ANMC="-1" ANBWID="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" HEIGHT="14.1732283464571" ANICON="0" NEXTITEM="-1" GROUPS="" RATIO="1" TXTFILL="Black" IFONT="PermianSerifTypeface Regular" ANACTION="" PLINEEND="0" EXTRA="0" COLGAP="0" ANEXTERN="mailto:jakub.michalek@pirati.cz" TXTSHX="5" TXTSHY="-5" TXTFILLSH="100" ANFORMAT="0" ANFONT="4" ANCHKS="0" PFILE2="" PFILE3="" ANCHK="0" ANKACT="" ROT="0" REXTRA="0" ANVIS="0" BEXTRA="0" ImageClip="" NUMDASH="0" RightLine="0" PRINTABLE="1" ANAA="0" ANFOACT="" ALIGN="0" ANACTYP="8" ANROLL="" BACKITEM="-1" PTYPE="4" LOCALSCX="1" LOCALSCY="1"/>
</SCRIBUSELEMUTF8>
|
6cb55045803634638c6c229b66d730c28737c3ff | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.3_7.tst | 012e8bf0856a17af4ef8766cdfd4333d67b0daf4 | [] | 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 | 8,051 | tst | bow.3_7.tst | 3 14:0.01694915254237288 255:0.5 751:1.0
3 5:0.2 13:0.4 14:0.05084745762711865 28:1.0 35:2.0 36:0.09090909090909091 43:0.14285714285714285 58:0.2 72:0.25 79:0.09090909090909091 97:1.0 107:1.0 128:1.0 160:1.0 190:2.0 208:1.0 378:1.0 517:1.0 538:1.0 564:1.0 649:1.0 669:1.0 679:1.0 752:1.0 753:1.0 754:1.0 755:1.0 756:1.0 757:1.0 758:1.0 759:1.0 760:1.0 761:1.0
3 5:0.6 13:0.4 17:0.09523809523809523 20:0.5 43:0.14285714285714285 64:0.2222222222222222 108:0.25 289:0.3333333333333333 477:1.0 482:1.0 762:1.0 763:1.0 764:1.0 765:1.0 766:1.0 767:1.0 768:1.0 769:1.0 770:1.0 771:1.0 772:1.0 773:1.0 774:1.0 775:1.0
3 13:0.2 17:0.09523809523809523 20:0.5 24:1.0 29:0.07142857142857142 135:1.0 765:1.0 776:1.0 777:1.0 778:1.0 779:1.0 780:1.0
3 13:0.2 17:0.047619047619047616 19:0.5 20:1.0 21:1.0 24:1.0 28:1.0 64:0.1111111111111111 70:0.5 98:0.5 99:1.0 119:0.5 135:2.0 299:1.0 358:0.5 603:1.0 631:1.0 781:1.0 782:0.5 783:1.0 784:1.0 785:1.0 786:1.0
3 5:0.2 14:0.01694915254237288 29:0.07142857142857142 70:0.5 108:0.25 782:0.5 787:1.0 788:0.3333333333333333 789:1.0 790:1.0
3 4:0.5 5:0.4 10:1.0 13:0.4 14:0.0847457627118644 20:1.0 26:1.0 32:0.16666666666666666 48:1.0 55:0.25 58:0.4 70:0.5 82:1.0 96:0.6666666666666666 119:1.0 125:1.0 126:0.5 135:2.0 168:1.0 205:1.0 214:2.0 289:0.3333333333333333 470:2.0 677:1.0 708:1.0 740:1.0 754:1.0 791:1.0 792:1.0 793:1.0 794:1.0 795:1.0 796:1.0 797:1.0 798:1.0 799:1.0 800:1.0 801:1.0 802:1.0
3 4:0.5 5:0.2 14:0.03389830508474576 16:0.5 29:0.07142857142857142 70:0.5 85:0.14285714285714285 108:0.5 469:0.5 740:1.0 803:1.0 804:1.0 805:1.0 806:1.0
3 5:0.4 14:0.01694915254237288 22:1.0 41:1.0 43:0.14285714285714285 63:0.14285714285714285 64:0.1111111111111111 264:1.0 370:1.0 807:1.0 808:1.0 809:1.0 810:1.0 811:1.0
3 4:0.5 5:0.4 13:0.8 14:0.01694915254237288 20:0.5 28:1.0 32:0.16666666666666666 70:0.5 84:1.0 133:0.6666666666666666 145:0.25 231:1.0 533:1.0 654:1.0 655:1.0 662:1.0 707:0.5 810:1.0 812:1.0 813:1.0 814:1.0 815:1.0 816:1.0 817:1.0 818:1.0 819:1.0 820:1.0 821:1.0 822:1.0 823:1.0 824:1.0
3 4:0.5 5:0.2 13:0.2 17:0.047619047619047616 24:1.0 78:0.25 103:1.0 118:0.5 177:0.5 194:1.0 207:1.0 245:1.0 416:0.25 500:1.0 501:1.0 749:0.5 809:1.0 822:1.0 825:1.0 826:1.0 827:1.0 828:1.0 829:1.0 830:1.0 831:1.0 832:1.0 833:1.0
3 11:0.5 13:0.2 17:0.047619047619047616 22:1.0 29:0.07142857142857142 70:0.5 133:0.3333333333333333 177:0.5 245:1.0 265:1.0 319:1.0 469:0.5 694:1.0 834:1.0 835:1.0 836:1.0 837:1.0 838:1.0 839:1.0 840:1.0 841:1.0
3 13:0.4 17:0.19047619047619047 20:0.5 70:0.5 71:1.0 133:0.3333333333333333 180:1.0 369:1.0 533:1.0 566:1.0 810:1.0 820:1.0 842:1.0 843:1.0 844:1.0 845:1.0 846:1.0
3 13:0.2 17:0.14285714285714285 20:0.5 43:0.14285714285714285 55:0.25 118:0.5 170:1.0 177:0.5 369:1.0 390:1.0 451:1.0 500:1.0 657:1.0 761:1.0 847:1.0 848:1.0 849:1.0 850:1.0 851:1.0 852:1.0 853:1.0 854:1.0 855:1.0 856:1.0 857:1.0 858:1.0
3 5:0.2 13:0.4 17:0.047619047619047616 24:1.0 43:0.14285714285714285 55:0.25 58:0.2 71:1.0 78:0.25 85:0.14285714285714285 118:0.5 177:1.0 229:1.0 245:1.0 390:1.0 544:1.0 748:1.0 822:1.0 855:2.0 859:1.0 860:1.0 861:1.0 862:1.0 863:1.0 864:1.0 865:1.0
3 4:1.5 13:0.4 14:0.01694915254237288 17:0.19047619047619047 43:0.42857142857142855 76:1.0 89:2.0 118:1.0 177:1.0 842:1.0 866:1.0 867:1.0 868:1.0 869:1.0 870:1.0 871:1.0 872:1.0 873:1.0 874:1.0 875:1.0 876:1.0 877:1.0
3 13:0.2 14:0.01694915254237288 17:0.14285714285714285 22:1.0 29:0.07142857142857142 43:0.2857142857142857 133:0.3333333333333333 708:1.0 878:1.0 879:1.0 880:1.0 881:1.0 882:1.0 883:1.0 884:1.0 885:1.0
3 5:0.2 14:0.01694915254237288 35:1.0 37:1.0 58:0.2 118:2.5 530:1.0 638:1.0 886:1.0 887:1.0 888:1.0 889:1.0 890:1.0 891:1.0 892:1.0 893:1.0
3 13:0.2 14:0.01694915254237288 17:0.047619047619047616 22:1.0 35:1.0 41:1.0 64:0.1111111111111111 79:0.09090909090909091 108:0.25 315:1.0 683:1.0 885:1.0 894:1.0 895:1.0
3 13:0.2 70:0.5 79:0.09090909090909091 118:0.5 289:0.3333333333333333 292:0.5 416:0.25 878:1.0 896:1.0 897:1.0 898:1.0 899:1.0 900:1.0 901:1.0
3 79:0.09090909090909091 180:1.0 902:1.0 903:1.0 904:1.0
3 4:0.5 13:0.2 20:0.5 32:0.3333333333333333 70:0.5 76:1.0 79:0.09090909090909091 97:1.0 177:0.5 192:0.25 207:1.0 245:1.0 369:1.0 657:3.0 843:1.0 867:1.0 871:1.0 878:1.0 900:1.0 905:1.0 906:2.0 907:1.0 908:1.0 909:1.0 910:1.0
3 4:1.0 13:0.2 14:0.01694915254237288 28:1.0 41:1.0 43:0.14285714285714285 54:1.0 79:0.09090909090909091 107:1.0 119:0.5 145:0.25 177:0.5 212:1.0 214:1.0 227:1.0 344:1.0 345:1.0 500:1.0 911:1.0 912:1.0 913:1.0 914:1.0
3 4:0.5 5:0.2 8:0.3333333333333333 13:0.4 17:0.09523809523809523 29:0.07142857142857142 32:0.16666666666666666 43:0.14285714285714285 70:1.0 79:0.2727272727272727 89:1.0 97:1.0 125:1.0 170:1.0 657:1.0 759:1.0 878:1.0 879:1.0 900:1.0 905:1.0 915:1.0 916:1.0 917:1.0 918:1.0 919:1.0 920:1.0
3 5:0.2 13:0.8 17:0.09523809523809523 20:0.5 28:1.0 43:0.14285714285714285 55:0.25 79:0.09090909090909091 292:0.5 416:0.25 506:1.0 657:1.0 833:1.0 921:1.0 922:1.0 923:1.0 924:1.0 925:1.0 926:1.0 927:1.0 928:1.0 929:1.0 930:1.0
3 17:0.09523809523809523 70:0.5 133:0.3333333333333333 829:1.0 931:1.0 932:1.0 933:1.0
3 4:0.5 13:0.2 14:0.03389830508474576 17:0.14285714285714285 29:0.07142857142857142 35:1.0 43:0.14285714285714285 58:0.2 70:0.5 76:1.0 78:0.25 177:0.5 192:0.5 207:1.0 245:1.0 289:0.6666666666666666 369:1.0 653:1.0 843:1.0 871:1.0 872:1.0 873:1.0 915:1.0 931:2.0 934:1.0 935:1.0 936:1.0 937:1.0 938:1.0 939:1.0 940:1.0 941:1.0 942:1.0
3 4:0.5 5:0.2 13:0.4 14:0.05084745762711865 29:0.07142857142857142 35:1.0 43:0.14285714285714285 64:0.1111111111111111 79:0.18181818181818182 85:0.14285714285714285 97:2.0 193:1.0 373:1.0 660:1.0 703:1.0 758:1.0 915:1.0 943:1.0 944:1.0 945:1.0 946:1.0 947:1.0
3 11:0.5 17:0.047619047619047616 133:0.3333333333333333 192:0.25 872:1.0 948:0.5 949:1.0 950:1.0 951:1.0 952:1.0
3 4:1.0 5:0.2 13:0.2 17:0.047619047619047616 20:0.5 29:0.07142857142857142 31:1.0 85:0.14285714285714285 133:0.3333333333333333 177:1.0 231:1.0 307:1.0 344:1.0 707:1.0 737:1.0 759:1.0 947:1.0 953:1.0 954:1.0 955:1.0 956:1.0
3 4:0.5 13:0.2 14:0.03389830508474576 17:0.047619047619047616 36:0.09090909090909091 43:0.14285714285714285 64:0.1111111111111111 79:0.09090909090909091 97:2.0 193:1.0 292:1.0 758:1.0 793:1.0 857:1.0 971:1.0 972:1.0 973:1.0 974:1.0 975:1.0 976:1.0
3 14:0.01694915254237288 17:0.14285714285714285 22:1.0 29:0.07142857142857142 35:1.0 128:1.0 160:1.0 212:1.0 289:0.6666666666666666 308:1.0 315:1.0 399:1.0 790:1.0 899:1.0 977:1.0 978:1.0 979:1.0
3 11:0.5 14:0.01694915254237288 17:0.047619047619047616 22:1.0 35:1.0 58:0.4 85:0.14285714285714285 96:0.3333333333333333 315:1.0 530:1.0 980:1.0 981:1.0 982:1.0 983:1.0 984:1.0
3 4:0.5 13:0.2 14:0.05084745762711865 17:0.047619047619047616 28:1.0 35:1.0 43:0.14285714285714285 50:0.5 58:0.2 64:0.1111111111111111 85:0.14285714285714285 88:1.0 96:0.3333333333333333 98:0.5 192:0.25 496:1.0 599:1.0 611:1.0 666:1.0 667:1.0 761:1.0 808:1.0 985:1.0 986:1.0 987:1.0 988:2.0 989:1.0 990:1.0 991:1.0 992:1.0
3 4:1.5 10:1.0 13:0.2 17:0.047619047619047616 31:1.0 33:0.5 58:0.2 85:0.14285714285714285 119:0.5 133:0.6666666666666666 177:1.0 214:1.0 225:1.0 265:1.0 308:1.0 344:1.0 513:1.0 655:1.0 1097:1.0
3 123:1.0
3 5:0.2 17:0.047619047619047616 58:0.2 70:1.5 79:0.18181818181818182 85:0.14285714285714285 96:0.3333333333333333 123:1.0 133:0.3333333333333333 170:1.0 436:1.0 603:1.0 834:1.0
3 4:0.5 5:0.2 16:0.5 17:0.047619047619047616 29:0.07142857142857142 58:0.2 70:1.0 133:0.3333333333333333 177:0.5 192:0.25 265:1.0 333:1.0 611:1.0 740:1.0 790:1.0 794:1.0
3 4:0.5 5:0.2 13:0.2 17:0.14285714285714285 24:1.0 54:1.0 70:0.5 85:0.14285714285714285 116:1.0 177:1.5 208:1.0 214:1.0 225:1.0 298:0.5 311:1.0 369:3.0 530:1.0 533:1.0 810:1.0 1157:1.0
3 5:0.2 13:0.2 17:0.09523809523809523 20:1.0 29:0.07142857142857142 32:0.3333333333333333 39:2.0 53:1.0 55:0.25 58:0.2 78:0.25 108:0.5 118:0.5 133:0.3333333333333333 177:1.0 245:3.0 273:1.0 289:0.3333333333333333 290:1.0 358:0.5 433:1.0 473:1.0 506:2.0 705:2.0 719:1.0 740:3.0 788:0.3333333333333333 857:1.0 933:1.0 958:1.0 1287:1.0
|
90f734fb10fc0850a5aa2f9c2738becf9fdb15bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH18/EX18.1/CH18Exa1.sce | 3ebe35e40bbcd75cc15f5cddb6222b0010cfa13c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | CH18Exa1.sce | // Scilab code Exa18.1 : : Page-770 (2011)
clc; clear;
m_sqr = 0.71; // For proton, (GeV/c-square)^2
R_rms = sqrt(12)/(sqrt(m_sqr)*5.1); // Root mean square radius, femto metre
printf("\nThe root mean square radius of charge distribution: %4.2f fermi", R_rms);
// Result
// The root mean square radius of charge distribution: 0.81 fermi |
a7519405c9e015d061b29f64caca2f8b2636c9e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH21/EX21.1/Example21_1.sce | 6d8bdefe104f5d8d746be868833352ef3a2bbcd1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,019 | sce | Example21_1.sce | clear ;
clc;
// Example 21.1
printf('Example 21.1\n\n');
//page no. 616
// Solution Fig. E21.1a and E21.1b
//Given
V1 = 0.1 ;// Volume of gas initially -[cubic metres]
V2 = 0.2 ;// Volume of gas finally -[cubic metres]
T1 = 300 ;// Temperature of gas initially -[K]
P1 = 200 ;// Pressure of gas finally -[kPa]
R = 8.314 ;// Universal gas constant
n = (P1*V1)/(T1*R) ;// Moles of gas taken-[kg mol]
//You are asked to calculate work by eqn. 21.1 , but you do not know the F(force) exerted by gas , so write F = P.A, multiply divide A and eqn 21.1 reduces to W= integate(P.dv)
//(a)
// Isobaric process see fig E21.1b to see the path followed
W= integrate('-(P1)','V',V1,V2) ;// Work done by gas on piston -[kJ]
printf('\n (a)Work done by gas on piston for isobaric process is %.0f kJ .\n ',W);
//(b)
// Isobaric process see fig E21.1b to see the path followed
W= integrate('-(T1*R*n/V)','V',V1,V2) ;// Work done by gas on piston -[kJ]
printf('(b)Work done by gas on piston for isothermal process is %.2f kJ .\n ',W); |
f93e90f3fe34d5d807101c845d67402270c3f536 | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH2/EX2.16/ex_2_16.sce | bbd5bec4ed1e7648785ed2beb5dc065720510344 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 101 | sce | ex_2_16.sce | syms s t T tou
y=T^-1*integ(exp(s*tou),tou,t-T/2,t+T/2)
x=exp(s*t)
lamda=y/x
disp(lamda,"lamda=") |
90b448d54a1c49e6c658445742114deafe54a8a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2762/CH5/EX5.2.1/5_2_1.sce | e59ff90480ad135f67e1c2531bb95f4b9a61d4e8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,053 | sce | 5_2_1.sce | //Transport Processes and Seperation Process Principles
//Chapter 5
//Example 5.2-1
//Principles of Unsteady State Heat Transfer
//given data
//english units
r=1/12;//radius
x1=r/3;//ratio of volume to area
h=2;//convective coefficient
k=25;//thermal conductivity
Bi=(h*x1)/k;//biot number
Cp=0.11;//specific heat
rho=490;//density
if(Bi<0.1)
M=h/(Cp*rho*x1);
Tinf=250;//constant temp
T0=800;//initial temp
t=1;
T=((T0-Tinf)*((2.718)^(-M*t)))+Tinf;//solving arhenius equation
mprintf("the temp in english units %f deg F",T)
else
mprintf("some other method must be employed")
end
//si units
rsi=25.4/1000;
x1si=rsi/3;
hsi=11.36;
ksi=43.3;
Bisi=(hsi*x1si)/ksi;
Cpsi=0.4606*1000;
rhosi=7849;
if(Bisi<0.1)
Msi=hsi/(Cpsi*rhosi*x1si);
Tinfsi=394.3;
T0si=699.9;
tsi=3600;
Tsi=((T0si-Tinfsi)*((2.718)^(-Msi*tsi)))+Tinfsi;//solving arhenius equation
mprintf(" the temp in si units %f deg K",Tsi)
else
mprintf("some other method must be employed")
end
|
7a1404d3e20423b62e5d9bfaa6e45702a4e00239 | 449d555969bfd7befe906877abab098c6e63a0e8 | /683/CH27/EX27.7/SBG_7.sce | 93fa61ed36559e1c3600958738218bcf5dd0895c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | SBG_7.sce | // sum 27-7
clc;
clear;
Zp=24;
Zg=36;
N=1400;
P=11600;
Cs=1.4;
FOS=2;
sigut=600;
sigb=sigut/3;
gamma1=atan(Zp/Zg);
gamma1=180/%pi*gamma1;
gamma2=(90-gamma1);
a=cosd(gamma2);
Zp1=Zp/cosd(gamma1);
Zg1=Zg/a;
Q=(2*Zg1)/(Zp1+Zg1);
v=1.76;
Pt=P/v;
Cv=5.6/(5.6+sqrt(v));
Peff=Pt*Cs/Cv;
x=Peff*FOS;
Y=0.352+(0.003*0.85);
y=2*sigb*Y*(1-(6/21.63));
m=sqrt(x/y);
// Design is safe for m=4
m=4;
b=6*m;
dp=24*m;
rp=48;
dp=dp/cosd(gamma1);
v=2*%pi*N*rp/(60*1000);
Cv=5.6/(5.6+sqrt(v));
Sb=y*m^2;
//Sw=Sb;
K=Sb/(0.75*b*dp*Q);
BHN=sqrt(K/0.16)*100;
// printing data in scilab o/p window
printf("m is %0.0f mm ",m);
printf("\n BHN is %0.0f ",BHN);
//The answwer to BHN is calculated incorrectly in the book.
|
25265e10d97b02fe5fdb4732ac235b07d911607b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2642/CH7/EX7.1/Ex7_1.sce | cd74940eff9e4184ebbf7d99a7590989f5d31651 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 724 | sce | Ex7_1.sce | // FUNDAMENTALS OF ELECTICAL MACHINES
// M.A.SALAM
// NAROSA PUBLISHING HOUSE
// SECOND EDITION
// Chapter 7 : THREE-PHASE INDUCTION MOTOR
// Example : 7.1
clc;clear; // clears the console and command history
// Given data
V = 230 // supply voltage in V
P = 4 // number of poles
f = 50 // frequecny Hz
N_l = 1445 // speed in rpm
// caclulations
N_s = 120*f/P // synchronous speed in rpm
s = (N_s-N_l)/N_s // slip
f_r = s*f // rotor frequency in Hz
// display the result
disp("Example 7.1 solution");
printf(" \n Synchronous speed \n N_s = %.1f rpm \n", N_s);
printf(" \n Slip \n s = %.4f \n", s);
printf(" \n Rotor frequency \n f_r = %.1f Hz \n", f_r);
|
a4c3ca8d1d96083da01e7916468efe2c9b2681b5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH2/EX2.8/example2_8.sce | 76d5779756ce65e63170f93af09cc4f819e8523b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example2_8.sce | // Calculate width of depletion layer
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 2-8 in page 87
clear; clc; close;
// Given data
V=[10.2 0.3 0.1]; // Applied voltages in V
epsln=16; // Constant of calculation
A=1*10^-6; // Cross sectional area in m^2
// Calculation
alp=[1 2 3];
for i=1:3
W=sqrt((V(i)*10^-10)/14.3);
printf("(%0.0f)Width of depletion layer for %0.2f V = %0.2e mu-m\n\n",alp(i),V(i),W);
end
W=[8.5 1.45];
alp1=[1 2];
for j=1:2
C_T=(epsln*10^-9)/(36*%pi*W(j));
printf("(%0.0f)Space charge capacitance for %0.2f mu-m = %0.2e F\n\n",alp(j),W(j),C_T);
end
// Result
// Widths of depletion layer are:
// (a) 8.5 mu-m
// (b) 1.45 mu-m
// (c) 0.84 mu-m respectively
// Space charge capacitances are:
// (a) 16.65 pF
// (b) 97.6 pF respectively |
a530d990f76c599ba978fb546915003533ff759e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH5/EX5.5/Ex5_5.sce | 6b7da44d16913fa5c1f599bd18442c45b371c9f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 285 | sce | Ex5_5.sce | //Example 5-5, page No - 165
clear
clc
fd = 30*10^3
fm = 5*10^3
N=9
bw1 = 2*fm*N
bw2 = 2*[fd+fm]
printf('The maximum bandwidth of the fm signal calculated from fig 5.8 is %.1f Khz',bw1/10^3)
printf('\n The maximum bandwidth using carlos rule is %.1f khz',bw2/10^3)
|
fc395594a08eaaf2a403aafdd5d62ce56556f5c5 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Material_Science_V._Rajendran_1826.zip/Material_Science_V._Rajendran_1826/CH7/EX7.5/ex7_5.sce | d8d96000ff33cda71096b4e1b8e4448306b21bf5 | [] | 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 | 307 | sce | ex7_5.sce | errcatch(-1,"stop");mode(2);// Example 7.5, page no-163
rho=1.54*10^-8//ohm-m
E=100//V/m
n=5.8*10^28//m^-3
e=1.6*10^-19//C
mu=1/(rho*n*e)
vd=mu*E
printf("\nMobility of electron in silvetr is %.4f*10^-3 m^2/v-s\n\nThe drift velocity of the electron in silver is %.5f m/s ",mu*10^3,vd)
exit();
|
85af55f340a261d71c08fd9e73acc104331e16af | a7df4100475b96e7670094f49788307220742c9d | /Nand To Tetris/Course Material/projects/00/RAM8.tst | a52440f41eca424cb5f9cd15574fe9aa1f7c9a6d | [] | no_license | alecjcook/LabVIEW | 39ccfedd57d1027ec8b1788a6cdb4898a6bf0c04 | b235f2b6fceb3f74bfeea6e1c0651be7cab0e687 | refs/heads/master | 2021-01-16T18:29:51.436920 | 2014-05-18T15:06:18 | 2014-05-18T15:06:18 | 12,083,067 | 6 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 981 | tst | RAM8.tst | // This file is part of the materials accompanying the book
// "The Elements of Computing Systems" by Nisan and Schocken,
// MIT Press. Book site: www.nand2tetris.org
// File name: projects/00/RAM8.tst
load RAM8.hdl,
output-file RAM8.output,
compare-to RAM8.cmp,
output-list time%S1.4.1 in%D1.6.1 load%B2.1.2 address%D3.1.3 out%D1.6.1;
set in 0,
set load 0,
set address 0,
tick,
output;
tock,
output;
set load 1,
tick,
output;
tock,
output;
set in 11111,
set load 0,
tick,
output;
tock,
output;
set load 1,
set address 1,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set in 3333,
set address 3,
tick,
output;
tock,
output;
set load 1,
tick,
output;
tock,
output;
set load 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set in 7777,
tick,
output;
tock,
output;
set load 1,
set address 7,
tick,
output;
tock,
output;
set load 0,
tick,
output;
tock,
output;
set address 3,
eval,
output;
set address 7,
eval,
output;
|
dcd5e3e9c3be06634943e835835a4a70898e345e | 449d555969bfd7befe906877abab098c6e63a0e8 | /147/CH3/EX3.18/Example3_18.sce | ae7d91ad80506ae3984c096ac6088b75c6f66bee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 362 | sce | Example3_18.sce | //Phase voltage Vp, Impedance Z
close();
clear;
clc;
Vp = 120;//V
Z = 36 + %i*48;//ohm
//Line Voltage 'Vl'
Vl = 3^(1/2)*Vp;
Ip = Vp/polar(Z);
Il = Ip;
R = real(Z);
//Power factor 'Pf'
Pf = R/polar(Z);
P = 3^(1/2)*Vl*Il*Pf;
mprintf('Line voltage Vl = %0.1f V\nLine current Il = %0.0f A\nPower factor = %0.1f lagging \nPower P = %0.0f W',Vl,Il,Pf,P); |
26dd5b0a382d3a1e939f2c71007d4e77e7d76d2c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1928/CH1/EX1.15.2/ex1_15_2.sce | 514d67b34c3a9d1e2640c96a12313eb8fa104792 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 465 | sce | ex1_15_2.sce | //Chapter-1,Example1_15_2,pg 1-69
a=2.125*10^-10 //lattice constant
d=a/2 //interplaner spacing
n=2 //second order maximum
l=0.592*10^-10 //wavelength of rock salt crystal
//using Bragg's law
m=asin((n*l)/(2*d)) //glancing angle
Q=m*180/%pi
printf("glancing angle=")
disp(Q)
printf("degree")
|
1676389dc5b76b723eb34e4d0656bf95b7ccc273 | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /system/kiks_robotdiodpatch.sci | bf59dc1b7f693b8aa005755bb57980f3c866b2f3 | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 669 | sci | kiks_robotdiodpatch.sci | function [ptch] = kiks_robotdiodpatch(id,col)
// Ouput variables initialisation (not found in input variables)
ptch=[];
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// -----------------------------------------------------
// (c) 2000-2004 Theodor Storm <theodor@tstorm.se>
// http://www.tstorm.se
// -----------------------------------------------------
// !! L.7: Matlab function sprintf not yet converted, original calling sequence used
// !! L.7: Matlab function patch not yet converted, original calling sequence used
ptch = patch("Facecolor",col,"EdgeColor","none","Erase","xor","tag",sprintf("%ddiod",id));
endfunction
|
33d41dd94a7cc06d6be5ab6ed1dbbfe675c31acf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1958/CH10/EX10.4/Chapter10_example4.sce | 18cc64977623c3ccfb05496ad83778be32cac2be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 264 | sce | Chapter10_example4.sce | clc
clear
//Input data
B=(3*3.14)/2//First secondary maxima at B
//Calculations
I=(sin(B)/B)^2//Ratio of intensity of central maxima to first secondary maxima
//Output
printf('Ratio of intensity of central maxima to first secondary maxima is %3.3f',I)
|
ec58a41b6a80092d9448113ef6a4cf99bd936711 | 92f5993eb05f0a027cc98c0304337a20d2d9da2e | /mini_max.sce | 3393057151c4bd98b77b19ee54ee3fbe1413188e | [] | no_license | LuhJunior/Teoria-dos-Grafos | 664d034c857199d75e8a513cd0aaa12364347c89 | 22168992af086a2a03442701bcc26abe99d26aaa | refs/heads/master | 2020-03-28T02:39:12.681260 | 2018-12-06T06:29:07 | 2018-12-06T06:29:07 | 147,586,961 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,164 | sce | mini_max.sce | function graph()
a = [ 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 1 1 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 1 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 1 1 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 1 1 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 1 1 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
]
global('valores')
valores = [0, 0, 0, 0, 0, 0, 0, 7, 4, 5, 3, 2, 8, 9, 7]
disp(a, 'a')
//a = a + a'
//disp(a, 'a')
[nl, nc] = size(a)
n = nl
teta = [0 : 2*%pi/n :(n-1)* 2*%pi/n]
x = cos(teta)
y = sin(teta)
plot2d(x, y, -9)
plot2d(-2, -2, 0)
plot2d(2, 2, 0)
for i = 1 : n
xstring(x(i), y(i), string(i))
end
k = 0
for i = 1 : n
for j = i : n
if a(i, j) <> 0
k = k+1
b(k, 1) = i
b(k, 2) = j
end
end
end
m = k
///*
for k = 1: m
plot2d([x(b(k, 1)), x(b(k, 2))], [y(b(k, 1)), y(b(k, 2))], 1)
end
//*/
estado = %T
altura = 2
i = 1
while i<=n
while i <= altura-1 && i <= n
if(estado && valores(i) == 0)
valores(i) = -%inf
else
if valores(i) == 0
valores(i) = %inf
end
end
i = i+1
end
altura = altura * 2
estado = ~estado
end
disp(valores, 'valores')
mini_max(1, %T)
disp(valores, 'valores')
endfunction
function mini_max(v, estado)
global('valores')
for i=1:n
if (a(v, i) == 1)
mini_max(i, ~estado)
if estado
valores(v) = max(valores(v), valores(i))
else
valores(v) = min(valores(v), valores(i))
end
end
end
endfunction
|
57a31b3051d345a6c0343d0b80b6afb25395f41a | 33d7960e39a3e71591538dccbe1dd4014c377e78 | /Sample Solution/CompFin_2017_SS_Exercise_25_QF.sce | 29b47fdebf4af1ccc5519c8761ad5c1e80fafc92 | [] | no_license | wiiwins/Compfin | 529e2997994babb9e3795283ddbd8ec782131148 | 2629685421e970a369ec797b76dda3d2803bcbcf | refs/heads/master | 2020-05-18T01:25:39.357847 | 2019-06-27T11:21:46 | 2019-06-27T11:21:46 | 184,090,400 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,649 | sce | CompFin_2017_SS_Exercise_25_QF.sce | //Write function for computing the price of a European option in the BS-model using Monte-Carlo with control variate S(T)
function [V0, epsilon, beta] = EuOption_BS_MC_CV (S0, r, sigma, T, K, M, g)
// Determine beta = Cov(V(T),S(T)) / Var(S(T)) by Monte Carlo simulation.
X = grand(M, 1, 'nor', 0, 1);
ST = S0*exp( (r-0.5*sigma^2)*T + sigma*sqrt(T)*X );
VT = g(ST);
Covar = mean( (ST-exp(r*T)*S0) .* (VT-mean(VT)) );
beta = Covar / variance(ST);
// (In the Black-Scholes model, we could compute Var(S(T)) also
// analytically.)
// Compute Monte Carlo estimator using the (discounted) stock as control variate.
X = grand(M, 1, 'nor', 0, 1);
ST_hat = S0*exp( (r-0.5*sigma^2)*T + sigma*sqrt(T)*X );
Y = g(ST_hat)-beta*ST_hat;
V0 = exp(-r*T)*mean(Y) + beta*S0;
// Compute radius of 95% confidence interval (not part of the exercise).
epsilon = 1.96 * sqrt(variance(Y)/M);
endfunction
// test parameters
S0 = 120;
r = 0.05;
sigma = 0.2;
T = 1;
K = 100;
M = 1000000;
//Payoff function for the European call
function y=g(x)
y=max(x-K,0);
endfunction
// display result for test parameters
[V0, epsilon, beta] = EuOption_BS_MC_CV (S0, r, sigma, T, K, M, g);
disp("Price of European call by use of Monte-Carlo simulation with control variate: " + string(V0) + ", radius of 95% confidence interval: " + string(epsilon) + " Beta chosen in the estimation procedure:" + string(beta));
//Old function that computes the price of a European option in the BS-model using plain Monte-Carlo from C-Exercise 21
function [V0, epsilon] = EuOption_BS_MC (S0, r, sigma, T, K, M, g)
// Generate an Mx1-vector of independent samples from
// standard normally distributed random variables.
X = grand(M, 1, 'nor', 0, 1);
ST = S0*exp( (r-0.5*sigma^2)*T + sigma*sqrt(T)*X );
// Compute Monte-Carlo estimator.
Y = exp(-r*T)*g(ST);
V0 = mean(Y);
// Compute radius of 95% confidence interval
epsilon = 1.96 * sqrt(variance(Y)/M);
endfunction
[V0, epsilon] = EuOption_BS_MC (S0, r, sigma, T, K, M, g);
disp("Price of European call by use of plain Monte-Carlo simulation: " + string(V0) + ", radius of 95% confidence interval: " + string(epsilon));
//Closed formula for the price of a European Call in the BS-model
function V0=BS_EuCall_Closed(S0, r, sigma, T, K)
d1=(log(S0/K)+r*T+sigma^2/2*T)/(sigma*sqrt(T));
d2=d1-sigma*sqrt(T);
V0=S0*cdfnor("PQ",d1,0,1)-K*exp(-r*T)*cdfnor("PQ",d2,0,1)
endfunction
V0=BS_EuCall_Closed(S0, r, sigma, T, K);
disp("Price of European call by use of the closed formula: " + string(V0));
|
827324bbca9efbd4a5c30a2c8f0dc38b483cf8dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1379/CH1/EX1.1.2/example1_2.sce | 92931415a57f96151632aad52bdf8a500b4d115e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 626 | sce | example1_2.sce |
//exapple 1.2
clc; funcprot(0);
// Initialization of Variable
G=21.2;//mass flow rate
rho=1120;//density
d=0.075;//diameter
l=50;
g=9.81;
pi=3.14;
delz=24/100;//head difference
//calculation
delP=delz*rho*g;//differece of pressure
u=4*G/pi/d^2/rho;
phi=delP/rho*d/l/u^2/4*50;
disp(phi,"The Stanton-Pannel friction factor per unit of length:");
R=phi*rho*u^2;
disp(R , "shear stress exerted by liquid on the pipe wall in (N/m^2):");
F=pi*d*l*R;
disp(F , "Total shear force exerted on the pipe in (N):");
Re=(.0396/phi)^4;//reynold's no.
mu=rho*u*d/Re;
disp(mu , "viscosity of liquid in (kg/m/s):")
|
393591a4d0dc7be9475fca291a324584dc694cf6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /196/CH8/EX8.8/example_8_8.sce | cda23f002ecadf04d2824cd0e340fd6757ba5ea3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 465 | sce | example_8_8.sce | //Chapter 8
//Example 8-8
//ProbOnVtoIConverter
//Page 228, Figure 8-10
clear;clc;
Rs = 1*10^3 ; E1 = 100*10^-3 ;
E2 = 0 ; Rl = 5*10^3 ;
Gain = 10 ;
Il = 10*((E1-E2)/Rs);
Vr = Il * Rs ;
Vref = Il * Rl ;
V9 = Vref + Gain*(E1 - E2);
printf ( "\n\n Current across Load Resistor = %.4f A ", Il )
printf ( "\n\n Voltage across R = %.4f V ", Vr)
printf ( "\n\n Reference Voltage = %.4f V ", Vref )
printf ( "\n\n Voltage at terminal 9 = %.4f V ", V9 ) |
21b9ef5f251ace87dd725ecbe38b44ca294f2175 | f31f6ec4d31fa099d5c7b2d3dac522f17c7adf8f | /scenario/Testing.sce | 51e6679410e26e1d270e8f8fa32f143bb3da085c | [] | no_license | mcanzi/phd-exp1 | d63b1aead301f981d198c1b42f5b75709d9e0e3d | aac0bda3426c60c9b49218e132df2111145cbcba | refs/heads/master | 2023-08-13T04:42:33.385049 | 2023-07-30T20:38:52 | 2023-07-30T20:38:52 | 238,947,565 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,887 | sce | Testing.sce | #-- scenario header --#
# THIS SCENARIO REQUIRES NO EEG DATA COLLECTION
response_matching = simple_matching;
default_font_size = 48;
active_buttons = 2;
button_codes = 1,2;
write_codes = true;
#-- SDL part --#
begin;
array {
sound {wavefile { filename="piputu.wav"; }; description = "1";} my_first;
sound {wavefile { filename="tapabi.wav"; }; description = "2";};
} first;
array {
sound {wavefile { filename="bubapu.wav"; }; description = "10";} my_second;
sound {wavefile { filename="dipida.wav"; }; description = "11";};
} second;
array {
sound {wavefile { filename="dabapu.wav"; }; description = "12";} my_wrong;
sound {wavefile { filename="dobapu.wav"; }; description = "13";};
sound {wavefile { filename="bapida.wav"; }; description = "14";};
sound {wavefile { filename="bupida.wav"; }; description = "15";};
} wrong;
trial {
trial_duration = 1600;
trial_type = first_response;
all_responses = false;
picture {
text { caption = "+"; font_size = 36; };
x = 0; y = 0; };
stimulus_event {
sound my_first;
time = 0;
response_active = true;
} event1;
} first_trial;
trial {
trial_duration = forever;
trial_type = first_response;
all_responses = false;
picture {
text { caption = "+"; font_size = 36; };
x = 0; y = 0; };
stimulus_event {
sound my_second;
time = 0;
stimulus_time_in = 500;
target_button = 1;
response_active = true;
} event2;
} second_trial;
trial {
trial_duration = 1000;
picture {
text {
caption = "correct";
font_size = 48;
font_color = 0,255,0; };
x = 0; y = 0; };
time = 0; } righto;
trial {
trial_duration = 1000;
picture {
text {
caption = "incorrect";
font_size = 48;
font_color = 255,0,0; };
x = 0; y = 0; };
time = 0; } wrongo;
trial {
trial_duration = 10000;
picture {
text {
caption = "";
font_size = 48; } final_result;
x = 0; y = 0; };
time = 0; } final_score;
begin_pcl;
int count1 = 0;
int count2 = 0;
int count3 = 0;
int count = 0;
int total = 0;
int repeat = 0;
int countCorrect = 0;
int wrongCounter = 0;
loop repeat until repeat == 1 begin
loop int a = 1 until a > 8 begin
first.shuffle();
loop int i = 1 until i > first.count() begin
if countCorrect < 5 then
string code = first[i].description();
int pair = int(code);
event1.set_stimulus( first[i] );
event1.set_event_code( code );
int td = random(1600,1800);
first_trial.set_duration( td );
first_trial.present();
if pair == 1 then
count1 = random(1,3);
if count1 < 3 then
event2.set_stimulus( second[1] );
event2.set_event_code( code );
event2.set_port_code( 10 );
event2.set_target_button( 1 );
second_trial.present();
stimulus_data last = stimulus_manager.last_stimulus_data();
if last.type() == stimulus_hit then
righto.present();
count - count + 1;
total = total + 1;
countCorrect = countCorrect + 1;
else
wrongo.present();
total = total + 1;
countCorrect = 0;
end;
elseif count1 == 3 then
wrongCounter = random(1,2);
if wrongCounter == 1 then
event2.set_stimulus( wrong[1] );
event2.set_event_code( code + "WRONG1" );
event2.set_port_code( 12 );
elseif wrongCounter == 2 then
event2.set_stimulus( wrong[2] );
event2.set_event_code( code + "WRONG2" );
event2.set_port_code( 13 );
end;
event2.set_target_button( 2 );
second_trial.present();
stimulus_data last = stimulus_manager.last_stimulus_data();
if last.type() == stimulus_hit then
righto.present();
count = count + 1;
total = total + 1;
countCorrect = countCorrect + 1;
else
wrongo.present();
total = total + 1;
countCorrect = 0;
end;
end;
elseif pair == 2 then
count2 = random(1,3);
if count2 < 3 then
event2.set_stimulus( second[2] );
event2.set_event_code( code );
event2.set_port_code( 11 );
event2.set_target_button( 1 );
second_trial.present();
stimulus_data last = stimulus_manager.last_stimulus_data();
if last.type() == stimulus_hit then
righto.present();
count = count + 1;
total = total + 1;
countCorrect = countCorrect + 1;
else
wrongo.present();
total = total + 1;
countCorrect = 0;
end;
elseif count2 == 3 then
wrongCounter = random(1,2);
if wrongCounter == 1 then
event2.set_stimulus( wrong[3] );
event2.set_event_code( code + "WRONG1" );
event2.set_port_code( 14 );
elseif wrongCounter == 2 then
event2.set_stimulus( wrong[4] );
event2.set_event_code( code + "WRONG2" );
event2.set_port_code( 15 );
end;
event2.set_target_button( 2 );
second_trial.present();
stimulus_data last = stimulus_manager.last_stimulus_data();
if last.type() == stimulus_hit then
righto.present();
count = count + 1;
total = total + 1;
countCorrect = countCorrect + 1;
else
wrongo.present();
total = total + 1;
countCorrect = 0;
end;
end;
end;
elseif countCorrect == 5 then
final_result.set_caption( "Congratulations\n You passed the test!" );
final_result.set_font_color(0,255,0);
final_result.set_font_size(36);
final_result.redraw();
final_score.present();
break;
end;
i = i + 1;
end;
a = a + 1;
end;
final_result.set_caption("Training starts again");
final_result.set_font_color(255,0,0);
final_result.set_font_size(36);
final_result.redraw();
final_score.present();
end;
|
ede6687d26ad76d8f90b9a103b2e7a63c816d75b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3129/CH5/EX5.6/Ex5_6.sce | 9988bd1a3dac0c0f5a1257e12359ea7da045bddd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 857 | sce | Ex5_6.sce | //Finding the currents and Voltages in the Boost Regulator
//Example 5.6(Page No- 194)
clc
clear
//given data
Vs = 5;//V
Va = 15;//V
f = 25*10^3;//Hz
L = 150*10^-6;//H
C = 220*10^-6;//F
Ia = 0.5;//A
//part(a)
k = 1-(Vs/Va);
printf('(a)\t The duty cycle k:%.2f or %.2f%%',k,k*100);
//part(b)
del_I = (((Va-Vs)*Vs)/(f*L*Va));
printf('\n (b)\t The ripple current of inductor: %.2fA',del_I);
//part(c)
Is = Ia/(1-k);
I2 = Is + (del_I/2);
printf('\n (c)\t The peak current of inductor: %0.3f A',I2);
//part(d)
del_Vc = (Ia*k)/(f*C);
printf('\n (d)\t The ripple voltage of filter capacitor %.2f mV',del_Vc*10^3);
//part(e)
R = Va/Ia ;
Lc = ((1-k)*(k*R)/(2*f));
Cc = (k/(2*f*R));
printf('\n (e)\t The critical value of inductance Lc: %d uH',Lc*10^6);
printf('\n \t The critical value of Capacitance Cc: %0.2f uF',Cc*10^6);
|
7c527be01db7d0c88c51bc3ad3490482b34db119 | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/flush-007.tst | bfb32eff9c282205c7c4393053321e247ae48ebd | [] | no_license | RP-pbm/Recurrence-plot | f86c5cd85460661b01a609f8f4281d2cda6b4e07 | b5da95f9b30c1a924a002102219bf0a2ad47df2c | refs/heads/master | 2022-07-24T12:11:34.163543 | 2022-07-09T19:32:43 | 2022-07-09T19:32:43 | 92,934,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 34 | tst | flush-007.tst | ../inputs/flush-4x3-non-binary.ssv |
8e4a9e21ebbd55a7842cb3bff7ff37dfddfb4681 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3526/CH12/EX12.10/EX12_10.sce | 7c071c0138db763b72c6e2001a899813d443c88e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 420 | sce | EX12_10.sce | clc;funcprot(0);//EXAMPLE 12.10
//page 366
// Initialisation of Variables
%M=0.60;.......//Percentage of Carbon in Martensite at 750 degree celsius
%a=50;......//Percentage of Carbon in Austenite at 750 degree celsius
%c=0.02;......//Percentage of Carbon atoms in Steel
X=(%a/100)*(%M-%c)+%c;......//The carbon content of Steel in percentage
disp(X,"The carbon content of hypoeutectoid Steel in percentage:")
|
bbef7e68d04b1bd6d7f4e972c3651c65e3afb62d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH6/EX6.32/Ex6_32.sce | 3a3bb0833aa8f21f0deed057fcbcbff21fa47368 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 604 | sce | Ex6_32.sce | clear
//
//
//
//Variable declaration
h=6.63*10^-34; //planck's constant(J-sec)
e=1.6*10^-19; //charge of electron(c)
L=2.5*10^-10; //width(m)
m=9.1*10^-31; //mass of electron(kg)
n1=1;
n2=2;
n3=3;
//Calculations
E=h^2/(8*m*e*L^2); //energy(eV)
E1=n1^2*h^2/(8*m*e*L^2); //1st least energy(eV)
E2=n2^2*h^2/(8*m*e*L^2); //2nd least energy(eV)
E3=n3^2*h^2/(8*m*e*L^2); //3rd least energy(eV)
//Result
printf("\n 1st least energy is %0.0f eV",E1)
printf("\n 2nd least energy is %0.0f eV",E2)
printf("\n 3rd least energy is %0.0f eV",E3)
|
a6a90b13569556c5eef5b79f0824924fcf09b8ca | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/m2sci/set_infos.sci | 7a601694b6cc1a58a25451cb469a0829bea33cfc | [
"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 | 289 | sci | set_infos.sci | function set_infos(t,level)
global('m2sci_infos')
select level
case 0 then
txt=[txt;' ';'// '+t]
case 1 then
m2sci_infos(level)=%t
txt=[txt;' ';'//! '+t]
case 2 then
m2sci_infos(level)=%t
if logfile>0 then write(logfile,t,'(a)'),end
txt=[txt;' ';'//!! '+t]
end
txt=resume(txt)
|
8b814af82eda0ce4bd3f98a8a4fb09d5a643e946 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2096/CH1/EX1.55/ex_1_55.sce | c9f92978b9b3b6c9c781733c00f6eb8856c305c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 625 | sce | ex_1_55.sce | //Example 1.55://NUMBER OF RODS
clc;
clear;
a=5000-1000;//NO. OF RODS WHERE LENGTH LIES BETWEEN 20MM AND 20.25MM
PY=0.4;//PROBABLITY THAT ROBABILITY THAT 4000 RODS HAVE A VLUE GREATER THAN 20MM AND LESS THAN 20.25MM
SD=(20.25-20)/1.3;//standard deviation
y=(20-19.25)/SD;//
PY1=0.4953;//ROBABILITY THAT 4000 RODS HAVE A VLUE GREATER THAN 20MM AND LESS THAN 20.25MM
NR=10000*PY1//NO. OF RODS WHERE LENGTH LIES BETWEEN 19.25MM AND 20MM
tr=NR+a;//total number of rods whose length lie betweem specified limits of 19.5mm and 20.25mm
disp(tr,"total number of rods whose length lie betweem specified limits of 19.5mm and 20.25mm")
|
843c411c20261f83a219353c711a948c93a71ae6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2054/CH1/EX1.17/ex1_17.sce | 224372b53735e435a0383b16f9c96f9db4f7ddbb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 549 | sce | ex1_17.sce | //Exa:1.17
clc;
clear;
close;
I_ratio=8;//Ratio of short circuit current to full load current
s_f=0.04;//full load slip
T_r1=I_ratio^2*s_f;
disp(T_r1,'(a) Sarting Torque when started by means of direct switching=');
disp(' times the full load torque');
T_r2=I_ratio^2*s_f/3;
disp(T_r2,'(b) Sarting Torque when started by star-delta starter=');
disp(' times the full load torque');
K=sqrt(3/8);// transformation ratio of transformer
T_st=K^2*I_ratio^2*s_f;
disp(T_st,'(C) Starting Torque =');
disp(' times the full load torque'); |
57cb50ec8026eece3688e3a971e97a72bee0f328 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH7/EX7.14/Ex7_14.sce | 1898617cdbd4e1347e707024915654e5cd2b3351 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 595 | sce | Ex7_14.sce | // Scilab Code Ex7.14: Page-382 (2008)
clc; clear;
e = 1.6e-019; // The energy equivalent of 1 eV, J
c = 3e+008; // Speed of light in vacuum, m/s
n = 1; // Order of diffraction
d = 2.82e-010; // Interplanar spacing, m
V = 9.1e+003; // Operating voltage of X rays
theta = 14; // Bragg's angle, degree
lambda = 2*d*sind(theta)/n; // Wavelength of X rays, m
nu = c/lambda; // Frequency of X rays, Hz
h = e*V/nu; // Planck's constant, Js
printf("\nThe value of Planck constant, h = %4.2e Js", h);
// Result
// The value of Planck constant, h = 6.62e-034 Js |
5dbaeace19f4269af5128896fc26418ccfc08252 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH21/EX21.3/21Ex3.sce | 88b2face8573773f35eab742db9a7759f2ffe8a3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 157 | sce | 21Ex3.sce | //chapter 21 Ex 3
clc;
clear;
close;
sInterest=2502.50;
r=27/2; t=4;
Sum=sInterest/(1+(r*t/100));
printf("The principle amount is Rs. %d",Sum);
|
dc5addbd86e729304d3289bc652d50fd36b42c02 | 717ddeb7e700373742c617a95e25a2376565112c | /1658/CH18/EX18.26/Ex18_26.sce | 22a335b53a467fc30ce5cb6e46254179c4141f35 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 535 | sce | Ex18_26.sce | clc;
VCC=20;
VEE=20;
RC=5*10**3;
RE=10*10**3;
RB=10*10**3;
B1=50;
B2=100;
VBE1=0.7;
VBE2=0.6;
IE1=(VEE-VBE1)/(RE+RB/B1);
disp('mA',IE1*10**3,"IE1=");
IC1=IE1;
VC1=VCC-IC1*RC;
disp('V',VC1,"VC1=");
VE=-VBE1;
VCE1=VC1-VE;
disp('V',VCE1,"VCE1=");
IE2=(VEE-VBE2)/(RE+RB/B2);
disp('mA',IE2*10**3,"IE2=");
IC2=IE2;
VC2=VCC-IC2*RC;
disp('V',VC2,"VC2=");
VE=-VBE2;
VCE2=VC-VE;
disp('V',VCE2,"VCE2=");
delIc=(IC2-IC1)/IC1;
disp('%',delIc*100,"delIc=");
delVCE=(VCE1-VCE2)/VCE2;
disp('%',delVCE*100,"delVCE=");
|
849225b35bfc29a2e18bfbee8b2ec5e3c1776302 | 174c3876bf92d70c7f470a079b453abf5375e084 | /ficha2_exemplos.sce | dc0e2fa99eb464e25feab9928f88af43497347ab | [] | no_license | diogoalexsmachado/EI_MatDiscreta_Praticas | dfa1bb8b81a9163b85cb5e007385e9ff91edcb5f | 74ced6eec3b8b4cee2ad53d1bfc54809116b9e0f | refs/heads/master | 2021-01-25T12:42:19.518073 | 2018-03-01T22:21:11 | 2018-03-01T22:21:11 | 123,493,595 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,626 | sce | ficha2_exemplos.sce | // Diogo Machado
// 01/03/2018
// Aula 2
//Ficha 2
//Matrizes
//Declarar uma matriz
A=[1,2,3;4,5,6]
//Outra maneira de declarar a mesma matriz
A=[1 2 3
4 5 6]
//Gerar uma matriz identidade de tamanho 4x4
I=[4,4]
//Gerar uma matriz apenas com 1s de tamanho 2x5
U=ones(2,5)
//Gerar uma matriz apenas com 0s de tamanho 5x5
Z=zeros(5,5)
//Devolve o tamanho da matriz, linhas e colunas
size(A)
//Declarar a matriz B
B=[1 2 3
4 5 6
7 8 9
10 11 12]
//Devolve o tamanho da matriz B, linhas e colunas
size(B)
//Gerar uma matriz com os mesmos valores redistribuidos aleatoriamente
//sendo obrigatório ter o mesmo número de elementos
C=matrix(B,6,2)
//Recalcula o tamanho da matriz adicionando zeros ou eliminando linhas ou colunas
resize_matrix(B,6,3)
//Declarar a matriz A
A=[1 2 3
4 5 6
7 8 9
10 11 12]
//Devolve o elemento na linha 2 e coluna 3
A(2,3)
//Devolve o elemento na linha 3 e coluna 1
A(3,1)
//Atribuir valor ao elemento na linha 4 e coluna 2
A(4,2)=7
//Colocar o elemento como estava inicialmente
A(4,2)=11
//Atribuir à variável L3 o vetor correspondente à linha 3 da matriz
L3=A(3,:)
//Atribuir à variável C3 o vetor correspondente à coluna 3 da matriz
C3=A(:,3)
//Devolver todas as linhas da coluna 2 à coluna 3
A(1,2:3)
//Truncar (eliminar) a linha 3 da matriz
A(3,:)=[]
//Efetua a multiplicação elemento a elemento de duas matrizes com o mesmo tamanho
A.*B
//Declara a matriz A e B
A=[3,-24,30];
B=[ 9 -36 30
-36 192 -180
30 -180 180
//Devolve o determinante de B
det(B)
//Devolve a carateristica de B
rank(B)
//Declara X com a solução de XB=A
x=A/B
|
e71fbcef8886b802e20c3d2545f17545d2ca86a2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1962/CH1/EX1.6/example1_6.sce | 57d3e32fa417f38b35a6eb3b4ef3cc07e8e90c63 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 244 | sce | example1_6.sce | //example 1.6
//page 20
clc; funcprot(0);
//initialisation of variable
mu=0.09//viscosity
U=1;//velocity
Y=1/1000;//clearence
L=0.2;
d=0.05;
pi=3.14;
sigma=mu*U/Y;//stress
A=pi*d*L;
F=A*sigma;
disp(F,"Force applied (N)=");
clear
|
58343e74dc53d795d3c84356142ef805b79ccb6f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2837/CH17/EX17.2/Ex17_2.sce | f1f07dd5ca1c4eb3b854ffad79b97e344c840608 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex17_2.sce | clc
clear
//Initalization of variables
J=778
o2=12.5
theo=0.95
N=56.5
R0=1545
T=540 //R
p=14 //psia
LHV=2368089 //Btu/lb
ther=39.4
iep=0.78
ve=0.8
//calculations
Ar=o2/0.21 *theo
vol=N*R0*T/(144*p)
hv=(LHV -17730)/LHV
ithep=iep*ther
pd=ithep/100 *ve *100.5
mep=J*pd
//results
printf("Indicated mep = %d lb/sq ft",mep)
|
c80f95f2823c21f31897fa12198bb2a208be0f03 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH29/EX29.9/Ex29_9.sce | 8a3c975afb76e2ca734f7583d24140c6342f188b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 370 | sce | Ex29_9.sce | //Example 29.9
delta_t=1*10^-10;//Uncertainty in time (s)
h=6.63*10^-34;//Planck's constant (J.s)
delta_E=h/(4*%pi*delta_t);//Uncertainty in energy (J)
delta_E=delta_E*1/(1.6*10^-19);//Uncertainty in energy (eV)
printf('Minimum uncertainty in energy = %0.1e eV',delta_E)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
62f0cc9d65487566878a1654d32ed4669851ea1e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH21/EX21.21/21_21.sce | 7f38ff555666395b7979c36c25fc023c8f26565a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sce | 21_21.sce | //Chapter 21, Problem 21
clc;
N=4/1; //turns ratio
Rl=100; //load resistance
R1=N^2*Rl; //equivalent input resistance
printf("Equivalent input resistance = %d ohms",R1);
|
3869b04083f33af117e37fd452639c8e3fef03a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /147/CH14/EX14.15/Example14_15.sce | 757a86dd0dfac1e79f96864273a65ccd554ce5eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 696 | sce | Example14_15.sce | close();
clear;
clc;
//power of shunt motor 'P', full load line current 'I', armature resistance 'Ra', field resistance 'Rf', brush contant drop 'Vb', core and friction loss 'Pc'
Vb = 2; //V
Ra = 0.25; //ohm
Rf = 230; //ohm
P = 10; //hp
V = 230; //V
I = 40; //A
Pc = 380; //W
//input power 'Pi'
Pi = I*V; //W
//field-resistance loss 'Pf'
Pf = (V/Rf)^2 * Rf; //W
//armature resistance loss 'Pa'
Pa = (I-1)^2*Ra; //W
//stray-load loss 'Ps'
Ps = (1/100)*P*746; //W
//brush-contact losses 'Pb'
Pb = Vb*(I-1); //W
//total loss 'loss'
loss = Pf+Pa+Ps+Pb+Pc;
//output power 'Po'
Po = Pi-loss; //W
//efficiency 'n'
n = Po/Pi;
mprintf("Efficiency of motor, n = %0.1f %%",n*100); |
737f6645863a4b67a432862af909a67e9dc4cec2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /914/CH14/EX14.6/ex14_6.sce | 058310211eb01c26690297b7b2946447f95728f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 728 | sce | ex14_6.sce | clc;
warning("off");
printf("\n\n example14.6 - pg732");
// given
T=423.2; //[K] - temperature
P=5; //[atm] - pressure
Ma=4.0026; //[kg/mole] - molecular weight of helium
Mb=60.09121; //[kg/mole] - molecular weight of propanol
Dab_experimental=1.352*10^-5; //[m^2/sec] - experimental value of diffusion coefficient of helium-proponal system
// the diffusion volumes for carbon , hydrogen and oxygen are-
Vc=16.5;
Vh=1.98;
Vo=5.48;
V_A=3*Vc+8*Vh+Vo;
V_B=2.88;
patm=5;
// using the FSG correlation
Dab=(10^-7)*(((T^1.75)*((1/Ma)+(1/Mb))^(1/2))/(patm*((V_A)^(1/3)+(V_B)^(1/3))^2));
printf("\n\n Dab=%em^2/sec",Dab);
printf("\n\n The FSG correlation agrees to about 2 percent with the experimental value");
|
9e68aedf4e87f6e6eee48bd317ef70c0aca89d42 | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/testsuite/ada/acats/tests/c2/c23003i.tst | 7439cf35666a89b2a28149693d4da78d09f5a032 | [
"LGPL-2.1-only",
"FSFAP",
"LGPL-3.0-only",
"GPL-3.0-only",
"GPL-2.0-only",
"GCC-exception-3.1",
"LGPL-2.0-or-later",
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | zhmu/ananas | 8fb48ddfe3582f85ff39184fc7a3c58725fe731a | 30850c1639f03bccbfb2f2b03361792cc8fae52e | refs/heads/master | 2022-06-25T10:44:46.256604 | 2022-06-12T17:04:40 | 2022-06-12T17:04:40 | 30,108,381 | 59 | 8 | Zlib | 2021-09-26T17:30:30 | 2015-01-31T09:44:33 | C | UTF-8 | Scilab | false | false | 2,247 | tst | c23003i.tst | -- C23003I.TST
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- CHECK THAT THE LONGEST POSSIBLE IDENTIFIER CAN BE THE NAME OF A
-- LIBRARY PACKAGE CREATED BY A GENERIC INSTANTIATION.
-- JBG 5/26/85
-- DTN 3/25/92 DELETED TEST OF TWO MAXIMUM LENGTH PACKAGE NAMES THAT
-- DIFFER ONLY IN THEIR MIDDLE CHARACTER.
GENERIC
C : INTEGER;
PACKAGE C23003I_PKG IS
A : INTEGER := C;
END C23003I_PKG;
WITH C23003I_PKG;
PRAGMA ELABORATE (C23003I_PKG);
PACKAGE
$BIG_ID1
IS NEW C23003I_PKG (1);
WITH REPORT; USE REPORT;
WITH C23003I_PKG;
PRAGMA ELABORATE (REPORT, C23003I_PKG);
PACKAGE
$BIG_ID2
IS NEW C23003I_PKG (IDENT_INT(2));
WITH
$BIG_ID1
,
$BIG_ID2
;
WITH REPORT; USE REPORT;
PROCEDURE C23003I IS
BEGIN
TEST ("C23003I", "CHECK THAT LONGEST POSSIBLE IDENTIFIER CAN BE " &
"USED FOR A LIBRARY PACKAGE INSTANTIATION");
IF
$BIG_ID1
.A + IDENT_INT(1) /=
$BIG_ID2
.A THEN
FAILED ("INCORRECT PACKAGE IDENTIFICATION");
END IF;
RESULT;
END C23003I;
|
b6448cd5ad842a7e86940fec20afdafb3395a574 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3482/CH3/EX3.6/Ex3_6.sce | 57a735d3717ab00195a9543649c382cef46f99f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 471 | sce | Ex3_6.sce | clc;
//Given data
// Moment arms
Fx=-30;//in lb
Fy=20;//in lb
Fz=20;//in lb
//couple Forces
x=18;//iN
y=12;//iN
z=9;//iN
Mx=Fx*x;//N.m, Component of Moment along X axis
My=Fy*y;//N.m, Component of Moment along Y axis
Mz=Fz*z;//N.m, Component of Moment along Z axis
//This three moments represent component of single couple M
printf("Couple M equivalent to two couple can be written as \n M = %.2f lb-in i + %.2f lb-in j + %.2f lb-in k \n",Mx,My,Mz);
|
1dc386725d5ddfc70239f747e1e9ebc2aead08b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3269/CH7/EX7.14/Ex7_14.sce | 72812f5e6c7f4922dd8a0d7435cf0e2ac90f7bac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 639 | sce | Ex7_14.sce | // Example 7.14
clear all;
clc;
// Assuming that the fission product poisoning results in 12 barns per original Uranium-235 atom in a time frame of one year
sigma_p = 12; // Microscopic poison cross section in barns
v = 2.42; // Average number of neutrons produced in fission
// Using Table II.2 for fission cross section of Uranium-235 at thermal energy
sigma_f = 587; // Microscopic fission cross section in barns
// Calculation
rho = -sigma_p/(v*sigma_f);
// Result
printf(" \n The reactivity due to poisons = %.5f or %.3f percent \n",rho,rho*100);
|
e4960a02f1c9954a2d07a07bda3b76f37a5d3815 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH3/EX3.4/Ex3_4.sce | e795292535d107a4735c4e9d2eb32a1f9608499f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 320 | sce | Ex3_4.sce | //example 4 pagenumber 140
clear
v1=20;//volt
i1=((v1)/(200+1))*10^-3;
disp('current = '+string(i1)+'ampere');
//greater than 20
vone=16;
r=vone/i1;
r1=r-1*10^3;
r11=200*10^3-r1;
disp('resistance = '+string(r)+'ohm');
disp("r1 = "+string((r1))+"ohm");
disp("r2 = "+string((r11))+"ohm");
|
a380da59be7ea05405bd47430b382a27ccf37110 | 449d555969bfd7befe906877abab098c6e63a0e8 | /27/CH7/EX7.2.5/Example_7_2_5.sce | bc001cc2e5dd6a305193c218d1d6a79efb0f09ed | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 735 | sce | Example_7_2_5.sce | function xd=linear725(t,x)
xd(1)=(x(2)); //x(dot); x(2) means y.
xd(2)=-x(1)-x(2)+x(1)^2+x(2)^2; //y(dot); x(1) means x.;
endfunction
bound=[-15,-15,15,15]; //Bounds of x-axis and y-axis as [xmin ymin xmax ymax], change them according to your needs.
nrect=22; //increase it to get more number of curves, i.e. more information will be available.
set(gca(),"auto_clear","off") //hold on
x=linspace(bound(1),bound(3),nrect);
y=linspace(bound(2),bound(4),nrect);
x0=[];
for i=1:22
x0=[x(i);y(i)];
t0=0;
t=0:0.01:6000;
xout=ode(x0,t0,t,linear725);
plot2d(xout(1,:),xout(2,:));
end
xtitle('Phase Portrait','x-axis ( x )','y-axis ( y )') |
7502f5c698f5b83f5b5c49b4b983ff09347136e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1853/CH4/EX4.29/Ex4_29.sce | 99a47ef3fdbde9d03298332f91c933cdacc6f7cb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 153 | sce | Ex4_29.sce |
//determine the frequency
R=30;//ohms
L=0.5;//henry
f=50;//hertz
X=(2*%pi*f*L)
Z=R+%i*X
V=86.6+%i*50
I=V/Z
disp('current = '+string(I)+ 'A')
|
531afb9f24c633a27f627f81b1d5fa95d0edbd44 | 8277b4cef8c96ff5b520fc43b2200dc67ea6b2ed | /EXP 9.sce | 659f7dfb1f2409e0a2eec8fffb17d4a9e95b70fb | [] | no_license | divyashah98/OST | 5f7f3acf268fb9ab7e4ae889229e87d9ad31e6be | 214ee78db4e98e6387fca13cbe889054f3d9c298 | refs/heads/master | 2020-03-24T20:12:02.774742 | 2018-09-25T05:08:32 | 2018-09-25T05:08:32 | 142,964,900 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 315 | sce | EXP 9.sce | clc;
clear all;
s = %s;
H = 10/(s^2 + 7*s + 10);
PF = pfss(H)
disp(H, "H(s) = ")
disp(PF, "Partial Fraction = ")
//from the output we learn that
A = 3.33333;
B = - 3.33333;
p1 = -2;
p2 = -5;
t = 1;
z = %z;
e = %e;
A1 = (A/(1 - (e^(p1*t) * z^-1)))
B1 = (B/(1 - (e^(p2*t) * z^-1)))
Hz = A1 + B1;
disp(Hz, "Hz = ")
|
762475245c73596d9b9c4be519001db0c87645e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1448/CH1/EX1.4.i/I1_4.sce | 8916ee27b7d926b4aa6e55d8c3cd29e5afe57217 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 173 | sce | I1_4.sce | clc
//Initialzation of variables
MH2=2.016 //g/mol
MCO2=44.01 //g/mol
//calculations
ratio=sqrt(MCO2/MH2)
//results
printf('ratio of rates of effusion =%.3f',ratio)
|
9a209f53d45d777565297cc1558b84d1d19a426b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1991/CH5/EX5.1/1.sce | 568ffbb9f98a76288866af123078bf7156f53350 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 285 | sce | 1.sce | clc
clear
//INPUT DATA
np=1.39 //refractive index of prism
nl=1.29 //refractive index of liquid
a=62 //refracting angle of prism
//calculation
x=np*sind(62/2)/nl//snells law
y=asind(x)
d=(y*2)-a//minimum deviation
//output
printf("the minimum deviation is %3.3f degree",d)
|
061037ed791058f349f380ceb5800665ecf856bc | 8b9a8f57e173e7b4f3e0697bb8fa4391992830c1 | /Assignment_2/Assignment 2/PriorityMUX2bit4to1/PriorityMUX2bit4to1B.tst | 61aeacae5d17ba82c2cd7bdb7bb8ad5f48086a84 | [] | no_license | AtharvaC1511/ComputerSystemDesign | 9bdcdd5178e55f21c9c23cc105feb6f1cdf47cf6 | e3d9bdcb961aa6d2f13c58532bb89908dda70d3b | refs/heads/main | 2023-06-25T19:04:51.971391 | 2021-07-19T14:24:00 | 2021-07-19T14:24:00 | 387,486,807 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 637 | tst | PriorityMUX2bit4to1B.tst | load PriorityMUX2bit4to1.hdl,
output-file PriorityMUX2bit4to1B.out,
compare-to PriorityMUX2bit4to1B.cmp,
output-list R0%B3.1.3 R1%B3.1.3 R2%B3.1.3 R3%B3.1.3 X0%B3.2.3 X1%B3.2.3 X2%B3.2.3 X3%B3.2.3 Y0%B3.2.3;
set R0 1,
set R1 0,
set R2 0,
set R3 1,
set X0 %B10,
set X1 %B01,
set X2 %B00,
set X3 %B11,
eval,
output;
set R0 0,
set R1 1,
set R2 1,
set R3 0,
set X0 %B10,
set X1 %B01,
set X2 %B00,
set X3 %B11,
eval,
output;
set R0 1,
set R1 0,
set R2 1,
set R3 0,
set X0 %B10,
set X1 %B01,
set X2 %B00,
set X3 %B11,
eval,
output;
set R0 0,
set R1 1,
set R2 0,
set R3 1,
set X0 %B10,
set X1 %B01,
set X2 %B00,
set X3 %B11,
eval,
output;
|
8fcd5d0c81dbe082c0927bb07211b3141a0fa137 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/CompressibleFlowSolver/Tests/Couette_WeakDG_LDG_SEM_3DHOMO1D_MVM.tst | 39404962bb4083038fc5689fb5d9b08eebd2c6ea | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,223 | tst | Couette_WeakDG_LDG_SEM_3DHOMO1D_MVM.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>NS, Couette flow, mixed bcs, WeakDG advection and LDG diffusion, SEM</description>
<executable>CompressibleFlowSolver</executable>
<parameters>Couette_WeakDG_LDG_SEM_3DHOMO1D_MVM.xml</parameters>
<files>
<file description="Session File">Couette_WeakDG_LDG_SEM_3DHOMO1D_MVM.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="rho" tolerance="1e-12">0.000397131</value>
<value variable="rhou" tolerance="1e-12">48.1295</value>
<value variable="rhov" tolerance="1e-12">0.145835</value>
<value variable="rhow" tolerance="1e-11">9.34267e-06</value>
<value variable="E" tolerance="1e-12">17519.9</value>
</metric>
<metric type="Linf" id="2">
<value variable="rho" tolerance="1e-12">0.00139966</value>
<value variable="rhou" tolerance="1e-12">83.3517</value>
<value variable="rhov" tolerance="1e-12">0.50519</value>
<value variable="rhow" tolerance="1e-12">3.11565e-05</value>
<value variable="E" tolerance="1e-12">18953</value>
</metric>
</metrics>
</test>
|
0ad2b8c39a654f7b0f36359d80d39b2479e5ef71 | 3dfde5edd2a32028f4eb7cf329c7f784043fa6c0 | /format_transform.sci | 376c2693af97f9f95fceac88607912f2fd6ff82e | [] | no_license | Chadys/mini_toshop | b26fb5f94c77c70e82e167c8a201a92a67d731a6 | a3f0a49f669a5a3b0b3afd952b5a44383ee2a7d0 | refs/heads/master | 2021-01-18T20:19:43.794349 | 2017-04-13T14:14:44 | 2017-04-13T14:14:44 | 86,955,863 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,297 | sci | format_transform.sci | function [zoomed_im] = zoom(original_im, zoom_factor)
// zoom
// param : zoom_factor = coef de zoom
if ~exists("zoom_factor","local") then
zoom_factor = 2
end
[x,y,c] = size(original_im);
for i=1 : x
for j=1 : y
for mod_x = ((zoom_factor *(i -1))+1) : (((zoom_factor *(i -1))+1) + zoom_factor)
for mod_y = ((zoom_factor *(j -1))+1) : (((zoom_factor *(j -1))+1) + zoom_factor)
zoomed_im(mod_x,mod_y,:) = matrix(original_im(i,j,:),1,c)
end
end
end
end
endfunction
function newimg = flip(img, flip_type)
// renverser une image
// param : flip_type = sens du renversement
// entre 1 et 3
//1:vertical
//2:horizontal
//3:les deux
if ~exists("flip_type","local") then
flip_type = 3
end
[x,y,c] = size(img)
// vertical flip
if flip_type == 1 then
for i = 1 : x
for j = 1 : y/2+1
newimg(i,j,:) = matrix(img(i,y-j+1,:),1,c)
newimg(i,y-j+1,:) = matrix(img(i,j,:),1,c)
end
end
// horizontal flip
elseif flip_type == 2 then
for i = 1 : x/2+1
for j = 1 : y
newimg(i,j,:) = matrix(img(x-i+1,j,:),1,c)
newimg(x-i+1,j,:) = matrix(img(i,j,:),1,c)
end
end
// both flips
else
for i=1:x
for j=1:y/2+1
newimg(i,j,:)=matrix(img(x-i+1, y-j+1,:),1,3)
newimg(x-i+1, y-j+1,:)=matrix(img(i,j,:),1,3)
end
end
end
endfunction
function newimg=rotation(img, deg)
// applique une rotation a une image, ne change pas la taille de l'image
// param: deg = angle de rotation en degrée
// -360 à 360
if ~exists("deg","local") then
deg = 90
end
img = img(1:min(size(img,1),size(img,2)),1:min(size(img,1),size(img,2)),:)
[x,y]=size(img);
deg = deg2rad(deg)
img=im2double(img);
midx = x/2
midy = y/2
for i=1:x
for j=1:y
ii = i-midx
jj = j-midy
[radius, theta] = cart2pol(ii, jj)
[new_i, new_j] = pol2cart(theta + deg, radius)
new_i = ceil(midx + new_i)
new_j = ceil(midx + new_j)
if ~(new_i > 0 & new_i <= x)
new_i = 1
end
if ~(new_j > 0 & new_j <= y)
new_j = 1
end
newimg(i,j,:) = matrix(img(new_i, new_j,:),1,3)
end
end
newimg = im2uint8(newimg)
endfunction |
804be2c27f38a772e057bd62e3aabaf8745b1b3f | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH8/EX8.1/Example8_1.sce | 17e786b1cc08e67f0acd4a2219be1cd90e2d3dc1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 757 | sce | Example8_1.sce | //Example 8.1.
clc
format(6)
Vm=220
V1=110
RL=100
disp("We have,")
disp(" V1 = Vm*sin(theta)")
disp("Therefore,")
x=asind(V1/Vm)
disp(x," Firing angel, theta =")
ca=180-x
disp(ca," Conduction angle = 180 - theta =")
disp("Average voltage, Vav = (Vm/2pi) * (1+cos(theta))")
Vav = (Vm/(2*%pi))*(1+cosd(x))
disp(Vav," Vav(V) =")
format(7)
Iav=Vav/RL
disp(Iav,"Average current, Iav(A) = Vav / RL =")
po=Vav*Iav
disp(po,"Power output(W) = Vav*Iav =")
disp("As, V1 = Vm*sin(theta) = Vm*sin(omega*t),")
disp(" omega*t = theta = 30 = pi/6")
disp(" (2*pi)*(50*t) = pi/6")
disp("Therefore, the time during which the SCR remains OFF is")
format(6)
t=1/(2*6*50)
t1=t*10^3
disp(t1," t(ms) = ") |
9445846c242f02e70ccec67151198e7dbc4ba821 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH4/EX4.11/4_11.sce | 1fbd33668fd392bb5a24ca62901293bc6c708e89 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 405 | sce | 4_11.sce | //4.11
clc;
V=100;
R=0.5;
L=1*10^-3;
T=3*10^-3;
Duty_cycle=0.3333;
E=0;
Imax=V/R*((1-exp(-Duty_cycle*T*R/L))/(1-exp(-T*R/L)))-E/R;
printf("\nImax = %.2f A", Imax)
Imin=V/R*((exp(Duty_cycle*T*R/L)-1)/(exp(T*R/L)-1))-E/R;
printf("\nImin = %.1f A", Imin)
IL_avg=(Imax+Imin)/2;
printf("\nAverage Load current = %.1f A", IL_avg)
Vavg=Duty_cycle*V;
printf("\nAverage Load Voltage = %.2f V", Vavg) |
eb2f4ea8a4f1639e57c72cfff774c94c7823530f | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpic2escifiles6/MakecutbycrvL.sci | 81b0492fb9e589f9c22759bf1ef44f6f616171a8 | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 860 | sci | MakecutbycrvL.sci | // 08.09.19
// 08.10.15
// 08.12.21
function AnsL=MakecutbycrvL(Out1,CutuvL,Uveqstr,Uname,Vname,Eps)
if CutuvL==[]
if Mixtype(Out1)==1
AnsL=Mix(Out1);
else
AnsL=Out1;
end;
return;
end;
AnsL=[];
ParL=Partitionseg(Out1,CutuvL,Eps);
Flg=0;
for J=1:length(ParL)-1
Tmp=(ParL(J)+ParL(J+1))*0.5;
Tmp=PointonCurve(Tmp,Out1);
Tmp1='('+string(Tmp(1))+')';
Tmp2='('+string(Tmp(2))+')';
Tmp=strsubst(Uveqstr,Uname,Tmp1);
Tmp=strsubst(Tmp,Vname,Tmp2);
Tmp=evstr(Tmp);
if Tmp>0
if Flg==0
P1=ParL(J);
end;
Flg=1
else
if Flg==1
P2=ParL(J);
Tmp=Partcrv(P1,P2,Out1);
AnsL=Mixadd(AnsL,Tmp);
end;
Flg=0
end;
end;
if Flg==1
P2=ParL(length(ParL));
Tmp=Partcrv(P1,P2,Out1);
AnsL=Mixadd(AnsL,Tmp);
end;
endfunction;
|
80c7a8ba647c49f6e9a8b1587fcbb86f3fbdd883 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/SCHI/ZM14WFP/ATWM1_Working_Memory_MEG_ZM14WFP_Session1/ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | 88f7b73cc5a1f41df29dfcd7750709ae23a3de01 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,381 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
41 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_144 gabor_055 gabor_030 gabor_091 gabor_144 gabor_055_alt gabor_030_alt gabor_091 "1_1_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_144_055_030_091_target_position_2_3_retrieval_position_2" gabor_circ gabor_055_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_1_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2592 fixation_cross gabor_054 gabor_166 gabor_015 gabor_126 gabor_054 gabor_166 gabor_015_alt gabor_126_alt "1_2_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_054_166_015_126_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_081_framed blank blank blank blank fixation_cross_target_position_3_4 "1_2_Retrieval_Working_Memory_MEG_P1_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;
41 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_034 gabor_109 gabor_004 gabor_172 gabor_034 gabor_109_alt gabor_004_alt gabor_172 "1_3_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_034_109_004_172_target_position_2_3_retrieval_position_2" gabor_circ gabor_156_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_3_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_156_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2492 fixation_cross gabor_029 gabor_084 gabor_136 gabor_064 gabor_029_alt gabor_084 gabor_136_alt gabor_064 "1_4_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_029_084_136_064_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_136_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_4_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2142 fixation_cross gabor_038 gabor_072 gabor_116 gabor_003 gabor_038_alt gabor_072_alt gabor_116 gabor_003 "1_5_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_038_072_116_003_target_position_1_2_retrieval_position_1" gabor_178_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_5_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1842 2992 2192 fixation_cross gabor_031 gabor_005 gabor_121 gabor_076 gabor_031_alt gabor_005 gabor_121 gabor_076_alt "1_6_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2200_gabor_patch_orientation_031_005_121_076_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_121_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_6_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2542 fixation_cross gabor_175 gabor_147 gabor_089 gabor_125 gabor_175_alt gabor_147_alt gabor_089 gabor_125 "1_7_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_175_147_089_125_target_position_1_2_retrieval_position_1" gabor_175_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_7_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_155 gabor_002 gabor_176 gabor_119 gabor_155 gabor_002_alt gabor_176_alt gabor_119 "1_8_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_155_002_176_119_target_position_2_3_retrieval_position_2" gabor_circ gabor_139_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_8_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2142 2992 2242 fixation_cross gabor_054 gabor_117 gabor_089 gabor_161 gabor_054_alt gabor_117 gabor_089 gabor_161_alt "1_9_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_2250_gabor_patch_orientation_054_117_089_161_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_089_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_9_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_089_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2242 fixation_cross gabor_063 gabor_177 gabor_147 gabor_124 gabor_063_alt gabor_177 gabor_147_alt gabor_124 "1_10_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_063_177_147_124_target_position_1_3_retrieval_position_1" gabor_063_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_10_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2492 fixation_cross gabor_091 gabor_005 gabor_128 gabor_021 gabor_091_alt gabor_005_alt gabor_128 gabor_021 "1_11_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_091_005_128_021_target_position_1_2_retrieval_position_2" gabor_circ gabor_005_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_11_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_131 gabor_093 gabor_024 gabor_157 gabor_131 gabor_093 gabor_024_alt gabor_157_alt "1_12_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_131_093_024_157_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_024_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_12_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2042 fixation_cross gabor_036 gabor_002 gabor_144 gabor_056 gabor_036_alt gabor_002_alt gabor_144 gabor_056 "1_13_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_036_002_144_056_target_position_1_2_retrieval_position_1" gabor_086_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_13_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_161 gabor_037 gabor_009 gabor_126 gabor_161_alt gabor_037_alt gabor_009 gabor_126 "1_14_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_161_037_009_126_target_position_1_2_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_14_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2442 fixation_cross gabor_132 gabor_060 gabor_177 gabor_111 gabor_132 gabor_060_alt gabor_177_alt gabor_111 "1_15_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_132_060_177_111_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_177_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_15_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1842 2992 1992 fixation_cross gabor_058 gabor_033 gabor_090 gabor_145 gabor_058_alt gabor_033 gabor_090 gabor_145_alt "1_16_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2000_gabor_patch_orientation_058_033_090_145_target_position_1_4_retrieval_position_2" gabor_circ gabor_170_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_16_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_170_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 1942 fixation_cross gabor_100 gabor_130 gabor_165 gabor_076 gabor_100_alt gabor_130 gabor_165_alt gabor_076 "1_17_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_100_130_165_076_target_position_1_3_retrieval_position_1" gabor_100_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_17_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2342 fixation_cross gabor_068 gabor_174 gabor_134 gabor_110 gabor_068 gabor_174 gabor_134_alt gabor_110_alt "1_18_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_068_174_134_110_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_156_framed blank blank blank blank fixation_cross_target_position_3_4 "1_18_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_156_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_080 gabor_030 gabor_096 gabor_053 gabor_080 gabor_030 gabor_096_alt gabor_053_alt "1_19_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_080_030_096_053_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_007_framed blank blank blank blank fixation_cross_target_position_3_4 "1_19_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 1942 fixation_cross gabor_037 gabor_058 gabor_115 gabor_090 gabor_037 gabor_058_alt gabor_115 gabor_090_alt "1_20_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_037_058_115_090_target_position_2_4_retrieval_position_2" gabor_circ gabor_058_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_20_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 1892 fixation_cross gabor_088 gabor_059 gabor_124 gabor_144 gabor_088_alt gabor_059 gabor_124_alt gabor_144 "1_21_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_088_059_124_144_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_124_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_21_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1892 2992 2442 fixation_cross gabor_076 gabor_031 gabor_157 gabor_048 gabor_076_alt gabor_031 gabor_157 gabor_048_alt "1_22_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2450_gabor_patch_orientation_076_031_157_048_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_157_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_22_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_157_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_019 gabor_109 gabor_040 gabor_152 gabor_019_alt gabor_109 gabor_040_alt gabor_152 "1_23_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_019_109_040_152_target_position_1_3_retrieval_position_1" gabor_019_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_23_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2242 2992 2592 fixation_cross gabor_003 gabor_077 gabor_127 gabor_093 gabor_003 gabor_077_alt gabor_127_alt gabor_093 "1_24_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2600_gabor_patch_orientation_003_077_127_093_target_position_2_3_retrieval_position_1" gabor_003_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_24_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_003_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 2142 fixation_cross gabor_034 gabor_162 gabor_052 gabor_108 gabor_034 gabor_162 gabor_052_alt gabor_108_alt "1_25_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_034_162_052_108_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_052_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_25_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_070 gabor_149 gabor_097 gabor_125 gabor_070 gabor_149_alt gabor_097 gabor_125_alt "1_26_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_070_149_097_125_target_position_2_4_retrieval_position_2" gabor_circ gabor_149_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_26_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 1992 fixation_cross gabor_152 gabor_004 gabor_062 gabor_126 gabor_152_alt gabor_004 gabor_062_alt gabor_126 "1_27_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_152_004_062_126_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_110_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_27_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2092 fixation_cross gabor_169 gabor_111 gabor_051 gabor_093 gabor_169 gabor_111_alt gabor_051_alt gabor_093 "1_28_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_169_111_051_093_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_003_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_28_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2242 fixation_cross gabor_040 gabor_145 gabor_078 gabor_168 gabor_040 gabor_145 gabor_078_alt gabor_168_alt "1_29_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_040_145_078_168_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_126_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_29_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 1892 fixation_cross gabor_038 gabor_176 gabor_110 gabor_065 gabor_038_alt gabor_176_alt gabor_110 gabor_065 "1_30_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_038_176_110_065_target_position_1_2_retrieval_position_2" gabor_circ gabor_176_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_30_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_179 gabor_013 gabor_053 gabor_128 gabor_179_alt gabor_013 gabor_053_alt gabor_128 "1_31_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_179_013_053_128_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_053_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_31_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 2342 fixation_cross gabor_103 gabor_148 gabor_125 gabor_041 gabor_103_alt gabor_148 gabor_125 gabor_041_alt "1_32_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_103_148_125_041_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_179_framed blank blank blank blank fixation_cross_target_position_1_4 "1_32_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2092 2992 1992 fixation_cross gabor_008 gabor_113 gabor_037 gabor_098 gabor_008 gabor_113_alt gabor_037_alt gabor_098 "1_33_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_008_113_037_098_target_position_2_3_retrieval_position_1" gabor_145_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_33_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_145_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_017 gabor_175 gabor_130 gabor_056 gabor_017_alt gabor_175 gabor_130_alt gabor_056 "1_34_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_017_175_130_056_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_085_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_34_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 1892 fixation_cross gabor_037 gabor_120 gabor_168 gabor_153 gabor_037_alt gabor_120 gabor_168 gabor_153_alt "1_35_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_037_120_168_153_target_position_1_4_retrieval_position_1" gabor_085_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_35_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1792 2992 2342 fixation_cross gabor_032 gabor_086 gabor_137 gabor_061 gabor_032_alt gabor_086_alt gabor_137 gabor_061 "1_36_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2350_gabor_patch_orientation_032_086_137_061_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_061_framed blank blank blank blank fixation_cross_target_position_1_2 "1_36_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_061_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2292 fixation_cross gabor_084 gabor_173 gabor_036 gabor_015 gabor_084 gabor_173 gabor_036_alt gabor_015_alt "1_37_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_084_173_036_015_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_015_framed blank blank blank blank fixation_cross_target_position_3_4 "1_37_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2542 fixation_cross gabor_174 gabor_149 gabor_107 gabor_043 gabor_174_alt gabor_149 gabor_107 gabor_043_alt "1_38_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_174_149_107_043_target_position_1_4_retrieval_position_1" gabor_174_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_38_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_034 gabor_178 gabor_069 gabor_140 gabor_034 gabor_178_alt gabor_069_alt gabor_140 "1_39_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_034_178_069_140_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_069_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_39_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_069_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 1892 fixation_cross gabor_010 gabor_179 gabor_072 gabor_039 gabor_010 gabor_179 gabor_072_alt gabor_039_alt "1_40_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_010_179_072_039_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_089_framed blank blank blank blank fixation_cross_target_position_3_4 "1_40_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2292 fixation_cross gabor_051 gabor_073 gabor_025 gabor_094 gabor_051_alt gabor_073_alt gabor_025 gabor_094 "1_41_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_051_073_025_094_target_position_1_2_retrieval_position_1" gabor_051_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_41_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2142 2992 2342 fixation_cross gabor_111 gabor_006 gabor_081 gabor_026 gabor_111 gabor_006_alt gabor_081 gabor_026_alt "1_42_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_2350_gabor_patch_orientation_111_006_081_026_target_position_2_4_retrieval_position_1" gabor_111_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_42_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_111_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2192 fixation_cross gabor_111 gabor_023 gabor_165 gabor_086 gabor_111 gabor_023_alt gabor_165 gabor_086_alt "1_43_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_111_023_165_086_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_133_framed blank blank blank blank fixation_cross_target_position_2_4 "1_43_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_014 gabor_150 gabor_127 gabor_085 gabor_014 gabor_150_alt gabor_127_alt gabor_085 "1_44_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_014_150_127_085_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_127_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_44_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_134 gabor_020 gabor_102 gabor_084 gabor_134 gabor_020_alt gabor_102 gabor_084_alt "1_45_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_134_020_102_084_target_position_2_4_retrieval_position_2" gabor_circ gabor_020_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_45_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_061 gabor_090 gabor_007 gabor_034 gabor_061 gabor_090_alt gabor_007 gabor_034_alt "1_46_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_061_090_007_034_target_position_2_4_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_46_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2142 2992 2592 fixation_cross gabor_160 gabor_128 gabor_091 gabor_053 gabor_160 gabor_128_alt gabor_091_alt gabor_053 "1_47_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2600_gabor_patch_orientation_160_128_091_053_target_position_2_3_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_47_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_112_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2592 fixation_cross gabor_041 gabor_150 gabor_001 gabor_123 gabor_041_alt gabor_150_alt gabor_001 gabor_123 "1_48_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2600_gabor_patch_orientation_041_150_001_123_target_position_1_2_retrieval_position_1" gabor_180_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_48_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 1942 fixation_cross gabor_027 gabor_070 gabor_042 gabor_178 gabor_027_alt gabor_070 gabor_042_alt gabor_178 "1_49_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_027_070_042_178_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_091_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_49_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2392 fixation_cross gabor_164 gabor_124 gabor_141 gabor_105 gabor_164_alt gabor_124 gabor_141 gabor_105_alt "1_50_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_164_124_141_105_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_058_framed blank blank blank blank fixation_cross_target_position_1_4 "1_50_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_038 gabor_167 gabor_128 gabor_103 gabor_038_alt gabor_167 gabor_128_alt gabor_103 "1_51_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_038_167_128_103_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_079_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_51_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2192 2992 2292 fixation_cross gabor_054 gabor_079 gabor_110 gabor_140 gabor_054 gabor_079_alt gabor_110 gabor_140_alt "1_52_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2300_gabor_patch_orientation_054_079_110_140_target_position_2_4_retrieval_position_1" gabor_054_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_52_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_054_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2542 fixation_cross gabor_038 gabor_103 gabor_075 gabor_013 gabor_038 gabor_103 gabor_075_alt gabor_013_alt "1_53_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_038_103_075_013_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_150_framed blank blank blank blank fixation_cross_target_position_3_4 "1_53_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2292 fixation_cross gabor_081 gabor_049 gabor_155 gabor_100 gabor_081 gabor_049 gabor_155_alt gabor_100_alt "1_54_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_081_049_155_100_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_155_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_54_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2092 fixation_cross gabor_124 gabor_011 gabor_166 gabor_077 gabor_124 gabor_011_alt gabor_166 gabor_077_alt "1_55_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_124_011_166_077_target_position_2_4_retrieval_position_2" gabor_circ gabor_011_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_55_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1742 2992 2292 fixation_cross gabor_178 gabor_005 gabor_032 gabor_072 gabor_178 gabor_005 gabor_032_alt gabor_072_alt "1_56_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_178_005_032_072_target_position_3_4_retrieval_position_2" gabor_circ gabor_053_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_56_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_053_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2392 fixation_cross gabor_115 gabor_132 gabor_027 gabor_008 gabor_115 gabor_132 gabor_027_alt gabor_008_alt "1_57_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_115_132_027_008_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_056_framed blank blank blank blank fixation_cross_target_position_3_4 "1_57_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_096 gabor_037 gabor_022 gabor_066 gabor_096 gabor_037_alt gabor_022 gabor_066_alt "1_58_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_096_037_022_066_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_112_framed blank blank blank blank fixation_cross_target_position_2_4 "1_58_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_029 gabor_080 gabor_060 gabor_105 gabor_029 gabor_080 gabor_060_alt gabor_105_alt "1_59_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_029_080_060_105_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_105_framed blank blank blank blank fixation_cross_target_position_3_4 "1_59_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_090 gabor_136 gabor_121 gabor_151 gabor_090 gabor_136_alt gabor_121 gabor_151_alt "1_60_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_090_136_121_151_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_013_framed blank blank blank blank fixation_cross_target_position_2_4 "1_60_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2042 fixation_cross gabor_163 gabor_178 gabor_005 gabor_112 gabor_163_alt gabor_178_alt gabor_005 gabor_112 "1_61_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_163_178_005_112_target_position_1_2_retrieval_position_1" gabor_025_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_61_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1842 2992 2392 fixation_cross gabor_080 gabor_028 gabor_043 gabor_115 gabor_080_alt gabor_028_alt gabor_043 gabor_115 "1_62_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2400_gabor_patch_orientation_080_028_043_115_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_161_framed blank blank blank blank fixation_cross_target_position_1_2 "1_62_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_161_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_173 gabor_142 gabor_087 gabor_102 gabor_173 gabor_142_alt gabor_087 gabor_102_alt "1_63_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_173_142_087_102_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_102_framed blank blank blank blank fixation_cross_target_position_2_4 "1_63_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2542 fixation_cross gabor_004 gabor_112 gabor_091 gabor_128 gabor_004_alt gabor_112 gabor_091_alt gabor_128 "1_64_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_004_112_091_128_target_position_1_3_retrieval_position_1" gabor_053_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_64_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_173 gabor_108 gabor_152 gabor_091 gabor_173 gabor_108_alt gabor_152 gabor_091_alt "1_65_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_173_108_152_091_target_position_2_4_retrieval_position_2" gabor_circ gabor_108_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_65_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 1992 fixation_cross gabor_010 gabor_157 gabor_118 gabor_035 gabor_010_alt gabor_157 gabor_118 gabor_035_alt "1_66_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_010_157_118_035_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_target_position_1_4 "1_66_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1792 2992 2442 fixation_cross gabor_158 gabor_098 gabor_046 gabor_132 gabor_158_alt gabor_098 gabor_046_alt gabor_132 "1_67_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2450_gabor_patch_orientation_158_098_046_132_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_178_framed blank blank blank blank fixation_cross_target_position_1_3 "1_67_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_178_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2192 fixation_cross gabor_158 gabor_094 gabor_029 gabor_180 gabor_158_alt gabor_094 gabor_029_alt gabor_180 "1_68_Encoding_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_158_094_029_180_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_029_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_68_Retrieval_Working_Memory_MEG_P1_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2142 2992 2192 fixation_cross gabor_050 gabor_035 gabor_091 gabor_005 gabor_050_alt gabor_035 gabor_091 gabor_005_alt "1_69_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2200_gabor_patch_orientation_050_035_091_005_target_position_1_4_retrieval_position_2" gabor_circ gabor_173_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_69_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_173_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_070 gabor_107 gabor_023 gabor_087 gabor_070_alt gabor_107 gabor_023_alt gabor_087 "1_70_Encoding_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_070_107_023_087_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_159_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_70_Retrieval_Working_Memory_MEG_P1_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
e4dc888ed3235dae32894ebdcca8abef22a911a8 | fdc5047b7bf8122bad1e621df236b0481226c36e | /virtualHartSci/macros/hrtFrameCkSum.sci | 363d1daa5336f742f07bfb2cbc731108334385c5 | [] | no_license | jpbevila/virtualHartSci | aea3c6ba23d054670eb193f441ea7de982b531cc | a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5 | refs/heads/main | 2023-07-26T23:05:28.044194 | 2021-09-09T11:50:59 | 2021-09-09T11:50:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 124 | sci | hrtFrameCkSum.sci | function strCkSum=hrtFrameCkSum(strFrame)
strCkSum = tokens(part(strFrame,hrtFrameIni(strFrame):$),' ')($);
endfunction
|
1d71244e8450c5dfc9719dc5d0a9464a1da81c8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH4/EX4.19.a/data4_19.sci | 87310fd51e9a90991fd6540cbf9b15ba49f41678 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 240 | sci | data4_19.sci |
//(Design against Static Load) Example 4.19
//Refer Fig.4.65 and Fig.4.66
//Tensile yield strength of 45C8 Syt (N/mm2)
Syt = 380
//Factor of safety fs
fs = 3.5
//All dimensions in mm
bi = 90
bo = 30
h = 120
Ro = 170
Ri = 50
|
f0edd3535478587ab470d2c5390b57f4b0331611 | 449d555969bfd7befe906877abab098c6e63a0e8 | /389/CH3/EX3.3/Example3_3.sce | 37eb6c59ce3438c350c6e4f5bfb1cfbe63fad70f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 718 | sce | Example3_3.sce | clear;
clc;
// Illustration 3.3
// Page: 69
printf('Illustration 3.3 - Page: 69\n\n');
// solution
// Heat transfer analog to Eqn. 3.12
// The Eqn. remains the same with the dimensionless conc. ratio replaced by ((tl-to)/(ti-to))
// The dimensionless group:
// eta = 2*Dab*L/(3*del^2*velocity);
// eta = (2/3)*(Dab/(del*velocity))*(L/del);
// Ped = Peclet no. for mass transfer
// eta = (2/3)*(1/Ped)*(L/del);
// For heat transfer is replaced by
// Peh = Peclet no. for heat transfer
// eta = (2/3)*(1/Peh)*(L/del);
// eta = (2/3)*(alpha/(del*velocity))*(L/del);
// eta = (2*alpha*L)/(3*del^2*velocity);
printf('Heat transfer analog to Eqn. 3.21 is eta = (2*alpha*L)/(3*del^2*velocity)'); |
3922148b4a13a1fc610b3cef2de5869ed35a1a11 | 9182a918c195a40e939d89161585e04a97513ad9 | /test4.sce | 641a5c19fc476cd450e9933c9f69226f91c8a858 | [] | no_license | marcellorighi/haps_optimization | 996f7fbae18e8128a4e9d55ceafe0758ea513960 | 0ac1d1053350bbed2d747a1fe1b31b75f47e69a0 | refs/heads/main | 2023-01-02T11:27:55.854626 | 2020-10-21T11:03:08 | 2020-10-21T11:03:08 | 305,994,280 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,476 | sce | test4.sce |
function f=powerrequired(x)
// f = 1+x(1)^2 + x(2)^2; //)(x(2)-x(1)^2)^2 + (1-x(1))^2;
span = x(1);
u = x(2);
Lift = 500.;
Area = 22; // m
rho = 0.08; // kg/m^(-3)
nu = 1.5e-5;
// dyn pressure
q = 0.5 * rho * x(2)^2;
cl = Lift / (q * Area);
// root chord
chord = 4 * Area / (%pi * x(1) );
// calc aspect ratio
ar = x(1)^2 / Area;
// loop over n wing sections
n = 20;
yy = linspace(0,span,n);
// yy1 = linspace(0,span,n+1);
// yy2 = ([00 yy] + [yy yy($)])/2;
// yy = yy2(2:$-1);
c = chord*sqrt( 1 - (yy/span).^2);
Re = rho * c * u / nu;
Cd = 0.013 - 0.010*tanh((Re-4e5)/3e5);
Cdi = cl^2 /(%pi * min(ar,18));
Cdwing = sum(c.*(Cd + Cdi));
// Cdwing = 0.08 + Cdi;
disp([min(Re) cl sum(Cdi) sum(Cd)])
// assess: AoA, Re for each section
// calc Cl and Cd for each section incl induced Cd?
// calc L/D???
// y = q * Area * Cdwing;
// f = q * Area * Cdwing;
f = cl/Cdwing;
endfunction
function [f, g, ind]=cost(x, ind)
f = powerrequired (x);
g = numderivative (powerrequired, x);
endfunction
x0 = [20 20];
span_min=10;
span_max=40;
u_min=12;
u_max=50;
x_min=[span_min; u_min];
x_max=[span_max; u_max];
// Upper and lower bounds on x
// [fopt, xopt, gopt] = optim(cost, "b", [-1;0;2], [0.5;1;4], x0)
// )[fopt, xopt] = optim (rosenbrockCost, "b", [-2 -2], [-0.5 2], x0)
[fopt, xopt] = optim (cost, "b", x_min, x_max, x0)
|
05ac1d539484e114af2156643b7ad2729485a13c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH17/EX17.7/Ex17_7.sce | 392bc1cd0f558428ea50fd1be0c54abe95d9e11e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 231 | sce | Ex17_7.sce | //Example 17_7 page no:845
clc;
D=60;
I2=20;
R0=500;
N=10^(D/20);
R1=R0*(N-1)/(N+1);
R2=(2*N)*R0/(N^2-1);
disp(R1,"Each of the series arm is given by (in ohm)");
disp(R2,"the shunt arm resistor R2 is given by (in ohm)");
|
da645b07e880242689cfdb79d2c2e63e19dda18f | c61d570c37971fa455028a89d2163f455f91c291 | /gauss_pivotamento_parcial.sce | 5146786e773a7c3d7eb3ffcf163789ef5333c67b | [] | no_license | OgliariNatan/-ScientificComputing | a0af891f900f3f146a9751fd169f96052bd4ba83 | 070ea9d70430ef0c9e7944f491426b73af7c12b0 | refs/heads/master | 2020-04-04T23:13:12.585946 | 2017-07-03T21:46:18 | 2017-07-03T21:46:18 | 81,988,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,397 | sce | gauss_pivotamento_parcial.sce | //sistema 4x4
//l = linha do coeficiente da matriz original
//k = linha do coeficiente da sub matriz
//i = numero de colunas
//l = i+k-1
//
function x = gausspp(A,b)
clear
//x é o vetor solução
//a é a matriz de coeficientes
//b é o vetor estimulos
[m,n] = size(A)//obter a dimenção de a
if m~=n then
error('A: deve ser quadrada');//verifica se a matriz é quadrada
end
nb = n + 1;
SIS = [A b]//junta as matriz A e b em uma matriz nova
//eliminação progressiva
for i = 1:n-1 //i vai de 1 ate n-1
//Pivotamento
[maior,k] = max (abs(SIS(i:n,i)));
l = i+k-1;
if l~=i then
disp(SIS);
SIS([l,i],:) = SIS([i,l],:);//troca a matriz de i por l
disp("INVERTEU");
end
disp(SIS);
//Fim do pivotamento
for j = i+1:n
Mult = SIS(j,i)/SIS(i,i);
//for k = 1:nb
//SIS(j,k) = SIS(j,k)- SIS(i,k)*Mult;
//end
SIS(j,1:nb) = SIS(j,1:nb)- SIS(i,1:nb)*Mult; //for implicito
disp(SIS);// Mostrando todos os passos da eliminação
end
end
//disp (SIS);
//subistituição regressiva
x = zeros(n,1);
x(n) = SIS(n,nb)/SIS(n,n);
for i = n-1:-1:1
x(i) = (SIS(i,nb) - SIS(i,(i+1):n)*x((i+1):n)) / SIS(i,i);
end
endfunction
|
d2189be0b09a5f3df965d3a1b71520846a0bbfca | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH15/EX15.8/Ex15_8.sce | 1d6ca41a105de2515bbc5118a9e88cac34512f40 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 618 | sce | Ex15_8.sce | //chapter15
//example15.8
//page329
del_Ic=100d-3 // ampere
del_Vce=12 // V
Rl=5 // ohm
//case 1 : louspeaker directly connected
V=del_Ic*Rl
P=V*del_Ic
//case2 : loudspreaker transformer coupled
R_primary=del_Vce/del_Ic // for maximum power transfer the primary resistance should be equal to R
n=(R_primary/Rl)^0.5
V_secondary=del_Vce/n
Il=V_secondary/Rl
P_1=Il^2*Rl
printf("case1 : loudspeaker connected directly \n power transferred to loudspeaker = %.3f mW \n",P*1000)
printf("case2 : loudspeaker is transformer coupled \n power transferred to loudspeaker = %.3f mW \n",P_1*1000)
|
b53021b05c5aea3ec18de6e4729907ebea96b209 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1004/CH3/EX3.15/Ch03Ex15.sci | b35579497546465c88dae5559d88c328ddc68796 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 755 | sci | Ch03Ex15.sci | // Scilab Code Ex3.15: Lowest energy of three electrons in box: Pg:85 (2008)
n1 = 1, l = 0, ml = 0, ms = 1/2; // Quantum numbers of first electron
n2 = 1, l = 0, ml = 0, ms = -1/2; // Quantum numbers of second electron
n3 = 2, l = 0, ml = 0, ms = +1/2; // Quantum numbers of third electron
// The lowest energy corresponds to the ground state of electrons
m = 9.1e-031; // Mass of electron, kg
h = 6.626e-034; // Planck's constant, Js
a = 1; // For convenience, length of the box is assumed to be unity
E = (n1^2*h^2/(8*m*a^2)+n2^2*h^2/(8*m*a^2))+n3^2*h^2/(8*m*a^2); // Lowest energy of electron, joule
printf("\nThe lowest energy of electron = %6.4e/a^2", E);
// Result
// The lowest energy of electron = 3.6185e-037/a^2 |
1a14fbfe97c6d9c91d05a0022497168dd53f760d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH1/EX1.11/Ex1_11.sce | 9b1de53e682aed02ad807fc94af482d538730d2e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 226 | sce | Ex1_11.sce | clear;
clc;
//Example 1.11
V_Z=5.6;//(V)Zener diode breakdown voltage
r_z=0;//(Ohm)Zener resistance
I=3;//(mA)current in the diode
V_PS=10;//(V)
//I=(V_PS-V_Z)/R
R=(V_PS-V_Z)/I;
printf('\nresistance=%.3f KOhm\n',R)
|
389f43bbd0add42a63159472621f9b32e653a0cd | bae725b750433ba5d58470784eeb87687023da7e | /demos/Exemple_4_1.sce | 2e48b70b16a3870164c9bda6c0620dc0355ef951 | [
"MIT"
] | permissive | aamadou/IsItChaos | eac61da272b4fb22f83bdceaceb5774385f481e5 | def74ddd5710898f876a9a7d39916e5cc1a8b6b5 | refs/heads/master | 2016-08-04T21:00:17.832904 | 2014-03-24T13:18:39 | 2014-03-24T13:18:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 497 | sce | Exemple_4_1.sce | deff('[Xn]=f(Xn_1,c)','Xn=c*Xn_1*(1-Xn_1)');
x0=0.0001;
c=[3.5:.001:4] ;
orbits=[];
for i=c,
orbit=orb(20000,i,x0,f);
orbits=[orbits;orbit(1,$-999:$)];
end
Lest=[];
err=[];
save('Test_Logidt_K_orbits_c.dat',orbits,c);
for i=1:size(orbits,1),
[Nbr,L,Lesti,erri]=Lyap_K(orbits(i,:),,,,,1000,30, %T, 4);
Lesti=mean(Lesti);
erri=mean(erri);
if modulo(i,100)==0 then save('Test_Logidt_K_Lest_err.dat',Lest,err), end;
Lest=[Lest, Lesti];
err=[err, erri];
end;
plot2d(c,Lest);
|
f12138a392d5c37cf174ab4e9698d9a969c06db6 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/CreatingPlots/testhandle.sce | dbc3b6c7a8fea404a717e7e7e28ddda3445c0b0f | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 79 | sce | testhandle.sce | plot() // Scilab graphics command
gcf() // handle of corresponding figure
|
b6779af6a362f0d3df1f03952000f8c16f71e88f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3764/CH10/EX10.2/Ex10_2.sce | 91149c258838b3dcfb7dd54132b8750390814e39 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,910 | sce | Ex10_2.sce | clc
//
//
//Variable declaration
L=2 // Length(m)
E=13*((10**9)) // Modulus of elasticity(GPa)
Sall=12 // Stress(MPa)
FS=2.5 // Factor of safety(2.5)
Ld1=100 // Load force(kN)
Ld2=200 // Load force(kN)
//Calculation
//(a) For the 100-kN Load
Pcr=FS*Ld1*(1000.0) // Pressure(kN)
I=(Pcr*(L**2))/(((%pi)**2)*E) // Moment of inertia(m**4)
a1=((I*12)**(1/4.0)) // Side of square(mm)
S=(100)/((0.1)**2) // Normal stress in column(MPa)
//(b) For the 200-kN Load
Pcr=FS*(Ld2)*(1000.0) // Pressure(kN)
I=(Pcr*(L**2))/(((%pi)**2)*E) // Moment of inertia(m**4)
a=((I)*12)**(1/4.0) // Side of square(mm)
S=(200/(0.11695)**2) // Normal stress(MPa)
A=(200/12.0)*((10**-3)) // Area of cross section(m**2)
a2=(A)**(1/2.0)*(1000) // Side of square(mm)
//Result
printf("\n Case(a): Size of cross section if the column is to safetly support 100 kN = %0.3f psi ",a1)
printf("\n Case(b): Size of cross section if the column is to safetly support 200 kN = %0.3f psi ",a2)
|
b01462c7bdc96a5603e5f4f10d439a53da98245a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH4/EX4.5/Ex4_5.sce | 4dc706bfb71395d26fe25282bc486897064cc548 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 290 | sce | Ex4_5.sce | //Example 4_5
clc();
clear;
//To calculate the density
n=8
a=5.6*10^-10 //units in meters
M=710.59 //units in a.m.u
N=6.02*10^26 //units in kg/mol
Density=(n*M)/(a^3*N)
printf("Density is %.0f kg/m^3",Density)
|
f6f4d987908b1029b4acb0112692a19bb18b2b7b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2072/CH21/EX21.4/Ex21_4.sce | cd6dd035abe832386537992b4e31835af7f256a4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 364 | sce | Ex21_4.sce | //Example 21.4
clc;
R=250//in ohm
Xc=758//in ohm
Xl=226//in Ohm
X=Xl-Xc
V_max=150//in Volt
Z=sqrt(R^2+X^2)
I=V_max/Z
q=atand(X/R)
disp(Z,"Impedence in ohm")
disp(I,"Current in Amps")
disp(q,"Angle in degree=")
V_R=I*R
V_C=I*Xc
V_L=I*Xl
disp(V_R,"Voltage at Resistance in Volt")
disp(V_L,"Voltage at Inductance in Volt")
disp(V_C,"Voltage at Capacitance in Volt")
|
c1d8616da300205f41db70e351798bef91c8594a | 449d555969bfd7befe906877abab098c6e63a0e8 | /845/CH8/EX8.3/Ex8_3.sce | e8ffa3710456adb9900c8f0069e4d2ad2d4f1a8f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 405 | sce | Ex8_3.sce | //Example 8.3
clc
clear
function [f] = dydt(t,y)
f = t + sqrt(y);
endfunction
y0 = 1;
t0 = 0;
h = 0.2;
t = 0.6;
n = (t-t0)/h;
tt = t0;
for i = 1:n
y11 = y0 + h*dydt(tt,y0);
t1 = tt + h;
y1 = y0 + h/2*(dydt(tt,y0) + dydt(t1,y11));
y1 = round(y1*10^4)/10^4;
y(i) = y1;
y0 = y1;
tt = t1;
end
mprintf("%5s %8s",'t','y')
disp([(t0+h:h:t)' y])
|
1ec0a1fe086f158c877a358967484dd5d7288f8a | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH6/EX6.12/example6_12.sce | d89430e9a078fea782152a4319e02b4713c0b1b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 203 | sce | example6_12.sce | syms G1 G2 G3 G4 H1 H2;
T1=G1*G3*G2;
T2=G1*G2*G4;
L1=-G1*G2*H1;
L2=G1*G2*G3*H2;
L3=G2*G1*G4*H2;
delta=1-(L1+L2+L3)
del1=1;
del2=1;
TF=(T1*del1 + T2*del2)/delta ;
disp(TF,"C/R = ")
|
58d4372dd593ddfedf3cdae93963de67c5def17e | 449d555969bfd7befe906877abab098c6e63a0e8 | /695/CH3/EX3.25/Ex3_25.sce | c21a4ed059550bf3ae8dd105bf0e247ab30b2a80 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 433 | sce | Ex3_25.sce | //Caption:Calculate the efficiency of the transformer on full load and half load at unity power factor
//Exa:3.25
clc;
clear;
close;
KVA=100;
P_i=1300;//in watts
P_cu=1200;//in watts
pf=1;
Eff_fl=KVA*1000*pf/(KVA*1000*pf+P_i+P_cu);
disp(Eff_fl*100,'Efficiency of transformer at full load (in %)=');
Eff_hl=KVA*1000*0.5*pf/(KVA*0.5*1000*pf+P_i+0.25*P_cu);
disp(Eff_hl*100,'Efficiency of transformer at half load (in %)='); |
f660327cb13f21717e0b49dfaeae35098840c25a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2621/CH1/EX1.1/Ex1_1.sce | 1791af198586c2c777be2995085039f59dbbb44a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 721 | sce | Ex1_1.sce | // Example 1.1
clc;
clear;
close;
// Given data
format('v',6);
VCC= 9;//in V
VEE= -9;// in V
RC= 3.9;//in kΩ
RE= 3.3;// in kΩ
VBE= 0.7;// in V
IE= (abs(VEE)-VBE)/(2*RE);// emitter current in mA
IC= IE;// collector current in mA
// Collector voltage,
VC= VCC-IC*RC;// in V
disp(VC,"The collector voltage in volts is : ");
// Emitter voltage,
VE= 0-VBE;// in V
disp(VE,"The emitter voltage in volts is : ");
// Collecctor-emitter voltage,
VCE= VC-VE;// in V
disp(VCE,"The collector-emitter voltage in volts is : ");
// Note : There is some difference between coding output and the answer of the book because in the book the value of IE is used as 1.25mA while the calculated value of IE is 1.258
|
bf3a70ea092021542d1a5a5a2d3ae2760d0d35c5 | cb952289471732053d3db787d93f249ea37a7e55 | /6º PERÍODO/Otimizacao/UNIDADE 2/customin.sce | 668ebca3b1c795c1fa68d2ff7c3829bebe6bff5c | [] | no_license | kaikecc/UFRN | 647d09e6beeadfeabfb59f479cd77a5c2ff7bebc | 821cce2e36808e890a75714d71b7cc1a24e52c27 | refs/heads/master | 2022-08-09T19:23:52.552924 | 2022-06-23T21:27:05 | 2022-06-23T21:27:05 | 177,469,993 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 2,060 | sce | customin.sce | clc// MÉTODO DO PROCESSO DO CUSTO MINIMO
clc
clear all
//matriz_aumentada = [20,15,10,50;12,8,16,70;20,40,60,0];
function SI = customin(matriz_aumentada)
dim = size(matriz_aumentada);
A = matriz_aumentada(1:dim(1)-1,1:dim(2)-1);// Matriz de coeficientes
oferta = matriz_aumentada(1:dim(1)-1,dim(2));// vetor de resultados
demanda = matriz_aumentada(dim(1),1:dim(2)-1);// vetor de resultados
AUX = zeros(dim(1)-1,dim(2)-1);
B = A;
index = zeros(1,2);
menor_valor = 10000;
m = -1;
while m < 0
for i = 1:length(oferta)
for j = 1:length(demanda)
if A(i,j) < menor_valor then
menor_valor = A(i, j) ;
index = [i,j];
end
end
end
//***************************************************
if ((oferta(index(1))) == 0 | (demanda(index(2))) == 0) then
A(index(1), index(2)) = 10000;
menor_valor = 10000;
else
if oferta(index(1)) - demanda(index(2)) < 0 then
A(index(1), index(2)) = oferta(index(1));
AUX(index(1), index(2)) = oferta(index(1));
demanda(index(2)) = abs(oferta(index(1)) - demanda(index(2)));
oferta(index(1)) = 0;
else
A(index(1), index(2)) = demanda(index(2));
AUX(index(1), index(2)) = demanda(index(2));
oferta(index(1)) = oferta(index(1)) - demanda(index(2));
demanda(index(2)) = 0;
end
menor_valor = 10000;
end
if (length(find(oferta == 0)) == length(oferta)) then
m = 1;
end
//***************************************
end // fim do while
disp("Matriz de solução inicial: ");
disp(AUX);
disp("Oferta: ");
disp(oferta);
disp("Demanda: ");
disp(demanda);
disp("zo: ");
disp(sum(AUX .* B));
SI = 0;
endfunction
customin(matriz_aumentada)
|
94dffb26207f70547da0c1d92bf666a9bee56579 | 93640402789b9a9d07c82958f433765f1e2a8397 | /part 3a/ALUDataPath.tst | 775a4012dbfda3dbd6e48528a0ee51e36410b013 | [] | no_license | Slayingripper/Z80-CPU | 7a6b71f9e59850c3d4492a7f1867f4e81be278ba | 451873966cf071f8088407300629994a8d33f13c | refs/heads/master | 2020-05-04T02:42:27.419333 | 2019-04-01T19:27:22 | 2019-04-01T19:27:22 | 178,932,396 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 41,547 | tst | ALUDataPath.tst | // Auto-generated test script for ALUDataPath
load ALUDataPath.hdl,
output-file ALUDataPath.out,
compare-to ALUDataPath.cmp,
output-list dataIn%B1.8.1 carryIn%B3.1.3 dataOut%B1.8.1 carryOut%B3.1.3 sums%B3.1.3 ands%B3.1.3 xors%B3.1.3 ors%B3.1.3 op1Load%B3.1.3 op2Load%B3.1.3 hiLo%B3.1.3 notOp2%B3.1.3 resLoad%B3.1.3;
// Add 0 + 0 + 0 = 0
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 0 + 255 + 0 = 255
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 255 + 255 + 0 = 510
set dataIn 255,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 170 + 85 + 0 = 255
set dataIn 170,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 85,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 105 + 60 + 0 = 165
set dataIn 105,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 60,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 70 + 78 + 0 = 148
set dataIn 70,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 78,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 128 + 127 + 0 = 255
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 127,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 128 + 128 + 0 = 256
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 128,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 0 + 0 + 1 = 1
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 0 + 255 + 1 = 256
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 255 + 255 + 1 = 511
set dataIn 255,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 170 + 85 + 1 = 256
set dataIn 170,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 85,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 105 + 60 + 1 = 166
set dataIn 105,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 60,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 70 + 78 + 1 = 149
set dataIn 70,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 78,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 128 + 127 + 1 = 256
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 127,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 128 + 128 + 1 = 257
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 128,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 0 - 0 = 0
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 0 - 255 = 255
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 255 - 255 = 510
set dataIn 255,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 170 - 85 = 255
set dataIn 170,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 85,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 105 - 60 = 165
set dataIn 105,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 60,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 70 - 78 = 148
set dataIn 70,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 78,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 128 - 127 = 255
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 127,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// Add 128 - 128 = 256
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 128,
set op1Load 0,
set op2Load 1,
set carryIn 1,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 0,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 1,
set hiLo 1,
set notOp2 1,
set resLoad 1,
set sums 1,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 0 & 0 = 0
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 0 & ff = 0
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// ff & ff = ff
set dataIn 255,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// aa & 55 = 0
set dataIn 170,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 85,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 69 & 3c = 28
set dataIn 105,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 60,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 46 & 4e = 46
set dataIn 70,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 78,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 80 & 7f = 0
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 127,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 80 & 80 = 80
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 128,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 1,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 0 | 0 = 0
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 0 | ff = ff
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// ff | ff = ff
set dataIn 255,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// aa | 55 = ff
set dataIn 170,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 85,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 69 | 3c = 7d
set dataIn 105,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 60,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 46 | 4e = 4e
set dataIn 70,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 78,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 80 | 7f = ff
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 127,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 80 | 80 = 80
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 128,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 0,
set ors 1,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 0 ^ 0 = 0
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 0 ^ ff = ff
set dataIn 0,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// ff ^ ff = 0
set dataIn 255,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 255,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// aa ^ 55 = ff
set dataIn 170,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 85,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 69 ^ 3c = 55
set dataIn 105,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 60,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 46 ^ 4e = 8
set dataIn 70,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 78,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 80 ^ 7f = ff
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 127,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
// 80 ^ 80 = 0
set dataIn 128,
set op1Load 1,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 128,
set op1Load 0,
set op2Load 1,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 1,
set notOp2 0,
set resLoad 1,
set sums 0,
set ands 0,
set xors 1,
set ors 0,
tick, tock, output;
set dataIn 0,
set op1Load 0,
set op2Load 0,
set carryIn 0,
set hiLo 0,
set notOp2 0,
set resLoad 0,
set sums 0,
set ands 0,
set xors 0,
set ors 0,
tick, tock, output;
|
08e4b20e3e10b88705113a85d9b64abafbe4b245 | e7a35a00e3b8f325eac772f45c7c080561172f66 | /anuga/fit_interpolate/statrun.tst.sh | e6d06b5ad6c674cd6e54a2626a4afde27d955356 | [
"Apache-2.0"
] | permissive | stoiver/anuga_core | e9396435aafaff56f2367b2b7297a0a3bfbd0e1a | 6d6d8e22b7e15b601f960c198b521bc20682477c | refs/heads/main | 2023-07-20T04:47:31.791870 | 2023-04-26T07:59:33 | 2023-04-26T07:59:33 | 33,182,289 | 4 | 4 | NOASSERTION | 2023-05-15T12:14:45 | 2015-03-31T11:44:25 | Python | UTF-8 | Scilab | false | false | 7,209 | sh | statrun.tst.sh | # Statistics generator script. A good overnight job. Then use table.awk
# to convert an output stats file into a timings table.
# General polygon tests
make clean
export MAKEOPTS="-DTIMER -DRANDOM -DSORT"
make
# test all basic algorithms on random polygons
p_test -v 3 -n 50 -i 50 -r 0 -p 1 -d -ABCMPSW > Rr0.sts
p_test -v 4 -n 50 -i 50 -r 0 -p 1 -d -ABCMPSW >> Rr0.sts
p_test -v 10 -n 50 -i 50 -r 0 -p 1 -d -ABCMPSW >> Rr0.sts
p_test -v 20 -n 50 -i 50 -r 0 -p 1 -d -ABCMPSW >> Rr0.sts
p_test -v 50 -n 50 -i 50 -r 0 -p 1 -d -ABCMPSW >> Rr0.sts
p_test -v 100 -n 50 -i 50 -r 0 -p 1 -d -ABCMPSW >> Rr0.sts
p_test -v 1000 -n 50 -i 50 -r 0 -p 1 -d -ABCMPSW >> Rr0.sts
# grid and trapezoid tests at resolution 20
p_test -v 3 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 20 -b 20 > Rr0R20.sts
p_test -v 4 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 20 -b 20 >> Rr0R20.sts
p_test -v 10 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 20 -b 20 >> Rr0R20.sts
p_test -v 20 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 20 -b 20 >> Rr0R20.sts
p_test -v 50 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 20 -b 20 >> Rr0R20.sts
p_test -v 100 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 20 -b 20 >> Rr0R20.sts
p_test -v 1000 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 20 -b 20 >> Rr0R20.sts
# grid and trapezoid tests at resolution 100
p_test -v 3 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 100 -b 100 > Rr0R100.sts
p_test -v 4 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 100 -b 100 >> Rr0R100.sts
p_test -v 10 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 100 -b 100 >> Rr0R100.sts
p_test -v 20 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 100 -b 100 >> Rr0R100.sts
p_test -v 50 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 100 -b 100 >> Rr0R100.sts
p_test -v 100 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 100 -b 100 >> Rr0R100.sts
p_test -v 1000 -n 50 -i 50 -r 0 -p 1 -d -CGT -g 100 -b 100 >> Rr0R100.sts
# test all basic algorithms on regular polygons
p_test -v 3 -n 50 -i 50 -r 1 -p 0 -d -ABCMPSW > Rr1.sts
p_test -v 4 -n 50 -i 50 -r 1 -p 0 -d -ABCMPSW >> Rr1.sts
p_test -v 10 -n 50 -i 50 -r 1 -p 0 -d -ABCMPSW >> Rr1.sts
p_test -v 20 -n 50 -i 50 -r 1 -p 0 -d -ABCMPSW >> Rr1.sts
p_test -v 50 -n 50 -i 50 -r 1 -p 0 -d -ABCMPSW >> Rr1.sts
p_test -v 100 -n 50 -i 50 -r 1 -p 0 -d -ABCMPSW >> Rr1.sts
p_test -v 1000 -n 50 -i 50 -r 1 -p 0 -d -ABCMPSW >> Rr1.sts
# grid and trapezoid tests at resolution 20
p_test -v 3 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 20 -b 20 > Rr1R20.sts
p_test -v 4 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 20 -b 20 >> Rr1R20.sts
p_test -v 10 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 20 -b 20 >> Rr1R20.sts
p_test -v 20 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 20 -b 20 >> Rr1R20.sts
p_test -v 50 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 20 -b 20 >> Rr1R20.sts
p_test -v 100 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 20 -b 20 >> Rr1R20.sts
p_test -v 1000 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 20 -b 20 >> Rr1R20.sts
# grid and trapezoid tests at resolution 100
p_test -v 3 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 100 -b 100 > Rr1R100.sts
p_test -v 4 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 100 -b 100 >> Rr1R100.sts
p_test -v 10 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 100 -b 100 >> Rr1R100.sts
p_test -v 20 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 100 -b 100 >> Rr1R100.sts
p_test -v 50 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 100 -b 100 >> Rr1R100.sts
p_test -v 100 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 100 -b 100 >> Rr1R100.sts
p_test -v 1000 -n 50 -i 50 -r 1 -p 0 -d -CGT -g 100 -b 100 >> Rr1R100.sts
# General polygons, but not sorting edges
make clean
export MAKEOPTS="-DTIMER -DRANDOM"
make
p_test -v 3 -n 50 -i 50 -r 0 -p 1 -d -PS > Rr0no_sort.sts
p_test -v 4 -n 50 -i 50 -r 0 -p 1 -d -PS >> Rr0no_sort.sts
p_test -v 10 -n 50 -i 50 -r 0 -p 1 -d -PS >> Rr0no_sort.sts
p_test -v 20 -n 50 -i 50 -r 0 -p 1 -d -PS >> Rr0no_sort.sts
p_test -v 50 -n 50 -i 50 -r 0 -p 1 -d -PS >> Rr0no_sort.sts
p_test -v 100 -n 50 -i 50 -r 0 -p 1 -d -PS >> Rr0no_sort.sts
p_test -v 1000 -n 50 -i 50 -r 0 -p 1 -d -PS >> Rr0no_sort.sts
p_test -v 3 -n 50 -i 50 -r 1 -p 0 -d -PS > Rr1no_sort.sts
p_test -v 4 -n 50 -i 50 -r 1 -p 0 -d -PS >> Rr1no_sort.sts
p_test -v 10 -n 50 -i 50 -r 1 -p 0 -d -PS >> Rr1no_sort.sts
p_test -v 20 -n 50 -i 50 -r 1 -p 0 -d -PS >> Rr1no_sort.sts
p_test -v 50 -n 50 -i 50 -r 1 -p 0 -d -PS >> Rr1no_sort.sts
p_test -v 100 -n 50 -i 50 -r 1 -p 0 -d -PS >> Rr1no_sort.sts
p_test -v 1000 -n 50 -i 50 -r 1 -p 0 -d -PS >> Rr1no_sort.sts
# Convex polygon tests, best algorithms
make clean
export MAKEOPTS="-DTIMER -DRANDOM -DSORT -DCONVEX -DHYBRID"
make
p_test -v 3 -n 50 -i 50 -r 1 -p 0 -d -EICMP > Rr1convex_hy.sts
p_test -v 4 -n 50 -i 50 -r 1 -p 0 -d -EICMP >> Rr1convex_hy.sts
p_test -v 10 -n 50 -i 50 -r 1 -p 0 -d -EICMP >> Rr1convex_hy.sts
p_test -v 20 -n 50 -i 50 -r 1 -p 0 -d -EICMP >> Rr1convex_hy.sts
p_test -v 50 -n 50 -i 50 -r 1 -p 0 -d -EICMP >> Rr1convex_hy.sts
p_test -v 100 -n 50 -i 50 -r 1 -p 0 -d -EICMP >> Rr1convex_hy.sts
p_test -v 1000 -n 50 -i 50 -r 1 -p 0 -d -EICMP >> Rr1convex_hy.sts
# random triangles (vs. regular triangles)
p_test -v 3 -n 50 -i 50 -r 0 -p 1 -d -EICMP > Rr0convex_hy.sts
# Convex polygon tests, best algorithms
make clean
export MAKEOPTS="-DTIMER -DRANDOM -DSORT -DCONVEX"
make
p_test -v 3 -n 50 -i 50 -r 1 -p 0 -d -CP > Rr1convex.sts
p_test -v 4 -n 50 -i 50 -r 1 -p 0 -d -CP >> Rr1convex.sts
p_test -v 10 -n 50 -i 50 -r 1 -p 0 -d -CP >> Rr1convex.sts
p_test -v 20 -n 50 -i 50 -r 1 -p 0 -d -CP >> Rr1convex.sts
p_test -v 50 -n 50 -i 50 -r 1 -p 0 -d -CP >> Rr1convex.sts
p_test -v 100 -n 50 -i 50 -r 1 -p 0 -d -CP >> Rr1convex.sts
p_test -v 1000 -n 50 -i 50 -r 1 -p 0 -d -CP >> Rr1convex.sts
# random triangles (vs. regular triangles)
p_test -v 3 -n 50 -i 50 -r 0 -p 1 -d -EICMP > Rr0convex.sts
# convex polygon tests, no randomizing, no sorting (slower)
make clean
export MAKEOPTS="-DTIMER -DCONVEX -DHYBRID"
make
p_test -v 3 -n 50 -i 50 -r 1 -p 0 -d -ECMP > Rr1convex_no_sort.sts
p_test -v 4 -n 50 -i 50 -r 1 -p 0 -d -ECMP >> Rr1convex_no_sort.sts
p_test -v 10 -n 50 -i 50 -r 1 -p 0 -d -ECMP >> Rr1convex_no_sort.sts
p_test -v 20 -n 50 -i 50 -r 1 -p 0 -d -ECMP >> Rr1convex_no_sort.sts
p_test -v 50 -n 50 -i 50 -r 1 -p 0 -d -ECMP >> Rr1convex_no_sort.sts
p_test -v 100 -n 50 -i 50 -r 1 -p 0 -d -ECMP >> Rr1convex_no_sort.sts
p_test -v 1000 -n 50 -i 50 -r 1 -p 0 -d -ECMP >> Rr1convex_no_sort.sts
# random triangles (vs. regular triangles)
p_test -v 3 -n 50 -i 50 -r 1 -p 0 -d -ECMP > Rr0convex_no_sort.sts
# Winding Number tests
make clean
export MAKEOPTS="-DTIMER -DRANDOM -DSORT -DWINDING"
make
# random polygons
p_test -v 3 -n 50 -i 50 -r 0 -p 1 -d -CW > Rr0winding.sts
p_test -v 4 -n 50 -i 50 -r 0 -p 1 -d -CW >> Rr0winding.sts
p_test -v 10 -n 50 -i 50 -r 0 -p 1 -d -CW >> Rr0winding.sts
p_test -v 20 -n 50 -i 50 -r 0 -p 1 -d -CW >> Rr0winding.sts
p_test -v 50 -n 50 -i 50 -r 0 -p 1 -d -CW >> Rr0winding.sts
p_test -v 100 -n 50 -i 50 -r 0 -p 1 -d -CW >> Rr0winding.sts
p_test -v 1000 -n 50 -i 50 -r 0 -p 1 -d -CW >> Rr0winding.sts
# regular polygons
p_test -v 3 -n 50 -i 50 -r 1 -p 0 -d -CW > Rr1winding.sts
p_test -v 4 -n 50 -i 50 -r 1 -p 0 -d -CW >> Rr1winding.sts
p_test -v 10 -n 50 -i 50 -r 1 -p 0 -d -CW >> Rr1winding.sts
p_test -v 20 -n 50 -i 50 -r 1 -p 0 -d -CW >> Rr1winding.sts
p_test -v 50 -n 50 -i 50 -r 1 -p 0 -d -CW >> Rr1winding.sts
p_test -v 100 -n 50 -i 50 -r 1 -p 0 -d -CW >> Rr1winding.sts
p_test -v 1000 -n 50 -i 50 -r 1 -p 0 -d -CW >> Rr1winding.sts
|
e9e5d8c6a9f132f1b4393a354b023e285f409ff7 | e657bbadea88191ece0e48eb447173a4c5f816f6 | /tasks/cw4/binaryKonvertion(12_04_2017).sci | 6cc51c387af6681fed692ac7a5063a4c3cf5ccaa | [] | no_license | vainia/Learning-SCILAB | c37d6071907ea4fad811071a3164454a927602d8 | d77877b1316b8b3546cb32cb9e29e7ad70d25280 | refs/heads/master | 2020-03-10T09:51:08.444686 | 2018-04-12T23:13:06 | 2018-04-12T23:13:06 | 129,320,183 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 999 | sci | binaryKonvertion(12_04_2017).sci | //Algorytm 1 Konwersja binarna liczby calkowitej
function [bin] = dec2bin_1(n)
// n - konwertowana liczba calkowita (naturalna)
i=1
while n>0 do
bin(i)=modulo(n,2)
n=int(n/2)
i=i+1
end
endfunction
//Algorytm 2 Konwersja binarna ulamka
function [bin] = dec2bin_2(u, prec)
// u - konwertowany ulamek
// prec - maksymalna liczba cyfr rozwinecia binarnego konwertowanego ulamka
i=1
while u>0 & i<=prec do
bin(i)=int(2*u)
u=2*u -bin(i)
i=i+1
end
endfunction
//Algorytm 3 Dekonwersja binarna liczby calkowitej
function [x] = bin2dec_1(bi)
// n - binarnie konwertowana liczba calkowita (naturalna)
i=1
x=0
while i<=sum(bi^0) do
x=x+(bi(i)*(2^(i-1)))
i=i+1
end
endfunction
//Algorytm 4 Dekonwersja binarna ulamka
function [x] = bin2dec_2(bi)
// u - binarnie konwertowany ulamek
i=1
x=0
while i<=sum(bi^0) do
x=x+(bi(i)/(2^i))
i=i+1
end
endfunction
|
eaf771889f0c1c8847ef5ed4cc7bbea2e0eff8ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH13/EX13.3/C13P3.sce | 4548c190b786ed283dc9d2f102bde3a09d8f90d3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 675 | sce | C13P3.sce |
clear
clc
//to find speed of center of mass
//to find change in stored internal energy
// GIVEN:
//refer to figure 13-5 on page no. 285
//mass of ice skater
M = 50//in Kg
//force exerted
F = 55//in N
//distance moved by center of mass
scm = 32e-2//in m
// SOLUTION:
//consider newton's third law and center of mass equation
//speed of center of mass
vcm = sqrt(2*F*scm/M)//in m/s
//applying conservation of energy principle
//change in stored internal energy
delta_Eint = -(1/2)*(M*vcm^2)//in J
printf ("\n\n Speed of center of mass vcm = \n\n %.2f m/s",vcm)
printf ("\n\n Change in stored internal energy delta_Eint = \n\n %.1f J",delta_Eint)
|
c4ec656a39f2904e5b842bdbd7c117f2751a74c2 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testinput.sce | 48cbfd26ce8b3a8e58fe333143fab51c969c4732 | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 70 | sce | testinput.sce | x=input('would you like to resume (1) or terminate (0) the script ?')
|
00f8e1bb9d855fb9efa55f26405a7b3d4e02a8df | 449d555969bfd7befe906877abab098c6e63a0e8 | /3281/CH1/EX1.2/ex1_2.sce | 35a0392bf8ba6728026f858097080294f55d3bdd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,066 | sce | ex1_2.sce | //Page Number: 12
//Example 1.2
clc;
//Given
z0=50;//ohm
zg=50;//ohm
l=0.25;//m
f=4D+9;//hz
zl=100;//ohm
vg=10;//V
w=2*%pi*f;//rad/sec
c=3D+8; //m/s
//(i) Voltage and current at any point
tg=(zg-z0)/(zg+z0);
tl=(zl-z0)/(zl+z0);
vi=z0*vg/(z0+zg);//V
disp('V',vi,'Voltage at any point:');
ii=vg/(2*z0);//A
disp('A',ii,'Current at any point:');
//(ii) Voltage at generator end
//Taking z=1
z=1;
bet=w/c;
vz=(vg/2)*exp(-%i*bet*(z+l))*(1+(tl*exp(2*%i*bet*z)));//V
disp('V',vz,'Voltage at generator end:');
iz=ii*exp(-%i*bet*(z+l))*(1-(tl*exp(2*%i*bet*z)));//A
vz1=(vg/2)*exp(-%i*bet*(z+l))*(1+(tl*exp(2*%i*bet*z)));//V
//Voltage at load end, z=0
z11=0;
vl=(vg/2)*exp(-%i*bet*l)*(1+(tl*exp(2*%i*bet*z11)));//V
disp('V',vl,'Voltage at load end:');
//(iii) Reflection coefficient
zx=0.25;
tz=tl*exp(%i*2*bet*zx);
disp(tz,'Reflection coefficient:');
//(iv) VSWR
p=(1+tl)/(1-tl);
disp(p,'VSWR:');
//(v) Average power delivered to the load
vl=20/3;
pl0=vl^2/(2*zl);//W
disp('W',pl0,'Average power delivered to the load:');
|
276c76850e8c447c3a9f77a71bf61ab7a7b073de | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH1/EX1.14/exa_1_14.sce | 3e3baec73b42ff17d6b0cec73194cbbebe07c365 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 230 | sce | exa_1_14.sce | // Exa 1.14
clc;
clear;
close;
// Given data
V_CC=12;// in volt
V_BE=0.7;// in volt
R1= 25;// in k ohm
R1=R1*10^3;// in ohm
// I=I_REF= (V_CC-V_BE)/R1
I= (V_CC-V_BE)/R1; // in amp
disp(I*10^3,"Mirrored current in mA")
|
f92a5dce2ea4577bdc0efe96eb2537a9608997c7 | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/examples/pwm_zvsfb/build.sce | 9865c538e9956da230611b32dd70ac3d2b9d7147 | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 867 | sce | build.sce | // Create new PWM block
b = mdaqBlock();
b.name = "ZVSFB";
b.param_name = ["PWM period"; "Default duty"]
b.param_size = [ 1 1 ];
b.param_def_val(1) = 1000;
b.param_def_val(2) = 50;
b.in = [4 1 1 1 1 1];
b.out = [];
mdaqBlockAdd(b)
copyfile(pathconvert(mdaqToolboxPath() + "examples/pwm_zvsfb/user_blocks/", %F), pathconvert(mdaqToolboxPath() + "/macros/user_blocks", %f));
copyfile(pathconvert(mdaqToolboxPath() + "examples/pwm_zvsfb/userlib/", %F), pathconvert(mdaqToolboxPath() + "/src/c/userlib/", %F));
deletefile(mdaqToolboxPath() + "/macros/user_blocks/mdaq_zvsfb.bin");
deletefile(mdaqToolboxPath() + "/macros/user_blocks/mdaq_zvsfb_sim.bin");
deletefile(mdaqToolboxPath() + "/src/c/userlib/mdaq_pwm_zvsfb.o");
deletefile(mdaqToolboxPath() + "/src/c/userlib/mdaq_zvsfb.o");
mdaqBlockBuild(%t, %f)
mprintf("Restart Scilab to use new Xcos block");
|
df4142f1efe4bde010357f5e95de09538fdd7a99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3401/CH2/EX2.4/Ex2_4.sce | cafb61e779e20c799412d31c53b4d71eb68969cb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 232 | sce | Ex2_4.sce | clc
v=10^5// m/s
m=9.11*10^-31// kg*m/s
e=1.6*10^-19// eV
h=1.054*10^-34
E=0.5*m*v*v
disp(E,"the value of E in J is eV")
E1=E/e // value of E in eV
disp(E1,"eV=")
d=sqrt((h*h)/(2*m*E))
disp(d,"the value of d in m is ")
|
3c32725253597441525c24c4ca1f098229fac973 | fa428f297a915e9a041597642bfe29627ab69c42 | /app/views/error.sce | 6a7336b65554e0157b5b7a7b6b69b62843c4e509 | [] | no_license | TheBrenny/Web-Dev-and-Security | dff903be92838b14f7126dd1f7092922b86bf2cc | e4abb96dc24e606704b09f5acdd2684d6d5d577d | refs/heads/main | 2023-06-17T08:33:35.176024 | 2021-06-15T05:07:20 | 2021-06-15T05:07:20 | 343,603,444 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 219 | sce | error.sce | [[i= partials/header ]]
<h1>Oh no! - [[ statusCode ]]</h1>
<blockquote><pre>[[ message ]]</pre></blockquote>
<p>It seems like you've stumbled upon a page which actually doesn't exist!</p>
[[i= partials/footer ]] |
e5570e9590ae8192845a028483d916b413f35cbd | 3a9550dbf1d28c3c576a4e102771848477e4f030 | /CalculoII/cubo3d.sce | 04d598e96d3daf82bd17bb242cca3cc9f65479e7 | [] | no_license | juzejunior/Faculdade | 6e00800c47e779348c36bba0eaa5b377059373d2 | 458497ef1ca237fd22f794c0af0d4fa7cf285255 | refs/heads/master | 2020-04-12T07:21:30.667824 | 2018-07-05T10:59:59 | 2018-07-05T10:59:59 | 65,511,270 | 0 | 1 | null | 2018-05-08T14:53:12 | 2016-08-12T00:46:55 | C | UTF-8 | Scilab | false | false | 135 | sce | cubo3d.sce | //vetores
v = [1,0,1]
u = [0,1,1]
//exibicao do cubo em 3d
param3d([0, v(1)],[0,v(2)], [0,v(3)])
param3d([0, u(1)],[0,u(2)], [0,u(3)])
|
e179618524f1ad70a447f7f4b96a24596997b5dc | b3751bc2b9ab1dfb6d9f4f33b013a1a38315c2e6 | /test/eunit.fetch.tst | 42f0b62f2e6d0befcc1f3275063bfc5e4ad1dc0c | [
"Apache-2.0"
] | permissive | shamis/sqlparse | 9c3b4312365d8fe2dba40a857236076eea1bc441 | 6344e454331e71a13902e765f823bc0e65d5be77 | refs/heads/master | 2020-04-01T13:11:10.781385 | 2018-10-16T07:35:40 | 2018-10-16T07:35:40 | 153,240,490 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,376 | tst | eunit.fetch.tst | %%-*- mode: erlang -*-
%%-*- coding: utf-8 -*-
% Test control options
[{tests, []}].
%% =============================================================================
%% TESTS: FETCH
%% -----------------------------------------------------------------------------
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% fetch_statement
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
"fetch cursor_1 into :param_1".
"fetch cursor_1 into :param_1,:param_2".
"fetch cursor_1 into :param_1,:param_2,:param_3".
"fetch cursor_1 into :param_1_a :param_1_b".
"fetch cursor_1 into :param_1_a :param_1_b,:param_2_a :param_2_b".
"fetch cursor_1 into :param_1_a :param_1_b,:param_2_a :param_2_b,:param_3_a :param_3_b".
"fetch cursor_1 into :param_1_a indicator :param_1_b".
"fetch cursor_1 into :param_1_a indicator :param_1_b,:param_2_a indicator :param_2_b".
"fetch cursor_1 into :param_1_a indicator :param_1_b,:param_2_a indicator :param_2_b,:param_3_a indicator :param_3_b".
"fetch cursor_1 into column_1".
"fetch cursor_1 into column_1,column_2".
"fetch cursor_1 into column_1,column_2,column_3".
"FETCH name_cursor_1 INTO name_column_1".
%% -----------------------------------------------------------------------------
%% TESTS: FETCH
%% =============================================================================
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.