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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1d4ef4a0a96056600d4440c6301cb4089a3550c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1802/CH4/EX4.13/Exa4_13.sce | f6be7e8f0b00ae95df2d59af25f7f7a4cbdff051 | [] | 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 | 243 | sce | Exa4_13.sce | //Exa 4.13
clc;
clear;
close;
//Given Data :
format('v',5);
d=300;//in cm(spacing)
r=1;//in cm
epsilon_o=8.854*10^-12;//constnt
C=%pi*epsilon_o/log(d/r);//in Farad per meter
disp(C*30*1000*10^6,"Capacitance for 30 km line(in uF) :"); |
aa479b86a3230f0a58fb2b8ea41b0abad0afe96e | 449d555969bfd7befe906877abab098c6e63a0e8 | /632/CH6/EX6.2/example6_2.sce | 9f310b76998c80a57780fa65fef89e10af91eb8b | [] | 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 | example6_2.sce | //clc()
T1 = 363;//K
T2 = 373;//K
P2s = 101.3;//kPa
J = 2275 * 18;//kJ/kmol
R = 8.314;//kJ/kmolK
//ln (P2s/P1s) = J * (1/T1 - 1/T2) / R
P1s = P2s/exp(J * (1/T1 - 1/T2) / R);
disp("kPa",P1s,"Vapour pressure of water at 363 K = ") |
c2f98d2464f5e4b0868d781e9c3441475e3fe6c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH3/EX3.14/Example_3_14.sce | 10e60c42cf8e3915f36426b5bdfe65486ba4e23b | [] | 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 | Example_3_14.sce | //Example 3.14 A A simple random sample of size is 5
clc;
clear;
n=5;
N=41;
s_d=6.25;
disp(s_d,"Standard Deviation",N,"Total Units",n,"Drawn sample of size is ");
disp((s_d/sqrt(n))*(sqrt((N-n)/(N-1))),"Standard error is " );
|
bdb32aea0411d6639f04168072ab7d2ac2cf8cee | 449d555969bfd7befe906877abab098c6e63a0e8 | /3835/CH2/EX2.28/Ex2_28.sce | d924f7ab67aad4c2856bbe17fb78cc395fcb9204 | [] | 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 | 204 | sce | Ex2_28.sce | clear
//
//req=[10+2+(5||15)]=15.75
//case a
c=0.4
req=15.75
s=-1/(c*req)
printf("\n natural frequency= %0.1f secinverse",s)
//case b
tc=req*0.4 //time constant
printf("\n time constant= %0.1f sec",tc)
|
338b66f6cc3813226e153b66076815e4949f04df | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH5/EX5.1/Ex5_1.sce | afebeb260dfc0e3076da3db398e8068bdb1f4e99 | [] | 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 | 525 | sce | Ex5_1.sce | clc;
//page no 147
//prob no. 5.1
// refer fig 5.7
//The capacitance in pF
C1=200;
C2=2400;
C3=8;
t=1/C1+1/C2+1/C3; //temperary variable
Ceq=1/t;//pF
Ceq=Ceq*10^-12;//In Farad
L=2*10^-6;//In H
f0=1/(2*%pi*sqrt(L*Ceq))*10^-6; // IN MHz
disp('MHz',f0,'(a) The oscillation frequency is');
f0=1/(2*%pi*sqrt(L*... |
71917aa070fe39c57f5a152a34c1a95433dbbe6b | 28a8d47c4d79b231f8bebc28925792a290f67e9f | /db/others/prototype/test_load.tst | 148f1e3b0ca0914a4bf4a03f072e4bfecc926899 | [] | no_license | ZVlad1980/doo | a1fe7d18ccfd0acf6ced7dbb33927c86a925aae8 | e81be8f524b78b9a6ec06b7f83a8c13354fc6412 | refs/heads/master | 2021-08-17T02:03:54.553822 | 2017-11-20T17:21:03 | 2017-11-20T17:21:03 | 111,440,129 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,764 | tst | test_load.tst | PL/SQL Developer Test script 3.0
234
-- Created on 31.07.2014 by ZHURAVOV_VB
declare
-- Local variables here
i integer;
cc xxdoo.xxdoo_cntr_contractors_typ := xxdoo.xxdoo_cntr_contractors_typ();
xx xmltype;
l_cursor sys_refcursor;
l_entity_id number;
--l_object anydata;
--FULL
/*
x xmltype := x... |
3f6cfee750f395cae47a5070342a1a0d9d9271f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH10/EX10.8/Ex10_8.sce | 4186357d39ff5a335282ea552fc109fbafc1929c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 489 | sce | Ex10_8.sce | //Ex10_8
clc
BW = 500*10^3//bandwidth
A = 200//gain of amplifier
BWf = 2*10^6//bandwidth with negative feedback
disp("B.W = "+string(BW)+"HZ")
disp("A = "+string(A))
disp("(B.W)f = "+string(BWf)+"Hz")
beta = ((BWf/BW)-1)/A//feedback ratio
disp("beta = ((B.W)f/B.W - 1)/A = "+string(beta))
disp("beta = "+string... |
de5c0218f36bebc0f02858afe186486ef5c08ad6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3753/CH1/EX1.4/Ex1_4.sce | 32e33a179dee0479e8155072f36ae3599d469554 | [] | 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 | 259 | sce | Ex1_4.sce | //Example number 1.4, Page number 1.36
clc;clear;close
//Variable declaration
lamda=5893*10**-10 //Angstroms to mts
x=4*10**-2 // unitless
Beta=1*10**-3 // unitless
//Calculation
t=(lamda*x)/(2*Beta)
//Result
printf("t=%0.3f micron",(t*10**6))
|
c9adec6de7ba1edf4f30a36846172c1c325a5077 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH3/EX3.10/Ex3_10.sce | 60fb57b4da933bc7b2b38c6d0bd6145733624ec4 | [] | 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 | 493 | sce | Ex3_10.sce | clear;
clc;
//Example 3.10
Rb=0.24;
Vcc=12;
Vbe=0.7;
Vce=0.1;
b=75;
Rc=5;//Ohm
//for Vt=0 ,transistor is cut off,Ib=Ic=0,Vo=Vcc=12 V,power dissipation is zero
Vt=12;//(V)
Ib=(Vt-Vbe)/Rb;
printf('\nbase current=%0.3f mA\n',Ib)
Ic=(Vcc-Vce)/Rc;
printf('\ncollector current=%0.2f A\n',Ic)
Ib=0.0471;//A
x=Ic... |
e50c64fa2bdfc914d1bdad5385da9bce92e8c4bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1835/CH8/EX8.4/Ex8_4.sce | 69e41ed5db8525c1167dbe5ab29267474cbb4271 | [] | 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 | 653 | sce | Ex8_4.sce | //CHAPTER 8 ILLUSRTATION 4 PAGE NO 225
//TITLE:BALANCING OF ROTATING MASSES
pi=3.141
clc
clear
mB=30// mass of B in kg
mC=50// mass of C in kg
mD=40// mass of D in kg
rA=18// radius of A in cm
rB=24// radius of B in cm
rC=12// radius of C in cm
rD=15// radius of D in... |
da62170e2e26b529dbb1c623880e5cd2d755ea8d | 276dd1422a7890d6657101fcc9cbccc4ae7e8ce4 | /tags/2010/branches/capstone/php/knights/legacytests/test0.tst | a9c84562e5c84668656e866ae7ffb78dbd0a7f88 | [] | no_license | valdas/knit | 4a0adef8bfe426506e55ffcc3a297dfa4dc2e903 | ccbdf3c975061ba0875e881e2f94c8432d7a16cb | refs/heads/master | 2021-01-10T02:08:06.358327 | 2012-01-16T17:05:01 | 2012-01-16T17:05:01 | 43,171,119 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 419 | tst | test0.tst | <?php
include ('knights.php');
$board=array(array(0,0,0,0,0,0,0,0,),
array(0,0,0,0,0,0,0,0,),
array(0,0,0,0,0,0,0,0,),
array(0,0,0,0,0,0,0,0,),
array(0,0,0,0,0,0,0,0,),
array(0,0,0,0,0,0,0,0,),
array(0,0,0,0... |
b62292fc73e4e8eabc9b488ba31557c2da3e7412 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3774/CH4/EX4.10/Ex4_10.sce | d5f0fb62dc9c4198d883703a3f1e72ea0348b3be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 718 | sce | Ex4_10.sce | // exa 4.10 Pg 116
clc;clear;close;
// Given Data
Sut=600;//MPa
Se=280;//MPa
sigma_x_min=50;// MPa
sigma_x_max=100;// MPa
sigma_y_min=20;// MPa
sigma_y_max=70;// MPa
sigma_xm=(sigma_x_max+sigma_x_min)/2;// MPa
sigma_xa=(sigma_x_max-sigma_x_min)/2;// MPa
sigma_ym=(sigma_y_max+sigma_y_min)/2;// MPa
sigma_ya=(sigma_y_ma... |
df1ec471217b3a949d111b0793d7b368cfbed141 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1673/CH3/EX3.8/3_8.sce | 0cc288dfa604840cf898b8ffdf5cfa839d10f756 | [] | 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,329 | sce | 3_8.sce | //example 3.8
//interpolation
//page 89
clc;clear;close;
x=[0.10 0.15 0.20 0.25 0.30];
y=[0.1003 0.1511 0.2027 0.2553 0.3093];
h=0.05//interval between values of x
c=1;
for i=1:4
d1(c)=y(i+1)-y(i);
c=c+1;
end
c=1;
for i=1:3
d2(c)=d1(i+1)-d1(i);
c=c+1
end
c=1;
for i=1:2
d3(c)=d2(i+... |
c3745157e594832e65e29e3eef01fd3961decff9 | e9d5f5cf984c905c31f197577d633705e835780a | /GED/linear/scilab/functions/pmgei_method/problems/ged_P1_sim_pmgei.sce | c2002882a836ab8e6a34d21c6f2c4acab45f938d | [] | no_license | faiz-hub/dr-ged-benchmarks | 1ad57a69ed90fe7595c006efdc262d703e22d6c0 | 98b250db9e9f09d42b3413551ce7a346dd99400c | refs/heads/master | 2021-05-18T23:12:18.631904 | 2020-03-30T21:12:16 | 2020-03-30T21:12:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,703 | sce | ged_P1_sim_pmgei.sce | // Data Reconciliation Benchmark and GED Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
//Rao, R Ramesh, and Shankar Narasimhan. 1996.
//“Comparison of Techniques for Data Reconciliation of Multicomponent Processes.�
//Industri... |
7bd75a0efda84a6e14e80bcdbea758cffc93c708 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH15/EX15.23/15_23.sce | 0ba84a0c2faa0545b8380801214f3548e52334e6 | [] | 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 | 461 | sce | 15_23.sce | //Problem 15.23: A filter in the form of a series L–R–C circuit is designed to operate at a resonant frequency of 5 kHz. Included within the filter is a 20 mH inductance and 10 ohm resistance. Determine the bandwidth of the filter.
//initializing the variables:
L = 20E-3; // in Henry
R = 10; // in ohms
fr = 5000... |
bae7a9241d20b39d2495dd126435ce1211540ebb | fdc5047b7bf8122bad1e621df236b0481226c36e | /virtualHartSci/macros/hrtVirtual.sci | 7bf834635180ee28bc0d0f5c363898caf7f1ca87 | [] | no_license | jpbevila/virtualHartSci | aea3c6ba23d054670eb193f441ea7de982b531cc | a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5 | refs/heads/main | 2023-07-26T23:05:28.044194 | 2021-09-09T11:50:59 | 2021-09-09T11:50:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,576 | sci | hrtVirtual.sci | function hrtVirtual()
// Construção Gráfica
global main_fig configTrms selectedSheet %VirtualHartPath
path = getlongpathname(%VirtualHartPath)+'images\configHart.xls';
[_,sheetsName,_] = xlinfo(path);
selectedSheet = 1;
dimensaoTela = get(0, "screensize_px");
main_fig = figure('layout', 'gri... |
b88a3c69398bf819150b03448b4c442151ab4ead | 449d555969bfd7befe906877abab098c6e63a0e8 | /2507/CH5/EX5.8/Ex5_8.sce | dd8510634b1bfe23fb23070ff2c20d05aa3a8db3 | [] | 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 | 632 | sce | Ex5_8.sce | clc
clear
printf("Example 5.8 | Page number 129 \n\n");
//Redo example 5.7 for heat loss 10% of heat transferred
mh = 9.45 // kg/s // flow rate of steam
h_h2 = 140 // kJ/kg // enthalpy of condensate
h_h1 = 2570 // kJ/kg // inlet enthalpy of steam
t1 = 25 // °C //inlet temperature of cooling water
t2 = 36 // °C ... |
5e119ec1b5f89d725be163c9deb4f75c624b8755 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH3/EX3.4/exa_3_4.sce | 95cb543810beffcd7b2bcaa337ccb113cc4e9475 | [] | 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 | 485 | sce | exa_3_4.sce | // Exa 3.4
clc;
clear;
close;
//given data
R1=1;// in k ohm
R1=R1*10^3;// in ohm
R_f=10;// in k ohm
R_f=R_f*10^3;// in ohm
A=200000;
OutputVoltageSwing= 13;// in volt
SupplyVoltage=15;// in volt
Ri= 2;// in M ohm
Ri=Ri*10^6;// in ohm
Ro= 75;// in ohm
fo= 5;// in Hz
B= R1/(R1+R_f);
AB = A*B;
R_outf= R... |
fd2e95501ca8ae54c14635c5da294aba7958aaa3 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set12/s_Higher_Engineering_Mathematics_B._S._Grewal_149.zip/Higher_Engineering_Mathematics_B._S._Grewal_149/CH23/EX23.6/ex6.sce | 32310287d981b0371072bee2c5e877b573d27869 | [] | 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 | 185 | sce | ex6.sce | errcatch(-1,"stop");mode(2);
syms s;
disp('let the eqidistance be s,then')
t1=s/30
t2=s/40
t3=s/50
disp('average speed=total distance/total time taken')
3*s/(t1+t2+t3)
exit();
|
b138f1120a904e8e1d255dcc864f69d41c094abb | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3913/CH1/EX1.3/Ex1_3.sce | c4a2691366a1acc226876543687237ec21627034 | [] | no_license | psinalkar1988/Scilab-TBC-Uploads-1 | 159b750ddf97aad1119598b124c8ea6508966e40 | ae4c2ff8cbc3acc5033a9904425bc362472e09a3 | refs/heads/master | 2021-09-25T22:44:08.781062 | 2018-10-26T06:57:45 | 2018-10-26T06:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 265 | sce | Ex1_3.sce | //Chapter 1 : The Algebra of Matrices
//Example 1.5
//Scilab 6.0.1
//Windows 10
clear;
clc;
A=[0 1;0 0];
B=[1 0;0 0];
AB=A*B
BA=B*A
disp(AB,'AB=')
disp(BA,'BA=')
mprintf('\nWe thus observe that in general matrix multiplication is not commutative')
|
8a49ee58e10a621e7e96ddacaf9b38c5f4f776e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3257/CH6/EX6.7/Ex6_7.sce | e2584e30da94e3e5765cae870f51edc169b60ea4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 618 | sce | Ex6_7.sce | // Power required for rolling
clc
t1 = 6 // initial thickness in mm
t2 = 3 // final thickness in mm
v = 0.6 // velocity in m/s
x = 0.35 // fractional difference between values
K = 895 // in MPa
n = 0.49 // from table
printf("\n Example 6.7")
epsilon = log(t1/t2)
Y_bar = K*epsilon^n/(1+n)
Af = %pi/4*(t2*1... |
19089b07e5016d0acbf48a38193e8864aced187b | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/AT15JVL/ATWM1_Working_Memory_MEG_AT15JVL_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce | 432eb3942b80676cb2d49d8ae019ad6a9ae2ff7d | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,615 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monito... |
593c07e0953589505a96ecee545d9a7787c4d4da | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH10/EX10.6/Ex10_6.sce | fd81492a1c891985d43e2acf3247e7529ada9df6 | [] | 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,192 | sce | Ex10_6.sce | clc;
clear;
Nd=10^15 //donor atoms in cm^-3
ni=1.45*10^10 //in cm^-3
k=8.62*10^-5 //in eV/K
T=300 //in K
Const=0.025 //coonstant for kT in eV
//Calculation
//a)
n=10^15 //in cm^-3
p=ni^2/Nd //in cm^-3
delE=Const*log(n/ni) //in eV
//b)
n0=10^15 //in cm^-3
p0=10^12 //in cm^-3
delE_fni=Const*log(n0/ni) ... |
70eceedfb2ad1c386d437b5b14af9447b8da2a4b | 881e0bcc7118244a24f736786ac36140acfb885e | /yeast/results/GAssist-ADI-C.yeast-3/result10s0.tst | ec842f69867b8d70fb6ce01d72d06b007da7c141 | [] | no_license | woshahua/Experiment_File | 3e34e5a4a622d6d260fbdf8d5ef2711712aad9bc | 6a139cd3f779373799cb926ba90d978235b0de0d | refs/heads/master | 2021-01-01T06:57:13.285197 | 2017-07-28T08:17:38 | 2017-07-28T08:17:38 | 97,557,409 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,593 | tst | result10s0.tst | @relation yeast-3
@attribute Mcg real [0.11, 1.0]
@attribute Gvh real [0.13, 1.0]
@attribute Alm real [0.21, 1.0]
@attribute Mit real [0.0, 1.0]
@attribute Erl real [0.5, 1.0]
@attribute Pox real [0.0, 0.83]
@attribute Vac real [0.0, 0.73]
@attribute Nuc real [0.0, 1.0]
@attribute Class {MIT, NUC, CYT, ME1, ME2, ME3, E... |
79b293e27bf5bd6bf6877014bb5a8783ca8e692a | 449d555969bfd7befe906877abab098c6e63a0e8 | /728/CH6/EX6.9/Ex6_9.txt | 05db74208872c492a13bac5f2177d2e127687a9b | [] | 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 | txt | Ex6_9.txt | //Caption:Calculate the scattering matrix.
//Exa:6.9
clc;
clear;
close;
VSWR=1;
In_loss=0.5;//in dB
S_21=10^(-In_loss/20);
Isolation=20;//in dB
S_12=10^(-Isolation/20);
S_23=S_12;
S_31=S_12;
S_32=S_21;
S_13=S_21;
p=(VSWR-1)/(VSWR+1);
S_11=p;
S_22=p;
S_33=p;
S=[S_11,S_12,S_13;S_21,S_22,S_23;S_31,S_32,S... |
f53b40821594a7f8959681d1b068ec49c679e298 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1046/CH5/EX5.5/5_5.sce | 5da60ecd3a8cfbcad12ed3759e4b5e3977627b9d | [] | 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,673 | sce | 5_5.sce | //Example 5.5
//Calculate , what thickness of insulation should be used
//so that the insulation skin temp. does not exceed 65 C
//Given
Ts=65 //C, skin temp.
To=30 //C, ambient temp.
Tw=460 //C, wall temp.
Tf=(Ts+To)/2 //C,mean a... |
0b810dc33abab45441bdaf5ec3229dede79d663d | 1b3c63cb7f854378c5f1991637692ae2bf8265ac | /lqrd/lqrd.sci | 9573cfb4bdb6040e18debd7137ad5689fb1ffe2e | [] | no_license | FOSSEE-Internship/FOSSEE-Control-Systems-Toolbox | 9900107267e5f508f77858d128e01293966e9e10 | 2878a38e4e55806b1777f9da2e0395f321e1c952 | refs/heads/master | 2020-12-02T18:20:34.659219 | 2017-10-26T12:26:57 | 2017-10-26T12:26:57 | 96,516,803 | 0 | 1 | null | 2017-10-26T13:44:56 | 2017-07-07T08:24:44 | Scilab | UTF-8 | Scilab | false | false | 4,241 | sci | lqrd.sci | function [Kd,Xd]=lqrd(A,B,Q,R,N,ts)
//discrete linear-quadratic (LQ) regulator for continuous plant
//
//Calling Seqence
//[Kd,Xd]=lqrd(A,B,Q,R,ts)
//[Kd,Xd]=lqrd(A,B,Q,R,N,ts)
//
//Parameters
//A,B: continuous plant state spaces
//Q : real symmetric matrix,with same dimensi... |
37203bc1d4c1702406d83c374912b61c654a7ef9 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testreturnfunction.sce | ecaf382927de92280a4191d661fc0c747b6ad65f | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 125 | sce | testreturnfunction.sce | function y=foo(x)
z=1+x^2
return z
endfunction
clear y // no y variable
foo(0) // the execution isn't successful
|
27de5cc7260623b9c4603ddcb3ef70352c9d8e8c | 28a8d47c4d79b231f8bebc28925792a290f67e9f | /db/others/prototype.tst | b45ab2295eba18102807effee3c9171a25982667 | [] | no_license | ZVlad1980/doo | a1fe7d18ccfd0acf6ced7dbb33927c86a925aae8 | e81be8f524b78b9a6ec06b7f83a8c13354fc6412 | refs/heads/master | 2021-08-17T02:03:54.553822 | 2017-11-20T17:21:03 | 2017-11-20T17:21:03 | 111,440,129 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,036 | tst | prototype.tst | PL/SQL Developer Test script 3.0
28
-- Created on 16.06.2014 by ZHURAVOV_VB
declare
-- Local variables here
db xxweb_db := xxweb_db(p_dev_code => 'xxweb_test');
l_result xmltype;
begin
-- Test statements here
db.add_table(name => 'contractor_site',
pk => 'id',
fields => d... |
19e032aea1ccdad3a69b05c159e0793e12360fe8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /998/CH29/EX29.106/Ex106.sce | 9b00faa81c775b97b84b60547806abd52295a138 | [] | 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 | 469 | sce | Ex106.sce | //Ex:106
clc;
clear;
close;
R_e=6378;//in km
H=35786;// in km
l=R_e/(R_e+H);
m=asin(l);// in rad
a=m*180/3.14;// in degree
x=90-8.7;// in degree
o_c=R_e*sin(a*3.14/180);// dis OC in the given triangle AOC IN KM
h=R_e-o_c;//in km
E=10;// in degree
y=90-a-E;// in degree
O_C=R_e*sin(18.56*3.14/180);
O_C1=ce... |
1477c38b54308cf74a9604eb3591e8ccf7f58b5a | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/fsolve.man.tst | 0dab646285183cc72df2f59715a09e03bece95e1 | [
"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 | 316 | tst | fsolve.man.tst | clear;lines(0);
// A simple example with fsolve
a=[1,7;2,8];b=[10;11];
deff('[y]=fsol1(x)','y=a*x+b');
deff('[y]=fsolj1(x)','y=a');
[xres]=fsolve([100;100],fsol1);
a*xres+b
[xres]=fsolve([100;100],fsol1,fsolj1);
a*xres+b
// See routines/default/Ex-fsolve.f
[xres]=fsolve([100;100],'fsol1','fsolj1',1.e-7);
a*xres+b
|
7ff18f38192a49c5714885b87eba1435ab321ff0 | 9e4dc9fe81d942827b76fd4e08ad5c3851e9c3c3 | /SciLab/paretotest_new.sce | a78c62ded12acdbb304a7866e404a5d5ec6017ce | [] | no_license | wargile/Mathematics | 332d1011f205d75326b81c46d0fe9d45f921967a | 6461da1b45ca80431a9105f01373e6ecd0e0f5db | refs/heads/master | 2021-01-17T22:55:19.074519 | 2015-08-02T20:22:44 | 2015-08-02T20:22:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,801 | sce | paretotest_new.sce | function h = paretotest_new(varargin)
//PARETOTEST_NEW Creates a Pareto diagram in Terje's style.
//
// A Pareto chart, named after Vilfredo Pareto, is a type of
// chart which contains both bars and a line graph, that
// displays the values in descending order as bars and the
// cumulative totals of each categ... |
46d00e9a8fee88293ccfc988959bbdb2bd7460e2 | fa428f297a915e9a041597642bfe29627ab69c42 | /app/views/account/account.sce | e4665f155020270f13c4e57b5a6f59c2d5c8ad42 | [] | no_license | TheBrenny/Web-Dev-and-Security | dff903be92838b14f7126dd1f7092922b86bf2cc | e4abb96dc24e606704b09f5acdd2684d6d5d577d | refs/heads/main | 2023-06-17T08:33:35.176024 | 2021-06-15T05:07:20 | 2021-06-15T05:07:20 | 343,603,444 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,325 | sce | account.sce | [[i= partials/header ]]
[[i= partials/navbar ]]
<div class="container center">
<div class="flex row userDetails">
<h2>[[account.users_username]]</h2>
#[[account.users_id]]/[[account.activeLetter]]
[[?= canEdit ]]
<a href="/account/[[account.users_id]]/edit" class="btn bl... |
05962635bc9f42f90c498743e05c2bb84a556a5f | c94449dd9c9b825a7cf2546f8ad4e61f4395e8a3 | /CircleFitting/LMA.sce | 2e070a9efeb9f04dfd9a71ae2b717dbf564b835c | [] | no_license | AniruddhaAnant/gaussNewtonLM | 7850e1d6240540bab951cc79a659bddb318078d5 | 79c90498482091af0ffed5392b5c30f40bfd7916 | refs/heads/master | 2023-07-06T02:46:38.080008 | 2021-08-08T08:36:23 | 2021-08-08T08:36:23 | 392,975,993 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,424 | sce | LMA.sce | clear all;
clc;
disp('Problem statement: Fit y= a*(1-exp(-b*x)) following data using LMA with a and b as parameters. x 0.25 0.75 1.25 1.75 2.25 y 0.28 0.57 0.68 0.74 0.79');
disp('Use value of damping factor (when asked) as zero for Gauss Newton algorithm') ;
//Enter your function as y= f(x, [parameters])
functio... |
f37025287187f2de280f0d3f4f9399bf822816da | c79936a1c2119adaa5f519e29d228884169b662e | /22ww.tst | 22ede734539a5b244811bcc822e1b9071eb2b45c | [] | no_license | kiss96803/PullLoadMoreSpider | 053c115e4d0a8d7d31c6b11287b49066bee4eeeb | 209d8cd515901ec13f64e2a5ccc4209782367389 | refs/heads/master | 2021-01-18T16:11:32.653415 | 2017-04-23T17:29:25 | 2017-04-23T17:29:25 | 86,724,531 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,267 | tst | 22ww.tst |
<!DOCTYPE html>
<html>
<head>
<title>Close</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link href="resources/css/jquery-ui-themes.css" type="text/css" ... |
eae70720f468a5b6e95699d03b78b767b1948634 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2519/CH20/EX20.2/Ex20_2.sce | aa20faa257bc220c48835a6e85f93167beb0dbd3 | [] | 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 | 912 | sce | Ex20_2.sce | clc
clear
//Initialization of variables
d1=1 //in
l=1 //ft
r=0.5 //ft
L=0.5 //in
Ts=430 //F
Ta=170 //F
del=0.0125 //ft
h=10 //Btu/hr ft^2 F
eta=0.77
eta2=0.94
n=60 //fins
thick=0.025 //in
k2=132 //Btu/hr ft F
//calculations
Q=h*%pi*d1^2 *(Ts-Ta)/12
rate=(r+L)/r
k=26 //Btu/hr ft F
Lt=L/12 *(h*12/(k*d... |
bb457c1b3d83f3616ffac3fdf58f0d1afad5002d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH11/EX11.10/EX11_10.sce | 438641b139725c0ba3907b1b56ade324a90b9bdf | [] | 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,696 | sce | EX11_10.sce | clc;funcprot(0);//EXAMPLE 11.10
// Initialisation of Variables
d=0.11;..................//Engine bore in m
l=0.11;..................//Engine length in m
da=0.042;................//Throat diameter of the choke tube in m
N=3000;..................//Engine rpm
etaV=0.75;...............//Volumetric efficiency
Ra=287;... |
310774b73edcf51f70c5d38723fcfe4fd7a1cbe8 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /1-OwGenWarmup.sce | 2b60f5a016ba0fd63eebe8118f4beedec0e1bfd0 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 68,720 | sce | 1-OwGenWarmup.sce | Name=1-OwGenWarmup
PlayerCharacters=OWPlayer
BotCharacters=OWBOTC.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=OWPlayer
AddedBots=OWBOTC.bot;OWBOTC.bot;OWBOTC.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=boxer.map
MapScale=1.9
BlockProjectilePredictors=true
BlockCheats=t... |
a24866d963c99a69ef0075c45a4abb69ee8cc895 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH20/EX20.3/EX20_3.sce | 31840764a0ba7a5baddbcdbd8ff0559b6b7cfc26 | [] | 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 | 241 | sce | EX20_3.sce | //Finding of Pressure Head
//Given
D=0.15;
L=0.3;
hs=4;
N=40;
l=5;
ds=0.1;
p=10.3;
g=9.81;
//To Find
A=(%pi/4)*D^2;
a=(%pi/4)*(ds)^2;
r=L/2;
Z=(2*%pi*N)/60;
ha=(l/g)*(A/a)*r*Z^2;
disp("Pressure Head ="+string(ha)+" meter");
|
0811689d5c7a491708b5bb90ca0bd9f6b248ad95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /73/CH11/EX11.4/Example11_4.sci | 1199f670b0f5d2ced9ca3b699e96b43a81de1606 | [] | 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 | 374 | sci | Example11_4.sci | //Chapter 11_Nonlinear Circuit Application
//Caption :Time taken
//Example11.4: b)Type 741 Op-amp is used as a comparator and its slew rate is 0.5V/us.How long will it change from +10 V to -10v?
//b)Solution:
clear;
clc;
deltaVo=10-(-10);
SlewRate=0.5*10^-6;
t=deltaVo/SlewRate;
disp('us',t/10^6,'time taken by ... |
21674fd347cf313b944bd9960f7ff38946f58417 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH8/EX8.4/Ch08Ex4.sce | d715f93781d52d164a0e7e5ebc00fd18e7f96570 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 521 | sce | Ch08Ex4.sce | // Scilab code Ex8.4: Pg 270 (2005)
clc; clear;
R = 1.00; // Radius of circle, m
T = 1.00; // Time period of revolution, s
v = (2*%pi*R)/T; // Speed of stone in its orbit, m/s
m = 1.00; // Mass of stone, kg
L = m*v*R; // Angular momentum of stone, kg-m^2/s
h_cross = 1.055e-34; // Reduced Pla... |
b3aac013ee9dc549d83570fb00807536335af3c0 | 5cefafafa516d374fd600caa54956a1de7e4ce7d | /oasis_health_check/scripts/oasis_health_check.tst | a2f4fe8947e40d4dc31f95dc24a2c8ca3a136352 | [] | no_license | TrellixVulnTeam/demo_L223 | 18c641c1d842c5c6a47e949595b5f507daa4aa55 | 87c9ece01ebdd918343ff0c119e9c462ad069a81 | refs/heads/master | 2023-03-16T00:32:08.023444 | 2019-04-08T15:46:48 | 2019-04-08T15:46:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 339 | tst | oasis_health_check.tst | PL/SQL Developer Test script 3.0
7
begin
-- Call the procedure
oasis_health_check_main.main(null, null, TRUE);
--oasis_health_check_main.main('OUTPUT', null, TRUE);
--oasis_health_check_main.main('CIS', null, FALSE);
--oasis_health_check_main.main('OUTPUT', 'athi.muthukumarasamy@delphi-tech.com', FALSE... |
a12cc82e6ca01173318f61d4dde89a5e659fa446 | 449d555969bfd7befe906877abab098c6e63a0e8 | /74/CH8/EX8.6/example6_sce.sce | 2448aad01fc3061073f144ea74d58a9e72faacf6 | [] | 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 | 150 | sce | example6_sce.sce | //chapter 8
//example 8.6
//page 302
T=5*10^-3;
C=.1*10^-6;
//T=1.1RC
R=T/(1.1*C);
disp(R)//value of R should be less than 100k as obtain above |
f05230cc564b92d497f2d99eac120b1f5bb1b5e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH9/EX9.13/ex9_13.sce | e132787a90a47072e5e142c28ab0ed66e8e71d96 | [] | 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 | 299 | sce | ex9_13.sce | clc;
mw=5; //mass of water in kg
c=1; //specific heat of water in kcal/(kg.degree celcius)
delT=40; //change in temp in celcius
Lf=80; //Latent heat of Fusion in kcal/kg
mice=(mw*c*delT)/Lf; //calculating mass of ice in kg
disp(mice,"Mass of Ice in kg = "); //displaying result. |
66b71bdcea9845d789faa817f22427356129da04 | 518b77b4f75f1e023ec173d2cfa465812d9ffa2b | /dpskdemod/dpskdemod.sci | e18c58b9bb57ad3eb5407b5ba6b26b5599a9acfb | [] | no_license | senthilkumarIRTT/Scilab-communication-toolbox | 94fd7d1ad7408805817bb22a37a8e8eef135733b | b1bfd518daf8496f3a2c056d4dd996de327e1acc | refs/heads/master | 2021-01-10T20:30:24.937033 | 2015-12-20T00:17:31 | 2015-12-20T00:17:31 | 41,198,649 | 0 | 0 | null | 2015-08-22T10:01:31 | 2015-08-22T08:40:51 | null | UTF-8 | Scilab | false | false | 2,988 | sci | dpskdemod.sci | function z = dpskdemod(y,M,varargin)
// DPSKDEMOD Differential phase shift keying demodulation.
// Z = DPSKDEMOD(Y,M) demodulates the complex envelope Y of a DPSK
// modulated signal. M is the alphabet size and must be an integer. For
// two-dimensional signals, the function treats each column as 1 channel.
// Z =... |
3d99f985783ce7dac0f0d3125421891115d1aac1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2276/CH3/EX3.20/chapter3_ex20.sce | b463225bd1cb515d372955a0d4e0dec04b5e3c3c | [] | 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 | 594 | sce | chapter3_ex20.sce | clc
clear
//input
rm=0.5;//resistance of a series motor in ohms
w=100;//velocity in rad/sec
i=25;//current taken by the motor in amperes
v=250;//supply voltage in volts
r=2.5;//resistance connected in series with armature in ohms
//calculations
//armature current remains constant
E1=v-(i*rm);//e.m.f. indu... |
cd9368f27a90538e4eeab9cd19f8db7cfa8fbdc9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /14/CH5/EX5.1/example_5_1.sce | 8cb8afda41231ec477ad5bd2a7c7f6a086463743 | [] | 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,618 | sce | example_5_1.sce | //Chapter 5
//Example 5.1
//Page 101
//Velocity
clear;clc;
//Given
D_12 = 23.8 ; D_23 = 23.8 ; D_31 = 47.6 ;//in ft
l = 230 ; //in mi
f = 60 ; //in Hz
P = 125e6 ; //in W
V = 215e3 ; //in V
D_eq = (D_12 * D_23 * D_31)^(1/3);
//From Table A.1 and A.2 for 30ft Rook
//z = R + i(Xa + Xd)
z = 0.1603 + %i * (0.415+0.4127);... |
c7c9a5c73cda6a979d0d4570d1a4e345810cb7e0 | a76fc4b155b155bb59a14a82b5939a30a9f74eca | /ProjetTomEval/NewTomeval/doc/TestProtoCarat/Analyse offre élargie-offre restreinte sur des plans de test pou/corporate ch nat.tst | 4da32d9db73da8d3fbf11b66e171b66c4f8231af | [] | no_license | isliulin/JFC-Tools | aade33337153d7cc1b5cfcd33744d89fe2d56b79 | 98b715b78ae5c01472ef595b1faa5531f356e794 | refs/heads/master | 2023-06-01T12:10:51.383944 | 2021-06-17T14:41:07 | 2021-06-17T14:41:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,468 | tst | corporate ch nat.tst | Plan Carat 1
22
101
15,3,7
1
1
0
MEDIADATA:BA01
MEDIACABSAT:C102
C:\diamant\QUARTZ
9210000
1
1
2,1957,32,1,0,5.20,16/02/2002,1
3,1320,32,1,0,0.60,16/02/2002,1
4,1330,32,1,0,2.80,16/02/2002,1
1,2141,64,1,0,15.80,17/02/2002,1
1,2320,64,1,0,5.00,17/02/2002,1
4,1330,64,1,0,6.60,17/02/2002,1
5,1202,64,1,0,0.80,17/02/2002... |
d82c800d0f76e39abef998e500a5b22037eec037 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1004/CH12/EX12.10/Ch12Ex10.sci | 54e6c83146d0d4413c29e151df912cd36c7db7ae | [] | 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 | 599 | sci | Ch12Ex10.sci | // Scilab Code Ex12.10 Rate of fission of U-235 : Pg: 249 (2008)
N = 6.023e+026; // Avogadro's number, No. of atoms per kg
e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
P = 1; // Average power generation, J/s
U = P*365*24*60*60; // Energy required in one year, J
U1 = 200e+06*e; // Energy produced... |
73846a45a911d833ee67ed164b02eb1e219da29a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH1/EX1.a.13/Example_a_1_13.sce | edae37750558ff7af7a3935f920adeefb1d9a125 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 184 | sce | Example_a_1_13.sce | //Example 1_13 page no:30
clc;
I1=10;
I2=15'
R1=20;
R2=10;
R3=5;
V=(I1+I2)/((1/20)+(1/10)+(1/5));//voltage calculation
disp(V,"the voltage across 10 ohm resistor is (in V)");
|
a23584b51eed273b157b0b213ff9f8a18cd112eb | cb4644f33db23e71551bd1eb5daff551d74ea5f3 | /code/S3.sce | 9958bda4bc720baedb61b5d31d7d24ccadd6c2a4 | [
"MIT"
] | permissive | aghriss/PoissonMAPX | 803078eba75374ed52e134f277df2946528ed1aa | 61a828a01e92815ac1ec64a647e508cab0ab58f9 | refs/heads/master | 2020-04-24T17:28:25.996952 | 2019-02-22T23:35:03 | 2019-02-22T23:35:03 | 172,148,560 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 820 | sce | S3.sce | t=3
lambda = 3
x0 = 1
p=1000
Nt= grand(1,1,"poi",lambda*t) // génère une valeur de Nt suivant la loi de Poisson
U=grand(Nt,1,"unf",0,t) // génère Nt variables de loi uniforme sur [0,t]
U=gsort(U,"g","i") // vecteur de statistiques d'ordre associées
function yprim = g (t,y)
yprim = -lambda*(2+cos(y))
endfunction
y... |
f49250e63fdb68343647f0a1196b333ec3a28b0e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2951/CH4/EX4.5/ex_4_5.sce | 371cf13e5f062c4e7339190a76ce0a96f5b897f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | ex_4_5.sce | clc;
clear;
fm=3; //Modulating Frequency in kHZ
Max_dev=15;// Maximum Deviatin in kHZ
B=Max_dev/fm;
J=8; // Bessel table,the highest J coefficient
BW=J*fm*10^(3);//Bandwidth in kHz
BW1=2*(fm+Max_dev)*10^(3);// According to carson rule, BAndwidth
disp(BW,"Bandwidth required (in Hz)");
disp(BW1,"Accordi... |
24ada0e9ddeaa9a320e8a424d8cd36e7a87b712e | 09697f1820407362408542dc147b6c5a0281dd5a | /8(A).sce | 07ba17da2d10c67f07d8a303c96a67a22ca48f48 | [] | no_license | muitnet/DISCRETE-MATHEMATICS | f326ee3cc12958cee3100473c3cccd9c908c314f | 4598a406de5e29190ac04d1f3a722452494403cc | refs/heads/master | 2020-06-11T20:49:50.821691 | 2016-12-05T12:53:32 | 2016-12-05T12:53:32 | 75,624,408 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 387 | sce | 8(A).sce | a =(8 -4) -3
b=8 -(4 -3)
disp('since a and b are not equal so subtraction is non-commutative on Z(set of integers)')
a =[1 2;3 4]
b =[5 6;0 -2]
g= a*b
k= b*a
disp('since g and k are not equal matrix multiplication is non-commutative')
h =(2^2) ^3
j =2^(2^3)
disp('since h and j are not equal so exponential... |
7db75bc08d11fbfe9804806e8eae32bc5a608fe3 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/SURPRISE-LANGUAGES/Nilo-Sahan/dje.tst | a3299126a3ab9913d91313684f46abb86c90c29a | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | tst | dje.tst | daay-si V;FUT
kayni V;FUT
diran V;FUT
hantum V;FUT
daay-si V;PRS
fayri V;PST
chauwayndi V;PST
sinttini V;PRS
tutaiye V;FUT
foh V;PST
kaiye V;PST
bann V;PST
chayndi V;FUT
goroh V;PST
foh V;FUT
daabu V;PST
|
1a80a4272fc2bcbbb79f32c3d149ec57c42e60a2 | 5d859b4c720cc732ba32c3af11f7082e2b3bdf80 | /Programs/2.1 p_updatePropertyPriceTest.tst | 729f66ab7c0df11fc29eb3b33503710a2c4a98d8 | [] | no_license | fedidat/Mini-project_in_Databases | 5f1eab0bae2cedc636fe7f52f9543c5771a41b61 | 6af178c41a3f56487038e48fee27fcddb39b764f | refs/heads/master | 2021-01-10T20:40:39.690203 | 2013-10-25T14:13:40 | 2013-10-25T14:13:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 514 | tst | 2.1 p_updatePropertyPriceTest.tst | PL/SQL Developer Test script 3.0
16
declare
cursor c_prop is
select policy_id from property;
r_prop c_prop%ROWTYPE;
begin
--Load cursor
open c_prop;
loop
--Load record
fetch c_prop into r_prop;
exit when c_prop%NOTFOUND;
--Call p_updatepropertyprice with base price 1000 and policy ID or ea... |
ff3dc56125c87739121e567eb3e7e4146f7e0c10 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH8/EX8.3/Ch08Ex3.sce | cc2efe607471d69015e5c7be37d2a618c3f20a10 | [] | 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 | 684 | sce | Ch08Ex3.sce | // Scilab code Ex8.3 Page:241 (2006)
clc; clear;
h_bar = 6.58e-016; // Planck's constant, eV.s
m = 0.511e+06; // Mass of an electron, eV
e = 1.6e-012; // Energy equivalent of 1 eV, erg/eV
c = 3.0e+010; // Speed of light, cm/s
N = 4.7e+022; // Free electron gas concentration of Lithium, pe... |
72723f30244ff5175499c7503ae1e48bd9efaae7 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/rasp_design_added_blocks/in2in_x6.sce | 54e64e5dbcae930127f09717e894d0d6ee22a2dc | [] | 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 | 262 | sce | in2in_x6.sce | style.fontSize=12;
style.displayedLabel="<table> <tr> <td align=center><b>in1<br>in1<br>in2<br>in2<br>in3<br>in3<br>in4<br>in4<br>in5<br>in5<br>in6<br>in6</b></td> <td align=center>In2In_x6</td></tr></table>";
pal10 = xcosPalAddBlock(pal10,"in2in_x6",[],style);
|
146c292b03775e3c3296b3080b7107acb4d71181 | 449d555969bfd7befe906877abab098c6e63a0e8 | /199/CH6/EX6.14/Example_6_14.sce | 8f4def15cf2e0fd07a76f313099a43949818b5bf | [] | 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 | 464 | sce | Example_6_14.sce | // Chapter6
// Page.No-228, Figure.No-6.21
// Example_6_14
// Change in output voltage
// Given
clear;clc;
Rf=3*10^3;
Vdc=5;
Rt=100*10^3; // Resistance at darkness
Vomin=-(Vdc/Rt)*Rf; // Min output voltage at darkness
printf("\n Min output voltage at darkness is = %.2f V \n",Vomin)
Rt=1.5*10^3; // Resistance... |
638fe72410c6861f60f3bedddf91d6a813b0c11d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH10/EX10.24/10_24.sce | 0731242045c2db0add2069582813ca61ad6cf38d | [] | 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 | 375 | sce | 10_24.sce | clear
clc
X1=.4
X2=.3
X0=.05
S=15
V=13.2
Z=V*V/S
E=1
If=1
Xn=((3*E/(If))-(X1+X2+X0))/3
xn=Xn*Z
mprintf("\n(a)Xn= %.3f ohm ",xn)
Rn=((3*E/(If))-((X1+X2+X0)*%i))/3
rn=Rn*Z
mprintf("\n(b)Rn= %.2f ohm ",rn)
//the differnece in result is due to error in calculation in textbook
disp("the differnece i... |
252ac0805649969e216b4e70740dab022e2e6710 | 449d555969bfd7befe906877abab098c6e63a0e8 | /615/CH2/EX2.10/2_10.sce | 2acfad24cc9092486e5ce95ae91ad180fd77d77b | [] | 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 | 429 | sce | 2_10.sce | //acids and bases//
//example 2.10//
W=0.092;//weight of Formic acid per litre in grams//
M=46;//molecular weight of Formic acid//
N=W/M;
printf('The normality of Formic acid is %fg.equivalent/lit',N);
V=1/N;
K=2.4*10^-4;//Dissociation constant of Formic acid at 25C//
a=sqrt(K*V);//For weak acids//
printf('\nD... |
a07cdb7388a694efb2f6a4a89726d52f007c74ed | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH9/EX9.6/c9_6.sce | dfbfa1cc9600694e296c667f7a286ec5fd2506f3 | [] | 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,261 | sce | c9_6.sce | //(9.6) Reconsider Example 9.4, but include in the analysis that the turbine and compressor each have an isentropic efficiency of 80%. Determine for the modified cycle (a) the thermal efficiency of the cycle, (b) the back work ratio, (c) the net power developed, in kW.
//solution
etat = .8 ... |
c8af65a4a6c0d718a07a0b2aa6c8efc6a05364b3 | 717ddeb7e700373742c617a95e25a2376565112c | /806/DEPENDENCIES/269.sci | 527926d6b6f8fd15b35b608eab3f599f2d1278a2 | [] | 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 | 218 | sci | 269.sci | p=54//lb/ft^3(Weigth density of liquid)
h1=12//feet(Liquid height on one side of the gate)
h2=8//feet(Liquid height on other side of the gate)
b=8//feet
c=6//feet
w=6//feet(Width of gate)
W=2000//kg(Mass of gate) |
65ae379f4e7b6c7a74c3f97d3746dec0b5737b41 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1946/CH8/EX8.1.a/Ex_8_1_a.sce | 1041f4c8fd5aa7adb02e39750dd00814b553c691 | [] | 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 | 323 | sce | Ex_8_1_a.sce | // Example 8.1.a;//OPTICAL POWER coupled
clc;
clear;
close;
B0=100;//in W per cm2 sr
rs=0.002;// radiating radius in cm
a=0.0015;//core radius in cm
NA=0.3;//numerical aperture
Pc=(B0*rs^2*%pi^2*NA^2)*10^3;//POWER COUPLED IN STEP INDEX FIBER in mili watt
disp(Pc,"POWER COUPLED IN STEP INDEX FIBER in mili watt"... |
faa3ff5b186f6e31b7e1068e8702a798a2f4b8d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH10/EX10.5/5.sce | 4c727bf4206e98cd564041067c2df7957dc583e6 | [] | 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 | 933 | sce | 5.sce | clc
//For the air at 35 0C DBT and 60% R.H.
p_vs=0.0563; //bar; Corresponding to 35 0C from stem tables
phi=0.6;
p_t=1.0132; //bar
cp=1.005;
t_db=35; //0C
h_g=2565.5; //kJ/kg
m1=1; //kg
m2=2; //kg
m=m1+m2;
p_v=phi*p_vs;
W1=0.622*p_v/(p_t-p_v);
//Corresponding to 0.0388 bar, from steam tables
t_dp=... |
4cc8a69c2349ab3e05a88669885acedb32504e9d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1385/CH10/EX10.2/10_2.sce | 3aa65930383cd5b7b86443376466b2e6d5eb493b | [] | 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 | 243 | sce | 10_2.sce | clc
//initialisation of variables
E= -0.337 //v
R= 8.31 //J/mol K
T= 25 //C
F= 96500 //coloums
M= 0.12 //m
//CALCULATIONS
E1= E-(R*(273+T)*2.3*log10(M)/(2*F))
//RESULTS
printf (' oxidation potential of copper elctrode = %.3f v',E1)
|
c8bddf0456905b8a37ca2763894e29d891315ca4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH2/EX2.39/39.sci | 11dad8cb6846439f32d2914cba5db496bbd6773f | [] | 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 | 637 | sci | 39.sci | clc;
clear all;
disp("Heat loss in pipe")
ri=0.04;//m inner radius of pipe
ro=0.05;//m outer radius of pipe
ti=160;// degree C temperature of hot gases
to=25;// degree C temperature of space in which the pipe is located
k=180;// W/(m*C)
L=1;//m
Q=(ti-to)/(log(ro/ri)/(2*3.1416*k*L))
disp("W/m",Q,"the heat l... |
c2719a6e9646d92ee470d5eb8c19c00bd23950a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3830/CH4/EX4.9/Ex4_9.sce | 068182b3e078c8c12ccf615e76c40e9536ae029b | [] | 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 | 386 | sce | Ex4_9.sce | // Exa 4.9
clc;
clear;
// Given
// Referring Lissajous pattern shown in figure
wx = 1 ; // Sum of x-peak pattern
wy = 2.5; // sum of y-peak pattern
fx = 3; // frequency of horizontal signal
X = wy/wx ; // X is ratio of fy/fx
// Therefore, fy = 2.5*fx
printf(' Frequency of vertical signal = %.1f kH... |
4126496482d26ea423130d688b9d7fc96e87ac05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH13/EX13.8/Ex13_8.sce | 65bbfed6f4a6659f2c98bb3151fe5543c1f0c2bd | [] | 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 | 565 | sce | Ex13_8.sce | //chapter13
//example13.8
//page282
del_Ib=10d-3 // mA
del_Ic=1 // mA
del_Vbe=0.02 // V
Rc=5 // kilo ohm
Rl=10 // kilo ohm
gain_beta=60.0;
Ai=del_Ic/del_Ib
Rin=del_Vbe/del_Ib
R_AC=Rc*Rl/(Rc+Rl)
Av=gain_beta*R_AC/Rin
Ap=Av*Ai
printf("current gain = %.3f \n",Ai)
printf("input impedence = %.3f kilo ohm \n",Rin)
printf... |
c98e2f2d5ab4ede5922e4728e596051fed112561 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.10_2.tst | 13d5caff3fb1e4a3e07e2a9d323b5f80937ff94e | [] | 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 | 16,198 | tst | bow.10_2.tst | 10 37:0.5 59:0.3333333333333333 91:0.5 474:1.0 4847:0.14285714285714285 5199:1.0
10 13:1.0 39:0.5 1621:1.0 1927:0.5 2280:1.0 3038:1.0 4378:1.0 4822:1.0 4828:1.0 4847:0.14285714285714285 4896:0.25 4946:1.0 5133:1.0
10 11:0.14285714285714285 35:0.25 170:0.07692307692307693 332:0.2 4847:0.14285714285714285 5305:1.0
10 30:... |
9b8b2d8c1946c1f0dca33c4434294322f910fd3b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2885/CH5/EX5.6/ex5_6.sce | 759ef70a12e19edb0f7f7cbab6541007193ea983 | [] | 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 | 414 | sce | ex5_6.sce | //Find the value of drain current
clear;
clc;
//soltion
//given
Vt=2;//V //threshold voltage
K=0.25*10^-3;// A/V^2 //conductivity parameter
Vgs=3;//V //gate supply
Vds=2;//V //saturation voltage
Vdsm=Vgs-Vt; //minimum voltage required to pinch off
// Vds > Vdsm therefore the device ... |
22d1a97e1fd832022505a4ac8674118a9c426989 | 297b29fb450286d0f7fa619e58c9f4a86949544a | /MultiplexedDeinterleaver.sci | 1e36ad3b5e6248b77caf7a3f33b82badcdba274c | [] | no_license | harshal93shah/scilabcom | 46dc948c1e0d0b37b0a69dfa203347298cc01e40 | 09c5506089a4283968d963ed3812de9823c5a008 | refs/heads/master | 2020-04-06T07:03:23.954966 | 2016-10-04T11:49:41 | 2016-10-04T11:49:41 | 54,882,787 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,886 | sci | MultiplexedDeinterleaver.sci | function [y,state,index] = MultiplexedDeinterleaver(in,delay,inist,stindex)
y=[];
state=[];
index=[];
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
//MultiplexeDeinterleaver Restore ordering of symbols using specified-delay shift registers
... |
4ad2c2d29496150db78932f7794293c8065daade | 449d555969bfd7befe906877abab098c6e63a0e8 | /389/CH11/EX11.11/Example11_11.sce | e321a8a562051f7e16b59c15668d8c2be0bf3601 | [] | 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,107 | sce | Example11_11.sce | clear;
clc;
// Illustration 11.11
// Page: 645
printf('Illustration 11.11 - Page: 645\n\n');
// Solution
//****Data****//
// For collection of Cu2+:
V = 37850;// [l/h]
c1 = 20;// [meq Cu2+/l]
c2 = 0.01*c1;// [meq Cu2+/l]
Mass_rate = 2;// [meq Cu2+/g resin h (meq Cu2+/l)]
exchanged = V*(c1-c2);// [me... |
d6578c2d7b21162522488fbbeafa18577d694d31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/CH4/EX4.27/4_27.sce | 60f8a7e8c97ed84c37c462d6b2bf79ba7133ed93 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 289 | sce | 4_27.sce | pathname=get_absolute_file_path('4_27.sce')
filename=pathname+filesep()+'4_27data.sci'
exec(filename)
Tw=q*Cf;disp(Tw,"Tw=","Tw=q*Cf","shear stress at point 0.6096 m Tw:");
printf("\Answer:\n")
printf("\n\shear stress at a point 0.6096m downstream of the leading edge: %f m\n\n",Tw)
|
cef2cdcb420e9b0cfe47088a15e2e53ff5e62776 | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/interpreter/lpm02.tst | 563b8446a9d90b37880ab723555980e61df9960f | [] | 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 | 223 | tst | lpm02.tst | ; @Harness: simulator
; @Format: atmel
; @Arch: avr
; @Purpose: "Test the LPM (load program memory) instruction"
; @Result: "r2 = 42, z = @data"
start:
ldi r30, data * 2
lpm r2, z
end:
break
data:
.db 42
|
1349daca7242a11fb6f2704f7ea23932f71631aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2219/CH9/EX9.17/Ex9_17.sce | 1c980595b9ae7e067179cd769b0d41995bbc7a83 | [] | 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 | 456 | sce | Ex9_17.sce | // Chapter 9 example 16
//------------------------------------------------------------------------------
clc;
clear;
// Given Data from Figure triagle OAB
OA = 100 // in Km
OB = OA*cos(60*%pi/180); // Range of Target 2
// Output
mprintf('Range of Target-2 = %d Km\n Azimuth angle of targe... |
48b10f9a65d6ff8b418510fc2d927dd4b21c9043 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH4/EX4.9/Ch04Ex9.sce | 16198903bcc7ac9d884c3f1d8f59475e17e4a045 | [] | 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 | 905 | sce | Ch04Ex9.sce | // Scilab code Ex4.9: Pg 137 (2005)
clc; clear;
k_B = 8.62e-05; // Boltzmann constant, eV/K
delta_E = 10.2; // Average thermal energy, eV
// Since (3/2)*k_B*T = averge thermal energy per atom = 10.2eV, solving for T
T = 10.2/(3/2*k_B); // Temperature at which H-atoms jump to first excited state, K
print... |
259cb3969edd0b202ad9a2e2f75263abaf9880ce | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1.1/macros/calpol/diophant.sci | e398f12254200ddf46de97dd3205600443ebbc38 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 440 | sci | diophant.sci | function [x,err]=diophant(p1p2,b)
//solves diophantine equation p1*x1+p2*x2=b
//with p1p2 a polynomial vector [p1 p2]
//b polynomial
//x polynomial vector [x1;x2]
//if the equation is uncompatible err=||p1*x1+p2*x2-b||/||b||
//else err=0
//!
p1=p1p2(1);p2=p1p2(2)
[x,u]=bezout(p1,p2)
p1=u(2,2);p2=u(1,2)//
if degree(x)=... |
b7d10cf68b61117f3c348fcadef083d0eb0c21d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH2/EX2.4/Ex2_4.sce | 8c468959d5ecefc7f665cc55bb3963f412aa81f0 | [] | 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,307 | sce | Ex2_4.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 2 : FORCES IN AN ELECTROMAGNETIC SYSTEMS
// EXAMPLE : 2.4
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
// Refer figure 2.7:- Page no. 41
a = 0.0001; ... |
01fb33a00fccff3aceee34bc1a4b210aeb5f6dcd | 9224090b07cb3f466fe72819cf90ca0c4dedc901 | /Miscellaneous/Dispersion Relation Calculator/dispersion_relation.sce | 0c3d2daf65a38898e3b330117d7ac04797b11675 | [] | no_license | MGYBY/advanced_ocean_modelling | 8c383b09f4077174559bd7964062625012026fa0 | 848f0f4d616d472021c31582b64557f04067ce74 | refs/heads/main | 2023-07-14T14:37:57.714203 | 2021-08-20T20:13:49 | 2021-08-20T20:13:49 | 398,386,684 | 4 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 264 | sce | dispersion_relation.sce | // this function calculates the phase speed c (m/s) and period t (s)
// of surface gravity waves
// for given wavelength L (m) and water depth H (m)
function [c,t] = disprel(L,H)
c = sqrt(9.81*L/(2.*%pi)*tanh(2.*%pi*H/L));
t = L/c;
endfunction
|
669cf854e3755fe85d752f9babf4196715ae5cce | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/GOLD-TEST/hin.tst | 5c8b34bfd690fb31b8fd86b621f2c7e49b2693c3 | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 791,877 | tst | hin.tst | झूमना झूमे थे V;PRF;MASC;PL;1;PST
झूमना झूमती होती V;HAB;FEM;PL;1;LGSPEC4
झूमना झूमी है V;PRF;FEM;SG;2;PRS
झूमना झूम रही हैं V;PROG;FEM;PL;3;PRS
झूमना झूमी होगी V;PRF;FEM;SG;2;LGSPEC3
झूमना झूमा होगा V;PRF;MASC;SG;2;LGSPEC3
झूमना झूम रही थीं V;PROG;FEM;PL;2;PST
झूमना झूमती हों V;HAB;FEM;SBJV;PL;3
झूमना झूम रहा है V;PRO... |
5bc3082606c2fb097cc3234d65cc609eb02953d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /773/CH4/EX4.02/4_02.sci | a407b9123d6ddd245fb50fdc365f8a3b4ef276ee | [] | 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 | 804 | sci | 4_02.sci | //laplace//
printf("n=5 ,Helical turn \n")
n=5; //Helical turn
disp(n,"n=")
printf("N=9000 ,Winding Turn \n")
N=9000;//Winding Turn
disp(N,"N=")
printf("R=10000 ,Potentiometer Resistance \n")
R=10000;//Potentiometer Resistance
disp(R,"R=")
printf("Ein=90 ,Input voltage \n")
Ein=90;//Input voltage
disp(Ein,"... |
9718b997dfb0a456631119b5a7e46eb083c44136 | 0c3cccb3c81eb151f654e5d9d470662c19122857 | /scilab/fac/tpNombresPremiers.sce | ab90716fb1f63e2063d0af52d7bfc9723958df71 | [] | no_license | gmordelet/oldProg | 6b2bb7c247dd1f16a641d0f840f7c82e8eb37ffb | c108060bf1b87b4aad196484036f226fd9c4422c | refs/heads/master | 2021-01-12T16:28:52.448277 | 2016-10-30T11:16:22 | 2016-10-30T11:16:22 | 69,155,276 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 590 | sce | tpNombresPremiers.sce | function t = test_premier(n)
t = %T * ones(1, n);
for i = 2:sqrt(n)
if(t(i))
t(i*2:i:n) = %F;
end
end
endfunction
function l = premiers(n)
A = test_premier(n);
l = [];
for i = 2:n
if(A(i))
l = [l, i];
end
end
endfunction
function N =... |
e33f53880429c5a57a54d8b831b60312290b1490 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1928/CH4/EX4.15.23/ex_4_15_23.sce | 5d1ec8841c44aa1db5c304a9266717d834019463 | [] | 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 | 414 | sce | ex_4_15_23.sce | //Chapter-4,Example4_15_23,pg 4-38
d=7.23*10^3 //density
Y=11.6*10^10 //Young's modulus
n=20*10^3 //frequency of wave
k=1 //consider 1st harmonic
l=(k/(2*n))*sqrt(Y/d) ... |
bc3514dacca0bb3b0ba269d30bb2f978c3ed434b | 449d555969bfd7befe906877abab098c6e63a0e8 | /767/CH7/EX7.5.1/Ch07Exa7_5_1.sci | 7dc2c739265790d5acac3a2113532e5b508a284d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 625 | sci | Ch07Exa7_5_1.sci | // Scilab code Exa7.5.1: To calculate the electric field at the surface of wire of G.M. counter :P.no. 311 (2011)
V = 2000; // Potential difference, V
a = 0.01; // Radius of the wire, cm
b = 2; // Radius of the cylinderical tube, cm
r = 0.01; // Radius of the wire, m
E_r = V/(r*log(b/a)); // the electric fiel... |
191de99fc5a5ff7e837e28e6c19cfda4197a1acb | 717ddeb7e700373742c617a95e25a2376565112c | /1340/CH7/EX7.3/7_3.sce | b4293222e5abdb9bf452383c80e4c2221515afbb | [] | 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 | 501 | sce | 7_3.sce | clc;
s = %s;
G = syslin('c',100*((s+2)*(s+6))/(s*(s+3)*(s+4)));disp(G,"G(s)=");
syms t s;
R = laplace(5,t,s);
E = R/(1+G);
sse = limit(s*E,s,0);disp(sse,"Steady state error for step input:");
R = laplace(5*t,t,s);
E = R/(1+G);
sse = limit(s*E,s,0);disp(sse,"Steady state error for ramp input:");
R = laplace(5*... |
06230eb37b0603057497be703de1dc20090106ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH4/EX4.1/Ex4_1.sce | 949a3acafab7d955995075cc9266855475ddaff9 | [] | 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 | 490 | sce | Ex4_1.sce | //chapter4
//example4.1
//page68
rp=300 // ohm
Rl=1200 // ohm
Vm=200*2^0.5 //V
Im=Vm/(rp+Rl)
Idc=Im/%pi // in ampere
Idc_mA=Idc*1000 // in mA
Irms=Im/2
Irms_mA=Irms*1000
Pdc=Idc^2*Rl
Pac=Irms^2*(rp+Rl)
efficiency=(Pdc/Pac)*100
printf("dc current = %.3f A or %.3f mA \n",Idc,Idc_mA)
printf("rms current = %.3f A or %.3... |
82d8f1535cb66a8f5bbc27b192e283a0a7a309b0 | 717ddeb7e700373742c617a95e25a2376565112c | /806/DEPENDENCIES/1_33.sci | 33b2bdcef6f26a763cd11fe74eddc3125c6b3f96 | [] | 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 | 55 | sci | 1_33.sci | m=3//kg(mass)
g=10//m/s^2(acceleration due to gravity) |
12bef6bb24eb790a7ff488c5415073d23f104d1a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH5/EX5.5/Ex5_5.sce | fffb1fc3badd555b70aa0bd7b1cc62a1aed81ea3 | [] | 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 | Ex5_5.sce | clear all; clc;
disp("Scilab Code Ex 5.5 : ")
//Given:
P = 3750; //W
N = 175; //rpm
allow_shear = 100; //MPa
//Calculations:
ang_vel = (2*%pi*N)/60; // rad/s
T = P/ang_vel; //P = T*angular velocity
c = ((2*T*1000)/(%pi*allow_shear))^(1/3);
d = round(2*c);
//Display:
printf('\n\nThe required di... |
d03af355f360d9b0085e0ceb385bfd1956b75f6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3828/CH1/EX1.3/Ex1_3.sce | c288d0014a9d0fc8db4feff16d8364a51fcdee21 | [] | 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 | 309 | sce | Ex1_3.sce |
//Chapter 1 : Wave Optics
clear;
//Variable declaration
lamda=5640*10**-8 //wavelength
d=0.01 //distance between slits
n=0 //first minimum
//Calculations
theta=(n+(1/2))*(lamda/d)
theta=theta*180/%pi
//Result
mprintf("Angular position of first minima is= %0.2f",theta)
|
4256c0bcb387378599845c895ae4cfa0f115deda | 34afc14c4842072fac8feea2335591b4621718d4 | /ASSIGNMENT4/EigenValuesEigenVectors.sce | 495567e275ae9bcbed4ef53f6f749eb825d07856 | [] | no_license | SnehaJayaraman/LA | 8242edf4583165ace4954bfdd407ed4a4658d963 | 13295ffd7917410df0b86896f0243f1d940a271c | refs/heads/master | 2020-12-27T02:46:06.112219 | 2020-04-30T11:59:21 | 2020-04-30T11:59:21 | 237,738,119 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 703 | sce | EigenValuesEigenVectors.sce | A=[]
disp("Enter a 3x3 matrix :");
for i=1:3
for j=1:3
printf("Enter value for A(%d,%d):",i,j)
A(i,j)=input("")
end
end
lam=poly(0,'lamda')
lam=lam
charMat=A-lam*eye(3,3)
disp(charMat,'The Characteristic Matrix is:')
charPoly=poly(A,'lamda')
disp(charPoly,'The Characteristic Polynom... |
efef456ffa4ee97124c8816c534d0b4e61aff72c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2837/CH11/EX11.9/Ex11_9.sce | 20c48f40aa30d99aec6e076d14d7e4487b8c3a6d | [] | 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 | 315 | sce | Ex11_9.sce | clc
clear
//Initialization of variables
p1=200 //psia
t1=480 //F
eff=0.95
g=32.2 //ft/s^2
J=778
mf=3.4 //lb/s
//calculations
disp("From steam tables,")
h1=1257.8
h2=1210.5
dh=eff*(h1-h2)
ve=sqrt(2*g*J*dh)
h3=h1-dh
vs=3.961
Ae=mf*vs/ve *144
//results
printf("Nozzle exit area = %.3f sq.in",Ae)
|
a607125111547146552dc7a626037d327bd9cdab | ebfed86dee276110294a4e93fa80377908bbd317 | /macros/convert.sci | 019f26ab7a305b057befa09ef42ffd022aab0853 | [] | no_license | gursimarsingh/FOSSEE-Image-Processing-Toolbox | a9d46b698c98566fec867eb2ce3cfeb427058d5c | 165f6d7d1f20262a1637a923c6aad6e663ad1538 | refs/heads/master | 2021-08-16T19:18:59.591175 | 2017-11-08T17:55:04 | 2017-11-08T17:55:04 | 96,531,802 | 0 | 0 | null | 2017-07-07T11:21:10 | 2017-07-07T11:21:10 | null | UTF-8 | Scilab | false | false | 2,387 | sci | convert.sci | function dst = convert(src,rtype, varargin)
// Converts an array to another data type with optional scaling.
//
// Calling Sequence
// src = imread('location-of-src');
// dst = convert(src,rtype, alpha,beta);
//
// Parameters
// src : the source matrix/image
// alpha – optional scale factor (default value is 1) (type:... |
481ad3bea74c0a54a28b26015e3778d8c3607f3c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3574/CH11/EX11.4/EX11_4.sce | 78507c3d7074399b96a494f7c7528a3fe719b08e | [] | 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,363 | sce | EX11_4.sce | // Example 11.4
// Computation of resistance using linear approximation and values are
// compared with results obtained in example 11.1
// Page No. 456
clc;
clear;
close;
// Given data
HP=40; // hp rating of the device
%ratedload=0.902; // Percentage rated load
VT=240; ... |
5f87b42084d42a0a453ce9cc3b3ea733729f84f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH33/EX33.2/33Ex2.sce | ca126fe9f92babd591e7bed3abbe88c764e1451d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 203 | sce | 33Ex2.sce | //Chapter 33 Ex 2
clc;
clear;
close;
TD=120; rate=15/100; t=1/2; //given
BG=TD*rate*t; //banker's gain
BD=TD+BG; //banker's discount
mprintf("The bankers discount is Rs %d",BD);
|
387422e42ec6426ee56919d45114a7abda566961 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/rasp_design_added_blocks/vmm_sr.sce | ade09b3cd41b041691df8bba4e5a726397beb02f | [] | 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 | 296 | sce | vmm_sr.sce | //style.fontSize=14;
//style.displayedLabel="<table> <tr> <td><b>In<br><br>CLK<br><br>EN<br><br>D</b></td> <td></td> <td></td> <td>VMM+SR</td> <td></td> <td></td> <td align=right><b>Out<br><br>CLK O<br><br>EN O<br><br>Q</b></td> </tr> </table>";
//pal5 = xcosPalAddBlock(pal5,"vmm_sr",[],style);
|
b8b2af3e35ede546b8daaa12fff31ba5ee5c7f57 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3169/CH8/EX8.5/Ex8_5.sce | 54eca93ff72987788ec33defe935b69ae5785b1c | [] | 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,804 | sce | Ex8_5.sce | //developed in windows XP operating system
//platform Scilab 5.4.1
clc;clear all;
//example 8.5
//calculation of the transmitted,reflected voltage and current waves
//given data
L1=0.189*10^-3//inductance(in H/km) of the cable
C1=0.3*10^-6//capacitance(in Farad/km) of the cable
L2=1.26*10^-3//inductance(in H/... |
149e07ec4e6d6164806f1e965d9438c779dfec37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH3/EX3.7/Ex3_7.sce | 499af757a4c8c34fb2c12c20ae42add67b8606c8 | [] | 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 | 600 | sce | Ex3_7.sce | clear;
clc;
//Example 3.7
Vbe=0.65;
Vcc=5;
Rc=0.5;//KOhm
b=100;
V1=-5;
Re=1;//KOhm
// Q-point values :: writing KVL eq around B-E loop
Ie=(-V1-Vbe)/Re;
printf('\nemitter current=%.2f mA\n',Ie)
Ib=(Ie/(1+b));
printf('\nbase current=%f mA\n',Ib)
Ic=(b/(1+b))*Ie;
printf('\ncollector current=%0.2f mA\n',Ic)
... |
26b847a3303ff7710d5975cc79a9beaf2d52db73 | 449d555969bfd7befe906877abab098c6e63a0e8 | /413/CH4/EX4.5/Table_4_5.sce | e38fbfbc0658759b335b2baaebdfb8ae71049ba9 | [] | 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 | 319 | sce | Table_4_5.sce | clc
clear
function a=rat(x)
a=(1.0018+0.6727*x +0.1598*x.*x)/(1-0.3263*x)
endfunction
function a=che(x)
a=0.9946+0.9973.*x+x.*x.*0.543+x.*x.*x.*0.1772
endfunction
function out=tab4(y)
out=[y,exp(y),che(y),exp(y)-che(y), rat(y),exp(y)-rat(y)]
endfunction
for y=-1:0.2:1
disp(tab4(y)')
end |
f572c08c51abcb1e6732c511b7854b3bca8e861f | 449d555969bfd7befe906877abab098c6e63a0e8 | /527/CH7/EX7.12/7_12exam.sce | e41c0d520b9cbcff8dd6c34a5e1439781c1f87fb | [] | 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 | 505 | sce | 7_12exam.sce | //Engineering and Chemical Thermodynamics
//Example 7.12
//Page no :352
clear ; clc ;
//Given
A_T1 = 1401 ; //[J/mol]
T1 = 10 + 273 ;//[K]
T2 = 60 + 273 ; //[K]
C = 3250 ;
A_T2_prev = 1143 ;//[J/mol]
A_T2 = T2 * (C *(1/T2 - 1/T1) + A_T1 / T1);
disp(" Example: 7.12 Page no : 352") ;
printf("\n Val... |
495ab1cae53a04b46074f8fcabf9a63de5c17992 | 580b74e6df0eda66a69f771dbab3a60d7b5eb819 | /test/AJOUT_dolly_100.tst | fdc65bf5e3948752c7d7c1ecf3f7feb075140aa0 | [] | no_license | karimelkha/Client-server-application-for-bank | 98fdae450c79e16f2020d0640b0f0d0936e97b37 | 2b0fbc6f4a7f1f1e7ff1a85755bdf082ca542206 | refs/heads/main | 2023-08-20T22:41:53.517505 | 2021-10-06T08:11:59 | 2021-10-06T08:11:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 34 | tst | AJOUT_dolly_100.tst | AJOUT dolly CompteEpargne 1234 100 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.