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
c7f3c2b3ad5f76dafb687f8c46c0ec7c4744afb2
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/DT87NVH/ATWM1_Working_Memory_MRI_DT87NVH/ATWM1_Working_Memory_MRI_Salient_Cued_Run1.sce
f7ba633fed8216cd1ae0a1a5b41e7266dbec149e
[]
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
12,442
sce
ATWM1_Working_Memory_MRI_Salient_Cued_Run1.sce
# ATWM1 MRI Experiment scenario = "ATWM1_Working_Memory_MRI_salient_cued_run1"; scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen #scenario_type = trials; scan_period = 2000; # TR pulses_per_scan = 1; pulse_code = 1; #pulse_width=6; default_monitor_sounds = fa...
6fcc9796c98c48e2833289ea7a12bdd6073ecd43
f95a4301aef1a5e8894c410a4841c1bd95c7b14c
/chebyshev/stiffivpsolvercheb.sce
7549d99daafa07e6e6d1117089ef322c7aba33c8
[]
no_license
e-scheiber/scilab-ivpsolvers
ee827f13a23d483be1e0863551a3fd314b94ddfc
0db0a69d57c1f958880d391f268648258f9f984b
refs/heads/master
2021-01-15T10:42:41.821051
2017-08-07T16:26:26
2017-08-07T16:26:26
99,597,309
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,610
sce
stiffivpsolvercheb.sce
function [u,x]=stiffivpsolvercheb() // Dispatcher function // Initializes the data [deri,x0,y0,h,n]=datas() // Calls the IVP solver [u,x,Nf]=picard(deri,x0,y0,n,h) printf('Number of calling f : %d\n',Nf) // Computes the real solutions s=zeros(n+1,length(y0)) for i=1:n+1 do ...
609104a68bdaa85a75b1330971b941e1015a17fc
449d555969bfd7befe906877abab098c6e63a0e8
/542/CH11/EX11.9/Example_11_9.sce
f0e4edef68f603e76a9fa5dac5a1d445b2bda6af
[]
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
495
sce
Example_11_9.sce
//Example 11.9 clear; clc; printf("\tExample 11.9\n"); xA_d=0.9; xA_s=0.1; xB_d=1-xA_d; xB_s=1-xA_s; a=2.4; xd=0.9; xf=0.4; xw=0.1; n=(log(xA_d*xB_s/(xB_d*xA_s))/log(a))-1; printf("\nNo. of theoretical plates in column is : %d",n); Rm=((xd/xf)-(a*((1-xd)/(1-xf))))/(a-1); printf("\nMinimum ref...
45167dde5a1c29af8ad191ef5a0296feb424fbe2
449d555969bfd7befe906877abab098c6e63a0e8
/1026/CH6/EX6.6/Example6_6.sce
8b26dd4741c96fba01117fbeb26d62c1b4b61691
[]
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
207
sce
Example6_6.sce
//chapter6,Example6_6,pg 123 ni=2*10^19 e=1.6*10^-19 up=0.17 un=0.36 V=2 A=10^-4 d=0.3*10^-3 I=(ni*e*(up+un)*V*A)/d printf("current produced in Ge-plate\n") printf("I=%.4f A",I)
f3883785576bc990c0045596ab3aaf5d787952e8
449d555969bfd7befe906877abab098c6e63a0e8
/2783/CH1/EX1.2/Ex1_2.sce
492d9ebea39361c3bfb71b87956e3b5bf19c2114
[]
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
215
sce
Ex1_2.sce
clc //initialization of new variables clear t=2 //cm thickness U=3 //m/s Velocity mu=0.29 //kg/m s Coefficient of Viscocity //calculations tau=mu*U/(t*10^-2) //results printf(' Shear = %d N/m^2',tau)
31b84d5ba8109e261924a876b8213ac322a6835e
449d555969bfd7befe906877abab098c6e63a0e8
/1076/CH3/EX3.34/3_34.sce
ea117c64e3d20ec71c84180bf76ef1f418a2be99
[]
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
853
sce
3_34.sce
clear; clc; sg1=10 sg2=20 st1=10 st2=10*3; vg1=6.6; vg2=11.5; vt1a=6.6 vt1b=115 vt2a=75*sqrt(3); vt2b=7.5*sqrt(3); nt1=vt1b/vt1a; nt2=vt2b/vt2a; xg1=.1 xg2=.1 xt1=.15 xt2=.1 Sb=20; Vb1=6.6; Vb2=Vb1*nt1; Vb3=Vb2*nt2; Xg1=xg1*Sb/sg1; Xg2=xg2*Sb/sg2; Xt1=xt1 * Sb/st1; Xt2= xt2 * Sb/st2 *...
7869a14b69df0fbc3f96879e02f61f46f019bad4
449d555969bfd7befe906877abab098c6e63a0e8
/1646/CH15/EX15.1/Ch015Ex1.sce
0da3668c6c4a4e7d67f9ef7d9fd0e836af74468c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
454
sce
Ch015Ex1.sce
// Scilab code Ex15.1 : Pg:771(2011) clc;clear; function [bin]= decimal_binary(n) // Function to convert decimal to binary bin = 0; i = 1; while (n <> 0) rem = n-fix(n./2).*2; n = int(n/2); bin = bin + rem*i; i = i * 10; end endfunction n = 25; // Initialize...
8a86b43e3915a4902e24c362e8a38d6b5c47b24c
ac66d3377862c825111275d71485e42fdec9c1bd
/Resources/res/map/map1303.sce
ed51ee67444838da4d87a64c35e7c58f0666b1ed
[]
no_license
AIRIA/CreazyBomber
2338d2ad46218180f822682d680ece3a8e0b46c3
68668fb95a9865ef1306e5b0d24fd959531eb7ad
refs/heads/master
2021-01-10T19:58:49.272075
2014-07-15T09:55:00
2014-07-15T09:55:00
19,776,025
0
2
null
null
null
null
UTF-8
Scilab
false
false
2,752
sce
map1303.sce
<?xml version="1.0" encoding="UTF-8"?> <Project Name="map1303" Width="13" Height="13" CellSize="40" BackgroundSize="1" Background="11plus.png"> <Cell Name="冰雕" X="1" Y="1" /> <Cell Name="冰块" X="2" Y="1" /> <Cell Name="贝壳" X="3" Y="1" /> <Cell Name="冰雕" X="5" Y="1" /> <Cell Name="冰雕" X="8" Y="1" /> <Cell Na...
fc56acb38b7d72ac6b82b028a6a97e92575025c5
8236d6101d21f50dda499c4ead7862c922885aee
/Scilab/Filters/BP.sce
5d363c8f94e23d342ede74242b65496a7787da2a
[ "MIT" ]
permissive
manasdas17/NightcoreThis
fdd498dc39ad870b7439e3bdaf63fa3e4fa97b56
fce141ad69f159e4cd4d9e741c6603761d882411
refs/heads/master
2021-01-22T09:04:10.071096
2016-01-30T11:27:52
2016-01-30T11:27:52
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,324
sce
BP.sce
Fss = 16000; //the bitrate of the song Speed = 1; //how fast the song will be played [testsign,Fs,bits]=wavread("SCI/modules/sound/demos/filterTest2(anja).wav"); //reading the wav (music) file in a matrix //[testsign,Fs,bits]=wavread("SCI/modules/sound/demos/filterTest1(H-style).wav"); testsign = testsign(1,:); //wh...
b7260070a2ba8d028fa1a4cada78c25d269c7f15
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH19/EX19.01/19_01.sce
9dbde486764710a532a4657c5638f3f8d4fdefae
[]
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
501
sce
19_01.sce
//Problem 19.01: Three loads, each of resistance 30 ohm , are connected in star to a 415 V, 3-phase supply. Determine (a) the system phase voltage, (b) the phase current and (c) the line current. //initializing the variables: Vl = 415; // in Volts Rp = 30; // in ohms //calculation: Vp = Vl/(3^0.5) Ip = Vp/Rp...
1708b996e79af5946255df66699ce0635a62b22e
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/Restroom Aimer.sce
344eab623670b9a7c2e9bd026c2b671f1779f9f5
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
99,779
sce
Restroom Aimer.sce
Name=Restroom Aimer PlayerCharacters=RA Player BotCharacters=RA Bot Rotation.rot IsChallenge=true Timelimit=45.0 PlayerProfile=RA Player AddedBots=RA Bot Rotation.rot PlayerMaxLives=0 BotMaxLives=0 PlayerTeam=1 BotTeams=2 MapName=restroom.map MapScale=1.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer...
5f5e011a535758bc76d0d0a926464c90f48a6abb
449d555969bfd7befe906877abab098c6e63a0e8
/1226/CH20/EX20.31/EX20_31.sce
6f2fbf09628921f7bf8a176097b3de5a7fec12c8
[]
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,139
sce
EX20_31.sce
clc;funcprot(0);//EXAMPLE 20.31 // Initialisation of Variables ps=1;.........//Suction pressure in bar t1=273+125;.......//Delivery temperature in K pd=160;...........//Delivery pressure in bar tm=40+273;........//Min temperature ts=298;........//Suction temperature in K n=1.25;......//Adiabatic index cv=0.71;....
0eaed5544fa02edd696200c8bda5c0d150dfbc96
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH6/EX6.2/example6_2.sce
050bf715f5775032309aca47aa8ce474547700e3
[]
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
212
sce
example6_2.sce
r1=2; r2=5; r3=10; v=25; disp("Part a"); r=1/(1/r1+1/r2+1/r3); disp("the total resistance (in Ω) is"); disp(r); disp("Part b"); i=v/r; disp("the total current drawn (in A) from the source is"); disp(i);
b8d07fee1b992c55ab4fcae5d9100ef8b91603ba
b9c6de66a61d6f9a57edaa44baf92266ccbab3db
/tests/poisson/poisspdf.tst
410f7bbde5bc878d5e571c76ed75282e4bfc863a
[]
no_license
papriwalprateek/distfun-scilab
81b3edef0af1d1908e05472dfb15b0a55f61571d
82fd34521d1e6ebb6513773264b54a0d48f5f3f9
refs/heads/master
2016-09-03T07:08:47.605240
2013-10-13T05:53:43
2013-10-13T05:53:43
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,407
tst
poisspdf.tst
// Copyright (C) 2012 - Prateek Papriwal // // 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_CeCI...
e646eea42bfe290715e45a72eb5e1551ee7fe1ae
449d555969bfd7befe906877abab098c6e63a0e8
/2441/CH5/EX5.4/Ex5_4.sce
bb242095ef90c289770ccfb65ee898cefd978e51
[]
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
623
sce
Ex5_4.sce
//Example 5.4 clc;clear;close; format('v',8); f=50;//Hz R=2;//Hz/pu MW Pr=10000;//MW(Rated Capacity) P=Pr/2;//MW(Operating Power) delP=2;//%(Load Increase) del_f=f*1/100;//Hz(1% change in frequency) del_PL=P*1/100;//MW(1% change in load) //Rate of change of load with frequency : D=del_PL/del_f;//MW/Hz D=D/P...
ab713e4e0fa22bd1fcb515a78b0279825def395b
449d555969bfd7befe906877abab098c6e63a0e8
/50/DEPENDENCIES/NDDinterpol2.sci
9618c8e9eeb7f272834b1b421dd11352dd970f08
[]
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
285
sci
NDDinterpol2.sci
function P2=NDDinterpol2 (x,f) X=poly(0,"X"); f01=(f(2)-f(1))/(x(2)-x(1)); f13=(f(3)-f(2))/(x(3)-x(2)); f013=(f13-f01)/(x(3)-x(1)); P2=f(1)+(X-x(1))*f01+(X-x(1))*(X-x(2))*f013; endfunction
459512b04b975d376564e7f4c77302b30651de46
449d555969bfd7befe906877abab098c6e63a0e8
/55/CH7/EX7.6/7ex6.sci
b88d110004250f34a03a8ade247b71f8636ad1a1
[]
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
sci
7ex6.sci
disp("A bag contains 12 items of which four are defective.Three items are drawn at random,one after the other"); s=12; //total itmes in the bag d=4; //defective items in the bag Pf=(s-d)/s ; //probability that the first item drawn is non defective Pe=Pf*[(s-d-1)/(s-1)]*[(s-d-2)/(s-2)]; disp(Pe,'probability th...
61d02ba19327fa1bb1a837969c44ceeffa972dc4
449d555969bfd7befe906877abab098c6e63a0e8
/1808/CH1/EX1.23/Chapter1_Example23.sce
bcb75693c6a8b8f26c678649700777d9ec7581cf
[]
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
838
sce
Chapter1_Example23.sce
clc clear //INPUT DATA Vs=1.5*10^-3;//capacity of cylinder in m^3 N=3000;//speed in rpm BP=48;//break power in kW nv=0.92;//volumetric efficiency in percentage P=101.325;//atmospheric pressure in kPa Ra=0.287;//gas constant Ta=303;//atm.temperature in K x=21;//airfuel ratio //CALCULATIONS Roa=(P/(Ra*Ta)...
0afff65b92a2c04fdacea7fb683fac3ad346b50e
a76fc4b155b155bb59a14a82b5939a30a9f74eca
/ProjetTomEval/tomeval/mediatop.tst
34868ceb6deaeca8c845592d1118a98cf97a6191
[]
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
ISO-8859-1
Scilab
false
false
336
tst
mediatop.tst
Plan Mediatop 1 AG,ménagères - 50 ans 101 15 1 1 2,5,6 1,B198,101 f:\source\sfr01 10390000 1 1 1,1200,8,1,0,2.4,02/04/98,1 1,2040,8,1,0,17.4,02/04/98,1 3,1915,8,1,0,3.6,02/04/98,1 11,1315,8,1,0,1.2,02/04/98,1 16,1215,8,1,0,3.7,02/04/98,1 1,1600,16,1,0,5.6,03/04/98,1 1,1940,16,1,0,8.5,03/04/98,1 16,1930,64,1,0,8.1,26...
a8e9d7928890fe1ef94b3e50ae7c3567dc5f257e
9b60b7963181dd94c8d10cdb75a83bc010957e71
/taf_monitor_code/taf_monitor/tests/acceptance/12-military_cloud_amount_thresholds.tst
ed43a83b8b5b0ba82008dd2e2ebe556b0037080e
[]
no_license
alanyon/python
577773100eac269750925c1f924edc51060ca865
cbfe0f34fe61ed0495572fa05ea6bf4293ef15bb
refs/heads/master
2023-07-13T17:27:59.555648
2021-08-09T15:59:08
2021-08-09T15:59:08
393,341,633
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,303
tst
12-military_cloud_amount_thresholds.tst
{ "EGWC 150800Z 1509/1518 18005KT 9999 FEW030 TEMPO 1510/1511 SCT020 TEMPO 1511/1512 BKN020 TEMPO 1512/1513 OVC020 BECMG 1513/1515 OVC020": { "TAF base conditions cover METAR - CAVOK": { "metar": "EGWC 150850Z 18005KT CAVOK", "test time": "20200615T0900Z", "expected": "" ...
a86e32d8ad68e5e2b15b46976e22c90c80ffc38d
449d555969bfd7befe906877abab098c6e63a0e8
/689/CH2/EX2.3/3.sce
cad8802a7bfc30debadaa4d068effe5ce2a54c4d
[]
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
393
sce
3.sce
//Example 2.3 On Venturi Tube // Initialisation of variables Da = 12 / 12; Db = 6 / 12; DP = 5*70.73; //Pressure difference in lb per sq feet rho = 62.4; // Calculations Ab = %pi*(Db/2)^2; Ab_Aa = (Db/Da)^2; Denominator = (rho/2)*(1 - Ab_Aa^2)/32.2; Q = Ab*sqrt(DP/Denominator); //Formula for...
042411c2cdda1f9914405767dbb3d28d373d143a
449d555969bfd7befe906877abab098c6e63a0e8
/3764/CH2/EX2.01/Ex2_01.sce
0c39aad50bb7ad3251e2c5238f8e1b4e566a2c79
[]
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,094
sce
Ex2_01.sce
clc // //Variable declaration E=29*((10**6)) // Modulus of elasticity(psi) L1=12 // Length(in) L2=12 // Length(in) L3=16 ...
daf8ab9c420d27b590c4d69afc5e3ad8fd512848
449d555969bfd7befe906877abab098c6e63a0e8
/1938/CH3/EX3.23/3_23.sce
fbf2165c13a9d4e1aee75d6ca1f031546a5a72a0
[]
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,166
sce
3_23.sce
clc,clear printf('Example 3.23\n\n') I_a_g=330,I_a_m=380 R_a=0.02 //armature resistance V=250,I=50 arm_cu_loss_g= R_a*I_a_g^2//armature copper loss for generator arm_cu_loss_m= R_a*I_a_m^2//armature copper loss for motor power_drawn=V*I stray_losses = power_drawn - (arm_cu_loss_m + arm_cu_loss_g) stray_losse...
45e9ce67dcfb431c2d6d9971da119744d1cd5290
449d555969bfd7befe906877abab098c6e63a0e8
/3772/CH1/EX1.12/Ex1_12.sce
594cdc7d393e77855d446e9722212079d3fc9c05
[]
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
353
sce
Ex1_12.sce
// Problem no 1.12,Page no.16 clc;clear; close; //Right Circular Cyclinder //m_1=(16*%pi*h*rho_1) //gm //y_1=4+h*2**-1 //cm //Hemisphere //m_2=256*%pi*rho_1 //gm y_2=2.5 //cm Y_bar=4 //cm r=4 //cm //Calculation //Y_bar=(m_1*y_1+m_2*y_2)*(m_1+m_2)**-1 //cm //Centroid h=(402.114*25.132**-1)**0.5 //Result print...
765e5057b185e02c4c99f7c6c7f5fad30650a9a1
449d555969bfd7befe906877abab098c6e63a0e8
/2102/CH2/EX2.4/exa_2_4.sce
19ef153dbabae2b02b3e5e375335e4aaa25c524e
[]
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
286
sce
exa_2_4.sce
// Exa 2.4 clc; clear; close; // Given data N_D= 10^21;// in /m^3 N_A= 2*10^20;// in /m^3 miu_n= 0.15;// in m^2/vs N_DeshD= N_D-N_A;// in /m^3 n=N_DeshD;// in /m^3 q=1.6*10^-19;// in C sigma= q*n*miu_n;// in (Ωm)^-1 disp(sigma,"Conductivity of silicon in (Ωm)^-1 is : ")
95784429ace75a5e3b671181cf03e3a1e2e3f85c
449d555969bfd7befe906877abab098c6e63a0e8
/2744/CH1/EX1.13/Ex1_13.sce
d9e6d366f27790ab668876e2eba477ce0f471c18
[]
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
629
sce
Ex1_13.sce
clear; clc; d = 1;//diameter of steel bar in inches d1 = 3/2;//external diameter of brass tube in inches d2 = 1;//internal diameter of brass tube in inches t = 100;//in F alpha_s = 0.0000062;//alpha of steel in "per F" alpha_b = 0.000010;//alpha of brass in "per F" E_s = 30*10^6;//in lb/in^2 E_b = 14*10^6;//in...
0154ca83c0f8bab4e21e6ba0bb14f639b2d2ba6e
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH5/EX5.4/Ex5_4.sce
beeb4ad815b6090bc0053a62956800240c0b0295
[]
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
444
sce
Ex5_4.sce
//Variable declaration: P = 14.7 //Absolute pressure of air (psia) MW = 29 //Molecular weight of air (lb/lbmol) T = 75+460 //Temperature in Rankine scale (°R) R = 10.73 //Universal gas constant (ft^3.psi/lbmol.°R) //Calculation: p = P*MW/R/T ...
7c1280aeb1323f134b7c6687198b3a09a2b88c38
449d555969bfd7befe906877abab098c6e63a0e8
/3863/CH1/EX1.1/Ex1_1.sce
89f476e26dbc1b639f80b7cf5e8bfa50f4537a55
[]
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
Ex1_1.sce
clear // //Given //Variable declaration L=150 //Length of the rod in cm D=20 //Diameter of the rod in mm P=20*10**3 //Axial pull in N E=2.0e5 //Modulus of elasticity in N/sq.mm //Calculation A=(%pi/4)*(D**2) //Area in sq.mm //case (i):stress sigma=P/A //Stress in N/s...
37740792fbeb263dc761652099c4f62a71e1b1dd
3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc
/Pack/Exame comentado/q8_newton.sce
01630df94648106e423d05713c7b01a43d1df312
[ "MIT" ]
permissive
JPedroSilveira/numerical-calculus-with-scilab
32e04e9b1234a0a82275f86aa2d6416198fa6c81
190bc816dfaa73ec2efe289c34baf21191944a53
refs/heads/master
2023-05-10T22:39:02.550321
2021-05-11T17:17:09
2021-05-11T17:17:09
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
334
sce
q8_newton.sce
function y = f(x) y = x^3 - 43 - 3*x + x ^2 //aqui vai a função do problema endfunction function y = fl(x) y = numderivative(f,x) //faz a derivada sozinho :) endfunction x = 1 //aqui tu bota o X próximo da raiz que tu quer encontrar, ao que parece. Salve geogebra. for i = 1:1000 x = x - f(x)/fl(x) di...
4a8cf7bb9ad8381eff983e93f7d0a971fa77d915
449d555969bfd7befe906877abab098c6e63a0e8
/1670/CH8/EX8.13/8_13.sce
769892778f0e46a14bcf3ee807b6768dc2389336
[]
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,437
sce
8_13.sce
//Example 8.13 //Trapezoidal and Simpsons Rule //Page no. 283 clc;close;clear; ax=4;bx=4.4;ay=2;by=2.4;h=0.1 n=(bx-ax)/h+1 n=5; for i=1:n x(i)=ax+(i-1)*h y(i)=ay+(i-1)*h end printf(' y/x\t|') for i=1:n printf('\t%g',x(i)) end printf('\n--------|--------------------------------------------')...
c8c895ed33a939bf5c74c423f6ff2476938dc82d
449d555969bfd7befe906877abab098c6e63a0e8
/692/CH3/EX3.15/P3_15.sce
f9e52fd2888c53734e7f579c939e539c7f5cdd49
[]
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
213
sce
P3_15.sce
//EXAMPLE 3.15 //ENERGY OF A SIGNAL x[n]=a^n*u[n] clc; clear; a=0.5; n=0:0.1:9.9; //x[n]=a^n*u[n] for i = 0:length(n) x(i+1) = a^i; E=(abs(x))^2; end Energy=sum(E); disp(Energy,'Energy of the signal = ');
b9409183b6a60d8f4d8eca210da880518e20cf41
91bba043768342a4e23ee3a4ff1aa52fe67f7826
/cs/142/4/tests/test19.tst
2534192597aa39646805840f0e5ef69923fb8cde
[]
no_license
MaxNanasy/old-homework
6beecc3881c953c93b847f1d0d93a64ec991d6de
48b7997a49a8f111344f30787c178e1661db04bd
refs/heads/master
2016-09-08T04:37:44.932977
2010-03-02T00:48:59
2010-03-02T00:48:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
157
tst
test19.tst
type t1 = array 10 of int; short proc(short a) { return a; } main() { var a : t1; const c = 11; a[1] = ::proc(c); if (a[1] == c) { ERROR } }
02a466fb74652b40af8200ab8bd8439b1e7d030b
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/peak2peak/peak2peak11.sce
88067358422c649b0571683179713282e5a63fce
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
116
sce
peak2peak11.sce
//check o/p when no i/p args are passed to the function a=[1 2 3 4]; dim=2; y=peak2peak(a,dim,2); disp(y); //output
0deea1349f717e769df75fc2177a92bf995b538a
449d555969bfd7befe906877abab098c6e63a0e8
/2777/CH4/EX4.1/Ex4_1.sce
9972057f3a79a95cbb2330bb20d91edfa33391f5
[]
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,331
sce
Ex4_1.sce
// ELECTRICAL MACHINES // R.K.Srivastava // First Impression 2011 // CENGAGE LEARNING INDIA PVT. LTD // CHAPTER : 4 : DIRECT CURRENT MACHINES // EXAMPLE : 4.1 clear ; clc ; close ; // Clear the work space and console // GIVEN DATA N = 600; // Speed of the driven Machine in RPM ...
bc773ad40bc8b442e9ca10dd9ff40d1f51176909
a30001e45f0342ced961e0431af0f297bf00a538
/TraceFileDiagnostics/SciLabScripts/make_block.sce
522bab1c0cf4306703e5610a64b7800ef685a19a
[]
no_license
jsayres82/TraceTool
54697a1c744d0838e894a9bfdce800a4ba6dbbde
68826d7b31d0fa064b758d24fc408dbe27763e8b
refs/heads/master
2021-08-30T08:03:07.854850
2017-12-16T23:12:05
2017-12-16T23:12:05
109,863,651
0
0
null
null
null
null
UTF-8
Scilab
false
false
973
sce
make_block.sce
// make_block.sce clear; xdel(winsid()); exec('Euler2R.sci',-1); exec('GeoVerMakeBlock.sci',-1); exec('GeoPatMakeBlock.sci',-1); // Block specification r = [1,1,1]; // Reference position A = [-%pi/3, 0, %pi/6]; // Reference orientation (x-y-z Euler angle) Lx = 0.15; Ly = 0.05; Lz = 0.30; ...
8e3ed95a76cf22ccf64055881cd065bcbaa7e3dd
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH41/EX41.16/41_16.sce
fd6c1b9b9c4274f00e266d2b6a7d51e41f1c1934
[]
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
828
sce
41_16.sce
//Problem 41.16: Five identical attenuator sections are connected in cascade. The overall attenuation is 70 dB and the voltage input to the first section is 20 mV. Determine (a) the attenuation of eac individual attenuation section, (b) the voltage output of the fina stage, and (c) the voltage output of the third stage...
844e15de8c0821ea19a155b50ce4a8d609948929
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH22/EX22.2/example22_2.sce
eb5b47e9073f92d51b6b34a7885696e20604dae7
[]
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
557
sce
example22_2.sce
//Chapter 22 //Example 22_2 //Page 530 clear;clc; r=7.5; mva=10; i1=1000; i2=5; kv=6.6; oc=0.5; v_ph=kv*1000/sqrt(3); min_fc=i1/i2*oc; emf=v_ph/100; efc=emf/r; uw=min_fc/efc; printf("Voltage per phase = %d V \n\n", v_ph); printf("Minimum fault current which will operate the relay = %d A \n\n", min_fc); printf("EMF ...
32d998d12036d1cb8dda50532a038bdea0a79bc0
002b6230874dea6e4d76defafc1ae293b5744918
/library/Demos/StdRegions/Tests/StdProject1D_Single_Mode_Fourier_P2_Q2.tst
dd720ef449d03221fab2cee233d7279f1aa49897
[ "MIT" ]
permissive
SCOREC/nektar
f3cf3c44106ac7a2dd678366bb53861e2db67a11
add6f04b55fad6ab29d08b5b27eefd9bfec60be3
refs/heads/master
2021-01-22T23:16:16.440068
2015-02-27T17:26:09
2015-02-27T17:26:09
30,382,914
6
7
null
null
null
null
UTF-8
Scilab
false
false
459
tst
StdProject1D_Single_Mode_Fourier_P2_Q2.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>StdProject1D Segment single mode Fourier basis P=2 Q=2</description> <executable>StdProject1D</executable> <parameters>13 2 2</parameters> <metrics> <metric type="L2" id="1"> <value tolerance="1e-12">0</value> </metri...
ee9e2366dd7c3cda07cee9abc66a1b27192f9c98
36e294af022143c4ad0adaf1a40183c8114cb39a
/Scripts/Stage 2.sce
8fe71bd702fbfc19ef22275be90ce1c65d250b9f
[]
no_license
pflynn/Spectrum_analysis
d6388a46f686912a4d4a543f18b2a49063374506
eb31f3349fdf4f16227b25782d40937b126b297e
refs/heads/master
2016-09-05T17:10:44.896865
2011-06-27T15:01:20
2011-06-27T15:01:20
1,960,672
0
0
null
null
null
null
UTF-8
Scilab
false
false
157
sce
Stage 2.sce
//STAGE 2 // Create the files containg info on wheather threshold is exceeded or not exec('C:\Program Files\scilab-5.3.1\work\create_threshold_data.sce', -1)
68274e912f4335412596ba50666d4c30d3c5ab37
449d555969bfd7befe906877abab098c6e63a0e8
/3176/CH5/EX5.5/Ex5_5.sce
f29163642110d3aae21edfecbd94c2d3db745d67
[]
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,813
sce
Ex5_5.sce
//Ex5_5 // Illustration of Adaptive Median Filter // Version : Scilab 5.4.1 // Operating System : Window-xp, Window-7 //Toolbox: Image Processing Design 8.3.1-1 //Toolbox: SIVP 0.5.3.1-2 //Reference book name : Digital Image Processing //book author: Rafael C. Gonzalez and Richard E. Woods clc; clear; close...
1943ede67752e9591feeb974b1206ad3f1554dae
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH7/EX7.4/7_4.sce
a2e38069f30d16a03f21bc04686a6dafc28386af
[]
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
7_4.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 7.4 //calculation of the value of radial and tangential acceleration //given data t=3//time(in s) r=20*10^-2//radius(in cm) of the circle function v1=f(t1) v1=2*t1 endfunction //calculation v=f(t) ar=(v*...
8d568a72b1094b2008339190839001530654e8e0
449d555969bfd7befe906877abab098c6e63a0e8
/557/CH2/EX2.9/9.sce
e2a3d60a231d8af122b39a4baefe638660a0c2e6
[]
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
547
sce
9.sce
clc ;funcprot(0); //Example 2.9 //Initializing the variables rho = 10^3; //Density of fluid rhoM = 0.8*10^3; //Density of manometer liquid g = 9.81; //Acceleration due to gravity a = 0.25; b = 0.15; h = 0.3; //Calculations function[P]=PressureDiff(a,b,h,rho,rhoM) P = rho*g*(b-a) + h*g*(rho-rho...
533c96f9c721513e0e3ef11ba61ee9ae25f1910a
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/strips/strips6.sce
6afbe4df4d596a56df7013c94b20067d7429f0f7
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
180
sce
strips6.sce
//no i/p args are passed to the function strips(); //output //!--error 10000 //Incorrect number of input arguments. //at line 34 of function strips called by : //strips();
5b2cab230bc6b7638ef3f89e3b57b5c29d14022b
449d555969bfd7befe906877abab098c6e63a0e8
/2087/CH2/EX2.5/example2_5.sce
5a5257f916d10e6fb354f24779fe4358446fe392
[]
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,153
sce
example2_5.sce
//example 2.5 //calculate //size of cut-back stream. //time required for putting 37.5 mm depth of water //average depth of water applied clc; //given d=37.5//crop water requirement W=1//furrow spacing L=120//length of furrow n=-0.49; k=38; Ttotal=143;//Total time of irrigation A=[0 23 52 88 127]//given ...
e3b49d7e9745ce7ce3b069b3557d73135265d3d4
dd1ecbd8dc9f2817544517bd6d33ef7c0fffccde
/projects/pp3/Nand2.tst
81925a2d74eb9624ab8cd5723c699940b2042541
[]
no_license
cujun/Nand2Tetris
b32254a2756e548832edfe6af535d24ac683226e
f745b58858328dc407e6770704a6ee9601079f0a
refs/heads/master
2021-01-22T00:09:30.350789
2017-12-20T07:27:53
2017-12-20T07:27:53
102,185,045
0
0
null
null
null
null
UTF-8
Scilab
false
false
236
tst
Nand2.tst
load Nand2.hdl, output-file Nand2.out, compare-to Nand2.cmp, output-list x%B3.1.3 y%B3.1.3 out%B3.1.3 ; set x 0, set y 0, eval, output; set x 1, set y 0, eval, output; set x 0, set y 1, eval, output; set x 1, set y 1, eval, output;
c3491c80c808850ddc204f1cc9816c47c5ed863a
449d555969bfd7befe906877abab098c6e63a0e8
/1997/CH11/EX11.59/example59.sce
37608fe253f08d4327c37e5cc2cd2b8e8f8261b5
[]
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
517
sce
example59.sce
//Chapter-11 example 59 //============================================================================= clc; clear; //Given data lamda = 3*10^-2; //Wavelength in m PRF = 1000; //Pulse Repetitive frequency in Hz n = 1' // n value for lowest blind speed //Calculations Vb ...
a396e2cd731c806011ed2d00cda5050d3c31eef4
63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa
/test/0004.tst
01d3a89d08db38d48a75f33aa1a116d0d9c5472f
[]
no_license
fmeci/nfql-testing
e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c
6b7d465b32fa50468e3694f63c803e3630c5187d
refs/heads/master
2021-01-11T04:09:48.579127
2013-05-02T13:30:17
2013-05-02T13:30:17
71,239,280
0
0
null
2016-10-18T11:01:57
2016-10-18T11:01:55
Python
UTF-8
Scilab
false
false
532
tst
0004.tst
sPLITtEr A {} fIlter p { } FiLTeR HQ {j oR nOt Rz or nOt x Or X oR w or noT Up or JYPqtN Or k OR nMI } XP -> KW GRoupeR g {MODULE Qr{ } AGGreGATe SuM(O.WyHiDf) as g } uNGRoUper P { } gRoupFiltEr N {BitOr () OR nOt M ( ) oR M ( ) OR nOt c >= H Or J ( ::d:E:0:1.235.8.3, -61e96, 212.28.231.246/56, +8e6, Bf:f7:...
591515aa4ac6cabcabb602e63c63ace4fbec0db5
449d555969bfd7befe906877abab098c6e63a0e8
/1826/CH2/EX2.28/ex2_28.sce
b84a7d4de2c969adfca872c24f5446f99a06ef22
[]
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
312
sce
ex2_28.sce
// Example 2.28, page no-47 clear clc theta=22//in degrees d=1.8*10^-10//m n=1 h=6.626*10^-34 m=9.1*10^-31//kg e=1.6*10^-19//C lam=2*d*sin(theta*%pi/180)/n E=(1/(2*m))*(h/lam)^(2) printf("\nThe deBroglie wavelength of the neutron is %.3f *10^-10\nthe energy of the neutron is %.2f eV",lam*10^10,E/e)
3c3a3c24afe3122c800032511b59c2369f2af1b1
449d555969bfd7befe906877abab098c6e63a0e8
/629/CH10/EX10.4/example10_4.sce
f8c2217d411ff4406416f2e1c3611441905bcc0b
[]
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
example10_4.sce
clear clc //Example 10.4 FLOW RATE IN A PIPE (CASE 2) g=9.81; //[m/s^2] L=1000; //[m] D=0.20; //diameter[m] A=%pi*D^2/4 //area[m^2] v=10^-6; //viscosity[m^2/s] hf=12.2; //[m] P=D^(3/2)*sqrt(2*g*hf/L)/v ks=0.12; //[mm] //Relative roughness Rr=ks/D //From Moody diagram for P and Rr f=0.019; //friction facto...
b5d38c95eb767f8c7ff0904a4fa766b5140d927b
45ecab6a4d01294188a6c3a7cdc6f5fa24335393
/Data/Config/Settings.sce
6c288774f2e99fef0796d664ae45e3d5e764c1b7
[ "Apache-2.0" ]
permissive
ColleyLi/Aslan-CarMaker
3efde39628ae4ca297f90515d1d970d1ae3e4a29
5ecb4683c241328c030c64f760f5f724af3d0c02
refs/heads/main
2023-08-05T07:10:25.984842
2021-09-24T13:31:00
2021-09-24T13:31:00
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
629
sce
Settings.sce
#INFOFILE1.1 - Do not remove this line! FileIdent = Scenario-Config 1.0 FileCreator = CarMaker 10.0.1 Scene.Country = GBR Scene.Country2 = Scene.DrivingSide = right Import.HDLM.ImportByRoute = 0 Import.HDLM.LatCoord0 = Import.HDLM.LonCoord0 = Import.HDLM.LatCoord1 = Import.HDLM.LonCoord1 = Import.HDLM.RoadClass = all I...
cd93e308df57d9619a1801ad4a0cdea267d77d0f
449d555969bfd7befe906877abab098c6e63a0e8
/2744/CH11/EX11.2/Ex11_2.sce
417782c2126fad0358a21ac50d64d0060ce4bf68
[]
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
831
sce
Ex11_2.sce
clear; clc; t = 1/2;// inches d1= 7/8;// inches p1 = 5/2;// inches d2= 9/8;// inches p2 = 7/2;// inches f_t = 8;// tons/in^2 f_s = 6;// tons/in^2 f_b = 10;// tons/in^2 P_t1 = (p1-d1)*t*f_t;// tons P_s1 = 0.25*%pi*d1^2 *f_s;// tons P_b1 = d1*t*f_b;//tons P1 = p1*t*f_t;// tons n1 = min(P_t1,P_s1,P_b1)/P1 ...
c09c89509d8fffae7694d26c1a2e4b9219371337
199e1d05a22c4d0a3d89f2d2d2a142f136996786
/resistor advanced.sce
4c76630b1f1e769c388e717c6ee056104843836c
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
SINHASKT/colorcoderesistor
05084c1a1180ace48735bf9a508e32dee6637955
4e38b660ae63affe0d37727800c0553df133d74a
refs/heads/master
2021-09-08T05:29:39.308503
2017-09-28T23:45:17
2017-09-28T23:45:17
104,496,555
0
0
null
2017-09-28T23:45:41
2017-09-22T16:37:53
Scilab
UTF-8
Scilab
false
false
8,429
sce
resistor advanced.sce
clear clc o=input("Do you want to see tutorials (y/n): ","string") b=["y","n"] while o<>b mprintf('INCORRECT INPUT!!') o=input("Do you want to see tutorials (y/n): ","string") end if o=="y" then xstring(0.5,0.5,"THE RESISTOR CODE SEQUENCE IS",0,0) t=get("hdl") t.font_foreground=5 t.font_size=5 t....
431d4e7f1d917fd0c724ad157f41888abbfff8e4
449d555969bfd7befe906877abab098c6e63a0e8
/779/CH9/EX9.7/9_7.sce
ac431d8fa9fdac03138ace8ecd22eb720aa44608
[]
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
9_7.sce
// At T = 40 degree Psat = 7.384e06; sf = 0.5725; sfg = 7.6845; hf = 167.57; hfg = 2406.7; // s1 = 6.9189; h1 = 3037.6; x2 = (s1-sf)/sfg ; h2 = hf+(x2*hfg); W = h1-h2; disp("kJ/Kg",W,"The ideal work output of the turbine is")
2867fc990db3bc72fe19b7a8719faeda7e877ead
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/macros/calpol/pol2des.sci
b2425ed467fac366998b7d5d39edce54d42029bd
[ "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
373
sci
pol2des.sci
function [N,B,C]=pol2des(Ds) // Given the polynomial matrix Ds= D_0 +D_1 s +D_2 s^2 + ... +D_k s^k, // pol2des returns three matrices N,B,C (with N nilpotent) such that // Ds = C (sN-Eye)^-1 B //! // Copyright INRIA if type(Ds)==1 then Ds=Ds+0*poly(0,'s')*Ds;end dg=maxi(degree(Ds))+1; [nout,nin]=size(Ds); [Sl]=markp...
3cc6c3e4befd2f6896ebcf812c1c3bcf452512a0
449d555969bfd7befe906877abab098c6e63a0e8
/1628/CH16/EX16.16/Ex16_16.sce
18fd9129ff498cd6f600a383550e232b6cba9882
[]
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
813
sce
Ex16_16.sce
// Example 16.16 V=230; // Supply voltage Ia=110; // Current Ra=0.12; // Resistance Rse=0.03; // Series field resistance E1=V-Ia*(Ra+Rse); // Emf Generated // But for the Given machine ( E1= QZNP/60A= kQ1N1 ) ...
6693601f6d9be0ef220441d8a56b40a094caddf9
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH24/EX24.15/Ex24_15.sce
783c73426f11333172be675cf9fc89ce54ac0fdd
[]
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
179
sce
Ex24_15.sce
clear //Given Z=2 e=1.6*10**-19 e1=8.854*10**-12 n=3 h=6.62*10**-34 c=3*10**8 //Calculation v=(Z*e**2)/(2*e1*n*h) a=v/c //Result printf("\n Speed of the electron is %0.3f ",a)
6a29f21b22af989325aae1f1a51340b462dcd67b
4be0defdbe24271cce8f61cece32e7a4b15c65af
/signal_s1/td2/ldussouc.sce
2988216d3cb7ccf135d651dad9e0dc9bac1fe79d
[]
no_license
imac2018/tds
2c41830e26435bb2b8c4a40b3700c9f166bba4dc
8712438b81088d2f2d9c691b3c689e0926c597f5
refs/heads/master
2020-05-30T07:19:34.709677
2017-05-24T09:42:23
2017-05-24T09:42:23
69,675,399
2
2
null
null
null
null
UTF-8
Scilab
false
false
1,065
sce
ldussouc.sce
clf() // ex 1 taille = [0:0.001:10] tailleY = [0:0.001:10] function x=signal(t) x = sin(2*%pi*t) endfunction // ex 2 subplot(411) plot(taille, signal(taille)) function y=numerise(x, bits) q = 2/(2^bits) y = q * floor( (((x*(1-q))/q)+0.5) ) endfunction // ex 3 subplot(412) plot(taille, numerise(signa...
41a9d929e194065d6a72398285806c788e40cea6
449d555969bfd7befe906877abab098c6e63a0e8
/74/CH9/EX9.2/example2_sce.sce
9d9f77af57b3572d112b098af79a98fe0d590b6b
[]
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
166
sce
example2_sce.sce
//chapter 9 //example 9.2 //page 324 Ao=2;fc=10*10^3; Rf=10*10^3;//let choose //Ao=1+(RF/R1) R1=Rf/(Ao-1); disp(R1) C=.001*10^-6; R=1/(2*3.14*fc*C); disp(R)
4eca14a5356b6703b70d50979e439ecc3604c4af
449d555969bfd7befe906877abab098c6e63a0e8
/413/CH5/EX5.6/Table_5_1.sce
33d26119e8941ee0ebf9a61612f3db85d77b1b71
[]
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
208
sce
Table_5_1.sce
clc clear x=1.9; function a=expsin(y) a=(exp(x+y).*sin(x+y)-exp(x).*sin(x))/y endfunction function out=tab5(y) out=[y,expsin(y)] endfunction y=0.05 for i=0:1:10 disp(tab5(y)) y=y.*0.5 end
3529e9d800ab7a1b2e1fae60ebfc3bfd18aaab98
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set14/s_Material_Science_V._Rajendran_1826.zip/Material_Science_V._Rajendran_1826/CH20/EX20.2/ex20_2.sce
0179dd9e313b61dea810f88952ca4007f6fb72f1
[]
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
177
sce
ex20_2.sce
errcatch(-1,"stop");mode(2);// Example 20.1, page no-568 h0=0.0306 t1=2.0 t2=3.7 he=h0*(1-((t1^2)/t2^2)) printf("The critical field at %d K is %.5f T",t1,he) exit();
2f0aa193af23112f2fe0e78e76134c613e1ea047
978b15852ad0d9219e0cd69e9da3a9140b84aa97
/exo5+exo6/richardson.sce
1bde2e0adffdbe224bf5a5b7f394363f4ec01a6b
[]
no_license
nadine867/TP_CN
cd2acc700471c7f595ada5f2b799b43ca44590ce
fcf09074e27723ca3e9b1eec870386c848b190f9
refs/heads/master
2023-02-03T04:07:38.525606
2020-12-18T20:23:55
2020-12-18T20:23:55
316,060,516
0
0
null
null
null
null
UTF-8
Scilab
false
false
630
sce
richardson.sce
function[sol,relres,resvec,niter]= richard(A,b,alpha,tol,nmaxit) x0=zeros(n,1); normb=norm(b); resvec=zeros(nmaxit,1); res=b-A*x0; relres=norm(res)/normb; D= alpha; niter=0; while(relres>tol) &(niter<nmaxit) niter=niter+1; s...
5e0b5dddd7af699b05b3e78077c8d229995d4530
449d555969bfd7befe906877abab098c6e63a0e8
/1049/CH13/EX13.4/ch13_4.sce
4fcdb9d8b01609115149aa14eabb6817839df4ff
[]
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
324
sce
ch13_4.sce
clc clear V_s=230; I_L=10; X_L=V_s/I_L; I_f1=6; //B=2*a-sin(2*a) B=2*%pi-I_f1*%pi*X_L/V_s; a=0; i=1; for a= 0:.01:360 b=2*a*%pi/180-sind(2*a); if abs(B-b)<=.001; //by hit and trial i=2; break; end end printf("firing angle of TCR = %.1f deg",a); //(a-.01)*180/%...
03b763b790f445ec24f7019e16e053df4b14fff2
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH9/EX9.25/Ex9_25.sce
b6c4465837651c125b29d41974d38aedea96f972
[]
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
191
sce
Ex9_25.sce
//Example 9_25 page no:395 clc; //given P=4488;//power in VAR V=440; I=17; sin_phi=P/(V*I); phi=asind(sin_phi); pow_fac=cosd(phi); disp(pow_fac,"the power factor of the load is ");
a1df52c3970c3ed8aa6c2b054f174922d334fe52
449d555969bfd7befe906877abab098c6e63a0e8
/1962/CH2/EX2.5/example2_5.sce
63bddaed84b17344654c46ed509ae79afab15978
[]
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
example2_5.sce
//example 2.5 //page 57 clc; funcprot(0); //initialisation of variable Gamma=9810; ha=950*1.5-500*1; ha=ha/1000;//m of H2O; Pa=ha*Gamma; disp(Pa/1000,"Pressure at A (kPa)="); clear
c64640c4320ebb6a5cd034a458197732aab53c0d
725517259e3eea555ad0f79d421792c632bc4655
/workspace/missionB1.sce
c4f936a26f0596840fd5fc9afe95ce16c7fc536d
[]
no_license
Exia-epickiwi/exolife
58b8a72aa397c5d3df8dc6f61730b3b2b217740e
b1bdb3ec2adb92c0fc8c546c9bd56a654523bd22
refs/heads/master
2020-05-25T14:05:45.795829
2017-03-20T09:26:15
2017-03-20T09:26:15
84,937,674
0
0
null
null
null
null
UTF-8
Scilab
false
false
235
sce
missionB1.sce
//Load scripts funcprot(0); getd('../scripts/') //Load image imgPos="../images/" img=readpbm(imgPos+'Gliese 667Cc_surface.pbm'); render=egalisation(img) writepbm(render,'./render/Gliese 667Cc_surfaceAFTER.pbm') display_gray(render)
06e036b18f13d5675641e4cc53ed2d1ef26937b4
76d58c93412c99ad3e8468ca843883add5b16d43
/network.sci
168adbfa299bfe9a03a409ef4e8b11986a42f7ee
[]
no_license
NnataKha/Mixed-plus-minus-interaction-conflict-model
cd6daadc26e6189720f088adf9a739072125f1fa
a02cf4c1c21dc5559721c219c93ad706f3af30be
refs/heads/master
2020-03-16T18:52:00.884504
2018-05-10T11:24:44
2018-05-10T11:24:44
132,889,968
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,050
sci
network.sci
clear n = 8; //agents' distributions p = rand(1,n); r = rand(1,n); //p = [0.29840927593458944,0.16714816354485756,0.1224551849039676,0.4119873756165854]; // = [0.36651905742558666,0.21277821541047434,0.13286307370803582,0.2878396534559032]; sp = sum(p); sr = sum(r); p = p./sp; r = r./sr; for i = 1:n ...
c140d562405581ec6baf8d4d3730d0c9818c83a6
449d555969bfd7befe906877abab098c6e63a0e8
/3871/CH16/EX16.8/Ex16_8.sce
82d4b355832545a7c93d6d0be8ec85536b10e6ee
[]
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,199
sce
Ex16_8.sce
//===================================================================================== //Chapter 16 example 8 clc;clear all; //variable declaration //as shown in patern is straight line dvo = 0; Dv = 6; //pattern is ellipse dvo1 = 3; Dv1 =6; //pattern is circle dvo2 = 1; Dv2 = 1; //pattern i...
b555c4c45be52c533f0c560decfbb1feeb9b3f92
449d555969bfd7befe906877abab098c6e63a0e8
/3717/CH13/EX13.4/Ex13_4.sce
f030f83cbea5b6c2b797434dff6aedcfba11ebf7
[]
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
537
sce
Ex13_4.sce
// Ex13_4 Page:260 (2014) clc;clear; mu_0 = 4*%pi*1e-007; // Magnetic permeability, H/m N = 6.5e+025; // Number of atoms per unit volume of the salt, per metre-cube mu = 9.27e-024; // Bohr magneton, A-Sq.m k = 1.38e-023; // Boltzmann constant, J/K T = 300; // Absolute temperature of the specimen, K...
fb01cd4e05e70ba6998c6608e9a4d390f3f58ed1
fdffabe522d631a0964c00b5566713df90e84b8d
/Electrical Machines 2 (EE258)/Lab 5/Q2.sci
efa44b72b72dbc6e7593c23a49b3389f7c3b2b02
[]
no_license
mnaveenkumar2009/Electrical-and-Electronics-Engineering
aacf3ee8468ea46627162f3f939f257ba55577e1
874bcefc328ebe0793bcb8a4792611b26a2539a6
refs/heads/master
2021-07-12T10:59:32.859028
2020-07-06T16:40:33
2020-07-06T16:40:33
129,063,058
0
0
null
null
null
null
UTF-8
Scilab
false
false
244
sci
Q2.sci
w=2*%pi; im=2; //t=[0:0.01:1]; t=1; theta=[0:0.01:2*%pi]; function ret = F(phase) dif=2*(phase-1)*(%pi)/3; ret=(4/%pi)*im*sin(w*t-dif)*sin(theta-dif); end for t=[1:0.01:10] plot(theta,F(1)+F(2)+F(3)) sleep(100) clf() end
d75cda68189e99f70547d1ca5db922e09d597f1c
1485852dd59aafc286600126cf832a32e10f117f
/tests/detailEnhance/detailEnhance_test2.sce
59e947035783052ed7b1f5dced334659935c88cc
[]
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
114
sce
detailEnhance_test2.sce
//decreasing sigma_s src = imread("../images/color2.jpeg"); output = detailEnhance(src,50, 0.1 ); imshow(output);
6247820c93468352bebca316df9d258b504b73f1
449d555969bfd7befe906877abab098c6e63a0e8
/1022/CH12/EX12.1/12_1.sce
b29bc0859e458b14319eda8a684952467e7f66b2
[]
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
463
sce
12_1.sce
clc //initialisation of variables d= 5 //ft Tw= 150 //F T= 50 //F Pr= 0.72 k= 0.015 //Btu/hr ft F r= 1.76*10^6 //(F ft^3)^-1 //CALCULATIONS D= d*(0.42/5) dt= Tw-T Gr= r*D^3*dt z= Gr*Pr h= 0.59*(z^(0.25)) *(k/D) disp(h) q= (2*h*dt*d^2)/144 //RESULTS printf ('Heat transfer rate from both sides of the pla...
8bf0a12c72757edfec93b9be17ea7cbe8623db75
449d555969bfd7befe906877abab098c6e63a0e8
/2243/CH3/EX3.14/Ex3_14.sce
d39bd533d657bc41b88ada2cd7ab3d8ceb6b5a52
[]
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
799
sce
Ex3_14.sce
clc(); clear; //Given : // Now, the intensity distribution is given by : // I = I_1 + I_2 + 2*(I_1*I_2)^0.5 *cos(alpha1- alpha2) , Using alpha = alpha1 - alpha2 and I_1 = I_2 = I_0 // I = 2*I_0*(1+ cos(alpha)) nu = 1.2 * 10^6 ; // frequency in Hz c = 3*10^8 ; // velocity of light in m/s lambda = c/nu ; // ...
272b03d61f44f2be305caf43cd4c42cdcc040170
449d555969bfd7befe906877abab098c6e63a0e8
/2666/CH17/EX17.3/Ex17_3.sce
788b162a27ed96953d490a8e51bac6f58cdff44a
[]
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
272
sce
Ex17_3.sce
clc //initialisation of variables clear p= 95 //psi m= 0.42 //lb hv= 19200 //Btu per lb v= 270 //cu ft hv1= 2544 //per lb //CALCULATIONS hv2= hv/v Bte= 100*hv1/(m*hv) ve= p*144*100/(hv2*0.01*Bte*778) //RESULTS printf (' Volume efficiency = %.1f percent',ve)
138f8472114d0f4b25c652e7961958e28ffaa364
8423ca9ce33d0d3ba30dc05b86e8241e4894d0af
/d.sci
5ed560b45a82f1718c26a180d6d789edeffe27c1
[ "MIT" ]
permissive
fbarrueta22/TAP-1
b99581dab6414d93988b708d61ac7e5e6610a6e5
61324322191684285df528149c7829b8cfe3dc5f
refs/heads/master
2022-04-25T18:44:31.343068
2020-04-18T17:22:50
2020-04-18T17:22:50
256,637,464
1
1
MIT
2020-04-18T17:22:51
2020-04-18T00:22:58
Scilab
UTF-8
Scilab
false
false
319
sci
d.sci
exec('platesD.sci') filas=5 [A b] = platesD(filas,1,1) printf('A:\n') disp(A) printf('\n') printf('b:\n') disp(b) printf('\n') rA = rank(A) rAb = rank([A b]) [n _n] = size(b) if(rA == rAb) if(rA == n) printf('Determinado\n') elseif(rA < n) printf('Indeterminado\n') end else printf('Sin solución\n') end
70f4a8a507aa198d5228d728d61f257bb856d7ad
449d555969bfd7befe906877abab098c6e63a0e8
/3885/CH7/EX7.12/Ex7_12.sci
11e0d08eb5068a07f9461d8b1a469ea2e6ebf12e
[]
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
sci
Ex7_12.sci
//control systems by Nagoor Kani A //Edition 3 //Year of publication 2015 //Scilab version 6.0.0 //operating systems windows 10 // Example 7.12 clc; clear; s=%s h=syslin('c',(2*(s+5))/((s+2)*(s+3)*(s+4))) disp(h,'thr transfer function is') ss=tf2ss(h) disp(ss,'the state space model is') [Ac,Bc,U,ind]=ca...
31aec51a852862aad3e9344a21046d0ad0f3881d
449d555969bfd7befe906877abab098c6e63a0e8
/2489/CH19/EX19.1/19_1.sce
fa5301e9681e6a0ebb93cb7263947e9c4f3ae026
[]
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
171
sce
19_1.sce
clc //Intitalisation of variables clear t= 5 //cm c= 0.01 //M ir= 0.245 //CALCULATIONS e= -log10(ir)/(t*c) //RESULTS printf ('Extinction coefficient = %.2f ',e)
52700886ebdb03ce0dad57994017e784e47d9560
449d555969bfd7befe906877abab098c6e63a0e8
/995/CH2/EX2.12/Ex2_12.sce
7274046ad64a5dadca9e5fe62e1b207aa48c93b1
[]
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
262
sce
Ex2_12.sce
//Ex:2.12 clc; clear; close; r1=22;//in ohms r2=47;//in ohms r3=33;//in ohms r_ser=r1+r2+r3; printf("Effective resistance in series = %d ohms",r_ser); r_parel=((1/r1)+(1/r2)+(1/r3))^-1; printf("\n Effective resistance in parallel = %f ohms",r_parel);
1ec894c1ae447380cd6911db00200288a16dcffc
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set11/s_Fundamentals_Of_Electronic_Devices_And_Circuits_J._B._Gupta_2444.zip/Fundamentals_Of_Electronic_Devices_And_Circuits_J._B._Gupta_2444/CH6/EX6.14/ex6_14.sce
f690801296a12c596bbdab6c5e6ae8becc83146a
[]
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
368
sce
ex6_14.sce
errcatch(-1,"stop");mode(2);// Exa 6.14 ; ; format('v',6) // Given data Av =10000;// open loop gain Beta = 1/10;// feedback ratio Avf = Av/(1+(Av*Beta));// d loop gain dAvByAv = 50/100;// change in open loop gain dAvByAvf = 1/(1+(Beta*Av))*dAvByAv*100;// change in d loop gain in % disp(dAvByAvf,"The percen...
8d804e2258b3d5aa00587a15ef38a125dc7d4574
98efda43218be3d9e665771c28742517fd4f334f
/Toolbox Test/cummin/cummin.sci
1d02c924ea13d3b1dcf90401e94b52f851c2641c
[]
no_license
ankurmallick/Scilab_spt
bded5b3ed7c5618770ef4bb997b5f61aa7732cd9
e35c986f70147ee773796c839153ed7adbda3941
refs/heads/master
2021-01-17T06:48:24.162281
2016-12-05T12:54:24
2016-12-05T12:54:24
43,445,584
0
2
null
2015-12-10T05:15:44
2015-09-30T16:47:57
Scilab
UTF-8
Scilab
false
false
2,024
sci
cummin.sci
function [output] = cummin(A, dim, direction) funcprot(0); [rows, cols] = size(A); if(~exists('dim','local') & ~exists('direction','local')) then if(rows==1 | cols==1) then output = zeros(rows, cols); minim = 999999; for iter = 1:max(size(A)) if(A(iter)<minim) then minim = A(iter); end ...
07707a58c6eee849cd309098fc2b125dc16bc0f6
449d555969bfd7befe906877abab098c6e63a0e8
/635/CH8/EX8.14/Ch08Ex14.sci
72ec59da52ba22dcc473c4221db451062996de00
[]
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
971
sci
Ch08Ex14.sci
// Scilab code Ex8.14: Minimum distance from the centre of the Laue pattern of an fcc crystal Page 289 (2010) n = 1; // Consider the first order diffraction a = 4.5e-010; // Lattice parameter for fcc lattice, m V = 50e+03; // Potential difference across the X-ray tube, volt D = 5; // Crystal to film di...
a18f5748e4ea86f2fbbeced56d673ffa78bebda8
449d555969bfd7befe906877abab098c6e63a0e8
/3869/CH1/EX1.9/Ex1_9.sce
fce22d92380ff21fb9082da8184f21123633dbd8
[]
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
395
sce
Ex1_9.sce
clear // // // //Variable declaration lamda1=650*10**-9 //wavelength(m) lamda2=500*10**-9 //wavelength(m) n1=10 n2=13 D=1 //distance(m) d=0.5*10**-3 //seperation(m) //Calculation x=n1*lamda1*D/d //least distance of the point from central maximum(m) //Result printf("...
e69f67285b81b2fe43e37fd24817c156ed9c6f23
e0124ace5e8cdd9581e74c4e29f58b56f7f97611
/3913/CH4/EX4.1/Ex4_1.sce
a0a3a615c8bafbae386e39be7bdeaaa6dc2583c0
[]
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
235
sce
Ex4_1.sce
//Chapter 4 : Invertible Matrices //Example 4.2 //Scilab 6.0.1 //Windows 10 clear; clc; X=[1 0 0; 0 2 0; 0 0 3]; disp(X,'X=') mprintf('has a common unique left inverse and unique right inverse') disp(inv(X),'X=')
63a4ed5a2aa7c3354f34690eb02a5e2ec5fb28c2
daabc3867b8f4cd1afe9ef0d39701a7d9c4d8acb
/mfhdf/hdfimport/testfiles/SDSfloat2.tst
6ae01711a97bfd62f22b3e0641009c67c11150a0
[ "BSD-3-Clause", "LicenseRef-scancode-hdf5", "NetCDF" ]
permissive
schwehr/hdf4
142afe72520b32634d84494f51015eb8c7ab0b1f
97ac2954ca6d6c2bba24ade9301b691b98135709
refs/heads/master
2023-03-18T03:48:07.616808
2023-03-09T20:49:55
2023-03-09T20:49:55
581,363,881
0
0
NOASSERTION
2022-12-23T01:17:44
2022-12-23T01:17:44
null
UTF-8
Scilab
false
false
517
tst
SDSfloat2.tst
SDSfloat2.out: Version Descriptor : (tag 30) Ref nos: 1 Number type : (tag 106) Ref nos: 14 17 20 SciData dimension record : (tag 701) Ref nos: 14 17 20 Scientific Data : (tag 702) Ref nos: 4 6 7 Numeric Data Group : (tag 720) Ref nos: 2 3 5 Vdata ...
4bec7437f72a4a7a4a31455a040a5df57d1b4070
449d555969bfd7befe906877abab098c6e63a0e8
/3871/CH12/EX12.25/Ex12_25.sce
203e6493433f53322b1a09298a6c831b103dc2d4
[]
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
466
sce
Ex12_25.sce
//===================================================================================== //Chapter 12 example 25 clc;clear all; //variable declaration f1 = 3; //frequency in MHz f2 =6; //frequency in MHz C1 = 251; //capacitance in pF C2 = 50; //capacitance in pF //calculations Cd =...
7778bc2194f2eb26d4c03bff501c1d1aeeb9c6fe
449d555969bfd7befe906877abab098c6e63a0e8
/1655/CH7/EX7.2.4/Example_7_2_4.sce
5cd795a0cd4f84ae11655a042b15cd8a9a34cf41
[]
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
663
sce
Example_7_2_4.sce
// Example 7.2.4 page 7.12 clc; clear; n1=3.6; //refractive index n=1; //refractive index of air F=0.68; //transmission factor Pin=30/100; //percent power supplied eta =(n1*(n1+1)^2)^-1; //computing eta P=Pin*eta; //computing optical power emitted eta=eta*100; P=P*1000; Pt=P*Pin; //...
f7950a1e6a2f8a417610016e3c39b2b63e0f779d
449d555969bfd7befe906877abab098c6e63a0e8
/1538/CH19/EX19.7/Ex19_7.sce
65424176d1593b3b69d8c42ca85fed3c55d511c4
[]
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
261
sce
Ex19_7.sce
//example-19.7 //page no569 //given //hole density n=10^19 //per m^3 //intrinsic carriers concentration ni=1.5*10^16 // per m^3 //no of conduction electrons are given by p=(ni)^2/n //per m^3 printf ("the no of intrinsic carrier are %e per m^3",p)
f0cb7c0cb7754c53ade063babb08337565052a1b
717ddeb7e700373742c617a95e25a2376565112c
/1445/CH8/EX8.33/Ex8_33.sce
aaf8cdd40969733e8c79b2ac14eff3701b554a44
[]
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
1,501
sce
Ex8_33.sce
//CHAPTER 8- DIRECT CURRENT MACHINES //Example 33 disp("CHAPTER 8"); disp("EXAMPLE 33"); //230 V DC series motor //VARIABLE INITIALIZATION v_t=230; //in Volts N1=1500; //in rpm I_a1=20; //in Amperes r_a=0.3; //armature resistance ...
dcc9ce26f8fd4f7767d4c6801f507c5a3b94212c
527c41bcbfe7e4743e0e8897b058eaaf206558c7
/Positive_Negative_test/Netezza-Base-MaximumLikelihoodEstimation/FLMLENormalUdt-NZ-01.tst
1375895d7bfe32bf0fdb716fc5b98f250434272b
[]
no_license
kamleshm/intern_fuzzy
c2dd079bf08bede6bca79af898036d7a538ab4e2
aaef3c9dc9edf3759ef0b981597746d411d05d34
refs/heads/master
2021-01-23T06:25:46.162332
2017-07-12T07:12:25
2017-07-12T07:12:25
93,021,923
0
0
null
null
null
null
UTF-8
Scilab
false
false
61,648
tst
FLMLENormalUdt-NZ-01.tst
-- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Netezza -- -- Copyright (c): 2014 Fuzzy Logix, LLC -- -- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC. -- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC. --...
d67f9db197646bcf5281d3c594d8b177c34dbbea
449d555969bfd7befe906877abab098c6e63a0e8
/3547/CH10/EX10.8/EX10_8.sce
20982607ce23e0ff09d5ee514d34a3071c3deaea
[]
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
743
sce
EX10_8.sce
// Example 10.8 // Calculation of the Stokes signal power at the fiber output // Page no 480 clc; clear; close; //Given data p1=20; // Input power pump ps=-10; // Input Stokes’s signal power alpha=0.08; L=2; // Length of fiber alpha1=0.046...
606d1a6c325f6235513831e0dfb8e05cd3098e15
449d555969bfd7befe906877abab098c6e63a0e8
/476/CH3/EX3.1/Example_3_1.sce
c679976046ac325fb991e09efbba615b4b5d29d9
[]
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
378
sce
Example_3_1.sce
//A Textbook of Chemical Engineering Thermodynamics //Chapter 3 //P-V-T Behaviour and Heat Effects //Example 1 clear; clc; //Given: T = 350; //temperature in K P = 10^5; //pressure in N/m^2 R = 8.314; //ideal gas constant //To find the molar volume of air V = (R*T)/P; //molar volume in m^3 mprin...
7be5c3df430a4d28779b77129876bde80ed731bf
449d555969bfd7befe906877abab098c6e63a0e8
/2132/CH4/EX4.7/Example4_7.sce
39654a300d6aa4cbcde3d7fa76a9b0ff99933cac
[]
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
328
sce
Example4_7.sce
//Example 4.7 clc; clear; close; format('v',9); //Given data : S1=0.005;//sp. gravity S2=1;//sp. gravity Patm=1.014*10^5;//Pa h=50/1000;//m w=1000;//kg/m^3 pa=-w*S2*h;//kg/m^2 Pabs=pa*9.81+Patm;// disp(abs(pa*9.81),"Pressure intensity of gas in Pa(Vaccum): "); disp(Pabs,"Absolute pressure in the pipe in P...
4687627a7dc6d52be06ae3122ea6c95e9799a5e8
047d952507eb3b9d71fac69ec3332225f17f53ef
/main/testfiles/test01.tst
eec40a80862a54c3e1e06d0173a785a7f1c161d1
[]
no_license
patrick-nanys/project-laboratories-hw
89ab8f366219f491e6feba5558bf41ef8205dda1
ba57a9d5e4ca33a3cc1be3cdb4fe679fe0149f93
refs/heads/master
2022-08-09T14:14:31.220503
2020-05-18T11:20:03
2020-05-18T11:20:03
250,313,203
0
0
null
null
null
null
UTF-8
Scilab
false
false
60
tst
test01.tst
2;e;0 1;- p1;-;-;-;2;0;2 -;-;-;-;2;0;1 stepPlayer 1 2 status
aa4457710b616e5fa69b1d9439c427405a2d5c51
4a1effb7ec08302914dbd9c5e560c61936c1bb99
/Project 2/Experiments/GAssist-Interval-C/results/GAssist-Intervalar-C.tic-tac-toe-10-1tra/result0s0.tst
10ce04288229beba3d651e76ade260d1706600dd
[]
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
2,159
tst
result0s0.tst
@relation tic-tac-toe @attribute TopLeft{x,o,b} @attribute TopMiddle{x,o,b} @attribute TopRight{x,o,b} @attribute MiddleLeft{x,o,b} @attribute MiddleMiddle{o,b,x} @attribute MiddleRight{o,b,x} @attribute BottomLeft{x,o,b} @attribute BottomMiddle{o,x,b} @attribute BottomRight{o,x,b} @attribute Class{positive,negative} @...
8f070e85b688ebf92e4f4b2d26e5ebf2a25a5c81
490a7a641d55e432d1b9a2de6727d42dca8e349b
/exp/PVGrid.tst
85f8cbbf86e6429a7a958da4626d0909a31f95b5
[ "MIT" ]
permissive
pontusvision/pontus-gdpr-gui
83c1a2382f23260b8776146e727333e0e0a29ff2
1e13391af278c96cc729b4cf80547ea46c4c7e72
refs/heads/master
2022-07-13T12:03:42.482521
2021-03-08T16:41:14
2021-03-08T16:41:14
110,453,373
0
0
MIT
2022-06-23T04:55:10
2017-11-12T17:28:41
CSS
UTF-8
Scilab
false
false
21,069
tst
PVGrid.tst
import React from 'react'; import { AgGridReact } from 'ag-grid-react'; import 'ag-grid-community/dist/styles/ag-grid.css'; import 'ag-grid-community/dist/styles/ag-theme-balham-dark.css'; import ResizeAware from 'react-resize-aware'; import axios from 'axios'; import { Box, Flex } from 'reflexbox'; import Pontu...
3371903ceaebdf86188e6c079b3da62cd3b45629
449d555969bfd7befe906877abab098c6e63a0e8
/22/CH4/EX4.4/ch4ex4.sce
1b6a89b4a7c561d5112c0cd176dd2ca25bc43008
[]
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
251
sce
ch4ex4.sce
//signals and systems //Lapalce Transform x(t) = (t-1)u(t-1)-(t-2)u(t-2)-u(t-4), 0<t<T syms t s; a = 3; T = 1; //t = T; y1 = laplace('t',t,s); y2 = laplace('t',t,s); y3 = laplace('1',t,s); y=y1*(%e^(-s))+y2*(%e^(-2*s))+y3*(%e^(-4*s)) disp(y)
66f10a81236d31fcf1be283fce958a598a396ecd
449d555969bfd7befe906877abab098c6e63a0e8
/1445/CH2/EX2.49/ch2_ex_49.sce
6b42d98581cd111f0824ab37976461cb66c2c6c8
[]
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
ch2_ex_49.sce
//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT //Example 49 disp("CHAPTER 2"); disp("EXAMPLE 49"); //VARIABLE INITIALIZATION v=200; //in Volts angle_v=30; //in degrees I1=20; //in Amperes angle_I1=60; //in degrees I2=...
decf8fb3dc674ab5c9eef3ce78287a0269c82369
1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08
/Scilab/Redundant Receivers/inc/Qfunc.sci
f45f5e15a543145c3bfdfb03cccc56bde9051b1a
[]
no_license
lrayzman/SI-Scripts
5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d
9ab161c6deff2a27c9da906e37aa68964fabb036
refs/heads/master
2020-09-25T16:23:23.389526
2020-02-09T02:13:46
2020-02-09T02:13:46
66,975,754
0
0
null
null
null
null
UTF-8
Scilab
false
false
451
sci
Qfunc.sci
// Q-function // // (c)2011 L. Rayzman // Created : 10/18/2011 // Last Modified: 10/18/2011 - Added Eye Measurement Tool //////////////////////////////////////Q-Function//////////////////////////////////// function Qofx = Qfunc(x) // Extracts waveform data from CSDF ASCII files // // Inputs: // ...
0b6a36bb1ce8d1f46de6f8d27afc94a28e50c460
e41b69b268c20a65548c08829feabfdd3a404a12
/3DCosmos/Data/Scripts/_Movie/_AnimateTools.SCI
5c888e4a1ea1f7a929d140fc62d276601818a611
[ "LicenseRef-scancode-khronos", "MIT" ]
permissive
pvaut/Z-Flux
870e254bf340047ed2a52d888bc6f5e09357a8a0
096d53d45237fb22f58304b82b1a90659ae7f6af
refs/heads/master
2023-06-28T08:24:56.526409
2023-03-01T12:44:08
2023-03-01T12:44:08
7,296,248
1
1
null
2023-06-13T13:04:58
2012-12-23T15:40:26
C
UTF-8
Scilab
false
false
2,869
sci
_AnimateTools.SCI
function CreateClock(showdate) { clockcolor=GetColor("Clock"); thesize=0.12; clockframe=root.SC.Universe.addscreenframe("ClockFrame"); root.SC.Universe.moveobject("ClockFrame",-1000); clockframe.CastVolumeShadow=false; #clockframe. clockpos=point(thesize+0.02,thesize+0.02,0); if showdate then {...
db5be8d69e7265b6f3cd8689e0b7e44d5a148002
449d555969bfd7befe906877abab098c6e63a0e8
/1652/CH17/EX17.5/17_5.sce
f66cc63406430405e62ca75febeb9a11743552f1
[]
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
216
sce
17_5.sce
clc //Initialization of variables g1=0.661 g2=0.899 g3=0.405 g4=0.803 g5=0.946 g6=0.614 k=1.33 //calculations k0=k*g3/(g1*g2) k2=k0*g4*g5/g6 //results printf("Equlibrium constant = %.2f lt/mol min",k2)
730a6973c3800c92f97d00a0b56223e94e5f6627
7f8a82b193633b744689e1f194923592e656b470
/rltoolSci/macros/alteraPontoDesejado.sci
d97c2e796e2676f55f9e720fb2d28ef5fa9b6b0c
[]
no_license
josuemoraisgh/rltoolSci
3b5a5e8fc6a27b60bca3354af5222350cd8e8b3b
a76ad9fbfe988bb2674adfeb466847a32719474a
refs/heads/main
2023-07-14T10:40:12.549424
2021-08-26T17:52:16
2021-08-26T17:52:16
385,216,740
0
0
null
null
null
null
UTF-8
Scilab
false
false
765
sci
alteraPontoDesejado.sci
function alteraPontoDesejado global main_fig1 axes Mp T5 str = get('eMp','String'); if ~isempty(str) then Mp = strtod(str); set('tMp','String','Mp = '+str+' %'); set('eMp','String','');// set to a dummy character end str = get('eT5','String'); if ~isempty(str) the...