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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ed9fa6645482079341ec1dc3d66d97a17d36b7d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH20/EX20.1/20_1.sce | 5cccf0bbe67a4d73afbc5eb4ec692a223406928f | [] | 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 | 372 | sce | 20_1.sce | clc
//initialisation of variables
Xac= 2 //m
Xcb= 4 //m
Xbd= 2 //m
Wa= 1 //N
Wc= 1 //N
Wd= 1 //N
//CALCULATIONS
Rb= Wa*Xac/(Xac+Xcb)
Sc= Rb
Ra= Wc*Xcb/(Xac+Xcb)
Sc1= -Ra
Ra1=-Wd*Xbd/(Xac+Xcb)
Mc= Ra*Xac
Mc1= Ra1*Xac
//RESULTS
printf ('Rb= %.2f KN',Rb)
printf (' \n Ra= %.2f KN ',Ra)
printf (' \n Ra... |
b65e7738f567cf7e8db7ca1b6a0214fbdfe87b4d | e9d5f5cf984c905c31f197577d633705e835780a | /GED/linear/scilab/functions/ged_calc_results.sci | 56bf0c4ef458bfbfa8a6c4cdfc199f07e3dd644e | [] | 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 | 6,892 | sci | ged_calc_results.sci | // Data Reconciliation Benchmark and GED Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
function [x_sol] = calc_results_DR(xfinal, jac, sigma, resGrossErrorNodalRandFi, opt_type)
obj_function_type = opt_type;
exec ../functions/setup... |
443038608be61b3040569b38b8334717bff5ad61 | 449d555969bfd7befe906877abab098c6e63a0e8 | /746/DEPENDENCIES/8_01.sci | 2d4620b382fbe29910665a2be598270340b5732b | [] | 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 | 409 | sci | 8_01.sci | //Operation pressure of hydraulic system(in kPa):
p1=20000;
//Operation temperature of hydraulic system(in C):
T=55;
//Piston diameter(in mm):
D=25;
//Viscosity of SAE 10W at 55C(in kg/(m-s):
u=0.018;
//Mean radial clearance of a cylinder(in mm):
a=0.005;
//Gauge pressure on lower pressure side of piston(in k... |
4591a97759afd48d226e43384bd3b251988c0576 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH15/EX15.25/15_25.sce | 4225001f04b2a38788921c4c78f633240612ad49 | [] | 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,031 | sce | 15_25.sce | //Example 15.25
//Hamming Predictor Corrector Method
//Page no. 548
clc;clear;close;
deff('y=f(x,y)','y=y-x^2')
y(1)=1;h=0.25;x=0;
printf('n\tXn\tYn\tfn\tY`n\tYc(n)\tY`n+1\tm(n+1)\tv(n+1)\tYc(n+1)\n-----------------------------------------------------------------------------------------\n')
f1(1)=f(x,y(1));
f... |
50038f4eb9fd6a41e70662be768b5993b33b99e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1397/CH4/EX4.7/4_7.sce | 0445af7779357f70819e4a76a46d776e7849af07 | [] | 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 | 278 | sce | 4_7.sce | //clc();
clear;
//To determine permeability
H=1800; //magnetizing field in amp/m
phi=3*10^-5; //magnetic flux in wb
A=0.2*10^-4; //cross-sectional area in m^2;
B=phi/A;
mew=B/H;
printf("permeability is %f Henry/m",mew);
//answer in book is wrong
|
66a10be653862a65cf955db1e62975eb6c299b09 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH14/EX14.14/example14_sce.sce | 09d8f18d60d7c5c310eb7ed1eb9dd3ba80bf71e9 | [] | 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 | 227 | sce | example14_sce.sce | //chapter 14
//example 14.14
//page 630
printf("\n")
printf("given")
Vcc=15;Vsat=Vcc;R2=150*10^3;Vf=.7;R1=27*10^3;R3=120*10^3;
I2=(Vsat-Vf)/R2
UTP=I2*R1
disp(" LTP calculation including Vf")
I3=(Vsat-Vf)/R3
LTP=-I3*R1 |
0afa2204cda3dfd87ef88d9b8295e142979a5d1a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH8/EX8.6/Ex8_6.sce | f4f3412554ec3f6d32cac3c5c685a7e716818de0 | [] | 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,178 | sce | Ex8_6.sce |
// Theory and Problems of Thermodynamics
// Chapter 8
// Power and Refrigeration Cycles
// Example 6
clear ;clc;
//Given data
P1 = 2.5 // entering pressure of superheated steam in MPa
P2 = 10 // leaving pressure of steam in kPa
T1 = 523.15 // steam is superheated... |
138f9084dbe145602ec3f27dd7fe5f072ea80fd0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH23/EX23.4/23_4.sce | 2277835b4b4a7f5cbf1151afa971df393fd41de7 | [] | 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 | 297 | sce | 23_4.sce | clc
//initialisation of variables
a= 43560 //ft^-2
t= 500 //min day^-1
E= 1000 //cal min^-1 ft^-2
m= 2 //tons acre^-1
E1= 4000 //cal gram^-1
M= 9.07*10^5 //gram ton^-1
//CALCULATIONS
Sh= a*t*E*365.26
Hs= m*M*E1
r= Hs/Sh
//RESULTS
printf ('fraction of solar energy stored = %.3f ',r)
|
39b1ed072242631db41b397a5ca3f9f72b9c34cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH26/EX26.9/Ex26_9.sce | 9d865510da65e4cf0a5d3a5e6ebac7813c35d59a | [] | 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 | Ex26_9.sce | clear
//Given
a=5 ///ohm/cm
ue=3900 //cm**2/vs
e=1.6*10**-19
//Calculation
Nd=a/(ue*e)
//Result
printf("\n Number density of donor atom is %0.2f *10**15 /cm**3",Nd*10**-15)
|
db3269edce7cab9ab2ab74ebd2bd565adac52a7b | 449d555969bfd7befe906877abab098c6e63a0e8 | /83/CH6/EX6.1/example_6_1.sce | cb0ae706ff47356495af391b09f013c59ce9c3e2 | [] | 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,056 | sce | example_6_1.sce | //Chapter 6
//Example 6.1
//page 195
//To Ybus using singular transformation
clear;clc;
printf('Let us solve this problem by giving values given in the table 6.1 instead of keeping it in variables');
y10=1;y20=1;y30=1;y40=1;
y34=2-%i*6;y23=0.666-%i*2;
y12=2-%i*6;y24=1-%i*3;
y13=1-%i*3;
Y=[y10 0 0 0 0 0 0 0 0;
0 y... |
d6f80abde617f026f194e1457948157c03ee6f5a | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/movingrms.sci | 530de802317cea5fe7ab8471695629541b4fa7a4 | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,499 | sci | movingrms.sci | <<<<<<< HEAD
function [rmsx, w] = movingrms(x, width, risetime, varargin)
// Find moving RMS value of signal in x
// Calling Sequence
//[rmsx,w]=movingrms(x,width,risetime)
//[rmsx,w]=movingrms(x,width,risetime,Fs)
// Parameters
// x: (Real or complex valued vector or matrix) Input Signal
// width: Real or complex ... |
2fdbda3ed68e013d88be30a0e11a5a1f043b2905 | ef7da921e1289d3deaaf9727db2b6f025656e8d9 | /ContinuousTimeCosineWave.sce | 5c295b6e22e2a36dca962a2d6f9902f8a7493ea6 | [] | no_license | PrayagS/SciLab_Exercises | ea88438207f2dc5d3f211c9abfe137a4bd43f68f | 0495ba76e693750980fefb386c28209a6fd6563e | refs/heads/master | 2020-09-08T01:52:22.914681 | 2019-11-16T05:39:29 | 2019-11-16T05:39:29 | 220,977,317 | 2 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 286 | sce | ContinuousTimeCosineWave.sce | clear;
clf;
dt = 1/1000;
t = -1 : dt : 1;
A = 1; f = 1; theta = 0;
x = A*cos(2*%pi*f*t + theta); // %pi = PI
plot(t, x);
xgrid(1); // The argument defines the color of the grid
xlabel("t", "fontsize", 4);
ylabel("x", "fontsize", 4);
title("Continuous time cosine wave", "fontsize", 4);
|
094d986f3459de9e1243b1bc53c2a9963e44878c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2213/CH3/EX3.9/ex_3_9.sce | 49ea120fcffdad43e576e160099369d0d57ab539 | [] | 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 | 348 | sce | ex_3_9.sce | //Example 3.9 // mass of aluminium
clc;
clear;
close;
//given data :
ECE_silver=111*10^-8;//in kg/C
Cew_silver=107.98;//chemical equivalent of silver
Cew_al=27/3;//chemical equivalent of aluminium
Z=(ECE_silver*Cew_al)/Cew_silver;
C_efficiency=0.92;
I=3000;//in A
t=24*60*60;//in seconds
m=Z*I*t*C_efficiency;
disp(m,"ma... |
e63d1453ae2f473337c048f9129a17459d140d5a | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/IntersectcrvsPp.sci | a1218d06463de95bc28819ddbca9c9afea7184d1 | [] | 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 | 1,977 | sci | IntersectcrvsPp.sci | // 08.05.18 Koshikawa
// 08.05.19 Changed
// 08.00.04
// 09.11.07 for the same curve
function KL=IntersectcrvsPp(varargin) // Modified
Nargs=length(varargin);
G1=varargin(1); G2=varargin(2);
Eps=10.0^(-4);
if Nargs>2
Eps=varargin(3)
end
SqEps=10.0^(-10);
Eps2=0.1;
if Nargs>3
Eps2=varargin(4)
... |
0a5ba7a91ac109db0e9849a6f9a05c62391ecaa4 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Devices_T._L._Floyd_61.zip/Electronic_Devices_T._L._Floyd_61/CH15/EX15.2/ex15_2.sce | 772ad35faa545572c49e56200a01a9fcf77ba97a | [] | 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 | 202 | sce | ex15_2.sce | errcatch(-1,"stop");mode(2);//ex15.2
R2=10*10^3;
R1=0.586*R2; //FOR BUTTERWORTH RESPONSE
disp(R1,'R1 in ohms')
disp('5.6kilo ohm will be ideally to maximally flat butterworth response')
exit();
|
125e31982c7d5e7a2d077a41f9c3a64343104ca5 | 8aff21ee3944bdacbff38a386556c89c38377c6a | /zpkdata_testcase.sce | c1da9a50c1ff2466b0b3bc1f7677f3278c2aa0c5 | [] | no_license | rutup1595/control-system | bd4704a4aa437a66260301a22adb5e55b49c5c84 | b30d559d8835cd278cc6d6bb81f821cdfcc9ee55 | refs/heads/master | 2021-01-17T10:17:03.192056 | 2019-10-10T05:28:46 | 2019-10-10T05:28:46 | 59,283,553 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 430 | sce | zpkdata_testcase.sce | z=poly(0,'z');
sys1=syslin('d',z/(z-0.3)); //example taken from http://in.mathworks.com/help/control/ref/zpkdata.html
sys2=syslin('d',2*(z+0.5)/(z^2 -0.2*z+1.01));
a=[sys1,sys2];
[z1 p1 k1]=zpkdata(sys)
aa=pid(rand(2,2,3),3,4,5)
[z2 p2 k2]=zpkdata(aa)
ss=syslin('c',[1... |
7706f0c60f59e4051755a15f0957ced9cd7e8820 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3446/CH10/EX10.7/Ex10_7.sce | c2828fe83b9ec12186e54eb773f68984d386f232 | [] | 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 | sce | Ex10_7.sce | // Exa 10.7
// To determine the minimum delay difference to successfully resolve the multipath components and operate the Rake receiver
clc;
clear all;
SR=3.84; //spreading rate in Mcps
//solution
disp("In order to resolve multipath components, the chip duration should be equalto or greater than T(tau), ... |
3d57f62a1cd339e56d9de44bc78b3d5b865cffb6 | bb3c300381ad1a419b5fb40891e830e534656595 | /test/testcases/good_get2.tst | b61d0e9b88d73c22388cfe44347ca971b1b3ef0a | [] | no_license | DHorrible/visited_count | 60a082514dbce832fbd621223a44b0260300b34b | 5a7709b59c9feb2135844687d6303abb16991098 | refs/heads/master | 2021-04-17T00:41:52.110770 | 2020-03-24T22:53:14 | 2020-03-24T22:53:14 | 249,397,482 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 121 | tst | good_get2.tst | METHOD='GET'
ARGS="${DATETIMES[0]} ${DATETIMES[1]}"
OUT='Status code is 200:
{"domains": ["test1.org"], "status": "ok"}'
|
154c3823112e871955e54752290bfa2c10764020 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH14/EX14.2/Ex14_2.sce | 8a74078abe9ba3ae35f87c10e90d91faa3326bec | [] | 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 | 387 | sce | Ex14_2.sce | // Exa 14.2
clc;
clear;
// Given data
Va=2;// Volts
Vb=1;// Volts
Vc=3; // Volts
Ra=3;// k Ohms
Rb=3;// k Ohms
Rc=3;// k Ohms
Rf=1;// k Ohms
Rom=270;// Ohms
Supply=15;// Volts
// Solution
disp(" Assuming that the opamp is initially nulled");
// Using equation 14.8 to determine the output voltage
Vo=-(Rf/Ra *Va+Rf/... |
0b11ea25e652964baca3b01bfac67a5be2a50afe | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH4/EX4.32/ques32.sce | 85964808f341b7ee3ca237b2c958505656e39969 | [] | 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 | 193 | sce | ques32.sce | //ques 32
disp('Equation of tangent');
syms x a y;
f=(a^(2/3)-x^(2/3))^(3/2);
s=diff(f,x);
Y1=s*(-x)+y;
X1=-y/s*x;
g=x-(Y1-s*(X1-x));
disp('Equation is g=0 where g is');
disp(g);
|
05ebc4dcbb9d30e56216b8113c35d95d15ae3c81 | 96ddb5c7e26f4c4665fed642bcd3e7492c8b3af9 | /genqamdemod.sci | 24d9144774764a5dfc7985cbb643dda2d8dc1fd4 | [] | no_license | kUser18/comm_scilab | 8faa238d1affd5842ae20b8dbc0d59324d12b477 | c98d78ba55b73644bf32cf1f901b6c0e45d73bc2 | refs/heads/master | 2020-03-26T11:00:15.328570 | 2018-09-30T20:35:50 | 2018-09-30T20:35:50 | 144,823,988 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,293 | sci | genqamdemod.sci | function signal = genqamdemod(mod, constellation)
//
//Function Description
//genqamdemod: This function demodulates a matrix of complex baseband signals
//into a matrix of integers, according to a specified constellation.
//
//Calling sequence:-
//genqamdemod(mod, constellation)
//
//Parameters:
//m... |
87867ec6bdc619022afbbde8f6628f691ea97c2e | a1161d9e9d26e0a7b20c31269be145f13d9d3e89 | /QA/tests/h2o_qmd/h2o_scf.tst | 71c57bf4914acb27223466f359438af8cd90d5da | [
"LicenseRef-scancode-warranty-disclaimer",
"ECL-2.0"
] | permissive | nwchemgit/nwchem | c06e7e1fe11b3afad17b167f29a97c4fa3ad0fda | c5a8125298a6ea7d6eb27b07c196ea8041aa7198 | refs/heads/master | 2023-09-05T17:18:34.513866 | 2023-09-02T02:56:47 | 2023-09-02T02:56:47 | 111,318,191 | 425 | 164 | NOASSERTION | 2023-09-11T16:34:14 | 2017-11-19T17:48:21 | Fortran | UTF-8 | Scilab | false | false | 900 | tst | h2o_scf.tst | Time = 0.001
Temperature = 30.02
Energy = 0.000E+00
Time = 0.001
Temperature = 107.10
Energy = -6.849E+02
Time = 0.002
Temperature = 196.30
Energy = -6.841E+02
Time = 0.002
Temperature = ... |
40e93c259db77b299c1110499404868d42a7878c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH4/EX4.3/Ex4_3.sce | 719f7a4e05d9f2286cea29e5849076d2ade59136 | [] | 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 | 546 | sce | Ex4_3.sce | //Chapter-4,Example 4_3,Page 4-29
clc()
//Given Data:
lam=780*10^-9 //Wavelength of photon in meter
P=20*10^-3 //Power of each pulse in watts
t=10*10^-9 //Duration of each pulse
h=6.63*10^-34 //Planck's Constant
c=3*10^8 //Velocity of light
//Calc... |
9024017a1d1aea27c7e5f8163704b047bbe98167 | 449d555969bfd7befe906877abab098c6e63a0e8 | /980/CH6/EX6.10/6_10.sce | 3e52fdecd347d834db73c4ea920aad98524d3c67 | [] | 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 | 269 | sce | 6_10.sce | clc;
clear;
format('e',11);
rho_v_tf=10^-18;
rho_v_t0=1;
tf=log(rho_v_tf)/(-6.6*10^18); //from rho_v_tf=rho_v_t0*exp(-sigma/epsilone0*t) and for copper,taking sigma/epsilone0=6.6*10^18.
disp(tf,"The time taken by the charge to dissipate(in sec)=");
|
5ad36c767b5e45340df11a425aa8e2cc7446a832 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1268/CH11/EX11.19/a_19.sce | 3b6fed7496980b1d5381b8e16b25cb75e193cbba | [] | 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 | a_19.sce | clc;
disp("Example A.19")
n=100 // in rpm
omega=2*%pi*n/60
r=0.05 // radius in m
u=r*omega // velocity in m/s
gap=0.001 // in m
mew=0.5 // in kg/ms
tau=mew*u/gap
disp(tau,"Shear stress is ")
|
4032670a8140f71ca3a20f28396e80b4dd408219 | 449d555969bfd7befe906877abab098c6e63a0e8 | /154/CH7/EX7.5/ch7_5.sce | 515f4b9157fe6b0b7b04522f767b934df22531a2 | [] | 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 | 365 | sce | ch7_5.sce | clc
disp("Example 7.5")
printf("\n")
printf("Given")
disp("v(t)=cos5t+3sin(3t+45)")
//Finding the periods of individual terms
disp("Period of cos5t=2*%pi/5")
disp("Period of 3*sin(3t+45)=2*%pi/3")
//If T=2*%pi
T=2*%pi;
disp("Now T=5*T1=3*T2")
//Now the relation for T is the smallest common integral multipl... |
eb045eb1d89ec1be760496b8c37dcd93850a8d56 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH8/EX8.19/Ch08Ex19.sce | 6d455a1d17295019bcebc2fc61c65e6407286209 | [] | 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,075 | sce | Ch08Ex19.sce | // Scilab code Ex8.19 : Pg:346(2008)
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 octal ... |
9a7346a42ec5682643cc51f2bf38a5d0b882c63d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH3/EX3.15/Ex3_15.sce | b1aeb453e44b6656bad31cc04e299b1096155e2c | [] | 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,316 | sce | Ex3_15.sce | clear ;
clc;
// Example 3.15
printf('Example 3.15\n\n');
printf('Page No. 77\n\n');
// given
i_t = [20 40 60 80 100];// Insulation thickness in mm
f_c = [2.2 3.5 4.8 6.1 7.4];// Fixed costs in (10^3 Pound / year)
h_c = [10.2 6.5 5.2 4.6 4.2];// Heat costs in (10^3 Pound / year)
t_c = [12.4 10 10 10.7 11.6];/... |
c0f8ea21aba79efb64aa75b2bea8b3d9af6a2657 | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH9/EX9.3/c9_3.sce | 3046be53b9ead2cd8c1322b4b2b88df9079d1ccd | [] | 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,804 | sce | c9_3.sce | //(9.3) At the beginning of the compression process of an air-standard dual cycle with a compression ratio of 18, the temperature is 300 K and the pressure is 0.1 MPa. The pressure ratio for the constant volume part of the heating process is 1.5:1. The volume ratio for the constant pressure part of the heating proces... |
2c7e1d2d3846ba9f652acfa13e3f193b1fdedd69 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH6/EX6.13/Ex6_13.sce | 95542167f3a5e5833e52fa32f29fc8510195b09d | [] | 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 | 329 | sce | Ex6_13.sce | //Chapter 6: Electrochemistry
//Problem: 13
clc;
//Declaration of Variables
EoSn = 0.15 // V
EoCr = - 0.74 // V
// Solution
mprintf("3Sn+4 + 2Cr --> 3Sn+2 + 2Cr+3\n")
Eo_cell = EoSn - EoCr
n = 6
K = 10 ** (n * Eo_cell / 0.0591)
mprintf(" The equillibrium constant for th reaction is %.... |
c912d1f9f0824d8c1ccca1da9f8bb865f120b371 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1691/CH6/EX6.30/e6_30.sce | 293d67dfabbc19bc0009ea47cca39f72603cef3d | [] | 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,296 | sce | e6_30.sce | //example6.30
disp("The circuit used for providing proper biasing is self bias, for which the various currents can be shown in the fig 6.52")
disp("Applying KVL to base emiter loop,")
disp("(-V_BE)-(I_E*R_E)+(I*R2)=0")
disp("Theredfore (I*100)-(1+beta)*I_B*10=V_BE")
disp("100I-210(I_B)=0.5 ..(1)")
disp("Apply... |
e979969e3cf5fab86e8c4b82a3f89b3bbc3c9c81 | 676ffceabdfe022b6381807def2ea401302430ac | /library/Demos/StdRegions/Tests/StdInterp_Tri_Orth_P7_Q8.tst | 34a2f4f9e1c00a7f9cc51221169d72791057fb6d | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 534 | tst | StdInterp_Tri_Orth_P7_Q8.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>StdInterp Triangle Orthonormal basis P=7n Q=8</description>
<executable>StdInterp</executable>
<parameters>-s triangle -b Ortho_A Ortho_B -o 7 7 -p 8 8 -P GaussGaussLegendre GaussGaussLegendre</parameters>
<metrics>
<metric type="L2" id=... |
34cea54af4d4cc7d08f0575b665ed189b7ea502f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2504/CH2/EX2.7/2_7.sce | f53db92d5a72074539baa4dabebb70fef7946eb0 | [] | 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 | 2_7.sce | clc
//initialisation of variables
clear
To1= 540 //R
po3= 12.6 //lbf/in^2
l3= 3 //ft
po1= 14.7 //lbf/in^2
l1= 1 //ft
vo1= 500 //ft/sec
r= 0.83
P1= 1 //lbf/in^2
//CALCULATIONS
To3= To1*(po3*l3/(po1*l1))^r
Vo3= vo1*sqrt(To3/To1)
P3= P1*po3*l3/(po1*l1)
//RESULTS
printf ('To3 = %.f R',To3)
printf ('\n Vo3 ... |
5a0123a5f8f762411b5e421489205f51787417ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /2409/CH14/EX14.8/Ex14_8.sce | 44a7f31a3cd24be251bd5087dcd20bc567683cd8 | [] | 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 | 669 | sce | Ex14_8.sce |
//Variable Declaration
BIF=36 //Bandwidth of channel over which carriers are spread(MHz)
R=0.4 //Rolloff factor for filtering
Rb=64 //Information bit rate(kb/s)
BER=10**-5 //Bit error rate required
EbN0R=9.6 //Eb/N0 ratio for BER given from Fig.10.18
//Calculation
Rch=BIF*10**6/(1+R) //Rate of unspreaded sign... |
019bfa2798337d92cbb39f133ef9786364527b33 | ebfed86dee276110294a4e93fa80377908bbd317 | /macros/IFFT.sci | a61ee577320236b4e48755b3100104aa3e2b82d0 | [] | 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 | 1,279 | sci | IFFT.sci | // Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_... |
3b0573045ffc8fbf2057ab3f657b01c0a0e7762d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3840/CH4/EX4.4/Ex4_4.sce | 446eb9a7306694225383a797dc4daf90eee67a9d | [] | 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 | 275 | sce | Ex4_4.sce | clear
//
//
//
//Variable declaration
lamda=1.66*10**-10 //wavelength(m)
m=9.1*10**-31 //mass(kg)
e=1.6*10**-19 //charge(c)
h=6.63*10**-34 //plank constant
//Calculation
E=h**2/(2*m*e*lamda**2) //kinetic energy(eV)
v=h/(m*lamda) //velocity(m/s)
//Result
|
a0267aebb57fd9bab81ecda1e9490fd2d13b7058 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/sci2blif_added_blocks/c4_sp.sce | fa7b1eb012140d6120539d4ce4ae39c50ac36076 | [] | 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 | 3,302 | sce | c4_sp.sce | //**************************** C4 **************************************
if (blk_name.entries(bl) =='c4_sp') then
plcvpr=%t
j=scs_m.objs(blk_objs(bl)).model.ipar(1)
freq_c=scs_m.objs(blk_objs(bl)).model.rpar'
// tau1=1 ./(2*%pi *freq_c(1:j))//high
// tau2=1 ./(2*%pi*freq_c(3*j+1:3*j+j))//low
// c2... |
d0f3edbd43ef46c3c61cf116927fd92f9206a6a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH3/EX3.1/Ex3_1.sce | b372f1a5434882b70bbfb56440eee8912877ec52 | [] | 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,008 | sce | Ex3_1.sce | clc
//variable initialization
Vm= 220 //armature voltage in volts
N= 1000 //speed in rpm
N1= 900 // speed in rpm
Ia= 60 //armature current in ampere
Ra= 0.6 //armature resistance in ohm
a= 0
V= 165 //line voltage in volts
//solution
Eb1= Vm-Ia*Ra //back emf in volts
Eb2= (N1/N)*Eb1 //back emf in volts
Ea=... |
aa3025751a6077b2d851672e728e77aff6fe4dd9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1046/CH11/EX11.2/11_2.sce | 4ba889e38f4ef97177bf8ddfb98396b1c536a946 | [] | 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 | 836 | sce | 11_2.sce | //Example 11.2
//Page no. 488
//Calculate the thermal boundary layer thickness &
//local heat transfer coefficient 0.75 m from the leading edge.
//Variable declaration
Ts=200 // C,temp. of air
Ta=30 //C, temp .of surface
Va=8 //m/s, velocity of air
d=0.75 //m, distant from l... |
bfa7ab2aa6ad2c26d5e353c0b0d65b45a5bf49a6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2453/CH8/EX8.3/8_3.sce | be4d31f78a2aa51cf815e2b75ec06258bb3a8149 | [] | 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 | 536 | sce | 8_3.sce | //To calculate the concentration of intrinsic charge carriers
T = 300; //temperature, K
pi = 22/7; //value of pi
e = 1.6*10^-19;
m = 9.109*10^-31; //mass of electron, kg
k = 1.38*10^-23; //boltzmann's constant
h = 6.626*10^-34; //planck's constant
Eg = 0.7; //band gap, eV
Eg = Eg*e; ... |
4560d666eeaa78b54ce44b484fd87c2b73876c6c | 46e52b7010c1dc6beb86c615f0d59494c00e6554 | /tp3/src/tests/test8.tst | 095f7ace766ef1ec7bae2ea168d9fa70d9156cb1 | [] | no_license | impronunciable/so2015 | 22bd1cf0831c29d091a3f94bc36342ebb51b7aed | 8bdabf28dc17ca4c92a264036c0fbe9c31430de3 | refs/heads/master | 2020-04-14T12:25:47.123488 | 2015-11-10T22:00:51 | 2015-11-10T22:00:51 | 41,392,542 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,476 | tst | test8.tst | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
cccccccccccccccccccccccccccccccccccccccc
dddddddddddddddddddddddddddddddddddddddd
eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
ffffffffffffffffffffffffffffffffffffffff
ggggggggggggggggggggggggggggggggg... |
2204c2378b86f8f91d9682756db866bb06edd77d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH7/EX7.12/Ex7_12.sce | f00e51879005e112c6d5fda6319a7551c5bfb614 | [] | 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 | 701 | sce | Ex7_12.sce | // Problem no 7.12,Page no.192
clc;clear;
close;
P=3680 //KW //Power transmitted
N=110 //r.p.m
X=20000 //N*m //Energy stored
G=85 //GPa
//Calculations
//U*V**-1=X //Strain Energy per unit volume //Notification has been changed
//X=sigma_s**2*(4*G)**-1*((D**2+d**2)*(D**2)**-1)
T=P*60000*(2*%pi*N)**-1 //N*m //Torq... |
78ccdba4c9434c505697c5b2b50acd87b6e7cdc6 | 2c79f9c6e813843b91f9a901238454c1a78231cc | /Modelo_Celda_Fotovoltaica/photovoltaicCell.sci | 15248fffe2ff9b25ca36a4d3c487406ba5ef5190 | [] | no_license | jacometoss/Power_System_Modeling | 8d53eda13a44b9e3eb3ef1790f341b25cc6e47a6 | 814a0e4c839dae72b3984bf6fe7e73084ace3a84 | refs/heads/master | 2022-11-20T21:26:56.156469 | 2020-07-18T08:05:14 | 2020-07-18T08:05:14 | 258,450,422 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sci | photovoltaicCell.sci | function [V,Ivtg,P]=photovoltaicCell(Vi,Vf,N,T,G,Voc,Isc,k,q,Ns,Np,A,Ki,Eg)
h=(Vf-Vi)/N;
Tref=273+25;
Tc=273+T;
Irs=Isc/(exp(q*Voc/(Ns*k*A*Tc))-1);
Is=Irs*(Tc/Tref)^3*exp(q*Eg*(1/Tref-1/Tc)/(k*A));
Iph=(Isc+Ki*(Tc-Tref))*G;
for i = 1:N //Seccion Modificable para matriz
V(i+1)=Vi+i*h;
Iv... |
8a419ed5397809b72324f3d6412ff21aedbd0142 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3487/CH7/EX7.3/Ex7_3.sce | fa5f99a6a31b90ada4c20af8697ba0e3f10affe9 | [] | 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 | 340 | sce | Ex7_3.sce | //Chapter 7,Example 7.3 Page 223
clc
clear
E = 100
Z1 = 1/600 // 1/Z1
Z2 = 1/800 // 1/Z2
Z3 = 1/200 // 1/Z3
E11 = (2*E*Z1)/((Z1+Z2+Z3)*10^-3)
Iz2 = E11*1000*Z2
Iz3 = E11*1000*Z3
printf (" E'' = %f kV \n",E11*10^-3)
printf (" Iz2′= %f amps \n",Iz2*10^-3)
printf (" Iz3′= %f amps \n",Iz3*10^-3)
//Answers may vary due to ... |
fdfb54d7876bf7a85f0f25c54612cd2659d47e8b | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH5/EX5.15/5_15.sce | 29c15bf25f2050c74e16190dfc136fd6044e8fea | [] | 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 | 5_15.sce | clear; clc; close;
Rl = 4.7*(10^(3));
Rs = 0.3*(10^(3));
Ro = 4.7*(10^(3));
Zi = 846.1;
Zo = 4.7*(10^(3));
AvNL = -555.55; //gain under no-load condition
Av = {Rl/(Rl+Ro)}*AvNL;
disp(Av,"Voltage gain(Av) with 4.7kohm load :");
Avs = (Zi/(Zi+Rs))*(Rl/(Rl+Ro))*AvNL;
disp(Avs,"Voltage gain(Avs) from sou... |
1a4052dbe40dcbeaabefc664d93236c176495bf3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3836/CH14/EX14.5/Ex14_5.sce | 0bfc9f3d355d3bb3c3ecc331b6edf72b1b73deed | [] | 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 | 379 | sce | Ex14_5.sce | clear
//
//Initialization
l1=10 //Inductance in henry
l2=20 //Inductance in henry
//Calculation
ls1=l1+l2 //Inductance in henry
lp=((l1*l2)*(l1+l2)**-1) //Inductance in henry
//Results
printf("\n (a) Inductance in series,L = %d uH",ls1... |
388a139e1368fcd730ebccf20eb165ea1813901d | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.13_15.tst | a95bb44d818ef8961b591cf4ab7baf2867e697fd | [] | 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 | 15,341 | tst | bow.13_15.tst | 13 23:0.5 31:0.25 42:0.14285714285714285 56:0.25 100:1.0 136:2.0 148:0.5 158:0.16666666666666666 165:1.0 202:1.0 207:1.0 248:0.14285714285714285 354:0.5 908:1.0 1392:0.3333333333333333 3536:1.0 4816:1.0
13 4:0.14285714285714285 46:0.2 111:0.2 135:0.09090909090909091 191:0.2 224:0.3333333333333333 248:0.1428571428571428... |
616dd3be5f2ed3675267f9f12eef575f2ac56051 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3717/CH17/EX17.6/Ex17_6.sce | b3447465c6fd9b7b3395185bf92f415e05a756e4 | [] | 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 | 481 | sce | Ex17_6.sce | // Ex17_6 Page:335 (2014)
clc;clear;
m_n = 1.008665; // Mass of a neutron, amu
M_Na22 = 21.9944; // Mass of Na-22 atom, amu
M_Na23 = 22.989767; // Mass of Na-23 atom, amu
delta_m = M_Na22 + m_n - M_Na23; // Mass deficiency with Na-23, amu
E_B = delta_m*931.5; // Energy equivalent of mass deficiency... |
9eb853f11c22e791ed08b7b314766583d82d41f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH2/EX2.35/example2_35.sce | 323e5d1df1296ff777d059ae21279075288e6e78 | [] | 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 | 762 | sce | example2_35.sce | // Calculate V_z
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 2-35 in page 112
clear; clc; close;
// Given data
// (a) Proof of V_z=51/sigma has been given
sigmai=1/45; // Intrinsic conductivity in 1/ohm-cm
sigmap=1/3.9; // Conductivity of ... |
130a0a1708d65f21f884ea145fd771801563950f | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH3/EX3.11/11.sce | 8dd9a6b303316ab57e712c281e8e958b081e2da4 | [] | 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 | 250 | sce | 11.sce | clc
//Example 3.11
//calculate flow rate of ventilation air supply
q=5/8;//kg/hr mass evaporation rate of benzene
c=1.3*10^(-6);//kg/m^3 concentration of benzene
Q=q/c/3600//m^3/s
printf("The flow rate of ventilation air supply is %f m^3/s",Q); |
a6cd8bff45b3bd5db40696ef5aa5f56de5dcd0ef | 449d555969bfd7befe906877abab098c6e63a0e8 | /542/CH6/EX6.6/Example_6_6.sci | 99494e743efdca5fbe198200a7c70768da058164 | [] | 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,321 | sci | Example_6_6.sci | clear;
clc;
printf("\n Example 6.6");
cp = 0.85; //specific heat capacity of the air
h = [0 0.625 1.25 1.875 2.5 3.75]; //height in mm
T=[339.5 337.7 335.0 333.6 333.3 333.2];//temperature in K
deltaT = T - 333.2; //temperature difference in... |
7b05af97972536358f2e2aca909b2ca64c4ac7c0 | 6e8df5b4cc6a12833566b3b67b0160d1937be025 | /Multimorphic_testing_data_code/code/scilab/OpenCV/scripts/scilab/v2/script_generalisation_v2.sci | 873cb5446d3305a9fb4b3efeb4caf9c526a43279 | [] | no_license | templep/TSE_MM_test | 2b2cc79b9e6d46a80bf692227f367438adeca3f3 | 4d3c08489c182b77418fc5d4e55377d5b68e8334 | refs/heads/master | 2020-03-22T22:01:12.897309 | 2019-06-13T07:50:42 | 2019-06-13T07:50:42 | 140,728,734 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,338 | sci | script_generalisation_v2.sci | //a function to choose randomly a number nb_config of observations
//to remove in the range [1,l] (l being the total number of observations ; i.e., the number of line)
//inputs :
// - nb_config : number of observations to be removed
// - l : total number of observations
//outputs :
// - idx_config : randomly chosen ... |
2d4a8ec4115e51883f7b30827c8cd6ff88229826 | f1d98f30cf89c5cd6339af6cecba8f945b5ec75a | /Project/Chapt6/myfunc2.sci | 395353237c1c578834e63a3b6292adf5a224d3cd | [] | no_license | robin29man/scilab_practice | 1a43a27b7fd732fb8ad8a34e0665351467a10678 | 5dbd37cd3a0f35d238bd1cc519f903924036ed51 | refs/heads/master | 2020-05-24T16:34:56.604967 | 2019-05-22T13:32:39 | 2019-05-22T13:32:39 | 187,362,476 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 174 | sci | myfunc2.sci | function prob=myfunc2lo(n,m,data,x)
for i=[1:n]
s(i)=mean(data([1:m],i))
end
prob=0
for i=[1:n]
prob=prob+(x(i)-s(i))^2
end
prob=sqrt(prob)
endfunction
|
81345d3fbb36187a765facddc7ebbe9e62f61c71 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2855/CH12/EX12.15/Ex12_15.sce | be1dfdad92c71362fdcb4d221ab8276be65861fb | [] | 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,045 | sce | Ex12_15.sce | //Chapter 12
//page no 483
//given
clc;
clear all;
E=0.115;
fb=622; //in Mb/s
dl=4; //in nm
mt=0.1; //in dBm
mr=-31.5; //in dBm
mc=0.41; //in dB
L=25;
mco=0.12; //in dB
Nco=2;
ms=0.15; //in dB
Ns=4;
mD=1;
mH=0;
mCR=0;
sc=0.0; /... |
969c961b1faae0e859fdf00c946188ef6bccbeec | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH5/EX5.2f/eg5_2f.sce | b77d31a8b115a4d1694beb8dfea419883c2b47ae | [] | 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 | 51 | sce | eg5_2f.sce | avg = 4;
prob = cdfpoi("PQ", 3, 2*avg)
disp(prob) |
0d1d2e71e58d45406c003ffbb8837edf1df2ddcc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1523/CH2/EX2.26/2_26.sce | 9044ff37c087463fabedf42b18b07ea720b859db | [] | 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 | 2_26.sce | //Network Theorem 1
//page no-2.30
//example2.26
disp("Applying KCL to node 1:");
disp("5*V1-2*V2 = -24");....//equation 1
disp("Applying KCL to node 2:");
disp("10*V1-31*V2+6*V3 = 300");...//equation 2
disp("Applying KCL to node 3:");
disp("-4*V2 +9*V3 = 160");...//equation 3
disp("Solving equations 1,2 and 3... |
c5ccbb4154e564b0b976ba69e66c60a9fe4ae822 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH4/EX4.22/22.sci | b6e69e9fb160e48f731353cf87fa0c0b939b7038 | [] | 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 | 404 | sci | 22.sci | clc;
clear all;
disp("Time and Temperature")
L=60/1000;// m
a=1.22*10^(-5);//m^2/s
ti=30;// degree C
ta=110;// degree C
tau=1.5*60;// seconds
taumax=L^2/(4*a*0.25);
disp("s",taumax,"maximum time that the slab be treated asa semi infinite body taumax=")
x=L/2;
M=x/(2*(a*tau)^0.5);
//erfM=0.47=T1;
T1=0.47;... |
50bc1c2ae4f67a9e2dab6b53df39b948aa5f7ca8 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/KU24TZH/ATWM1_Working_Memory_MEG_KU24TZH_Session1/ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | d19cf0069045dd5e51cc82e76a8c28847fa50aef | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,381 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor... |
72077b030a4e26801145700ec29e7d6418c72854 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set4/s_Data_Communications_And_Networking_B._A._Forouzan_1163.zip/Data_Communications_And_Networking_B._A._Forouzan_1163/CH2/EX2.5/example_2_5.sce | 09be4d1ba3205b11949c4674ab12a466dc61250d | [] | 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 | 173 | sce | example_2_5.sce | errcatch(-1,"stop");mode(2);;
;
disp("--------------Example 2.5---------------")
disp("753 - A 16-bit port address represented as one single decimal number.")
exit();
|
c6477df6234d5f68aef7eeaf61ad8ada29fd6fdf | ebfed86dee276110294a4e93fa80377908bbd317 | /macros/getDepth.sci | f0c51bb5499e9a6dac836fc4a57b14461bec76ea | [] | 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 | 1,332 | sci | getDepth.sci | function depth = getDepth(src)
// Returns the depth of a matrix element
//
// Calling Sequence
// src = imread("image-location-for-src");
// depth = getDepth(src)
//
//Parameters
//src: Input 8-bit 3-channel image.
//depth: a string which denoted the depth of the src.It identifies the following
//
//CV_... |
e168fdb1ddd91249766462e72be48a0229b4273a | bdbafbcce90eb6b9aa54964c32057b8117961b58 | /OraclePH.sci | 5c8e6acf44b8df38cfe4f6f824ac5cdd203b0522 | [] | no_license | Rachine/Tp_Optim | 617191c586b46d8d44fc1bd24b24e3d3b760c851 | 68cabcb55cd4f343796d6f0f3823e4aa03edbe25 | refs/heads/master | 2016-09-05T09:23:21.650931 | 2015-05-10T20:37:58 | 2015-05-10T20:37:58 | 34,060,544 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 796 | sci | OraclePH.sci |
function [z] = lulu(qc)
Membre1=q0+B*qc;
Membre2=abs(q0+B*qc).*(q0+B*qc).*r;
Membre3=pr;
Membre4=Ar*(q0+B*qc);
z = (Membre1'*Membre2)/3 + Membre3'*Membre4;
endfunction
function [y] = deriv(qc)
Membre1=B'*(abs(q0+B*qc).*(q0+B*qc).*r);
Membre2=(Ar*B)'*pr;
y=Membre1+Membre2;
endfunction
... |
d3db44e6737bafaed5ce263ab18c653398e671ce | e806e966b06a53388fb300d89534354b222c2cad | /macros/watershed.sci | 6291739c95fac6c80eea0d07a1204d0268994627 | [] | no_license | gursimarsingh/FOSSEE_Image_Processing_Toolbox | 76c9d524193ade302c48efe11936fe640f4de200 | a6df67e8bcd5159cde27556f4f6a315f8dc2215f | refs/heads/master | 2021-01-22T02:08:45.870957 | 2017-01-15T21:26:17 | 2017-01-15T21:26:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 189 | sci | watershed.sci | function[dstImg] = watershed(srcImg)
srcMat = mattolist(srcImg)
out = opencv_watershed(srcMat)
channels = size(out)
for i = 1 : channels
dstImg(:,:,i) = out(i)
end
endfunction
|
7d056dcc7318b0f3fd2bdf9f7ede7e0ee9b319d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /710/CH4/EX4.3/4_3.sci | be2c7c1e8159c335c320c78d146405a433a7a008 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sci | 4_3.sci | clc();
clear;
//To calculate the bandwidth
lambda=600*10^-9;
mew=2;
teta=0.025; //wedge-angle
x=(lambda/(2*mew*sind(teta)))*10^2 //bandwidth
printf("The bandwidth is %f cm",x); |
2d7ac4361ac37603e38052e4ba80212195c35ef5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /196/CH3/EX3.18/example_3_18.sce | 95604e073db8cbc6d75951237a6a66fbbdf98af3 | [] | 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 | 254 | sce | example_3_18.sce | //Chapter 3
//Example 3-18
//ProbOnEquilibriumTime
//Page 73,Figure 3-17
clear;clc;
//Given
Ri=10^5;//in ohm
C=10^-6;//in farad
T=3*Ri*C;//Time constant
ETime=5*T;//equilibrium time
printf("\n\n Value of Equilibrium Time = %.4f s \n\n",ETime) |
5c6c42080cb2f3fa1cab6aebf93a6973c130de37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH7/EX7.3/example_3.sce | 2bdb3166af87c5215c0bcaf106be5cc75d7e82ac | [] | 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 | 621 | sce | example_3.sce | clc
clear
printf("example 7.3 page number 305\n\n")
//to find the change on rate of reaction
//part 1
//rate equation r = kC_NO^2*C_O2
//if pressure increases 3 times
r = 3^2*3; //according to the rate reaction
printf("reaction reate will be increased by with 3 times increase in pressure = %f times",r)
... |
0483939af1fb3a06ea997ef2e3f6a7895cf23854 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/C45-C/results/C45-C.vowel-10-1tra/result5.tst | 235b7b68418d83f8a3cbf1ea5249d5063a954e32 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 980 | tst | result5.tst | @relation vowel
@attribute TT integer[0,1]
@attribute SpeakerNumber integer[0,14]
@attribute Sex integer[0,1]
@attribute F0 real[-5.211,-0.941]
@attribute F1 real[-1.274,5.074]
@attribute F2 real[-2.487,1.431]
@attribute F3 real[-1.409,2.377]
@attribute F4 real[-2.127,1.831]
@attribute F5 real[-0.836,2.327]
@attribute... |
c5d9c8e4010f1b6f7bc8b2a0e5c988b08ff87558 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH5/EX5.45/5_45.sce | b2bfd8acd721b6a6d7968faef07f83758f789868 | [] | 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 | 131 | sce | 5_45.sce | P=1;
a=0.5;//dissociation constant//
Kp=(a^2*P)/(1-a^2);
printf('Total pressure required to bring 50 percent dissociation=P=3*Kp'); |
f6cc3a270a9a6deaf7c6a5a64739deef8b1cc0e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1802/CH7/EX7.3/Exa7_3.sce | 9ff1e4676fac691a4c76185e38b1fa0cd3384d64 | [] | 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 | 707 | sce | Exa7_3.sce | //Exa 7.3
clc;
clear;
close;
//Given data :
format('v',6);
l=250;//in meter
VA=230;//in volt
VB=232;//in volt
r=0.5;//in ohm/km
r=0.5/10^3;//in ohm/m
RAC=r*50*2;//in ohm
RCD=RAC;RDE=RAC;REF=RAC;RFB=RAC;//in ohm
//VA-VB=VAC+VCD+VDE+VEF+VFB;//in volt
Ia=(VA-VB+15)/(5*RAC);//in Ampere
IAC=Ia;ICD=IAC-20;IDE... |
fd06affb1a31c05b457162b2e139c6a460e66272 | 244971ae8af51184d278cdc2be1c80775413adae | /SSSoModLin.sci | d7a979bf93310062cb9f275f5cfae6c848e64de9 | [] | no_license | MSCA-SIMFREE/748767 | 5879f1f139b608c7cd2f1bd62325b281c9c1e7d1 | 4726206e514f1e47e939e73b9339c056057866db | refs/heads/master | 2020-12-27T15:21:13.646362 | 2020-02-03T11:40:00 | 2020-02-03T11:40:00 | 237,951,088 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 808 | sci | SSSoModLin.sci | // The code was developed under Horizon2020 Framework Programme
// Project: 748767 — SIMFREE
function Out=SSSoModLin(In,V)
// Linear Optical Modulator
//
// Calling Sequence
// Out=SSSoModLin(In,V))
//
// Parameters
// In : Optical Input
// V : Modulating Signal
// Out : Opt... |
948d7605b5efe86924b4ff7650e8b5eb6e79bc08 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1394/CH8/EX8.5.3/Ex8_5_3.sce | e91b87cb55236a90d37411a3bd746ed58c2d9251 | [] | 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 | Ex8_5_3.sce |
clc
//Initialization of variables
k1 = 3.0*10^-4 // m.t.c in benzene in cm/sec
k2 = 2.4*10^-3 // m.t.c in water in cm/sec
ratio = 150 // Solubility ratio in benzene to water
//Calculations
K1 = (1/((1/k1)+(ratio/k2)))*10^5 // Overall m.t.c through benzene phase in x*10^-5 cm/sec
//Results
printf("The overall M... |
77af58f249a40ef0744fd716884dceeb313f58dd | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/m2sci/sci_menu.sci | 45c7add01eda01d659bd7df2a93af16b676df15a | [
"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 | 213 | sci | sci_menu.sci | function [stk,txt,top]=sci_menu()
// Copyright INRIA
txt=[]
RHS=[]
for k=2:rhs
RHS=[RHS stk(top-rhs+k)(1)]
end
dlg=stk(top-rhs+1)(1)
c=lhsargs(RHS)
stk=list('max(x_choose('+c+','+dlg+'),1)','0','1','1','1')
|
068889de5fd6be96a1f9fa0e0d0afbe61078c879 | 1485852dd59aafc286600126cf832a32e10f117f | /tests/illuminationChange/test4.sce | 5bc0a166cb69eb69a8411fa633b7ef82b777f687 | [] | no_license | rg77/Scilab-Image-Processing-And-Computer-Vision-Toolbox | dec9fbbce32cfd1eab3c45ccb29c89aaa1384758 | 8adb116da3a9c29a32e5e0727105aff571e5b374 | refs/heads/master | 2020-12-02T16:14:45.282650 | 2017-07-07T10:12:04 | 2017-07-07T10:12:04 | 96,524,257 | 0 | 0 | null | 2017-07-07T09:43:50 | 2017-07-07T09:43:50 | null | UTF-8 | Scilab | false | false | 144 | sce | test4.sce | src = imread("../images/color2.jpeg");
mask = roiFreeHand(src);
c=illuminationChange(src,mask,1.3,0.6,7) //wrong no of input arg
imshow(c);
|
e297d97ce09902e6f1ab85df90b62e51acdafc94 | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/allpasslp2bs/test_6.sce | 25d0fa220e32241b1618c6ca8453a64a24d713ac | [] | no_license | shreniknambiar/FOSSEE-DSP-Toolbox | 1f498499c1bb18b626b77ff037905e51eee9b601 | aec8e1cea8d49e75686743bb5b7d814d3ca38801 | refs/heads/master | 2020-12-10T03:28:37.484363 | 2017-06-27T17:47:15 | 2017-06-27T17:47:15 | 95,582,974 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 249 | sce | test_6.sce | // Test #6 : Input Argument #2 range test
exec('./allpasslp2bs.sci',-1);
[n,d]=allpasslp2bs(0.4,[-4,0.39]);
//!--error 10000
//Wt must lie between 0 and 1
//at line 46 of function allpasslp2bs called by :
//[n,d]=allpasslp2bs(0.4,[-4,0.39]);
|
1ac2ac2c80f12e628861d84ba663f2f87db64f2d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3812/CH11/EX11.9/11_9.sce | 86f4ed78ff3460a44c1d145a32637b751bc11528 | [] | 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 | 158 | sce | 11_9.sce | //Example 11_9
//Find state space representation of the system
clc;
clear;
s=%s;
tf=syslin('c',((3*s+7)/((s+1)*(s+2)*(s+5))));
ss=tf2ss(tf);
disp(ss)
|
4f81d37aaff13caf540387b9ac1ddb7e37b14061 | 01697f0dc71290a6b6e233849a73d19a883845f1 | /sem04/lab06/l06q03.sce | 4cd963a2241345e09837779d1d5b09f20884f46d | [] | no_license | aaruni96/Math-Lab | 5d83a13547308bd9d1b7daa28be29a49e1020fbd | 488469c9aba9251f5725e0851fb19e2aef38d234 | refs/heads/master | 2021-01-12T06:29:53.790743 | 2018-04-27T09:21:40 | 2018-04-27T09:21:40 | 77,370,232 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 390 | sce | l06q03.sce | clc;
clear;
x=1:8;
printf("\nX values");
disp(x);
y=[1,8,27,64,125,216,343,512];
printf("\ny values");
disp(y);
X=7.5;
n=length(x);
h=x(2)-x(1);
p=(X-x(n))/h;
sum1=y(n);
term=1;
printf("\nDifference Table");
for i=1:n-1
for j=1:n-i
y(j)=y(j+1)-y(j);
printf("\t%d",y(j));
end
term=term*(p+i-1)/i;
sum1=sum1+term*y... |
9c0a82a0c7baa9931f39d502c47157c178b61718 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH7/EX7.16/Ex7_16.sce | fc08bc97c166cc169c0fe173e77c835db536ecc3 | [] | 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 | 124 | sce | Ex7_16.sce | clear
//Given
a=0.8
//Calculation
H=a**2
H1=(1-H)*100
//Result
printf("\n Decreased percentage is %0.3f percentage", H1)
|
616b8c6a722a966689986bf79e303eb028573a2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1580/CH7/EX7.1/Ch07Ex1.sce | c974f019d88ee0e538159dd946ad781384b23ec1 | [] | 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 | 518 | sce | Ch07Ex1.sce | // Scilab Code Ex7.1: Page-7.23 (2004)
clc;clear;
C = 2e-6; // Capacitance, farad
V = 1000; // Applied Voltage, volt
W = C*V^2/2; // Energy stored in capacitor, joule
er = 100; //Electric permittivity
Co = C/er; // New Capacitance without dielectric, farad
Wo = Co*V^2/2; // New Energy without die... |
4ff2d6590dbb76d3fbc9eb8cba4dbe17e41c093f | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/m2sci/%p2sci.sci | 4f3a69b590ce07dc0a7aff8eb535ff54fbaa5268 | [
"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 | 309 | sci | %p2sci.sci | function [stk,txt,top]=%p2sci()
// ^
//!
// Copyright INRIA
txt=[]
s2=stk(top);s1=stk(top-1);
[s1,te1,t1,m1,n1]=s1(1:5);
[s2,te2,t2,m2,n2]=s2(1:5);
//
if te2=='2' then s2='('+s2+')',end
if te1=='2' then s1='('+s1+')',end
if part(s2,1)=='-' then s2='('+s2+')',end
stk=list(s1+'^'+s2,'2',m1,n1,'1')
top=top-1
|
20743082ca8cfbd771d91c2ccaabcfe4679280e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /462/CH7/EX7.1/ex_7_1.sce | 0eeed6e7758c94e693ae987e76b2e78e9ca67289 | [] | 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 | 691 | sce | ex_7_1.sce | //example 7.1//
clc
//clears the screen//
clear
//clears the command window//
e=input('Enter the enable i/p level (1or0) :');
//accepting the input of enable//
r=input('enter the R i/p level(1or0):');
//accepting the inputs from the user//
s=input('enter the S i/p level(1or0):');
//accepting the input S from ... |
9bf54b6c9a3500f02c57555bcdf169d76bde6b55 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH12/EX12.37/Ex12_37.sce | b95dfb74bcd1e982817c349d75d076d6b1482669 | [] | 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 | 340 | sce | Ex12_37.sce | //Initilization of variables
V_ao=29.3 //ft/s
OA=50 //ft
theta=45 //degrees
OB=50*sqrt(2) //ft
//Calculations
w_ao=V_ao/OA //rad/s
V_bo=V_ao*cosd(theta) //ft/s
w_bo=V_bo/OB //rad/s
//Result
clc
printf('The angular velocity with respect to the observer is %frad/s\n The angular velocity after moving 50ft is %f... |
c0761237ce5b65f668c99ff4965a9c30704f42bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1544/CH2/EX2.15/Ch02Ex15.sce | ffef3b98acb012ce8af349c385084d58a2414c4f | [] | 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 | 591 | sce | Ch02Ex15.sce | // Scilab code Ex2.15: Pg 67 (2008)
clc; clear;
l1 = 600e-03; // Scale reading, metre
l2 = 745e-03; // Scale reading, metre
l_s = 509.3e-03; // Total scale length, metre
E_s = 1.0186; // Source voltage, V
E1 = ( l1/l_s )*E_s; // Voltage drop across length l1,... |
729f6a0d2021b5ef8baba6e2d69b8a8c56975b66 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH1/EX1.5/ch1_ex_5.sce | e429211339d314e446839aaf1e167c51c146249e | [] | 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 | 906 | sce | ch1_ex_5.sce | //CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
//Example 5
disp("CHAPTER 1");
disp("EXAMPLE 5");
//VARIABLE INITIALIZATION
r1=2; //in Ohms
r2=4; //in Ohms
r3=8; //in Ohms
r4=8; //in Ohms
r5=2; ... |
52d3934753040305dbdf5ca975582697d40c6086 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH9/EX9.10/Ex9_10.sce | d6029c9241bfce9cea22b146cf2246889986c1c8 | [] | 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 | 720 | sce | Ex9_10.sce | clc;clear;
//Example 9.10
//from 9.2
r=8;
T0=290;
T1=290;
T2=652.4;
T3=1575.1;
P2=1.7997;
P3=4.345;
qin=800;
qout=381.83;
wnet=418.17;
Tsource=1700;
//constants used
R=0.287;//in kPa-m^3/kg-K
//calculations
//s1=s2 ; s3=s4
s03=3.5045;
s02=2.4975;
s32=(s03-s02)-R*log(P3/P2);//s32 stands for s3-... |
7ef0fa4fe06dc48dab5b6d60c8b9414b2f989fa3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH2/EX2.2/Ex2_2.sce | c050c3bd30a88e8c54c7bcfd1e8e940ebf282cd6 | [] | 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 | 335 | sce | Ex2_2.sce | //Ex2_2 Pg-87
clc
disp("sigma = u*e*n")
u=1200 //mobility
e=1.6*10^(-19) //electron charge
n=10^13 //phosphorous concentration
sigma=u*e*n //conductivity
printf("\n Conductivity of pure silicon crystal = %.5f ohm^(-1)/cm \n",sigma)
rho=1/sigma //resistivity
printf("\n Resistivity of pure phosphorous = %.0f oh... |
8b680ff1455e6e3fbdf9f8de04bae5c9668eee36 | 60acf54211c534dae12601541518c7f3692c9899 | /Linux/scripts/hs.search.Add.sce | f00c051f91ed2094db3a57214672515acac3b403 | [
"MIT"
] | permissive | webappcreations/dotLinux | 67159a42510e60d18f059f7c9ac955eee1c3e4f2 | aac20d0ed2ff28b2701febbe49a0152cb94f50da | refs/heads/master | 2021-05-09T10:35:02.938723 | 2018-03-19T16:14:37 | 2018-03-19T16:14:37 | 118,967,881 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 648 | sce | hs.search.Add.sce | 17 okular /localhost/ObjektO/Addison.Wesley.PHP.5.3.MySQL.5.1.-2009.pdf&
96 zathura 450_Adressenliste_MC_20110829.pdf
97 zathura /localhost/ObjektO/Addison.Wesley.PHP.5.3.MySQL.5.1.-2009.pdf
98 zathura /localhost/ObjektO/Addison.Wesley.PHP.5.3.MySQL.5.1.-2009.pdf
32 zathura 450_Adressenliste_MC_2... |
476477fb72f5e674226c5b4b36a03bc44392dd87 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/BIPO/RU62HEJ/ATWM1_Working_Memory_MEG_RU62HEJ_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce | ad213e734da74e2394d636d391808b9920f652b8 | [] | 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... |
4589a656d5e23fd593565c2c9722ebb22f128584 | 8712e7b4614b1ab648f19bcce8ca17e378876546 | /Scilab Com Interface Grafica/Engine/A1_INTERFACE.sce | 6c3ba19c511746ddcca15c87c8dad42e9e3acfdd | [] | no_license | Diogo-Rossi/Mestrado-Diogo-Rossi | d0d476d878c729c44778ea8f364c50c5464fc751 | d544d3bce094931eb96a6031aaa1ae1a833d2b04 | refs/heads/master | 2022-08-26T22:28:04.339221 | 2022-07-11T00:25:21 | 2022-07-11T00:25:21 | 236,889,761 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 16,312 | sce | A1_INTERFACE.sce | // INTERFACE GRÁFICA DO PROGRAMA DA DISSERTAÇÃO
//@ Figura principal
deff("Fechar(win,x,y,ibut)",["if ibut==-1000 then";"close(win)";"quit";"end"])
clear o;
//o.figure_position = [0 0]
o.figure_size = [1366 742]//get(0, "screensize_px")(3:4) - [0 40]
o.layout = "border... |
f6fb539597157f1cb2ecb87cdc43972b8ca8909c | 449d555969bfd7befe906877abab098c6e63a0e8 | /698/CH17/EX17.8/P8_spiral_bevel_gear.sce | d6e246a06e000709ea572c0c52dcea1d20d0f76a | [] | 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,671 | sce | P8_spiral_bevel_gear.sce | clc
//Example 17.8
//Spiral bevel gear
//------------------------------------------------------------------------------
//Given data
//Gear ratio
G=4/3
//dimensions of pinion
dp=0.15 //m
rp=dp/2
b=0.05 //m
//speed
np=240 //rpm
//module
m=5*10e-3 //m
//pressure angle
phi_n=14.5 //degrees
//spiral an... |
6930c31ca1e7523ccbdfde07a9e09c1f524eb8a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH6/EX6.3/6_3.sce | 38e8349f442fa1b0ee71732e3a9edab219e58973 | [] | 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 | 706 | sce | 6_3.sce | //maximum mechanical advantage and maximum efficiency
//Effort
P=150 //N
W=7700 //N
MA=W/P //mechanical advantage
//If efficiency=60%
eff=0.6
VR=(MA)/(eff)
//When an effort of 250 N raised a load of 13200 N
P1=250 //N
W1=13200 //N
MA1=(W1)/(P1)
eff1=MA1*100/VR //percent
//assume law of machine as P=... |
e0f2b4fbae19ddb76358dc7fbc15c7737e68469a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2885/CH1/EX1.3/ex1_3.sce | 87d8749d2513e1447811542504a507ebeb325ff1 | [] | 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 | 880 | sce | ex1_3.sce |
//Find the equivalent current source
clear;
clc;
//soltion
//given
Vs=2;//Volts //dc voltage source
Rs=1;//ohm //internal resistance
Rl=1;//ohm //load resistance
Ise=Vs/Rs;//ampere //equivalent current source
// In accordance to figure 1.23a
Il1=Ise*(Rs/(Rs+Rl))... |
18ac8a301cfb3ed56818357629ca0dd4cb74a8de | c88f425345e1bef1a882d37f1759c2d438113204 | /earth.sci | 33b4c6999aea67ae51bcc538d8391f7990fe9c63 | [] | no_license | NnataKha/Fire-Water-Model | fb2550e59d41bac5f0bab70659f49e11694ec4d9 | ecfb61b9593583678991c22dac7da11857f4c4ae | refs/heads/master | 2020-03-16T18:42:15.863932 | 2018-05-10T10:47:21 | 2018-05-10T10:47:21 | 132,883,725 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,509 | sci | earth.sci | clear;
n = 10; // # of cells in a row
m = 4; // # of steps
function y=moduln(x)
if x==n/2 then y=n
else y=modulo(x+n/2,n)
end
endfunction
cp = -1;
cr = -1;
con_coef = 1;
pos_coef = 1;
//sun energy = fire
for i=1:n/2
for j=1:n
sun(i,j)=sin((2*j-1)*%pi/(2*n))*sin((2*i-1)*%pi/... |
9eb492917d7cf809bf7888096c0ae61611b7af7e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH7/EX7.13/Ex7_13.sce | d9b5906c4a3adacd2e5de6ab949859019d40915e | [] | 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 | Ex7_13.sce | //Example 7.13
Energy=1000;//Energy (kJ)
E_by_time=400;//Rate of energy consumption (W)
Time=Energy*10^3/E_by_time;//Time (s)
printf('Duration of bicycling required per day = %0.1f min',Time/60)
//Discussion
Fat_loss=Energy*1/39;//Fat loss if energy content of fat is assumed to be 39kJ/g (g)
printf('\nDiscussion... |
b85ba2b89df58d419d3bd3c6612856cdb3acde51 | fcec29e592f4bcf7d8bd215b4aff1152b2c2eea5 | /test/eunit.create.tst | ca33bde96d2d907e4df83def82b22e160ec84318 | [
"Apache-2.0"
] | permissive | idau2012/sqlparse | c79a95e7fa89cc36e99942501c20946e2aebb044 | 4390d99be81faae22e7b7d5fbdcb09cba5ffd8ca | refs/heads/master | 2022-04-10T01:46:15.934869 | 2020-03-11T15:13:58 | 2020-03-17T09:49:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 58,104 | tst | eunit.create.tst | %%-*- mode: erlang -*-
%%-*- coding: utf-8 -*-
% Test control options
[{tests, []}].
%% =============================================================================
%% TESTS: CREATE INDEX & CREATE ROLE & CREATE TABLE & CREATE USER
%% -----------------------------------------------------------------------------
% %%... |
c1c6f21c5a209762903e9025283ef8d706184448 | c565d26060d56f516d954d4b378b8699c31a71ef | /Scilab/virtual_old/Sine_Analysis/TFbode.sce | 119855cc2e6e3e626662db7c71b3f00548ef1ecc | [] | no_license | rupakrokade/sbhs-manual | 26d6e458c5d6aaba858c3cb2d07ff646d90645ce | 5aad4829d5ba1cdf9cc62d72f794fab2b56dd786 | refs/heads/master | 2021-01-23T06:25:53.904684 | 2015-10-24T11:57:04 | 2015-10-24T11:57:04 | 5,258,478 | 0 | 0 | null | 2012-11-16T11:45:07 | 2012-08-01T11:36:17 | Scilab | UTF-8 | Scilab | false | false | 199 | sce | TFbode.sce | s=poly(0,'s')
dt=10;//delay time
//h=syslin('c',((0.510/(65.49*s+1))))//transfer function using first order pade' approximation
tf=((0.475/(36*s+1))*((-dt/2)*s+1/(dt/2)*s+1));
bode(h,0.001,10);
|
02e5f0032da7c75b867db5e470bb21c6700ff861 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH2/EX2.16/2_16.sce | b68216c3b20b65b8abc1d5bdd89f0eec892648fa | [] | 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 | 443 | sce | 2_16.sce | clear;
clc;
A= 1.5e-4;
Deff=39.8e-3;
D= 8;
rho1=1.73e-6 / 100;
l=1e3;
f=50;
V=132e3;
//(a)
R= rho1 * l / A;
r=.5 * Deff;
L= .4605 * log10 (D/(.7788 *r));
mprintf("L = %.2f mH/km\n",L);
C= .02412/(log10 (D/r));
mprintf("C = %.5f e-6 F/km\n",C);
//(b)
Ic = 2 * %pi * f * C *1e-6 * V / sqrt(3);
mp... |
dac6ca4c7d69e66faaaabcb69241e79897f0dede | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Shooting while falling 30 Targets.sce | 8d7cb8fb1b98aa14b2274a74050239fa9646f4bb | [] | 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 | 90,578 | sce | Shooting while falling 30 Targets.sce | Name=Shooting while falling 30 Targets
PlayerCharacters=Player
BotCharacters=TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;T... |
d02db7e829fb07f14a367818fb69590755b0d851 | 884ad2a560fb0026e11e5304eadc240a5cb0caa5 | /TEST/elist.tst | bea36127abb9257e7e4e14ccfcff4580dfd72d5a | [] | no_license | ihgazni2/elistjs | 592d4803bd19cc4aae24bacb689d11fe51825f9e | 7c16895b95734bbf070fb1f13b67547baf9d9589 | refs/heads/master | 2020-07-10T16:39:31.063550 | 2020-01-10T10:38:06 | 2020-01-10T10:38:06 | 204,313,139 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 197 | tst | elist.tst | function map_func(i,v,x,y,z) {
console.log(i)
console.log(v)
console.log(x)
console.log(y)
console.log(z)
}
mapfivo(arr,Array(3).fill(map_func),Array(3).fill(['a','b','c']))
|
9861f244d455f62e5c00d402f7cba66da6a91763 | 449d555969bfd7befe906877abab098c6e63a0e8 | /530/CH3/EX3.7/example_3_7.sce | f69b48086b4f50c872583ef954d8f0d5fafbd7e8 | [] | 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 | 797 | sce | example_3_7.sce | clear;
clc;
// A Textbook on HEAT TRANSFER by S P SUKHATME
// Chapter 3
// Thermal Radiation
// Example 3.7
// Page 134
printf("Example 3.7, Page 134 \n\n")
// This is a theoretical problem with no numerical data
printf("This is a theoretical problem with no numerical data \n");
// Considering an el... |
eae36a1f99742f911cdeb2467df10c2e860a95f6 | 2c78de0b151238b1c0c26e6a4d1a36c7fa09268c | /quality/test/garant6x/Новые возможности 6_4.TST | 1ab631c9c6f4db3bff0a124bdba3ae50327bec36 | [] | no_license | bravesoftdz/realwork | 05a3b308cef59bed8a9efda4212849c391b4b267 | 19b446ce8ad2adf82ab8ce7988bc003221accad2 | refs/heads/master | 2021-06-07T23:57:22.429896 | 2016-11-01T18:30:21 | 2016-11-01T18:30:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 373,765 | tst | Новые возможности 6_4.TST | {\rtf1\adeflang1025\ansi\ansicpg1251\uc1\adeff0\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1049\deflangfe1049\themelang1049\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset204\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times New Roman};}
{\f1\fbidi \fswiss\fcharset204\fprq2{\*... |
abee4e3dc13cb62363fad02852c792b21a7a6c99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1538/CH5/EX5.2/Ex5_2.sce | f6b31838dc78e686b5a7b84c77e8fea2e967b9fe | [] | 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 | 459 | sce | Ex5_2.sce | //example-5.2
//page no-141
//given
//bragg's angle of reflection
theta1=17.03*(%pi)/180 //radians
//wavelength of light
lambda=0.71 //A
//according to bragg's equation
//n*lambda=2*d*sin(theta)
//for n=1
d=lambda/2/sin(theta1) //A
//given that h^2+k^2+l^2=8
//let (h^2+k^2+l^2)^1/2=H
//we get
H=sqrt(8... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.