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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4fec6a6e5f63d3511ce70a550e1a2e9effb8b4c9 | 84e4405f182c8a71ed4737063cc0474c432149f1 | /Labovi/LV2/zad2.sce | b433d36afcddc00c4d71fa26c73772b924f171e3 | [] | no_license | Leon-Zhaohw/NA | 0f8080fcc4958af4ebf5daced11a6d01c27e3ece | 0f1d30cfe13d5447b775698a93cf01cc1c8d15ac | refs/heads/master | 2021-06-15T11:20:41.484070 | 2017-01-29T01:10:43 | 2017-01-29T01:10:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 101 | sce | zad2.sce | A = [2, 1; -3, 1; -1, 1];
B = [-1; -2; 1];
X = A \ B;
disp(X);
err = abs (A * X - B);
disp (err);
|
70acf941db085dc3e5d8e2cb36d8bbd12b9861c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH8/EX8.4/example8_4.sce | 0277494c996f6dd8686330b2ed0a1a70c2ef80f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | example8_4.sce | //example8.4
clc
disp("Given: I_CO=1.1 uA, I_E=21 uA")
disp("I_CEO=(1+(beta_dc))*(I_CO)")
disp("1+(beta_dc)=(I_CEO).(I_CO)=(21 uA)/(1.1 uA)=19")
b=19-1
disp(b,"Therefore, (beta_dc)=")
a=18/19
format(6)
disp(a,"(alpha_dc)=(beta_dc)/(1+(beta_dc))=18/(1+18)=")
|
077f7c7c1d121e3f2dd828f12ddf66535ed2068c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH16/EX16.5/Ex16_5.sce | 5e7cffbd4de3874cf748d287e5214da044083626 | [] | 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 | 506 | sce | Ex16_5.sce |
// Examle 16.5
V=440; // Supply Voltage
Rsh=110; // Resistance of Shunt field
Ish=V/Rsh; // Current through Shunt field
Ra=0.02; // Resistance of Armature winding
Il=496; // Generator current
Ia=Il+Ish; // Armeture Current (Ia)
di... |
baaa03af6226bf8d17fe280827c1a241091fbe5a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH2/EX2.26/ex2_26.sce | 4002fbc41cab40224a72b598e9c8bff59f061950 | [] | 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 | 327 | sce | ex2_26.sce | // Exa 2.26
clc;
clear;
close;
// Given data
T1 = 400;// in K
T2 = 300;// in K
N_V = 1.04*10^19;// in cm^-3
N1 = N_V*((T1/T2)^(3/2));// in cm^-3
KT = 0.0259*(T1/T2);// in eV
FermiLevel= 0.27;// in eV
P_O = N1*exp( (-FermiLevel)/KT );// in cm^-3
disp(P_O,"The thermal equillibrium hole concentration in cm^-3 ... |
f1040575d5307fc483ae1f8fba40072cf8d4f9a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2863/CH2/EX2.24/ex2_24.sce | 5ef7ed92e40ac8af0942d79f8b25147e44ec1d19 | [] | 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 | 152 | sce | ex2_24.sce | //chapter 2
//Gd=antilog(12db/10)
printf("\n");
Gd=15.85;
Prad=5*10^3;
r=3*10^3;
E=sqrt(60*Gd*Prad)/r;
printf("the electric field is %gV/m",E);
|
15cf622a4042a1cc8193981babaa9467b0b63ef2 | a6f51b3ce94f9239f018edd3a045c3081f615030 | /maglev/maglev-scilab/experiment5.sce | 4d18422325dc9c977d5860e9bdc863729ade8304 | [] | no_license | jaimathur/maglev | c479c78b57204d0520456b9990604b01221bf5c4 | e1b6ebd896f2698b4927d71e7bebf65384d95cd0 | refs/heads/master | 2021-01-12T06:28:24.194234 | 2016-12-26T07:18:39 | 2016-12-26T07:18:39 | 77,366,276 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 17,099 | sce | experiment5.sce | // This GUI file is generated by guibuilder version 3.0
//////////
clear all
clear
f=figure('figure_position',[400,50],'figure_size',[700,593],'auto_resize','on','background',[33],'figure_name','Graphic window number %d');
//////////
delmenu(f.figure_id,gettext('File'))
delmenu(f.figure_id,gettext('?'))
delm... |
1774267baa6540c129ed9d9937df0ad09d76772c | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/arcov/arcov2.sce | 572cbd7b4e18bd036c4c1de3a4e8e8aeca39202d | [] | 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 | 665 | sce | arcov2.sce | x=[0.107533427909220;
0.663644537348001;
0.970587221665023;
0.608390883863076;
-0.293540506673764;
-1.42787086899790;
-2.19233932281606;
-1.88376277475872;
0.351621088370924;
4.20456888982602;
7.02440717036035;
6.65058196622351;
2.57013250348360;
-3.50487012663216;
-8.16852139220758;
-8.56013313698647;
-4.2042820915121... |
538961490f18ea847ef8f43154df67555ec940c3 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Measurements_And_Instrumentation_P._Sharma_876.zip/Electronic_Measurements_And_Instrumentation_P._Sharma_876/CH6/EX6.3/Ex6_3.sce | 123496f1023911e80312ea5616ca80c52011fa46 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 253 | sce | Ex6_3.sce | errcatch(-1,"stop");mode(2);//caption:Find output voltage if input is 101101111
//Ex6.3
V=10.3*10^-3//input voltage of DAC convertor(in V)
Vo=(V)*(1*2^8+0*2^7+1*2^6+1*2^5+0*2^4+1*2^3+1*2^2+1*2^1+1*2^0)
disp(Vo,'output voltage(in V)=')
exit();
|
f8cef916e319a4103add73d7dac48897e45ef095 | 449d555969bfd7befe906877abab098c6e63a0e8 | /695/CH2/EX2.13/Ex2_13.txt | 7ef39bfbcbd14aa1943978c6b3f8534db1edd20d | [] | 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 | 611 | txt | Ex2_13.txt | //Caption:Find the percentage reduction in speed
//Exa:2.13
clc;
clear;
close;
P1=200*10^3;//initial load in watts
P2=125*10^3;//final load in watts
V_t=250;//in volts
V_b=2;//total brush drop in volts
P=6;//no. of poles
R_a=0.015;//armature winding resistance in ohms
I_g1=P1/V_t;//in amperes
I_a1=I_g1;//in... |
66ec72a559d290e257e7ab186e573e35342711fc | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/timeoffset.tst | 9d51f3843b397dbe5255b39d6bc0a91e6f6af743 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | dougsong/reposurgeon | 394001c0da4c3503bc8bae14935808ffd6f45657 | ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b | refs/heads/master | 2023-03-09T15:22:45.041046 | 2023-02-25T08:33:06 | 2023-02-25T08:33:06 | 280,299,498 | 1 | 0 | NOASSERTION | 2023-02-25T08:33:08 | 2020-07-17T01:45:32 | Go | UTF-8 | Scilab | false | false | 69 | tst | timeoffset.tst | ## Test the timeoffset command
read <min.fi
:2 timeoffset +5
write -
|
1f40c8a30b9fcd4e1a988f2e194f38ebe6a43a63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /491/CH2/EX2.11/2_11.sce | 479e9ded8109375bdf0127c940f3d3f482b1bf64 | [] | 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 | 480 | sce | 2_11.sce | // Value of s_x based on allowable stresses on glued joint
s_t = -750; //psi
t = -50; //degree
T_t = -500; //psi
sg_x_1 = s_t/(cosd(t)^2)
sg_x_2 = -T_t/(cosd(t)*sind(t))
// Value of s_x based on allowable stresses on plastic
sp_x_1 = -1100; //psi
T_t_p =600; //psi
t_p = 45; //degree
sp_x_2 = -T_t_p/(co... |
c575fa679813c99da4f71e1c2f9dac5d085259c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH12/EX12.7/12_7.sce | 4802866bfeaf73dfa7d870043490777dd017b067 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 234 | sce | 12_7.sce | clear
clc
V=300e3
R=400
k=1.5e-27
E=10
x=1
e=1e-5
while (E>e)
f=(k*R*x^6) +x -(2*V)
df=(6* k*R*x^5) +1
x1=x-(f/df)
E=abs(x1-x)
x=x1
end
eA=round(x)
IA=k*eA^6
mprintf("eA=%d, Ia=%d ",eA, IA)
|
b3d7de0f66240358380d12e13be87cc74537aff7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH15/EX15.7/Ch015Ex7.sce | 71874555a05eb7f5642c5eebb25b952470e97776 | [] | 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 | 823 | sce | Ch015Ex7.sce | // Scilab code Ex15.7 : Pg:773(2011)
clc;clear;
function [bini]= decimal_binary(ni) // Function to convert decimal to binary
bini = 0;
i = 1;
while (ni <> 0)
rem = ni-fix(ni./2).*2;
ni = int(ni/2);
bini = bini + rem*i;
i = i * 10;
end
endfunction
function [deci]... |
13f28a5f9596298c60447bd41e539fdf5912fe59 | 449d555969bfd7befe906877abab098c6e63a0e8 | /509/CH11/EX11.2/11_2.sci | 3f16e867daeb5f3c83e0e7ea3f5dd3e4e336addc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 403 | sci | 11_2.sci | //Chapter 11 Example 2//
clc
clear
// capacitance value of pin to earth=c,capacitance of top unit=c1//
c=1;
c1=5;// let us assume to be//
// since voltage across c2 same as c1//
c2=c+c1;
printf("\n So capacitance across the second unit c2 = %.fC \n",c2);
c3=2*c+c2;// since capacitance across c3=c2+2 times cap... |
aaaf8ddb748d9406f5e26fe305898c77cce2490e | cd3baacb9aa523e8ac4f10406c5fb62c9c60998a | /gate/MyDMux4Way.tst | 8da882bc4bcc49a671e36c78a1992aafc77e90b5 | [] | no_license | wangkekekexili/cuddly-octo-pancake | f8bbebc043417af9662712de610b390f062545f8 | 67b3d4c3d15c5877644221b6d987dd911101d013 | refs/heads/master | 2023-03-06T12:49:54.668374 | 2021-02-14T14:53:07 | 2021-02-14T14:53:07 | 338,038,595 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | tst | MyDMux4Way.tst | load MyDMux4Way.hdl,
output-file MyDMux4Way.out,
output-list in%B3.1.3 sel%B2.2.2 a%B3.1.3 b%B3.1.3 c%B3.1.3 d%B3.1.3;
set in 0, set sel %B00, eval, output;
set in 0, set sel %B01, eval, output;
set in 0, set sel %B10, eval, output;
set in 0, set sel %B11, eval, output;
set in 1, set sel %B00, eval, output;
set in 1, s... |
e50b49e22328c2aa751cc453e92e35b0d478cfb6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH1/EX1.12/1_12.sce | e7970b5b8c5d2575ddaf5c37d03f2b91a331ff88 | [] | 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 | 359 | sce | 1_12.sce | clc
clear
r=15;//Compression ratio of a diesel engine
Q=5;//Heat supplied upto 5 percent of the stroke
r1=1.4;//Isentropic ratio
//Calculations
p=1+(Q/100)*(r-1);//Cut off ratio
n=(1-((1/r^(r1-1)*(p^r1-1)/(r1*(p-1)))))*100;//Efficiency of diesel cycle in percent
//Output
printf('Air standard efficiency of ... |
f66f9ba457e8e3e04800944aea143d4be67b6f2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1994/CH2/EX2.2/Example2_2.sce | 4b417cba0d8a421d4381b63c054c8a4b2f2804c5 | [] | 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 | 245 | sce | Example2_2.sce | //Chapter-2,Example2_2,pg 2_11
n=8
Res1=2^n
Vofs=2.55//full scale output voltage
Res2=Vofs/(Res1-1)
printf("resolution through method-1\n")
printf("Res1=%.2f \n",Res1)
printf("resolution through method-2\n")
printf("Res2=%.2f \n",Res2)
|
9487c76d6d70cc74649c288383e5601b5239e5c2 | bbdc72de6d7eef74128eaf52b1f040053943de38 | /Code/TP2/Resultat.sce | 3db03110afa188e8f50f7ce743f3a00d37f258b8 | [] | no_license | Abdel-BHPC/Numerical-analysis | 46bb4dbcd26e00d6c4f405fe59a1ba433b8b72e0 | 2bcdb80d9ab8890d036eac3cce92b595abb88784 | refs/heads/main | 2023-03-02T14:11:06.939206 | 2021-02-08T08:40:07 | 2021-02-08T08:40:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,694 | sce | Resultat.sce | /*
Créateur: Jinshan GUO et Anais Debureaux
*/
exec(fullpath(pwd() + '\Routine.sci'),-1);
//===========Exo1-solsup===========
U = [1 2 3;0 4 8;0 0 5];
b = [6 16 15];
[x]=solsup(U,b);
disp("Exo1-x=",x);
//Vérification par Scilab
//disp("Exo1-x_resultat_scilab",U\b);
//===========Exo2-trisup===========
A ... |
80be9dd6d82b67b5ba206f106b573bda41ed379d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1709/CH7/EX7.3/7_3.sce | 267e1addb250711a3ceabddb332869209796bc36 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 230 | sce | 7_3.sce | clc
//Initialization of variables
T1=540 //R
T2=960 //R
disp("From gas tables,")
h2=231.06 //B/lbm
h1=129.06 //B/lbm
cp=0.24
//calculations
W=h2-h1
dh=cp*(T2-T1)
//results
printf("Change in enthalpy = %.1f B/lbm",dh)
|
a44c9a627a91542dc71496b79310135a0b7d8177 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3745/CH1/EX1.20/Ex1_20.sce | ac442616d2d19207ed1f4c4309a52a38c7dcaf9b | [] | 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 | 678 | sce | Ex1_20.sce | // Ex 20 Page 361
clc;clear;close;
// Given
//Ia=0.0004*(Va+40*Vg)**(3/2);// mA --eqn(1)
Va=250;//V
Vg=-3;//V
//mu=delVa/delVg
//differentiation wrt Vg eqn(1)
//(4*10**-6*3/2*(Va+40*Vg))**(1/2)*(mu+40)=0
mu=-40;//constant
printf("Amplification factor, mu = %.f",mu)
//differentiation wrt Va eqn(1)
//delIa/delVa=(4*10**... |
fedf018f8edadcda69e53dfe06de8dc51741f198 | 2a39d29b2cb27e98632f6810ed3c2a22a56fa8eb | /Materias/LabCalcNum/Rafael/lu_gauss.sci | 93475addf4dbc4766378517c53f57f32121be501 | [] | no_license | rafael747/my-stuff | 74358384bc1a5b381d1951dfaef87efdf4cb53c2 | 8614aefdc3ca9afdc1534557f73719af8494f7fa | refs/heads/master | 2021-01-17T12:47:48.206860 | 2020-06-04T15:10:20 | 2020-06-04T15:10:20 | 57,989,835 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,030 | sci | lu_gauss.sci | function [x,L,U] = lu_gauss(A,b)
// Método da Eliminação de Gauss Sem Pivotamento
[m,n] = size(A);
if m~=n, error('Matriz A deve ser quadrada'); end
// Inicializa Matriz Triangular Inferior com 1
// na diagonal ()
L=eye(A);
// Construindo a Matriz Aumentada [A b]
nb = n+1;
Aug = [A];
// Fase 1: Eliminação (na... |
4d8f5ba573292cd3c1a5727935998d500b085800 | 449d555969bfd7befe906877abab098c6e63a0e8 | /48/CH8/EX8.3/eg_8_3.sce | 1eb965299c75510e70670e3b35eb9ef387de4217 | [] | 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 | 357 | sce | eg_8_3.sce | clc;
clear;
disp("BY following the procedure discussed in Section 8.6");
disp("we find that {a}={0 or 2 or 3,9,15}");
disp("and {b}={7,8.11.13.14}");
disp("Thus the minimal sets of tests for the above network are ");
disp("{T}={0 or 2 or 3,7,8,9,11,13,14,15}");
disp("In this case the s-tests and b-tests correspo... |
3b9d8822d6fc44757c073f8ae8a7987023f25578 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1595/CH1/EX1.2/ex1_2.sce | 1c757760281b2c587b89a2e9d359bf2f7708e352 | [] | 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 | 497 | sce | ex1_2.sce | //Introductory Topics :example 1-2 : (pg no. 9 & 10)
P=0.001;
R=75;
R1=50;
x=(8/20);
y=(10^x);
V2=(y*0.775);
V=sqrt(P*R);
V1=sqrt(P*R1);
//It is a 600 ohm system so 0.775 V reference is used
printf("\ndBm(600)= 20log(V2/0.775)");
printf("\nV2 = %.3f V",V2);
//voltage reference for 75-ohm system
printf("\nV... |
3708a60e1ad435050d57d23188d671e8e758ecec | 449d555969bfd7befe906877abab098c6e63a0e8 | /1895/CH11/EX11.46/EXAMPLE11_46.sce | 2d9394e8fdbf63f58b97eb396f544dccf39fcfd5 | [] | 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,459 | sce | EXAMPLE11_46.sce | //ANALOG AND DIGITAL COMMUNICATION
//BY Dr.SANJAY SHARMA
//CHAPTER 11
//Information Theory
clear all;
clc;
printf("EXAMPLE 11.46(PAGENO 532)");
//given
P_x1 = .4//probability of first signal
P_x2 = .19//probability of second signal
P_x3 = .16//probability of third signal
P_x4 = .15//probability of fourth s... |
c1b7b85c5c18836fcdff80c4d3790672733d826d | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.3_6.tst | b834b95b91761b56694a1cc4f8c5378d6ee52a1e | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 8,290 | tst | bow.3_6.tst | 3 14:0.021739130434782608 255:1.0 751:1.0
3 5:0.2 13:0.2 14:0.06521739130434782 28:1.0 35:2.0 36:0.1111111111111111 43:0.125 58:0.16666666666666666 72:0.125 79:0.07692307692307693 97:1.0 107:1.0 128:1.0 160:1.0 190:2.0 208:1.0 378:1.0 517:1.0 538:1.0 564:0.5 649:1.0 669:1.0 679:1.0 752:1.0 753:1.0 754:1.0 755:1.0 756:1... |
e22e253661b078c41f842763377c6ea0ce31193a | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/disassembler/ldi.instr.tst | cbbb49f25f8a6ad1a6f7457cbcd1bdfb1d18fa36 | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,192 | tst | ldi.instr.tst | ; @Harness: disassembler
; @Result: PASS
section .text size=0x00000054 vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0
section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x00000088 ;2**0
start .text:
label 0x00000000 ".text":
0x0: 0x0f 0xe7 ldi r16, 0x7F ; 127
0x2: 0x1f... |
a9f8415fece2a6238f54fb5067bd7cf74016eb6a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH3/EX3.25/Chapter3_Example25.sce | 644418248ec9cf531ed351b5695196a0a0ad6020 | [] | 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 | 580 | sce | Chapter3_Example25.sce | //Chapter-3, Example 3.25, Page 95
//=============================================================================
clc
clear
//INPUT DATA
Q=300;//Heat produced by the oranges in W/m^2
s=0.08;//Size of the orange in m
k=0.15;//Thermal conductivity of the sphere in W/m.K
//CALCULATIONS
q=(3*Q)/(s/2);//Heat f... |
0571d8d4e665a51dc4d5cb50b4ec0b5b8f5ea0e8 | 717ddeb7e700373742c617a95e25a2376565112c | /278/CH22/EX22.1/ex_22_1.sce | cbab28a55a365d3caf92d1b917786b7733e59c31 | [] | 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 | 660 | sce | ex_22_1.sce | //find...
clc
//solution
//given
D=300//mm
R=0.150//mm
Cs=0.003
N=1800//rpm
w=188.5//rad/s
rho=7250//kg/m^3
//let m eb the mass of fly wheel
//ref fig 22.6
//total energy at E =total energy at A
//Eb=E+295
//Ec=E+295-685=E-390
//Ed=E-350
//Ee=E-690
//Ef=E+270
//Eg=E
//Ea=E
//max energy is at B and m... |
39d98179490a42e6f51713dce766b702ad7e82cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /3392/CH11/EX11.4/Ex11_4.sce | 95dbbaa9322d4e92572bcd3754c67349c905a758 | [] | 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 | 167 | sce | Ex11_4.sce | clc
// initialization of variables
clear
SF=1.75
p1=300 //MPa
S_rr=-SF*p1
S_th=SF*325
Y=1/sqrt(2)*sqrt((S_th-S_rr)^2+S_rr^2+S_th^2)
printf(' Y = %.1f MPa',Y)
|
63702acdebc44d54e7a8dc6a5ab34ed8d813424c | 67ba0a56bc27380e6e12782a5fb279adfc456bad | /STAMPER_PROG_7.4/LvlMultiOffsetToBoundary.sci | f3bd231101b8e8ee45bc5c7b4191d5dafe3ca43e | [] | no_license | 2-BiAs/STAMPER_PROG | 8c1e773700375cfab0933fc4c2b0f5be0ab8e8f0 | 4fdc0bcdaef7d6d11a0dcd97bd25a9463b9550d0 | refs/heads/master | 2021-01-18T19:30:06.506977 | 2016-11-10T23:32:40 | 2016-11-10T23:32:40 | 71,999,971 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,813 | sci | LvlMultiOffsetToBoundary.sci | function [listOutput, iLevelIndicies] = LvlMultiOffsetToBoundary(listInput, listMultiPassOffsetRegimes, listMultiPassOffsetComponents, plBoundary, iStartLevel, bIsSliceFirst)
listInputBuffer = listInput;
listOutput = list();
iLevelIndicies = [];
bPointsRemaining = %T;
iLevel = iStartLevel;
... |
c779605c509e2390f8b7d637246d3d6390a951b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1379/CH8/EX8.1.6/example8_6.sce | 3d516fdd9a9f225fac22217be78e9b0bb603a82b | [] | 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 | 738 | sce | example8_6.sce |
//exapple 8.6
clc; funcprot(0);
// Initialization of Variable
mu=0.224;
rho=1328;
K=5;
b=3*.5;//radius
h=2.5;
pi=3.1428;
x=2.1*.5;
rhos=1581;//density of sucrose
e=0.435;//void ratio
J=0.097;//mass fraction
m=3500;//mass flowing
a=85/10^6;//side length
L=48/1000;//thickness
omega=2*pi*325/60;
//ca... |
067ca3b77505febbeba0e8d75e2ef7f149238365 | aaac23e7fa85785f43bf1d8037708ee77ef640ef | /src/test_ods_1_d.tst | f4839bd3b941f774561ba0e565efb8cc9b410eca | [
"MIT",
"OML",
"BSD-3-Clause",
"Zlib"
] | permissive | anto0ine/ciyam | ee2b057a9cd11008ae0d477dac111c0a8d2f60b3 | 7127d528c37584e7d562732274fa2ed6025daeaa | refs/heads/master | 2020-12-07T13:43:24.528962 | 2014-11-20T07:22:08 | 2014-11-20T07:22:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,728 | tst | test_ods_1_d.tst | ** File Info
Version Id = 65536
Num Writers = 0
Total Entries = 14
Transaction Id = 24
Index Free List = 13
Total Size of Data = 612
Data Transformation Id = 24
Index Transformation Id = 65
** Entry Info for: all
num: 0000000000000000 ver: 00000000
txi: 0000000000000017 txo: 00000000 ... |
9bdbddcb817484de3369a98bd767a07cb0b14f84 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH18/EX18.11/example18_11.sce | a6f603bd29737e0d55d138806571bd099e1522d0 | [] | 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,093 | sce | example18_11.sce | //Chapter 18
//Example 18_11
//Page 437
clear;clc;
a=1*(cosd(120)+%i*sind(120));
Ir=20*(cosd(0)+%i*sind(0));
Iy=20*(cosd(180)+%i*sind(180));
Ib=0;
Ir0=1/3*(Ir+Iy+Ib);
Ir1=1/3*(Ir+a*Iy+a^2*Ib);
Ir2=1/3*(Ir+a^2*Iy+a*Ib);
Iy0=Ir0;
Iy1=a^2*Ir1;
Iy2=a*Ir2;
Ib0=Ir0;
Ib1=a*Ir1;
Ib2=a^2*Ir2;
printf("Ir = %.2f /_%.2f A \... |
738b9acbfe3280b91b17b6d83fa0d173cf52978c | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set4/s_Digital_Communications_S._Sharma_1631.zip/Digital_Communications_S._Sharma_1631/CH2/EX2.3/Ex2_3.sce | b3690a22810b0ccad72209be477d133e567a8eda | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 474 | sce | Ex2_3.sce | errcatch(-1,"stop");mode(2);//Caption: Probability
//Example 2.3
//page no 43
//find the probability
;
;
total_cards=52;
ways_of_drawingtwocards=52*51/(2*1);//ways of drawing 2cards from a deck of 52cards
diamonds=13;
Hearts=13;
waysof_diamonds_Hearts=diamonds*Hearts;//ways of drawing a Diamond and a Heart
... |
3c187928d02d0b4f5bbd7da7ce36fa8065f798b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /37/CH6/EX6.1/s1.sci | 6be08c4ab538cc90047d70611d53da2acbba8409 | [] | 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 | 373 | sci | s1.sci | function[a1]=bubble(a,n)
i=1;
j=1;
temp=0;
for i=1:n-1
for j=1:n-i
if(a(j)>a(j+1))
temp=a(j);
a(j)=a(j+1);
a(j+1)=temp;
end
j=j+1;
end
i=i+1;
end
a1=a;
disp(a1,"Sorted array is:");
endfunction
//Calling Routine:
a=[23 21 232 121 2324 ... |
921f912d61825fdfc2da5b99c6980a8f8fa7414b | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/Crvonsfparadata.sci | a530284bbf93570397b21519ca8dc949ee6fc940 | [] | 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 | 2,505 | sci | Crvonsfparadata.sci | // 08.09.16
// 08.10.11
// 08.10.15
// 10.02.16 Eps
// 13.10.22 ( __ added to varibles )
function OutL__=Crvonsfparadata(varargin)
global PARTITIONPT HIDDENDATA CRVONSFHIDDENDATA
Nargs__=length(varargin);
Eps__0=10^(-4);
Figuv__=varargin(1);
Fbdy__=Projpara(varargin(2));
Fd__=varargin(3); N__=4;
Fd__L=F... |
262a15192ae7b74e16fb8a7321f11d52a4547c49 | 67a252961f6616fc6db89eb11c1c83abf4d41468 | /CS4110Design4/CS16B032RAM16K.tst | bebadf2a84952da62f9d984c49ab6b5dff5e1624 | [] | no_license | ramyavelaga9/CS4110 | 5a45497cd7ef28d4472a57a257dad8e5f4a3d17b | 4a3cd82916820e4f7a4930a0efce14def8268dfc | refs/heads/master | 2020-07-17T23:41:12.196500 | 2019-11-20T04:24:32 | 2019-11-20T04:24:32 | 203,223,619 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,002 | tst | CS16B032RAM16K.tst | load CS16B032RAM16K.hdl,
output-file CS16B032RAM16K.out,
compare-to CS16B032RAM16K.cmp,
output-list time%S1.4.1 in%D1.6.1 load%B2.1.2 address%D2.5.2 out%D1.6.1;
set in 11877,
set load 0,
set address 13353,
tick,
output;
tock,
output;
set in 18498,
set load 1,
set address 6843,
tick,
output;
tock,
output;
set in 1126... |
9f85a58c993b6b1e13f675742665f0cc7bf1744b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH8/EX8.7/Ex8_7.sce | 26aa1f0510419c793724e11e52f7abf02828e740 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 173 | sce | Ex8_7.sce | //pagenumber 405 example 7
clear
rg=40*10^3;//ohm
voltag=(1-6*50)*3.3*10^3/(5.3*10^3);
disp("output voltage = "+string((voltag))+"volt");//correction in the book
|
153b67142d9569278fa5a20761d055a8cdafb8dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH5/EX5.6.b/5_6_soln.sce | ad5d942a407324a77ef178c465271382e4e04218 | [] | 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 | 427 | sce | 5_6_soln.sce | clc;
pathname=get_absolute_file_path('5_6_soln.sce')
filename=pathname+filesep()+'5_6_data.sci'
exec(filename)
// Solutions:
// Theoretical flow rate,
Qt=Qa/(eta_v/100); //gpm
// Area of piston,
A=(%pi/4)*(d^2); //in^2
// tan of offset angle,
T_theta=(231*Qt)/(D*A*N*Y);
// offset angle,
theta=atand(T_theta); //deg
/... |
4e3e64f7efa673ef9f0ae8c92c17ccee32069eb8 | 430e7adb489914d378a5b0a27d8d41352fa45f3a | /scilab/example/ボード線図.sce | 40d25b26db80c1aaae528fbc026537d60b69ec8e | [] | no_license | ziaddorbuk/Lesson | 04906ff94bf8c1f6bbc6971d5692ae011a9b8869 | 20fe20a6c9c145ef48a35574d885d3952f9ab6ff | refs/heads/master | 2021-09-23T11:48:05.958608 | 2018-04-30T01:54:13 | 2018-04-30T01:54:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 72 | sce | ボード線図.sce | s=%s;
G=1/(1+2*s);
sys=syslin("c",G);
clf();bode(sys,1e-2,1e1,0.01)
|
4927a686672adb05cc5ae0b8a6767edcc88b5b0b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1309/CH2/EX2.8/ch2_8.sce | 323d0a7f57e39a228289338cdf6255f359e78737 | [] | 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,093 | sce | ch2_8.sce | clc;
clear;
printf("\t\t\tChapter2_example8\n\n\n");
// determination of temperature profile, heat transferred, efficiency, effectiveness.
printf("\n\t\t\tSolution to part (a)");
k=24.8; // thermal conductivity of 1C steel in BTU/(hr.ft.degree Rankine)from appendix table B2
D=(5/16)/12; // diameter of the rod in ft
P=(... |
21cfcac5d77430d80cc96ff8d2ea76021306bdbb | 44f225adc0be4f9ecb45fb9fde03e74f23d7acb2 | /macros/more/getgaussiankernel.sci | 538efebd0a79998b161f03bd79c221512cb4c06e | [] | no_license | harpreetrathore/scilab-IPT | 10c4996614f1c59972e59decd1b7171e7d5816e0 | db79f1370f3cb0a7716a8afcf1cf5fde9fe70aba | refs/heads/master | 2021-01-01T04:06:52.573735 | 2016-05-26T20:34:33 | 2016-05-26T20:34:33 | 59,781,201 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 311 | sci | getgaussiankernel.sci | //Function migration (image list to matrix) for: getgaussiankernel
//Generated by migrate.cpp
//Author: Anirudh Katoch
function res = getgaussiankernel(varargin)
select length(varargin)
case 03 then
res = raw_getgaussiankernel(varargin(01), varargin(02), varargin(03))
else
error(39)
end
endfunction |
bf6c7bedbb41de7753291569cccc2f7c8d9d8df2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3136/CH5/EX5.4/Ex5_4.sce | 27624fdc11a9b0afbd25b1491600b9f0e129885c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 982 | sce | Ex5_4.sce | clear all; clc;
disp("Assume uniform axial flow at the inlet")
disp("(a) At the hub")
disp("V_a=15.5m/s")
omega=157
D_h=0.37
U_h=0.5*omega*D_h
printf(" Uh= %0.2f m/s",U_h)
disp("Vu2=(Vmu2*Dm)/Dh")
V_mu2=15
D_m=0.585
V_u2=(V_mu2*D_m)/D_h
printf(" Hence Vu2= %0.1f m/s",V_u2)
V_a=15.5
disp("tan(ß1)=(... |
cdf587c94f3a0051e1ef63132f6faa677a0f44dd | 43799901e22e995d4db64000ef28c0a787aeb11b | /ISAWIN/LINOV/FQDMON2/appli.tst | ac4316bef0f33862d49e798bbf6de24cdf4c1001 | [
"WTFPL"
] | permissive | aquaforum/tench_catch | 7082d8e8f3a224aa50be9150a96362f2f323a2be | 3f377476d82d7343edd985a6d3a41b57dc301f98 | refs/heads/master | 2023-07-17T13:33:10.901467 | 2021-08-22T19:29:09 | 2021-08-22T19:29:09 | 398,885,059 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,221 | tst | appli.tst | @ISA_SYMBOLS,48653229
#NAME,fqdmon2,3.41
#DATE,31.08.2016
#SIZE,G=1,S=0,T=0,L=0,P=0,V=1
#COMMENT,wsma1tst
@PROGRAMS,1
#!5001,FD_12
@STEPS,0
@TRANSITIONS,0
@BOOLEANS,62
#!1002,MQ_03,+X,!5001,FALSE,TRUE
#!1003,RUN0001,+X,!0000,FALSE,TRUE
#!1004,RUN0010,+X,!0000,FALSE,TRUE
#!1005,RUN0002,+X,!0000,FALS... |
6446e4e2a24098ceb83a1e9da04a7f02382ca670 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3689/CH6/EX6.14/6_14.sce | 3763f93e97e9a72621beb53d0325de438bb3f2ab | [] | 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 | 775 | sce | 6_14.sce | ////
//Variable Declaration
beta = 2.04e-4 //Thermal exapansion coefficient, /K
kapa = 45.9e-6 //Isothermal compressibility, /bar
T = 298.15 //Std. Temperature, K
R = 8.206e-2 //Ideal gas constant, atm.L/(mol.K)
T1 = 320.0 //Temperature, K
Pi = 1.0 ... |
30296ba584797b3dfb8cd816248628f290598ae0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2303/CH3/EX3.1/EX_3_1.sce | a81e92df485a8dad859306f62303a167199f247f | [] | 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 | EX_3_1.sce | //Ex.3.1
clc;
clear;
close;
x1=[1 2 3 4]; //assume
x2=[1 2 1 2]; //assume
a=1;
b=1;
y=[2 2 2 2]; //y(n)=2 for all x
//Test for homogeneity
k=2;
hom=0;
for n=1: length (x1)
if (k*y(n)==k*x1(n))
hom=hom+1;
end
end
//Test for additivity
for n =1: length (x1)
... |
a786fbbcc8fab8d9eb80e2a0c3bd8adcac35b5c5 | 2cec6f9a0388bc4824a9c3e4395b0d14020c611a | /laboratorios/4/Grupo8.sci | bd8f227cb1355eb933f1a6e2170506754441709d | [
"Artistic-2.0"
] | permissive | nandotorterolo/calculoNumerico | f281be6a984d4c7824633627e2c73ae8af75750d | dbc1431748aaed145f4bc44956c64a5dcc795c34 | refs/heads/master | 2021-01-21T04:53:56.844334 | 2016-06-27T13:50:02 | 2016-06-27T13:50:02 | 53,941,141 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,405 | sci | Grupo8.sci | // *****************************************
// * Universidad Católica del Uruguay
// * Cálculo Numérico 2016
// * Laboratorio 4
// * Eduardo Senturión - Federico González
// *****************************************
// Esta función se utiliza para saber quienes son los participantes del grupo
function Grupo=AlumnosDe... |
b6fd73c6dcdc34ffbc53dd42b7f2df6c0dd8ed40 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH32/EX32.34/Ex32_34.sce | 1676379800f7211b26475aadcdb979064b262b52 | [] | 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,486 | sce | Ex32_34.sce | // Example 32_34
clc;funcprot(0);
//Given data
L_cap=1500;// kW
// n=0.43*(L)^0.48;(given)
T=[0 4 8 12 16 20 24];// Time in hours
L_a=[200 600 1000 400 200 100];// Load in kW
L_b=[800 400 200 200 600 400];// Load in kW
L_t=[1000 1000 1200 600 800 500];// Load in kW
CV=45*10^3;// MJ/kg
Dc=30;// The cost of die... |
fdcc52f71c8d0c7b112d3f6459e7f0166bba7136 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1133/CH4/EX4.15/Example4_15.sce | 2c3b5eebcd24189cee7df731879e1c3392ebf570 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 721 | sce | Example4_15.sce | //Example 4.15.
clc
format(6)
disp("For a Wien bridge oscillator,")
disp(" f = 1 / 2*pi*R*C")
fm=(1/(2*%pi*(100*10^3)*(50*10^-12)))*10^-3 // in kHz
disp(fm,"Therefore, f_max(in kHz) =")
fmi=(1/(2*%pi*(100*10^3)*(500*10^-12)))*10^-3
disp(fmi,"and f_min(in kHz) =")
fn=31.83+50
disp(fn,"Now f_new(in kHz) = ... |
cb6becd6a95d6d759c58ce22a27fe5bae89cb4c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1049/CH9/EX9.3/ch9_3.sce | 60607fba6891e924176b1a1de601bb9d8a536e26 | [] | 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 | 358 | sce | ch9_3.sce | clear;
clc;
V_s=230;
n=6;//on cycles
m=4;//off cycles
k=n/(n+m);
V_or=V_s*sqrt(k); printf("rms value of o/ voltage=%.3f V",V_or);
pf=sqrt(k); printf("\ni/p pf=%.4f",pf);
R=15;
I_m=V_s*sqrt(2)/R;
I_TA=k*I_m/%pi; printf("\navg thyristor current=%.4f A",I_TA);
I_TR=I_m*sqrt(k)/2; printf("\nrms value... |
959f53f64cad2dea285e625f630075a2b216fabf | f782561b1f8fe3d916355f7823306c0ddfcd4e1c | /Assignment 2/ParityGeneratorAndChecker/ParityGenCheck.tst | f477449d229a9d932e394c9466a1fbc5b6bb52a9 | [] | no_license | rohit01010/Computer-System-Design | 17866493199ecea3e65c15558d6e598b552fd537 | 24609e7712e0f996ebc468c7d45d5cfafad0da87 | refs/heads/main | 2023-06-21T21:28:29.274768 | 2021-07-19T16:23:52 | 2021-07-19T16:23:52 | 387,509,305 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,248 | tst | ParityGenCheck.tst | load ParityGenCheck.hdl;
output-file ParityGenCheck.out;
output-list x7 x6 x5 x4 x3 x2 x1 x0 pIn pOut z;
set x7 0,set x6 0,set x5 0,set x4 1,set x3 0,set x2 0,set x1 0,set x0 0,set pIn 0,eval,output;
set x7 0,set x6 0,set x5 0,set x4 0,set x3 0,set x2 0,set x1 0,set x0 0,set pIn 1,eval,output;
set x7 0,set x6 0,set x5 ... |
b2ef08cebbdb9f195a618ee4e85dacc7d1a11e0e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2528/CH5/EX5.14/Ex5_14.sce | 3193e16ee2eba4282859508e0cabd51fb813261b | [] | 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,093 | sce | Ex5_14.sce | //Example5.14:"Output noise voltage""
//Page 167
//figure 5.29
clear;
clc;
Rf=99000; // in Ohm
Ri=1000; //in ohm
Rs=100; //in ohm
Av=1+Rf/Ri;
disp(Av,"Av ordinary value");
disp(20*log10(Av),"Av dB value");
Anoise=Av; //for non inverting amplifier
Rnoise=Rs+Rf*Ri/(Rf+Ri);
disp("... |
c05b9dff8236f88350be95b78ae901c95c8a930a | 449d555969bfd7befe906877abab098c6e63a0e8 | /37/CH2/EX2.4/2solved4.sci | 66e870e704a6c3d0fb3271990dd5a70a05f2e3b8 | [] | 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,147 | sci | 2solved4.sci | //Solved Example 5:
//Convering an infix expression to a Postfix Expression:
function[sta]=push(stac,ele)
sta=0;
if(stac.top==0)
stac.a=ele;
stac.top=stac.top+1;
else
stac.a=[stac.a(:,:) ele]
stac.top=stac.top+1;
end
disp(stac);
sta=stac;
endfunction
function[ele,sta]=pop(sta... |
15aad60e6d2f909efa026fda363eba6821f7fab1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3809/CH17/EX17.3/EX17_3.sce | e865e5b546a6bc90377df1c810b8a0933508ff78 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 514 | sce | EX17_3.sce | //Chapter 17, Example 17.3
clc
//Initialisation
VDD=15 //voltage
Vq=10 //quiescent output voltage
VGS=3 //voltage
RD=2.5*10**3 //resistance in Ohm
//Calculation
VR=VDD-Vq //voltage
ID=VR/RD ... |
dd0ecdc9c4d1ffcc3397c8df644e146d1b57cbfa | 8d952a06e3809a06825a3be7b067201f3652f16a | /debug/bin/BackDoor/sci_gateway/builder_gateway.sce | 3f8e98f90b7e2437c6f20244034ba9dd8ba735fd | [
"GPL-3.0-only",
"MIT"
] | permissive | andyLaurito92/haikunet | b771eaf6bd91292485f0a49698ce123b9308d676 | db44623b248c56735c28a5f589c3239dc7e9855e | refs/heads/master | 2021-06-14T12:38:38.996450 | 2021-05-05T18:26:02 | 2021-05-05T18:26:02 | 75,564,849 | 2 | 1 | MIT | 2021-05-05T18:26:26 | 2016-12-04T21:12:31 | C++ | UTF-8 | Scilab | false | false | 559 | sce | builder_gateway.sce | // ====================================================================
// Allan CORNET
// Simon LIPP
// INRIA 2008
// This file is released into the public domain
// ====================================================================
sci_gateway_dir = get_absolute_file_path('builder_gateway.sce');
tbx_builder_gatewa... |
760d21d7d78a58eb3aeaa2b2089996f11481699e | 3cbdc2f272df05cfe8c6636d4504e9e3d2e4fe3f | /CompPhys/Duffing/DuffingOscillator-2011-08-27.sci | 52c602c00cc9c97a02993c37aac4c54c69eb8385 | [] | no_license | bozhink/Code-Chunks | 74355eb4c0d423c2f6484226e564030dff798678 | 860b7b8f53089ed96fd0ebead2e3eec16fa377cb | refs/heads/master | 2020-12-24T06:19:04.343239 | 2019-11-13T14:09:15 | 2019-11-13T14:09:15 | 42,819,484 | 0 | 1 | null | 2019-11-13T14:09:16 | 2015-09-20T16:09:09 | HTML | UTF-8 | Scilab | false | false | 422 | sci | DuffingOscillator-2011-08-27.sci | __gamma__ = 0.1;
__m__ = 1.0;
__a__ = 0.25;
__b__ = 0.50;
__omega__ =2.4;
__F0__ = 2.0;
t0 = 0.0;
t = linspace(t0,100.0,1000);
x0 = [0.5;0.0];
function z=DuffingOscillator(t,x)
z(1) = x(2);
z(2) = (-__gamma__*x(2) + 2*__a__*x(1) - 4*__b__*x(1)*x(1)*x(1) + __F0__*cos(__omega__*t))/__m__;
endfunction
y = ode("s... |
3a750314acf77d9ee6d3acecbc4781fdc4c84268 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/minss.man.tst | 86728aba73b6c8e7628497742813da3da09f484e | [
"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 | 86 | tst | minss.man.tst | clear;lines(0);
sl=syslin('c',[1 0;0 2],[1;0],[2 1]);
ssprint(sl);
ssprint(minss(sl))
|
7d92eb8fb945a0d5354bdf61ec2415a13a91bd45 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2135/CH3/EX3.3/Exa_3_3.sce | af1763ed2481160bf6c01e5f747ad860b7e0eb57 | [] | 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 | 368 | sce | Exa_3_3.sce | //Exa 3.3
clc;
clear;
close;
format('v',6);
//Given Data :
Q2=100;//KJ/sec or KW
T2=-20+273;//K
T1=35+273;//K
COP=T2/(T1-T2);
disp(COP,"COP is : ");
W=Q2/COP;//KW
disp(W,"Power input in KJ/s or KW : ");
COPheatpump=T1/(T1-T2);//
disp(COPheatpump,"COP as heat pump : ");
Eta_engine=(1-T2/T1)*100;
disp(... |
07672bc0fe598d05bba2d280fa7a9715fee0127d | 449d555969bfd7befe906877abab098c6e63a0e8 | /172/CH17/EX17.9/ex9.sce | 4da76a7549d5b7473c8eca7925bb03709029c39f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 531 | sce | ex9.sce | //ques9
//determining exit plane properties in control volume
clear
clc
//x-inlet
//y-exit
Mx=1.5;//mach number for inlet
My=0.7011;//mach number for exit
Px=272.4;//inlet pressure in kPa
Tx=248.3;//inlet temperature in K
Pox=1000;//stagnation pressure for inlet
Py=2.4583*Px;//Exit Pressure in kPa
Ty=1.320*... |
fa220576f35751a148919653a766ba08da922c47 | 449d555969bfd7befe906877abab098c6e63a0e8 | /154/DEPENDENCIES/ch8_10.sce | 3c081ca93813860c5d81f0b1fa1a8da331d40101 | [] | 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 | 484 | sce | ch8_10.sce | clc
disp("Example 8.10")
printf("\n")
printf("Given")
disp("vs= 5V t<0")
disp("vs=5*sin(w*t) t>0")
vs=5;
R=5;L=10*10^-3;
//At t<0
//Inductor behaves as a short circuit
//Let i(0-)=i
i=vs/R;
printf("i(0-)=%dA\n",i)
//During the transition from t=0- to t=0+
//Let i(0+)=i1
i1=i
printf("i(0+)=%dA... |
2d5c59d64710e2264853c4325e54c7525a421319 | 553ab8beccf53972c634384ee6f6f0c010f4733e | /scilab/disp_kf_pvmdl.sce | d6f1aa1eb914e07c2e891cbf6dc6a9ef15c53939 | [] | no_license | ganlubbq/sdrGPS_fork | bf00134ce5f5cdbf8b54bc7113a2c3d70b619f95 | a06a0091ad923b7ddee659653ea4855b3732183b | refs/heads/master | 2020-04-18T10:31:37.161233 | 2019-01-20T05:39:28 | 2019-01-20T05:39:28 | 167,469,911 | 1 | 0 | null | 2019-01-25T02:13:28 | 2019-01-25T02:13:27 | null | UTF-8 | Scilab | false | false | 3,190 | sce | disp_kf_pvmdl.sce | res_log=read('../data/gps_kf_pv_log.m',-1,24);
[r_n,c_n]=size(res_log);
idx=[1:r_n];
// First plot KF state
//xset('color',3);
//xset('background', 1);
xbasc();
xset('window',0);
// plot pos_x result
subplot(811);
plot2d(res_log(:,1));
xtitle("ECEF_x",'100ms','m');
xset('background', 4);
// plot pos_y result
subplot... |
02f9066f0b61ca9bb61e6d7fd0d10a09972310fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH7/EX7.10/exp7_10.sce | 2993c0543ac3a3bde798351f8896a2ab45aa1b4f | [] | 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 | 394 | sce | exp7_10.sce | //Example 7.10
clc
disp("the given values are I_0 = 3 uA, T = 27 C = 27+273 = 300 K, eta =1")
disp("Now I_rated = 1 A for diode")
disp("and I = 1% of I_rated at 27 C")
disp("Therefore, I = 0.01 A")
vt=300*8.62*10^-5
format(6)
disp(vt,"V_T(in V) = k*T =")
disp("According to diode equation, I = I_0 * (e^(V/e... |
53fccd8254f1d038ea2c34710c96d8c628239d72 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/sci2blif_added_blocks/hystdiff.sce | 6be5645627ecca8b0b73cd0f6b3c35cdcf058a3a | [] | 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 | 527 | sce | hystdiff.sce | //**************************** Hysteretic Differentiator ******************************
if (blk_name.entries(bl) =='hystdiff') then
mputl("# histdiff",fd_w);
for ss = 1:scs_m.objs(bl).model.ipar(1)
mputl(".subckt hyst_diff in[0]=net"+string(blk(blk_objs(bl),2))+ "_" + string(ss)+" out[0]=net"+ string(... |
59d450a457ee0a1b073a1a82d1b942ec2b51034b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3683/CH19/EX19.9/Ex19_9.sce | 39a5c515b7858f8fb7738393fcdeb8a1a73d96ef | [] | 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,202 | sce | Ex19_9.sce | l=2.7+1//span, in m
R=0.15//rise, in m
t=0.27//tread, in m
fck=15//in MPa
fy=415//in MPa
D=200//assume, in mm
W1=D/10^3*25*sqrt(R^2+t^2)/t//slab load on plan, in kN/m
W2=1/2*R*t*25/t//load of step per metre, in kN/m
W3=3//live load, in kN/m
W=W1+W2+W3//in kN/m
Wu=1.5*W//in kN/m
Mu=Wu*l^2/8//in kN-m
d=sqrt(M... |
2efd455d3445f3212c462d60ea94d4c8a3d5c2ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /1409/CH8/EX8.26/8_26.sce | 5ca9e492c233e9a11ea02e8a0d5c1c89c4dcd5a6 | [] | 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 | 512 | sce | 8_26.sce | clc;
//page no 8-65
//Example 8.26
fmax=1600;//in kHz
fmin=550;//in kHz
IF=455;//in kHz
Csmax=350;//in pF
//Let Csmax/Csmin=C
C=(fmax/fmin)^2;
disp(C,'Csmax/Csmin=');
fomin=fmin+IF;
fomax=fmax+IF;
disp(+'kHz',fomin,'fomin=');
disp(+'kHz',fomax,'fomax=');
//Let Comax/Comin be denoted by C1
C1=(fomax/fomin... |
271cea3f36218ec911857d6a29630b3abdd66499 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH3/EX3.7/Ex3_7.sce | 0e5f583e011e5a34baa331fe66c0811e5660b3dd | [] | 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 | 257 | sce | Ex3_7.sce | clear
//
//
//
//Variable declaration
d=2.82*10^-10; //lattice spacing(m)
sintheta=1;
n=1;
//Calculation
lamda_max=2*d*sintheta/n; //longest wavelength(m)
//Result
printf("\n longest wavelength is %0.3f angstrom",lamda_max*10^10)
|
f336c50f814ccf3424cc175e3ece1fb18385f143 | ac1f8441b0319b4a391cd5a959bd3bb7988edfa7 | /data/news2015/news2015/SplitsNEWS15/ThEn/then.6.tst | 9af1386aed1e8a695e8b2991d5ca7f047f890942 | [
"MIT"
] | permissive | SaeedNajafi/transliterator | 4d58b8604fa31f52ee2dce7845e002a18214fd5e | 523a087b777a5d6eec041165dabb43848f6222e6 | refs/heads/master | 2021-09-18T17:02:59.083727 | 2018-07-17T06:01:21 | 2018-07-17T06:01:21 | 129,796,130 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 120,480 | tst | then.6.tst | ก ร อ ด โ น g r o d n o
ก ร า เ ซ ี ย ส g r a c i a s
ก ร ิ ด g r i d
ก ร ิ ม ม ิ ต g r i m m e t t
ก ร ี ด g r e d e
ก ร ี น ส แ ป น , แ อ ล ั น g r e e n s p a n , a l a n
ก ร ี น ฮ ิ ล g r e e n h i l l
ก ร ี น ิ ช เ ม ร ิ เ ด ี ย น g r e e n w i c h m e r i d i a n
ก ร ู เ ว อ ร ์ g r o o v e r
ก ร ู เ อ อ ร ... |
26486296afd2f80dd2f6061349bcdd611fc7842f | cb795495d7cb7e053c51236279bdfedf3e4b7a37 | /Scilab/Activation Functions & Logic Gates/ReLU.sce | 10dcfd1127e3fabccd582cd4e91bfa296ce38266 | [
"MIT"
] | permissive | memr5/Machine-Learning-Portfolio | 7b21443912deb8381518fcf0c12b4fd15ecbb9a6 | 31a9430aa957949c3f9e05e696f25f7200e21263 | refs/heads/master | 2021-07-17T15:48:05.964583 | 2020-04-23T12:35:58 | 2020-04-23T12:35:58 | 201,817,591 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 51 | sce | ReLU.sce | x = -10:10;
ReLU = max(0,x)
figure(1)
plot(x,ReLU)
|
72cc044f71b3978ab5cad5a877e8ddb2f9394534 | 33fb8ad2c9908d12230e378cb1f793922b817e68 | /Couverture d’un Put dans le modèle CRR/Prix_Americaines.sci | 4e4b5fc453d8bec6a6033baa1f007f62149150cf | [
"MIT"
] | permissive | AmineKheldouni/Finance-Stochastic-Calculus | eca352c4f7ce0c1f71c8ce09c05b1380190e467f | c88b01728daa5e1a6a4aa49992e797e6b93633fe | refs/heads/master | 2020-04-14T22:29:26.264109 | 2019-01-04T23:27:10 | 2019-01-04T23:27:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 519 | sci | Prix_Americaines.sci | exec('Prix_en_zero.sci');
function [Y] = Prix_en_zero_Amer(N,K,r,a,b,x)
p_etoile = (b - r) / (b - a) // proba d'aller en 1+a
p1 = p_etoile / (1 + r);// proba "actualisee" de choisir 1+a
p2 = (1 - p_etoile) / (1 + r);// proba "actualisee" de choisir 1+b
Y = Prix_Amer(0,N,K,p1,p2,a,b,x);
endfunction
... |
c7270d2102828f714a42f383391f8214ef6539c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1583/CH8/EX8.1/PLL_Ex_8_1.sce | 58b0b5257f9f09f9a1afdcd4a3b4ff0583c0d9b8 | [] | 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 | 454 | sce | PLL_Ex_8_1.sce | clc
//Chapter 8:Linear model of phase locked loop
//example 8.1 page no 314
//given
fo=1*10^6//output frequency
fr=25*10^3//reference frequency
N=fo/fr
Kd=2//phase detector gain factor
Ko=100//VCO gain factor
thetao=(2*100*2*%pi)//output phase
s=poly(0,"s")
thetar=s+(2*100*2*%pi)/N//input phase
Tf=thetao/th... |
e4f59aefe2ae167cb7cfe6e62850d1262ebe3a28 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH13/EX13.11/Ex13_11.sce | f589b80506a9e1984e869c1d186255b8472eac61 | [] | 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 | 756 | sce | Ex13_11.sce | // Example 13_11
clc;funcprot(0);
// Given data
T_1=800;// R
T_4=530;// R
T_3=T_4;// R
p_4=14.7;// psia
p_3=p_4;// psia
p_2s=p_3;// psia
m=1.00*10^-3;// lbm of air
R=53.34;// ft.lbf/lbm.R
k=1.4;// The specific heat ratio
// Calculation
// (a)
V_4=(m*R*T_4)/(p_4*144);// ft^3
V_1=V_4;// ft^3
p_1=(m*R*T_... |
932c64dba8797ce00d8d96013fa5f743c8f6b162 | 1489f5f3f467ff75c3223c5c1defb60ccb55df3d | /tests/test_diff_4_b.tst | 83042264d09f55f26ce37d2c72f21bf9f03d2655 | [
"MIT"
] | permissive | ciyam/ciyam | 8e078673340b43f04e7b0d6ac81740b6cf3d78d0 | 935df95387fb140487d2e0053fabf612b0d3f9e2 | refs/heads/master | 2023-08-31T11:03:25.835641 | 2023-08-31T04:31:22 | 2023-08-31T04:31:22 | 3,124,021 | 18 | 16 | null | 2017-01-28T16:22:57 | 2012-01-07T10:55:14 | C++ | UTF-8 | Scilab | false | false | 13 | tst | test_diff_4_b.tst | aa
b
c
x
y
d
|
209aebee1e530efe62fc4899e652a341ab347534 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2420/CH1/EX1.7/1_7.sce | dd80569396e0d2657ce0887d448f6d73a6f3c8d6 | [] | 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 | 187 | sce | 1_7.sce | clc
clear
//Initialization of variables
g=32.2 //ft/s^2
Pb=29.5 //in of Hg
Pv=10 //in of Hg
//calculations
AP=(Pb-Pv)*0.491
//results
printf("Absoulte pressure = %.2f psia",AP)
|
089ddf866c5a984b3d8133fd80357eaa53e44cea | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH3/EX3.14/example3_14.sce | 61e20b65f23a8643544250274b59da7248e5ed8d | [] | 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 | 606 | sce | example3_14.sce | // Calculate ac voltage,rectification efficiency
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 3-14 in page 160
clear; clc; close;
// Given data
Vdc=100; // DC voltage in V
Rl=500; // Load resistance in ohms
Rf=20; // Internal resistance in ... |
70e8393910b6a343776dd58af3eec0b12ca4e8f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /536/CH3/EX3.3/Example_3_3.sce | c5d7a66e5f6698079a60949efec46d325929ec82 | [] | 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,086 | sce | Example_3_3.sce | clc;
printf("Example 3.3\n");
Dia_tank=5; //Diameter of the tank
len_pipe=100; //Length of pipe
dia_pipe=225e-3; //Diameter of pipe
printf("\n Given:\n Diameter of the tank = %d m\n Length of pipe = %d m\n Diameter of pipe = %.2f m",Dia_tank,len_pipe,dia_pipe);
//If at time t the liquid level is D m above the... |
e5f774b016f971889cefad302cf47a48747aa668 | 449d555969bfd7befe906877abab098c6e63a0e8 | /881/CH24/EX24.2/exa24_2.sce | 8c15152a6381124b2995d0b5cdbe77ebb4a6c5af | [] | 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 | exa24_2.sce | clc;
//Example 24.2
//Page No 988
disp("Given: d1=18.6Km, d=14.4Km, Hn=H1=200meters, n=1");
//solution
d1=18.6;
d=14.4;
H1=0.2;
n=1;
c=3*10^8;
disp("From equation 24-10, the height of the nth fresnel zone Hn is, ");
l=(((H1^2)*d)/(n*d1*(d1-d)));
l=l*10^3;
disp('m',l,"l = ")
f=(c/l);
f... |
f50e744d0f5162d46f663c03da6d8347e49ef378 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH7/EX7.31/Ex7_31.sce | 7e4212e6d3b47124f9e0a9be99c0873f0659c8c5 | [] | 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 | 783 | sce | Ex7_31.sce | //CHAPTER 7- SINGLE PHASE TRANSFORMER
//Example 31
clc;
disp("CHAPTER 7");
disp("EXAMPLE 31");
//single phase transformer having 400 primary and 1000 secondary turns
//VARIABLE INITIALIZATION
N1=400;
N2=1000;
coreA=60; //net core area in cm^2
v1=500; //... |
7cb93b21621e69870c173721335775e56a93294e | 449d555969bfd7befe906877abab098c6e63a0e8 | /632/CH6/EX6.4/example6_4.sce | 4bfae3561ed75037310f56f2b6c67f7f3b335ba0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 341 | sce | example6_4.sce | //clc()
A = 13.8587;
B = 2911.32;
C = 56.56;
T1 = 325;//K
//Pressure at normal condition = 101.3kPa
P2 = 101.3;//kPa
//Antoine equation - lnP = A - B / (T - C)
lnP = A - (B / (T1 - C));
P1 = exp(lnP);
disp("kPa",P1,"(a)Vapour pressure of n-heptane at 325K = ")
T2 = B/(A - log(P2)) + C;
disp("K",T2,"(b)Normal boiling po... |
534140f0c270f96adc17faccc4f5374837a372f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH13/EX13.12/Ex13_12.sce | ede44338318c68dabc0f5e4a13fbe02479eb39dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 433 | sce | Ex13_12.sce | //Initilization of variables
m_A=40 //kg
m_B=15 //kg
F=500 //N
g=9.8 //m/s^2
theta=30 //degrees
//Calculations
m=m_A+m_B //kg
a=(F-m*g*sind(theta))/(m) //m/s^2
//Summing forces parallel and perpendicular to the plane
//Simplfying equation (1) and (2)
Nb=m_B*g+(m_B*a*sind(theta)) //N
//Substituting this in e... |
a867e6b617a02ec3fdbee230ae40df1350bda414 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/util/manedit.sci | 741e709d035e4ddcd23a1cdb72defe1ead5ac592 | [
"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 | 353 | sci | manedit.sci | function []=manedit(manitem,editor)
// manitem : character string giving a manitem
//
// Copyright INRIA
[lhs,rhs]=argn(0)
if rhs<=1, editor ="emacs -geometry 81x50+427+143 -fn 9x15 ";end
fname='fname=`ls $SCI/man/*/'+manitem+'.man 2>/dev/null `;';
unixstr=fname+"if [ $fname ] ; then "+editor+" $fname;else echo No m... |
6d0f913f826593883266d3491ad2a72821eab68e | a88bc351c907b9f0e662e251314c78a075880265 | /Scilab/Prova 19-06/Ajustes de curvas Trigonométrica.sce | f72b8b3b083c23129bf9fcefb50cf193f7c62e60 | [] | no_license | decospdl/Exercise | 2ff1161f101a892ac511c62e1dce67a07606107a | 14d61a9553aab9af259edc8af504fdaa8568ec8f | refs/heads/master | 2020-05-26T15:22:22.243902 | 2019-06-13T22:55:10 | 2019-06-13T22:55:10 | 188,279,547 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 808 | sce | Ajustes de curvas Trigonométrica.sce | clc;
clear;
close;
x = [1 2 3 4 5 6 7 8 9 10 11]
y = [1.7 2.5 3.8 4.4 4.9 5.2 5.5 5.6 5.8 5.9 6]
n = size(cos(x),'c')
sumX = sum(cos(x),'c')
sumX2 = sum(cos(x)^2,'c')
sumY = sum(y,'c')
sumYX = sum(y.*cos(x),'c')
A = [n sumX; sumX sumX2]
B = [sumY; sumYX]
C = A\B
printf("\n| n sumX | | a0 | | sunY |")
prin... |
979969a0b31ac6473ea07a03bc6b343f855aeeea | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Linear_Algebra_And_Its_Applications_G._Strang_70.zip/Linear_Algebra_And_Its_Applications_G._Strang_70/CH3/EX3.2.2/3_2_2.sci | d772a557cbc06be2960a6f87169bf72cb986cb7f | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 165 | sci | 3_2_2.sci | errcatch(-1,"stop");mode(2);//page 156
;
;
a=[1;1;1];
disp(a,'a=');
P=(a*a')/(a'*a);
disp(P,'Matrix that projects onto a line through a=(1,1,1) is');
//end
exit();
|
7211e3968e3c98ed6c09d45e61e62321757a14a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH5/EX5.2.1/Ex5_2.sce | 451bf706852c38bea8296ff4f14388a5140abe69 | [] | 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 | 598 | sce | Ex5_2.sce | clc
clear
Ma=5400; //in kg/hr
Tfw=42; //in C
P=7.6; //in bar
Mf=670; //in kg/hr
x=0.98; //Dryness Fraction
CV=31000; //kJ/kg
Ms=Ma/Mf;
Hf=175.81; //in kJ/kg
Hfw=Hf;
//Now at 7.6 bar pressure
Hf=711... |
32060932caf371bee929f2c17997ac2a73088e9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH15/EX15.5/example5_sce.sce | 042dea95add9d78bbe97c377c31e954ceed881a8 | [] | 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 | 189 | sce | example5_sce.sce | //chapter 15
//example 15.5
//page 652
printf("\n")
printf("given")
Acl=100;Av=10;
disp(" for Cf=30pF")
GBW=800*10^3;
F2=GBW/Acl
disp(" for Cf=3pF")
GBW=(800*10^3)*Av;
f2=GBW/Acl |
3a24c9a04f904cbc591e4e60750c83bd6b645c97 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH15/EX15.18/15_18.sce | af750a6d580ef4cf646f976a2d5e2d0fd7a1eb2e | [] | 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 | 588 | sce | 15_18.sce | //Problem 15.18: A coil having a resistance of 10 ohms and an inductanc of 125 mH is connected in series with a 60 μF capacitor across a 120 V supply. At what frequency does resonance occur? Find the current flowing at the resonant frequency.
//initializing the variables:
R = 10; // in ohms
C = 60E-6; // in Farad... |
6f2cb33eb1c99c2629e3155a2ad03f531aa10ab9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH2/EX2.29/ex2_29.sce | 1a287aa3a9ad068eb92b942bb66e210889f67614 | [] | 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 | 488 | sce | ex2_29.sce | // Exa 2.29
clc;
clear;
close;
format('v',7)
// Given data
R1 = 10;// in ohm
R2 = 20;// in ohm
R3 = 60;// in ohm
R4 = 30;// in ohm
E1 = 120;// in V
E2 = 60;// in V
R_T = ((R2*R3)/(R2+R3)) + R4+R1;// in ohm
I_T = E1/R_T;// in A
I1 = (R3/(R2+R3))*I_T;// in A
R_T = ( ((R1+R4)*R2)/((R1+R4)+R2) ) + R3;// in o... |
1b403b1881e3fe9c975616191d2005d748b670c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /842/CH10/EX10.12/Example10_12.sce | d549ed9609bd0b9bfb88010aa73e63a32f3c9944 | [] | 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 | 197 | sce | Example10_12.sce | //clear//
//Example10.12:Inverse z tranform:For Finite duration discrete sequence
syms z;
X = [4*z^2 0 2 3*z^-1];
n = -2:1;
for i = 1:length(X)
x(i) = X(i)*(z^n(i));
end
disp(x,'x[n]=')
|
6a231333bef132bad1e4e2dd6fb213ab672ef54f | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /Gesture/SCENARIOS/HumanRegressed.sce | 56e48e68b39dfb54ad1151077714827fee41cf1e | [] | 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 | 2,990 | sce | HumanRegressed.sce | #************************************************************
# Scenario of humanTestEnv
#
# date : Wed Mar 13 13:43:36 2013
#************************************************************
p3d_sel_desc_name P3D_ENV humanTestEnv
p3d_sel_desc_name P3D_ROBOT PR2_ROBOT
p3d_set_robot_steering_method Linear
p3d_set_robot... |
3200d61cd964fc7356a83a2356fe77af96645c3c | 449d555969bfd7befe906877abab098c6e63a0e8 | /27/CH4/EX4.1.1/Example_4_1_1.sce | 7c6e053145acfb26b8642fd73fd0f0478de79fbd | [] | 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,168 | sce | Example_4_1_1.sce | //Example 4.1.1 Page 94
//Non-Linear Dynamics and Chaos, First Indian Edition Print 2007
//Steven H. Strogatz
clear;
clc;
close;
set(gca(),"auto_clear","off") //hold on
//Representing theta by O --> not zero it is alphabet "O"
//Given :- O(dot) = f(O) = sinO.
O1 = 0; //first Fix Point.
O2 = %p... |
91ff55762b1f5bd5afc6103b00201d7174d98bf6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2175/CH16/EX16.25/16_25.sce | 86d80ec251b8dba1c0658189b517da5cd3bba8bf | [] | 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 | 236 | sce | 16_25.sce | clc;
eta=0.8;
F1_2=5.67*10^-8;
T1=533;//K
T2=293;//K
alpha=eta*F1_2*(T1^2+T2^2)*(T1+T2);
A=%pi*0.6*0.9;
Q1=alpha*A*(T1-T2);
alpha=8.8;
A=5;
Q2=alpha*A*(T1-T2);
Q=Q1+Q2;
disp("total heat loss is:");
disp("kW",Q/1000)
|
9260557009dce062a0d5d4f5151a8397dc0b94af | 449d555969bfd7befe906877abab098c6e63a0e8 | /51/CH11/EX11.5/11_5.sce | 7e55bc0d76e1677c9529586300743bcf74306602 | [] | 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 | 865 | sce | 11_5.sce | clc;
clear;
A=1*(10^(-4));//m^2
p1=80;//kPa(abs)
p2=40;//kPa(abs)
p0=101;//kPa(abs)
pcritical=0.528*p0;//kPa(abs)
k=1.4;
//for (a) pth=p1>pcritical
Math1=((((p0/p1)^((k-1)/k))-1)/((k-1)/2))^0.5;//Math=Mach number at throat
//dth/d0=p1/p0; dth=density at throat
dth1=(1.23)*(1/(1+(((k-1)/2)*(Math1^2))))^(1/(k-... |
adffe9790605d581b8d37844abf260c00566f39d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH1/EX1.15/1_15.sce | e98294e4de4914e821edf36539c59c07754e4420 | [] | 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,443 | sce | 1_15.sce | //Determine the current in parallel branches and supply current
clc;
clear;
Xl=%i*100; // Inductance
R=10; // Resistance
V=10;
Xco=-%i*100;
Q=abs(Xl)/R;
Z0=Q*abs(Xco);
I0=V/Z0;
Ic=V/Xco;
Il=V/Xl;
Pi=V*I0; // Power Input
Pc=(I0^2)*10; // Copper Loss
// Frequency reduced to fo/2
Xl1=Xl/2;... |
29f31c720d0bc03e5c8ab0b47ce66a3a43875519 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH14/EX14.4/14_4.sce | d6fe1966676c393c79eee4c365ed24729ec82be0 | [] | 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 | 886 | sce | 14_4.sce | clear;
clc;
L=60*(10^-3);C=0.2*(10^-6);
fc=1/(%pi*(sqrt(L*C)));
printf("(i)Cut off frequency fc for the low pass filter = %f kHz\n\n",round(fc*(10^-1))/100);
fa=1000;
Za=(sqrt(L/C))*(sqrt(1-((fa/fc)^2)));
printf(" (ii)Iterative impedance at f=1 KHz = %f ohms\n",fix(Za));
fb=5000;
Zb=(sqrt(L/C))*(sqrt(1-((fb/fc... |
a50dcf3773bb47d6c66f95231b58908b574f97da | 449d555969bfd7befe906877abab098c6e63a0e8 | /2294/CH7/EX7.3/EX7_3.sce | fa4a6bbe431b6dd5e3cef1499529203bef0daacc | [] | 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 | 367 | sce | EX7_3.sce | //Example 7.3
//Find the laplace transform and Roc of the following signal
clc;
close;
syms t;
a=3;b1=-8;
x1=exp(-a*t);
b=6;c=7;
s=b+c*%i;
X1=integrate((exp(-(a+s)*t)),'t',0,%inf);
x2=exp(-2*t);
X2=integrate((exp(-(b1+s)*t)),'t',-%inf,0);
disp(X1);
disp(X2);
X=X1+X2;disp(X);
disp(real(s));
disp('Since... |
9e33e94cfbddcf2f425fb0ef5acb54dd81210cd2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH10/EX10.33/10_33.sce | f942fc018d3aaeb8e0f72ad2944ab2061c213211 | [] | 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 | 872 | sce | 10_33.sce | //To find dimensions of contact surfaces
clc
//Given:
alpha=30/2 //degrees
pn=0.35 //N/mm^2
P=22.5*1000 //W
N=2000 //rpm
mu=0.15
//Solution:
//Calculating the angular speed of the clutch
omega=2*%pi*N/60 //rad/s
//Calculating the torque transmitted by the clutch
T=P/omega*1000 //N-mm
//Calculating the mean... |
80b92790696cf522e325e7e72ec1371a0c4dbd46 | 72342bddb396436379ab8d246883ac0f21562530 | /SCILAB_2.sce | 9494edc81937a7a8fd1dc951939e495c6563cfff | [] | no_license | Ajain-19/Signals-And-Systems | 1322a94f58f60d22aeab637c7bc427982da3e35b | d45cd46067f29d3ec86b133a61772c1218143144 | refs/heads/main | 2023-01-21T08:05:20.659619 | 2020-11-25T17:56:42 | 2020-11-25T17:56:42 | 316,013,959 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 230 | sce | SCILAB_2.sce | clc;
clear all;
close;
x1=[1,3,7,-2,5];
h=[2,-1,0,3];
y=convol(x1,h);
disp(y,"is the required convolution");
l=length(y);
t=0:l-1;
plot2d3(t,y);
xlabel("n");
ylabel("Amplitude");
title("y(n)=x(n)*h(n)");
figure;
|
7441df21a8577a860c7b3292d5bbd3fe2ca6a869 | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH3/EX3.11.b/Example3_11_b.sce | a7b635d27fd32d24c66ef2a1b2f8877f6675ae54 | [] | 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 | 519 | sce | Example3_11_b.sce | //Example 3.11(b)
clear;
clc;
m=1;//Q is maximised at m=1
n=2;//Order of filter
f0=10*10^(3);
Qnum=(m*n)^(1/2);
Qden=m+1;
Q=Qnum/Qden;
C=1*10^(-9);//Assuming C=1 nF
C2=C;
C1=n*C;
R=1/(Qnum*C*2*%pi*f0);
R2=R;
R1=m*R;
w=4*%pi*10^4;
f=2*10^4;
Hw=1/(1-(w^(2)*R1*R2*C1*C2)+%... |
c0bfbcc9d64a3188425da1cad390cde9e6fcc7f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH25/EX25.16/25Ex16.sce | 6d744157092019d99a3ba5b784d5da3dbd990cc0 | [] | 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 | 205 | sce | 25Ex16.sce | //Ch25_Ex16
clc;
clear;
close;
vol=2.2/1000; //converting into cubic meter
d=0.5/100; //diameter in meter
r=d/2; //radius
h=vol/(%pi*r^2);
mprintf("The length of wire is %.0f meter",h);
|
c1e4cd18b0d2d4e9ae880d3593d4ad03d6728d26 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3556/CH13/EX13.2/Ex13_2.sce | 7ae25556b451aacd1bce4867ba69547929ada499 | [] | 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,198 | sce | Ex13_2.sce | clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 1 : AC Circuits
// Chapter 3: Magnetically Couple Circuits
// Example 13 - 2
clear; clc; close;
//
// Given data
Z11 = complex(4.0000,3.0000);
Z12 = comple... |
bb252a9d58f2b60e71481c8944e01b9170f1c49a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3487/CH2/EX2.1/Ex2_1.sce | 430d19110dcea1d78de5c4a973a5de76cf718b98 | [] | 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 | 787 | sce | Ex2_1.sce | //Chapter 2,Example 2.1 Page 78
clc
clear
//(i) Determine volatge regulation
C = 0.06 // micro farad
I = 1 //mA
f = 150 //Hz
n = 10
V = (1/(f*C))*((2*n^3/3)+(n^2/2))
perc = (V*100)/(2*10*100)
printf (" (ia) Volatge regulation = %f kV \n ",V)
printf (" (ib) percentage volatge regulation = %f \n ",perc)
//(ii) Ripple ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.