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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
45148cee3479b2192eef9c691136d1212d7fa94e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1616/CH2/EX2.17/ex2_17.sce | 0e0c345e6fef6ea5da3db27d4fd6824923d9386c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 447 | sce | ex2_17.sce | //ex2.17 find the impedence at a distance of 0.2lamda from the junction and VSWR
bl1=0.6*%pi;
bl2=0.4*%pi;
Z0=50;
ZL=75;
Z2=Z0*(ZL*cos(bl1)+%i*Z0*sin(bl1))/(Z0*cos(bl1)+%i*ZL*sin(bl1));
Z1=50;
Z=Z1*Z2/(Z1+Z2);
Zl2=Z0*(Z*cos(bl2)+%i*50*sin(bl2))/(50*cos(bl2)+%i*Z*sin(bl2));
T=abs((Z-Z0)/(Z+Z0));
VSWR=(1+T)/(1-T);
disp('VSWR on the line is = '+string(VSWR)+'','the impedence at a distance of 0.2lamda from the junction is = '+string(Zl2)+' ohm'); |
d01e164c6921247c48bc93fb34e36cb2ffb2a268 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2223/CH18/EX18.38/Ex18_38.sce | dc4a3785f302c3f243f6bdc70bff8fb60589b018 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 864 | sce | Ex18_38.sce | // scilab Code Exa 18.38 Kaplan turbine 70 rpm
//part(a)flow rate and specific speed
P=8e3; // Gas Power Output in kW
N=70; // Speed in RPM
H=10; // net head in m
n_m=0.85; // efficiency
omega=%pi*2*N/60;
NS=omega*sqrt(P*10e2)*(H^(-5/4))/549.016;
disp(NS,"(a)the specific speed of turbine is")
rho=1000; // density in kg/m3
g=9.81; // gravitational acceleration in m/s2
Q=P*1e3/(n_m*rho*g*H);
disp("m3/s",Q,"and the flow rate is")
// part(b) determining the speed, flow rate and power for the model
Dp_m=12; // Dp_m=Dp/Dm
Np=N; // Speed for prototype
Hm=3; // head of the model
Hp=H; // head for prototype
Nm=Np*Dp_m*sqrt(Hm/Hp);
disp("rpm",Nm,"(b)speed for the model is")
Dm_p=1/Dp_m;
Qp=Q;
Qm=(Dm_p^2)*sqrt(Hm/Hp)*Qp;
disp("m3/s",Qm,"the flow rate for model is")
Pm=n_m*rho*g*Qm*Hm;
disp("kW",Pm*1e-3,"the power for the model is")
|
7b81524e230dc9d6e3be170293eca1ada4283ac9 | 151e9d9a47b8c4098e67f5ecc974b3a811d91a95 | /brofist/scicos_32/bro_comm_motor_disp.sci | 091acdc95b7809929de7902ebe517bcfd715bc9c | [] | no_license | AliaksandrSiarohin/AppliedRobotics | a81c568be77962723b6b17394d1a42a4e76d8a69 | 5d79e537dd6926738ffc59eff18a78fd42c44417 | refs/heads/master | 2021-01-13T00:49:45.571990 | 2016-01-26T22:22:40 | 2016-01-26T22:22:40 | 45,112,715 | 2 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 1,102 | sci | bro_comm_motor_disp.sci | function [x,y,typ] = MOTOR_Disp(job,arg1,arg2)
x=[];y=[];typ=[];
select job
case 'plot' then
exprs=arg1.graphics.exprs;
standard_draw(arg1)
case 'getinputs' then
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x=arg1
model=arg1.model;graphics=arg1.graphics;
exprs=graphics.exprs;
case 'define' then
model = scicos_model()
model.sim = list('bro_comm_motor_disp',4)
model.out = []
model.out2 = []
model.outtyp= []
model.in = [1;3;3;3]
model.in2 = [1;1;1;1]
model.intyp = [3;1;1;1]
model.evtin = [1]
model.rpar = []
model.ipar = []
model.dstate=[1];
model.blocktype='c'
model.dep_ut=[%f %t]
exprs=[]
gr_i=['xstringb(orig(1),orig(2),[''Motors'';+''Dispatcher''],sz(1),sz(2),''fill'');']
x=standard_define([3 2],model,exprs,gr_i)
end
endfunction
|
871281a8bfa996c37a06934397da813d49a721de | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/scilab-examples/functions/range.sce~ | a09a069743aaf2823668aa75db1542088430fb56 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 390 | range.sce~ | function [ xmin ,xmax ,range]= myrange(x)
// MEAN : Calculate the range limits + interval.
// For vectors: returns three values minimum, maximum and interval.
// For matrices: returns three vectors containing the minimum,
// maximum and range for each column respectively.
[ m , n ] = size ( x );
if m == 1
m = n ;
end
xmin = min(x);
xmax = max(x);
range = max(x)-min(x);
endfunction
| |
247e26a7d4da4c67fababf6fc3ffd333f204bf4b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2783/CH5/EX5.11/Ex5_11.sce | 12efed3a6f58f86fc4ff23551c41ad93f679c505 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 350 | sce | Ex5_11.sce | clc
//initialization of new variables
clear
L=20 //m
D=6 //cm
th=40 //degrees
Q=7.63 //L/s
rho=900 //kg/m^3
mu=0.18 //N s/m^2
g=9.8 //m/s^2
//calculations
th=th*%pi/180
R=D/2*10^-2
S=%pi*R^2
U=Q*10^-3/S
Re=rho*U*D*10^-2/mu
f=64/Re
Hf=f*L/D*U^2/(2*g)*10^2
Dp=rho*g*(L*sin(th)+Hf)
P=Dp*Q*10^-3
//result
printf('Power = %.1f W',P)
|
de4bebead599ac5344b16ecb95c031b107eec4fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH10/EX10.5/10_5.sce | 7074fb0b544392a2dc0712c70b8f54bec6ee087b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 582 | sce | 10_5.sce | //Eg-10.5
//pg-437
clear
clc
close()
X = [0;5;10;15];
Y = [53;127;213;378];
T = zeros(4,4);
T(:,1) = Y;
for(j = 2:4)
for(i = 1:4+1-j)
T(i,j) = T(i+1,j-1) - T(i,j-1);
end
end
//disp(T)
// Using Gauss backward formula
//p3 = f + d*A + d2*A(A+1)/2 + d3*A*(A-1)*(A+1)/6
//Note that 'alpha' is replaced by A and 'small delta' by d
f = T(3,1);
d = T(2,2);
d2 = T(2,3);
d3 = T(1,4);
A = (7-10)/5;
p37 = f + d*A + d2*A*(A+1)/2 + d3*A*(A-1)*(A+1)/6;
printf('Therefore, the number of houses after seven years is %d\n',p37)
|
2d32e8d6f2db7cdf0fe3cb02a8a1ad88a5378028 | 0812f3bb6f3cc038b570df68ccee4275da04b11f | /models/complexity_1000/Applied_Thermodynamics_and_Engineering/CH7/EX7.4/7_4.sce | 7ba24928efb817e91d10efdb62721e55b09a6222 | [] | no_license | apelttom/20-semester_PhD_thesis | edc0b55580bae9d364599932cd73cf32509f4b7a | ff28b115fcf5e121525e08021fa0c02b54a8e143 | refs/heads/master | 2018-12-26T22:03:38.510422 | 2018-12-14T20:04:11 | 2018-12-14T20:04:11 | 106,552,276 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 335 | sce | 7_4.sce | clc;
mC=1;
mO=3;
mN=(3*79/21);
Tar=mC+mO+mN;
p1=1.013*10^5;
R=8.3145*10^3;
T=338;
V=Tar*R*T/p1;
Vr=V/[(2*12)+6+16];
disp(Vr,"Volume of reactants per kilogram of fuel:");
//part II
mCO2=2;
mH2O=3;
mN2=(3*79/21);
Tap=mCO2+mH2O+mN2;
T=393;
p=10^5;
V=Tap*R*T/p1;
Vr=V/[(2*12)+6+16];
disp(Vr,"Volume of products per kg of fuel is:");
|
78c7a9c7b2796cded54e783491993808876f078f | 940067908a620ecf3af07168e750cd30769047e4 | /AlgorithmeInterpolationLangrange2.sci | bebfee745a0811fecefd75a12ad62d0f433f45d8 | [
"MIT"
] | permissive | davidfotsa/Numerical_Methods_With_Scilab | 9bada60e6feba012fa7a52ce0e0ea85a40afd0d4 | a3c731888b8a7a77f0d851210bc62e00e348ace9 | refs/heads/main | 2023-08-01T13:11:14.528993 | 2021-09-28T04:19:38 | 2021-09-28T04:19:38 | 407,939,339 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 375 | sci | AlgorithmeInterpolationLangrange2.sci | //Algorithme Interpolation Langrange 2
funcprot(0);
function v=v(i,X,x)
v=1;
for j=1:length(X)
if (j<>i) then
v=v*(x-X(j));
end;
end;
endfunction;
function vp=vp(X,x)
vp=0;
for i=1:length(X)
vp=vp+v(i,X,x);
end;
endfunction;
function f=f(X,Y,x)
f=0;
for i=1:length(X)
f=f+v(i,X,x)*Y(i)/vp(X,x);
end;
endfunction;
|
17d8807ccb8dbbf8f69c83aab792008a33212ada | 449d555969bfd7befe906877abab098c6e63a0e8 | /162/CH4/EX4.17/example417.sce | da152530376ffae5f9d9082c0bcabb8a18749290 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 118 | sce | example417.sce | //Example 4.17
clc;
syms s;
I=(s+6)/(s*(s+3));
i=ilaplace(I);
Io=limit(s*I,s,0);
disp(Io,'FINAL VALUE OF i(t)'); |
0e55c0e23be96322f17c8d2633b22feebac3f00c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH8/EX8.12/Ex8_12.sce | 33950aa87db4cbffb2bf1dd8350a4e0a85281598 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 103 | sce | Ex8_12.sce | clc;
ApdB=50;
Ap=10^(ApdB/10);
Pin=0.001; //watt
Pout=Pin*Ap; //watt
disp('W',Pout,"Pout=");
|
2f0f9346cae4af0d86aff576ccb7bddb61420e39 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH2/EX2.3/Ex2_3.sce | db3dc5c36a6b99f621cbf7fc852006ddcd522cbb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex2_3.sce | clear ;
clc;
// Example 2.3
printf('Example 2.3\n\n');
printf('Page No. 46\n\n');
// given
F= 350*10^3;// fuel oils in gallons
Ci= 5000;// cost of insulation of tanks
As= 7500;//Annual Saving in Pound
if(As> Ci) then
disp("The investment has a pay-back period of less than 1 year");
else
disp("The investment has not a pay-back period of less than 1 year");
end
// Note- Since here pack back period is less than 1 year and the company is in profit so they can go with this fuel oil,
// although it can be noted that there are more problems handling heavy fuels oils
//and that the pay-back increases considerably the smaller the installation.
//So the company can changeover from oil to coal as a fuel.
|
337e4d5caf4820dbac34c1317395e2f9e938847c | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH12/EX12.8/c12_8.sce | 421bcba7588abfbf0b09938ba5b4690a6a75b8da | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,829 | sce | c12_8.sce | //(12.8) An air–water vapor mixture is contained in a rigid, closed vessel with a volume of 35 m3 at 1.5 bar, 120C, and psi = 10%. The mixture is cooled at constant volume until its temperature is reduced to 22C. Determine (a) the dew point temperature corresponding to the initial state, in C, (b) the temperature at which condensation actually begins, in C, and (c) the amount of water condensed, in kg.
//solution
//variable initialization
V = 35 //volume of the vessel in m^3
p1 = 1.5 //in bar
T1 = 120 //in degree celcius
psi1 = .1
T2 = 22 //in degree celcius
//part(a)
//The dew point temperature at the initial state is the saturation temperature corresponding to the partial pressure pv1. With the given relative humidity and the saturation pressure at 120C from Table A-2
pg1 = 1.985
pv1 = psi1*pg1 //partial pressure in bar
//Interpolating in Table A-2 gives the dew point temperature as
T = 60 //in degree celcius
printf('the dew point temperature corresponding to the initial state, in degee celcius is: %f',T)
//part(b)
Rbar = 8314 //universal gas constant
Mv = 18 //molar mass of vapor in kj/kmol
vv1 =((Rbar/Mv)*(T1+273))/(pv1*10^5) //the specific volume of the vapor at state 1 in m^3/kg
//Interpolation in Table A-2
Tdash = 56 //in degrees
printf('\n\nthe temperature at which condensation actually begins in degree celcius is: %f',Tdash)
//part(c)
mv1 = V/vv1 //initial amount of water vapor present in kg
//from table
vf2 = 1.0022e-3
vg2 = 51.447
vv2 = vv1 //specific volume at final state
x2 = (vv2-vf2)/(vg2-vf2) //quality
mv2 = x2*mv1 //the mass of the water vapor contained in the system at the final state
mw2 = mv1-mv2
printf('\n\n the amount of water condense in kg is: %f',mw2)
|
de3bf070a1fa699acbffa09ddb473b99b6ce6a2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3651/CH7/EX7.2/2.sce | 529b0d77f5e9d0a77660e03fd0163e4906a78c7e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 523 | sce | 2.sce |
//variable declaration
C=3*10**8 //The speed of light
Lamda=6943 //Wavelength
T=300 //Temperature in Kelvin
h=6.626*10**-34 //Planck constant
k=1.38*10**-23 //Boltzmann's constant
//Calculations
V=(C)/(Lamda*10**-10) //Frequency
R=exp(h*V/(k*T)) //Relative population
//Result
printf('Frequency (V) = %0.3f *10**14 Hz \n',(V/10**14))
printf('Relative Population= %0.3f *10**30 \n',(R/10**30)) |
a53565ecf429ca6b199f3d9701139e3b5e562e9f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1019/CH3/EX3.27/Example_3_27.sce | c8149b731060146f10a34bf842f78c29fcebaa1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 307 | sce | Example_3_27.sce | //Example 3.27
clear;
clc;
//Given
E=-21;
c1=3;
delE = E * 10^6;//evolved energy in J
c = c1 * 10^8;//speed of light in m/s^2
//To determine change in mass
delm = delE/(c^2);//change in mass in kg by Einstein equation
m=E/(c1^2);
t=6-(2*8)
mprintf('change in mass = %f*10^%i kg',m,t);
//end |
514b214f16231c412fe9268bebf4c2be6fb0903d | b801b811d1e45665a31cfc99d79ae520ae636363 | /test/push/test.tst | 63598353797df78fe28a2c58422218f70cb98ad1 | [] | no_license | jibuntu/vmtranslator_nand2tetris | f737f05ec091508944ba5d8a1d2697079ca817c8 | 4c52f6bdcc265fd8e73310b105a0bd1201e55814 | refs/heads/master | 2022-05-25T02:07:31.170385 | 2020-04-28T13:35:53 | 2020-04-28T13:35:53 | 257,823,204 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | tst | test.tst | // popのテスト
load test.asm,
output-file test.out,
compare-to test.cmp,
output-list RAM[0]%D2.6.2 RAM[256]%D2.6.2 RAM[257]%D2.6.2;
set RAM[0] 256, // initializes the stack pointer
set RAM[1] 100, // localセグメントの値を設定
repeat 100 { // enough cycles to complete the execution
ticktock;
}
output; // the stack pointer and the stack base
|
e028c0db69b6eef0fb3526a713ef8c5338a454ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH13/EX13.2/13_2.sce | 4fba6110dea1d84c560f8dc8c95c0f80be6d9205 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 159 | sce | 13_2.sce | rk = 14;
k = 0.06
rc = k*(14-1)+1;
g = 1.4;
n_diesel = 1-((1/g))*(1/rk^(g-1))*((rc^(g-1))/(rc-1));
disp("%",n_diesel*100,"Air standard efficiency is")
|
52d00cceeaf97030349c8f027bc9acabedc8dcf8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /42/CH1/EX1.5/sadiku_1_5.sce | 9e4a71d0fdcf1bf37cdbefdd66d298b1b30b3225 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sadiku_1_5.sce | clear;
clc;
format('v',7);
P=[2,0,-1];
Q=[2,-1,2];
R=[2,-3,1];
S=P+Q;
T=P-Q;
U1=S(1,2)*T(1,3)-S(1,3)*T(1,2);
U2=S(1,3)*T(1,1)-S(1,1)*T(1,3);
U3=S(1,1)*T(1,2)-S(1,2)*T(1,1);
U=[U1 U2 U3];
disp(U,'(P+Q)*(P-Q)=')
V1=R(1,2)*P(1,3)-R(1,3)*P(1,2);
V2=R(1,3)*P(1,1)-R(1,1)*P(1,3);
V3=R(1,1)*P(1,2)-R(1,2)*P(1,1);
V=[V1 V2 V3];
X=(Q(1,1)*V(1,1)+Q(1,2)*V(1,2)+Q(1,3)*V(1,3));
disp(X,'Q.R*P')
W1=Q(1,2)*R(1,3)-Q(1,3)*R(1,2);
W2=Q(1,3)*R(1,1)-Q(1,1)*R(1,3);
W3=Q(1,1)*R(1,2)-Q(1,2)*R(1,1);
W=[W1 W2 W3];
Y=(W(1,1)*P(1,1)+W(1,2)*P(1,2)+W(1,3)*P(1,3));
disp(Y,'P.Q*R')
det_W=(W(1,1)^2+W(1,2)^2+W(1,3)^2)^.5;
det_Q=(Q(1,1)^2+Q(1,2)^2+Q(1,3)^2)^.5;
det_R=(R(1,1)^2+R(1,2)^2+R(1,3)^2)^.5
sineoftheta=(det_W/(det_Q*det_R));
disp(sineoftheta,'sin of theta=')
Z1=P(1,2)*W(1,3)-P(1,3)*W(1,2);
Z2=P(1,3)*W(1,1)-P(1,1)*W(1,3);
Z3=P(1,1)*W(1,2)-P(1,2)*W(1,1);
Z=[Z1 Z2 Z3];
disp(Z,'P* Q*R=')
disp(W/det_W,'Unit Vector Perpendicular to Q & R')
q=Q/det_Q;
C=(P(1,1)*q(1,1)+P(1,2)*q(1,2)+P(1,3)*q(1,3));
disp(C*q,'Component of P along Q');
|
2965fdd5656ec9d94b0b83434ea75e050ff6f052 | 609237f4a8664ada967bfde8ff01265037a94292 | /F.E/Semester 2/Applied Mathematics II/ode.sce | 55225ca59416ed1031d7df49811cae2a30649993 | [] | no_license | kks3851/Undergraduate-Lab-work | 10260001d9d85ed87222923054de8ef02d93597b | e91a6375274570b1e74d29a336c0dedfa1bd0fce | refs/heads/master | 2021-08-23T03:36:33.486932 | 2017-12-02T23:40:56 | 2017-12-02T23:40:56 | 112,857,360 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 221 | sce | ode.sce | function ydot=f(x, y),
ydot=(y-x)/(y+x),
endfunction
yo=1;xo=0;
x=0.5;
y=ode(yo,xo,x,f)
x=0:.01:.5;
y=ode(yo,xo,x,f);
plot(x,y)
title('dy/dx=(y-x)/(y+x)','fontsize',5);
disp('y=');disp(y);
|
9a599ab72f7569dcc491c60a7df481ea6e637ba2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH1/EX1.20/Ex1_20.sce | aed3ceebeb04ad7d41739569b33d74ad64cf5848 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 289 | sce | Ex1_20.sce | //Chapter 1: Structure and Bonding
//Problem: 20
clc;
B_O = (9 - 4) / 2.0 // Bond order of N2+
printf( "MO configuration of N2+ is\n")
printf(" σ(1s2)σ*(1s2)σ(2s2)σ*(2s2) [π(2px2) = π(2py2)] σ(2pz1)\n")
printf("\n The Bond order of N2+, 1/2[Nb - Na] =%.1f", B_O)
|
4bbcafc77294d49d6e16e50d898f20d34d3daf57 | 6e51f2fdd036612dc2b51c405904fed97d2ae8b0 | /src/test_meta_1_b.tst | 7ca9625fc3c4ccf5422e5046e195340d1367afd5 | [
"Zlib",
"BSD-3-Clause",
"OML",
"MIT"
] | permissive | joe-nano/ciyam | 92c6ccb58029a1b2a641a7e00417ab524cb9f957 | a92c296b911b29620a7bb3b758eb55339e040219 | refs/heads/master | 2022-04-16T14:39:55.822434 | 2020-03-27T06:39:13 | 2020-03-27T06:39:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,149 | tst | test_meta_1_b.tst |
> storage_init ciyam
> pf 100 139100 "" 139101,139102,139103,139104,139105
> pc admin 20011002 100 139100 001 "139102=test1"
001
> ~mkdir test1
>
> pf 100 139100 "" 139101,139102,139103,139104,139105
[001 =1.0 256 100:139100] 001,test1,10000000000,10000000000,bad access
> pe admin 20011002 100 139100 001 139410
Status Info has changed.
> pf 100 139100 "" 139101,139102,139103,139104,139105
[001 =1.0 0 100:139100] 001,test1,10000000000,10000000000,okay
> pc admin 20011002 100 139100 002 "139102=test2,139104=20000000,139108=1"
002
> pc admin 20011002 100 139100 003 "139102=test3,139104=40000000,139108=1"
003
> pf 100 139100 "" 139101,139102,139103,139104,139105
[001 =1.0 0 100:139100] 001,test1,10000000000,10000000000,okay
[002 =1.0 256 100:139100] 002,test2,20000000,20000000,bad access
[003 =1.0 256 100:139100] 003,test3,40000000,40000000,bad access
> ~mkdir test2
>
> pe admin 20011002 100 139100 002 139410
Status Info has changed.
> pf 100 139100 "" 139101,139102,139103,139104,139105
[001 =1.0 0 100:139100] 001,test1,10000000000,10000000000,okay
[002 =1.0 0 100:139100] 002,test2,20000000,20000000,okay
[003 =1.0 256 100:139100] 003,test3,40000000,40000000,bad access
> ~mkdir test3
>
> pe admin 20011002 100 139100 003 139410
Status Info has changed.
> pf 100 139100 "" 139101,139102,139103,139104,139105
[001 =1.0 0 100:139100] 001,test1,10000000000,10000000000,okay
[002 =1.0 0 100:139100] 002,test2,20000000,20000000,okay
[003 =1.0 0 100:139100] 003,test3,40000000,40000000,okay
> file_archives
001 [okay ] (0 B/10.0 GB) test1
002 [okay ] (0 B/20.0 MB) test2
003 [okay ] (0 B/40.0 MB) test3
> pd admin 20011002 100 139100 001
> pf 100 139100 "" 139101,139102,139103,139104,139105
[002 =1.0 0 100:139100] 002,test2,20000000,20000000,okay
[003 =1.0 0 100:139100] 003,test3,40000000,40000000,okay
> pd admin 20011002 100 139100 002
> pf 100 139100 "" 139101,139102,139103,139104,139105
[003 =1.0 0 100:139100] 003,test3,40000000,40000000,okay
> pd admin 20011002 100 139100 003
> pf 100 139100 "" 139101,139102,139103,139104,139105
> ~rmdir test1
>
> ~rmdir test2
>
> ~rmdir test3
>
> |
715564b9948000ee4df56e0b95c889d99dd17ead | abdfb2db73e5240261372a514baa0c1a7bed7467 | /cudd-3.0.0/nanotrav/C17.tst | cbe480611132d374b0d7e91ea0fe616dd4947582 | [] | no_license | steefbrown/ece6740 | 21001ca156e24e23b71d6b719f11010ba4ce2a40 | cefe8dd498c7849546ece98fbd4d70b844f2bd5c | refs/heads/master | 2021-01-01T05:23:01.008122 | 2016-05-09T19:16:56 | 2016-05-09T19:16:56 | 57,227,414 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 12,643 | tst | C17.tst | # Nanotrav Version #0.12, Release date 2003/12/31
# nanotrav/nanotrav -p 1 -cover ./nanotrav/C17.blif
# CUDD Version 3.0.0
**************READING IN NETWORK***************
Number of inputs: 2
**************GENERATING NETWORK BDD***************
Printing the BDD for f: ptr to the nodes, T & E children
: 7 nodes 1 leaves 2.25 minterms
ID = !0xc11d0 index = 1 T = 0xc11ca E = 0xc11cf
ID = 0xc11cf index = 2 T = 0xc11ce E = !0xc11c8
ID = 0xc11c8 index = 4 T = 1 E = !1
ID = 0xc11ce index = 3 T = 1 E = !0xc11c8
ID = 0xc11ca index = 2 T = 0xc11c7 E = !1
ID = 0xc11c7 index = 3 T = 1 E = !1
**************COUNTING BDD NODES***************
Top node: 0x1823A01
Number of nodes: 7
Number of levels: 5
**************DETERMINING BOUNDSET AND FREESET NODES***************
Node: 1823800
Node index: 2147483647
i: 2147483647
Node: 18238E0
Node index: 3
i: 3
Node: 1823940
Node index: 2
i: 2
Node: 1823900
Node index: 4
i: 4
Node: 18239C0
Node index: 3
i: 3
Node: 18239E0
Node index: 2
i: 2
Node: 1823A00
Node index: 1
i: 1
Adding node to our bound set*****************************
boundsetSize increments to: 1
T node value: 1823940
number edges: 0
E node value: 18239E0
number edges: 0
Node: 1823800
Node index: 2147483647
i: 2147483647
Node: 18238E0
Node index: 3
i: 3
Node: 1823940
Node index: 2
i: 2
Adding node to our bound set*****************************
boundsetSize increments to: 1
Node: 1823900
Node index: 4
i: 4
Node: 18239C0
Node index: 3
i: 3
Node: 18239E0
Node index: 2
i: 2
Adding node to our bound set*****************************
boundsetSize increments to: 2
Node: 1823A00
Node index: 1
i: 1
Adding node to our bound set*****************************
boundsetSize increments to: 3
T node value: 18238E0
number edges: 0
E node value: 1823801
number edges: 1
T node value: 18239C0
number edges: 1
E node value: 1823901
number edges: 1
T node value: 1823940
number edges: 1
E node value: 18239E0
number edges: 1
Node: 1823800
Node index: 2147483647
i: 2147483647
Node: 18238E0
Node index: 3
i: 3
Adding node to our bound set*****************************
boundsetSize increments to: 1
Node: 1823940
Node index: 2
i: 2
Adding node to our bound set*****************************
boundsetSize increments to: 2
Node: 1823900
Node index: 4
i: 4
Node: 18239C0
Node index: 3
i: 3
Adding node to our bound set*****************************
boundsetSize increments to: 3
Node: 18239E0
Node index: 2
i: 2
Adding node to our bound set*****************************
boundsetSize increments to: 4
Node: 1823A00
Node index: 1
i: 1
Adding node to our bound set*****************************
boundsetSize increments to: 5
T node value: 1823800
number edges: 0
E node value: 1823801
number edges: 1
T node value: 18238E0
number edges: 1
E node value: 1823801
number edges: 2
T node value: 1823800
number edges: 2
E node value: 1823901
number edges: 2
T node value: 18239C0
number edges: 2
E node value: 1823901
number edges: 2
T node value: 1823940
number edges: 2
E node value: 18239E0
number edges: 2
Cut Level: 4
Number of Sigma Zero Edges = 2
i: 2147483647
i: 3
boundsetSize increments to: 1
i: 2
boundsetSize increments to: 2
i: 4
i: 3
boundsetSize increments to: 3
i: 2
boundsetSize increments to: 4
i: 1
boundsetSize increments to: 5
boundsetSize: 5
n: 2
Bound Set: 18238E0, 1823940, 18239C0, 18239E0, 1823A00,
Free Set: 1823800, 1823900,
**************DETERMINING NUMBER OF SIG ZERO EDGES***************
**************BUILDING DIVISOR BDD***************
Entering for loop. i = 0
Node is in freeset. j = 0
Node was redirected to one node.
Before Reduce Heap
BDD reordering with sifting: from 11 to ... 9 nodes in 0 sec
After Reduce Heap
BDD reordering with sifting: from 9 to ... 7 nodes in 0 sec
Entering for loop. i = 1
Before Reduce Heap
BDD reordering with sifting: from 7 to ... 7 nodes in 0 sec
After Reduce Heap
Node is in freeset else child. j = 0
BDD reordering with sifting: from 7 to ... 7 nodes in 0 sec
Entering for loop. i = 2
Node is in freeset. j = 0
Node was redirected to one node.
Before Reduce Heap
BDD reordering with sifting: from 7 to ... 7 nodes in 0 sec
After Reduce Heap
BDD reordering with sifting: from 7 to ... 7 nodes in 0 sec
Entering for loop. i = 3
Before Reduce Heap
BDD reordering with sifting: from 7 to ... 7 nodes in 0 sec
After Reduce Heap
BDD reordering with sifting: from 7 to ... 7 nodes in 0 sec
Entering for loop. i = 4
Before Reduce Heap
BDD reordering with sifting: from 7 to ... 7 nodes in 0 sec
After Reduce Heap
BDD reordering with sifting: from 7 to ... 7 nodes in 0 sec
Dumping out the divisor
**************BUILDING QUOTIENT BDD***************
Entering for QUOTIENT loop. i = 0
Quotient T child fine.
Quotient E child fine.
Entering for QUOTIENT loop. i = 1
Quotient T child fine.
Quotient E child fine.
Entering for QUOTIENT loop. i = 2
Quotient T child fine.
Quotient E child fine.
Entering for QUOTIENT loop. i = 3
Quotient T child fine.
Quotient E child fine.
Entering for QUOTIENT loop. i = 4
Quotient T child fine.
Quotient E child fine.
Printing Quotient BLIF
Printing Quotient DOT
End of Bi-Decomposition Method.
Starting Functional Decomposition Method
Node: 183AD80
Node index: 2147483647
i: 2147483647
Node: 183AE60
Node index: 3
i: 3
Node: 183AEC0
Node index: 2
i: 2
Node: 183AE80
Node index: 4
i: 4
Node: 183AF40
Node index: 3
i: 3
Node: 183AF60
Node index: 2
i: 2
Node: 183AF80
Node index: 1
i: 1
Node: 1843FE0
Node index: 2147483647
i: 2147483647
Node: 18440C0
Node index: 3
i: 3
Node: 1844120
Node index: 2
i: 2
Node: 18440E0
Node index: 4
i: 4
Node: 18441A0
Node index: 3
i: 3
Node: 18441C0
Node index: 2
i: 2
Node: 18441E0
Node index: 1
i: 1
boundsetSize = 5
Freeset Size = 2
One node is: 183AD80
Freeset[0] is: 1823800
Freeset[1] is: 1823900
Entering for boundset loop. i = 0, node = 1843FE0
Entering next loop. j = 0, node = 1843FE0
Node is in freeset. j = 0, node = 1843FE0
Node was added to bset_cutset.
Node was added to cutset.
Already in boundset loop. i = 0, node = 1843FE1
Entering for boundset loop. i = 1, node = 18440C0
Entering next loop. j = 0, node = 18440C0
Entering next loop. j = 1, node = 18440C0
Already in boundset loop. i = 1, node = 1843FE1
Entering for boundset loop. i = 2, node = 1843FE0
Entering next loop. j = 0, node = 1843FE0
Node is in freeset. j = 0, node = 1843FE0
Node was added to bset_cutset.
Already in boundset loop. i = 2, node = 18440E1
Entering for boundset loop. i = 3, node = 18441A0
Entering next loop. j = 0, node = 18441A0
Entering next loop. j = 1, node = 18441A0
Already in boundset loop. i = 3, node = 18440E1
Entering for boundset loop. i = 4, node = 1844120
Entering next loop. j = 0, node = 1844120
Entering next loop. j = 1, node = 1844120
Already in boundset loop. i = 4, node = 18441C0
cvar = 1
Cutset node[0] = 1843FE0
temp_cvar = 1
i = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
temp_cvar = 0
number of bits = 2
Our boundset nodes: 18440C0 18441A0
Our cutset nodes: 1843FE0
Added 18440C0 to our mapping, then child: 1843FE0, else child: 1843FE1
Added 1843FE0's encoding 2
Added 1843FE1's encoding 1
Added 18441A0 to our mapping, then child: 1843FE0, else child: 18440E1
Added 1843FE0's encoding 2
One Node = 1843FE0, Zero Node = 1843FE1
*********Mapping**********
Mapping node = 18440C0, Mapping E_Enc = 1, Mapping T_Enc = 2
Mapping node = 18441A0, Mapping E_Enc = 0, Mapping T_Enc = 2
*********End of Mapping**********
Printing the BDD for f BEFORE: ptr to the nodes, T & E children
: 7 nodes 1 leaves 2.25 minterms
ID = !0xc220f index = 1 T = 0xc2209 E = 0xc220e
ID = 0xc220e index = 2 T = 0xc220d E = !0xc2207
ID = 0xc2207 index = 4 T = 1 E = !1
ID = 0xc220d index = 3 T = 1 E = !0xc2207
ID = 0xc2209 index = 2 T = 0xc2206 E = !1
ID = 0xc2206 index = 3 T = 1 E = !1
Freeset node to be removed = 1843FE0
Freeset node to be removed = 18440E0
Removing freeset
BDD reordering with sifting: from 11 to ... 11 nodes in 0 sec
Printing the BDD for f AFTER: ptr to the nodes, T & E children
: 7 nodes 1 leaves 2.25 minterms
ID = !0xc220f index = 1 T = 0xc2209 E = 0xc220e
ID = 0xc220e index = 2 T = 0xc220d E = !0xc2207
ID = 0xc2207 index = 4 T = 1 E = !1
ID = 0xc220d index = 3 T = 1 E = !0xc2207
ID = 0xc2209 index = 2 T = 0xc2206 E = !1
ID = 0xc2206 index = 3 T = 1 E = !1
Map_Node = 18440C0, Encoding = 2, Shifted Encoding = 2
Map node then child before assignment is: 1843FE0
Map node then child after assignment is: 1843FE1
BDD reordering with sifting: from 11 to ... 11 nodes in 0 sec
Printing the BDD for f: ptr to the nodes, T & E children
Map_Node = 18440C0, Encoding = 1, Shifted Encoding = 1
Map node else child before assignment is: 1843FE1
Map node else child after assignment is: 1843FE0
BDD reordering with sifting: from 11 to ... 11 nodes in 0 sec
Printing the BDD for f: ptr to the nodes, T & E children
: 7 nodes 1 leaves 1.75 minterms
ID = !0xc220f index = 1 T = 0xc2209 E = 0xc220e
ID = 0xc220e index = 2 T = 0xc220d E = !0xc2207
ID = 0xc2207 index = 4 T = 1 E = !1
ID = 0xc220d index = 3 T = 1 E = !0xc2207
ID = 0xc2209 index = 2 T = 0xc2206 E = !1
ID = 0xc2206 index = 3 T = 1 E = 1
Map_Node = 18441A0, Encoding = 2, Shifted Encoding = 2
Map node then child before assignment is: 1843FE0
Map node then child after assignment is: 1843FE1
BDD reordering with sifting: from 11 to ... 11 nodes in 0 sec
Printing the BDD for f: ptr to the nodes, T & E children
Map_Node = 18441A0, Encoding = 0, Shifted Encoding = 0
Map node else child before assignment is: 18440E1
Map node else child after assignment is: 1843FE1
BDD reordering with sifting: from 11 to ... 11 nodes in 0 sec
Printing the BDD for f: ptr to the nodes, T & E children
: 7 nodes 1 leaves 2 minterms
ID = !0xc220f index = 1 T = 0xc2209 E = 0xc220e
ID = 0xc220e index = 2 T = 0xc220d E = !0xc2207
ID = 0xc2207 index = 4 T = 1 E = !1
ID = 0xc220d index = 3 T = 1 E = !1
ID = 0xc2209 index = 2 T = 0xc2206 E = !1
ID = 0xc2206 index = 3 T = 1 E = 1
Root node: 18441E1
filename: ash_curt_files/hw5_0.blif
Creating blif...
Optimizing variable ordering...
Estimated delay: 0.5us...
Map_Node = 18440C0, Encoding = 2, Shifted Encoding = 1
BDD reordering with sifting: from 11 to ... 11 nodes in 0 sec
Printing the BDD for f: ptr to the nodes, T & E children
Map_Node = 18440C0, Encoding = 1, Shifted Encoding = 0
Map node else child before assignment is: 1843FE0
Map node else child after assignment is: 1843FE1
BDD reordering with sifting: from 11 to ... 11 nodes in 0 sec
Printing the BDD for f: ptr to the nodes, T & E children
: 7 nodes 1 leaves 2.5 minterms
ID = !0xc220f index = 1 T = 0xc2209 E = 0xc220e
ID = 0xc220e index = 2 T = 0xc220d E = !0xc2207
ID = 0xc2207 index = 4 T = 1 E = !1
ID = 0xc220d index = 3 T = 1 E = !1
ID = 0xc2209 index = 2 T = 0xc2206 E = !1
ID = 0xc2206 index = 3 T = 1 E = !1
Map_Node = 18441A0, Encoding = 2, Shifted Encoding = 1
BDD reordering with sifting: from 11 to ... 11 nodes in 0 sec
Printing the BDD for f: ptr to the nodes, T & E children
Map_Node = 18441A0, Encoding = 0, Shifted Encoding = 0
Map node else child before assignment is: 1843FE1
Map node else child after assignment is: 1843FE1
BDD reordering with sifting: from 11 to ... 11 nodes in 0 sec
Printing the BDD for f: ptr to the nodes, T & E children
: 7 nodes 1 leaves 2.5 minterms
ID = !0xc220f index = 1 T = 0xc2209 E = 0xc220e
ID = 0xc220e index = 2 T = 0xc220d E = !0xc2207
ID = 0xc2207 index = 4 T = 1 E = !1
ID = 0xc220d index = 3 T = 1 E = !1
ID = 0xc2209 index = 2 T = 0xc2206 E = !1
ID = 0xc2206 index = 3 T = 1 E = !1
Root node: 18441E1
filename: ash_curt_files/hw5_1.blif
Creating blif...
Optimizing variable ordering...
Estimated delay: 0.5us...
Net name: C17.iscas
End of main
|
64524ae8f8ad3f429a9e638fe66dc849819630d9 | a5de878687ee2e72db865481785dafbeda373e2a | /trunck/OpenPR-0.0.2/sci_gateway/svm/builder_gateway_svm.sce | f9ad9a7c2dfd412419763432ec05ba3bd43e5ad6 | [
"BSD-3-Clause"
] | permissive | Augertron/OpenPR | 8f43102fd5811d26301ef75e0a1f2b6ba9cbdb73 | e2b1ce89f020c1b25df8ac5d93f6a0014ed4f714 | refs/heads/master | 2020-05-15T09:31:08.385577 | 2011-03-21T02:51:40 | 2011-03-21T02:51:40 | 182,178,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 967 | sce | builder_gateway_svm.sce | gateway_path = get_absolute_file_path('builder_gateway_svm.sce');
cur_path = pwd();
chdir(gateway_path);
lib_name = 'openpr_svm';
table = ['readsparse', 'read_sparse', 'cmex';
'svmtrain', 'svmtrain', 'cmex';
'svmpredict', 'svmpredict', 'cmex'];
files = ['svm.cpp', 'svm_model_scilab.c', 'svmtrain.c', 'svmpredict.c', 'read_sparse.c'];
libs = [];
if ~MSDOS then
files = ['svm.h', 'svm_model_scilab.h', files];
if part(getenv('OSTYPE','no'),1:6)=='darwin' then
cflags = "-D__SCILAB__"
fflags = "";
ldflags= "";
cc = "g++";
else
ldflags = "";
cflags = "-lstdc++ -D__SCILAB__";
fflags = "";
cc = "";
end
else
ldflags = "";
cflags = "-D__SCILAB__";
fflags = "";
cc = "";
end
ilib_mex_build(lib_name, table, files, libs, '', ldflags, cflags, fflags, cc);
chdir(cur_path);
clear gateway_path lib_name table files libs ldflags cflags fflags cc ilib_mex_build cur_path;
|
3597ca93c262222796a41312a9938b786078fbb4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH8/EX8.6/Example8_6.sce | 692d69a3b40535d165dc59f183371894df9100d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,786 | sce | Example8_6.sce | clear ;
clc;
// Example 8.6
printf('Example 8.6\n\n');
// Page no. 209
// Solution
// Composition of initial solution at 30 degree C
s_30 = 38.8 ;// solublity of Na2CO3 at 30 degree C, by using the table for solublity of Na2CO3-[g Na2CO3/100 g H2O]
If_Na2CO3 = s_30/(s_30+100) ;// Initial mass fraction of Na2CO3
If_H2O = 1-If_Na2CO3 ;// Initial mass fraction of H2O
// Composition of crystals
// Basis : 1g mol Na2CO3.10H2O
n_mol_Na2CO3 = 1 ;// Number of moles of Na2CO3
n_mol_H2O = 10 ;// Number of moles of H2O
mwt_Na2CO3 = 106 ;// mol. wt of Na2CO3
mwt_H2O = 18 ;// mol. wt of H2O
m_Na2CO3 = mwt_Na2CO3*n_mol_Na2CO3 ;// Mass of Na2CO3
m_H2O = mwt_H2O*n_mol_H2O ;// Mass of H2O
Cf_Na2CO3 = m_Na2CO3/(m_Na2CO3+m_H2O) ;// mass fraction of Na2CO3
Cf_H2O = 1-Cf_Na2CO3 ;// mass fraction of H2O
n_un = 9 ;// Number of unknowns in the given problem
n_ie = 9 ;// Number of independent equations
d_o_f = n_un-n_ie ;// Number of degree of freedom
printf('Number of degree of freedom for the given system is %i .\n',d_o_f);
// Final composition of tank
//Basis :I = 10000 kg
// Material balance reduces to Accumulation = final -initial = in-out(but in = 0)
I = 10000 ;//initial amount of saturated solution-[kg]
amt_C = 3000 ;// Amount of crystals formed-[kg]
Fm_Na2CO3 = I*If_Na2CO3-amt_C*Cf_Na2CO3 ;// Mass balance of Na2CO3
Fm_H2O = I*If_H2O-amt_C*Cf_H2O ;// Mass balance of H2O
//To find temperature,T
s_T = (Fm_Na2CO3/Fm_H2O)*100 ;// Solublity of Na2CO3 at temperature T
s_20 = 21.5 ;//Solublity of Na2CO3 at temperature 20 degree C ,from given table-[g Na2CO3/100 g H2O]
// Find T by interpolation
T = 30-((s_30-s_T)/(s_30-s_20))*(30-20) ;// Temperature -[degree C]
printf(' Temperature to which solution has to be cooled to get 3000 kg crystals is %.0f degree C .\n',T); |
db166c6273ad0bf72e8c357dc6ca803c1b1ea8bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH2/EX2.17/17.sce | 1f75b7d029658cc2697a405bcf34a5eabd664df1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 539 | sce | 17.sce | clc
rho_water=1000;//Kg/m^3
g=9.81;//m/s^2
h=5;//m (depth of water)
//for elevator not accelerated
p_gauge=(rho_water)*g*h/1000;//KPa
disp("THe gauge pressure is")
disp(p_gauge)
disp("KPa")
//for elevator accelerated at 5m/s^2 in upward direction
a=5;//m/s^2
p_gauge=(rho_water)*(g+a)*h/1000;//KPa
disp("THe gauge pressure is")
disp(p_gauge)
disp("KPa")
//for elevator accelerated at 5m/s^2 in downward direction
a=5;//m/s^2
p_gauge=(rho_water)*(g-a)*h/1000;//KPa
disp("THe gauge pressure is")
disp(p_gauge)
disp("KPa") |
b38309be0fb8c243bb54cff0fd11cf12522c648e | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH12/EX12.6/c12_6.sce | 675a8e27dca1ff71852a7e6ef6acff6b9ae6a343 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,820 | sce | c12_6.sce | //(12.6) At steady state, 100 m3/min of dry air at 32C and 1 bar is mixed adiabatically with a stream of oxygen (O2) at 127C and 1 bar to form a mixed stream at 47C and 1 bar. Kinetic and potential energy effects can be ignored. Determine (a) the mass flow rates of the dry air and oxygen, in kg/min, (b) the mole fractions of the dry air and oxygen in the exiting mixture, and (c) the time rate of entropy production, in kJ/K . min
//solution
//variable initialization
T1 = 32 //temperature of dry air in degree celcius
p1 = 1 //pressure of dry air in bar
AV1 = 100 //volume rate of dry air in m^3/min
T2 = 127 //temperature of oxygen stream in degree celcius
p2 = 1 //pressure of oxygen stream in bar
T3 = 47 //temperature of mixed stream in degree celcius
p3 = 1 //pressure of mixed stream in bar
//part(a)
Rbar = 8314 //universal gas constant
Ma = 28.97 //molar mass of air
Mo = 32 //molar mass of oxygen
va1 = (Rbar/Ma)*(T1+273)/(p1*10^5) //specific volume of air in m^3/kg
ma1dot = AV1/va1 //mass flow rate of dry air in kg/min
//from table A-22 and A-23
haT3 = 320.29 //in kj/kg
haT1 = 305.22 //in kj/kg
hnotT2 = 11711 //in kj/kmol
hnotT1 = 9325 //in kj/kmol
modot = ma1dot*(haT3-haT1)/[(1/Mo)*(hnotT2-hnotT1)] //in kg/min
printf('the mass flow rate of dry air in kg/min is: %f',ma1dot)
printf('\nthe mass flow rate of oxygen in kg/min is: %f',modot)
//part(b)
nadot = ma1dot/Ma //molar flow rate of air in kmol/min
nodot = modot/Mo //molar flow rate of oxygen in kmol/min
ya = nadot/(nadot+nodot) //mole fraction of air
yo = nodot/(nadot+nodot) //mole fraction of oxygen
printf('\n\nthe mole fraction of dry air in the exiting mixture is: %f',ya)
printf('\nthe mole fraction of dry oxygen in the exiting mixture is: %f',yo)
//part(c)
//with the help of tables A-22 and A-23
sanotT3 = 1.7669 //in kj/kg.K
sanotT1 = 1.71865 //in kj/kg.K
sbarT3 = 207.112 //in kj/kmol.K
sbarT2 = 213.765 //in kj/kmol.K
sigmadot = ma1dot*[sanotT3-sanotT1-(8.314/Ma)*log(ya)] + (modot/Mo)*[sbarT3-sbarT2-8.314*log(yo)]
printf('\n\nthe time rate of entropy production, in kJ/K . min is: %f',sigmadot)
|
b3b3c30e7614e01a2473ea85b577251a43c38a5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1364/CH5/EX5.6.2/5_6_2.sce | de25bcdf83c843d57034dc187536410e918eee58 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 246 | sce | 5_6_2.sce | clc
//initialisation of variables
A= 9 //ft^2
A1= 50000 //yd^2
l= 12 //ft
H1= 2 //ft
H2= 3 //in
g= 32.2 //ft^2/sec
//CALCULATIONS
t= (A*A1*2/(0.4*sqrt(2*g)*l))*((H2/12)^-0.5-(H1)^-0.5)
//RESULTS
printf (' time required = %.f sec ',t)
|
82d778ee42f5604c58bbade764ab21680798d020 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3041/CH7/EX7.3/Ex7_3.sce | ec6ebf00aacf02f8b3becae8ceb417f7b01550ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | Ex7_3.sce |
//Variable declaration
f=50*10**3. //OPAMP freequency(Hz)
Vm=0.02 //maximum value of signal voltage(V)
S=.5*10**6 //slew rate(V/s)
//Calculations
Kvf=S/(2*(%pi)*f*Vm) //closed loop gain of amplifier
//Results
printf ("closed loop gain of amplifier is %.f",Kvf)
|
abb45c09302b8e3410e4b1eb845feaf1bad67dac | 449d555969bfd7befe906877abab098c6e63a0e8 | /2204/CH6/EX6.4/ex6_4.sce | d09875aee0a6de988019dea99a4c9103fb5921ea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | ex6_4.sce | // Exa 6.4
clc;
clear;
close;
// Given data
C = 0.05;// in µF
C = C * 10^-6;// in F
f = 1;// in kHz
f = f * 10^3;// in Hz
R = 1/(2*%pi*f*C);// in ohm
R = R * 10^-3;// in k ohm
disp(R,"The value of R1 and R2 in kΩ is");
R4 = 10;// in k ohm
disp(R4,"The value of R3 in kΩ is");
R3 = 2*R4;// in k ohm
disp(R3,"The value of R4 in kΩ is");
|
a688245a8fd8e4758ebca06e1d10663659be30ad | 449d555969bfd7befe906877abab098c6e63a0e8 | /215/CH17/EX17.7/ex17_7.sce | 91e9fad7d2fbdb591ff1b7ef251321c958e2d16a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 601 | sce | ex17_7.sce | clc
//Example 17.7
//From figure 17.16
disp('Given a linear model of a transistor we need not explicitly find the aadmittance parameters ')
disp('-y12 corresponds to admittance of 2k ohm resistor')
disp('y11+y12 corresponds to admittance of 500 ohm resistor')
disp('y21-y12 correponds to gain of dependent voltage source')
disp('y22+y12 corresponds to admittance of 10k ohm resistor')
//Writing down in equation form
y12=-1/2000
y11=1/500-y12
y21=0.0395+y12
y22=1/10000-y12
printf("\n y11= %3.2f mS \n y12= %3.2f mS \n y21= %3.2f mS \n y22= %3.2f mS",y11*10^3,y12*10^3,y21*10^3,y22*10^3); |
d9acddefe0bc8cf873288b37ad4a7a34b92f6c46 | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /system/kiks_reginfo.sci | 2656bd821fd86aa6438180bd15d3666d927e8559 | [] | 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 | 7,140 | sci | kiks_reginfo.sci | function [] = kiks_reginfo(edit)
// Number of arguments in function call
[%nargout,%nargin] = argn(0)
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
global("KIKS_REGINFO_GUI");
reginfo = "";
cde = "";
lic = "";
vfk = "";
org = "";
name = "";
email = "";
licno = "1";
lictype = 1;
enabled = "on";
title = "Enter KiKS license data";
licno = 1;
// !! L.17: Matlab function which not yet converted, original calling sequence used
datapath = which("kiks_reginfo.mat");
if ~isempty(datapath) then
if %nargin<1 then
title = "KiKS license data";
enabled = "off";
end;
loadmatfile(datapath);
// ! L.24: At lest one operand is an empty matrix for operator: asciimat(lic)<0, result set to []
if [] then
lictype = 2;
// !! L.26: Matlab function sprintf not yet converted, original calling sequence used
licno = sprintf("%d",abs(asciimat(lic)));
end;
// ! L.28: At lest one operand is an empty matrix for operator: asciimat(lic)==0, result set to []
if [] then
lictype = 1;
licno = "1";
end;
// ! L.32: At lest one operand is an empty matrix for operator: asciimat(lic)==%inf, result set to []
if [] then
lictype = 3;
licno = "1";
end;
end;
// !! L.38: Matlab function dialog not yet converted, original calling sequence used
h = dialog("Visible","off","PaperUnits","points");
// !! L.39: Matlab function set not yet converted, original calling sequence used
// L.39: Name conflict: function name changed from set to %set
%set(h,"Name",title);
// !! L.40: Matlab function get not yet converted, original calling sequence used
// L.40: Name conflict: function name changed from get to %get
p = %get(h,"Position");
xs = 360;
ys = 200;
p = mtlb_i(p,1,mtlb_a(mtlb_double(mtlb_e(p,1)),mtlb_s(mtlb_double(mtlb_e(p,3)),xs)/2));
p = mtlb_i(p,2,mtlb_a(mtlb_double(mtlb_e(p,2)),mtlb_s(mtlb_double(mtlb_e(p,4)),ys)/2));
p = mtlb_i(p,3,xs);
p = mtlb_i(p,4,ys);
// !! L.47: Matlab function set not yet converted, original calling sequence used
// L.47: Name conflict: function name changed from set to %set
%set(h,"Position",p);
// !! L.57: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"FontName","verdana","FontWeight","normal","ListboxTop",0,"Position",[1,170,160,16],"HorizontalAlignment","right","String","License type","Style","text","Tag","lictype_txt");
// !! L.67: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"Enable",enabled,"BackgroundColor",[1,1,1],"Callback","kiks_reginfo_lictypecallback;","ListboxTop",0,"Position",[164,172,150,18],"String",makecell([1,3],"Single user license","Multi-user license","Site license"),"Style","popupmenu","Tag","lictype","Value",lictype);
// !! L.79: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"FontName","verdana","FontWeight","normal","ListboxTop",0,"Position",[1,150,160,16],"HorizontalAlignment","right","String","Number of installations","Style","text","Enable",enabled,"Visible","off","Tag","licno_txt");
if lictype==2 then
// !! L.81: Matlab function set not yet converted, original calling sequence used
// L.81: Name conflict: function name changed from set to %set
%set(h1,"Enable",enabled);
// !! L.82: Matlab function set not yet converted, original calling sequence used
// L.82: Name conflict: function name changed from set to %set
%set(h1,"Visible","on");
end;
// !! L.95: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"FontName","verdana","BackgroundColor",[1,1,1],"HorizontalAlignment","left","ListboxTop",0,"Position",[164,150,150,18],"String",licno,"Style","edit","Tag","licno","Enable",enabled,"Visible","off","TooltipString","Number of licenses");
if lictype==2 then
// !! L.97: Matlab function set not yet converted, original calling sequence used
// L.97: Name conflict: function name changed from set to %set
%set(h1,"Enable",enabled);
// !! L.98: Matlab function set not yet converted, original calling sequence used
// L.98: Name conflict: function name changed from set to %set
%set(h1,"Visible","on");
end;
// !! L.109: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"FontName","verdana","FontWeight","normal","ListboxTop",0,"Position",[1,130,160,16],"HorizontalAlignment","right","String","License number","Style","text","Tag","cde_txt");
// !! L.120: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"Enable",enabled,"FontName","verdana","BackgroundColor",[1,1,1],"HorizontalAlignment","left","ListboxTop",0,"Position",[164,130,150,18],"String",cde,"Style","edit","Tag","cde","TooltipString","License number");
// !! L.130: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"FontName","verdana","FontWeight","normal","ListboxTop",0,"Position",[1,110,160,16],"HorizontalAlignment","right","String","Verification key","Style","text","Tag","vfk_txt");
// !! L.141: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"Enable",enabled,"FontName","verdana","BackgroundColor",[1,1,1],"HorizontalAlignment","left","ListboxTop",0,"Position",[164,110,150,18],"String",vfk,"Style","edit","Tag","vfk","TooltipString","Verification key");
if enabled=="on" then
// !! L.152: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"FontName","verdana","FontWeight","normal","ListboxTop",0,"Position",[10,30,340,60],"HorizontalAlignment","left","String","Make sure you have entered all information correctly before saving. Your license will be verified when you connect to a KiKSnet server.","Style","text","Tag","info_txt");
// !! L.158: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"Callback","kiks_reginfo_write;","ListboxTop",0,"Position",[10,10,100,20],"String","save license data","Tag","save license data");
// !! L.164: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"Callback","close;","ListboxTop",0,"Position",[250,10,100,20],"String","close window","Tag","close window");
else
// !! L.171: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"Callback","close;kiks_reginfo(1);","ListboxTop",0,"Position",[10,10,100,20],"String","edit license data","Tag","edit license data");
// !! L.177: Matlab function uicontrol not yet converted, original calling sequence used
h1 = uicontrol("Parent",h,"Callback","close;","ListboxTop",0,"Position",[250,10,100,20],"String","close window","Tag","close window");
end;
// !! L.180: Matlab function set not yet converted, original calling sequence used
// L.180: Name conflict: function name changed from set to %set
%set(h,"Visible","on");
endfunction
|
98b523c3c6ff5bf93590235c8aff294be2e4b9b9 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/buttap.sci | 8598b45969b4869dcb4006f9484e66516145424d | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,232 | sci | buttap.sci | <<<<<<< HEAD
// Copyright (C) 2018 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author:Sonu Sharma, RGIT Mumbai
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [z, p, g] = buttap (n)
//Produces analog prototype Butterworth filter
//Calling Sequence
//[z, p, g] = buttap (n)
//Parameters
//n: Filter Order
//z: Zeros
//p: Poles
//g: Gain
//Description
//It gives a lowpass analog prototype Butterworth filter of nth order.
//Examples
//[z, p, g] = buttap(5)
//Output :
// g =
//
// 1.
// p =
//
// - 0.3090170 - 0.9510565i
// - 0.8090170 - 0.5877853i
// - 1. - 1.225D-16i
// - 0.8090170 + 0.5877853i
// - 0.3090170 + 0.9510565i
// z =
//
// []
funcprot(0);
lhs = argn(1)
rhs = argn(2)
if (rhs < 1 | rhs > 1)
error("buttap: Wrong number of input arguments.")
end
[Hs, p, z, g] = analpf(n, "butt", [],1 );
p = p' ;
z = z' ;
=======
function [z, p, g] = buttap (n)
//Design a lowpass analog Butterworth filter.
//Calling Sequence
//z = buttap (n)
//[z, p] = buttap (n)
//[z, p, g] = buttap (n)
//Parameters
//n: Filter Order
//z: Zeros
//p: Poles
//g: Gain
//Description
//This is an Octave function.
//It designs a lowpass analog Butterworth filter of nth order.
//Examples
//[z, p, g] = buttap (5)
//z = [](0x0)
//p =
//
// -0.30902 + 0.95106i -0.80902 + 0.58779i -1.00000 + 0.00000i -0.80902 - 0.58779i -0.30902 - 0.95106i
//
//g = 1
funcprot(0);
lhs = argn(1)
rhs = argn(2)
if (rhs < 1 | rhs > 1)
error("Wrong number of input arguments.")
end
select(rhs)
case 1 then
if(lhs==1)
z = callOctave("buttap",n)
elseif(lhs==2)
[z, p] = callOctave("buttap",n)
elseif(lhs==3)
[z, p, g] = callOctave("buttap",n)
else
error("Wrong number of output argments.")
end
end
>>>>>>> 6bbb00d0f0128381ee95194cf7d008fb6504de7d
endfunction
|
096c6941e04f43bdd09b24cd50b7608871a2ecd8 | a5f0fbcba032f945a9ee629716f6487647cafd5f | /Dump/Development backup/Development/Algorithms/Ensemble/Emsemble.sci | ec1162f4488896de754930c3935e16dac3ae8f60 | [] | no_license | SoumitraAgarwal/Scilab-gsoc | 692c00e3fb7a5faf65082e6c23765620f4ecdf35 | 678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f | refs/heads/master | 2021-04-15T17:55:48.334164 | 2018-08-07T13:43:26 | 2018-08-07T13:43:26 | 126,500,126 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | sci | Emsemble.sci | // Macro for ensemble of predictors -- Scilab
// Function takes 2 predictions, target vector
// and learning rate as input and creates an
// output for an ensemble
function pred = ensemble(pred1, pred2, y, increment)
bestweight = 0;
besterror = 0.5*sqrt(norm(pred2 - y));
for weight = 0:increment:1
thiserror = 0.5*sqrt(norm(weight*pred1 + (1 - weight)*pred2 - y))
if(besterror > thiserror)
besterror = thiserror;
bestweight = weight;
end
end
pred = bestweight*pred1 + (1 - bestweight)*pred2
endfunction |
4bc06f99fb424d500013426517c88a37a7258008 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH2/EX2.28/28.sce | 9e0bc2c9a28cae2a0e5d1ef231c958fd2b6d21ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 472 | sce | 28.sce | clc
// Given that
lambda = 6000 // Wavelength of light in angstrom
n = 6 // Order of ring
D_n = 3.1 // Diameter of 6th fringe in mm
r = 1 // Radius of curvature of curved surface
// Sample Problem 28 on page no. 100
printf("\n # PROBLEM 28 # \n")
printf("\n Standard formula used \n Beta = lambda/(2*mu*theta)\n")
mu = 2*(2*n-1)*lambda*1e-10*r/(D_n*1e-3)^2 // Calculation of refractive index of material
printf("\n Refractive index of material is %f.",mu)
|
921fd7f3ba868352df9ef928d25139b75e560d00 | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /environments/laas-grande-salle/SCENARIO/gsroadtest.sce | 8bffbe2dca698f8705466ea60f25ca77f619afb9 | [] | no_license | jmainpri/move3d-assets | a5b621daaedaaf8784fed0da1e80d029c83f3983 | 939db49d17a14e052bb58324b70e6112803d3105 | refs/heads/master | 2021-01-16T17:48:56.669119 | 2016-02-16T14:04:09 | 2016-02-16T14:04:09 | 20,237,987 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,026 | sce | gsroadtest.sce | #************************************************************
# Scenario of grande_salle
#
# date : Tue Aug 10 00:51:29 2010
#************************************************************
p3d_sel_desc_name P3D_ENV grande_salle
p3d_sel_desc_name P3D_ROBOT BLUE_TRASHBIN
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.237463 -3.532448 0.773845 0.000000 0.000000 -90.265488
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PINK_TRASHBIN
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.237463 -2.465585 0.754179 0.000000 0.000000 -90.265488
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT BLACK_TAPE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.237463 -2.809734 0.862340 -90.265488 26.548676 1.769915
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT GREY_TAPE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.163717 -3.050639 0.882006 -88.495567 0.000000 -90.265488
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT ACHILE_HUMAN1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.801377 -2.949852 0.614552 0.000000 0.000000 -173.451324 0.000000 0.000000 0.000000 -3.982300 -21.283186 11.061945 64.124878 30.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -67.861359 30.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -90.000000 0.000000 90.648972 0.000000 0.000000 0.000000 0.000000 -90.000000 0.000000 90.648972 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT LOWTABLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.893806 -0.856195 0.000000 0.000000 0.000000 -90.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT CHAIR1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.674533 -0.657080 0.000000 0.000000 0.000000 -40.707962
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT CHAIR2
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.000000 0.000000 0.000000 0.000000 0.000000 -88.495567
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT TRASHBIN
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.564897 -3.773353 0.000000 0.000000 0.000000 161.061951
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SHELF
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.181416 -1.157817 1.275320 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT HRP2TABLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.250000 -3.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SIMPLECHAIR
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.827433 -2.912979 -0.060472 0.000000 0.000000 -180.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT ACCESSKIT
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.868731 -0.710423 0.449361 0.000000 0.000000 -150.442474
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT SPACENAVBOX
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.237463 -0.779253 0.469027 0.000000 0.000000 -15.929199
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT VISBALL_INTERNAL
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.370207 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT JIDO_GRIPPER
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_constraint p3d_lin_rel_dofs 1 3 1 2 2 1.000000 0.000000 0
p3d_constraint p3d_lin_rel_dofs 1 3 1 2 2 1.000000 0.000000 0
p3d_sel_desc_name P3D_ROBOT JIDOKUKA_ROBOT
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.228122 -3.082596 0.000000 0.000000 0.000000 0.000000 0.000000 -30.000000 -103.638145 70.796455 6.686324 -120.000000 -6.686334 -99.115044 -75.221230 0.014652 0.014652 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.736480 -1.868240 0.000000 0.000000 0.000000 0.000000 0.000000 25.199116 -95.722710 39.242878 144.059494 -5.014743 -92.477875 -82.454765 0.017049 0.017049 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_config config_1 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.228122 -3.082596 0.000000 0.000000 0.000000 0.000000 0.000000 25.199116 -95.722710 39.242878 144.059494 -5.014743 -92.477875 -82.454765 0.017049 0.017049 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_constraint p3d_lin_rel_dofs 1 14 1 13 2 1.000000 0.000000 0
p3d_constraint p3d_lin_rel_dofs 1 14 1 13 2 1.000000 0.000000 0
p3d_set_camera_pos 4.921430 -2.486240 1.500000 3.356894 0.300000 0.500000 0.000000 0.000000 1.000000 0.000000
|
d1e7133993a198f7de49fc82ca9344cb33664bad | a29c13fa4c58d566270fb640a4d1f184f92c1223 | /02_Software/02_Control_Design/03_Start-Up_Process/Start Up_Torque.sce | 1439e09dad26b85d9fb306479096ecde3d5e88c7 | [] | no_license | li-bre/li-bre-wind | e15bc80f955d02731fe6e7eb255f24478a2395ae | d65584798c48461484e3a3531797612e3ba18c32 | refs/heads/master | 2022-02-28T15:32:22.893410 | 2022-02-08T15:54:47 | 2022-02-08T15:54:47 | 232,623,593 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,645 | sce | Start Up_Torque.sce | //Simulation des Hochlaufens mit Freilauf
close
clear
scf(0); clf();
R=0.75;
H=1.2;
A=2*R*H;
rho=1.22;
v1_3_5=3.5;
v1_4=4;
v1_5=5;
omega_3_5=[0.467 0.933 1.400 1.867 2.333 2.800 3.267 3.733 4.200 4.667 5.133 5.600 6.067 6.533 7.000 7.467 7.933 8.400 8.867 9.333 9.800 10.267 10.733 11.200 11.667 12.133 12.600];
n_3_5=omega_3_5*60/(2*%pi);
omega_4=[0.533 1.067 1.600 2.133 2.667 3.200 3.733 4.267 4.800 5.333 5.867 6.400 6.933 7.467 8.000 8.533 9.067 9.600 10.133 10.667 11.200 11.733 12.267 12.800 13.333 13.867 14.400];
n_4=omega_4*60/(2*%pi);
omega_5=[0.667 1.333 2.000 2.667 3.333 4.000 4.667 5.333 6.000 6.667 7.333 8.000 8.667 9.333 10.000 10.667 11.333 12.000 12.667 13.333 14.000 14.667 15.333 16.000 16.667 17.333 18.000];
n_5=omega_5*60/(2*%pi);
CM_3_5=[0.0265 0.0265 0.027 0.0275 0.0285 0.0295 0.03 0.03 0.031 0.032 0.034 0.0385 0.044 0.05 0.0575 0.0665 0.0775 0.0895 0.1035 0.1145 0.12 0.131 0.1495 0.1455 0.132 0.1185 0.104];
CM_4=[0.021 0.02 0.021 0.022 0.024 0.026 0.028 0.029 0.031 0.032 0.035 0.041 0.047 0.054 0.062 0.072 0.085 0.098 0.114 0.124 0.128 0.142 0.158 0.147 0.133 0.119 0.103];
T_4=[0.272 0.267 0.279 0.296 0.32 0.347 0.366 0.383 0.404 0.428 0.469 0.537 0.619 0.712 0.821 0.958 1.119 1.302 1.505 1.638 1.695 1.881 2.092 1.945 1.76 1.575 1.364];
T_5=[0.363 0.383 0.41 0.443 0.498 0.555 0.599 0.63 0.651 0.674 0.743 0.86 0.978 1.136 1.304 1.557 1.873 2.189 2.458 2.69 2.886 3.307 3.328 3.002 2.673 2.336 2.089];
M_3_5=0.5*rho*A*R*v1_3_5.^2*CM_3_5;
M_4=0.5*rho*A*R*v1_4.^2*CM_4;
n_Gen_LL=[0 88.9 124.3 244.2 372.4 483.7 580.1];
T_Gen_LL=[0.87 1.02 1.17 1.46 1.70 1.80 1.71];
plot(n_Gen_LL,T_Gen_LL,'color',[0.75 0 0.75],'linest','-','marker','+',"thickness",2,'markersize',8)
plot(n_3_5,M_3_5,'color',[0 0 1],'linest','-','marker','+',"thickness",2,'markersize',8)
plot(n_4,T_4,'color',[1 0 0],'linest','-','marker','+',"thickness",2,'markersize',8)
plot(n_5,T_5,'color',[0 0 0],'linest','-','marker','+',"thickness",2,'markersize',8)
xtitle("$ $", "$Rotational\ speed\ [rpm]$","$Torque\ [Nm]$");
l=legend(['$T_{gen}\ open\ circuit$', '$T_{turb}, v_1=3.5 \frac{m}{s}$', '$T_{turb}, v_1=4 \frac{m}{s}$', '$T_{turb}, v_1=5 \frac{m}{s}$'],2);
a=gca(); // get the handle of the current axes
f=get("current_figure");
f.figure_size=[1000,650];
a.grid=[1 1];
a.font_size=4; //set the tics label font size
a.title.font_size=4;
a.x_label.font_size=4;
a.y_label.font_size=4;
l.font_size = 4;
a.axes_visible="on"; // makes the axes visible
a.data_bounds=[0,0,0;180,4,1]; //set the boundary values for the x, y and z coordinates.
//filename='start_up_torque';
//xs2pdf(0,filename);
//xs2pdf(gcf(),filename);
|
a18c33c92f8b13a11626ab4ceb94fc75f42afffc | 3cbee2296fd6b54f80587eead83813d4c878e06a | /sci2blif/sci2blif_added_blocks/common_drain.sce | 8abb2db924610f768b387e24151ddb4e6973e4ad | [] | no_license | nikhil-soraba/rasp30 | 872afa4ad0820b8ca3ea4f232c4168193acbd854 | 936c6438de595f9ac30d5619a887419c5bae2b0f | refs/heads/master | 2021-01-12T15:19:09.899590 | 2016-10-31T03:23:48 | 2016-10-31T03:23:48 | 71,756,442 | 0 | 0 | null | 2016-10-24T05:58:57 | 2016-10-24T05:58:56 | null | UTF-8 | Scilab | false | false | 516 | sce | common_drain.sce | //************************* Common Drain ******************************
if (blk_name.entries(bl) =='common_drain') then
mputl("# Common Drain",fd_w);
for ss=1:scs_m.objs(bl).model.ipar(1)
cap_str= ".subckt common_drain in[0]=net"+string(blk(blk_objs(bl),2))+'_'+ string(ss)+" in[1]=net"+string(blk(blk_objs(bl),3))+'_'+ string(ss)+" out=net"+ string(blk(blk_objs(bl),2+numofip))+'_'...
+ string(ss) + " #common_drain_fg =0";
mputl(cap_str,fd_w);
mputl(" ",fd_w);
end
end
|
c2ee6be7cdffba8f373c38e6c1efaa0c7bd971f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /992/CH2/EX2.17/ex2_17.sce | 2db8a38dd274fb33b5a11ec2223e33220e2f9256 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 144 | sce | ex2_17.sce |
//Exa:2.17
clc;
clear;
close;
//Given:
Pt=1000;//in Watts
m=0.95;//depth
Pc=Pt/(1+(m^2)/2);
printf("\n\n\t carrier power = %f W ",Pc); |
c4829a40cbea40c1feec472e107f1d9b22bce766 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1574/CH8/EX8.15.1/TL_Ex_8_15_Pg_348.sce | 931a10ba400a4bafc0896d3f515a397b3e492639 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 824 | sce | TL_Ex_8_15_Pg_348.sce | clc
//Chapter8
//Example8.15, page no 348
//Given
l=100// Tx-line length
ZR=200//Terminal resistance
Zo=600//Characteristic impedance
a=0.01//attenuation constant
Beta=0.03//phase constant
d=0//reflection coeff at load is Zero
Gamma=a+%i*Beta//propagation constant
Kd=((ZR-Zo)/(ZR+Zo))*%e^(-2*Gamma*d)//reflection coeff at point D d km from load
[Kdr,Kdi]=polar(Kd)
d1=100// distance
Ks=((ZR-Zo)/(ZR+Zo))*%e^(-2*Gamma*d1)//reflection coeff at the sending end
[Ksr,Ksi]=polar(Ks)
Zin=Zo*(((ZR*cosh(Gamma*l))+(Zo*sinh(Gamma*l)))/((Zo*cosh(Gamma*l))+(ZR*sinh(Gamma*l))))//Input impedance
[Zinr,Zini]=polar(Zin)
mprintf('The input impedance is %f /_%fdeg\nReflection Coeff is %f /_%fdeg',Zinr,Zini*180/%pi,Ksr,Ksi*180/%pi)
// Note : There are some calculation errors in the solution presented in the book
|
b7596eb6fc1676d754a06cec0436b48d635d0989 | 449d555969bfd7befe906877abab098c6e63a0e8 | /593/CH11/EX11.13/ex11_13.sce | dc86fd7a4dfd4b1bc1821987e49b52761a18e74d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 897 | sce | ex11_13.sce | clear;
//clc();
// Example 11.13
// Page: 299
printf("Example-11.13 Page no.-299\n\n");
//***Data***//
T = 273.15+20;//[K]
// The equation 11.15 (page 297) is given by
// log(1/(x_i_1*y_i_1)) = log(p_i_solid_phase/p_i_subcooled_liquid) = delta_h_solid_to_liquid/(R*T_melting_point)*(T_melting_point/T-1)
// Ignoring the moment the wild extraplation involved, we simply insert the appropriate values
T_m = 273.15+800;//[K]
delta_h_fusion = 30219;//[J/g]
R = 8.314;//[J/(mol*K)]
// Let log(1/(x_i_1*y_i_1)) = a
a = delta_h_fusion/(R*T)*(T_m/T-1);
// Now
x_NaCl_into_y_i_1 = 1/exp(a);
// If we make the plausible assumption that y_i_1 = 1.00, then
x_NaCl = 1/exp(a)*1;
printf(" The solubility of the NaCl in water at 20 deg C is %e \n", x_NaCl);
printf(" But the experimental value is 0.1, so, Similar to the results in book, our results are very far wrong");
|
00da192289a7c6b17bb06adc672c86288f8919af | b9602336613b26d0b9c22a09d219c0ed8e158b4e | /Examples/Examples_Mat/sign.sce | 06bf80833cc505ab5be3c35d651c1f6e393bbc7c | [
"BSD-2-Clause"
] | permissive | CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox | d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd | 70c97cda4e0dd54df0a638e9b99f380c09ffa37e | refs/heads/master | 2022-12-11T01:28:28.742041 | 2020-08-26T12:24:27 | 2020-08-26T12:24:27 | 290,481,428 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 96 | sce | sign.sce | // // Calculating the sign.
y = [1.2, 1, 1.9; 4, 2.6, 5; 2.3, 8, 7];
signres = armaMat("sign",y) |
ef7bb38db27912b41a7c314eff408d340d90830c | 42fdf741bf64ea2e63d1546bb08356286f994505 | /test_0614_lowsubth_target/Integrate_and_Fire_experiment.sce | 08a5614de5db4322e027d331f2612bcb3696d23d | [] | no_license | skim819/RASP_Workspace_sihwan | 7e3cd403dc3965b8306ec203007490e3ea911e3b | 0799e146586595577c8efa05c647b8cb92b962f4 | refs/heads/master | 2020-12-24T05:22:25.775823 | 2017-04-01T22:15:18 | 2017-04-01T22:15:18 | 41,511,563 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,089 | sce | Integrate_and_Fire_experiment.sce | //Vref: 0.5V 1.5V 0.2V
LowsubVt_targetprogram = [
// target current (A) Frequency (Hz)
35E-12 40.43;
50E-12 80.89;
100E-12 239.1;
200E-12 576.1;
500E-12 1459;
//800E-12 1669;
1000E-12 2446;
2000E-12 4761;
5000E-12 6101;
10000E-12 16390;
];
LowsubVt_targetprogram(:,1)=LowsubVt_targetprogram(:,1)*30;
SubVt_targetprogram = [
// target current (A) Frequency (Hz)
2E-09 3185;
5E-09 7873;
10E-09 12700;
20E-09 16510;
];
scf(1);
clf(1);
//mtlb_semilogy(LowsubVt_targetprogram(:,1)), LowsubVt_targetprogram(:,2))
plot2d("ll", LowsubVt_targetprogram(:,1), LowsubVt_targetprogram(:,2), style=1);p=get("hdl");p.children.mark_mode="on";p.children.mark_style=9;p.children.thickness=3;p.children.mark_foreground=1;
plot2d("ll", SubVt_targetprogram(:,1), SubVt_targetprogram(:,2), style=2);p=get("hdl");p.children.mark_mode="on";p.children.mark_style=9;p.children.thickness=3;p.children.mark_foreground=2;
legend("Vgm=0V","Vgm=0.6V","in_lower_right"); // "in_upper_left" "in_lower_right"
xtitle("", "Target Current (log) [A]","Frequency (log) [Hz]");
a=gca(); a.data_bounds=[1D-09 1D01;1D-06 1D+05];
|
8006be812d380827d569d28087362edf3bda19b8 | 7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2 | /Scilab/local/2dof_controller/dc/lqg/scilab/lqg_julien1_loop.sce | 0e7fca355c725569f5c3d494eea1abac5ad8d959 | [] | no_license | advait23/sbhs-manual | e2c380051117e3a36398bb5ad046781f7b379cb9 | d65043acd98334c44a0f0dbf480473c4c4451834 | refs/heads/master | 2021-01-16T19:50:40.218314 | 2012-11-16T04:11:12 | 2012-11-16T04:11:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,017 | sce | lqg_julien1_loop.sce | // // Use of Moudgalya's software for generating the LG performance curves
// // for the examples given by Julien et al. (2004)
// // *************************************************************************
// // *************************************************************************
// // M. Jelali, 20 November 2007
// //
// Process model from Julien et al. (2004), Equation 19
A = convol([1 -0.7],[1 0.9]); dA = 2;
B = convol([0.079 0.221],[1 0.9]);
dB = 2;
C = [1 -0.7]; dC = 1;
k = 2; int = 1;
F = [1 -1]; dF = 1;
V = 1; W = 1; dV = 0; dW = 0;
u_lqg = []; y_lqg =[]; uy_lqg = [];
No_points = 101;
rhovector = logspace(-1.63,1.2,No_points);
for i = 1:No_points,
rho = rhovector(i);
[R1,dR1,Sc,dSc] = lqg(A,dA,B,dB,C,dC,k,rho,V,dV,W,dW,F,dF);
[Nu,dNu,Du,dDu,Ny,dNy,Dy,dDy,yvar,uvar] = ...
cl(A,dA,B,dB,C,dC,k,Sc,dSc,R1,dR1,int);
u_lqg = [u_lqg uvar]; y_lqg = [y_lqg yvar];
uy_lqg = [uy_lqg; [rho uvar yvar]];
end
figure;
plot2d(u_lqg,y_lqg);
|
a51a58ccfdaaf20327a71777dd80c69af5bc0a93 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH3/EX3.17/3_17.sce | a0d8a2a848a126c1c521ed6cd82646d05cc5bc22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,453 | sce | 3_17.sce | clc,clear
printf('Example 3.17\n\n')
V=500
R_a=0.22,R_sh= 250//armature resistance and shunt field resistance
I=5 //no load current
motor_input_NL=V*I //no load motor input
I_sh=V/R_sh
I_a_NL= I- I_sh //no load armature current
arm_cu_loss_NL = R_a*I_a_NL^2 //no load armature copper loss
constant_loss = motor_input_NL - arm_cu_loss_NL
//When motor draws 100 A current
I=100
I_a = I - I_sh
arm_cu_loss =R_a* I_a^2 //armature copper loss
total_losses = arm_cu_loss + constant_loss
motor_input = V*I
motor_output = motor_input -total_losses
eta_m=100*(motor_output/motor_input) //motor efficiency
printf('(i)Efficiency of motor at 100 A current is %.2f percent \n',eta_m)
//part(b)
E_b_NL= V- I_a_NL*R_a //back emf at no load
E_b= V- I_a*R_a //back emf at 100 A
//E_b is proportional to N.. and using componendo dividendo
speed_change= 100*((E_b_NL - E_b)/E_b)
printf('(ii)Percentage change in speed = %.3f percent\n\n',speed_change)
printf('Note that the following were assumptions made\n')
printf('(i) Due to heating , resistance of shunt field winding will be increased which will reduce the shunt field current.This will decrease the flux which is neglected\n')
printf('(ii) Though the motor speed is changing from no load to given load , the mechanical losses are assumed to be cosnstant\n')
printf('(iii)The effect of armature reaction aon main pole flux and its effect on iron loss is neglected')
|
f915ae9c6bdf8994860972eaf50714e86ce082c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2223/CH4/EX4.1/Ex4_1.sce | ae20d5012b53e2fb882ca47eeb97d8f9a44c68c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,576 | sce | Ex4_1.sce | // scilab Code Exa 4.1 Calculations on Steam Turbine Plant
p1=25; // Turbine Inlet Pressure in bar
p2=0.065; // Condenser Pressure in bar
n_B=0.82; // Boiler efficiency
delp=p1-p2;
v_w=0.001; // Specific Volume at condenser Pressure in m3/kg
h1=160.6; // from steam tables at p1=0.065 bar
h2=h1+(delp*100*v_w);
//part(a) Determining exact and approximate Rankine efficiency of the plant
h3=2800; // from steam table vapour enthalpy at 25 bar
h4=1930; // from steam table
n_rankine_ex=(h3-h4-(h2-h1))/(h3-h1-(h2-h1));
disp ("%",n_rankine_ex*100,"(a)(i) Exact Rankine efficiency is")
n_rankine_app=(h3-h4)/(h3-h1);
disp ("%",n_rankine_app*100," (a)(ii)Approximate Rankine efficiency is")
//part(b) Determining thermal and relative efficiencies of the plant
n_t=0.78; // Turbine Efficiency
CV=26.3*10e2; // Calorific Value of fuel in kJ/kg;
n_th=(n_t*(h3-h4))/(h3-h1);
disp("%",n_th*100,"(b)(i)thermal efficiency of the plant is")
n_rel=n_th/n_rankine_app;
disp("%",n_rel*100,"(ii)relative efficiency of the plant is")
//part(c) Determining Overall efficiency of the plant
n_o=n_th*n_B;
disp("%",n_o*100,"(c)overall efficiency of the plant is")
//part(d) Turbine and Overall heat rates
hr_t=3600/n_th;
disp("kJ/kWh",hr_t,"(d)(i)Turbine Heat Rate is")
hr_o=3600/n_o;
disp("kJ/kWh",hr_o,"(d)(ii)overall Heat Rate is")
//part(e) Steam Consumption per kWh
m_s=3600/(n_t*(h3-h4));
disp("kg/kWh" ,m_s,"(e)Steam Consumption is")
//part(f) Fuel Consumption per kWh
m_f=3600/(CV*n_o);
disp("kg/kWh" ,m_f,"(f)Fuel Consumption is")
|
367726a5c43ac54d3f6c0ee09cdb83ef7035087e | 717ddeb7e700373742c617a95e25a2376565112c | /3424/CH10/EX10.4/Ex10_4.sce | a01f44ba1093976217d1748f668ec2b8f0038460 | [] | 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 | 398 | sce | Ex10_4.sce | clc
//Initialization of variables
L = 2 //ft
b1= 0.8 //ft
b2 = 0.6 //ft
A1 = 1.8 //ft^2
A3 = 1.8 //ft^2
n1 = 0.020
n2 = 0.015
n3 = 0.030
// Calculations
A2 = L*(b1+b2) //ft^2
P2 = L + 2*b1 //ft
R2 = A2/P2
R1 = A1/P2
R3 = A3/P2
Qt = 1.49*(0.002^0.5)*((A1*(R1^(2/3)))/(n1) + (A2*(R2^(2/3)))/(n2) + (A3*(R3^(2/3)))/(n3))
// results
printf(" the total flow rate is %.2f ft^3/s",Qt)
|
8b3e65e9f18e6222f5c1f143fdf7b04a44525149 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1697/CH6/EX6.3/Exa6_3.sce | 13aebd002f8099b3a83ada3596a5a6700afdba2d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 344 | sce | Exa6_3.sce | //Exa 6.3
clc;
clear;
close;
//from 7dBi gain graph the data obtained is given below :
K=1.2;//Scale constant
alfa=1.5;//Apex angle in degree
Slambda=0.15;
disp("K^n=F or n=logF/logK");
F=4;
n=log10(F)/log10(K);
n=ceil(n);
nplus1=n+1;
disp(alfa,"Apex Angle in degree : ");
disp(K,"Sale constant :");
disp(n,"No. of elements : "); |
322ba5780f4df14bb92fecbd9686fe80dda457da | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH4/EX4.7/Ex4_7.sce | 6f8648aa9d5c15386b4370d71b7bec580275ba8b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 864 | sce | Ex4_7.sce | //Example 4_7
clc;funcprot(0);
//Given data
Q=400;// m^3/sec
H=45;// m
n_t=0.90;// The turbine efficiency
N=250;// r.p.m
//Calculation
w=1000*9.81;// N
P_t=(w*Q*H*n_t)/(1000);// kW
//(a)
N_sf=200;// Specific speed
P=((N_sf*H^(5/4))/N)^2;// kW
f_n=(P_t/P);// Number of francis turbine required
// (b)
N_sk=600;// Specific speed
P=((N_sk*H^(5/4))/N)^2;// kW
k_n=(P_t/P);// Number of kaplan turbine required
printf('\n Number of francis turbines=%0.0f \n Number of kaplan turbine used=%0.0f',f_n,k_n);
if(f_n>k_n)
printf('\n The installation of kaplan turbine is more economical than francis turbine as number of units required is less.');
else(k_n>f_n)
printf('\n The installation of francis turbine is more economical than kaplan turbine as number of units required is less.');
end
// The answer provided in the textbook is wrong
|
ba9a73976f0194cb706a43363d42f4f331db3627 | 328ba2fa7989deec370b6435b02922f89cd2161c | /Código/AutovaloresSpec.sce | 8a52f8a7aa9f0f67ad28af3b5524285cd1d8c052 | [
"MIT"
] | permissive | MarianaFRocha/Autovetor-e-Autovalor | 42003ce46078d284780fcd0bf701d9a19f46512e | 6a7a8234dedabaffd3f8e964d26ecb3b5071a8ce | refs/heads/master | 2020-05-21T21:49:01.714472 | 2019-05-11T17:25:04 | 2019-05-11T17:25:04 | 186,161,673 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 119 | sce | AutovaloresSpec.sce | A = [1 0 0;-2 3 -1;0 -4 3];
[Vetor,Valor] = spec(A)
disp(A)
disp(Valor)
disp(Vetor)
|
19fb3c4bc22dc9765cb296c1f81d81926fb8a3d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1730/CH3/EX3.21/Exa3_21.sce | e61b2bb94f20529f4eb2571557459ea07bb64da4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | sce | Exa3_21.sce | //Exa3.21
clc;
clear;
close;
// given data
T=27;// in degree C
T=T+273;// in K
// Let E_C - E_F =E_CF
E_CF=0.3;// in eV
// Formula E_C - E_F = k*T*log(n_C/N_D)
// Let log(n_C/N_D) = L, so
L=E_CF/T;
T_desh=55;// in degree C
T_desh=T_desh+273;// in K
//At temperature T_desh
new_fermi_level= T_desh*L; // where L=log(n_C/N_D)
disp("The new position of Fermi Level is : "+string(new_fermi_level)+" V"); |
3bf8221af09eb51f322c7834a65a9d20caafba87 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.16_14.tst | d1efb1c337c6fc7df1c1544429917365bcde509e | [] | 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 | 35,174 | tst | bow.16_14.tst | 16 8:0.5 10:0.08333333333333333 13:0.06666666666666667 16:1.0 38:0.14285714285714285 42:0.6666666666666666 44:0.5 50:1.0 51:0.14285714285714285 56:0.6666666666666666 86:0.06666666666666667 96:0.09090909090909091 104:0.09090909090909091 123:1.0 127:0.25 144:2.0 160:0.25 162:0.14285714285714285 190:0.5 206:1.0 210:0.5 317:1.0 328:0.3333333333333333 392:1.0 403:1.0 408:0.5 614:0.5 641:1.0 720:1.0 804:0.3333333333333333 1010:0.5 1032:1.0 1290:1.0 2016:1.0 2909:1.0 3143:1.0 3204:1.0 3602:1.0 3955:1.0 4110:1.0 4212:1.0 4490:1.0 4651:1.0 4703:1.0 6650:1.0
16 13:0.13333333333333333 15:1.0 20:1.0 85:1.0 119:0.3333333333333333 144:1.0 157:0.25 162:0.14285714285714285 206:1.0 210:0.5 211:0.5 216:0.5 230:1.0 458:0.5 514:1.0 532:1.0 730:0.1 734:0.038461538461538464 1148:1.0 1452:1.0 2343:1.0 2604:1.0 2843:1.0 3204:2.0 3216:1.0 3303:0.2 3304:1.0 3306:1.0 3320:1.0 3412:1.0 5158:1.0 5287:1.0
16 13:0.06666666666666667 15:2.0 56:0.3333333333333333 61:0.09090909090909091 83:0.034482758620689655 144:1.0 162:0.14285714285714285 210:0.5 1148:1.0 1754:1.0 1839:1.0 2346:1.0 3204:1.0 3345:1.0 3412:1.0 4327:1.0
16 13:0.06666666666666667 15:1.0 34:2.0 38:0.14285714285714285 56:0.3333333333333333 86:0.03333333333333333 90:0.5 117:1.0 153:1.0 157:0.125 159:0.2 181:0.3333333333333333 231:0.5 272:1.0 273:1.0 285:0.2 317:1.0 414:0.25 472:0.6666666666666666 730:0.1 734:0.038461538461538464 804:0.3333333333333333 1965:0.5 3204:1.0 4665:1.0 4681:1.0 6032:1.0
16 13:0.13333333333333333 15:1.0 16:1.0 44:0.25 49:1.0 50:1.0 56:0.3333333333333333 84:1.0 94:0.5 95:0.5 99:1.0 157:0.25 163:1.0 210:0.5 229:0.5 329:1.0 408:0.5 707:0.5 808:1.0 1010:0.5 1452:1.0 1605:1.0 1821:0.5 2101:1.0 3065:1.0 3186:0.125 3204:2.0 3246:1.0 4315:1.0
16 3:1.0 7:1.0 10:0.08333333333333333 13:0.26666666666666666 15:1.0 16:1.0 19:1.0 20:1.0 33:0.5 38:0.14285714285714285 44:0.25 49:1.0 51:0.14285714285714285 56:1.0 66:0.5 83:0.034482758620689655 84:2.0 86:0.13333333333333333 90:0.5 96:0.18181818181818182 123:1.0 140:0.25 159:0.2 174:0.5 204:0.05555555555555555 229:0.5 231:0.5 289:0.1111111111111111 295:1.0 328:0.3333333333333333 381:1.0 383:1.0 413:1.0 517:1.0 611:1.0 647:1.0 725:1.0 734:0.038461538461538464 822:1.0 1190:1.0 1541:1.0 1662:0.25 2081:0.5 2162:1.0 2468:1.0 2540:1.0 2541:1.0 2580:1.0 3220:0.5 3412:1.0 3492:1.0 3864:1.0 4487:1.0 4651:1.0 5414:1.0 5972:1.0
16 7:1.0 13:0.13333333333333333 15:1.0 16:1.0 19:1.0 44:0.5 56:1.0 61:0.09090909090909091 66:0.5 83:0.034482758620689655 86:0.06666666666666667 104:0.09090909090909091 157:0.125 206:1.0 223:1.0 229:0.5 269:1.0 302:0.14285714285714285 448:1.0 458:0.5 639:1.0 734:0.11538461538461539 1810:1.0 2256:1.0 3492:1.0 3714:1.0 4224:1.0 4661:0.5 4765:1.0 6196:1.0 6691:1.0
16 10:0.08333333333333333 16:1.0 18:0.16666666666666666 44:0.75 51:0.14285714285714285 58:0.043478260869565216 61:0.09090909090909091 72:0.5 83:0.034482758620689655 86:0.06666666666666667 157:0.125 270:0.5 439:1.0 458:0.5 472:0.3333333333333333 529:0.5 647:1.0 734:0.038461538461538464 809:1.0 831:0.3333333333333333 1409:1.0 2169:0.5 2734:1.0 3017:1.0 3360:1.0 3723:1.0 4208:1.0 5101:1.0 5473:1.0
16 13:0.13333333333333333 15:3.0 38:0.14285714285714285 56:0.3333333333333333 66:0.5 83:0.034482758620689655 96:0.09090909090909091 104:0.09090909090909091 144:1.0 172:1.0 204:0.05555555555555555 206:2.0 281:0.5 282:1.0 289:0.1111111111111111 328:0.16666666666666666 529:0.5 730:0.2 773:1.0 810:1.0 1010:0.5 2256:1.0 2541:1.0 2741:1.0 3186:0.125 4224:1.0 4327:1.0 4770:1.0 5232:1.0 6687:1.0
16 7:1.0 42:0.3333333333333333 56:0.3333333333333333 58:0.043478260869565216 68:1.0 84:2.0 96:0.09090909090909091 111:1.0 152:0.5 159:0.2 162:0.14285714285714285 190:0.5 206:2.0 223:1.0 276:1.0 282:1.0 458:0.5 589:1.0 804:0.3333333333333333 1154:0.5 1160:1.0 1353:1.0 2159:1.0 2256:2.0 3447:1.0 4035:1.0 4130:1.0 4356:1.0
16 4:0.14285714285714285 7:1.0 36:0.04 51:0.42857142857142855 96:0.09090909090909091 117:1.0 204:0.05555555555555555 412:1.0 422:0.5 472:0.3333333333333333 1260:1.0 1695:1.0 1696:1.0 2069:1.0 2249:1.0 2734:1.0 3220:0.5 3874:1.0 4597:1.0 4720:2.0 4740:1.0 5225:1.0
16 13:0.06666666666666667 15:1.0 19:1.0 20:1.0 33:0.5 36:0.04 38:0.2857142857142857 44:0.25 49:1.0 96:0.09090909090909091 157:0.125 162:0.14285714285714285 210:1.0 223:1.0 237:1.0 243:1.0 273:1.0 289:0.1111111111111111 314:1.0 325:1.0 385:0.5 514:1.0 525:1.0 530:1.0 685:1.0 811:1.0 1305:1.0 2042:1.0 3196:1.0 3220:0.5 3463:1.0 3498:1.0 3527:0.3333333333333333 3636:1.0 3655:1.0 3758:0.5 4035:1.0 4896:1.0 6631:1.0 6660:1.0 6661:1.0 6663:1.0
16 3:1.0 7:1.0 13:0.06666666666666667 16:1.0 38:0.14285714285714285 44:0.5 51:0.14285714285714285 56:0.3333333333333333 58:0.043478260869565216 66:0.75 83:0.034482758620689655 94:0.5 95:0.5 96:0.09090909090909091 101:0.3333333333333333 169:0.25 204:0.05555555555555555 260:0.3333333333333333 454:1.0 669:1.0 703:1.0 880:1.0 1145:1.0 1334:1.0 1361:1.0 2283:1.0 3328:1.0 3757:1.0 5749:1.0 5867:1.0
16 7:1.0 10:0.08333333333333333 13:0.06666666666666667 15:1.0 16:2.0 20:1.0 38:0.14285714285714285 86:0.03333333333333333 96:0.09090909090909091 157:0.125 169:0.25 204:0.05555555555555555 210:0.5 243:1.0 685:1.0 810:1.0 1010:0.5 1546:1.0 2042:1.0 3186:0.125 3204:1.0 3328:1.0 3595:1.0 3757:1.0 4035:1.0 4963:1.0 5749:1.0 6290:1.0 6631:1.0 6660:1.0 6661:1.0 6663:1.0
16 10:0.08333333333333333 13:0.06666666666666667 20:1.0 36:0.04 56:0.3333333333333333 66:0.25 90:0.5 162:0.14285714285714285 270:0.25 493:1.0 735:1.0 811:1.0 1010:0.5 1799:1.0 1835:1.0 2081:0.5 2852:1.0 3204:1.0 3551:1.0 4841:1.0 5227:1.0 5869:1.0
16 20:1.0 33:0.5 56:0.3333333333333333 157:0.25 213:1.0 270:0.25 533:0.16666666666666666 564:1.0 702:1.0 730:0.1 808:1.0 1170:1.0 1821:0.5 1884:1.0 2049:1.0 2155:1.0 3204:2.0 4111:1.0 5039:1.0 5089:1.0
16 7:1.0 20:1.0 42:0.3333333333333333 46:1.0 51:0.14285714285714285 86:0.03333333333333333 96:0.09090909090909091 104:0.09090909090909091 289:0.1111111111111111 325:1.0 503:1.0 619:0.5 1010:0.5 1133:1.0 1581:1.0 2010:1.0 2081:0.5 2527:0.5 3331:1.0 3414:1.0 3671:1.0 3981:1.0
16 13:0.2 33:0.5 44:0.5 50:1.0 51:0.14285714285714285 68:1.0 86:0.03333333333333333 90:0.5 104:0.09090909090909091 117:1.0 157:0.25 169:0.25 204:0.05555555555555555 210:0.5 248:1.0 282:1.0 314:1.0 535:0.25 673:1.0 1010:1.0 1133:1.0 1581:1.0 1835:2.0 2543:1.0 2642:1.0 2734:1.0 3204:1.0 3864:1.0 4442:2.0 6582:1.0
16 6:0.25 10:0.08333333333333333 13:0.13333333333333333 20:2.0 36:0.04 38:0.14285714285714285 44:0.5 61:0.09090909090909091 90:0.5 99:1.0 157:0.125 206:1.0 229:0.5 248:1.0 276:1.0 456:1.0 472:0.3333333333333333 528:0.5 564:1.0 647:1.0 688:1.0 852:1.0 953:1.0 1223:1.0 1809:1.0 2353:1.0 2527:0.5 3204:1.0 3306:1.0 3324:1.0 3636:1.0 3923:1.0 4344:1.0 5168:1.0 5814:1.0 6336:1.0 6613:1.0
16 4:0.14285714285714285 6:0.25 13:0.26666666666666666 19:1.0 38:0.14285714285714285 44:0.5 51:0.2857142857142857 56:0.3333333333333333 67:1.0 84:1.0 86:0.03333333333333333 88:1.0 96:0.18181818181818182 119:0.3333333333333333 157:0.125 196:1.0 206:1.0 210:0.5 211:0.5 231:0.5 236:1.0 265:0.3333333333333333 313:1.0 315:1.0 335:1.0 414:0.5 734:0.038461538461538464 1145:1.0 1793:1.0 2608:1.0 2713:1.0 3026:1.0 3061:1.0 3131:1.0 3167:1.0 3354:1.0 3492:1.0 3923:1.0 4844:1.0 6315:1.0 6316:1.0
16 13:0.13333333333333333 20:1.0 44:0.25 56:1.0 96:0.09090909090909091 130:0.5 144:1.0 157:0.125 162:0.2857142857142857 196:1.0 210:1.0 211:0.5 216:1.0 328:0.16666666666666666 472:0.3333333333333333 532:2.0 564:1.0 673:1.0 707:0.5 730:0.1 1107:1.0 1452:2.0 1802:0.2222222222222222 1908:1.0 1950:1.0 2604:1.0 3204:1.0 3303:0.4 3304:2.0 3307:1.0 3320:1.0 3630:1.0 5118:1.0
16 6:0.25 13:0.06666666666666667 15:2.0 20:1.0 38:0.14285714285714285 44:0.25 49:1.0 51:0.2857142857142857 58:0.043478260869565216 61:0.09090909090909091 66:0.25 68:1.0 72:0.5 86:0.06666666666666667 90:0.5 104:0.09090909090909091 114:0.5 144:1.0 157:0.125 162:0.2857142857142857 210:0.5 229:0.5 248:1.0 282:1.0 285:0.2 365:1.0 383:1.0 403:1.0 413:1.0 414:0.25 472:0.3333333333333333 625:1.0 647:1.0 704:0.5 707:0.5 709:1.0 811:1.0 879:1.0 1078:1.0 1445:1.0 2604:1.0 2843:1.0 3196:1.0 3320:1.0 3413:1.0 3655:1.0 3692:1.0 4039:0.5 5120:1.0 6143:1.0 6530:1.0
16 4:0.42857142857142855 36:0.04 38:0.14285714285714285 42:0.3333333333333333 44:0.25 51:0.14285714285714285 56:0.6666666666666666 86:0.06666666666666667 90:0.5 119:0.3333333333333333 123:1.0 159:0.4 206:1.0 289:0.1111111111111111 336:1.0 363:0.5 514:1.0 530:1.0 555:1.0 608:1.0 647:1.0 734:0.038461538461538464 739:1.0 809:1.0 934:1.0 1145:2.0 1695:1.0 3582:1.0 3709:1.0 3837:1.0 3928:1.0 4107:1.0 4317:1.0 4376:2.0 4558:1.0 5380:1.0 5670:1.0 6439:1.0
16 15:2.0 16:1.0 44:0.25 49:1.0 51:0.2857142857142857 61:0.09090909090909091 96:0.09090909090909091 110:1.0 157:0.125 180:0.5 182:1.0 206:1.0 210:0.5 303:0.5 384:1.0 430:1.0 472:0.3333333333333333 512:0.5 707:0.5 730:0.1 963:1.0 986:1.0 1145:2.0 1525:1.0 1835:1.0 1923:0.3333333333333333 2517:1.0 3255:0.5 3263:1.0 3339:1.0 3447:1.0 3474:1.0 4213:0.5 4214:1.0 4238:1.0 4268:1.0 4980:1.0 5064:1.0 5670:1.0 6024:1.0 6167:1.0
16 3:1.0 13:0.13333333333333333 15:1.0 56:0.3333333333333333 58:0.043478260869565216 61:0.09090909090909091 66:0.25 68:1.0 86:0.03333333333333333 96:0.09090909090909091 144:2.0 157:0.125 210:1.0 227:1.0 231:1.0 248:1.0 273:1.0 282:1.0 359:1.0 365:1.0 367:0.3333333333333333 448:1.0 472:0.3333333333333333 567:1.0 647:1.0 734:0.038461538461538464 788:1.0 1010:0.5 1075:1.0 1185:0.5 2519:1.0 2662:1.0 2832:1.0 3186:0.125 3204:1.0 3331:1.0 3413:1.0 3414:1.0 3693:0.3333333333333333 3721:1.0 3811:1.0 4577:1.0 6123:1.0
16 13:0.13333333333333333 104:0.09090909090909091 105:1.0 160:0.25 223:1.0 335:1.0 627:1.0 804:0.3333333333333333 1403:1.0 1546:1.0 2006:1.0 3469:0.5 6298:1.0 6307:1.0
16 7:1.0 13:0.06666666666666667 16:2.0 33:1.5 44:0.5 56:0.3333333333333333 66:0.25 86:0.03333333333333333 111:1.0 157:0.125 204:0.05555555555555555 210:0.5 226:1.0 313:1.0 385:0.5 407:1.0 530:1.0 590:1.0 619:0.5 702:1.0 730:0.1 804:0.3333333333333333 907:1.0 927:1.0 960:1.0 1877:1.0 1900:0.5 2069:1.0 2073:1.0 2260:1.0 2539:1.0 3204:2.0 3934:1.0 4241:1.0 4351:0.5 4414:1.0 4552:1.0 4811:1.0 5177:1.0
16 13:0.06666666666666667 15:1.0 20:1.0 36:0.04 38:0.14285714285714285 51:0.2857142857142857 56:0.3333333333333333 111:1.0 140:0.25 157:0.125 159:0.2 162:0.2857142857142857 204:0.05555555555555555 206:1.0 210:0.5 211:0.5 216:0.5 279:1.0 412:1.0 413:2.0 458:0.5 460:1.0 495:1.0 569:0.5 582:1.0 707:0.5 734:0.038461538461538464 811:1.0 1010:0.5 1088:1.0 1959:0.5 2183:1.0 2604:1.0 2843:1.0 3220:0.5 3303:0.2 3304:1.0 3306:1.0 3320:1.0 4050:1.0 4503:1.0 6504:1.0
16 13:0.06666666666666667 16:1.0 20:3.0 21:1.0 36:0.04 42:0.3333333333333333 44:0.25 49:1.0 51:0.14285714285714285 110:1.0 144:1.0 157:0.375 159:0.4 162:0.2857142857142857 174:0.5 226:1.0 243:2.0 248:1.0 300:1.0 352:1.0 385:0.5 417:1.0 472:0.3333333333333333 530:1.0 636:0.5 647:3.0 716:1.0 730:0.1 760:1.0 1010:0.5 1334:1.0 1552:1.0 1959:0.5 2334:1.0 2353:1.0 2492:1.0 2734:1.0 2911:1.0 3199:1.0 3204:1.0 3220:0.5 3655:1.0 3868:1.0 3964:1.0 4242:1.0 4651:1.0 4741:1.0 5310:1.0 5609:2.0
16 7:1.0 13:0.06666666666666667 15:1.0 38:0.2857142857142857 42:0.3333333333333333 51:0.2857142857142857 56:0.3333333333333333 66:0.25 101:0.3333333333333333 117:1.0 140:0.25 204:0.1111111111111111 283:1.0 327:1.0 530:1.0 551:1.0 734:0.038461538461538464 1100:1.0 1334:1.0 1775:1.0 1810:1.0 2330:1.0 2588:1.0 2741:1.0 3204:1.0 3774:1.0 4770:1.0 5075:1.0 5094:1.0 5097:1.0 5727:1.0 5874:2.0
16 7:2.0 13:0.06666666666666667 15:2.0 33:0.5 42:0.3333333333333333 44:0.5 51:0.14285714285714285 56:0.6666666666666666 58:0.043478260869565216 66:0.25 86:0.03333333333333333 134:1.0 159:0.2 211:0.5 223:1.0 224:1.0 251:0.5 270:0.5 317:1.0 324:1.0 443:1.0 530:1.0 589:1.0 734:0.07692307692307693 1010:0.5 1190:1.0 1334:1.0 1619:1.0 1794:0.5 1809:1.0 1835:1.0 2694:1.0 2843:1.0 3065:1.0 4548:1.0 5092:1.0 5450:1.0
16 7:1.0 10:0.08333333333333333 13:0.2 16:2.0 20:2.0 38:0.14285714285714285 44:0.25 46:1.0 51:0.14285714285714285 58:0.08695652173913043 61:0.18181818181818182 73:1.0 86:0.03333333333333333 101:0.3333333333333333 104:0.09090909090909091 121:1.0 147:0.5 157:0.375 159:0.2 162:0.2857142857142857 229:0.5 281:0.5 282:2.0 394:1.0 408:1.0 447:1.0 460:1.0 527:0.1111111111111111 647:1.0 730:0.1 734:0.038461538461538464 808:2.0 873:1.0 1010:1.0 1154:0.5 1334:1.0 1487:1.0 1835:1.0 1950:1.0 3204:1.0 3246:2.0 3451:1.0 4327:1.0 5000:1.0 5103:1.0
16 13:0.06666666666666667 15:1.0 44:0.5 51:0.14285714285714285 66:0.25 86:0.03333333333333333 157:0.125 174:0.5 210:0.5 223:1.0 243:1.0 372:1.0 491:1.0 512:0.5 540:1.0 730:0.1 864:1.0 976:1.0 1010:1.0 1990:1.0 2503:1.0 2679:1.0 3204:2.0 3360:1.0 3655:1.0 4212:1.0
16 3:1.0 7:2.0 13:0.2 16:2.0 44:0.25 49:1.0 51:0.2857142857142857 56:0.3333333333333333 57:1.0 66:0.25 110:1.0 144:1.0 159:0.2 210:0.5 211:0.5 231:0.5 430:1.0 472:0.3333333333333333 517:1.0 529:0.5 783:1.0 1032:1.0 1102:1.0 1401:1.0 1411:0.5 2400:1.0 2460:1.0 2564:1.0 2718:1.0 2842:1.0 3709:1.0 3721:1.0 4577:1.0 5273:1.0 5789:1.0 6028:1.0 6155:1.0
16 13:0.06666666666666667 42:0.3333333333333333 49:1.0 51:0.14285714285714285 61:0.18181818181818182 144:2.0 210:1.0 231:1.0 270:0.25 281:0.5 282:1.0 289:0.1111111111111111 300:1.0 430:1.0 448:1.0 472:0.3333333333333333 475:1.0 520:0.3333333333333333 1010:0.5 2539:1.0 3186:0.25 3204:1.0 3289:1.0 3709:1.0 3721:1.0 3722:1.0 4135:1.0 4352:1.0 5247:1.0
16 4:0.14285714285714285 7:1.0 10:0.16666666666666666 44:0.25 51:0.14285714285714285 58:0.043478260869565216 61:0.09090909090909091 123:1.0 144:1.0 147:0.5 190:0.5 210:1.0 243:1.0 427:0.5 472:0.3333333333333333 478:1.0 811:1.0 819:1.0 1088:1.0 1488:1.0 1521:1.0 1668:1.0 1921:1.0 2169:0.5 2921:1.0 3196:1.0 3220:0.5 3527:0.6666666666666666 3758:0.5 4744:1.0 4788:1.0 4841:1.0 4953:1.0 6387:1.0
16 13:0.2 20:1.0 44:0.25 51:0.14285714285714285 61:0.18181818181818182 96:0.18181818181818182 144:3.0 157:0.25 162:0.2857142857142857 210:1.0 216:0.5 231:0.5 243:1.0 270:0.25 289:0.1111111111111111 300:1.0 447:1.0 472:0.6666666666666666 475:1.0 520:0.3333333333333333 527:0.1111111111111111 532:1.0 727:1.0 1277:1.0 1452:2.0 1802:0.1111111111111111 1950:1.0 1979:0.5 2604:1.0 3289:1.0 3303:0.2 3304:1.0 3320:1.0 3569:1.0 3630:1.0 3709:1.0 4228:1.0 5247:1.0
16 6:0.25 7:1.0 13:0.06666666666666667 15:3.0 16:1.0 42:0.3333333333333333 51:0.8571428571428571 56:0.3333333333333333 61:0.09090909090909091 104:0.09090909090909091 105:1.0 110:1.0 144:1.0 157:0.125 162:0.14285714285714285 213:1.0 226:1.0 231:0.5 273:1.0 314:1.0 480:1.0 488:1.0 533:0.16666666666666666 647:2.0 664:1.0 804:0.3333333333333333 810:1.0 811:2.0 943:1.0 1010:0.5 1923:0.3333333333333333 1930:1.0 2036:1.0 2213:1.0 2230:1.0 2754:1.0 2770:1.0 3216:1.0 3220:0.5 3404:0.5 3467:0.5 3794:1.0 3947:1.0 4529:1.0 4897:1.0 5441:1.0
16 10:0.08333333333333333 13:0.06666666666666667 16:1.0 38:0.14285714285714285 42:0.3333333333333333 51:0.2857142857142857 61:0.18181818181818182 86:0.06666666666666667 90:0.5 144:4.0 157:0.25 159:0.2 210:1.0 224:1.0 229:0.5 300:1.0 365:1.0 408:0.5 414:0.25 448:1.0 520:0.3333333333333333 555:1.0 614:0.5 730:0.2 739:1.0 1010:0.5 1145:1.0 1487:1.0 1711:1.0 2458:1.0 2624:1.0 2903:1.0 3186:0.125 3197:1.0 3204:1.0 3210:1.0 3357:1.0 3709:1.0 4009:1.0 4172:1.0 4213:0.5 5080:1.0 5081:1.0 6092:1.0
16 8:1.0 13:0.26666666666666666 16:1.0 20:1.0 38:0.2857142857142857 56:0.6666666666666666 66:0.5 86:0.03333333333333333 111:1.0 119:0.3333333333333333 127:0.25 144:1.0 157:0.25 162:0.14285714285714285 190:0.5 210:0.5 216:0.5 239:0.5 243:1.0 298:0.5 408:0.5 414:0.25 417:1.0 458:0.5 508:0.5 647:1.0 1145:1.0 1378:1.0 1550:1.0 1551:0.5 2604:1.0 2842:1.0 2843:1.0 3303:0.2 3304:1.0 3320:1.0 3747:1.0 5244:1.0 6092:1.0 6490:1.0
16 3:1.0 4:0.14285714285714285 13:0.06666666666666667 18:0.16666666666666666 20:2.0 36:0.08 38:0.14285714285714285 51:0.2857142857142857 68:1.0 86:0.06666666666666667 144:1.0 157:0.375 162:0.14285714285714285 180:1.0 204:0.05555555555555555 206:2.0 210:0.5 216:0.5 258:0.5 282:1.0 314:1.0 413:1.0 429:1.0 458:0.5 472:0.3333333333333333 532:1.0 555:1.0 589:1.0 619:0.5 623:1.0 702:1.0 1227:1.0 1529:1.0 1757:1.0 2081:0.5 2224:1.0 2236:1.0 2604:1.0 2843:1.0 3065:1.0 3194:1.0 3246:1.0 3303:0.2 3304:1.0 3305:1.0 3306:1.0 3307:1.0 3320:1.0 3416:1.0 3630:1.0 3744:1.0 3876:1.0 4210:0.5 4471:1.0 5601:1.0
16 7:1.0 13:0.13333333333333333 16:1.0 18:0.16666666666666666 38:0.14285714285714285 44:0.25 49:2.0 51:0.14285714285714285 66:0.5 157:0.375 162:0.14285714285714285 210:0.5 211:0.5 223:1.0 226:1.0 246:0.5 281:0.5 325:1.0 392:1.0 447:1.0 458:0.5 480:1.0 730:0.1 783:1.0 804:0.3333333333333333 966:1.0 1798:1.0 1835:1.0 2068:1.0 2694:1.0 3204:2.0 3412:1.0 3521:1.0 3811:1.0 4578:1.0 4631:1.0 4661:0.5 6193:1.0
16 10:0.08333333333333333 13:0.2 15:2.0 20:1.0 44:0.5 51:0.14285714285714285 56:0.3333333333333333 58:0.043478260869565216 84:1.0 86:0.03333333333333333 104:0.09090909090909091 144:1.0 157:0.125 169:0.25 231:0.5 282:1.0 312:1.0 427:0.5 647:2.0 730:0.1 735:1.0 811:1.0 1041:1.0 1088:1.0 1401:1.0 1884:1.0 1954:1.0 1965:0.5 2410:1.0 3186:0.125 3220:0.5 3244:1.0 3364:1.0 3662:1.0 3704:1.0 3968:1.0 4044:1.0 4217:1.0 4463:1.0 4555:1.0 5881:1.0
16 10:0.08333333333333333 13:0.26666666666666666 15:1.0 38:0.14285714285714285 56:0.3333333333333333 86:0.06666666666666667 119:0.3333333333333333 140:0.25 210:0.5 231:0.5 251:0.5 258:0.5 557:1.0 670:1.0 702:1.0 808:1.0 1010:0.5 1145:1.0 1452:1.0 1552:2.0 3018:1.0 3090:1.0 3811:1.0 4083:1.0 4127:1.0 5977:1.0 6456:1.0
16 13:0.2 16:1.0 38:0.14285714285714285 44:0.25 49:1.0 51:0.14285714285714285 56:0.3333333333333333 83:0.034482758620689655 123:1.0 130:0.5 140:0.5 157:0.25 206:1.0 210:0.5 226:1.0 258:0.5 281:0.5 325:1.0 383:1.0 385:0.5 387:1.0 441:0.5 567:1.0 626:1.0 730:0.1 808:1.0 1000:1.0 1041:1.0 1075:1.0 1345:1.0 1411:0.5 1446:1.0 1961:1.0 2631:0.5 2981:1.0 3204:1.0 3274:1.0 3385:1.0 3527:0.3333333333333333 3655:1.0 3747:1.0 4068:1.0 4127:1.0 4180:1.0 4304:1.0 4649:1.0 4961:1.0 6473:1.0 6530:1.0
16 13:0.06666666666666667 36:0.04 86:0.03333333333333333 111:1.0 119:0.3333333333333333 123:1.0 157:0.125 190:0.5 204:0.05555555555555555 258:0.5 270:0.25 336:1.0 432:1.0 730:0.1 811:1.0 872:1.0 2346:1.0 3090:1.0 3641:1.0 3811:1.0 4841:1.0 5256:1.0 5556:1.0
16 3:1.0 7:1.0 38:0.14285714285714285 49:1.0 50:1.0 66:0.25 84:1.0 157:0.25 231:0.5 269:1.0 281:0.5 282:1.0 367:0.3333333333333333 413:1.0 529:0.5 590:1.0 605:1.0 631:1.0 734:0.038461538461538464 864:1.0 1411:0.5 1624:1.0 1862:1.0 1980:1.0 2081:0.5 3345:1.0 3668:1.0 4572:1.0 5594:1.0
16 6:0.25 7:1.0 10:0.16666666666666666 13:0.06666666666666667 15:1.0 16:1.0 51:0.14285714285714285 58:0.043478260869565216 86:0.03333333333333333 144:1.0 157:0.125 169:0.25 227:1.0 231:0.5 448:1.0 520:0.3333333333333333 525:1.0 529:0.5 647:1.0 1970:1.0 2734:1.0 3186:0.125 3721:1.0 3734:1.0 4302:1.0 5310:1.0
16 6:0.25 13:0.26666666666666666 15:1.0 16:1.0 20:1.0 33:0.5 66:0.25 119:0.3333333333333333 140:0.25 144:2.0 157:0.25 162:0.14285714285714285 169:0.5 173:0.16666666666666666 205:1.0 206:1.0 210:0.5 211:1.5 216:0.5 270:0.25 313:1.0 327:1.0 458:0.5 532:1.0 627:1.0 707:0.5 721:1.0 783:1.0 784:1.0 793:1.0 1010:0.5 1452:1.0 1802:0.1111111111111111 1835:1.0 1927:1.0 1970:1.0 2604:1.0 2843:1.0 3160:1.0 3303:0.2 3304:1.0 3306:1.0 3320:1.0 3734:1.0 5840:1.0 6289:1.0
16 15:1.0 49:1.0 61:0.09090909090909091 144:2.0 159:0.2 210:0.5 229:0.5 289:0.1111111111111111 302:0.14285714285714285 520:0.3333333333333333 590:1.0 730:0.3 1000:1.0 1010:0.5 1657:1.0 3189:1.0 3190:1.0 3204:1.0 3263:1.0 3357:1.0 3600:1.0 3709:1.0 4961:1.0
16 13:0.2 38:0.14285714285714285 51:0.14285714285714285 56:0.6666666666666666 66:0.25 84:2.0 150:1.0 156:1.0 157:0.25 187:1.0 206:1.0 231:0.5 328:0.16666666666666666 365:1.0 367:0.3333333333333333 460:1.0 567:1.0 599:1.0 698:0.5 702:1.0 734:0.038461538461538464 943:1.0 1088:1.0 1166:1.0 1260:1.0 1474:1.0 1616:1.0 1645:1.0 1835:1.0 1950:1.0 2311:1.0 3159:1.0 3220:1.0 3498:1.0 3704:1.0 4317:1.0 4331:1.0 4415:1.0 5767:1.0 5813:1.0
16 7:1.0 15:1.0 36:0.04 44:0.25 51:0.42857142857142855 56:0.6666666666666666 66:0.25 127:0.25 157:0.125 169:0.25 206:2.0 210:0.5 231:1.0 300:1.0 367:0.3333333333333333 384:1.0 448:1.0 716:1.0 734:0.038461538461538464 960:1.0 1900:1.0 3032:1.0 3186:0.125 3220:0.5 3266:0.2 3306:1.0 3545:1.0 3721:1.0 4770:1.0 5625:1.0 6655:1.0
16 6:0.25 13:0.06666666666666667 16:1.0 26:1.0 44:0.25 51:0.5714285714285714 56:0.6666666666666666 66:0.25 86:0.1 144:1.0 153:1.0 206:1.0 229:0.5 282:1.0 335:1.0 410:1.0 414:0.25 472:0.3333333333333333 533:0.16666666666666666 734:0.038461538461538464 773:1.0 784:1.0 1145:1.0 1902:1.0 1931:1.0 1952:1.0 1970:1.0 2694:1.0 3026:1.0 3360:1.0 3396:1.0 3492:1.0 3516:1.0 3580:1.0 4691:1.0 4799:1.0 5749:1.0 6691:1.0
16 7:2.0 10:0.08333333333333333 13:0.06666666666666667 16:1.0 38:0.14285714285714285 49:2.0 51:0.2857142857142857 56:0.3333333333333333 66:0.25 84:1.0 313:1.0 430:1.0 570:1.0 614:0.5 874:1.0 1452:1.0 3339:1.0 4754:1.0
16 10:0.3333333333333333 13:0.06666666666666667 16:1.0 36:0.04 38:0.2857142857142857 44:0.25 58:0.043478260869565216 84:1.0 86:0.13333333333333333 123:1.0 144:1.0 261:1.0 281:0.5 282:1.0 295:1.0 302:0.14285714285714285 336:1.0 383:1.0 770:0.5 1083:0.5 1487:1.0 1884:1.0 1935:1.0 2604:2.0 2608:1.0 3204:1.0 3270:1.0 3827:1.0 4016:1.0 4568:1.0 5052:1.0
16 6:0.25 13:0.06666666666666667 20:1.0 36:0.04 38:0.14285714285714285 44:0.5 56:0.6666666666666666 58:0.13043478260869565 66:0.25 73:1.0 84:1.0 86:0.03333333333333333 96:0.09090909090909091 130:0.5 157:0.25 162:0.14285714285714285 210:0.5 216:0.5 413:1.0 458:0.5 532:1.0 541:1.0 647:1.0 703:1.0 707:0.5 1301:1.0 1645:2.0 2604:1.0 2843:1.0 3303:0.2 3304:1.0 3306:1.0 3320:1.0 3388:1.0 3547:1.0 4827:1.0 5972:1.0 6215:1.0 6216:1.0
16 10:0.08333333333333333 13:0.06666666666666667 14:1.0 16:1.0 181:0.3333333333333333 210:0.5 223:1.0 231:0.5 363:0.5 448:1.0 927:1.0 945:1.0 3186:0.125 3204:1.0 3429:1.0 3569:1.0 3662:1.0 3832:1.0 3833:1.0 3836:1.0
16 157:0.125 281:0.5 943:1.0 3186:0.125 3506:1.0
16 13:0.06666666666666667 16:1.0 28:1.0 38:0.2857142857142857 61:0.09090909090909091 84:1.0 96:0.09090909090909091 144:2.0 157:0.125 210:0.5 265:0.3333333333333333 520:0.3333333333333333 619:0.5 730:0.1 804:0.3333333333333333 1671:1.0 2311:1.0 3210:1.0 3263:1.0 3357:1.0 3709:1.0
16 13:0.13333333333333333 16:1.0 20:1.0 38:0.2857142857142857 43:0.5 44:0.25 51:0.2857142857142857 56:0.3333333333333333 61:0.09090909090909091 66:0.25 144:2.0 152:0.5 157:0.125 162:0.14285714285714285 190:1.0 200:1.0 210:1.0 251:0.5 265:0.3333333333333333 328:0.16666666666666666 363:0.5 412:1.0 448:1.0 479:1.0 784:1.0 804:0.3333333333333333 1452:1.0 1802:0.1111111111111111 2311:1.0 2604:1.0 2843:1.0 3303:0.2 3304:1.0 3318:1.0 3319:1.0 3320:1.0 4661:0.5 6530:1.0
16 6:0.25 10:0.08333333333333333 51:0.14285714285714285 66:0.25 157:0.125 265:0.3333333333333333 619:0.5 848:1.0 1046:1.0 1345:1.0 1835:2.0 2212:1.0 2261:1.0 3058:1.0 3204:1.0 3521:1.0
16 7:2.0 10:0.16666666666666666 38:0.14285714285714285 56:0.3333333333333333 58:0.043478260869565216 86:0.06666666666666667 122:1.0 236:1.0 472:0.3333333333333333 590:1.0 734:0.038461538461538464 770:0.5 809:1.0 903:1.0 1046:1.0 1249:1.0 1870:1.0 3612:1.0 3996:1.0
16 7:1.0 13:0.2 15:3.0 16:1.0 49:1.0 51:0.2857142857142857 56:0.3333333333333333 58:0.043478260869565216 61:0.09090909090909091 66:0.25 83:0.034482758620689655 96:0.09090909090909091 157:0.125 181:0.3333333333333333 206:1.0 231:0.5 300:1.0 328:0.16666666666666666 365:1.0 448:1.0 514:1.0 647:1.0 730:0.1 914:1.0 1190:1.0 1541:1.0 1657:1.0 1738:1.0 1988:1.0 2101:1.0 2215:1.0 2539:1.0 2653:1.0 3100:1.0 3220:1.0 3469:0.5 3721:1.0 4448:1.0 5666:1.0 5667:1.0 5749:1.0 6423:1.0
16 7:1.0 13:0.13333333333333333 26:1.0 44:0.25 46:1.0 51:0.14285714285714285 83:0.034482758620689655 157:0.125 190:0.5 210:0.5 264:1.0 280:0.14285714285714285 300:1.0 458:0.5 538:1.0 610:1.0 687:1.0 998:1.0 1166:1.0 1258:0.5 1293:0.5 1411:0.5 1657:1.0 1724:0.3333333333333333 2013:1.0 3100:1.0 3220:1.0 3294:1.0 3947:1.0 4082:1.0 5038:1.0
16 6:0.25 13:0.13333333333333333 15:1.0 16:2.0 33:0.5 44:0.25 51:0.2857142857142857 58:0.043478260869565216 61:0.09090909090909091 84:1.0 157:0.125 169:0.25 181:0.3333333333333333 210:0.5 281:0.5 282:1.0 412:1.0 453:1.0 460:1.0 527:0.1111111111111111 647:1.0 785:1.0 811:1.0 1373:0.25 1490:1.0 1927:1.0 2102:1.0 2260:1.0 2343:1.0 3412:1.0 3529:1.0 3590:1.0 4210:0.5
16 7:1.0 13:0.13333333333333333 38:0.2857142857142857 56:0.6666666666666666 57:0.5 86:0.1 127:0.25 144:1.0 157:0.125 162:0.14285714285714285 180:0.5 206:1.0 248:1.0 265:0.3333333333333333 313:1.0 365:1.0 447:1.0 514:1.0 530:1.0 533:0.16666666666666666 563:1.0 730:0.1 793:1.0 1334:1.0 1870:1.0 1923:0.3333333333333333 3323:1.0 3324:1.0 3325:1.0 3832:1.0 3833:1.0 4691:1.0 5833:1.0 6024:1.0
16 10:0.08333333333333333 13:0.06666666666666667 44:0.25 51:0.14285714285714285 130:0.5 140:0.25 144:1.0 157:0.125 546:2.0 1877:1.0 1906:1.0 2394:1.0 2543:1.0 3487:1.0 3495:1.0 5095:1.0 5096:1.0 5097:1.0 6092:1.0 6100:1.0
16 13:0.06666666666666667 38:0.14285714285714285 44:0.25 50:1.0 66:0.25 204:0.05555555555555555 239:0.5 529:0.5 793:1.0 2346:1.0 2351:1.0 2608:1.0 4487:1.0
16 13:0.13333333333333333 18:0.16666666666666666 20:1.0 51:0.14285714285714285 56:0.6666666666666666 66:0.25 144:1.0 157:0.25 162:0.14285714285714285 210:0.5 211:0.5 216:0.5 319:0.5 458:0.5 563:1.0 707:0.5 752:0.25 1010:0.5 1452:1.0 1802:0.1111111111111111 1835:2.0 2604:1.0 2843:1.0 3204:1.0 3303:0.2 3304:1.0 3320:1.0 3521:1.0 4271:1.0
16 13:0.13333333333333333 15:1.0 16:2.0 42:0.3333333333333333 157:0.125 210:1.0 224:1.0 512:0.5 798:1.0 1010:0.5 3412:1.0 3472:1.0 4210:0.5 4212:1.0 5150:1.0 5532:1.0
16 13:0.06666666666666667 56:0.3333333333333333 58:0.08695652173913043 204:0.05555555555555555 213:1.0 281:0.5 282:1.0 647:1.0 880:1.0 1083:0.5 3317:1.0 3734:1.0 3735:1.0 4268:1.0 4899:1.0
16 7:2.0 10:0.08333333333333333 13:0.06666666666666667 20:1.0 44:0.25 51:0.14285714285714285 86:0.03333333333333333 90:0.5 210:0.5 231:0.5 248:1.0 319:0.5 784:1.0 810:1.0 822:0.5 1107:1.0 1152:0.5 1552:1.0 1663:0.5 1835:1.0 1961:1.0 1964:1.0 1965:0.5 1983:1.0 2727:1.0 3204:1.0 3388:1.0 3501:1.0 3576:1.0 3650:1.0 4210:1.0 4552:1.0
16 13:0.13333333333333333 15:1.0 16:1.0 38:0.14285714285714285 42:0.3333333333333333 51:0.14285714285714285 74:1.0 83:0.034482758620689655 86:0.1 144:1.0 150:1.0 160:0.25 190:0.5 223:1.0 229:0.5 289:0.1111111111111111 429:1.0 472:0.3333333333333333 491:1.0 730:0.1 1010:0.5 1668:1.0 1907:1.0 3204:1.0 5768:1.0
16 7:1.0 16:1.0 157:0.25 162:0.14285714285714285 174:0.5 206:1.0 270:0.25 335:1.0 447:1.0 590:1.0 735:1.0 1255:0.5 3204:1.0 3244:1.0 3324:1.0 3527:0.3333333333333333 3588:0.5 3948:1.0 4180:1.0 4268:1.0 4271:1.0 4631:1.0 5606:1.0
16 6:0.25 18:0.16666666666666666 51:0.42857142857142855 56:0.3333333333333333 57:0.5 66:0.5 90:0.5 104:0.18181818181818182 157:0.125 169:0.25 229:0.5 231:0.5 270:0.25 312:1.0 1075:1.0 1835:1.0 2000:1.0 2224:1.0 2259:1.0 2743:1.0 3192:1.0 3204:1.0 3681:1.0 3724:1.0 4271:1.0 5664:1.0
16 13:0.06666666666666667 16:1.0 43:0.5 56:0.6666666666666666 58:0.043478260869565216 66:0.25 86:0.03333333333333333 157:0.125 159:0.2 213:1.0 219:1.0 223:1.0 281:0.5 325:1.0 331:1.0 540:1.0 704:0.5 730:0.1 804:0.3333333333333333 1551:0.5 1777:1.0 3204:1.0 3207:1.0 3734:1.0 3735:1.0 4180:1.0 4271:1.0 4565:1.0 5342:1.0
16 10:0.08333333333333333 56:0.3333333333333333 96:0.09090909090909091 157:0.125 365:1.0 411:1.0 730:0.1 734:0.038461538461538464 885:1.0 2662:1.0 3723:1.0 4268:1.0 4271:1.0 6260:1.0
16 7:1.0 13:0.26666666666666666 20:1.0 38:0.2857142857142857 44:0.25 51:0.2857142857142857 61:0.09090909090909091 86:0.03333333333333333 157:0.125 210:1.0 231:0.5 263:1.0 275:1.0 392:1.0 400:1.0 413:1.0 430:1.0 472:0.3333333333333333 548:1.0 636:0.5 670:1.0 1693:1.0 3017:1.0 3026:1.0 3186:0.125 3196:1.0 3204:1.0 3220:1.0 3317:1.0 3360:1.0 3467:0.5 3758:1.0 4229:1.0 4578:1.0 4744:1.0 5153:0.5 5952:1.0 6386:1.0 6437:1.0
16 6:0.25 7:2.0 13:0.06666666666666667 16:2.0 20:1.0 44:0.25 51:0.2857142857142857 104:0.09090909090909091 204:0.05555555555555555 264:1.0 514:2.0 529:0.5 713:2.0 723:0.3333333333333333 739:1.0 1693:1.0 1775:1.0 1794:0.5 3220:0.5 3317:1.0 3467:0.5
16 7:1.0 13:0.13333333333333333 15:1.0 16:1.0 51:0.14285714285714285 66:0.25 157:0.25 365:1.0 430:1.0 784:1.0 1255:0.5 1488:1.0 2213:1.0 3327:1.0 3451:1.0 3467:0.5 3758:0.5 3948:1.0 6027:1.0
16 6:0.25 13:0.06666666666666667 16:1.0 66:0.25 157:0.125 281:0.5 723:0.3333333333333333 739:1.0 1166:1.0 1867:1.0 3204:1.0 3948:1.0 4331:1.0
16 8:0.5 10:0.08333333333333333 13:0.13333333333333333 26:1.0 44:0.25 51:0.14285714285714285 56:0.3333333333333333 84:2.0 86:0.06666666666666667 111:1.0 127:0.5 144:1.0 157:0.125 191:1.0 194:1.0 204:0.05555555555555555 210:0.5 231:0.5 236:1.0 242:1.0 248:1.0 289:0.1111111111111111 317:1.0 385:0.5 448:1.0 590:1.0 647:1.0 698:0.5 1107:1.0 1507:1.0 1600:1.0 1890:1.0 2295:1.0 2363:1.0 2539:1.0 3186:0.125 3216:2.0 3249:1.0 3443:1.0 3445:1.0 3580:1.0 3688:1.0 3894:1.0 4130:1.0 4681:1.0 5748:1.0
16 7:1.0 13:0.06666666666666667 26:1.0 51:0.14285714285714285 58:0.043478260869565216 83:0.034482758620689655 84:1.0 86:0.1 119:0.3333333333333333 157:0.125 162:0.14285714285714285 206:1.0 210:1.0 236:1.0 270:0.5 312:1.0 335:1.0 352:1.0 400:1.0 472:0.3333333333333333 525:1.0 546:1.0 647:1.0 1010:0.5 1139:1.0 1154:0.5 1385:1.0 1693:1.0 2936:1.0 3339:1.0 3423:1.0 3968:1.0 5843:1.0 5926:1.0 6017:1.0 6371:1.0 6424:1.0
16 1:1.0 10:0.16666666666666666 13:0.2 16:1.0 38:0.14285714285714285 49:1.0 51:0.14285714285714285 56:0.6666666666666666 78:1.0 90:0.5 96:0.09090909090909091 117:1.0 144:1.0 157:0.125 190:0.5 211:0.5 231:0.5 277:0.3333333333333333 302:0.14285714285714285 520:0.3333333333333333 613:1.0 673:1.0 1273:1.0 1411:0.5 1645:1.0 1900:0.5 2604:1.0 3220:0.5 3263:1.0 3357:1.0 3709:1.0 4302:1.0 4735:1.0 4740:2.0 4741:1.0
16 4:0.14285714285714285 7:1.0 8:0.5 10:0.08333333333333333 13:0.06666666666666667 44:0.25 49:1.0 51:0.5714285714285714 56:0.3333333333333333 146:1.0 157:0.125 211:0.5 231:0.5 313:1.0 472:0.6666666666666666 520:0.3333333333333333 530:1.0 548:1.0 613:1.0 614:0.5 647:1.0 1006:1.0 1605:1.0 1887:1.0 1971:1.0 3204:1.0 3727:1.0 3728:1.0 3729:1.0 3730:1.0 4864:1.0 5210:1.0 5294:1.0 5622:1.0
16 10:0.08333333333333333 15:1.0 20:2.0 44:0.5 56:0.3333333333333333 74:1.0 111:1.0 126:0.3333333333333333 144:1.0 157:0.125 162:0.14285714285714285 210:0.5 216:0.5 275:1.0 289:0.1111111111111111 298:0.5 458:0.5 472:0.3333333333333333 475:1.0 532:1.0 664:1.0 707:0.5 730:0.1 1010:0.5 1145:1.0 1720:1.0 1887:1.0 2604:1.0 2843:1.0 3204:1.0 3303:0.2 3304:1.0 3306:1.0 3320:1.0 4364:1.0 4897:1.0
16 10:0.08333333333333333 13:0.13333333333333333 15:1.0 16:2.0 20:1.0 51:0.2857142857142857 56:0.3333333333333333 84:1.0 157:0.25 162:0.2857142857142857 163:1.0 169:0.25 210:0.5 211:0.5 216:0.5 217:1.0 227:1.0 231:0.5 282:1.0 302:0.14285714285714285 313:2.0 319:0.5 336:1.0 367:0.3333333333333333 413:1.0 448:1.0 458:0.5 514:1.0 1010:0.5 1286:1.0 1452:1.0 1802:0.1111111111111111 1950:1.0 2217:1.0 2539:1.0 2604:1.0 2843:1.0 3186:0.125 3204:1.0 3253:1.0 3303:0.2 3304:1.0 3305:1.0 3307:1.0 3320:1.0
16 7:2.0 13:0.06666666666666667 16:1.0 49:1.0 51:0.2857142857142857 66:0.25 121:1.0 162:0.14285714285714285 169:0.25 210:0.5 281:0.5 289:0.1111111111111111 366:1.0 530:1.0 619:0.5 730:0.1 784:2.0 1950:1.0 2386:1.0 3196:1.0 6708:1.0
16 3:1.0 15:1.0 16:1.0 56:0.3333333333333333 61:0.18181818181818182 157:0.25 162:0.14285714285714285 210:0.5 281:0.5 282:1.0 365:1.0 730:0.2 784:1.0 1007:1.0 1008:2.0 1835:1.0 2662:1.0 3204:1.0 3655:1.0 3729:1.0 3792:1.0 3948:1.0 4819:0.5 5519:1.0 6406:1.0
16 13:0.06666666666666667 16:2.0 36:0.04 38:0.14285714285714285 44:0.25 49:2.0 51:0.14285714285714285 56:0.3333333333333333 86:0.03333333333333333 90:0.5 96:0.09090909090909091 111:1.0 152:0.5 157:0.125 159:0.2 211:0.5 214:1.0 414:0.25 472:0.3333333333333333 1551:0.5 1923:0.3333333333333333 1935:1.0 2249:1.0 2346:1.0 2962:1.0 3032:1.0 3061:1.0 3255:0.5 3328:1.0 4548:1.0 6088:1.0
16 4:0.14285714285714285 13:0.06666666666666667 44:0.25 50:1.0 51:0.14285714285714285 56:0.6666666666666666 90:0.5 157:0.25 199:0.5 248:1.0 300:1.0 636:0.5 734:0.038461538461538464 773:1.0 798:1.0 808:1.0 934:1.0 1010:0.5 1103:1.0 1240:1.0 1452:1.0 1835:1.0 2653:1.0 3004:1.0 3246:1.0 3255:0.5 3263:1.0 5490:1.0
16 13:0.06666666666666667 19:1.0 36:0.08 38:0.14285714285714285 56:0.3333333333333333 66:0.25 78:1.0 86:0.06666666666666667 90:0.5 99:1.0 147:0.5 153:1.0 227:1.0 270:0.25 313:1.0 365:1.0 458:0.5 472:0.3333333333333333 503:1.0 520:0.3333333333333333 734:0.038461538461538464 757:1.0 770:0.5 831:0.3333333333333333 1075:1.0 1293:0.5 1558:1.0 2138:1.0 3220:0.5 3364:1.0 4217:1.0 4242:1.0 4648:1.0 6368:1.0
16 6:0.25 8:0.5 15:1.0 44:0.25 56:0.3333333333333333 61:0.09090909090909091 157:0.25 162:0.14285714285714285 210:0.5 231:0.5 448:1.0 533:0.16666666666666666 730:0.1 1010:0.5 1154:0.5 1411:0.5 1835:1.0 2833:1.0 4161:1.0 4535:1.0
16 6:0.25 7:1.0 10:0.08333333333333333 12:1.0 13:0.4666666666666667 16:2.0 18:0.16666666666666666 38:0.14285714285714285 44:0.25 84:1.0 108:1.0 140:0.25 159:0.4 259:1.0 300:1.0 313:2.0 365:1.0 454:1.0 475:2.0 792:1.0 819:1.0 943:1.0 997:1.0 1131:1.0 1277:1.0 1693:1.0 2202:1.0 2506:1.0 2694:1.0 3196:1.0 3200:1.0 3262:1.0 3998:1.0 5859:1.0 6041:1.0 6102:1.0
16 10:0.08333333333333333 13:0.13333333333333333 20:1.0 38:0.14285714285714285 44:0.25 86:0.03333333333333333 117:1.0 157:0.125 159:0.2 289:0.1111111111111111 310:1.0 335:1.0 392:1.0 408:0.5 567:1.0 626:1.0 804:0.6666666666666666 966:1.0 1387:1.0 3200:1.0 4199:1.0
16 36:0.04 44:0.25 51:0.14285714285714285 86:0.03333333333333333 90:0.5 144:1.0 230:1.0 282:1.0 313:1.0 630:0.3333333333333333 953:1.0 1646:1.0 1959:0.5 3838:1.0 4210:0.5 4271:1.0 4620:1.0 4799:1.0 5586:1.0
16 1:1.0 13:0.13333333333333333 16:2.0 36:0.08 39:0.5 42:0.3333333333333333 44:0.5 46:1.0 51:0.2857142857142857 61:0.09090909090909091 66:0.25 86:0.03333333333333333 174:0.5 210:0.5 223:1.0 325:1.0 458:0.5 472:0.3333333333333333 500:1.0 619:1.0 784:1.0 830:1.0 998:1.0 1293:0.5 2024:1.0 2066:1.0 2346:1.0 2549:1.0 2580:1.0 3200:1.0 3220:0.5 3390:1.0 3467:0.5 3696:1.0 3758:0.5 3762:2.0 4031:1.0 5984:1.0
16 7:1.0 13:0.13333333333333333 16:1.0 33:0.5 38:0.14285714285714285 44:0.25 51:0.14285714285714285 56:0.3333333333333333 74:1.0 140:0.25 187:1.0 204:0.05555555555555555 210:0.5 475:1.0 730:0.1 919:1.0 1095:1.0 1203:1.0 3200:1.0 3428:1.0 4104:1.0 4157:1.0 4309:1.0
16 13:0.2 16:1.0 20:1.0 38:0.14285714285714285 44:0.25 51:0.14285714285714285 66:0.25 86:0.03333333333333333 157:0.25 206:1.0 231:0.5 325:1.0 448:1.0 730:0.1 778:1.0 927:1.0 1010:0.5 1095:1.0 1189:1.0 2000:1.0 2539:1.0 2604:1.0 3186:0.125 3204:1.0 3283:1.0 3303:0.2 3347:1.0 3396:1.0 3445:1.0 3753:1.0 4309:1.0 4317:1.0 6006:1.0 6047:1.0
16 4:0.14285714285714285 8:0.5 10:0.08333333333333333 18:0.16666666666666666 20:2.0 33:0.5 44:0.5 49:1.0 51:0.2857142857142857 56:0.6666666666666666 65:0.3333333333333333 66:0.5 96:0.09090909090909091 101:0.3333333333333333 104:0.09090909090909091 140:0.25 144:1.0 157:0.125 178:1.0 210:1.0 270:0.25 336:1.0 520:0.3333333333333333 535:0.25 734:0.038461538461538464 752:0.25 804:0.3333333333333333 822:0.5 1010:0.5 1229:1.0 1532:1.0 1626:1.0 1821:0.5 1835:1.0 2081:0.5 2551:1.0 2746:1.0 3243:1.0 3551:1.0 4617:1.0 6530:1.0
|
6f7d66daf420076db626d80bcbc75b11f0c8992b | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH3/EX3.31/ch3_31.sci | 1f636ec285c40cf6d817f9b6c01c249ef43a1b16 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 475 | sci | ch3_31.sci | //to calculate %voltage reg and efficiency
clc;
P=500000;
V1=2200;
V2=1100;
V0=110;
I0=10;
P0=400;
Y0=I0/V0;
Gi=P0/(V0^2);
Bm=sqrt(Y0^2-Gi^2);
Vsc=90;
Isc=20.5;
Psc=808;
Z=Vsc/Isc;
R=Psc/Isc^2;
X=sqrt(Z^2-R^2);
TR=V1/V2;
Gi_HV=Gi/TR^2;
Bm_HV=Bm/TR^2;
R_LV=R/TR^2;
X_LV=X/TR^2;
I2=P/V2;
pf=.8;
Th=acos(pf);
dV=I2*(R_LV*cos(Th)+X_LV*sin(Th));
VR=(dV/V2)*100; disp(VR,'voltage regulation(%)');
Pi=P0;
Pc=Psc;
n=P*100/(P+Pi+Pc);disp(n,'eff(%)'); |
d95e800bb14eb045d5dd9d5e3ca5978785233830 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/sci2blif_added_blocks/mite_FG.sce | 0bdb480c36bd61e320cd6aed13a6ae7c5747f802 | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 1,667 | sce | mite_FG.sce | //****************************** MITE***********************************
if (blk_name.entries(bl) =='mite_FG') then
plcvpr=%t
global mite_count
mite_count=mite_count+1;
for ss=1:scs_m.objs(bl).model.opar(1)
mputl("# MITE1",fd_w);
if scs_m.objs(bl).model.rpar(1) == 2
mputl(".subckt mite in[0]=net"+string(blk(blk_objs(bl),2))+"_"+string(1)+" in[1]=net"+string(blk(blk_objs(bl),3))+"_"+string(ss)+" in[2]=net"+string(blk(blk_objs(bl),4))+"_"+string(ss)+" out=net"+ string(blk(blk_objs(bl),2+numofip))+"_"+string(ss)+" #mite_cmirror =0&mite_fg0 ="+string(sprintf('%1.3e',scs_m.objs(blk_objs(bl)).model.opar(2*ss))),fd_w);
else
mputl(".subckt mite in[0]=net"+string(blk(blk_objs(bl),2))+"_"+string(1)+" in[1]=net"+string(blk(blk_objs(bl),3))+"_"+string(1)+" in[2]=net"+string(blk(blk_objs(bl),4))+"_"+string(1)+" out=net"+ string(blk(blk_objs(bl),2+numofip))+"_"+string(ss)+" #mite_fg0 ="+string(sprintf('%1.3e',scs_m.objs(blk_objs(bl)).model.opar(2)(ss))),fd_w);
end
//string(sprintf('%e',scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*(22+4-1)+ss)))
mputl(" ",fd_w);
if scs_m.objs(bl).model.rpar(1) == 1 then
select board_num
case 2 then
plcloc=[plcloc;'net'+ string(blk(blk_objs(bl),2+numofip))+"_"+string(ss),string(scs_m.objs(bl).model.rpar(2))+' '+string(scs_m.objs(bl).model.rpar(3))+' 0'];
case 3 then
plcloc=[plcloc;'net'+ string(blk(blk_objs(bl),2+numofip))+"_"+string(ss),string(scs_m.objs(bl).model.rpar(2))+' '+string(scs_m.objs(bl).model.rpar(3))+' 0'];
end
end
end
end
|
e894586e4d13beab3c2e8eaa3aed6314701dd182 | 494b677053e1199325a80808377463794e1003e5 | /experiments/irprop-c/irprop-c/results/Ignore-MV.iRProp+-C.vehicle/result2s0.tst | b91a9a0908ee8be2bba934cdc1b5d28c2d643609 | [] | no_license | kylecblyth/IIS-Project | 92fb0770addced8022817470f974bf5191bfe05d | abf66fd98d9b6c7c3a0fbc254ef4026641338489 | refs/heads/master | 2020-06-12T19:41:02.430510 | 2016-12-07T10:35:31 | 2016-12-07T10:35:31 | 75,764,815 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,578 | tst | result2s0.tst | @relation vehicle
@attribute COMPACTNESS integer[73,119]
@attribute CIRCULARITY integer[33,59]
@attribute DISTANCECIRCULARITY integer[40,112]
@attribute RADIUSRATIO integer[104,333]
@attribute PRAXISASPECTRATIO integer[47,138]
@attribute MAXLENGTHASPECTRATIO integer[2,55]
@attribute SCATTERRATIO integer[112,265]
@attribute ELONGATEDNESS integer[26,61]
@attribute PRAXISRECTANGULAR integer[17,29]
@attribute LENGTHRECTANGULAR integer[118,188]
@attribute MAJORVARIANCE integer[130,320]
@attribute MINORVARIANCE integer[184,1018]
@attribute GYRATIONRADIUS integer[109,268]
@attribute MAJORSKEWNESS integer[59,135]
@attribute MINORSKEWNESS integer[0,22]
@attribute MINORKURTOSIS integer[0,41]
@attribute MAJORKURTOSIS integer[176,206]
@attribute HOLLOWSRATIO integer[181,211]
@attribute class {van,saab,bus,opel}
@data
van van
bus bus
saab opel
opel saab
saab opel
bus bus
opel opel
van van
van van
bus bus
opel opel
van van
van van
bus bus
van van
bus bus
opel opel
van van
saab opel
opel opel
bus bus
van van
opel opel
bus bus
bus bus
opel van
saab saab
van van
van van
van van
saab saab
saab opel
saab saab
bus bus
bus bus
opel opel
opel bus
opel van
van van
bus bus
bus bus
bus bus
van van
bus bus
saab saab
van van
bus bus
bus bus
saab opel
saab saab
van van
opel opel
opel opel
saab opel
van van
saab saab
opel opel
opel van
opel opel
van van
opel opel
saab opel
saab saab
bus bus
bus bus
saab saab
opel opel
saab saab
saab saab
bus bus
saab saab
opel opel
saab saab
bus bus
saab saab
van van
opel opel
saab saab
bus bus
van van
opel bus
bus bus
opel opel
saab saab
van van
|
bbfd89af9c4e545a7fa4f8e23ee8e5ffd1caf5e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2753/CH3/EX3.12/Ex3_12.sce | 10ad30ff99a2668628099b97e5cf498ffa493893 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 318 | sce | Ex3_12.sce | //Example 3.12:
clc;
clear;
close;
//given data :
Ie=8.4; // in mA
cr=0.8/100;// carriers recombine in base in %
Ib=cr*Ie;
format('v',6)
disp(Ib,"(a). The base current,Ib(mA) = ")
Ic=Ie-Ib;
format('v',5)
disp(Ic,"(b). The collector current,Ic(mA) = ")
alfa=Ic/Ie;
format('v',6)
disp(alfa,"(c). the value of alfa = ")
|
c172f4e75d12992a520ba5db4f102d3ce5a125d6 | bb44d6eb6adf8f21077f2a49f2eb44d2424b2a5b | /Asign 3 bisection.sci | dc632069c1ffd248cfcdfb9d11c1ce188da05398 | [] | no_license | prasadovhal/Scilab-Codes | c8ccc49feba4243d092d8a1eba7a708eb95dc89e | 3af5566d62b1f1b6cf080ec20391c39b9d61897d | refs/heads/master | 2020-03-29T16:50:45.738023 | 2018-09-24T16:05:50 | 2018-09-24T16:05:50 | 150,130,310 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | sci | Asign 3 bisection.sci |
function [polyn]=bisect(x)
polyn=3*x + sin(x) - exp(x)
endfunction
function x3= root()
x1=input("enter min initial guess= ")
x2=input("enter max initial guess= ")
e=0.00001
x3=(x1+x2)/2
while (abs(x1-x3)>e & abs(x2-x3)>e)
if (bisect(x1)*bisect(x3)<0) then
x2=x3
else
x1=x3
end
disp(x3)
x3=(x1+x2)/2
end
endfunction
|
2f52265c7cfa45d5165f1bb32f0075e0ed508efe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1247/CH3/EX3.6/example3_6.sce | 1d59206190ed607b683df33d94f90bb78259c292 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example3_6.sce | clear;
clc;
// Stoichiometry
// Chapter 3
// Material Balances Without Chemical Reaction
// Example 3.6
// Page 63
printf("Example 3.6, Page 63 \n \n");
// solution
m = 170 //[Nm^3/h] air (basis)
m1 = 50*.99 //[Nm^3/h] N2 content of the stream
m2 = 50*.01 //[Nm^3/h]
N = m*.79-m1 // [Nm^3/h] N2
O = m*.21-m2 // [Nm^3/h] O2
V1 = N*100/(N+O)
V2 = O*100/(N+O)
printf("Vol percent of N2 is "+string(V1)+" and Vol percent of O2 is "+string(V2)+".")
|
6a9b7d31cdcf403af1c0f261d61b18ecbe315b93 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3683/CH19/EX19.4/Ex19_4.sce | 430eca029a1ec3e425c44d45feb4ba8c7eab8c78 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,421 | sce | Ex19_4.sce | fck=15//in MPa
fy=415//in MPa
MF=1.4//modification factor
//let a be span to depth ratio
l=1//span, in m
a=MF*7
D=l*1000/a//in mm
D=105//assume, in mm
//to calculate loading
W1=25*(D/10^3)*1.5//self-weight, in kN/m
W2=0.5*1.5//finish, in kN/m
W3=0.75*1.5//live load, in kN/m
W=W1+W2+W3//in kN/m
Wu=1.5*W//in kN/m
lef=l+0.23/2//effective span, in m
Mu=Wu*lef/2//in kN-m
//check for depth
d=sqrt(Mu*10^6/(0.138*fck*1500))//in mm
dia=12//assume 12 mm dia bars
D=d+12/2+15//<105, hence OK
D=100//assume, in mm
d=D-dia/2-15//in mm
//steel
//Xu=0.87*fy*Ast/0.36/fck/b = a*Ast
a=0.87*fy/0.36/fck/1.5/10^3
//using Mu=0.87 fy Ast (d-0.416 Xu), we get a quadratic equation
p=0.87*fy*0.416*a
q=-0.87*fy*d
r=Mu*10^6
Ast=(-q-sqrt(q^2-4*p*r))/2/p//in sq mm
//provide 8 mm dia bars
dia=8//in mm
s1=1500*0.785*dia^2/Ast//>3d=3x79=237 mm
s1=235//in mm
Ads=0.12/100*1000*D//distribution steel, in sq mm
//assume 6 mm dia bars
s2=1000*0.785*6^2/Ads//in mm
s2=235//round-off, in mm
Tbd=1.6//in MPa
Ld=dia*0.87*fy/4/Tbd//in mm
Ld=452//in mm
Tv=Wu*10^3/1500/d//in MPa
Ast=1500*0.785*8^2/235//in sq mm
pt=Ast/1500/d*100//in %
//for M15 and pt=0.26
Tc=0.35//in MPa
//as Tc>Tv, no shear reinforcement required
mprintf("Summary of design\nThickness of slab = %d mm\nCover = 15 mm\nMain steel = 8 mm dia @ %d mm c/c\nDevelopment length = %d mm\nDistribution steel = 6 mm dia @ %d mm c/c",D,s1,Ld,s2)
|
191b32a4e63c53f535edee046241c059d6d8be05 | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpic2escifiles6/Sfcutoffrawparadata.sci | 546f66d8963ad592724efd999c0a62ea20e4f883 | [] | 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 | 220 | sci | Sfcutoffrawparadata.sci | // 08.09.19
// 10.02.17
function Out=Sfcutoffrawparadata(varargin)
Ms=list('raw','para');
for I=1:length(varargin)
Tmp=varargin(I);
Ms=Mixjoin(Ms,list(Tmp));
end;
Out=Makesfcutoffdata(Ms);
endfunction;
|
122ce8b8ff531a0849398ac6ed8e724cd4d630e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2837/CH13/EX13.7/Ex13_7.sce | 877c184f691771d38bf93a8e7922c35f17261446 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sce | Ex13_7.sce | clc
clear
//Initialization of variables
x=[0.74 0.06 0.01] //mole fraction of C, H and S respectively
y=[8/3 8 1] //Pounds O2 per pound substance of C,H and S respectively
oxy=0.08 //Oxygen in coal
z=0.232 //mass of coal
//calculations
pou=x.*y
tot=sum(pou)
oxy2=tot-oxy
air=oxy2/z
//results
printf("Theoretical air fuel ratio = %.2f lb of air per pound of coal",air)
|
3adcd7230ba86b02a471e1f8264a778c76c98ac1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3511/CH7/EX7.6/Ex7_6.sce | a33ca376d52ccf5977b30212ef62fdbcfc96f3c1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,067 | sce | Ex7_6.sce | clc;
ci=600*1000/3600; // Velocity in m/s
Cpa=1.005;// Specific heat of air at constant pressure in kJ/kg K
Cpg=1.147;// Specific heat of fuel at constant pressure in kJ/kg K
rg=1.33;// Specific heat ratio of fuel
r=1.4; // Specific heat ratio of air
R=287; // Characteristic gas constant in J/kg K
pa=0.458; // Ambient pressure in bar
Ta=-15+273; // Ambient temperature in kelvin
rp=9; // pressure ratio
T03=1200; // Maximum temperature in kelvin
eff_ram=0.9; // Intake duct efficiency
eff_c=0.89; // Compressor efficiency
eff_T=0.93; // Turbine efficiency
eff_m=0.98; // Mechanical efficiency of transmission
cj=ci
T_01=Ta+(ci^2/(2*Cpa*10^3));
p_01=pa*(T_01/Ta)^(r/(r-1));
p01=eff_ram*(p_01-pa);
p02=rp*p01;
T01=T_01;
T_02=T01*rp^((r-1)/r);
T02=T01+(T_02-T01)/(eff_c);
T_04=T03*(1/rp)^((rg-1)/rg);
T04=T03-eff_T*(T03-T_04);
WN=Cpg*(T03-T04)-Cpa*(T02-T01)/eff_m;// net work done
eff_th=WN/(Cpg*(T03-T02)); // Thermal efficiency
disp ("kJ/kg (roundoff error)",WN,"Net work done = ");
disp ("%",eff_th*100,"Thermal efficiency = ");
|
05c9164fd5089e4cb1e9ff2a86c8baea5b555451 | 6b85d1958ff11075634ed9e0f6dbef2de9548f1b | /ANN_Toolbox/macros/ann_FF_init_nb.sci | 55cd5d21c59125db0105c43f6918ae01c458b2fa | [
"Unlicense"
] | permissive | ademarazn/REDES_NEURAIS | 8a048c13aab33daa4068f52e18b263cc8325884f | a9a35744476d1f7e8405df04d5e4a9f8e4ed4595 | refs/heads/master | 2021-05-06T13:09:56.514632 | 2018-04-25T18:49:30 | 2018-04-25T18:49:30 | 113,248,743 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 871 | sci | ann_FF_init_nb.sci | function W = ann_FF_init_nb(N, r)
// This file is part of:
// ANN Toolbox for Scilab 5.x
// Copyright (C) Ryurick M. Hristev
// updated by Allan CORNET INRIA, May 2008
// released under GNU Public licence version 2
// generate the weight matrix for an feedforward ANN defined by N
// this function is designed for networks without bias
// see ANN_FF (help)
// "r" is optional argument
[lsh, rsh] = argn(0);
// define "r" if necessary
if rsh < 2, r = [-1,1], end;
// don't create weight entries for input neurons (from layer 0),
// i.e. no. of matrices W(:,:,*) is size(N,'c')-1
W = hypermat([max(N), max(N), size(N,'c') - 1]);
// initialize (only the required values)
// with random numbers between "r(1)" and "r(2)"
for l = 2 : size(N,'c')
W(1:N(l), 1:N(l-1), l-1) = ...
(r(2) - r(1)) * rand(N(l), N(l-1)) + r(1) * ones(N(l), N(l-1));
end;
endfunction
|
76d05c93f9833fafad6fe392c38de40b3712fd22 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH5/EX5.49/Ex5_49.sce | f17b1c6d408a444333977cf61e46f2794256b01f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 901 | sce | Ex5_49.sce | clc;
p=4000; // load taken by industrial plant in KW
pf=0.8; // lagging power factor
l=400; // rating of induction motor to be replaced by synchronous motor
n=0.9; // efficiency of induction motor and synchronous motor
pf1=0.9; // lagging power factor at which induction motor operates
pf2=0.8; // leading power factor at which synchronous motor operates
A=p-%i*p*tand(acosd(pf)); // complex power of plant
pi=l/pf1; // power input to induction motor
B=pi-%i*pi*tand(acosd(pf1)); // complex power requirement of induction motor
C=pi+%i*pi*tand(acosd(pf2)); // complex power requirement of synchronous motor
pfn=cosd(atand(imag(A-B+C),real(A-B+C)));
printf('New power factor of the plant is %f lagging\n',pfn);
r=(abs(A-B+C)/sqrt(3))/(p/(sqrt(3)*pf)); // ratio of new line current to original line current
pr=(1-r)*100;
printf('Percentage reduction in line current is %f percent',pr);
|
3b77533133346a7a1b6848417140efa69f8f1160 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/rooteig/rooteig7.sce | 16a5d07c20689d5e0727ba4b59907261fedd80c7 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 223 | sce | rooteig7.sce | //i/p args are x and p and x is negative
clc;
clear;
exec('/home/debdeep/Desktop/TEST NOW!!/rooteig/rooteig.sci');
x=[-1 -2 -3 -4 -5 -67 -8 -9];
p=2;
y=rooteig(x,p);
disp(y);
//output
// 0.
// 2.1797329
//
|
bb59657c80b5e9bbd349db40be63d419f5678829 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH4/EX4.19/Exp4_19.sce | 8550f322770f4553825fbb403045aab43250e394 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,515 | sce | Exp4_19.sce | //Example 4.19
clc
disp("1 MVA, V_L = 11 kV, R_a = 0.6 ohm")
disp("VA = sqrt(3)*V_L*I_L")
il=(10^6)/(sqrt(3)*11*10^3)
format(7)
disp(il,"Therefore, I_L(in A) = I_aph(full load) =")
disp("Now I_f = 40 A for I_ssc = 52.486 A. To find Z_s, plot the O.C.C and obtain V_oc for I_f = 40 A")
disp("From the graph, V_oc(line) = 6600 V for I_f = 40 A")
zs=(6000/sqrt(3))/52.486
format(3)
disp(zs,"Therefore, Z_s(in ohm) = V_ocph/I_ascph |same I_f =")
xs=sqrt((66^2)-(0.6^2))
format(7)
disp(xs,"Therefore, X_s(in ohm) = sqrt(Z_s^2 - R_a^2) =")
disp("(a) cos(phi) = 0.8 lagging, sin(phi) = 0.6, half load")
ip=0.5*52.486
format(7)
disp(ip,"At half load, I_aph(in A) = 1/2 * I_aph(FL) =")
vp=(11*10^3)/sqrt(3)
format(9)
disp(vp,"V_ph(in V) = V_L/sqrt(3) =")
disp("E_ph^2 = (V_ph*cos(phi)+I_a*R_a)^2 + (V_ph*sin(phi)+I_a*R_a)^2")
ephi=sqrt(((((6350.853*0.8)+(26.243*0.6))^2)+(((6350.853*0.6)+(26.243*65.99))^2)))
format(10)
disp(ephi,"Therefore, E_ph(in V) =")
r=((7529.3113-6350.853)/6350.853)*100
format(6)
disp(r,"Therefore, %R(in percentage) = (E_ph-V_ph / V_ph)*100 = ")
disp("(b) cos(phi) = 0.9 leading, sin(phi) = 0.4358, full load so I_aph = 52.486 A")
disp("E_ph^2 = (V_ph*cos(phi)+I_a*R_a)^2 + (V_ph*sin(phi)-I_a*R_a)^2")
ephi=sqrt(((((6350.853*0.9)+(52.486*0.6))^2)+(((6350.853*0.4358)-(52.486*65.99))^2)))
format(9)
disp(ephi,"Therefore, E_ph(in V) =")
r=((5789.231-6350.853)/6350.853)*100
format(6)
disp(r,"Therefore, %R(in percentage) = (E_ph-V_ph / V_ph)*100 = ")
|
aff1d268e22ba3c441b5a21cba3dd54d9a425ca7 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Ripper-C/results/Ripper-C.led7digit-10-1tra/result9s0.tst | 675d36728197144dd80a60b8fdbc20a1648c3465 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 535 | tst | result9s0.tst | @relation led7digit
@attribute Led1 real[0.0,1.0]
@attribute Led2 real[0.0,1.0]
@attribute Led3 real[0.0,1.0]
@attribute Led4 real[0.0,1.0]
@attribute Led5 real[0.0,1.0]
@attribute Led6 real[0.0,1.0]
@attribute Led7 real[0.0,1.0]
@attribute number{0,1,2,3,4,5,6,7,8,9}
@inputs Led1,Led2,Led3,Led4,Led5,Led6,Led7
@outputs number
@data
0 0
4 9
7 7
8 0
8 0
4 4
4 4
9 9
3 9
8 0
8 0
0 0
1 7
3 1
4 4
4 9
5 6
6 6
3 3
7 1
7 1
0 0
3 9
4 4
5 9
5 6
7 1
2 6
3 1
3 9
6 6
7 4
1 1
2 2
7 1
8 0
8 0
9 0
2 1
2 2
2 6
7 1
9 0
0 0
2 2
2 2
6 0
7 1
7 1
9 9
|
8c98128254c25059bfa63da5df640e6de114ce61 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH17/EX17.24/Ex17_24.sce | ec39ccc9fcd071368af46c206ae6c7d62d857833 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 130 | sce | Ex17_24.sce | clear
//Given
u=1.47
//Calculation
u1=u
//Result
printf("\n The liquid is not water because refractive index of water is 1.33")
|
aab8fd58906b999e8516355b8d7ae95c586dd22c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2990/CH5/EX5.12/Ex5_12.sce | 9d369c76dadc29aaac5e2c7625c8dcb7fa363664 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex5_12.sce |
funcprot(0);
// Initialization of Variable
function[dms]=degtodms(deg)
d = int(deg)
md = abs(deg - d) * 60
m = int(md)
sd = (md - m) * 60
sd=(round(sd*100)/100)
dms=[d m sd]
endfunction
z2=90-40-13.0/60-15.0/3600;//zenith angle in degrees
del2=12+15.0/60+30.0/3600//declination of star in degrees
//calculation
theta=z2+del2;
theta=degtodms(theta);
disp(theta,"altitude in degree,minites,seconds respectively");
clear()
|
f0c4f33cb46af701ac66691694a0cdc832e1284d | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/SURPRISE-LANGUAGES/Uto-Aztecan/ood.tst | 372f95915870cd60cad2455c0377db124f4a9db2 | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,103 | tst | ood.tst | ko:ji N;SG
ko:ji N;PL
cihil N;SG
cihil N;PL
si:l N;PL
si:l N;SG
baʼa V;IPFV;SG;FUT
baʼa V;PRF;SG;PRS
baʼa V;IPFV;PL;FUT
baʼa V;IMP;PL;PRS
baʼa V;IPFV;SG;PRS
baʼa V;IPFV;PL;PRS
baʼa V;PRF;PL;PRS
baʼa V;IMP;SG;PRS
ha:hag N;SG
ha:hag N;PL
kotoñ N;SG
kotoñ N;PL
naw N;PL
naw N;SG
s-da:pk V;IPFV;PL;FUT
s-da:pk V;IMP;PL;PRS
s-da:pk V;IPFV;PL;PRS
s-da:pk V;IMP;SG;PRS
s-da:pk V;IPFV;SG;FUT
s-da:pk V;IPFV;SG;PRS
wu:s̥ad V;IPFV;SG;FUT
wu:s̥ad V;PRF;SG;PRS
wu:s̥ad V;PRF;PL;PRS
wu:s̥ad V;IPFV;SG;PRS
wu:s̥ad V;IPFV;PL;PRS
wu:s̥ad V;IMP;PL;PRS
wu:s̥ad V;IMP;SG;PRS
wu:s̥ad V;IPFV;PL;FUT
siswuimad V;IPFV;SG;PRS
siswuimad V;IMP;PL;PRS
siswuimad V;IMP;SG;PRS
siswuimad V;PRF;SG;PRS
siswuimad V;IPFV;PL;FUT
siswuimad V;PRF;PL;PRS
siswuimad V;IPFV;PL;PRS
siswuimad V;IPFV;SG;FUT
ʼu:gk V;IMP;SG;PRS
ʼu:gk V;IMP;PL;PRS
ʼu:gk V;IPFV;SG;PRS
ʼu:gk V;IPFV;PL;PRS
ʼu:gk V;IPFV;SG;FUT
ʼu:gk V;IPFV;PL;FUT
wosonakud̥ N;SG
wosonakud̥ N;PL
ceposid V;IPFV;PL;PRS
ceposid V;PRF;SG;PRS
ceposid V;IPFV;SG;FUT
ceposid V;IPFV;PL;FUT
ceposid V;IPFV;SG;PRS
ceposid V;IMP;SG;PRS
ceposid V;IMP;PL;PRS
ceposid V;PRF;PL;PRS
s-muʼuk V;IPFV;SG;PRS
s-muʼuk V;IPFV;SG;FUT
s-muʼuk V;IMP;PL;PRS
s-muʼuk V;IMP;SG;PRS
s-muʼuk V;IPFV;PL;FUT
s-muʼuk V;IPFV;PL;PRS
tas̥ga N;SG
tas̥ga N;PL
ʼi:bhĕ V;PRF;SG;PRS
ʼi:bhĕ V;IPFV;SG;FUT
ʼi:bhĕ V;PRF;PL;PRS
ʼi:bhĕ V;IPFV;PL;FUT
ʼi:bhĕ V;IMP;PL;PRS
ʼi:bhĕ V;IMP;SG;PRS
ʼi:bhĕ V;IPFV;PL;PRS
ʼi:bhĕ V;IPFV;SG;PRS
hewek V;IMP;SG;PRS
hewek V;PRF;SG;PRS
hewek V;IPFV;SG;PRS
hewek V;IPFV;PL;PRS
hewek V;IMP;PL;PRS
hewek V;PRF;PL;PRS
hewek V;IPFV;PL;FUT
hewek V;IPFV;SG;FUT
kahon N;SG
kahon N;PL
ceoj N;SG
ceoj N;PL
s-wohocid V;IMP;SG;PRS
s-wohocid V;PRF;PL;PRS
s-wohocid V;IMP;PL;PRS
s-wohocid V;IPFV;PL;PRS
s-wohocid V;IPFV;SG;FUT
s-wohocid V;IPFV;SG;PRS
s-wohocid V;PRF;SG;PRS
s-wohocid V;IPFV;PL;FUT
s-ape V;IMP;PL;PRS
s-ape V;IPFV;SG;FUT
s-ape V;IMP;SG;PRS
s-ape V;IPFV;PL;FUT
s-ape V;IPFV;PL;PRS
s-ape V;IPFV;SG;PRS
cicwi V;PRF;SG;PRS
cicwi V;IMP;SG;PRS
cicwi V;PRF;PL;PRS
cicwi V;IPFV;PL;FUT
cicwi V;IPFV;SG;PRS
cicwi V;IPFV;SG;FUT
cicwi V;IPFV;PL;PRS
cicwi V;IMP;PL;PRS
si:s̥p V;IPFV;SG;PRS
si:s̥p V;IMP;SG;PRS
si:s̥p V;IPFV;PL;PRS
si:s̥p V;IPFV;SG;FUT
si:s̥p V;PRF;SG;PRS
si:s̥p V;IMP;PL;PRS
si:s̥p V;IPFV;PL;FUT
si:s̥p V;PRF;PL;PRS
ʼod̥pig V;PRF;SG;PRS
ʼod̥pig V;IPFV;SG;PRS
ʼod̥pig V;IMP;PL;PRS
ʼod̥pig V;IMP;SG;PRS
ʼod̥pig V;IPFV;SG;FUT
ʼod̥pig V;IPFV;PL;FUT
ʼod̥pig V;IPFV;PL;PRS
ʼod̥pig V;PRF;PL;PRS
ʼoʼohana N;SG
ʼoʼohana N;PL
kud̥ut V;IMP;PL;PRS
kud̥ut V;IPFV;PL;FUT
kud̥ut V;IPFV;SG;FUT
kud̥ut V;IPFV;PL;PRS
kud̥ut V;IMP;SG;PRS
kud̥ut V;IPFV;SG;PRS
pa:nt V;PRF;PL;PRS
pa:nt V;IMP;SG;PRS
pa:nt V;IMP;PL;PRS
pa:nt V;IPFV;PL;PRS
pa:nt V;IPFV;SG;FUT
pa:nt V;IPFV;PL;FUT
pa:nt V;IPFV;SG;PRS
pa:nt V;PRF;SG;PRS
kawhi N;PL
kawhi N;SG
s-iʼowĭ N;PL
s-iʼowĭ N;SG
pisaltakud̥ N;PL
pisaltakud̥ N;SG
memd̥a V;IPFV;SG;FUT
memd̥a V;IPFV;PL;FUT
memd̥a V;IMP;PL;PRS
memd̥a V;IPFV;SG;PRS
memd̥a V;IPFV;PL;PRS
memd̥a V;IMP;SG;PRS
hu:ñ N;SG
hu:ñ N;PL
s-onk V;IPFV;SG;FUT
s-onk V;IMP;PL;PRS
s-onk V;IPFV;PL;PRS
s-onk V;IPFV;PL;FUT
s-onk V;IPFV;SG;PRS
s-onk V;IMP;SG;PRS
ʼelid V;IPFV;PL;FUT
ʼelid V;PRF;PL;PRS
ʼelid V;IMP;SG;PRS
ʼelid V;IPFV;SG;FUT
ʼelid V;IMP;PL;PRS
ʼelid V;IPFV;SG;PRS
ʼelid V;PRF;SG;PRS
ʼelid V;IPFV;PL;PRS
ʼoʼohan V;IMP;SG;PRS
ʼoʼohan V;IPFV;SG;FUT
ʼoʼohan V;PRF;PL;PRS
ʼoʼohan V;IMP;PL;PRS
ʼoʼohan V;PRF;SG;PRS
ʼoʼohan V;IPFV;SG;PRS
ʼoʼohan V;IPFV;PL;PRS
ʼoʼohan V;IPFV;PL;FUT
tapial N;PL
tapial N;SG
ceʼewidakud̥ N;PL
ceʼewidakud̥ N;SG
ceʼewid V;PRF;SG;PRS
ceʼewid V;IMP;SG;PRS
ceʼewid V;IPFV;PL;FUT
ceʼewid V;IPFV;SG;PRS
ceʼewid V;IPFV;PL;PRS
ceʼewid V;IMP;PL;PRS
ceʼewid V;PRF;PL;PRS
ceʼewid V;IPFV;SG;FUT
hemajkam N;SG
hemajkam N;PL
hi:wodag N;PL
hi:wodag N;SG
huhuʼid V;IMP;PL;PRS
huhuʼid V;PRF;SG;PRS
huhuʼid V;IPFV;PL;PRS
huhuʼid V;IMP;SG;PRS
huhuʼid V;IPFV;SG;PRS
huhuʼid V;PRF;PL;PRS
huhuʼid V;IPFV;PL;FUT
huhuʼid V;IPFV;SG;FUT
koʼokolmad V;IPFV;SG;FUT
koʼokolmad V;IPFV;PL;FUT
koʼokolmad V;IPFV;PL;PRS
koʼokolmad V;PRF;PL;PRS
koʼokolmad V;IMP;SG;PRS
koʼokolmad V;IMP;PL;PRS
koʼokolmad V;PRF;SG;PRS
koʼokolmad V;IPFV;SG;PRS
tlo:gi N;SG
tlo:gi N;PL
cendad V;IPFV;PL;PRS
cendad V;PRF;PL;PRS
cendad V;IMP;PL;PRS
cendad V;IPFV;SG;PRS
cendad V;IMP;SG;PRS
cendad V;PRF;SG;PRS
cendad V;IPFV;PL;FUT
cendad V;IPFV;SG;FUT
gaʼa V;IMP;SG;PRS
gaʼa V;IPFV;SG;FUT
gaʼa V;IPFV;PL;FUT
gaʼa V;PRF;PL;PRS
gaʼa V;IPFV;SG;PRS
gaʼa V;IPFV;PL;PRS
gaʼa V;PRF;SG;PRS
gaʼa V;IMP;PL;PRS
to:nk N;PL
to:nk N;SG
giʼipig V;IPFV;SG;FUT
giʼipig V;IPFV;PL;PRS
giʼipig V;IPFV;SG;PRS
giʼipig V;IMP;SG;PRS
giʼipig V;PRF;PL;PRS
giʼipig V;PRF;SG;PRS
giʼipig V;IMP;PL;PRS
giʼipig V;IPFV;PL;FUT
s-wagima V;IMP;PL;PRS
s-wagima V;IPFV;SG;PRS
s-wagima V;IPFV;PL;FUT
s-wagima V;IPFV;PL;PRS
s-wagima V;IPFV;SG;FUT
s-wagima V;IMP;SG;PRS
elpig V;IPFV;PL;FUT
elpig V;PRF;SG;PRS
elpig V;IPFV;SG;FUT
elpig V;PRF;PL;PRS
elpig V;IMP;SG;PRS
elpig V;IPFV;SG;PRS
elpig V;IMP;PL;PRS
elpig V;IPFV;PL;PRS
cu:hug N;PL
cu:hug N;SG
wakonakud̥ N;SG
wakonakud̥ N;PL
wopo N;PL
wopo N;SG
mehĭ N;SG
mehĭ N;PL
ki: N;SG
ki: V;IPFV;PL;PRS
ki: V;IPFV;PL;FUT
ki: V;IPFV;SG;FUT
ki: V;IPFV;SG;PRS
ki: V;IMP;SG;PRS
ki: N;PL
ki: V;IMP;PL;PRS
ki: N;PL
siʼi V;IPFV;PL;FUT
siʼi V;PRF;PL;PRS
siʼi V;PRF;SG;PRS
siʼi V;IPFV;PL;PRS
siʼi V;IPFV;SG;FUT
siʼi V;IPFV;SG;PRS
siʼi V;IMP;PL;PRS
siʼi V;IMP;SG;PRS
wamigĭ V;PRF;PL;PRS
wamigĭ V;IPFV;PL;FUT
wamigĭ V;IMP;PL;PRS
wamigĭ V;IPFV;SG;PRS
wamigĭ V;IPFV;PL;PRS
wamigĭ V;IMP;SG;PRS
wamigĭ V;PRF;SG;PRS
wamigĭ V;IPFV;SG;FUT
huc N;SG
huc N;PL
Tohono ʼOʼodham N;SG
Tohono ʼOʼodham N;PL
ʼoimed̥ V;IPFV;SG;FUT
ʼoimed̥ V;IPFV;PL;PRS
ʼoimed̥ V;PRF;SG;PRS
ʼoimed̥ V;IPFV;PL;FUT
ʼoimed̥ V;PRF;PL;PRS
ʼoimed̥ V;IPFV;SG;PRS
ʼoimed̥ V;IMP;SG;PRS
ʼoimed̥ V;IMP;PL;PRS
sitolmad V;IPFV;PL;FUT
sitolmad V;IMP;SG;PRS
sitolmad V;PRF;SG;PRS
sitolmad V;IPFV;SG;PRS
sitolmad V;IPFV;PL;PRS
sitolmad V;IPFV;SG;FUT
sitolmad V;PRF;PL;PRS
sitolmad V;IMP;PL;PRS
ñeid V;IMP;SG;PRS
ñeid V;IPFV;SG;FUT
ñeid V;IPFV;SG;PRS
ñeid V;IMP;PL;PRS
ñeid V;PRF;SG;PRS
ñeid V;IPFV;PL;FUT
ñeid V;PRF;PL;PRS
ñeid V;IPFV;PL;PRS
dahă V;PRF;SG;PRS
dahă V;IMP;SG;PRS
dahă V;IPFV;SG;PRS
dahă V;IPFV;PL;PRS
dahă V;IPFV;PL;FUT
dahă V;IPFV;SG;FUT
dahă V;PRF;PL;PRS
dahă V;IMP;PL;PRS
wopopig V;IMP;PL;PRS
wopopig V;PRF;PL;PRS
wopopig V;IPFV;PL;PRS
wopopig V;IMP;SG;PRS
wopopig V;PRF;SG;PRS
wopopig V;IPFV;SG;PRS
wopopig V;IPFV;SG;FUT
wopopig V;IPFV;PL;FUT
dai V;PRF;PL;PRS
dai V;PRF;SG;PRS
mansa:na N;PL
mansa:na N;SG
gogs N;PL
gogs N;SG
s̥u:s̥k N;PL
s̥u:s̥k N;SG
towa N;SG
towa N;PL
to:lo N;SG
to:lo N;PL
nawoj N;PL
nawoj N;SG
ʼiʼihog V;IPFV;SG;PRS
ʼiʼihog V;IPFV;SG;FUT
ʼiʼihog V;IMP;SG;PRS
ʼiʼihog V;IPFV;PL;PRS
ʼiʼihog V;PRF;SG;PRS
ʼiʼihog V;PRF;PL;PRS
ʼiʼihog V;IPFV;PL;FUT
ʼiʼihog V;IMP;PL;PRS
s-wihonig V;IMP;SG;PRS
s-wihonig V;IPFV;PL;PRS
s-wihonig V;IPFV;PL;FUT
s-wihonig V;IMP;PL;PRS
s-wihonig V;IPFV;SG;FUT
s-wihonig V;IPFV;SG;PRS
ʼo:gĭ N;PL
ʼo:gĭ N;SG
s̥onwuikud̥ N;PL
s̥onwuikud̥ N;SG
|
3ec464600c6dfffeb5ed917bfc68eadd97b97cc3 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfas_ap_usi/~BivLCM-SR-bfas_ap_usi-PLin-VLin.tst | 6623def0775f0f6ced642962ecb79122343c3ee0 | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,974 | tst | ~BivLCM-SR-bfas_ap_usi-PLin-VLin.tst |
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.254639D+00
2 -0.340701D-02 0.197001D-02
3 -0.784535D-01 0.117469D-02 0.260001D+00
4 0.144023D-02 -0.560057D-03 -0.227646D-02 0.211159D-02
5 -0.655855D-04 -0.264762D-04 0.460359D-03 -0.110025D-03 0.246957D-02
6 0.278019D-03 0.414914D-04 -0.388406D-03 0.520554D-04 0.262789D-03
7 0.189014D-03 -0.223333D-04 -0.453328D-03 0.146039D-04 0.827218D-04
8 0.101669D-02 0.766637D-04 0.464832D-03 -0.427427D-04 -0.185240D-04
9 -0.245404D+00 -0.429341D-03 0.291350D+00 -0.135390D-01 0.429059D-01
10 -0.206558D+00 -0.619220D-02 0.197316D+00 -0.433311D-03 0.111082D+00
11 0.949041D-01 -0.427946D-03 -0.463018D-01 -0.347728D-03 -0.120454D-01
12 -0.574746D-01 0.284417D-01 0.200327D+00 -0.238191D-02 0.276490D-01
13 0.527465D-02 0.771317D-03 -0.998619D-02 0.317966D-02 0.121347D-01
14 -0.228834D-01 0.134844D-01 0.250669D+00 0.338544D-02 -0.162244D-01
15 -0.152756D+01 0.100665D-01 0.718622D-01 -0.327770D-02 -0.100451D+00
16 -0.146475D-01 -0.777234D-02 0.126685D-01 0.668238D-03 0.799717D-03
17 -0.244908D-03 -0.271336D-03 -0.619848D-03 0.247868D-03 -0.202106D-03
18 0.109965D+00 0.847613D-02 -0.354275D+00 -0.748820D-03 -0.457913D-02
19 0.536008D-01 0.459631D-02 -0.352848D-01 -0.195595D-02 -0.900004D-02
20 -0.301100D+00 -0.103471D-01 0.244523D+00 0.221413D-01 0.282961D-01
21 -0.320580D-01 -0.262492D-02 0.328559D-01 -0.211587D-02 0.710534D-02
22 -0.677392D-04 0.110003D-03 -0.214756D-03 -0.737207D-05 0.763627D-04
23 0.292084D-02 -0.228384D-02 0.208347D-01 0.242296D-02 0.717768D-03
24 -0.113077D-02 -0.515418D-04 -0.230047D-04 0.193470D-03 -0.256627D-03
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.108820D-02
7 0.552944D-03 0.187260D-02
8 -0.207630D-03 0.339799D-03 0.246953D-02
9 0.486295D-02 0.619035D-03 -0.360838D-02 0.354629D+02
10 0.158332D-02 0.180292D-01 0.419382D-02 0.125097D+01 0.131055D+02
11 0.209300D-01 0.271891D-01 0.146717D-01 -0.339923D+01 -0.284620D+00
12 0.407942D-02 -0.115706D-01 0.757117D-01 0.381217D+01 0.944949D+00
13 0.334576D-01 0.373055D-01 -0.431629D-02 0.643137D+00 -0.139636D+00
14 -0.502675D-02 0.353870D-01 0.124020D+00 0.446758D+00 0.787656D+00
15 -0.148729D-01 -0.188263D-01 0.316037D-02 -0.352570D+01 -0.790140D+01
16 0.541538D-03 -0.361454D-04 -0.135215D-02 0.438117D+00 0.111130D+00
17 0.425279D-04 -0.691385D-04 -0.208841D-03 -0.684033D-01 0.193674D-02
18 0.388503D-02 0.331782D-02 0.144825D-01 0.106389D+01 0.327208D+00
19 -0.220879D-02 0.715312D-02 0.797166D-03 0.237722D-01 -0.821794D+00
20 0.118524D-01 0.109196D-02 -0.100583D+00 0.158193D+00 0.683756D+00
21 0.318332D-02 -0.416824D-02 0.155188D-02 -0.106314D+00 0.643258D+00
22 -0.296388D-03 -0.292728D-03 0.115197D-03 -0.378770D-01 0.600205D-02
23 0.559933D-03 0.100874D-05 0.143271D-03 0.376431D-01 0.822446D-01
24 -0.420907D-04 -0.664126D-04 -0.296410D-03 0.291356D-02 -0.253185D-02
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.199891D+02
12 -0.778371D+01 0.427776D+02
13 -0.529344D+00 0.102642D+01 0.523351D+01
14 0.227913D+01 0.125272D+01 -0.201268D+01 0.200264D+02
15 -0.138388D+01 0.649915D+00 -0.948706D+00 0.202070D+01 0.174350D+03
16 -0.101552D+00 -0.232304D-01 0.729972D-01 -0.940971D-01 0.427966D+00
17 0.159406D-01 0.463148D-04 0.275797D-02 -0.183485D-01 -0.779694D+00
18 0.807633D+00 -0.763843D+00 0.759639D+00 0.132776D+01 -0.244395D+02
19 0.570626D+00 -0.314104D+00 -0.997400D-01 0.252443D+00 -0.893676D+00
20 -0.229864D+01 -0.175488D+02 0.601094D+00 -0.800503D+01 0.675019D+01
21 -0.214122D+00 -0.114846D+00 0.147527D+00 0.695726D-01 0.854008D+00
22 -0.595089D-01 0.415215D-01 -0.203183D-01 0.107138D-01 0.908272D-01
23 0.631047D-01 0.163720D+00 0.290430D-01 -0.225779D-01 0.194327D-01
24 -0.629950D-02 -0.789131D-02 0.167124D-03 -0.309485D-01 -0.585758D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.308354D+00
17 -0.144508D-01 0.977677D-02
18 0.364641D-01 0.828806D-01 0.103998D+03
19 -0.893462D-01 0.182370D-01 -0.262925D+01 0.270581D+01
20 -0.400330D-01 -0.168645D-01 -0.411454D+02 0.101168D+01 0.167981D+03
21 -0.158781D-01 -0.936279D-02 0.384353D+01 -0.237630D+01 -0.152525D+01
22 0.354990D-02 -0.958924D-03 -0.530615D+00 0.111960D-01 0.154863D+00
23 0.215043D-01 -0.146166D-02 -0.403245D+00 -0.558252D-01 0.117005D+01
24 -0.954728D-03 0.701397D-03 0.186845D+00 -0.302560D-03 -0.776265D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.272140D+01
22 -0.357886D-01 0.618688D-02
23 -0.628582D-01 0.547983D-02 0.211224D+00
24 0.961008D-02 -0.162924D-02 -0.160205D-01 0.786988D-02
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.152 1.000
3 -0.305 0.052 1.000
4 0.062 -0.275 -0.097 1.000
5 -0.003 -0.012 0.018 -0.048 1.000
6 0.017 0.028 -0.023 0.034 0.160
7 0.009 -0.012 -0.021 0.007 0.038
8 0.041 0.035 0.018 -0.019 -0.008
9 -0.082 -0.002 0.096 -0.049 0.145
10 -0.113 -0.039 0.107 -0.003 0.617
11 0.042 -0.002 -0.020 -0.002 -0.054
12 -0.017 0.098 0.060 -0.008 0.085
13 0.005 0.008 -0.009 0.030 0.107
14 -0.010 0.068 0.110 0.016 -0.073
15 -0.229 0.017 0.011 -0.005 -0.153
16 -0.052 -0.315 0.045 0.026 0.029
17 -0.005 -0.062 -0.012 0.055 -0.041
18 0.021 0.019 -0.068 -0.002 -0.009
19 0.065 0.063 -0.042 -0.026 -0.110
20 -0.046 -0.018 0.037 0.037 0.044
21 -0.039 -0.036 0.039 -0.028 0.087
22 -0.002 0.032 -0.005 -0.002 0.020
23 0.013 -0.112 0.089 0.115 0.031
24 -0.025 -0.013 -0.001 0.047 -0.058
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.387 1.000
8 -0.127 0.158 1.000
9 0.025 0.002 -0.012 1.000
10 0.013 0.115 0.023 0.058 1.000
11 0.142 0.141 0.066 -0.128 -0.018
12 0.019 -0.041 0.233 0.098 0.040
13 0.443 0.377 -0.038 0.047 -0.017
14 -0.034 0.183 0.558 0.017 0.049
15 -0.034 -0.033 0.005 -0.045 -0.165
16 0.030 -0.002 -0.049 0.132 0.055
17 0.013 -0.016 -0.043 -0.116 0.005
18 0.012 0.008 0.029 0.018 0.009
19 -0.041 0.100 0.010 0.002 -0.138
20 0.028 0.002 -0.156 0.002 0.015
21 0.058 -0.058 0.019 -0.011 0.108
22 -0.114 -0.086 0.029 -0.081 0.021
23 0.037 0.000 0.006 0.014 0.049
24 -0.014 -0.017 -0.067 0.006 -0.008
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 -0.266 1.000
13 -0.052 0.069 1.000
14 0.114 0.043 -0.197 1.000
15 -0.023 0.008 -0.031 0.034 1.000
16 -0.041 -0.006 0.057 -0.038 0.058
17 0.036 0.000 0.012 -0.041 -0.597
18 0.018 -0.011 0.033 0.029 -0.181
19 0.078 -0.029 -0.027 0.034 -0.041
20 -0.040 -0.207 0.020 -0.138 0.039
21 -0.029 -0.011 0.039 0.009 0.039
22 -0.169 0.081 -0.113 0.030 0.087
23 0.031 0.054 0.028 -0.011 0.003
24 -0.016 -0.014 0.001 -0.078 -0.050
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.263 1.000
18 0.006 0.082 1.000
19 -0.098 0.112 -0.157 1.000
20 -0.006 -0.013 -0.311 0.047 1.000
21 -0.017 -0.057 0.228 -0.876 -0.071
22 0.081 -0.123 -0.662 0.087 0.152
23 0.084 -0.032 -0.086 -0.074 0.196
24 -0.019 0.080 0.207 -0.002 -0.675
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.276 1.000
23 -0.083 0.152 1.000
24 0.066 -0.233 -0.393 1.000
|
3a91a27fd0121b3b409efbb3594090abd96ac972 | cee0a584987e8f6eae19ed5deb199e1394820f95 | /labpart1/edsonj.sce | 70cf1e2b7e72da33e1e2f0ba829e06eaf04d8294 | [] | no_license | izlervaldivia/Penduloinvertido | 55e11b16d0565e4c6e85ad5ce79814467afc4191 | 71745eeadf03ee63992a80eebf231d8b931c7035 | refs/heads/master | 2022-12-01T16:32:50.105285 | 2020-08-16T07:12:00 | 2020-08-16T07:12:00 | 287,870,940 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 515 | sce | edsonj.sce | function xdot=edsonj(u1,u2,u3,u4,u5)
// This is nonlinear EDSON-J model
// Load the parameters
exec('edsonjParameters.sce', -1);
m=0.017;
M=0.696;
l=0.3;
g=9.81;
// state variables
//u1; //angulo
//u2; //velocidad angular
//u3; //posicion
//u4; // velocidad
// control variables
//u5
//
xdot=[ u2;
(+l*m*cos(u1)*sin(u1)*u2^2 + u*cos(u1)-g*sin(u1)*(M+m))/((m*l*cos(u1)^2)-((M+m)*l));
u4;
(m*l*u2^2*sin(u1)-g*m*cos(u1)*sin(u1)+u5)/(M+m+(m*cos(u1)^2))];
endfunction
|
8b1844f32721b8cca2cb701ed665d3e854d20fd3 | 89dea31a969e428f3ba6bbe7e01abe63875ecc6e | /scilab/sin.sce | 4124b073fd2577db265fdd9aa749b0ff3222fb57 | [] | no_license | arvinsingh/b_tech | 9603a83121f8b6beb7ee7d4aae9c2a27599b6f92 | 40e4d29ddfbe13d613709d8303faaccd9bb2db33 | refs/heads/master | 2020-03-19T14:40:00.460378 | 2018-06-08T15:25:19 | 2018-06-08T15:25:19 | 136,634,452 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 14 | sce | sin.sce | disp(sin(30))
|
7b93b202fa23f01ea398b7244c1cf0e6fdef435e | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/delip.man.tst | c1e6285542f3cb90ba76c55f459237488d9d9c35 | [
"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 | 129 | tst | delip.man.tst | clear;lines(0);
ck=0.5;
delip([1,2],ck)
deff('y=f(t)','y=1/sqrt((1-t^2)*(1-ck^2*t^2))')
intg(0,1,f) //OK since real solution!
|
e0aaf153fac808e234301402ed3dc9132cefe4e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH9/EX9.10/example9_10.sce | cde91f1215d682219c0c976c730b7f98b8c95ab9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 228 | sce | example9_10.sce | //example9.10
clc
disp("It can be observed from the Lissajous figures that,")
disp("(y_1)=8 units and, (y_2)=10 units")
s=asind(8/10)
format(6)
disp(s,"Therefore, phi (in degree)= asind((y_1)/(y_2))=asind(8/10)=")
|
1a81d8e8088fa7fdae6f9ee433f85c87359f3d03 | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH8/EX8.09/8_09.sce | 8dd8a4aff2a3cc63c5c8159cfb2c3ea9f149b1da | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,681 | sce | 8_09.sce | //pathname=get_absolute_file_path('8.09.sce')
//filename=pathname+filesep()+'8.09-data.sci'
//exec(filename)
//Pressure of steam entering(in bar):
p1=30
//Temperature(in C):
T1=300
//Pressure of steam leaving the first stage(in bar):
p3=6
//Steam leaving second stage at pressure(in bar):
p4=1
//Pressure of steam leaving the third stage(in bar):
p5=0.075
//Condenstate temperature(in C):
T=38
//Temperature of water after leaving first and second heater(in C):
T8=150
T13=95
//Efficiency of turbine:
n=0.8
//Turbine output(in MW):
W=15
//From steam tables:
h2=3230.9 //kJ/kg
s2=6.9212 //kJ/kg.K
s3=s2
T3=190.97 //K(by interpolation)
h3=2829.63 //kJ/kg
s3a=7.1075 //kJ/kg.K
s4=s3a
sf1=1.3026 //kJ/kg.K
sfg1=6.0568 //kJ/kg.K
hf1=417.46 //kJ/kg
hfg1=2258 //kJ/kg
h5=234.64 //kJ/kg
hf6=670.56 //kJ/kg
h11=hf6
//Actual enthalpy at state 3(in kJ/kg):
h3a=h2-n*(h2-h3)
//Dryness fraaction at state 4:
x4=(s4-sf1)/sfg1
//Enthalpy at state 4(in kJ/kg):
h4=hf1+x4*hfg1
//Actual enthaly at state 4(in kJ/kg):
h4a=h3a-n*(h3a-h4)
//Actual dryness fraction at state 4:
x4a=(h4a-hf1)/hfg1
//Actual entropy at state 4(in kJ/kg.K):
s4a=sf1+x4a*sfg1
//Entropy at state 5(in kJ/kg.K):
s5=s4a
//Dryness fraction:
x5=0.8735
//Enthalpy at state 5(in kJ/kg):
h5=2270.43
//Actual enthalpy at state 5(in kJ/kg):
h5a=h4a-n*(h4a-h5)
//By calculation:
m1=0.1293 //kg
m2=0.1059 //kg
//Turbine output(in kJ/kg):
Wt=(h2-h3a)+(1-m1)*(h3a-h4a)+(1-m1-m2)*(h4a-h5a)
//Rate of steam generation required(in kg/hr):
r=W*10^3/Wt*3600
//Capacity of drain pump(in kg/hr):
c=(m1+m2)*r
printf("\n RESULT \n")
printf("\nCapacity of drain pump = %f kg/hr",c) |
6aa7d53e0d830a39a284b9444c1f9e336eceb722 | 449d555969bfd7befe906877abab098c6e63a0e8 | /462/CH1/EX1.13.a/ex_1_13_a.sce | a44b8ee452908eea36ed99cec3e3bcd8ceea4f84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 210 | sce | ex_1_13_a.sce | //example 1.13(a)//
clc
//clears the screen//
clear
//clears already existing variables//
disp('If we connect one input of EX-NOR gate to 0 permanently, we observe that Y=A*0+A''*0''')
disp('thus, Y=A''') |
8a7733f2ee07a4bec359bec421a01e66a67488fa | 449d555969bfd7befe906877abab098c6e63a0e8 | /3885/CH6/EX6.16/Ex6_16.sci | 1b0933b5f556405b3ad3fbfe5233c24e1ac43a43 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,445 | sci | Ex6_16.sci | //control systems by Nagoor Kani A
//Edition 3
//Year of publication 2015
//Scilab version 6.0.0
//operating systems windows 10
// Example 6.15
clc;
clear;
s=poly(0,'s')
//dominent pole sd=-zeta*w=%i*w*sqrt(1-zeta^2)
zeta=0.8//damping ratio
w=2.5//natural frequency of osciilation in rad/sec
sd=(-zeta*w)+((%i*w)*sqrt(1-zeta^2))
disp(sd,'the dominennt pole is')
d=abs(sd)
disp(d,'the value of d is ')
betaa=phasemag(sd)
disp(betaa,'the value of betaa is;')
h=syslin('c',75/(s+1)*(s+3)*(s+8))//given tranfer function G(s)
//find magnitude and phase of G(s) at s=sd
a=75/((1+sd)*(3+sd)*(8+sd))
ad=abs(a)
disp(ad,'the value of ad is')
phid=phasemag(a)
disp(phid,'the value of phid is')
ess=0.08//steady state error
kv=1/ess//velocity error constant
//the transfer function of PID controller is Gc(s)=kp+kd*s+ki/s
//by definition of velocity error constant applying s=0 in S*Gc(s)*G(s)
ki=12.5/3.125//integeral constant
kd=sind(phid)/(d*ad*sind(betaa))+(ki/(d^2)) //derivative constant
disp(kd,'the derivative constant is')
kp=(-sind(betaa+phid))/(ad*sind(betaa))-(2*ki*cosd(betaa))/d //proportional constant
disp(kp,'the proportional constant is')
hc=syslin('c', 0.68*(s^2+4.26*s+5.88)/s)//transfer function of PID controller is kpof +kd*s
disp(hc,'transfer function of PI controller is')
hcmp=syslin('c',h*hc)//transfer function compensated system
disp(hcmp,'transfer function compensated system ')
|
bc82c7af9b33517cfd906b210899bc5f358655cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH4/EX4.39/ques39.sce | 2b549d92b3d24a620f12e5bae8bdcf1e7703f05d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 305 | sce | ques39.sce | //ques39
clc
disp('Angle of intersection');
disp('point of intersection of r=sint+cost and r=2sint is t=pi/4 ');
disp('tanu=dQ/dr*r');
syms Q ;
r1=2*sin(Q);
r2=sin(Q)+cos(Q);
u=atan(r1*diff(r2,Q,1));
Q=%pi/4;
u=eval(u);
disp('The angle at point of intersection in radians is : ');
disp(u);
|
850255a54117b88a3f94de04ae6b27f2444477eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH7/EX7.21.1/Ex7_21.sce | 7f437fbbb2581946d8d8dc3aa652f54f4557e7f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 284 | sce | Ex7_21.sce | clc
clear
W=50;
S=7;
D=1.25;
N=450;
Mf=4;
CV=43000;
Em=0.7;
Reff=9.81*(D/2);
BP=[2*(22/7)*N*(W-S)*Reff]/(60*1000);
Ebth=(BP*3600)/(Mf*CV);
printf('Ebth= %3.2f Percent',Ebth*100);
printf('\n');
Eith=Ebth/Em;
printf('Eith= %3.2f Percent',Eith*100);
printf('\n');
|
3788bd59b2b55f3cdcca58a338516d5cd3dd8f25 | acf240e588baea95da961484693431cc897e06b3 | /tests/BasicLoop.tst | f4033a88cbec04aa4bc2d7edaa73fbf7a57e2da1 | [] | no_license | Notty98/VirtualMachineHack | b81aeaf3005ccf85443ec5c16fbe08a0ca525590 | 265798724e3cd92568e9a851e662569e3a1bb376 | refs/heads/master | 2020-07-29T12:16:45.144669 | 2019-09-20T14:32:42 | 2019-09-20T14:32:42 | 209,797,293 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 417 | tst | BasicLoop.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/08/ProgramFlow/BasicLoop/BasicLoop.tst
load BasicLoop.asm,
output-file BasicLoop.out,
compare-to BasicLoop.cmp,
output-list RAM[0]%D1.6.1 RAM[256]%D1.6.1;
set RAM[1] 300,
set RAM[2] 400,
set RAM[400] 3,
repeat 600 {
ticktock;
}
output;
|
e555ed6ce063964fe08e16c993a139a27bcbe7c5 | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/pvm_tutorial/estimate_pvm.sci | 393ab0c8819eac05c203b8fd78c92e76be3ad85a | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 707 | sci | estimate_pvm.sci | function [bias, var] = estimate(lambda)
rand("normal"); // Use normal distribution
n = 60; m = 50; // Size of dataset
b_true = ones(m, 1); // The true coefficients
noise = 0.3; // Noise st.dev.
ntimes = 1000; // Number of iterations in the inner loop
b_sum = 0; // Helper variables
b_sumsquares = 0;
for k=1:ntimes
// Generate X and y
X = rand(n, m);
y = X*b_true + rand(n, 1)*noise;
// Solve for b
b = inv(X'*X + lambda*eye(m, m))*X'*y;
b_sum = b_sum + b(1);
b_sumsquares = b_sumsquares + b(1)^2;
end
bias = abs(b_sum/ntimes - b_true(1));
var = sqrt(b_sumsquares/ntimes - (b_sum/ntimes)^2);
endfunction
|
d050358ef6944f5daf15b1130dcec28b8a9c2bb7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH10/EX10.a.12/Example_a_10_12.sce | f5499b64811caaa7e9df792009178e95466f5d2f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | Example_a_10_12.sce | //Example_a_10_12 page no:473
clc;
R1=0.01;
R2=0.1;
Rs=0.1;
V=2;
L1=2*10^-6;
L2=25*10^-6;
omega_r=10^4;
Mc=sqrt(R2*(R1+R2))/omega_r;
C2=1/(omega_r^2*L2);
Vo=V/(2*omega_r^2*C2*Mc);
disp(Vo,"the maximum output voltage at resonance is (in V)");
|
f2bd8a8f7e4f122f8e657ec38c9a4f9e90824da0 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.2/Unix/scilab-2.2/macros/sci2for/f_rank.sci | b7fa71f88e5c1bddeed7c3645caeb5aa502eac12 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,323 | sci | f_rank.sci | //[stk,nwrk,txt,top]=f_rank(nwrk)
//Cette macro realise la traduction de la primitive scilab rank.
//
//!
txt=[]
nam='rank'
s2=stk(top-rhs+1)
v=s2(1)
it2=prod(size(v))-1
if it2<>0 then error(nam+' complex : not implemented'),end
[s2,nwrk,t0]=typconv(s2,nwrk,'1')
n=s2(4);m=s2(5)
if n==m then
n1=n
n2=n
else
n1='min('+addf(n,'1')+','+m+')'
n2='min('+n+','+m+')'
end
[errn,nwrk]=adderr(nwrk,'echec du calcul du rang')
[s,nwrk,t1]=getwrk(nwrk,'1','1',n1)
[e,nwrk,t2]=getwrk(nwrk,'1','1',m)
[wrk,nwrk,t3]=getwrk(nwrk,'1','1',n)
txt=[t0;t1;t2;t3;
gencall(['dsvdc',s2(1),n,n,m,s,e,'work',n,'work',m,wrk,'00','ierr']);
genif('ierr.ne.0',[' ierr='+string(errn);' return'])]
tol=wrk
if rhs==1 then
nwrk=dclfun(nwrk,'d1mach','1')
t0=' '+tol+'='+mulf(mulf(mulf('d1mach(4)',m),n),e)
else
tol1=stk(top)
t0=' '+tol+'='+mulf(mulf(mulf(tol1(1),m),n),e)
end
[lbl,nwrk]=newlab(nwrk)
tl1=string(10*lbl);
var='ilb'+tl1;
[lbl,nwrk]=newlab(nwrk)
tl2=string(10*lbl);
t1= genif(part(s,1:length(s)-1)+'+'+var+'-1).le.'+tol,' goto '+tl2)
txt=[txt;t0;
' do '+tl1+' '+var+' = 0'+','+subf(n2,'1');
indentfor(t1);part(tl1+' ',1:6)+' continue';
' '+var+'='+n2;
part(tl2+' ',1:6)+' continue']
[nwrk]=freewrk(nwrk,e)
[nwrk]=freewrk(nwrk,s)
[nwrk]=freewrk(nwrk,wrk)
stk=list(var,'0','0','1','1')
//end
|
a7d87f3acca70b986447acede6b94f73d1b4b545 | 28bfa203e452a9f5d14389d1fd72e4a93330f00f | /control systems/bode_sci.sce | d2cb8193ed78bc70004cc0744209df12026fe396 | [] | no_license | supreet21/control-system | aba332a3c11edecca02e614861eed61e7ac8284d | 545918ead06459990c9f642983605f93e756218b | refs/heads/master | 2020-05-09T09:39:41.880574 | 2019-04-12T13:15:50 | 2019-04-12T13:15:50 | 181,011,094 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 87 | sce | bode_sci.sce | s = %s;
num = ((s/10+1).^2);
den = 0*s+1;
t = syslin('c',num/den);
clf;
bode(t);
|
c96071f6d46960105f6ca77afc393f3a7f6b84bc | 67549df2a087a841e4e04a54509843c18795a981 | /packets/echantillons/extjs/controlleur.sci | 8ff908beda5b7d4e2cf3d255490942e6eed411bd | [] | no_license | scicasoft/CRUD-generator | 60494434091147e1f8aa62c02b7d34339747885e | 037a7dabdf4d84933ffec560c0bd1a85c45deb03 | refs/heads/master | 2020-05-03T11:30:19.887391 | 2011-06-12T10:33:38 | 2011-06-12T10:33:38 | 719,111 | 0 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 3,741 | sci | controlleur.sci | <?php
class [[NOM_TABLE_SANS_PRE]]Controller extends Zend_Controller_Action
{
// public $url = BASE_URL.'[[NOM_TABLE]]/';
public function init(){
// Récupération des variables utiles
$controller = $this->getRequest()->getParam('controller');
$defaultAction = $this->getFrontController()->getDefaultAction();
// par défaut un appel à render() annule le rendu automatique
// restauration du rendu via le helper viewRenderer.
// (cette action rend une vue)
$this->_helper->viewRenderer->setNoRender(false);
}
public function indexAction(){
$this->_forward('list');
}
public function getLien(){
return BASE_URL.'[[NOM_TABLE]]/';
}
//Ajout et Modification
//Suppression
public function deleteAction(){
//Recuperation du champs cocher et poster
$this->_helper->layout->disableLayout ();
$this->_helper->removeHelper ( 'viewRenderer' );
$checkbox=$this->_request->getPost('data');
//Instanciation d'un objet de la classe [[NOM_TABLE_MAJ]]'
$rows = new [[NOM_TABLE_MAJ]]();
//Suppression de la ligne concerner par la methode getDelete dans la classe [[NOM_TABLE_MAJ]]
if(!empty($checkbox)){
$checkbox=MscCombo::decodejpson($checkbox);
$rows->getDelete($checkbox,'[[NOM_TABLE_MAJ]]');
}
}
//Liste des enregistrements
public function listAction(){
$this->_helper->layout->disableLayout ();
$this->_helper->removeHelper ( 'viewRenderer' );
//$offset = if((isset($this->_request->getPost('start'))) ? $this->_request->getPost('start') : 0;
$offset=$this->_request->getPost('start');
if(empty($offset))$offset=0;
$limit=$this->_request->getPost('limit');
if(empty($limit))$limit=25;
$sort=$this->_request->getPost('sort');
if(empty($sort))$sort='[[EXTJS_SORT]]';
$dir=$this->_request->getPost('dir');
if(empty($dir))$dir='ASC';
//echo 'limit='.$limit.'dir='.$dir.'sort='.$sort.'star='.$offset;exit;
//Recuperer toutes les ligne de la tables
$rows = new [[NOM_TABLE_MAJ]]();
//Recuperation de toutes les lignes de la table par la methode getAll() dans [[NOM_TABLE_MAJ]]
$resrows=$rows->getAll('[[NOM_TABLE_MAJ]]',$limit,$dir,$sort,$offset);
$resrowscount=$rows->getNbRows('[[NOM_TABLE_MAJ]]');
$nbdata = array();
$nbdata=$resrowscount->toArray();
$data = array();
$data['results'] = $resrows->toArray();
$data['total'] = $nbdata[0]['total'];
$resultat = Zend_Json :: encode($data);
//print_r($resultat);exit;
$this->getResponse ()->clearBody ();
$this->getResponse ()->setHeader ( 'Content-Type', 'text/x-json' );
$this->getResponse ()->setBody ($resultat );
}
[[EXTJS_COMBOS]]
public function addAction(){
$this->_helper->layout->disableLayout ();
$this->_helper->removeHelper ( 'viewRenderer' );
//global $conn ;//variable blobal de doctrine connection
$rows = new [[NOM_TABLE_MAJ]](); //instanciation d'un objet de la classe [[NOM_TABLE_MAJ]]'
if ($this->getRequest()->isPost()) //S'il s'agit du POST du formulaire de prise de contact
{
if($this->_request->getPost('[[ID]]')!='') //S'il s'agit du POST du formulaire de prise de contact
{
$rows->assignIdentifier($this->_request->getPost('[[ID]]'));
}
[[EXTJS_RECUP_FORMULAIRE]]
$rows->save();
}
}
} |
02f0177444d1a36c82cb15b67680cf4b848ded0c | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/examples/intersci-examples/ex5.sce | 549c5febcc90a3c352798381955a09397938c3d0 | [
"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 | 463 | sce | ex5.sce | //foobar example
//1-Creating interface source file
// from ex5fi.desc file by call to intersci (see Makefile)
//2-Making object files
// Interface file '/tmp/ex5fi.o'
// User's files '/tmp/ex5f.o';
files=G_make(['/tmp/ex5fi.o','/tmp/ex5f.o'],'ex5.dll');
//2-Link object files .o with addinter
//addinter(files,'foobar',ex5fi_funs);
exec('ex5fi.sce');
//Run Scilab functions:
a=1:5;b=-a;c=ones(3,3);
[a,b,c,d]=foobar('mul',a,b,c)
[a,b,c,d]=foobar('add',a,b,c)
|
0315a4c976f07a32c0a524b1ce762bf393c62ea2 | d7087cf730b37f76170323e080c090f8094979ac | /test/eval_expr/div_very_big.tst | 770176ac359f4ca70a382bc0e1e7c944ea9f27f6 | [] | no_license | VladimirMeshcheriakov/42sh | 025dffe358b86f48eaf7751a5cb08d4d5d5366c4 | 52d782255592526d0838bc40269f6e71f6a51017 | refs/heads/master | 2023-03-15T17:26:20.575439 | 2015-06-26T12:44:05 | 2015-06-26T12:44:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 72,859 | tst | div_very_big.tst | <cmd>
../build/42sh</cmd>
<ref>
bash</ref>
<stdin>
echo "$((10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/1000010000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000/10000))"
</stdin>
|
4e34228d33b38a57fe07598a8aa05e95cedf6e4d | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH20/EX20.3/example20_3.sce | 07a9975684b3eb597d52eb7a2f07ebe61cfd7350 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 86 | sce | example20_3.sce | x_l=1.5;
i=70;
v=i*x_l;
disp("the voltage drop (in V) acoss the coil is"); disp(v); |
4122bdc9d057d1c616c874b0df5003957da94fb9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH11/EX11.5/Example11_5.sce | 8580249b60f53bfa7eb7fe982bb38d0367ae69f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,057 | sce | Example11_5.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 4: OVERHEAD LINE INSULATORS
// EXAMPLE : 4.5 :
// Page number 185
clear ; clc ; close ; // Clear the work space and console
// Given data
n = 8.0 // Number of insulators
// Calculations
A = 1.0/(n-1) // Line to pin capacitance
B = 2.0/(n-2) // Line to pin capacitance
C = 3.0/(n-3) // Line to pin capacitance
D = 4.0/(n-4) // Line to pin capacitance
E = 5.0/(n-5) // Line to pin capacitance
F = 6.0/(n-6) // Line to pin capacitance
G = 7.0/(n-7) // Line to pin capacitance
// Results
disp("PART II - EXAMPLE : 4.5 : SOLUTION :-")
printf("\nLine-to-pin capacitance are:")
printf("\n A = %.3f*C", A)
printf("\n B = %.3f*C", B)
printf("\n C = %.3f*C", C)
printf("\n D = %.3f*C", D)
printf("\n E = %.3f*C", E)
printf("\n F = %.3f*C", F)
printf("\n G = %.3f*C", G)
|
289ae6cde7b066a8713cfff2131ea2e8a68d40ef | 449d555969bfd7befe906877abab098c6e63a0e8 | /2223/CH18/EX18.48/Ex18_48.sce | c9276973835c193a30441ff5a237d14b0a4c2bde | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 571 | sce | Ex18_48.sce | // scilab Code Exa 18.48 Calculation on a Draft Tube
pa=1.013; // atmospheric pressure in bar
p3=0.4*pa; // turbine exit pressure in bar
rho=1e3; // density in kg/m3
g=9.81; // Gravitational acceleration in m/s^2
n_D=0.82; // Efficiency of the Draft Tube
delHi=3.1058869; // from Ex 18.5
// part(b)
Hd=delHi;
Hs=((pa-p3)*1e5/(rho*g))-(n_D*Hd); // Hs=Z3-Z4
disp("m",Hs,"(b)the suction head(height of the turbine exit above the tail race) is")
disp("comment: the calculation for Hs is done wrongly in the book. hence the value of Hs differs from the book.")
|
ede8fc05fbca81f3fb15f138d5b662410d004036 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH13/EX13.13/Ex13_13.sce | 59de564d1b6a00bddda763c60d60ad6de4d4f9ce | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 741 | sce | Ex13_13.sce | //Example 13.13
v_rho=9.40;//Vapor density (g/m^3)
sat_rho=23.0;//Saturation vapor density at 25 deg C, See Table 13.5 (g/m^3)
rel_hum=v_rho/sat_rho*100;//Percent relative humidity
printf('a.Percent relative humidity = %0.1f%%',rel_hum)
printf('\nb.The answer to this sub question is beyond the scope of computation')
//Dew point temperature = -10 deg C
v_rho1=2.36;//Vapor density = Saturation vapor density at dew point from Table 13.5 (g/m^3)
sat_rho1=23;//Saturation vapor density at 25 deg C, See Table 13.5 (g/m^3)
rel_hum1=v_rho1/sat_rho1*100;//Percent relative humidity
printf('\nc.Percent relative humidity = %0.1f%%',rel_hum1)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
7fe54f02348b968def47a6027ed734f9df33e5f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2354/CH17/EX17.13/17_13.sce | 52f52857b2a00baf52015f047bccdea9e5f608e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | 17_13.sce | //example 17.13
clc; funcprot(0);
// Initialization of Variable
pi=3.14;
D=0.1;
Nu=23.3;
k=0.0313;
Ts=438;//temperature
Tsurr=296;//temperature
sigma=5.67e-8;
epsilon=0.85;//emmisivity
h=Nu*k/D;
q=h*pi*D*(Ts-Tsurr)+epsilon*sigma*pi*D*(Ts^4-Tsurr^4);
disp(q,"heat transfer rate from the pipe in W/m");
clear()
|
2158c8df9e717f25c016ca2ad691eaa609f62601 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2420/CH9/EX9.1/9_1.sce | 4a29bd1cbf1878e7dac6391c447089def9bbb2ad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 151 | sce | 9_1.sce | clc
clear
//Initialization of variables
h=200 //ft
gam=64 //lb per cu ft
//calculations
P=h*gam/144
//results
printf("Pressure = %.1f psi",P)
|
cca206f5a21c5125050c7a7f3d23fb8ffbf48bca | 449d555969bfd7befe906877abab098c6e63a0e8 | /650/CH1/EX1.6/6.sce | 1c55f85c12b62b55469a5f7a943cc699a6c7cf22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | 6.sce | clc
dp=22*10^3; //N/m^2
g=9.81; //m/s^2
H=1.5; //m
rho=1495; //kg/m^3
rho_s=1270; //kg/m^3
rho_c=2698; //kg/m^3
p=dp/g/H;
disp("the density of the solution with crystal =")
disp(p)
disp("kg/m^3")
// rho=f1*rho_s+f2*rho_c
// f1+f2=1
f2=(rho-rho_s)/(rho_c-rho_s);
disp("The fraction of crystals =")
disp(f2) |
bc6e48f81de882a2c2a61e78ca933e1b59342d8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH29/EX28.15/EX28_15.sce | 60039dc02e08e37deb2594ea039b753a811bc01a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 570 | sce | EX28_15.sce | // Grob's Basic Electronics 11e
// Chapter No. 28
// Example No. 28_15
clc;clear;
// Calculate Ie and Vc
// Given data
Vee = 6; // Supply voltage at emitter=6 Volts
Vcc = 15; // Supply voltage at collector=15 Volts
Vbe = 0.7; // Base-Emmiter Voltage=0.7 Volts
Rc = 1.5*10^3; // Collector resistance=1.5 kOhms
Re = 1*10^3; // Emitter resistance=1 kOhms
Ie = (Vee-Vbe)/Re;
disp (Ie,'The Emitter current in Amps')
disp ('i.e 5.3 mAmps')
Ic = Ie; // Ic =~ Ie
Vc = Vcc-Ic*Rc;
disp (Vc,'The Collector voltage in Volts')
|
3c6ae45ad55965f69ddac8e7bd88718c92d9282f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH2/EX2.42/Example_2_42.sce | d167b1a3660d8539bd3c9b7e6ca4926c10a32dc3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 634 | sce | Example_2_42.sce | // Example 2.42 A fair coin is tossed 400 times
clc;
clear;
n=400;
p=1/2;
q=1-p;
m=n*p;
s_d=sqrt(n*p*q);
disp(2*0.199," = 2*(Area between z= 0 and z= 0.05)",(199.5-m)/s_d,"and",(200.5-m)/s_d,"Probability of obtaining exactly 200 heads = (199.5-m)/s_d and (200.5-m)/s_d =");
disp(0.5+0.3289," = (Area between left of z= 0 + Area between z=0 and z= 0.95)",(209.5-m)/s_d,"Probability of obtaining less than 210 heads = (209.5-m)/s_d and ");
disp(2*0.3531," = 2*(Area between z= -1.05 and z= 1.05)",(189.5-m)/s_d,"and",(210.5-m)/s_d,"Probability of obtaining betweeen 190 and 210 heads = (189.5-m)/s_d and (210.5-m)/s_d =");
|
4bab4954ba7f088c189c5e154e9f2c6136705399 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2990/CH6/EX6.22/Ex6_22.sce | 9bd32acdc653552fc4e25d248e5a4f99d700b8af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 614 | sce | Ex6_22.sce |
clc; funcprot(0);
// Initialization of Variable
function[dms]=degtodms(deg)
d = int(deg)
md = abs(deg - d) * 60
m = int(md)
sd = (md - m) * 60
sd=round(sd*100)/100;
if sd==60.0 then
sd=0;
m=m+1;
end
dms=[d m sd]
endfunction
f=150.4;//focal length in mm
xc=-32.43;//coordinate in mm
xd=9.52;//coordinate in mm
//calculation
thc=atan(xc/f);
thd=atan(xd/f);
th=thd-thc;
th=th*180/%pi;
Az=325+15.0/60+th;
Az=degtodms(Az);
disp(Az,"Azimuth of D in deg,min,sec respectively")
disp("the answer differs slightly due to round off error")
clear()
|
99eff04e3af18865f9151e0a1795dd015eccd9a1 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/GOLD-TEST/ast.tst | 1f402119e70ec5be286f50b64a934cd23b9f8a3a | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 53,822 | tst | ast.tst | rejoner rejonarà V;IND;SG;3;FUT
pronunzier pronunzia V;IND;SG;3;PRS;LGSPEC1
renunzier renunziareis V;IND;PL;2;FUT
ejaminer ejamineia V;NFIN;SG;2;LGSPEC2
furmer furmasse V;IPFV;SBJV;SG;1;PST
pronunzier pronunziea V;IND;SG;3;PRS;LGSPEC3
aplicher aplichovais V;IPFV;IND;PL;2;PST
revucher revuche V;SBJV;PL;3;PRS
cunferir cunferieis V;SBJV;PL;2;PRS
remander remandeie V;IND;SG;1;PRS;LGSPEC2
coordiner coordineis V;IND;PL;2;PRS
perder perdaron V;IND;PL;1;FUT
arbitrer arbitrarà V;IND;SG;3;FUT
acrediter acredite V;SBJV;SG;1;PRS;LGSPEC1
someter sometes V;SBJV;SG;2;PRS;LGSPEC1
ester sareis V;IND;PL;2;FUT
assenier assenieies V;SBJV;SG;2;PRS;LGSPEC2
populer populova V;IPFV;IND;SG;3;PST
usserver usservede V;NFIN;PL;2
scriver scrive V;SBJV;SG;3;PRS
destumer destuma V;NFIN;SG;2;LGSPEC1
condujer condujon V;IND;PL;1;PRS
perde perdareis V;IND;PL;2;FUT
acrediter acredite V;IND;SG;1;PRS;LGSPEC1
aplicher apliches V;IND;SG;2;PRS;LGSPEC1
erjer erjaras V;IND;SG;2;FUT
secuestrer secuestreie V;IND;SG;1;PRS;LGSPEC2
someter sometovais V;IPFV;IND;PL;2;PST
ejaminer ejaminon V;IND;PL;1;PRS
pruibir pruib V;IND;SG;3;PRS;LGSPEC1
ncurajer ncurajaron V;IND;PL;1;FUT
fisser fisseies V;SBJV;SG;2;PRS;LGSPEC2
remplazer remplazon V;IND;PL;1;PRS
scurter scurter V;NFIN;LGSPEC1
proibir proibesc V;IND;PL;3;PRS;LGSPEC2
prejenter prejentassa V;IPFV;SBJV;SG;3;PST
slunger slunga V;IND;SG;3;PRS;LGSPEC1
viuler viuleis V;IND;PL;2;PRS
mantenir mantenivais V;IPFV;IND;PL;2;PST
revucher revuchasses V;IPFV;SBJV;SG;2;PST
publicher publichasse V;IPFV;SBJV;SG;1;PST
costituir costitu V;NFIN;SG;2;LGSPEC1
adater adater V;NFIN;LGSPEC1
remander remandaras V;IND;SG;2;FUT
marider marideie V;IND;SG;1;PRS;LGSPEC2
istruir istruesce V;SBJV;SG;3;PRS;LGSPEC2
istituir istituireis V;IND;PL;2;FUT
revucher revuchovan V;IPFV;IND;PL;1;PST
atuer atuaron V;IND;PL;1;FUT
slunger slungon V;SBJV;PL;1;PRS
atribuir atribues V;SBJV;SG;2;PRS;LGSPEC1
fisser fissea V;IND;SG;3;PRS;LGSPEC3
dormir dormive V;IPFV;IND;SG;1;PST
limiter limiton V;SBJV;PL;1;PRS
revucher revuchova V;IPFV;IND;PL;3;PST
pruibir pruibesce V;IND;SG;1;PRS;LGSPEC2
aproer aproeie V;IND;SG;1;PRS;LGSPEC2
ancunter ancuntareis V;IND;PL;2;FUT
comprer compré V;NFIN;LGSPEC2
dovei dessarà V;IND;SG;3;FUT
damander damandeie V;IND;SG;1;PRS;LGSPEC2
porter portova V;IPFV;IND;PL;3;PST
trater tratasse V;IPFV;SBJV;SG;1;PST
seurander seurandasses V;IPFV;SBJV;SG;2;PST
someter sometarà V;IND;PL;3;FUT
adoter adotea V;IND;SG;3;PRS;LGSPEC3
tradujer traduj V;NFIN;SG;2
ndicher ndichede V;NFIN;PL;2
emaner emanes V;SBJV;SG;2;PRS;LGSPEC1
ester fossa V;IPFV;SBJV;PL;3;PST
educher educhon V;SBJV;PL;1;PRS
mander mandovan V;IPFV;IND;PL;1;PST
manifester manifesteia V;IND;PL;3;PRS;LGSPEC2
revucher revuchon V;SBJV;PL;1;PRS
cherder cherdova V;IPFV;IND;SG;3;PST
determiner determinaron V;IND;PL;1;FUT
resulter resulteie V;SBJV;SG;1;PRS;LGSPEC2
liter litede V;NFIN;PL;2
cogner cognareis V;IND;PL;2;FUT
spieter spieton V;IND;PL;1;PRS
istruir istruisses V;IPFV;SBJV;SG;2;PST
perdujer perdujessais V;IPFV;SBJV;PL;2;PST
acurder acurdeie V;SBJV;SG;3;PRS;LGSPEC2
furmer furmeia V;IND;PL;3;PRS;LGSPEC2
depenjer depenjeis V;IND;PL;2;PRS
mantenir mantenissa V;IPFV;SBJV;PL;3;PST
tramuder tramudareis V;IND;PL;2;FUT
defrenzier defrenzieis V;SBJV;PL;2;PRS
someter sometassa V;IPFV;SBJV;PL;3;PST
respuender respuendea V;IND;SG;3;PRS;LGSPEC3
depenjer depenjovais V;IPFV;IND;PL;2;PST
autoriser autorisassa V;IPFV;SBJV;SG;3;PST
secuestrer secuestraré V;IND;SG;1;FUT
apurver apurves V;SBJV;SG;2;PRS;LGSPEC1
aproer aproeis V;SBJV;PL;2;PRS
spieter spiete V;SBJV;SG;1;PRS;LGSPEC1
educher educhove V;IPFV;IND;SG;1;PST
sporjer sporjesse V;IPFV;SBJV;SG;1;PST
redujer reduj V;IND;SG;3;PRS
reguler reguleia V;IND;SG;3;PRS;LGSPEC2
dejeujer dejëujeia V;NFIN;SG;2;LGSPEC2
perder perdaré V;IND;SG;1;FUT
messei messessais V;IPFV;SBJV;PL;2;PST
delegher delegheie V;SBJV;SG;1;PRS;LGSPEC2
sotscriver sotscrive V;IND;SG;1;PRS
atribuir atribue V;SBJV;PL;3;PRS;LGSPEC1
produjer produjareis V;IND;PL;2;FUT
ejaminer ejaminassa V;IPFV;SBJV;SG;3;PST
arjonjer arjonjessais V;IPFV;SBJV;PL;2;PST
capir capesce V;IND;SG;1;PRS;LGSPEC2
damander damandaras V;IND;SG;2;FUT
arbitrer arbitrassa V;IPFV;SBJV;PL;3;PST
lascer lascassais V;IPFV;SBJV;PL;2;PST
ratificher ratifiche V;SBJV;SG;1;PRS;LGSPEC1
cundaner cundane V;SBJV;SG;1;PRS;LGSPEC1
pronunzier pronunziasses V;IPFV;SBJV;SG;2;PST
ndicher ndicha V;IND;PL;3;PRS;LGSPEC1
reguler reguleies V;IND;SG;2;PRS;LGSPEC2
condujer condujarà V;IND;PL;3;FUT
reverir reveriras V;IND;SG;2;FUT
resulter resultove V;IPFV;IND;SG;1;PST
udir udisse V;IPFV;SBJV;SG;1;PST
storjer storjon V;IND;PL;1;PRS
ratificher ratifichovan V;IPFV;IND;PL;1;PST
trater trate V;IND;SG;1;PRS;LGSPEC1
acuser acusa V;IND;PL;3;PRS;LGSPEC1
adater adateis V;IND;PL;2;PRS
arester aresteie V;SBJV;SG;3;PRS;LGSPEC2
podei pos V;IND;SG;2;PRS
alesirer alesirasses V;IPFV;SBJV;SG;2;PST
stipuler stipularon V;IND;PL;1;FUT
volei vues V;IND;SG;2;PRS
istruir istrue V;SBJV;SG;1;PRS;LGSPEC1
adater adatea V;IND;SG;3;PRS;LGSPEC3
franjer franjova V;IPFV;IND;PL;3;PST
limiter limites V;SBJV;SG;2;PRS;LGSPEC1
slunger slungeia V;NFIN;SG;2;LGSPEC2
rejoner rejone V;IND;SG;1;PRS;LGSPEC1
franjer franjaron V;IND;PL;1;FUT
nascer nasce V;SBJV;SG;3;PRS
assenier assenion V;IND;PL;1;PRS
usserver usservassan V;IPFV;SBJV;PL;1;PST
afermer afermeis V;SBJV;PL;2;PRS
scuter scoute V;SBJV;SG;1;PRS;LGSPEC1
dejeujer dejëujaras V;IND;SG;2;FUT
atribuir atribuive V;IPFV;IND;SG;1;PST
costituir costituesce V;IND;SG;1;PRS;LGSPEC2
romper rompesses V;IPFV;SBJV;SG;2;PST
assenier asseniova V;IPFV;IND;SG;3;PST
nfurmer nfurmassa V;IPFV;SBJV;PL;3;PST
mener meineia V;IND;PL;3;PRS;LGSPEC2
mpartir mpartes V;IND;SG;2;PRS;LGSPEC1
detlarer detlararà V;IND;SG;3;FUT
nascer nascova V;IPFV;IND;SG;3;PST
trasferir trasferes V;IND;SG;2;PRS;LGSPEC1
istituir istitues V;IND;SG;2;PRS;LGSPEC1
prejenter prejentovais V;IPFV;IND;PL;2;PST
marider marideia V;IND;PL;3;PRS;LGSPEC2
fisser fissasses V;IPFV;SBJV;SG;2;PST
pruibir pruibiva V;IPFV;IND;PL;3;PST
furmer furma V;IND;SG;3;PRS;LGSPEC1
comprer comprassais V;IPFV;SBJV;PL;2;PST
registrer registrova V;IPFV;IND;SG;3;PST
goder godovan V;IPFV;IND;PL;1;PST
trasferir trasferiva V;IPFV;IND;SG;3;PST
depenjer depenjon V;SBJV;PL;1;PRS
fisser fissaron V;IND;PL;1;FUT
spartir spartiva V;IPFV;IND;SG;3;PST
destiner destine V;SBJV;PL;3;PRS
capir capesce V;SBJV;PL;3;PRS;LGSPEC2
cumander cumanda V;IND;PL;3;PRS;LGSPEC1
rezever rezev V;IND;SG;3;PRS
passer passa V;IND;PL;3;PRS;LGSPEC1
coordener coordenassais V;IPFV;SBJV;PL;2;PST
passer passa V;NFIN;SG;2;LGSPEC1
arjonjer arjonjon V;IND;PL;1;PRS
viuler viuleies V;SBJV;SG;2;PRS;LGSPEC2
ressolver ressolva V;IND;SG;3;PRS;LGSPEC1
finanzier finanzieis V;SBJV;PL;2;PRS
proibir proibesces V;IND;SG;2;PRS;LGSPEC2
costituir costituissa V;IPFV;SBJV;SG;3;PST
delegher deleghea V;IND;SG;3;PRS;LGSPEC3
arester areste V;IND;SG;1;PRS;LGSPEC1
spieter spietasses V;IPFV;SBJV;SG;2;PST
viuler viula V;NFIN;SG;2;LGSPEC1
avei ae V;SBJV;PL;3;PRS;LGSPEC1
prufesser prufessasse V;IPFV;SBJV;SG;1;PST
savei saveis V;IND;PL;2;PRS
determiner determineia V;NFIN;SG;2;LGSPEC2
registrer registraras V;IND;SG;2;FUT
resulter resultasse V;IPFV;SBJV;SG;1;PST
detlarer detlarova V;IPFV;IND;SG;3;PST
adoter adotes V;IND;SG;2;PRS;LGSPEC1
resserver resserve V;SBJV;PL;3;PRS
manifester manifester V;NFIN;LGSPEC1
aproer aproé V;NFIN;LGSPEC2
volei voleis V;SBJV;PL;2;PRS
pruibir pruibesc V;NFIN;SG;2;LGSPEC2
adater adateis V;SBJV;PL;2;PRS
defrenzier defrenziovan V;IPFV;IND;PL;1;PST
reurganiser reurganise V;SBJV;SG;3;PRS;LGSPEC1
resserver resserveis V;IND;PL;2;PRS
spidler spidlovan V;IPFV;IND;PL;1;PST
acurder acurdeia V;IND;PL;3;PRS;LGSPEC2
scriver scrive V;SBJV;PL;3;PRS
perdujer perdujaras V;IND;SG;2;FUT
coordener coordenasse V;IPFV;SBJV;SG;1;PST
nevei nevessa V;IPFV;SBJV;SG;3;PST
prejenter prejentea V;IND;SG;3;PRS;LGSPEC3
comunicher comuniche V;IND;SG;1;PRS;LGSPEC1
produjer produjede V;NFIN;PL;2
delegher deleghassais V;IPFV;SBJV;PL;2;PST
mirer mirasses V;IPFV;SBJV;SG;2;PST
rejoner rejonasses V;IPFV;SBJV;SG;2;PST
arbitrer arbitrassan V;IPFV;SBJV;PL;1;PST
gaujer gaujeies V;SBJV;SG;2;PRS;LGSPEC2
unir unesc V;NFIN;SG;2;LGSPEC2
delegher delegharon V;IND;PL;1;FUT
entenjer entenjeis V;SBJV;PL;2;PRS
afermer afermarà V;IND;SG;3;FUT
entenjer entenjessan V;IPFV;SBJV;PL;1;PST
reurganiser reurganiseie V;SBJV;SG;1;PRS;LGSPEC2
schiver schiveis V;SBJV;PL;2;PRS
purter purtasses V;IPFV;SBJV;SG;2;PST
remplazer remplazassa V;IPFV;SBJV;PL;3;PST
purter purton V;IND;PL;1;PRS
scuter scoute V;SBJV;SG;3;PRS;LGSPEC1
rejoner rejones V;SBJV;SG;2;PRS;LGSPEC1
udir udissan V;IPFV;SBJV;PL;1;PST
cunzeder cunzedeis V;SBJV;PL;2;PRS
redujer redujarà V;IND;PL;3;FUT
destumer destumoves V;IPFV;IND;SG;2;PST
depenjer depenjesse V;IPFV;SBJV;SG;1;PST
delegher deleghon V;SBJV;PL;1;PRS
desgorjer desgorjove V;IPFV;IND;SG;1;PST
delibrer delibrareis V;IND;PL;2;FUT
furmer furmon V;IND;PL;1;PRS
garantir garantieis V;IND;PL;2;PRS
someter sometes V;IND;SG;2;PRS;LGSPEC1
viuler viules V;IND;SG;2;PRS;LGSPEC1
coordener coordenova V;IPFV;IND;PL;3;PST
entenjer entenjarà V;IND;PL;3;FUT
capir capion V;SBJV;PL;1;PRS
rejoner rejoneis V;IND;PL;2;PRS
pruibir pruibe V;IND;SG;1;PRS;LGSPEC1
prufesser prufessoves V;IPFV;IND;SG;2;PST
aplicher aplichova V;IPFV;IND;PL;3;PST
coordener coordenova V;IPFV;IND;SG;3;PST
depenjer depenjoves V;IPFV;IND;SG;2;PST
unir un V;IND;SG;3;PRS;LGSPEC1
azerter azerteie V;SBJV;SG;1;PRS;LGSPEC2
secuestrer secuestra V;NFIN;SG;2;LGSPEC1
atuer atueia V;NFIN;SG;2;LGSPEC2
onjer onjareis V;IND;PL;2;FUT
reverir reveresce V;SBJV;SG;3;PRS;LGSPEC2
determiner determinede V;NFIN;PL;2
rester resteia V;NFIN;SG;2;LGSPEC2
destiner destinassais V;IPFV;SBJV;PL;2;PST
alesirer alesireies V;SBJV;SG;2;PRS;LGSPEC2
ressolver ressolva V;NFIN;SG;2;LGSPEC1
tramuder tramudeie V;SBJV;SG;1;PRS;LGSPEC2
nascer nasces V;SBJV;SG;2;PRS
coordiner coordinovan V;IPFV;IND;PL;1;PST
corompe corompoves V;IPFV;IND;SG;2;PST
stipuler stipuleis V;IND;PL;2;PRS
rezever rezevede V;NFIN;PL;2
giudicher giudichovais V;IPFV;IND;PL;2;PST
ndicher ndichon V;SBJV;PL;1;PRS
udir ud V;NFIN;SG;2;LGSPEC1
pruibir pruibive V;IPFV;IND;SG;1;PST
resulter resultasses V;IPFV;SBJV;SG;2;PST
trasferir trasferissais V;IPFV;SBJV;PL;2;PST
populer populede V;NFIN;PL;2
reprejenter reprejentova V;IPFV;IND;PL;3;PST
delibrer delibreia V;IND;SG;3;PRS;LGSPEC2
rater ratassan V;IPFV;SBJV;PL;1;PST
mpartir mpartesce V;IND;SG;1;PRS;LGSPEC2
acrediter acreditasses V;IPFV;SBJV;SG;2;PST
mpartir mpartirà V;IND;PL;3;FUT
acurder acurdea V;IND;SG;3;PRS;LGSPEC3
acrediter acrediteis V;IND;PL;2;PRS
jonjer jonjareis V;IND;PL;2;FUT
tramuder tramudeia V;IND;PL;3;PRS;LGSPEC2
segurer segurassais V;IPFV;SBJV;PL;2;PST
adater adatovais V;IPFV;IND;PL;2;PST
adater adateie V;IND;SG;1;PRS;LGSPEC2
storjer storjes V;IND;SG;2;PRS
liter lita V;IND;SG;3;PRS;LGSPEC1
deslier desliasses V;IPFV;SBJV;SG;2;PST
pronunzier pronunzioves V;IPFV;IND;SG;2;PST
aplicher aplichasses V;IPFV;SBJV;SG;2;PST
remplazer remplazova V;IPFV;IND;SG;3;PST
seurander seurandaras V;IND;SG;2;FUT
dejeujer dejëujassan V;IPFV;SBJV;PL;1;PST
destumer destumassa V;IPFV;SBJV;PL;3;PST
afermer afermes V;IND;SG;2;PRS;LGSPEC1
aproer aproeia V;IND;PL;3;PRS;LGSPEC2
resserver resserves V;SBJV;SG;2;PRS;LGSPEC1
trasferir trasferiron V;IND;PL;1;FUT
autoriser autorisarà V;IND;PL;3;FUT
cogner cognon V;SBJV;PL;1;PRS
manifester manifesta V;IND;SG;3;PRS;LGSPEC1
ratificher ratificharà V;IND;PL;3;FUT
purter purtes V;IND;SG;2;PRS;LGSPEC1
franjer franjarà V;IND;SG;3;FUT
delibrer delibres V;SBJV;SG;2;PRS;LGSPEC1
erjer erjessa V;IPFV;SBJV;PL;3;PST
respuender respuendassa V;IPFV;SBJV;PL;3;PST
comunicher comunicheia V;NFIN;SG;2;LGSPEC2
mutiver mutivassan V;IPFV;SBJV;PL;1;PST
parteziper partezipovais V;IPFV;IND;PL;2;PST
eserziter eserzite V;SBJV;PL;3;PRS
acurder acurda V;NFIN;SG;2;LGSPEC1
ressolver ressolvaré V;IND;SG;1;FUT
erjer erje V;SBJV;SG;1;PRS
respuender respuendon V;SBJV;PL;1;PRS
schiver schivoves V;IPFV;IND;SG;2;PST
detlarer detlarer V;NFIN;LGSPEC1
ndicher ndicheis V;SBJV;PL;2;PRS
njinier njiniassais V;IPFV;SBJV;PL;2;PST
reverir reverireis V;IND;PL;2;FUT
scuter scouteie V;SBJV;SG;1;PRS;LGSPEC2
cundaner cundanon V;SBJV;PL;1;PRS
finanzier finanziede V;NFIN;PL;2
dé dèr V;NFIN;LGSPEC2
perdujer perdujova V;IPFV;IND;PL;3;PST
arester arestarà V;IND;PL;3;FUT
scurter scurtareis V;IND;PL;2;FUT
aussei aussesses V;IPFV;SBJV;SG;2;PST
resserver resservova V;IPFV;IND;PL;3;PST
porter porteie V;SBJV;SG;3;PRS;LGSPEC2
arjonjer arjonjessa V;IPFV;SBJV;SG;3;PST
defrenzier defrenziaras V;IND;SG;2;FUT
muder mudeia V;IND;PL;3;PRS;LGSPEC2
mander mandassan V;IPFV;SBJV;PL;1;PST
dovei dessareis V;IND;PL;2;FUT
someter someteie V;SBJV;SG;3;PRS;LGSPEC2
anuler anulasse V;IPFV;SBJV;SG;1;PST
storjer storjes V;SBJV;SG;2;PRS
capir cape V;IND;SG;1;PRS;LGSPEC1
mander mandon V;SBJV;PL;1;PRS
rester restasse V;IPFV;SBJV;SG;1;PST
renunzier renunzieie V;IND;SG;1;PRS;LGSPEC2
comprer compreie V;SBJV;SG;1;PRS;LGSPEC2
anuler anulassa V;IPFV;SBJV;PL;3;PST
messei messe V;SBJV;PL;3;PRS
sustenir sustenesce V;IND;SG;1;PRS;LGSPEC2
unir unisses V;IPFV;SBJV;SG;2;PST
liter liteis V;SBJV;PL;2;PRS
danejer danejaré V;IND;SG;1;FUT
mander mandarà V;IND;PL;3;FUT
jì jiras V;IND;SG;2;FUT
purter purtaron V;IND;PL;1;FUT
gaujer gaujasses V;IPFV;SBJV;SG;2;PST
acrediter acrediteie V;IND;SG;1;PRS;LGSPEC2
renunzier renunzie V;SBJV;SG;3;PRS;LGSPEC1
autoriser autorisassan V;IPFV;SBJV;PL;1;PST
partir pertes V;IND;SG;2;PRS
viuler viuleie V;SBJV;SG;3;PRS;LGSPEC2
furmer furmeie V;SBJV;SG;3;PRS;LGSPEC2
cherder cherdovais V;IPFV;IND;PL;2;PST
curespuender curespuendarà V;IND;PL;3;FUT
adurver adurveia V;IND;PL;3;PRS;LGSPEC2
aplicher aplichassais V;IPFV;SBJV;PL;2;PST
remplazer remplazeis V;SBJV;PL;2;PRS
terjer terjessan V;IPFV;SBJV;PL;1;PST
storjer storjovan V;IPFV;IND;PL;1;PST
adoter adoton V;IND;PL;1;PRS
cianter ciantovais V;IPFV;IND;PL;2;PST
renunzier renunzieia V;IND;SG;3;PRS;LGSPEC2
fé fajarà V;IND;PL;3;FUT
destumer destume V;SBJV;PL;3;PRS
jonjer jonje V;NFIN;LGSPEC2
aproer aproaron V;IND;PL;1;FUT
desgorjer desgorjaron V;IND;PL;1;FUT
eserziter eserziteie V;SBJV;SG;3;PRS;LGSPEC2
revucher revuché V;NFIN;LGSPEC2
curespuender curespuendareis V;IND;PL;2;FUT
ester fovais V;IPFV;IND;PL;2;PST
dormir dormissa V;IPFV;SBJV;PL;3;PST
purter purtes V;SBJV;SG;2;PRS;LGSPEC1
istituir istituivais V;IPFV;IND;PL;2;PST
meter metoves V;IPFV;IND;SG;2;PST
mirer mire V;SBJV;SG;3;PRS;LGSPEC1
scuter scutasses V;IPFV;SBJV;SG;2;PST
vedei vedovan V;IPFV;IND;PL;1;PST
fé fajessa V;IPFV;SBJV;PL;3;PST
ndicher ndichoves V;IPFV;IND;SG;2;PST
educher educheia V;NFIN;SG;2;LGSPEC2
assenier assenié V;NFIN;LGSPEC2
reurganiser reurganisovan V;IPFV;IND;PL;1;PST
trasferir trasferisses V;IPFV;SBJV;SG;2;PST
damander damandeia V;IND;SG;3;PRS;LGSPEC2
sporjer sporjesses V;IPFV;SBJV;SG;2;PST
stipuler stipuleie V;SBJV;SG;1;PRS;LGSPEC2
remander remande V;IND;SG;1;PRS;LGSPEC1
acrediter acrediteia V;NFIN;SG;2;LGSPEC2
stabilir stabilisse V;IPFV;SBJV;SG;1;PST
coordener coordeneie V;SBJV;SG;3;PRS;LGSPEC2
resserver resservede V;NFIN;PL;2
publicher publiches V;IND;SG;2;PRS;LGSPEC1
ndrezer ndreza V;NFIN;SG;2;LGSPEC1
rater ratede V;NFIN;PL;2
alesirer alesireies V;IND;SG;2;PRS;LGSPEC2
afermer afermes V;SBJV;SG;2;PRS;LGSPEC1
scuter scouteia V;NFIN;SG;2;LGSPEC2
fisser fissa V;IND;PL;3;PRS;LGSPEC1
segurer segurarà V;IND;PL;3;FUT
trater trataras V;IND;SG;2;FUT
segurer seguraron V;IND;PL;1;FUT
adurver adurveies V;SBJV;SG;2;PRS;LGSPEC2
coster coston V;IND;PL;1;PRS
populer populassa V;IPFV;SBJV;SG;3;PST
meter mete V;SBJV;PL;3;PRS
reguler regules V;SBJV;SG;2;PRS;LGSPEC1
tradujer tradujovais V;IPFV;IND;PL;2;PST
passer passeie V;SBJV;SG;3;PRS;LGSPEC2
deslier deslia V;IND;SG;3;PRS;LGSPEC1
aproer aproasses V;IPFV;SBJV;SG;2;PST
produjer produjes V;SBJV;SG;2;PRS
assenier assenieies V;IND;SG;2;PRS;LGSPEC2
gaujer gaujeie V;SBJV;SG;1;PRS;LGSPEC2
reverir reveresce V;SBJV;SG;1;PRS;LGSPEC2
meter metove V;IPFV;IND;SG;1;PST
lascer lasceie V;SBJV;SG;3;PRS;LGSPEC2
acrediter acreditaras V;IND;SG;2;FUT
usserver usserver V;NFIN;LGSPEC1
limiter limitarà V;IND;PL;3;FUT
comprer comprove V;IPFV;IND;SG;1;PST
reprejenter reprejenton V;SBJV;PL;1;PRS
publicher publichovan V;IPFV;IND;PL;1;PST
jonjer jonj V;IND;PL;3;PRS
passer passarà V;IND;PL;3;FUT
assegurer asseguron V;IND;PL;1;PRS
cundaner cundaneies V;SBJV;SG;2;PRS;LGSPEC2
dovei dessaré V;IND;SG;1;FUT
adater adateia V;IND;SG;3;PRS;LGSPEC2
strenjer strenjeis V;IND;PL;2;PRS
ratificher ratifichede V;NFIN;PL;2
jonjer jonjon V;IND;PL;1;PRS
spieter spietassa V;IPFV;SBJV;PL;3;PST
costituir costitue V;SBJV;PL;3;PRS;LGSPEC1
adater adaté V;NFIN;LGSPEC2
cunferir cunferion V;IND;PL;1;PRS
spartir spartissa V;IPFV;SBJV;PL;3;PST
viver vive V;SBJV;PL;3;PRS
dormir dormirà V;IND;SG;3;FUT
marider maridon V;SBJV;PL;1;PRS
dormir dorme V;SBJV;PL;3;PRS;LGSPEC1
rater ratassais V;IPFV;SBJV;PL;2;PST
prufesser prufessa V;IND;PL;3;PRS;LGSPEC1
arester aresteie V;IND;SG;1;PRS;LGSPEC2
resulter resulte V;IND;SG;1;PRS;LGSPEC1
rater rateies V;SBJV;SG;2;PRS;LGSPEC2
atribuir atribuivan V;IPFV;IND;PL;1;PST
pronunzier pronunzia V;IND;PL;3;PRS;LGSPEC1
adoter adotes V;SBJV;SG;2;PRS;LGSPEC1
slunger slunges V;SBJV;SG;2;PRS;LGSPEC1
desvier desviovan V;IPFV;IND;PL;1;PST
delegher deleghe V;SBJV;PL;3;PRS
proibir proibireis V;IND;PL;2;FUT
defrenzier defrenzie V;NFIN;LGSPEC2
costituir costituiva V;IPFV;IND;PL;3;PST
nfurmer nfurmova V;IPFV;IND;SG;3;PST
cuntroler cuntrola V;IND;SG;3;PRS;LGSPEC1
istituir istituesce V;SBJV;SG;3;PRS;LGSPEC2
scurter scurté V;NFIN;LGSPEC2
mirer mirovan V;IPFV;IND;PL;1;PST
coordener coordeneie V;SBJV;SG;1;PRS;LGSPEC2
garantir garantesces V;SBJV;SG;2;PRS;LGSPEC2
ressolver ressolveie V;SBJV;SG;3;PRS;LGSPEC2
partir partiva V;IPFV;IND;SG;3;PST
emaner emane V;SBJV;SG;3;PRS;LGSPEC1
dejeujer dejëuje V;SBJV;PL;3;PRS
adurver adurve V;SBJV;SG;3;PRS;LGSPEC1
defrenzier defrenziesse V;IPFV;SBJV;SG;1;PST
depenjer depenjova V;IPFV;IND;SG;3;PST
acrediter acrediton V;IND;PL;1;PRS
assegurer asseguré V;NFIN;LGSPEC2
resserver resservovan V;IPFV;IND;PL;1;PST
fé fajovais V;IPFV;IND;PL;2;PST
detlarer detlarovan V;IPFV;IND;PL;1;PST
terjer terjoves V;IPFV;IND;SG;2;PST
rezever rezeves V;IND;SG;2;PRS
goder gode V;SBJV;PL;3;PRS
determiner determines V;SBJV;SG;2;PRS;LGSPEC1
perdujer perdujon V;IND;PL;1;PRS
damander damandon V;IND;PL;1;PRS
spartir spartisse V;IPFV;SBJV;SG;1;PST
marider maridareis V;IND;PL;2;FUT
delibrer delibrovais V;IPFV;IND;PL;2;PST
ndrezer ndrezea V;IND;SG;3;PRS;LGSPEC3
acuser acuseis V;IND;PL;2;PRS
perder perdova V;IPFV;IND;SG;3;PST
cumander cumande V;IND;SG;1;PRS;LGSPEC1
podei posse V;SBJV;SG;3;PRS
morir morissa V;IPFV;SBJV;SG;3;PST
secuestrer secuestreis V;SBJV;PL;2;PRS
goder godea V;IND;SG;3;PRS;LGSPEC3
unir univais V;IPFV;IND;PL;2;PST
pruibir pruibes V;SBJV;SG;2;PRS;LGSPEC1
dormir dormesc V;IND;PL;3;PRS;LGSPEC2
urganiser urganisassa V;IPFV;SBJV;SG;3;PST
adater adate V;SBJV;SG;3;PRS;LGSPEC1
jì vae V;SBJV;PL;3;PRS
partir partivan V;IPFV;IND;PL;1;PST
dejeujer dejëujassais V;IPFV;SBJV;PL;2;PST
muder mude V;SBJV;PL;3;PRS
njinier njinie V;SBJV;SG;3;PRS;LGSPEC1
njinier njiniea V;IND;SG;3;PRS;LGSPEC3
volei volessan V;IPFV;SBJV;PL;1;PST
liter litovan V;IPFV;IND;PL;1;PST
autoriser autorisa V;IND;PL;3;PRS;LGSPEC1
comprer compreies V;IND;SG;2;PRS;LGSPEC2
mpartir mpartion V;SBJV;PL;1;PRS
morir morisses V;IPFV;SBJV;SG;2;PST
curespuender curespuendes V;SBJV;SG;2;PRS;LGSPEC1
marider marideis V;IND;PL;2;PRS
partir partives V;IPFV;IND;SG;2;PST
perde perdessa V;IPFV;SBJV;PL;3;PST
apurver apurveia V;NFIN;SG;2;LGSPEC2
perder perdon V;IND;PL;1;PRS
slunger slungarà V;IND;PL;3;FUT
cruzier cruziarà V;IND;SG;3;FUT
spidler spidlova V;IPFV;IND;SG;3;PST
publicher publicheis V;IND;PL;2;PRS
usserver usserve V;IND;SG;1;PRS;LGSPEC1
determiner determine V;SBJV;SG;1;PRS;LGSPEC1
determiner determineia V;IND;PL;3;PRS;LGSPEC2
arjonjer arjonj V;NFIN;SG;2
cuntroler cuntroloves V;IPFV;IND;SG;2;PST
respuender respuende V;SBJV;SG;3;PRS;LGSPEC1
delibrer delibreis V;SBJV;PL;2;PRS
azerter azertove V;IPFV;IND;SG;1;PST
acurder acurdasse V;IPFV;SBJV;SG;1;PST
istituir istituesces V;SBJV;SG;2;PRS;LGSPEC2
adurver adurva V;IND;PL;3;PRS;LGSPEC1
adurver adurves V;IND;SG;2;PRS;LGSPEC1
manifester manifesteie V;IND;SG;1;PRS;LGSPEC2
urganiser urganison V;IND;PL;1;PRS
promulgher promulgharà V;IND;PL;3;FUT
remander remandes V;SBJV;SG;2;PRS;LGSPEC1
danejer daneje V;IND;SG;1;PRS;LGSPEC1
prufesser prufesseia V;IND;PL;3;PRS;LGSPEC2
messei messei V;NFIN
acurder acurdove V;IPFV;IND;SG;1;PST
redujer reduje V;SBJV;SG;1;PRS
strenjer strenje V;IND;SG;1;PRS
cunvalider cunvalideia V;IND;PL;3;PRS;LGSPEC2
scuter scutova V;IPFV;IND;SG;3;PST
dé dae V;SBJV;PL;3;PRS
parteziper parteziparà V;IND;SG;3;FUT
stabilir stabilion V;SBJV;PL;1;PRS
condujer condujessais V;IPFV;SBJV;PL;2;PST
udir ude V;SBJV;PL;3;PRS;LGSPEC1
acurder acurdeis V;IND;PL;2;PRS
dé daron V;IND;PL;1;FUT
comprer comprea V;IND;SG;3;PRS;LGSPEC3
rezever rezevove V;IPFV;IND;SG;1;PST
coordener coordene V;SBJV;SG;1;PRS;LGSPEC1
reurganiser reurganiser V;NFIN;LGSPEC1
sotscriver sotscriv V;IND;PL;3;PRS
seurander seurandeis V;SBJV;PL;2;PRS
storjer storjessan V;IPFV;SBJV;PL;1;PST
reguler regularà V;IND;PL;3;FUT
cuntroler cuntroleie V;SBJV;SG;3;PRS;LGSPEC2
coordiner coordinasses V;IPFV;SBJV;SG;2;PST
usserver usserveies V;IND;SG;2;PRS;LGSPEC2
ressolver ressolvon V;SBJV;PL;1;PRS
udir udion V;IND;PL;1;PRS
populer populeia V;NFIN;SG;2;LGSPEC2
sponjer sponjon V;IND;PL;1;PRS
coordiner coordinova V;IPFV;IND;PL;3;PST
perder perdove V;IPFV;IND;SG;1;PST
garantir garant V;IND;SG;3;PRS;LGSPEC1
franjer franjaras V;IND;SG;2;FUT
emaner emaneia V;IND;SG;3;PRS;LGSPEC2
prufesser prufesse V;IND;SG;1;PRS;LGSPEC1
atuer atuareis V;IND;PL;2;FUT
someter sometove V;IPFV;IND;SG;1;PST
costituir costituesc V;NFIN;SG;2;LGSPEC2
reurganiser reurganison V;IND;PL;1;PRS
assenier asseniarà V;IND;SG;3;FUT
remander remandasses V;IPFV;SBJV;SG;2;PST
remander remandova V;IPFV;IND;SG;3;PST
terjer terjovais V;IPFV;IND;PL;2;PST
arbitrer arbitreis V;IND;PL;2;PRS
dé dà V;IND;PL;3;PRS
giudicher giudicheis V;SBJV;PL;2;PRS
rater raté V;NFIN;LGSPEC2
comunicher comunichassan V;IPFV;SBJV;PL;1;PST
alesirer alesira V;NFIN;SG;2;LGSPEC1
reguler reguleia V;NFIN;SG;2;LGSPEC2
liter litarà V;IND;PL;3;FUT
cumporter cumporteie V;IND;SG;1;PRS;LGSPEC2
arbitrer arbitré V;NFIN;LGSPEC2
schiver schivaras V;IND;SG;2;FUT
resulter resulteia V;IND;SG;3;PRS;LGSPEC2
udir udesces V;SBJV;SG;2;PRS;LGSPEC2
morir morissais V;IPFV;SBJV;PL;2;PST
cogner cognea V;IND;SG;3;PRS;LGSPEC3
deslier deslieie V;SBJV;SG;3;PRS;LGSPEC2
comunicher comunichoves V;IPFV;IND;SG;2;PST
avei aesse V;IPFV;SBJV;SG;1;PST;LGSPEC2
assenier assenier V;NFIN;LGSPEC1
promulgher promulgher V;NFIN;LGSPEC1
corompe coromparas V;IND;SG;2;FUT
respuender respuendeie V;SBJV;SG;1;PRS;LGSPEC2
mpartir mpartesc V;IND;PL;3;PRS;LGSPEC2
spieter spietea V;IND;SG;3;PRS;LGSPEC3
cumander cumandon V;IND;PL;1;PRS
ndicher ndicharon V;IND;PL;1;FUT
promulgher promulgheia V;NFIN;SG;2;LGSPEC2
promulgher promulghon V;SBJV;PL;1;PRS
destumer destumeia V;NFIN;SG;2;LGSPEC2
desgorjer desgorjes V;SBJV;SG;2;PRS
remander remanda V;IND;SG;3;PRS;LGSPEC1
parteziper partezipova V;IPFV;IND;PL;3;PST
purter purta V;IND;SG;3;PRS;LGSPEC1
mener menon V;IND;PL;1;PRS
sustenir sustenide V;NFIN;PL;2
damander damandes V;SBJV;SG;2;PRS;LGSPEC1
mpartir mpart V;IND;PL;3;PRS;LGSPEC1
prejenter prejenteia V;IND;PL;3;PRS;LGSPEC2
acurder acurdaré V;IND;SG;1;FUT
cunzeder cunzedes V;SBJV;SG;2;PRS
reguler regulede V;NFIN;PL;2
arester aresteis V;IND;PL;2;PRS
garantir garantiron V;IND;PL;1;FUT
populer populeies V;SBJV;SG;2;PRS;LGSPEC2
delegher delegharas V;IND;SG;2;FUT
schiver schiveies V;IND;SG;2;PRS;LGSPEC2
urganiser urganiseie V;IND;SG;1;PRS;LGSPEC2
resulter resultarà V;IND;PL;3;FUT
aussei aussaras V;IND;SG;2;FUT
dormir dormirà V;IND;PL;3;FUT
deslier desliarà V;IND;PL;3;FUT
partir partissan V;IPFV;SBJV;PL;1;PST
sponjer sponjer V;NFIN;LGSPEC1
nevei neveèr V;NFIN;LGSPEC2
numiner numinarà V;IND;SG;3;FUT
adoter adotovan V;IPFV;IND;PL;1;PST
rater rateia V;IND;PL;3;PRS;LGSPEC2
cunzeder cunzedaras V;IND;SG;2;FUT
franjer franjoves V;IPFV;IND;SG;2;PST
adurver adurvoves V;IPFV;IND;SG;2;PST
schiver schiveie V;SBJV;SG;1;PRS;LGSPEC2
porter portea V;IND;SG;3;PRS;LGSPEC3
spidler spidlon V;SBJV;PL;1;PRS
vedei vedova V;IPFV;IND;PL;3;PST
cumporter cumportovais V;IPFV;IND;PL;2;PST
aussei aussareis V;IND;PL;2;FUT
liter liter V;NFIN;LGSPEC1
mpartir mpartieis V;SBJV;PL;2;PRS
revucher revucheie V;IND;SG;1;PRS;LGSPEC2
damander damandeis V;IND;PL;2;PRS
stipuler stipuleia V;IND;SG;3;PRS;LGSPEC2
redujer redujarà V;IND;SG;3;FUT
garantir garante V;IND;SG;1;PRS;LGSPEC1
promulgher promulghede V;NFIN;PL;2
desgorjer desgorjessan V;IPFV;SBJV;PL;1;PST
parteziper partezipon V;IND;PL;1;PRS
nascer nascon V;SBJV;PL;1;PRS
storjer storjer V;NFIN;LGSPEC1
reverir reverieis V;IND;PL;2;PRS
aussei ausses V;IND;SG;2;PRS
ester fova V;IPFV;IND;PL;3;PST
sponjer sponjessa V;IPFV;SBJV;PL;3;PST
adoter adote V;IND;SG;1;PRS;LGSPEC1
coordener coordenaras V;IND;SG;2;FUT
cogner cognaras V;IND;SG;2;FUT
limiter limite V;SBJV;SG;3;PRS;LGSPEC1
alesirer alesirovan V;IPFV;IND;PL;1;PST
registrer registrasses V;IPFV;SBJV;SG;2;PST
resserver resserver V;NFIN;LGSPEC1
arester arestede V;NFIN;PL;2
passer passes V;IND;SG;2;PRS;LGSPEC1
revucher revuchove V;IPFV;IND;SG;1;PST
deslier deslieies V;IND;SG;2;PRS;LGSPEC2
anuler anulassa V;IPFV;SBJV;SG;3;PST
delibrer delibrassan V;IPFV;SBJV;PL;1;PST
apurver apurvede V;NFIN;PL;2
ndicher ndichassa V;IPFV;SBJV;PL;3;PST
cruzier cruzieis V;IND;PL;2;PRS
mirer mireies V;IND;SG;2;PRS;LGSPEC2
urganiser urganiser V;NFIN;LGSPEC1
revucher revucharà V;IND;SG;3;FUT
jonjer jonjeis V;SBJV;PL;2;PRS
stabilir stabilissan V;IPFV;SBJV;PL;1;PST
limiter limiteia V;IND;SG;3;PRS;LGSPEC2
arjonjer arjonjes V;SBJV;SG;2;PRS
secuestrer secuestrovan V;IPFV;IND;PL;1;PST
delegher deleghon V;IND;PL;1;PRS
delegher deleghé V;NFIN;LGSPEC2
ncurajer ncurajassa V;IPFV;SBJV;SG;3;PST
scurter scurtarà V;IND;SG;3;FUT
aproer aproova V;IPFV;IND;SG;3;PST
defrenzier defrenziessais V;IPFV;SBJV;PL;2;PST
aproer aproeis V;IND;PL;2;PRS
damander damandon V;SBJV;PL;1;PRS
numiner numinova V;IPFV;IND;PL;3;PST
desgorjer desgorjon V;IND;PL;1;PRS
destumer destumaras V;IND;SG;2;FUT
istituir istitues V;SBJV;SG;2;PRS;LGSPEC1
jonjer jonjoves V;IPFV;IND;SG;2;PST
arbitrer arbitreie V;IND;SG;1;PRS;LGSPEC2
vedei veid V;IND;SG;3;PRS
avei as V;IND;SG;2;PRS
mutiver mutivarà V;IND;PL;3;FUT
acuser acuseia V;IND;SG;3;PRS;LGSPEC2
alesirer alesire V;SBJV;PL;3;PRS
perde perdaré V;IND;SG;1;FUT
cunferir cunferisses V;IPFV;SBJV;SG;2;PST
mutiver mutiveie V;SBJV;SG;1;PRS;LGSPEC2
arbitrer arbitrovais V;IPFV;IND;PL;2;PST
avei ebe V;SBJV;SG;3;PRS;LGSPEC2
dovei dessan V;IPFV;SBJV;PL;1;PST;LGSPEC1
condujer condujaras V;IND;SG;2;FUT
atribuir atribuireis V;IND;PL;2;FUT
afermer afermaron V;IND;PL;1;FUT
mander mandeies V;SBJV;SG;2;PRS;LGSPEC2
ancunter ancuntes V;IND;SG;2;PRS;LGSPEC1
savei savessais V;IPFV;SBJV;PL;2;PST
slunger slungaras V;IND;SG;2;FUT
sporjer sporjer V;NFIN;LGSPEC1
goder godeies V;SBJV;SG;2;PRS;LGSPEC2
savei savessa V;IPFV;SBJV;PL;3;PST
parteziper partezipeie V;SBJV;SG;3;PRS;LGSPEC2
cumander cumandes V;SBJV;SG;2;PRS;LGSPEC1
cuntroler cuntrolassais V;IPFV;SBJV;PL;2;PST
ndicher ndiche V;IND;SG;1;PRS;LGSPEC1
proibir proibisses V;IPFV;SBJV;SG;2;PST
cunvalider cunvalidassa V;IPFV;SBJV;PL;3;PST
acrediter acreditova V;IPFV;IND;PL;3;PST
resulter resulteies V;IND;SG;2;PRS;LGSPEC2
desgorjer desgorjede V;NFIN;PL;2
perdujer perdujaré V;IND;SG;1;FUT
pronunzier pronunzie V;SBJV;SG;3;PRS;LGSPEC1
apurver apurve V;SBJV;PL;3;PRS
cherder cherde V;SBJV;PL;3;PRS
udir udes V;IND;SG;2;PRS;LGSPEC1
mutiver mutivea V;IND;SG;3;PRS;LGSPEC3
aussei ausse V;SBJV;SG;3;PRS
partir partiron V;IND;PL;1;FUT
assegurer assegureie V;SBJV;SG;3;PRS;LGSPEC2
arbitrer arbitrassais V;IPFV;SBJV;PL;2;PST
detlarer detlare V;SBJV;PL;3;PRS
ndrezer ndrezeie V;SBJV;SG;1;PRS;LGSPEC2
finanzier finanziassan V;IPFV;SBJV;PL;1;PST
cunferir cunfer V;IND;SG;3;PRS;LGSPEC1
sotscriver sotscriveis V;SBJV;PL;2;PRS
destumer destuma V;IND;SG;3;PRS;LGSPEC1
istruir istruiva V;IPFV;IND;PL;3;PST
aussei aussova V;IPFV;IND;PL;3;PST
stabilir stabilissa V;IPFV;SBJV;SG;3;PST
scurter scurteie V;SBJV;SG;1;PRS;LGSPEC2
dormir dormes V;SBJV;SG;2;PRS;LGSPEC1
lascer lasces V;SBJV;SG;2;PRS;LGSPEC1
detlarer detlarasse V;IPFV;SBJV;SG;1;PST
coster coste V;IND;SG;1;PRS;LGSPEC1
nfurmer nfurmon V;SBJV;PL;1;PRS
reguler regularé V;IND;SG;1;FUT
deslier desliasse V;IPFV;SBJV;SG;1;PST
ncurajer ncurajova V;IPFV;IND;PL;3;PST
cunzeder cunzedede V;NFIN;PL;2
morir muer V;NFIN;SG;2
rejoner rejonovais V;IPFV;IND;PL;2;PST
cunvalider cunvalidova V;IPFV;IND;SG;3;PST
ratificher ratificheia V;IND;SG;3;PRS;LGSPEC2
mener meineis V;SBJV;SG;2;PRS;LGSPEC2
spartir spartirà V;IND;SG;3;FUT
schiver schivaron V;IND;PL;1;FUT
cumporter cumportova V;IPFV;IND;PL;3;PST
detlarer detlare V;SBJV;SG;3;PRS;LGSPEC1
atuer atuarà V;IND;SG;3;FUT
fisser fissasse V;IPFV;SBJV;SG;1;PST
garantir garantesce V;SBJV;PL;3;PRS;LGSPEC2
schiver schive V;SBJV;SG;1;PRS;LGSPEC1
cunvalider cunvalidovais V;IPFV;IND;PL;2;PST
comprer compres V;SBJV;SG;2;PRS;LGSPEC1
mantenir mantenion V;SBJV;PL;1;PRS
dovei desses V;IND;SG;2;PRS
nevei nevei V;NFIN;LGSPEC1
rezever rezeveis V;IND;PL;2;PRS
trater tratea V;IND;SG;3;PRS;LGSPEC3
onjer onjessais V;IPFV;SBJV;PL;2;PST
emaner emanaras V;IND;SG;2;FUT
dovei dova V;IPFV;IND;PL;3;PST;LGSPEC1
tradujer tradujon V;SBJV;PL;1;PRS
sustenir sustenes V;SBJV;SG;2;PRS;LGSPEC1
coster costaras V;IND;SG;2;FUT
manifester manifesteie V;SBJV;SG;1;PRS;LGSPEC2
strenjer strenjer V;NFIN;LGSPEC1
mirer mirassais V;IPFV;SBJV;PL;2;PST
rester restaré V;IND;SG;1;FUT
giudicher giudicharà V;IND;PL;3;FUT
stabilir stabilesce V;SBJV;SG;3;PRS;LGSPEC2
udir udesc V;IND;PL;3;PRS;LGSPEC2
pruibir pruibissais V;IPFV;SBJV;PL;2;PST
aplicher aplichea V;IND;SG;3;PRS;LGSPEC3
mener meine V;SBJV;SG;3;PRS;LGSPEC1
tradujer tradujessais V;IPFV;SBJV;PL;2;PST
liter liteia V;IND;PL;3;PRS;LGSPEC2
onjer onjessa V;IPFV;SBJV;SG;3;PST
rester restovais V;IPFV;IND;PL;2;PST
pruibir pruibieis V;SBJV;PL;2;PRS
atribuir atribuirà V;IND;SG;3;FUT
unir unesc V;IND;PL;3;PRS;LGSPEC2
manifester manifestovais V;IPFV;IND;PL;2;PST
meter metesse V;IPFV;SBJV;SG;1;PST
mander mandasse V;IPFV;SBJV;SG;1;PST
savei savarà V;IND;PL;3;FUT
alesirer alesiraré V;IND;SG;1;FUT
delibrer delibra V;IND;SG;3;PRS;LGSPEC1
nascer nascovan V;IPFV;IND;PL;1;PST
reprejenter reprejentarà V;IND;SG;3;FUT
viver vivessan V;IPFV;SBJV;PL;1;PST
autoriser autorison V;IND;PL;1;PRS
reguler regulova V;IPFV;IND;PL;3;PST
giudicher giudichasse V;IPFV;SBJV;SG;1;PST
meter metessa V;IPFV;SBJV;PL;3;PST
spidler spidle V;IND;SG;1;PRS;LGSPEC1
udir udissa V;IPFV;SBJV;PL;3;PST
arjonjer arjonje V;SBJV;SG;3;PRS
arjonjer arjonjeis V;SBJV;PL;2;PRS
populer populassais V;IPFV;SBJV;PL;2;PST
emaner emanovan V;IPFV;IND;PL;1;PST
rejoner rejonova V;IPFV;IND;PL;3;PST
deslier deslieis V;IND;PL;2;PRS
capir capive V;IPFV;IND;SG;1;PST
mener menon V;SBJV;PL;1;PRS
ester fossais V;IPFV;SBJV;PL;2;PST
spartir spartesc V;NFIN;SG;2;LGSPEC2
deslier deslié V;NFIN;LGSPEC2
coordener coordeneie V;IND;SG;1;PRS;LGSPEC2
istituir istituissa V;IPFV;SBJV;PL;3;PST
sotscriver sotscrive V;SBJV;PL;3;PRS
reverir reverir V;NFIN;LGSPEC1
lascer lasceie V;IND;SG;1;PRS;LGSPEC2
furmer furma V;NFIN;SG;2;LGSPEC1
aproer aproeia V;NFIN;SG;2;LGSPEC2
liter litovais V;IPFV;IND;PL;2;PST
cumander cumandeies V;SBJV;SG;2;PRS;LGSPEC2
aussei aussarà V;IND;PL;3;FUT
marider maridassa V;IPFV;SBJV;SG;3;PST
azerter azertassa V;IPFV;SBJV;PL;3;PST
cogner cognovais V;IPFV;IND;PL;2;PST
costituir costitu V;IND;PL;3;PRS;LGSPEC1
onjer onjeis V;SBJV;PL;2;PRS
pronunzier pronunziassan V;IPFV;SBJV;PL;1;PST
cruzier cruzie V;SBJV;SG;3;PRS;LGSPEC1
savei sà V;NFIN;SG;2
stabilir stabilivais V;IPFV;IND;PL;2;PST
emaner emanasse V;IPFV;SBJV;SG;1;PST
publicher publicheie V;SBJV;SG;1;PRS;LGSPEC2
emaner emaneia V;NFIN;SG;2;LGSPEC2
desvier desvieis V;SBJV;PL;2;PRS
determiner determiner V;NFIN;LGSPEC1
scuter scoutes V;SBJV;SG;2;PRS;LGSPEC1
resserver resservon V;SBJV;PL;1;PRS
liter litassa V;IPFV;SBJV;PL;3;PST
ncurajer ncurajer V;NFIN;LGSPEC1
storjer storjovais V;IPFV;IND;PL;2;PST
lascer lascea V;IND;SG;3;PRS;LGSPEC3
lascer lascovais V;IPFV;IND;PL;2;PST
romper rompoves V;IPFV;IND;SG;2;PST
sustenir sustenisse V;IPFV;SBJV;SG;1;PST
cogner cognaré V;IND;SG;1;FUT
mutiver mutivovais V;IPFV;IND;PL;2;PST
azerter azerté V;NFIN;LGSPEC2
prufesser prufesseies V;IND;SG;2;PRS;LGSPEC2
cumporter cumporton V;SBJV;PL;1;PRS
delibrer delibraras V;IND;SG;2;FUT
remplazer remplazeia V;NFIN;SG;2;LGSPEC2
resserver resservaras V;IND;SG;2;FUT
publicher publichove V;IPFV;IND;SG;1;PST
resulter resultassa V;IPFV;SBJV;PL;3;PST
passer passeia V;IND;SG;3;PRS;LGSPEC2
adater adatassan V;IPFV;SBJV;PL;1;PST
usserver usserve V;SBJV;SG;3;PRS;LGSPEC1
adater adateia V;NFIN;SG;2;LGSPEC2
spieter spieteis V;SBJV;PL;2;PRS
determiner determinasses V;IPFV;SBJV;SG;2;PST
rejoner rejonaron V;IND;PL;1;FUT
avei aes V;NFIN;SG;2;LGSPEC1
anuler anularon V;IND;PL;1;FUT
franjer franjeis V;SBJV;PL;2;PRS
cuntroler cuntrolassa V;IPFV;SBJV;SG;3;PST
trasferir trasferieis V;IND;PL;2;PRS
dejeujer dejëujeis V;SBJV;PL;2;PRS
stipuler stipula V;IND;SG;3;PRS;LGSPEC1
parteziper parteziper V;NFIN;LGSPEC1
apurver apurveie V;SBJV;SG;1;PRS;LGSPEC2
adater adatassa V;IPFV;SBJV;SG;3;PST
detlarer detlareia V;IND;SG;3;PRS;LGSPEC2
dormir dormisse V;IPFV;SBJV;SG;1;PST
giudicher giudichasses V;IPFV;SBJV;SG;2;PST
perdujer perduje V;NFIN;LGSPEC2
perde perdeis V;SBJV;PL;2;PRS
cherder cherdeis V;IND;PL;2;PRS
porter portova V;IPFV;IND;SG;3;PST
destiner destineie V;IND;SG;1;PRS;LGSPEC2
aplicher aplicheie V;IND;SG;1;PRS;LGSPEC2
jonjer jonj V;IND;SG;3;PRS
curespuender curespuendeies V;IND;SG;2;PRS;LGSPEC2
respuender respuendasse V;IPFV;SBJV;SG;1;PST
eserziter eserziteia V;IND;PL;3;PRS;LGSPEC2
ejaminer ejamineis V;IND;PL;2;PRS
sporjer sporjaré V;IND;SG;1;FUT
remplazer remplazassais V;IPFV;SBJV;PL;2;PST
promulgher promulgheia V;IND;SG;3;PRS;LGSPEC2
manifester manifestea V;IND;SG;3;PRS;LGSPEC3
cianter cianteie V;IND;SG;1;PRS;LGSPEC2
prejenter prejentasses V;IPFV;SBJV;SG;2;PST
assegurer assegurassa V;IPFV;SBJV;PL;3;PST
viver vivove V;IPFV;IND;SG;1;PST
arester arestova V;IPFV;IND;SG;3;PST
sustenir susten V;NFIN;SG;2;LGSPEC1
atribuir atribuesce V;SBJV;SG;1;PRS;LGSPEC2
secuestrer secuestrea V;IND;SG;3;PRS;LGSPEC3
atuer atueis V;SBJV;PL;2;PRS
secuestrer secuestrassais V;IPFV;SBJV;PL;2;PST
viuler viulassais V;IPFV;SBJV;PL;2;PST
afermer afermovais V;IPFV;IND;PL;2;PST
njinier njinieia V;NFIN;SG;2;LGSPEC2
muder mudaré V;IND;SG;1;FUT
istruir istruesc V;IND;PL;3;PRS;LGSPEC2
perdujer perduje V;SBJV;PL;3;PRS
spartir spartissais V;IPFV;SBJV;PL;2;PST
prejenter prejentassan V;IPFV;SBJV;PL;1;PST
arbitrer arbitrovan V;IPFV;IND;PL;1;PST
cumporter cumportarà V;IND;PL;3;FUT
adater adatasses V;IPFV;SBJV;SG;2;PST
morir morissa V;IPFV;SBJV;PL;3;PST
entenjer entenjova V;IPFV;IND;SG;3;PST
scuter scutassa V;IPFV;SBJV;SG;3;PST
cunvalider cunvalider V;NFIN;LGSPEC1
promulgher promulghes V;IND;SG;2;PRS;LGSPEC1
gaujer gaujé V;NFIN;LGSPEC2
aplicher aplichon V;SBJV;PL;1;PRS
vegnì vegnissais V;IPFV;SBJV;PL;2;PST
terjer terjaré V;IND;SG;1;FUT
dé dae V;SBJV;SG;1;PRS
cuntroler cuntrolon V;IND;PL;1;PRS
podei podovan V;IPFV;IND;PL;1;PST
limiter limiter V;NFIN;LGSPEC1
curespuender curespuendeis V;SBJV;PL;2;PRS
condujer condujesse V;IPFV;SBJV;SG;1;PST
trasferir trasferesc V;IND;SG;3;PRS;LGSPEC2
danejer danejasses V;IPFV;SBJV;SG;2;PST
ncurajer ncurajarà V;IND;PL;3;FUT
danejer danejassan V;IPFV;SBJV;PL;1;PST
secuestrer secuestrassa V;IPFV;SBJV;PL;3;PST
azerter azerte V;IND;SG;1;PRS;LGSPEC1
curespuender curespuendove V;IPFV;IND;SG;1;PST
mirer mira V;NFIN;SG;2;LGSPEC1
urganiser urganises V;IND;SG;2;PRS;LGSPEC1
segurer segura V;IND;PL;3;PRS;LGSPEC1
spartir spartesce V;SBJV;SG;3;PRS;LGSPEC2
tramuder tramudes V;IND;SG;2;PRS;LGSPEC1
cherder cherdaré V;IND;SG;1;FUT
nfurmer nfurmeia V;IND;PL;3;PRS;LGSPEC2
acrediter acreditassa V;IPFV;SBJV;PL;3;PST
autoriser autorisé V;NFIN;LGSPEC2
giudicher giudicheie V;SBJV;SG;1;PRS;LGSPEC2
lascer lascer V;NFIN;LGSPEC1
fisser fisson V;SBJV;PL;1;PRS
rater ratova V;IPFV;IND;PL;3;PST
atribuir atribuissa V;IPFV;SBJV;SG;3;PST
reprejenter reprejente V;SBJV;SG;1;PRS;LGSPEC1
someter somete V;SBJV;SG;3;PRS;LGSPEC1
curespuender curespuendovan V;IPFV;IND;PL;1;PST
segurer segureie V;IND;SG;1;PRS;LGSPEC2
sustenir sustene V;IND;SG;1;PRS;LGSPEC1
cogner cogneia V;NFIN;SG;2;LGSPEC2
giudicher giudicheia V;IND;SG;3;PRS;LGSPEC2
cunzeder cunzed V;IND;PL;3;PRS
schiver schivova V;IPFV;IND;PL;3;PST
coordener coordenon V;SBJV;PL;1;PRS
njinier njiniaron V;IND;PL;1;FUT
schiver schives V;SBJV;SG;2;PRS;LGSPEC1
determiner determinova V;IPFV;IND;SG;3;PST
mutiver mutive V;SBJV;SG;3;PRS;LGSPEC1
istruir istruesce V;SBJV;PL;3;PRS;LGSPEC2
emaner emanassa V;IPFV;SBJV;PL;3;PST
istituir istituesce V;SBJV;SG;1;PRS;LGSPEC2
danejer danejon V;SBJV;PL;1;PRS
furmer furmovan V;IPFV;IND;PL;1;PST
numiner numinassa V;IPFV;SBJV;SG;3;PST
condujer condujaré V;IND;SG;1;FUT
podei podesse V;IPFV;SBJV;SG;1;PST
rejoner rejonareis V;IND;PL;2;FUT
mander mande V;IND;SG;1;PRS;LGSPEC1
renunzier renunziovan V;IPFV;IND;PL;1;PST
dovei dova V;IPFV;IND;SG;3;PST;LGSPEC1
scurter scurton V;SBJV;PL;1;PRS
cruzier cruzie V;SBJV;PL;3;PRS
cuntroler cuntrole V;SBJV;SG;3;PRS;LGSPEC1
mpartir mpartesc V;IND;SG;3;PRS;LGSPEC2
alesirer alesiré V;NFIN;LGSPEC2
delibrer delibrassa V;IPFV;SBJV;SG;3;PST
segurer segurova V;IPFV;IND;SG;3;PST
franjer franjova V;IPFV;IND;SG;3;PST
cianter cianton V;SBJV;PL;1;PRS
cunferir cunferes V;SBJV;SG;2;PRS;LGSPEC1
assenier assenieie V;SBJV;SG;3;PRS;LGSPEC2
franjer franje V;SBJV;PL;3;PRS
sotscriver sotscrivovais V;IPFV;IND;PL;2;PST
cherder cherdova V;IPFV;IND;PL;3;PST
respuender respuendasses V;IPFV;SBJV;SG;2;PST
nascer nascede V;NFIN;PL;2
morir morives V;IPFV;IND;SG;2;PST
cumporter cumporta V;IND;PL;3;PRS;LGSPEC1
comprer compreie V;SBJV;SG;3;PRS;LGSPEC2
detlarer detlarasses V;IPFV;SBJV;SG;2;PST
volei volon V;IND;PL;1;PRS
dormir dormives V;IPFV;IND;SG;2;PST
corompe corompe V;SBJV;SG;3;PRS
mirer mires V;IND;SG;2;PRS;LGSPEC1
reguler regulareis V;IND;PL;2;FUT
resulter resulta V;IND;PL;3;PRS;LGSPEC1
limiter limitoves V;IPFV;IND;SG;2;PST
slunger slungassa V;IPFV;SBJV;PL;3;PST
garantir garantireis V;IND;PL;2;FUT
seurander seurandova V;IPFV;IND;SG;3;PST
rejoner rejona V;IND;SG;3;PRS;LGSPEC1
ejaminer ejaminé V;NFIN;LGSPEC2
scurter scurte V;SBJV;SG;1;PRS;LGSPEC1
goder godassan V;IPFV;SBJV;PL;1;PST
resserver resserveies V;IND;SG;2;PRS;LGSPEC2
comprer compra V;IND;SG;3;PRS;LGSPEC1
strenjer strenjon V;IND;PL;1;PRS
fisser fisseie V;SBJV;SG;3;PRS;LGSPEC2
tradujer traduj V;IND;SG;3;PRS
redujer redujesses V;IPFV;SBJV;SG;2;PST
curespuender curespuendeies V;SBJV;SG;2;PRS;LGSPEC2
corompe corompe V;NFIN;LGSPEC2
ndicher ndichova V;IPFV;IND;SG;3;PST
entenjer entenj V;IND;SG;3;PRS
seurander seuranda V;IND;PL;3;PRS;LGSPEC1
cherder cherdon V;IND;PL;1;PRS
parteziper partezipe V;SBJV;SG;3;PRS;LGSPEC1
seurander seurandede V;NFIN;PL;2
udir udieis V;SBJV;PL;2;PRS
autoriser autorisassais V;IPFV;SBJV;PL;2;PST
reguler regulovais V;IPFV;IND;PL;2;PST
dejeujer dejëujarà V;IND;SG;3;FUT
seurander seurandeia V;IND;PL;3;PRS;LGSPEC2
muder mude V;IND;SG;1;PRS;LGSPEC1
meter mete V;NFIN;LGSPEC2
resserver resserveia V;NFIN;SG;2;LGSPEC2
spidler spidlede V;NFIN;PL;2
gaujer gaujeia V;NFIN;SG;2;LGSPEC2
aplicher apliché V;NFIN;LGSPEC2
depenjer depenjon V;IND;PL;1;PRS
stabilir stabilive V;IPFV;IND;SG;1;PST
erjer erjessais V;IPFV;SBJV;PL;2;PST
arbitrer arbitrasse V;IPFV;SBJV;SG;1;PST
rezever rezeve V;SBJV;SG;3;PRS
promulgher promulgheie V;SBJV;SG;3;PRS;LGSPEC2
aproer aproon V;SBJV;PL;1;PRS
giudicher giudicha V;NFIN;SG;2;LGSPEC1
parteziper partezipovan V;IPFV;IND;PL;1;PST
ndrezer ndrezeia V;IND;SG;3;PRS;LGSPEC2
coordiner coordineie V;SBJV;SG;3;PRS;LGSPEC2
coordiner coordinovais V;IPFV;IND;PL;2;PST
mander mandé V;NFIN;LGSPEC2
avei ebe V;SBJV;SG;1;PRS;LGSPEC2
corompe corompessa V;IPFV;SBJV;SG;3;PST
pronunzier pronunzieie V;SBJV;SG;3;PRS;LGSPEC2
corompe corompeis V;SBJV;PL;2;PRS
aplicher aplichassa V;IPFV;SBJV;PL;3;PST
tramuder tramude V;IND;SG;1;PRS;LGSPEC1
perde perdoves V;IPFV;IND;SG;2;PST
someter someter V;NFIN;LGSPEC1
sotscriver sotscrivaron V;IND;PL;1;FUT
cruzier cruziova V;IPFV;IND;SG;3;PST
autoriser autorisove V;IPFV;IND;SG;1;PST
perder perde V;SBJV;SG;1;PRS
avei ova V;IPFV;IND;SG;3;PST;LGSPEC1
assegurer asseguraras V;IND;SG;2;FUT
destumer destumassa V;IPFV;SBJV;SG;3;PST
avei esse V;IPFV;SBJV;SG;1;PST;LGSPEC1
pronunzier pronunzieie V;SBJV;SG;1;PRS;LGSPEC2
dejeujer dejëujasses V;IPFV;SBJV;SG;2;PST
udir udesces V;IND;SG;2;PRS;LGSPEC2
coordiner coordinaras V;IND;SG;2;FUT
vegnì vegneis V;IND;PL;2;PRS
detlarer detlarassais V;IPFV;SBJV;PL;2;PST
sporjer sporjova V;IPFV;IND;PL;3;PST
reprejenter reprejenté V;NFIN;LGSPEC2
scurter scurtasses V;IPFV;SBJV;SG;2;PST
publicher publicharon V;IND;PL;1;FUT
slunger slungovais V;IPFV;IND;PL;2;PST
resulter resultes V;SBJV;SG;2;PRS;LGSPEC1
tramuder tramudova V;IPFV;IND;PL;3;PST
cunvalider cunvalidaré V;IND;SG;1;FUT
cruzier cruzieia V;IND;PL;3;PRS;LGSPEC2
emaner emanassan V;IPFV;SBJV;PL;1;PST
corompe corompede V;NFIN;PL;2
comprer compreis V;IND;PL;2;PRS
nascer nasc V;NFIN;SG;2
terjer terjaron V;IND;PL;1;FUT
emaner emané V;NFIN;LGSPEC2
plovei piever V;NFIN;LGSPEC2
arester areste V;SBJV;SG;3;PRS;LGSPEC1
ncurajer ncurajarà V;IND;SG;3;FUT
storjer storjoves V;IPFV;IND;SG;2;PST
segurer segurea V;IND;SG;3;PRS;LGSPEC3
desgorjer desgorjova V;IPFV;IND;PL;3;PST
viuler viuleia V;IND;PL;3;PRS;LGSPEC2
dé desses V;IPFV;SBJV;SG;2;PST
coster costé V;NFIN;LGSPEC2
cruzier cruzieia V;NFIN;SG;2;LGSPEC2
delegher deleghede V;NFIN;PL;2
revucher revuchova V;IPFV;IND;SG;3;PST
produjer produjessais V;IPFV;SBJV;PL;2;PST
prufesser prufessova V;IPFV;IND;PL;3;PST
rater rateie V;IND;SG;1;PRS;LGSPEC2
cunzeder cunzedon V;SBJV;PL;1;PRS
arbitrer arbitres V;IND;SG;2;PRS;LGSPEC1
cherder cherdarà V;IND;PL;3;FUT
sporjer sporjarà V;IND;SG;3;FUT
prufesser prufessovan V;IPFV;IND;PL;1;PST
reverir reveresc V;IND;PL;3;PRS;LGSPEC2
seurander seurandareis V;IND;PL;2;FUT
cumander cumandove V;IPFV;IND;SG;1;PST
sponjer sponjaron V;IND;PL;1;FUT
resserver resservassa V;IPFV;SBJV;PL;3;PST
mener menaron V;IND;PL;1;FUT
resulter resultaré V;IND;SG;1;FUT
capir capiva V;IPFV;IND;SG;3;PST
pruibir pruibiron V;IND;PL;1;FUT
spieter spietassa V;IPFV;SBJV;SG;3;PST
unir une V;SBJV;SG;1;PRS;LGSPEC1
aproer aproasse V;IPFV;SBJV;SG;1;PST
emaner emana V;NFIN;SG;2;LGSPEC1
desvier desvieies V;IND;SG;2;PRS;LGSPEC2
arbitrer arbitreia V;NFIN;SG;2;LGSPEC2
sponjer sponjes V;IND;SG;2;PRS
istituir istituissais V;IPFV;SBJV;PL;2;PST
stipuler stipulasse V;IPFV;SBJV;SG;1;PST
marider maride V;IND;SG;1;PRS;LGSPEC1
anuler anulova V;IPFV;IND;SG;3;PST
cruzier cruzie V;IND;SG;1;PRS;LGSPEC1
redujer redujaré V;IND;SG;1;FUT
apurver apurvaré V;IND;SG;1;FUT
ncurajer ncurajovan V;IPFV;IND;PL;1;PST
costituir costituives V;IPFV;IND;SG;2;PST
volei volon V;SBJV;PL;1;PRS
parteziper partezipova V;IPFV;IND;SG;3;PST
cogner cogneis V;IND;PL;2;PRS
urganiser urganisaron V;IND;PL;1;FUT
unir univa V;IPFV;IND;SG;3;PST
remander remandove V;IPFV;IND;SG;1;PST
dejeujer dejëujova V;IPFV;IND;SG;3;PST
delegher delegha V;IND;SG;3;PRS;LGSPEC1
sponjer sponjova V;IPFV;IND;PL;3;PST
gaujer gaujova V;IPFV;IND;PL;3;PST
rejoner rejonova V;IPFV;IND;SG;3;PST
destiner destinaré V;IND;SG;1;FUT
deslier desliareis V;IND;PL;2;FUT
manifester manifeste V;SBJV;SG;1;PRS;LGSPEC1
autoriser autoriseia V;IND;SG;3;PRS;LGSPEC2
dé dova V;IPFV;IND;PL;3;PST
curespuender curespuendaras V;IND;SG;2;FUT
scriver scrivessais V;IPFV;SBJV;PL;2;PST
afermer afermassais V;IPFV;SBJV;PL;2;PST
storjer storje V;SBJV;SG;1;PRS
ratificher ratificharé V;IND;SG;1;FUT
ndicher ndichova V;IPFV;IND;PL;3;PST
assegurer assegureie V;SBJV;SG;1;PRS;LGSPEC2
urganiser urganisova V;IPFV;IND;PL;3;PST
emaner emane V;IND;SG;1;PRS;LGSPEC1
manifester manifestassa V;IPFV;SBJV;PL;3;PST
seurander seurandaré V;IND;SG;1;FUT
pronunzier pronunziova V;IPFV;IND;PL;3;PST
promulgher promulgharon V;IND;PL;1;FUT
prejenter prejentaron V;IND;PL;1;FUT
vegnì vegnes V;SBJV;SG;2;PRS
sustenir sustene V;SBJV;SG;3;PRS;LGSPEC1
tramuder tramudeia V;NFIN;SG;2;LGSPEC2
cumporter cumportassa V;IPFV;SBJV;SG;3;PST
dejeujer dejëujasse V;IPFV;SBJV;SG;1;PST
ndicher ndiche V;SBJV;SG;1;PRS;LGSPEC1
furmer furmareis V;IND;PL;2;FUT
adoter adotassa V;IPFV;SBJV;SG;3;PST
spieter spieteie V;IND;SG;1;PRS;LGSPEC2
fisser fissaré V;IND;SG;1;FUT
dormir dormieis V;SBJV;PL;2;PRS
nfurmer nfurmova V;IPFV;IND;PL;3;PST
urganiser urganisovais V;IPFV;IND;PL;2;PST
jì jide V;NFIN;PL;2
tradujer tradujaré V;IND;SG;1;FUT
limiter limitovais V;IPFV;IND;PL;2;PST
aussei ausse V;SBJV;SG;1;PRS
sustenir susteniron V;IND;PL;1;FUT
avei ae V;SBJV;SG;1;PRS;LGSPEC1
danejer danejarà V;IND;SG;3;FUT
comunicher comunicheie V;SBJV;SG;1;PRS;LGSPEC2
comprer comprarà V;IND;PL;3;FUT
muder mudea V;IND;SG;3;PRS;LGSPEC3
desvier desviasses V;IPFV;SBJV;SG;2;PST
mirer mira V;IND;SG;3;PRS;LGSPEC1
eserziter eserzitova V;IPFV;IND;SG;3;PST
avei ombe V;SBJV;PL;1;PRS;LGSPEC2
istruir istruì V;NFIN;LGSPEC2
cundaner cundanede V;NFIN;PL;2
coordiner coordina V;IND;PL;3;PRS;LGSPEC1
vedei vedareis V;IND;PL;2;FUT
emaner emaner V;NFIN;LGSPEC1
mander mandeie V;SBJV;SG;1;PRS;LGSPEC2
reguler regules V;IND;SG;2;PRS;LGSPEC1
ndrezer ndreze V;SBJV;SG;1;PRS;LGSPEC1
mander mandeies V;IND;SG;2;PRS;LGSPEC2
tradujer tradujon V;IND;PL;1;PRS
rater rater V;NFIN;LGSPEC1
mirer mira V;IND;PL;3;PRS;LGSPEC1
jì jissais V;IPFV;SBJV;PL;2;PST
nfurmer nfurmeis V;SBJV;PL;2;PRS
spidler spidleie V;SBJV;SG;3;PRS;LGSPEC2
coordener coordene V;IND;SG;1;PRS;LGSPEC1
avei aron V;IND;PL;1;FUT
entenjer entenjessa V;IPFV;SBJV;SG;3;PST
produjer produjeis V;SBJV;PL;2;PRS
cuntroler cuntroleia V;IND;PL;3;PRS;LGSPEC2
emaner emanarà V;IND;PL;3;FUT
rejoner rejonassan V;IPFV;SBJV;PL;1;PST
terjer terjovan V;IPFV;IND;PL;1;PST
populer populeies V;IND;SG;2;PRS;LGSPEC2
assegurer assegurova V;IPFV;IND;PL;3;PST
mutiver mutiveia V;IND;PL;3;PRS;LGSPEC2
tramuder tramudove V;IPFV;IND;SG;1;PST
reverir reveresces V;SBJV;SG;2;PRS;LGSPEC2
alesirer alesira V;IND;PL;3;PRS;LGSPEC1
comunicher comunichea V;IND;SG;3;PRS;LGSPEC3
acuser acuseia V;IND;PL;3;PRS;LGSPEC2
corompe corompes V;SBJV;SG;2;PRS
jonjer jonjarà V;IND;PL;3;FUT
istituir istituir V;NFIN;LGSPEC1
apurver apurvova V;IPFV;IND;SG;3;PST
resulter resulta V;IND;SG;3;PRS;LGSPEC1
afermer afermova V;IPFV;IND;SG;3;PST
vegnì vegnirà V;IND;SG;3;FUT
vedei vedarà V;IND;PL;3;FUT
publicher publicheie V;SBJV;SG;3;PRS;LGSPEC2
nfurmer nfurmes V;SBJV;SG;2;PRS;LGSPEC1
cianter ciantes V;IND;SG;2;PRS;LGSPEC1
finanzier finanziovan V;IPFV;IND;PL;1;PST
vedei veides V;IND;SG;2;PRS
gaujer gauja V;IND;SG;3;PRS;LGSPEC1
mirer mire V;SBJV;SG;1;PRS;LGSPEC1
apurver apurva V;IND;PL;3;PRS;LGSPEC1
ejaminer ejamine V;SBJV;SG;1;PRS;LGSPEC1
remplazer remplazes V;SBJV;SG;2;PRS;LGSPEC1
danejer danejovais V;IPFV;IND;PL;2;PST
cuntroler cuntroleies V;SBJV;SG;2;PRS;LGSPEC2
purter purteis V;IND;PL;2;PRS
aussei ausses V;SBJV;SG;2;PRS
liter litova V;IPFV;IND;PL;3;PST
rezever rezevareis V;IND;PL;2;FUT
viuler viule V;SBJV;SG;1;PRS;LGSPEC1
marider marideia V;IND;SG;3;PRS;LGSPEC2
coster costea V;IND;SG;3;PRS;LGSPEC3
adater adatova V;IPFV;IND;PL;3;PST
atribuir atribu V;NFIN;SG;2;LGSPEC1
fisser fissa V;NFIN;SG;2;LGSPEC1
morir moriras V;IND;SG;2;FUT
mantenir manteniva V;IPFV;IND;SG;3;PST
anuler anuleia V;NFIN;SG;2;LGSPEC2
dormir dormion V;IND;PL;1;PRS
tramuder tramudede V;NFIN;PL;2
njinier njiniede V;NFIN;PL;2
determiner determine V;SBJV;SG;3;PRS;LGSPEC1
populer popules V;SBJV;SG;2;PRS;LGSPEC1
erjer erje V;SBJV;SG;3;PRS
resserver resservarà V;IND;PL;3;FUT
condujer conduje V;NFIN;LGSPEC2
adurver adurvarà V;IND;PL;3;FUT
acurder acurdaras V;IND;SG;2;FUT
romper rompon V;IND;PL;1;PRS
reverir reverì V;NFIN;LGSPEC2
azerter azerta V;IND;PL;3;PRS;LGSPEC1
messei messarà V;IND;SG;3;FUT
reverir reveriva V;IPFV;IND;SG;3;PST
destiner destineis V;SBJV;PL;2;PRS
seurander seurande V;SBJV;SG;1;PRS;LGSPEC1
delegher deleghes V;IND;SG;2;PRS;LGSPEC1
spartir spartireis V;IND;PL;2;FUT
determiner determineie V;SBJV;SG;3;PRS;LGSPEC2
adater adata V;IND;SG;3;PRS;LGSPEC1
deslier desliova V;IPFV;IND;SG;3;PST
sustenir sustenesc V;NFIN;SG;2;LGSPEC2
fisser fisseia V;IND;PL;3;PRS;LGSPEC2
trater tratede V;NFIN;PL;2
usserver usservovais V;IPFV;IND;PL;2;PST
arjonjer arjonjon V;SBJV;PL;1;PRS
spartir spartesces V;SBJV;SG;2;PRS;LGSPEC2
scurter scurtea V;IND;SG;3;PRS;LGSPEC3
viver vivessa V;IPFV;SBJV;SG;3;PST
rester resta V;NFIN;SG;2;LGSPEC1
atuer atuea V;IND;SG;3;PRS;LGSPEC3
dejeujer dejëujassa V;IPFV;SBJV;PL;3;PST
jì jon V;IND;PL;1;PRS
capir capì V;NFIN;LGSPEC2
proibir proibive V;IPFV;IND;SG;1;PST
cruzier cruziaras V;IND;SG;2;FUT
pronunzier pronunziove V;IPFV;IND;SG;1;PST
aussei aussaré V;IND;SG;1;FUT
ancunter ancuntassais V;IPFV;SBJV;PL;2;PST
registrer registres V;IND;SG;2;PRS;LGSPEC1
aproer aproeies V;SBJV;SG;2;PRS;LGSPEC2
ncurajer ncurajon V;IND;PL;1;PRS
reprejenter reprejentes V;IND;SG;2;PRS;LGSPEC1
ester é V;IND;SG;3;PRS
renunzier renunziaras V;IND;SG;2;FUT
cumporter cumporté V;NFIN;LGSPEC2
urganiser urganisarà V;IND;PL;3;FUT
educher educhoves V;IPFV;IND;SG;2;PST
ressolver ressolveis V;IND;PL;2;PRS
trasferir trasferivan V;IPFV;IND;PL;1;PST
azerter azerter V;NFIN;LGSPEC1
rezever rezevessais V;IPFV;SBJV;PL;2;PST
njinier njinion V;SBJV;PL;1;PRS
ratificher ratifichassan V;IPFV;SBJV;PL;1;PST
costituir costituisse V;IPFV;SBJV;SG;1;PST
unir unes V;IND;SG;2;PRS;LGSPEC1
ndrezer ndreze V;SBJV;SG;3;PRS;LGSPEC1
rezever rezeve V;SBJV;PL;3;PRS
viuler viulovan V;IPFV;IND;PL;1;PST
detlarer detlaroves V;IPFV;IND;SG;2;PST
perder perdova V;IPFV;IND;PL;3;PST
goder goda V;NFIN;SG;2;LGSPEC1
coordiner coordinede V;NFIN;PL;2
apurver apurveia V;IND;PL;3;PRS;LGSPEC2
arester arestovais V;IPFV;IND;PL;2;PST
dovei dess V;IND;SG;3;PRS
atribuir atribuide V;NFIN;PL;2
romper rompessais V;IPFV;SBJV;PL;2;PST
capir capiras V;IND;SG;2;FUT
podei podarà V;IND;PL;3;FUT
cunvalider cunvalidova V;IPFV;IND;PL;3;PST
marider maridaré V;IND;SG;1;FUT
aussei ausse V;SBJV;PL;3;PRS
marider maridassan V;IPFV;SBJV;PL;1;PST
manifester manifestaras V;IND;SG;2;FUT
costituir costitues V;IND;SG;2;PRS;LGSPEC1
capir capiva V;IPFV;IND;PL;3;PST
udir ude V;SBJV;SG;3;PRS;LGSPEC1
afermer aferma V;IND;PL;3;PRS;LGSPEC1
udir udiva V;IPFV;IND;PL;3;PST
mantenir mantenesc V;IND;PL;3;PRS;LGSPEC2
ncurajer ncurajeie V;SBJV;SG;1;PRS;LGSPEC2
rejoner rejonea V;IND;SG;3;PRS;LGSPEC3
resserver resserveie V;SBJV;SG;3;PRS;LGSPEC2
partir partieis V;SBJV;PL;2;PRS
dormir dormesces V;SBJV;SG;2;PRS;LGSPEC2
onjer onjaré V;IND;SG;1;FUT
udir udissais V;IPFV;SBJV;PL;2;PST
tramuder tramude V;SBJV;SG;3;PRS;LGSPEC1
vedei veide V;SBJV;SG;1;PRS
ndrezer ndrezareis V;IND;PL;2;FUT
atuer atuon V;SBJV;PL;1;PRS
urganiser urganisea V;IND;SG;3;PRS;LGSPEC3
cianter ciantovan V;IPFV;IND;PL;1;PST
numiner numinasse V;IPFV;SBJV;SG;1;PST
stabilir stabilirà V;IND;PL;3;FUT
terjer terjede V;NFIN;PL;2
terjer terje V;NFIN;LGSPEC2
depenjer depenjessa V;IPFV;SBJV;SG;3;PST
remander remandassa V;IPFV;SBJV;SG;3;PST
mpartir mpartissa V;IPFV;SBJV;SG;3;PST
mander mande V;SBJV;SG;3;PRS;LGSPEC1
costituir costituieis V;IND;PL;2;PRS
dormir dormesce V;SBJV;SG;1;PRS;LGSPEC2
remplazer remplazeia V;IND;PL;3;PRS;LGSPEC2
comunicher comunicharà V;IND;PL;3;FUT
renunzier renunzion V;IND;PL;1;PRS
capir capireis V;IND;PL;2;FUT
meter metes V;IND;SG;2;PRS
ester fosse V;IPFV;SBJV;SG;1;PST
spartir sparte V;SBJV;PL;3;PRS;LGSPEC1
produjer produj V;IND;SG;3;PRS
terjer terje V;SBJV;SG;1;PRS
aproer aproea V;IND;SG;3;PRS;LGSPEC3
storjer storjeis V;SBJV;PL;2;PRS
ancunter ancunteis V;IND;PL;2;PRS
gaujer gaujeie V;SBJV;SG;3;PRS;LGSPEC2
dovei desse V;SBJV;PL;3;PRS
dejeujer dejëujé V;NFIN;LGSPEC2
gaujer gaujeie V;IND;SG;1;PRS;LGSPEC2
udir ud V;IND;PL;3;PRS;LGSPEC1
adater adate V;SBJV;SG;1;PRS;LGSPEC1
mpartir mpartiva V;IPFV;IND;PL;3;PST
reprejenter reprejenteis V;IND;PL;2;PRS
promulgher promulgheis V;SBJV;PL;2;PRS
comprer comproves V;IPFV;IND;SG;2;PST
coordiner coordineie V;SBJV;SG;1;PRS;LGSPEC2
remander remande V;SBJV;PL;3;PRS
storjer storj V;IND;SG;3;PRS
depenjer depenjaras V;IND;SG;2;FUT
ejaminer ejaminovais V;IPFV;IND;PL;2;PST
arester arestasses V;IPFV;SBJV;SG;2;PST
storjer storjaron V;IND;PL;1;FUT
numiner numinassan V;IPFV;SBJV;PL;1;PST
rezever rezevessa V;IPFV;SBJV;SG;3;PST
coster costassa V;IPFV;SBJV;PL;3;PST
emaner emaneie V;SBJV;SG;1;PRS;LGSPEC2
muder mudovan V;IPFV;IND;PL;1;PST
mander mandaras V;IND;SG;2;FUT
stabilir stabilesces V;SBJV;SG;2;PRS;LGSPEC2
reurganiser reurganisaré V;IND;SG;1;FUT
numiner numina V;IND;SG;3;PRS;LGSPEC1
viuler viularas V;IND;SG;2;FUT
mener menassa V;IPFV;SBJV;PL;3;PST
desvier desviasse V;IPFV;SBJV;SG;1;PST
respuender respuendede V;NFIN;PL;2
registrer registreia V;IND;SG;3;PRS;LGSPEC2
perder perdovan V;IPFV;IND;PL;1;PST
muder mudova V;IPFV;IND;SG;3;PST
lascer lascareis V;IND;PL;2;FUT
perdujer perdujoves V;IPFV;IND;SG;2;PST
rezever rezevaré V;IND;SG;1;FUT
promulgher promulghova V;IPFV;IND;SG;3;PST
istituir istituion V;SBJV;PL;1;PRS
manifester manifeste V;SBJV;PL;3;PRS
usserver usserveia V;IND;PL;3;PRS;LGSPEC2
spidler spidlassa V;IPFV;SBJV;PL;3;PST
azerter azerton V;IND;PL;1;PRS
goder goder V;NFIN;LGSPEC1
arbitrer arbitreis V;SBJV;PL;2;PRS
scurter scurta V;NFIN;SG;2;LGSPEC1
marider maridova V;IPFV;IND;SG;3;PST
jonjer jonjessan V;IPFV;SBJV;PL;1;PST
corompe coromp V;IND;PL;3;PRS
coordener coordeneis V;SBJV;PL;2;PRS
savei savaron V;IND;PL;1;FUT
trater trateie V;SBJV;SG;3;PRS;LGSPEC2
mantenir mantenesce V;SBJV;SG;1;PRS;LGSPEC2
revucher revuchoves V;IPFV;IND;SG;2;PST
cunzeder cunzede V;SBJV;SG;3;PRS
damander damandarà V;IND;SG;3;FUT
dovei desson V;IND;PL;1;PRS
corompe coromper V;NFIN;LGSPEC1
unir unesce V;SBJV;SG;1;PRS;LGSPEC2
remander remandon V;SBJV;PL;1;PRS
trasferir trasferiré V;IND;SG;1;FUT
furmer furmes V;SBJV;SG;2;PRS;LGSPEC1
vegnì vegnireis V;IND;PL;2;FUT
storjer storje V;NFIN;LGSPEC2
ndrezer ndrezarà V;IND;SG;3;FUT
atribuir atribuivais V;IPFV;IND;PL;2;PST
cuntroler cuntrolea V;IND;SG;3;PRS;LGSPEC3
cunzeder cunzede V;NFIN;LGSPEC2
giudicher giudichova V;IPFV;IND;SG;3;PST
eserziter eserzitasses V;IPFV;SBJV;SG;2;PST
cumander cumandeia V;NFIN;SG;2;LGSPEC2
|
111d95de30e355aff5b22ec17c3426f415968f39 | 717ddeb7e700373742c617a95e25a2376565112c | /3424/CH2/EX2.3/Ex2_3.sce | a60850715c4b47ba3ea17038928f220c5f22fd9d | [] | 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 | 207 | sce | Ex2_3.sce | clc
//Initialization of variables
h = 0.5 //m
y2 = 15.6 // kN/m^3
y1 = 9.80 // kN/m^3
// Calculations
pAB = h*(y2 - y1)
//Results
printf ("the specific value of the pressure drop is %.2f kPa",pAB)
|
697f1a6e19890a41ba26ff2b04661762654b7ddd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH8/EX8.11/8_11.sce | 75d87f861766fbfa216e988f7be5af487a9ce23e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 270 | sce | 8_11.sce | clc
//initialisation of variables
k= 13
e= 4.8*10^-10 //ev
h= 6.624*10^-27 //ergs sec
N= 6.023*10^23 //molecules
l= 1836 //A
//CALCULATIONS
I= e^4*0.080/(l*N*1.28*10^-13*2*k^2*(h/(2*%pi))^2)
//RESULTS
printf (' least energy required for transfer= %.2f ev',I)
|
967482af91daaeca1903215d715218ce9a658d36 | 4bbc2bd7e905b75d38d36d8eefdf3e34ba805727 | /ee/contrib/dspic/macros/codegen/SetTarget_.sci | 2cb72f69ecf407a9844f6b6d2d9ba6ce2d132532 | [] | no_license | mannychang/erika2_Scicos-FLEX | 397be88001bdef59c0515652a365dbd645d60240 | 12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba | refs/heads/master | 2021-02-08T17:01:20.857172 | 2012-07-10T12:18:28 | 2012-07-10T12:18:28 | 244,174,890 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,482 | sci | SetTarget_.sci | function SetTarget_()
//** INRIA / SCILAB / Roberto Bucher / Simone Mannori / Paolo Gai
//** 16 Jan 2008
//** Note: this code SHOULD be rewritten because respect the organization
//** and style now obsolete. Future compatibility is not garantee.
//** ------------- Preliminary I/O section ___________________________________________________________________________
k = [] ; //** index of the CodeGen source superbloc candidate
xc = %pt(1); //** last valid click position
yc = %pt(2);
%pt = [] ;
Cmenu = [] ;
k = getobj(scs_m,[xc;yc]) ; //** look for a block
//** check if we have clicked near an object
if k==[] then
return
//** check if we have clicked near a block
elseif typeof(scs_m.objs(k))<>"Block" then
return
end
//** If the clicked/selected block is really a superblock
//** <k>
if scs_m.objs(k).model.sim(1)=="super" then
disablemenus()
lab = scs_m.objs(k).model.rpar.props.void3;
//** Mark the super-block with a specific propriety
if lab==[] then
lab = ['dspic','ode4','10'];
end
ode_x = ['ode1';'ode2';'ode4'];
//** Open a dialog box and wait user interaction
while %t
[ok, target, odefun, stp] = getvalue(..
"Embedded Code Generation ",..
["Toolchain : ";
"ODE cont. function solver: ";
"Step between sampling: "],..
list('str',1,'str',1,'str',1),lab);
if ~ok then
break ; //** the the case of "cancel" exit
end
TARGETDIR = SCI+"/contrib/RT_templates";
// if exists("TARGET_DIR") then
// [fd,ierr]=mopen(TARGET_DIR+'/'+target+'.gen','r');
// if ierr==0 then
// TARGETDIR = TARGET_DIR;
// mclose(fd);
// end
// end
[fd,ierr] = mopen(TARGETDIR+'/'+target+'.gen','r');
if ierr==0 then
mclose(fd);
else
x_message("Target not valid "+target+".gen");
ok = %f ;
end
if grep(odefun,ode_x) == [] then
x_message("Ode function not valid");
ok = %f;
end
if ok then
lab = [target,odefun,stp];
scs_m.objs(k).model.rpar.props.void3 = lab;
break ; //** EXIT
end
end
edited = %t ;
enablemenus()
else
message("Generation Code only work for a Super Block ! ");
end
endfunction
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.