blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses sequencelengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15
values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M โ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7
values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 โ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 โ | gha_language stringclasses 36
values | src_encoding stringclasses 17
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 1
class | length_bytes int64 5 10.4M | extension stringclasses 15
values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
147120be5dee7265cfdb0f4301f014c9e724d2f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH12/EX12.2/Ex12_2.sce | bd7a36d5d8100dc240b4f31ea1be85e7edcac6e0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 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,115 | sce | Ex12_2.sce | // chapter 12
// example 12.2
// fig. 12.8
// Determine resonant frequency, maximum operating frequency,Peak thyristor current, average thyristor current, rms thyristor current, rms load current and average supply current
// page-760-762
clear;
clc;
// given
C1=4; // in uF
C2=4; // in uF
Lr=40; // in uH
R=2; // in ohm
... |
4553ddfff9ca13c06f12cda03c1826b45928b941 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH12/EX12.7/Ex12_7.sce | 13059d1b93aa03cc9fb0b8b2ffd54c661e07be4a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 538 | sce | Ex12_7.sce | // Initilization of variables
A= 50 // cm^2 // area of the shaded portion
J_A=22.5*10^2 // cm^4 // polar moment of inertia of the shaded portion
d=6 // cm
// Calculations
J_c=J_A-(A*d^2)
// substuting the value of I_x from eq'n 2 in eq'n 1 we get,
I_y=J_c/3 // cm^4 // M.O.I about Y-axis
// Now from eq'n 2,
I_... |
06f589eed30d215ab2ba8188c5ddcc0d446f6546 | e1bc17aae137922b1ee990f17aae4a6cb15b7d87 | /Completed Simulations/K.Ogata/Scilab/Ex6_1.sci | fc4bbb6e887121029ed945b77486b113c7a89cd4 | [] | no_license | muskanmahajan37/Xcos_block_examples | 650dceb0afdbfc100f3e9c5a6508443eca030fa2 | 8ac15bc5efafa2afc053c293152605b0e6ae60ff | refs/heads/master | 2022-02-26T04:20:26.365000 | 2019-09-03T12:57:40 | 2019-09-03T12:57:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 90 | sci | Ex6_1.sci | function y1=locus2(z)
s=%s
D=s*(s+1)*(s+2)
H=syslin('c',1,D)
evans(H,z)
y1=0;
endfunction
|
09b4a937a2b22535f0fc46f9d056ea1877a99ed4 | e86f908be00c4a3a017e81d12588d76562c56b75 | /macros/bitrevorder.sci | a4b6da8dfa95fa476e27c2631628a7999e575648 | [] | no_license | ShashikiranYadalam/FOSSEE_SP_task | 8869a14f664329625b76e15e771058b90b69b1e1 | 601ca7b7c91587a430c69c9ceb1f87b196c8e566 | refs/heads/master | 2020-03-20T06:38:26.598000 | 2019-03-01T12:31:10 | 2019-03-01T12:31:10 | 137,255,176 | 0 | 0 | null | 2018-06-14T05:16:17 | 2018-06-13T18:27:32 | HTML | UTF-8 | Scilab | false | false | 665 | sci | bitrevorder.sci | function [y,i]=bitrevorder(x)
// Returns input data in bit-reversed order
// Calling Sequence
// [y,i]=bitrevorder(x)
// Parameters
// x: Vector of real or complex values
// Description
// This is an Octave function.
// This function returns the input data after reversing the bits of the indices and reordering the e... |
1e9421783371cc042680ea6e0549d85ff77b7192 | b2675f983fedb79e5e6f1940962373bda0570ec4 | /D1/Tests/mar.tst | ceb4fff1725d50684c8bcc6be3e637663adaf63f | [] | no_license | Meena92/Projects | b854c40b91515bb429c9e13fb0cbc95c03e0a9d6 | 06361e24bf51883ff4140db5c37c3f40836a5752 | refs/heads/master | 2020-03-29T01:45:03.726000 | 2019-06-11T05:26:08 | 2019-06-11T05:26:08 | 149,404,524 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,094 | tst | mar.tst | <?xml version="1.0" ?>
<TestCase name="mar" version="5">
<meta>
<create version="10.0.0" buildNumber="10.0.0.431" author="admin" date="10/09/2017" host="inbasdpc10722" />
<lastEdited version="10.0.0" buildNumber="10.0.0.431" author="admin" date="10/10/2017" host="inbasdpc10722" />
</meta>
<id>F21914E0ACD911E7B... |
ff2b2f0212d404e54b094ecb52814db0c88ef06b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3710/CH4/EX4.3/Ex4_3.sce | 3f143509db81db406f426aa1d9ff7dc51bfa77d9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 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,246 | sce | Ex4_3.sce | //Example 4.3, Page Number 158
//The Function fpround(dependency) is used to round a floating point number x to n decimal places
clc;
d=0.2*(10**-3) //Chip Diameter in meter
d1=1 //Distance in Meter
l=550*(10**-9 ) //Wavelength in Meter
q=0.001 //External Quantum Efficiency
i=50*(10**-3) //Operational Current
... |
bba581d482483adf1aac3470846152ac65a73005 | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH3/EX3.7/Example3_7.sce | 081047e80d4e0cdfff01e7d7c1ea2f7520995f32 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 731 | sce | Example3_7.sce | //Example 3.7
//Program to estimate rms pulse broadening per kilometer for the fiber
clear;
clc ;
close ;
//Given data
lambda=0.85*10^(-6); //metre - WAVELENGTH
L=1; //km - DISTANCE
MD=0.025;//MATERIAL DISPERSION = mod(lamda^2*[del^2(n1)/del(lamda)^2)
c=2.998*10^8; //m/s - ... |
d7cd385a2ace5b07e56046ddd7b1c526047a180b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2513/CH14/EX14.5/14_5.sce | ee69c21d49d40a139f1ef83d1bf54904adcaed4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 499 | sce | 14_5.sce | clc
//initialisation of variables
d1=0.67//ft
h1=2.00//ft
h2=4.04//ft
hv1=0.062//ft
hv2=0.254//ft
d=0.19//ft
h=0.2//ft
h1=0.04//ft
q=0.644//ft
q1=0.65//ft
v=0.92//ft
d2=6.5//ft
v1=3.69//ft
d3=0.542//ft
hv3=0.21//ft
delv=0.15//ft
d4=0.02//ft
//CALCULATIONS
H=d1+hv1//ft
H1=d1+hv2//ft
he=h*d//ft
hi=... |
6861bacb671cfa6dfe6db8039f1b19103726b8a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH42/EX42.3/Example42_3.sce | 963a9d4a9bcb69eb4d5d371aec65c235c702df84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 395 | sce | Example42_3.sce | //Given that
E = 7 //in ev
V = 2*10^-9 //in m^3
density = 2*10^28 //in m^3/ev
deltaE = 3*10^-3 //in ev
//Sample Problem 42-3a
printf("**Sample Problem 42-3a**\n")
n = density*V
printf("The number of states are equal to %1.2e per ev\n", n)
//Sample Problem 42-3b
printf("\n**Sample Problem 42-3b**\n")
... |
1b7a48afe6f0657c305f7c8eb4db799c9fbc0b87 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2561/CH10/EX10.6/Ex10_6.sce | b1b9776b89e3f9b69f7262fb9c2db29dd7551e62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 155 | sce | Ex10_6.sce | //Ex10_6
clc
x='110';
disp("Octal number="+string(x))// octal value
str=oct2dec(x)//octal to decimal
disp("Eqivalent Decimal number="+string(str))
|
780ab8fa1e903eedf5b8ceaedf5dc96c5ef1cff4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH6/EX6.2/6_2.sce | e956e8573ad4bab294636e8d1ac639b2a1e29679 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 653 | sce | 6_2.sce | clc
//initialisation of variables
W= -10 //KN/m
Yac= 7 //m
xad= -7.5 //m
xac= -15 //m
xcb= 10 //m
//CALCULATIONS
k= Yac/((xac)^2)
yb= k*(xcb)^2
hb= Yac-yb
yd= k*(xad)^2
hd= Yac-yd
A=[(xcb-xac),(hb);(xcb),(-yb)]
b=[-W*(-xac)*(-xad);0]
c= A\b
Rbv= c(1,1)
Rbh= c(2,1)
Rah= Rbh
Rav= -Rbv-W*(-xac)
dybydx=... |
23b79b4e7c237c7d5cba33a025a23088e924c985 | ac4e0c7ecf872bf33401feeb94567319345f1d91 | /Culvert_design.sce | 75eb59470e8de6eec9941be54295d13d9424bd2f | [] | no_license | namanmaheshwari97/Circular-Culvert-Design-Analysis | 91a47220ca8ff7c3c3dc04b598aa1b2532b07304 | 260c00fa43a36915c3de352da2bf30929a6cb81e | refs/heads/master | 2021-01-20T20:56:56.559000 | 2016-07-08T17:53:43 | 2016-07-08T17:53:43 | 62,906,453 | 0 | 1 | null | 2020-10-05T08:15:54 | 2016-07-08T17:43:39 | Scilab | UTF-8 | Scilab | false | false | 7,417 | sce | Culvert_design.sce | disp("15CS101L");
disp("Programming Laboratory");
disp("Internet Programming lab");
disp("Culvert Design and Analysis");
disp("Mr. M. Mohamed Rabik");
disp("Aryaman Dhanda , RA1511003010481");
disp("Naman Maheshwari , RA1511003010471");
disp("Sidharth Suresh , RA1511003010477");
disp("Select Pipe material and i... |
eea1ab22592932b9f7e53374732d900a3f1b84c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1073/CH3/EX3.37/3_37.sce | 23d8550868b67d75999bd4309559c4be1693fe44 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 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,247 | sce | 3_37.sce | clc;
clear;
//Example 3.37
k=0.03 //W/(m.K)
Npr=0.697 //Prandtl number
v=2.076*10^-6 //m^2/s
Beta=0.002915 //K^-1
D=25 ; //[Diameter in cm]
D=D/100 //[m]
Tf=343 //Film temperature in [K]
A=%pi*(D/2)^2 //Area in [m^2]
P=%pi*D //Perimeter [m]
T1=293 //[K]
T2=393 //[K]
g=9.81 //[m/s^2]
//C... |
073122559c1d3581b7fd7ae1227eb3825648d64f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2441/CH2/EX2.20/Ex2_20.sce | bbcac8e1564a44052e36c711970f15631a3d95f0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 406 | sce | Ex2_20.sce | //exa 2.20
clc;clear;close;
format('v',6);
//F1=0.004*P1^2+2*P1+80;//Rs./hr
//F2=0.006*P2^2+1.5*P2+100;//Rs./hr
P=250;//MW
P1=poly(0,'P1');P2=poly(0,'P2');
dF1bydP1=2*0.004*P1+2;
dF2bydP2=2*0.006*P2+1.5;
//Let loads are P1 & P-P1
//Economical loading lambda1=lambda2
eqn=2*0.004*P1+2-2*0.006*(P-P1)-1.5;
P1=r... |
291700e7b1e6453af5951fc921c2306d16374f06 | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3913/CH9/EX9.3/Ex9_3.sce | abec6d1f4d24d8043eddbae9d54cd2deaef85fa7 | [] | no_license | psinalkar1988/Scilab-TBC-Uploads-1 | 159b750ddf97aad1119598b124c8ea6508966e40 | ae4c2ff8cbc3acc5033a9904425bc362472e09a3 | refs/heads/master | 2021-09-25T22:44:08.781000 | 2018-10-26T06:57:45 | 2018-10-26T06:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 775 | sce | Ex9_3.sce | //Chapter 9 : Eigenvalues and Eigenvectors
//Example 9.3
//Scilab 6.0.1
//Windows 10
clear;
clc;
A=[-3 1 -1;-7 5 -1;-6 6 -2];
disp(A,'A=')
eig=spec(A)
disp(eig,'eigen values are:')
e4=A-4*eye(3,3)
mprintf('\n(A-4I3)x=')
disp('*',e4)
mprintf(' [x\n y\n z]=')
z=zeros(3,1)
disp(z)
mprintf('\nthis reduc... |
4e0371c2896fea9567f1607729a523d93993acac | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH17/EX17.02/17_02.sce | 16759b06db83566a6b2e67de9b28ceee06a50d8d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 453 | sce | 17_02.sce | //pathname=get_absolute_file_path('17.02.sce')
//filename=pathname+filesep()+'17.02-data.sci'
//exec(filename)
//Indicator diagram area & length(in m^2 & m):
A=40*10^(-4)
l=0.08
//Bore(in m):
D=0.15
//Stroke(in m):
L=0.20
//Rpm of motor:
N=100
//Spring constant(in Pa/m):
k=1.5*10^8
//Mep(in Pa):
mep=A*k/... |
0fded5ba01cadcba38a6419a7427c9cf12a67c52 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH6/EX6.12/Ch06Exa12.sce | c5d2891ff977176c01ac829277d84480b3330718 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 810 | sce | Ch06Exa12.sce | // Scilab code Exa6.12: : Page-244(2011)
clc; clear;
h_kt = 1.05457e-34; // Reduced planck's constant, joule sec
c = 3e+08; // velocity of light, metre per sec
m_e = 9.1e-31; // Mass of the electron, Kg
ft_O = 3162.28; // Comparative half life for oxygen
ft_n = 1174.90; // Com... |
ceb1ee947f561cb5b4db392a8418709f5f8af3bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1979/CH9/EX9.9/Ex9_9.sce | 13b06996a69a0bcad720b77a959e622d74ea638e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 675 | sce | Ex9_9.sce | //chapter-9 page 412 example 9.9
//==============================================================================
clc;
clear;
//For an IMPATT diode
Lp=0.5*10^(-9);//Inductance in Henry
Cj=0.5*10^(-12);//Capacitance in Farad
Ip=0.8;//RF peak current in A
Rl=2;//Load Resistance in ohms
Vbd=100;//Breakdown Volt... |
dd95a6cb281dfe990dee8c1a63d04d50fb7310bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3872/CH14/EX14.2/EX14_2.sce | df7fb91ddc54f9b4759beb52958ddc286c56723c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 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,446 | sce | EX14_2.sce | //Book - Power System: Analysis & Design 5th Edition
//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye
//Chapter - 14 ; Example 14.2
//Scilab Version - 6.0.0 ; OS - Windows
clc;
clear;
MVAtr1=40; //MVA FOA rating of transformer 1
MVAtr2=40... |
d134852d495e34f3223ec0024f8bffd9e90d9dac | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH6/EX6.3/Ex6_3.sce | 34a47fcc2e091ed37aff3adced9a59e4c8583f48 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 621 | sce | Ex6_3.sce | //==========================================================================
// chapter 6 example 3
clc;
clear;
//input data
t1 = 20; // temperature in ยฐC
alpha = 5*10^-3; //average temperature coefficient at 20ยฐC
R1 = 8; //resistance in ohm
R... |
4c540a56b5838b4297f4c47758c471aeba3dbbc2 | ac1f8441b0319b4a391cd5a959bd3bb7988edfa7 | /data/news2015/news2015/SplitsNEWS15/EnHe/enhe.8.tst | 0b80c537f6e596f546d81f46b001301d07fa76e2 | [
"MIT"
] | permissive | SaeedNajafi/transliterator | 4d58b8604fa31f52ee2dce7845e002a18214fd5e | 523a087b777a5d6eec041165dabb43848f6222e6 | refs/heads/master | 2021-09-18T17:02:59.083000 | 2018-07-17T06:01:21 | 2018-07-17T06:01:21 | 129,796,130 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 28,488 | tst | enhe.8.tst | a a t e f ืข ื ื ืฃ
a b a n e ืข ื ื ื
a c o n c a g u a ื ืง ื ื ืง ื ื ื ื
a d a i r ื ื ื ื ืจ
a d o l p h ื ื ื ื ืฃ
a d o n i s ื ื ื ื ื ืก
a g a t h a ื ื ื ืช ื
a g r i p p a ื ื ืจ ื ืค ื
a h m e d ื ื ื ื
a k r o u r ืข ืง ืจ ื ืจ
a l a i d y ื ื ืข ื ื ื ื
a l a l i ื ื ืข ื ื
a l d o ื ื ื ื
a l e k s a n d r ื ื ืง ืก ื ื ืจ
... |
cc33f671cc87fec1a12d3a2ec959bbaefed414ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH7/EX7.5.1/Ex7_5.sce | ff9d8119b034a3b0668d3e15ad06a724bbef4e43 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 294 | sce | Ex7_5.sce | clc
clear
Vc=5*(10^-4);
D=0.15;
L=0.2;
Vs=(22/7)*D*D*L*(1/4);
r=(Vc+Vs)/Vc;
G=1.4;
Ea=[1-(1/(r^(G-1)))];
Eith=0.3;
Erel=Eith/Ea;
printf('Erel= %3.2f Percent',Erel*100);
printf('\n');
Pm=500; //in kPa
n=1000/2;
IP=(Pm*Vs*n)/60;
printf('IP= %3.2f kW',IP);
printf('\n');
|
c36897c296fed0095d35f74bf5e6b96feb5fb9f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1484/CH6/EX6.17/6_17.sce | d9bf1bd0f6ef06ed6d7c7555cd8200707edc8d49 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499000 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 415 | sce | 6_17.sce | clc
//initialisation of variables
f= 0.008
l= 2000 //ft
p1= 34 //ft
p2= 8 //ft
p3= 4 //ft
g= 32.2 //ft/sec^2
d= 18 //in
P= 140 //ft
l1= 9500 //ft
//CALCULATIONS
v= sqrt((p1-p2-p3)*2*g/((d/12)+(4*f*l/(d/12))))
Q= %pi*(d/12)^2*v/4
v1= sqrt(P*2*g/((d/12)+(4*f*l1/(d/12))))
Q1= %pi*(d/12)^2*v1/4
//RESULTS
... |
2daa1151930502f538f9634627d42e5be0b57db9 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Linear_Algebra_And_Its_Applications_G._Strang_70.zip/Linear_Algebra_And_Its_Applications_G._Strang_70/CH2/EX2.3.3/2_3_3.sci | d98468fc4cc20be29f3022ccae0367618c1aea1e | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200000 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 193 | sci | 2_3_3.sci | errcatch(-1,"stop");mode(2);;
;
A=[3 4 2;0 1 5;0 0 2];
disp(A,'A=');
disp('The columns of the triangular matrix are linearly independent,it has no zeros on the diagonal');
//end
exit();
|
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 5