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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f33e9c4d5f74b0c61b6655d03dbe175b51964514 | 449d555969bfd7befe906877abab098c6e63a0e8 | /497/CH14/EX14.5/Chap14_Ex5.sce | 74a98ae99eebb8f5fcd0dd12ea22c3baa340da46 | [] | 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,612 | sce | Chap14_Ex5.sce | //Kunii D., Levenspiel O., 1991. Fluidization Engineering(II Edition). Butterworth-Heinemann, MA, pp 491
//Chapter-14, Example 5, Page 353
//Title: Elutriation and Attrition of Catalyst
//==========================================================================================================
clear
clc
//I... |
56f3d33849138bce0c6246950eb75c7a53f990c5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2837/CH21/EX21.4/Ex21_4.sce | a799b845ee8f120fe3944d69a75726ca1ac42f0e | [] | 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 | 418 | sce | Ex21_4.sce | clc
clear
//Initalization of variables
v1=1234 //ft/s
v2=532 //ft/s
kb=0.92
alp=20 //degrees
ve=900 //ft/s
r=2200 //ft/s
g=32.17 //ft/s^2
//calculations
vr=sqrt(v1^2 +v2^2)
vr2=vr*kb
vrc=vr2*cosd(alp)
W=(v1+vrc)*ve/g
eta=W/(r^2 /(2*g)) *100
//results
printf("Blade work = %d ft-lb/lb",W)
printf("\n Ef... |
b1ce2c23aea084d50ccd5c7ceceb79b84f2c1f5d | 449d555969bfd7befe906877abab098c6e63a0e8 | /995/CH2/EX2.16/Ex2_16.sce | 253cf5a6170021bf5f7e9abe9176157f33051f61 | [] | 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 | 249 | sce | Ex2_16.sce | //Ex:2.16
clc;
clear;
close;
temp_coeff=0.0005;//in per degree centigrade
r_t1=680;//in ohm
t1=20;//temperature diff.
t2=90;
r_o=r_t1/(1+(temp_coeff)*t1);
r_t2=r_o*(1+(temp_coeff)*t2);
printf("Resistance at %d degree = %f ohms",t2,r_t2);
|
1f5b789353ef1392244807732f3d910caca4528b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1752/CH4/EX4.10/exa_4_10.sce | 0a9dc1450ed4f7c04477460dc053d53ae6d35432 | [] | 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,337 | sce | exa_4_10.sce | //Exa 4.10
clc;
clear;
close;
//given data
L=40*10^-2;// in m
k=1.5;// in W/mK
A=4;// in square meter
alpha=1.65*10^-3;// in m^2/h
//T = 50-40*x+10*x^2+20*x^3-15*x^4 , so
// dtBYdx= -40+20*x+60*x^2-60*x^3
// d2tBYdx2 = 20+120*x-180*x^2
// Part (a) Heat entering the slab
//q1= -k*A*dtBYdx , at
x=0;
qi= ... |
142b6b876b22d686e8d192a5a9b23ebb5b7d05bb | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects - Kopie/CONT/RK17UPQ/ATWM1_Working_Memory_MEG_RK17UPQ_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce | 456c3a9cdb645f419114932a3f8a474de3c1af58 | [] | 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,599 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#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... |
e5f65a00e5d55a4f957292316e1178d5e501031d | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH3/EX3.8/3_8.sci | 491ac18c2658523758668e1d59bede4d3def4d55 | [] | 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 | 548 | sci | 3_8.sci | // Calculate the guaranteed values of the resistance
clc;
R1=100;
R1_le_perunit=0.5; // R1_le_perunit indicates dR1/R1 = 0.5%
R2=1000;
R2_le_perunit=0.5;
R3=842;
R3_le_perunit=0.5;
Rx=R2*R3/R1;
disp(Rx,'Value of resistance (ohm)=')
Rx_le_perunit=R1_le_perunit+R2_le_perunit+R3_le_perunit;
disp(Rx_le_perunit... |
9c3118454087e8af56b541d53a59a03fc6870338 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1/macros/percent/%bgspb.sci | a7b1b970b7a6e445d264fddb0d5a2bda1a14c5ff | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 136 | sci | %bgspb.sci | function r=%bgspb(a,b)
// perform logical elementwise a|b where a is a boolean sparse matrix
// and b a boolean matrix
r=sparse(a)|b
|
c86d31a54bdf06bc1c2d4e85540dcf059e7bcb94 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH57/EX57.06/57_06.sce | bd67744c3d8328d36724bcde40ccf1980fc9c52f | [] | 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 | 57_06.sce | clear;
clc;
x=.05;
vs=1;
vr=1;
p=10;
d=asin(p*x);
qs=(vs^2/x)-(vs*vr*cos(d)/x);
qs=round(qs*100)/100;
qR=(vs^2/x)-(vs*vr*cos(d)/x);
qR=round(qR*100)/100;
q=(qs+qR);
mprintf("%f+j%fpu",p,q);
|
632fa8c43ac8011638bdf9f6be2cd98372489082 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH9/EX9.6/Ex9_6.sce | c380dc147a36604be00d1fcd5dd8a7deaf0ea1f0 | [] | 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 | 281 | sce | Ex9_6.sce | clear
//Given
m=1.67*10**-27
v=4*10**5
a=60
q=1.6*10**-19
B=0.3
//Calculation
//
r=(m*v*sin(a*3.14/180.0))/q*B
P=v*cos(a*3.14/180.0)*((2*%pi*m)/(q*B))
//Result
printf("\n (i) Radius of the helical path is %0.1f cm",r*10**3)
printf("\n (ii) Pitch of helix is %0.2f cm",P*10**2)
|
3400471cd78ab12251c4a5ebf03d82f698703832 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2342/CH5/EX5.35/EX5_35.sce | f4c826500e1a88f5d46594b21d40d3ceea62ba42 | [] | 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 | 582 | sce | EX5_35.sce | // Exa 5.35
format('v',6)
clc;
clear;
close;
// Given data
V_DD= 10;// in V
I_D= 0.4*10^3;// in A
W= 100;// in µm
L= 10;// in µm
uACox= 20;// in A/V^2
Vt= 2;// in V
R= poly(0,'R')
V_GS= V_DD-I_D*R;// in V
// Evaluation the value of R by using polynomial method,
R= I_D-1/2*uACox*W/L*(V_GS-Vt)^2;
R= roots... |
e6d36cad14ebe2eb55d94fcc9f6d66db7dc0bf22 | cfac21260a4737c49982a78160361703914dac1f | /sem1/old_src/Программы и so on/lab_5/Segway/plot_clss.sce | ae1e8ecf6b67ad9c68c3b9e29b5edeb9f67accf8 | [] | no_license | Zenkin/courses | 680442fa57bc3b1c872e15e9bc7e98b579bfd39e | b0b0aafe0c358a611868fd764a2ad1cb71078d8d | refs/heads/master | 2020-03-23T22:19:20.542398 | 2018-07-24T13:55:20 | 2018-07-24T13:55:20 | 139,969,727 | 0 | 0 | null | 2018-07-06T10:19:48 | 2018-07-06T10:19:47 | null | UTF-8 | Scilab | false | false | 699 | sce | plot_clss.sce | kolor = 5
importXcosDiagram("/home/evgeniy/Рабочий стол/СКБ/Введение в специальность/Новое/Segway/cart_3_clss.zcos");
xcos_simulate(scs_m, 4);
subplot(3,2,1);
xtitle("Угол Segway");
plot2d(outp.time, 180/%pi*outp.values(:,1),[kolor]);
//subplot(3,2,3);
//xtitle("Угол колес");
//plot2d(dtheta.time, 180/%pi*theta.values... |
1901a2fceae3bdf22a37ce6871e013c4dcad769b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1946/CH9/EX9.7.a/Ex_9_7_a.sce | fb54a3a3a6d5a8ec13122b4fe26d112351a76889 | [] | 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 | 274 | sce | Ex_9_7_a.sce | // Example 9.7.a;//responsivity
clc;
clear;
close;
C=3*10^8;//SPEED of light in meter per second
n=0.50;//quantum efficiency
h=900;//wavelength in nano meter
ht=6.62*10^-34;//plank constt.
R=((n*h)/1248);//responsivity
disp(R,"Responsivity is in ampere per watt")
|
5d8939f020ff8c3bc1b26d3834414198caad67c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2528/CH4/EX4.4/Ex4_4.sce | 86705c07a544524d08d4ac9f02c38b24a1d9b637 | [] | 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 | 400 | sce | Ex4_4.sce | clc;
clear;
close;
//pagec no 100
Rf=14*10^3;//in ohm
Ri=2*10^3;//in ohm
Av1=1+(Rf/Ri);
disp(Av1,"Av1 is");
Av3=20*log10(Av1);
disp(Av3,"Av1 in dB is");
Rf=18*10^3;//in ohm
Ri=2*10^3;//in ohm
Av2=1+(Rf/Ri);
disp(Av2,"Av2 is");
Av4=20*log10(Av2);
disp(Av4,"Av2 dB is ");
Avt=Av3+Av4;
disp(Avt,"Total Ga... |
799c6eca63bb40275263ffaebca177bc3819dc9a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1703/CH12/EX12.6/12_6.sce | f698bcfa90f7fb143c7d43500c5d739c61ce58d2 | [] | 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 | 12_6.sce | clc
//initialisation of variables
w= 62.4 //lb/ft^3
d= 4 //in
D= 0.0765 //lb/ft^3
Da= 8 //in
vw= 1/13
nw= 20
va= 13 //ft/sec
//CALCULATIONS
na= nw*va*d^2/Da^2
//RESULTS
printf ('power = %.f r.p.m ',na)
|
22705a74a88ffe409465e7da7c79d6ba5ceb32c9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3446/CH3/EX3.8/Ex3_8.sce | 8290c4bd8de9344858511936e9402e7ab140267e | [] | 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 | 579 | sce | Ex3_8.sce | // Exa 3.8
// TO find coverage radius of an access point.
clc;
clear all;
SNRmin=12;//in dB
n=3; //No of floors
Backgroundnoise=-115; //dBm
pt=100 //in dBm
//solution
pt_db=10*log10(pt);
Sr=Backgroundnoise+SNRmin; //receiver sensitivity
Lpmax=pt_db-Sr;
//Refering table 3.4
Lp_d0=38; //ref path loss... |
3ad4bbcbef5a8c170a3bd9376b2d6136198ac18b | 08bfc8a1f8e44adc624d1f1c6250a3d9635f99de | /SDKs/swig/Examples/test-suite/scilab/varargs_overload_runme.sci | 2027157fbe09514f0ad767b6bd233ea442137999 | [] | no_license | Personwithhat/CE_SDKs | cd998a2181fcbc9e3de8c58c7cc7b2156ca21d02 | 7afbd2f7767c9c5e95912a1af42b37c24d57f0d4 | refs/heads/master | 2020-04-09T22:14:56.917176 | 2019-07-04T00:19:11 | 2019-07-04T00:19:11 | 160,623,495 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 128 | sci | varargs_overload_runme.sci | version https://git-lfs.github.com/spec/v1
oid sha256:dde872a5d6cadd376120faba84aed15dff0960a464ad3a736b9d5e628629e524
size 695
|
0397f5530310404a3682854b44b3dee3171ce8d5 | a1632506720cc98cee487ffbb3f38f7a47abd6ea | /CODE/32.tst | e6f6426b9fb9a9a04707c5d9142b35f2f18f250e | [] | no_license | timduff35/PLMP | d32ec00a125e673e07db3a31d81f630f9b7d8883 | 762701481dd3415d67caffd8832ec2534e18ba7a | refs/heads/master | 2022-08-08T11:12:29.645747 | 2022-06-01T11:02:37 | 2022-06-01T11:02:37 | 177,167,189 | 29 | 10 | null | null | null | null | UTF-8 | Scilab | false | false | 429 | tst | 32.tst | p0:= PermList([2, 1, 11, 5, 4, 24, 12, 13, 14, 15, 3, 7, 8, 9, 10, 26, 18, 17, 25, 21, 20, 27, 28, 6, 19, 16, 22, 23, 30, 29, 32, 31]);
p1:= PermList([6, 19, 1, 22, 23, 8, 2, 3, 4, 5, 20, 21, 7, 17, 18, 9, 27, 28, 13, 24, 25, 16, 26, 31, 32, 10, 29, 30, 14, 15, 11, 12]);
p2:= PermList([3, 7, 4, 9, 10, 16, 5, 6, 1, 2, 1... |
250ea31d7f9e8b0c2ab33d6410a179aebde110eb | d1a2737ec744ffbba1165afa7b05f26a4076f513 | /Lab 8/Q3.sce | 3ad14b5b2b36ef405a38cf4a8dd4aaceafb341bc | [
"MIT"
] | permissive | ipsitmantri/EE-324-Control-Systems-Lab | 4e37a3de51f4114ba0ea281cbb1da78a6c4815bb | b34c45efc3539005603b2e76c1665d6636f80f88 | refs/heads/master | 2023-04-03T10:42:34.548542 | 2021-04-13T14:11:21 | 2021-04-13T14:11:21 | 357,540,595 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 862 | sce | Q3.sce | clc; clear;
s = poly(0, 's');
//---------------------
// Part a
p1 = -1;
p2 = %i;
p3 = -%i;
p4 = 2*%i;
p5 = -2*%i;
g = 1 / ((s-p1)*(s-p2)*(s-p3)*(s-p4)*(s-p5));
G = syslin('c', g);
scf();
evans(G, 1000);
xgrid();
//----------------------
// Part b
shift = 5;
g_shifted = 1 / ((s-p1 +shift)*(s-p2 +shift)*(s-p3 +shift)*(s... |
54c35e397e2269b7833e481481ea6895d34be0ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /1379/CH9/EX9.1.7/example9_7.sce | 50f11f30f9fe50c1eb2c2a6a0fa6b9f68e5033d6 | [] | 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 | example9_7.sce |
//exapple 9.7
clc; funcprot(0);
// Initialization of Variable
rhog=1200;//density of glycerol
mu=1.45;//viscosity of glycerol
pi=3.1428;
g=9.81;
rhos=2280;//density of sphere
d=8/1000;
s=0;
uf=0.8*0.026;
//calculation
function[a]=intre()
u=linspace(0,uf,1000);
for i=1:1000
y=((pi/6*d... |
74cc0e9b264213cd1062d3729dff3bcbdededa0d | 3073307fa4b6da9371518f0718c199501b8c5c71 | /viejos/rk4sistemas2.sci | ef3a6e85ad139d8af8b74d17c155bd89e0fb59d4 | [] | no_license | fern17/CalculoNumerico | 8b04abdf8e1da4b69a1256334a4bc58ff5c9180d | c793733ce17616361dd02f358ef63c1d9be5c99e | refs/heads/master | 2020-06-04T00:06:19.723655 | 2011-12-20T13:47:40 | 2011-12-20T13:47:40 | 2,929,202 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 898 | sci | rk4sistemas2.sci | function y = f1(t,u1,u2)
y = -4*u1-2*u2+cos(t)+4*sin(t);
endfunction
function y = f2(t,u1,u2)
y = 3*u1+u2-3*sin(t);
endfunction
function [u1,u2] = rk4sist(a,b,h,u10,u20)
[t] = a:h:b;
u1 = zeros(length(t))
u2 = zeros(length(t))
u1(1) = u10;
u2(1) = u20;
for i=1:(length(t... |
86520aefbbd6775ad902db2ef3914842f02893c1 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.0/Unix/scilab-2.0/macros/tdcs/test_d.sci | 828bea655e72bcb3e2346b7bd7b97ce9287474ae | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 599 | sci | test_d.sci | //[f1,f2]=test_d(ue)
//[f1,f2]=test_d(ue)
// f1 est la dynamique linearisee
//autour du point d'equilibre donne par equilcom(ue)
//du systeme precedent observateur-controleur (voir simulcomp)
// f2 est la valeur theorique de f1 (voir cours)
//!
deff('[yy,zdot]=fff(z,vv)',...
['u=1-k*z(3:4)';
'yy=0';
'xdot... |
f4587cf780583ddb365f832c04a007b0117c1d3e | 4af7d26a4959553d9a2cee1a78878ee960599382 | /test_cases/test12.tst | eb33b16467cec951a8503dc4bfb25d31e025d0f8 | [] | no_license | CJ8664/chord_protocol | f61168ceea224e47785e56a3263eda89da7dc3df | 30b57463cfd190e9dd5f057629b69ffbb6edb7b2 | refs/heads/master | 2020-04-11T06:07:46.875416 | 2018-11-02T03:06:34 | 2018-11-02T03:06:34 | 161,571,340 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 797 | tst | test12.tst | # Adding to case 2 everything is stable and global information is correct
# Drop the all nodes except fist and last nodes, now no explicit stab or fix_finger_table
# predecessor and successor are correct but finger table stale, so call fix table on all to update
# After fix everything is consistent
add 0
add 1
add 2
ad... |
b8c85f5d1d4627c8089fd84e1c27bb24f590cdcd | c6515791fea5828996a3924a74b5358852bc69f0 | /ap4_metodo_potencia/Metodo_potencia_desl_inv.sci | 53afb33944e6088e5fe48191eb59ae15493d4839 | [] | no_license | fernandascovino/fgv_math_modeling_3 | 366f05faa9fc657473acad8c1061b7c6feed8d4a | 11853e0bf2c05ad2df4fb369dfa922fc50c68ceb | refs/heads/master | 2023-02-24T23:03:18.431724 | 2021-01-31T18:08:16 | 2021-01-31T18:08:16 | 334,722,683 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 334 | sci | Metodo_potencia_desl_inv.sci | function [lambda,v] = Metodo_potencia_desl_inv(A,x0,alfa,epsilon)
A = inv(A -alfa*eye(size(A,1), size(A,2))) //deslocamento e inversão da matriz
[lambda,v] = Metodo_potencia(A,x0,epsilon)
//lambda é autovalor de inv(A - alfa*I), então (alfa + 1/lambda) é autovalor de A
lambda = alfa + 1/lambda
end... |
cfc4968cfd443c38bf8019890ece610599c2e24e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH8/EX8.23/Ex8_23.sce | bf53d8efce45b886e30dec7749d0ce4edd903894 | [] | 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 | 870 | sce | Ex8_23.sce | // chapter 8
// example 8.23
// fig 8.43
// Find duty cycle, filter inductance and filter capacitance
// page-514-515
clear;
clc;
// given
Edc=14; // in V (dc source)
E0=6; // in V (average output voltage)
del_Vc=15; // mV (peak to peak ripple voltage)
del_I=0.6; // in A (peak to peak ripple current)
f=30; // in KHz (s... |
0730bd1a23185c84934c0ffa38efb7a43d4a16e7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH14/EX14.4/C14P4.sce | 5897c0082dc9a7a92f8d237845c9628c1572e6f8 | [] | 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 | 425 | sce | C14P4.sce | clear
clc
//to find speed of partical at r = 0
// GIVEN:
//mass of Earth
ME = 5.98e24//in Kg
//radius of Earth
RE = 6.37e6//in m
//Gravitational constant
G = 6.67e-11//in N.m^2/Kg^2
// SOLUTION:
//applying newton's law of universal gravitation and law of conservation of energy
//speed of partical at ... |
36d0ded5d84dab061127cfa86cc1757dfc00f182 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH1/EX1.1/Ch01Ex1.sce | 6c96a7c4649193a032d42754f91bcd8b8ab02570 | [] | 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,018 | sce | Ch01Ex1.sce | // Scilab code Ex1.1 : Pg:18 (2008)
clc;clear;
e = 1.6e-019; // Energy equivalent of 1 eV, J
m = 0.05; // Mass of the golf ball, kg
v = 20; // Velocity of golf ball, m/s
h = 6.625e-034; // Planck's constant, joule-sec
Lambda1 = h/(m*v); // de Broglie wavelength of a golf ball, m
m = 1.67e-027; ... |
3b19f2d8605129be469461bc6c44d491326323d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH13/EX13.23/13_23.sce | bae87a0ad1b54df28a9ed749dc78359715df0e7e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 456 | sce | 13_23.sce | //Chapter 13, Problem 23, figure 13.83
clc;
E=30; //e.m.f source
r=1.5; //resistance in ohm
Rl=r;
I=E/(r+Rl); //current in ampere
P=I^2*Rl; //power in watt
printf("The circuit diagram is shown in Fig. 13.84.\n\n");
prin... |
23ec5188b6d60c30fd1bad7dfbf6a7557454dd25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH3/EX3.3.54/Ch3_3_54.sce | 0747348cc7c38f9e4254a7cdb0c567fa8cac2733 | [] | 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 | 510 | sce | Ch3_3_54.sce | clc
disp("Example 3.54")
printf("\n")
disp(" Draw a DC load line for the base bias circuit neglecting Vbe")
printf("Given\n")
//given
betadc=100
Rc=5*10^3
Rb=1.5*10^6
Vc=30
//to find Ib
Ib=Vc/Rb //from ciruit
//Ic value
Icq=betadc*Ib
//Vce value
Vceq=Vc-(Icq*Rc)
//to draw DC load line
Ic1=Vc/Rc
Vce1=... |
1f25a25672fdb660419752eebcb7ef99195daab8 | e39063f3e6256f4470a2df355d6b9fd1200d5597 | /src/Moniteur_Skel.sce | a3c52e0bef3f90ac251f37fea1a3819c97d93cc9 | [] | no_license | Tong-ZHAO/tp_optimisation | be2f63729c6cbbfc47d073264498852caf84fd71 | 453d2165724279bd5a9056af1641fb4dae631d2e | refs/heads/master | 2020-05-20T23:02:31.929003 | 2017-05-06T12:34:34 | 2017-05-06T12:34:34 | 84,541,592 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,284 | sce | Moniteur_Skel.sce | ///////////////////////////////////////////////////////////////////////////////
// //
// MONITEUR D'ENCHAINEMENT POUR LE CALCUL DE L'EQUILIBRE D'UN RESEAU D'EAU //
// //
... |
bbedb3528311e4194418e1588e2a06653435fd52 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/plot2d1.man.tst | 9ded9002dbce6d10bc3ae543eb346f61129e19b1 | [
"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 | 286 | tst | plot2d1.man.tst | clear;lines(0);
// multiple plot without giving x
x=[0:0.1:2*%pi]';
plot2d1("enn",1,[sin(x) sin(2*x) sin(3*x)])
// multiple plot using only one x
xbasc()
plot2d1("onn",x,[sin(x) sin(2*x) sin(3*x)])
// logarithmic plot
x=[0.1:0.1:3]'; xbasc()
plot2d1("oll",x,[exp(x) exp(x^2) exp(x^3)])
|
72db4a5c29c25f82e50b62240c3494a6e4cb2cc6 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /prog_assembly/libs/scilab_code/tunnel_clb_ver00_gui.sce | e23ea469a91455c3d6cff05adaf204462598420e | [] | 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 | 1,128 | sce | tunnel_clb_ver00_gui.sce | global file_name;
//get filename, path and extension
[path,fname,extension] = fileparts(file_name);
hid_dir = path + '.' + fname;
select board_num
case 2 then
brdtype = '';
case 3 then
brdtype = '_30a';
case 4 then
brdtype = '_30n';
case 5
brdtype = '_30h';
else
messagebox('Please select the FPA... |
40e24cb1cda064bc5eed8bf53d88c67e67f16341 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH15/EX15.3/example15_3.sce | a832e3287fba46651d43b8c2c4cbbdcf2a0bc7b0 | [] | 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 | 306 | sce | example15_3.sce | vp=8;
vm=vp/2;
r=2.2*10^3;
t=2*10^(-3);
disp("Part a");
i=vm/r;
disp("the peak value of the current (in mA) is"); disp(i*10^3);
disp("Part b");
f=1/t;
disp("the frequency (in Hz) is"); disp(f);
disp("Part c");
w=2*%pi*f;
disp("equation representing the current is i=1.82*sin(1000*π*t) mA.");
|
fe0ad2e1cde9884717837b7ec99a8a585bbfe559 | 13c3ed7bef4d80dabd836219bbf4396f07cb934a | /gui_callback.sci | ac8573c6eae3fb5e347d4302481c25c53ad4b5d0 | [] | no_license | Mushirahmed/scilab_workspace | 99f489a110a5e295ce9fca9991122d14840018d3 | f58b91b87bb0357fff82dcb97b05541e7e976eca | refs/heads/master | 2021-01-10T15:48:40.576771 | 2016-02-10T10:32:46 | 2016-02-10T10:32:46 | 43,348,489 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | sci | gui_callback.sci | function gui_callback()
OutFormatVal = get(findobj("tag", "list_demo"), "string");
Out = get(findobj("tag", "list_demo"), "value");
disp(OutFormatVal(Out),"OutFormatVal is : " );
endfunction
|
9b8ae5b1be1415e6a52484b02a0d3ae4ad2dbaeb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2075/CH5/EX5.1/pe5_1.sce | f91aad34346457e106eb91a8a103e7bb218932b7 | [] | 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 | 332 | sce | pe5_1.sce | //example 5.1
clc; funcprot(0);
clf()
//initialization of variable
Vth=3.6;
Vgs=4;//voltage
//volt change beyond 3.6 causes a major increase in Id as it is cut off voltage
printf('Id=0 from 0 to 2 so not shown in the graph')
x=linspace(2,3.6,300);
y=(-2.5*(x-3.6))^.5;
plot(x,y)
xtitle('Vgs vs Id','Vgs','Id')... |
4382db889285577eb1d5f0ae9b24cc81cfa3d33a | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/m2sci/sci_balance.sci | c32b417d7925c6e66a7f5ad4c15c42614356c983 | [
"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 | 403 | sci | sci_balance.sci | function [stk,txt,top]=sci_balance()
// Copyright INRIA
txt=[]
if lhs==1 then
t1=gettempvar(1)
t2=gettempvar(2)
txt=lhsargs([t1,t2])+' = balanc('+stk(top)(1)+')'
stk=list(t1,'0',stk(top)(3),stk(top)(4),'1')
else
[t,b]=lhsvarsnames()
txt='['+b+','+t+'] = balanc('+stk(top)(1)+')'
stk=list(list('?','-2',stk(... |
bf33639ffc1178699f894dcbabfdb7284126b053 | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/Ymax.sci | 0a835534f609e63ca7f9e2cdfb536d1f2818c7c6 | [] | 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 | 55 | sci | Ymax.sci | function Y=Ymax()
global YMAX
Y=YMAX;
endfunction
|
26860d3ebb468a645a74c3efdd453f4099904591 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH13/EX13.17/13_17.sce | 560da341b55da90be8a16c427d81d49b7617e562 | [] | 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,101 | sce | 13_17.sce | //Chapter 13, Problem 17, Figure 13.62
clc;
I1=15 //current source in ampere
R1=6; //resistance in ohm
R2=4; //resistance in ohm
R3=2; //resistance in ohm
R4=8; //resistance i... |
85bb88bf431e5ca16840309be75b395f5a8cea7d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1994/CH6/EX6.3/Example6_3.sce | 348ba4e5ad217df8af1bfd745d9ae196520fb560 | [] | 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 | 346 | sce | Example6_3.sce | //Chapter-6,Example6_3,pg 6-63
//from plot 1 subdivision=0.2 units
pp=2+3*0.2//positive peak
np=2+3*0.2//negative peak
Nd=pp+np//no. of divisions
Vd=2*10^-3//volts per division
Vpp=Nd*Vd
Vm=Vpp/2
Vrms=Vm/sqrt(2)
printf("peak value of voltage\n")
printf("Vm=%.4f V\n",Vm)
printf("RMS value of voltage\n")
prin... |
b56d6fb5b9791026099fa432aa76326600ba5109 | 449d555969bfd7befe906877abab098c6e63a0e8 | /683/CH22/EX22.3/FC_22_3.sce | ad2128681c1336ffc101cf9c644c87ee33a30817 | [] | 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 | 294 | sce | FC_22_3.sce | // 22-3
clc;
clear;
//Power P
P=40*10^3 //Watt
n1=100; //rpm
n2=400; //rpm
//Speed factor Ks
Ks=0.9+0.001*n2;
//Clutch power Pc
Pc=P*n2/(n1*Ks)*10^-3;
// printing data in scilab o/p window
printf("\nThe Speed factor is %0.1f ",Ks);
printf("\nThe clutch poweris %0.0f KW",Pc);
|
c08202138caffe96bc28628f5c46105b25d86620 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2507/CH10/EX10.7/Ex10_7.sce | dbcfbf3424240260e333b4dda4260767eab61841 | [] | 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 | 660 | sce | Ex10_7.sce | clc
clear
printf("Example 10.7 | Page number 354 \n\n");
//Find all thermodynamic properties
//Given data
p = 15 //bar
u = 2594.5 //kJ/kg
//Solution
//From saturated steam table based on pressure at p = 15 bar
hf = 844.87 //kJ/kg
hg = 2792.1 //kJ/kg
vf = 0.001154 //m^3/kg
vg = 0.13177 //m^3/kg
uf = hf-100*... |
5aa3fdf589500ea9201d20aac5ba26928eadc38f | b9602336613b26d0b9c22a09d219c0ed8e158b4e | /Examples/Examples_MatFunc/repMat.sce | a9d92d5606783ecae2c5fa03fd9911b0e92c923a | [
"BSD-2-Clause"
] | permissive | CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox | d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd | 70c97cda4e0dd54df0a638e9b99f380c09ffa37e | refs/heads/master | 2022-12-11T01:28:28.742041 | 2020-08-26T12:24:27 | 2020-08-26T12:24:27 | 290,481,428 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 440 | sce | repMat.sce | // Function Name: repMat
// Generate a matrix by replicating matrix A in a block-like fashion
// The generated matrix has the following size:
// n_rows = num_copies_per_row * A.n_rows
// n_cols = num_copies_per_col * A.n_cols
// 3rd parameter = num_copies_per_row
// 4th parameter = num_copies_per... |
2c1d44118af6c273eabded75e8348b52749634a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /761/CH3/EX3.6/3_6.sce | b6e64dee66f8c39cafdbdf17cf45a1123ca10fb7 | [] | 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 | 145 | sce | 3_6.sce | clc;
//page no 114
//prob no 3.6
B=10*10^3;
// maximum modulation freq is given as
fm=B/2;
disp('Hz',fm,'The maximum modulation freq is'); |
d4ec5d712fa8c80cc68a02696c8b8ffa50cf27cf | 23573b967e8324d44226379d70559b8f0ea34905 | /code/fsolve/SLEs.sce | 3daa1eec9cc0070ee709ad4f99d2c14c1d48b2c4 | [] | no_license | FOSSEE/FOT_Examples | 91c8b8e9dc58545604b2c2af41a7e22f702b78f3 | 75947a7aa5a3955fe5a72e09f55bbdc05e3b8751 | refs/heads/master | 2020-03-22T09:00:48.306061 | 2018-07-24T04:49:25 | 2018-07-24T04:49:25 | 139,807,736 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,815 | sce | SLEs.sce | //This problem solves sustem of nonlinear equations using fsolve
//Reference: A. Golbabai, M. Javidi,Newton-like iterative methods for solving system of non-linear equations,Applied Mathematics and Computation,Volume 192, Issue 2,2007,Pages 546-551,ISSN 0096-3003,https://doi.org/10.1016/j.amc.2007.03.035.(http://www.sc... |
28153b7a493363380b87d131f779bfc62281d6b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH2/EX2.1/example1.sce | 4660f1ed821487d221bf8c561f58ec31852879f5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 787 | sce | example1.sce | clc
clear
//input data
c =2.25//Chord length of an aerofoil in m
l=13.5//Span of the aerofoil in m
C=125//Velocity of the aerofoil in m/s
Cl=0.465//Lift coefficient
Cd=0.022//Drag coefficient
d=1.25//Density of the air in kg/m^3
//calculations
A=c*l//Area of cross section of the aerofoil in m^2
W=Cl*d*((C^... |
becf0ac5a46a627ac64975241e71aed78467519d | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH4/EX4.10/ex10.sce | ae042e7d20ee4894392cf657b4287f47d12d37c3 | [] | 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 | 542 | sce | ex10.sce | // Example 4.10 : Small signal analysis
V_t=1.5; // (V)
K=0.00025;//K= k_nW/L (A/V^2)
V_A=50; // (V)
I_D=1.06*10^-3; // (A)
V_D=4.4; // (V)
R_D=10000; // (ohm)
R_L=10000; // (ohm)
V_GS=V_D;
g_m=K*(V_GS-V_t);
r_o=V_A/I_D;
A_v=-g_m*(R_L*R_D*r_o)/(R_D*R_L+R_D*r_o+R_L*r_o);
disp(A_v,"Voltage gain (V/V)")
R_G=1... |
7b75435858111369446349877ab08d27674ded99 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set11/s_Fluid_Power_With_Applications_A._Esposito_788.zip/Fluid_Power_With_Applications_A._Esposito_788/CH2/EX2.8.a/2_8_data.sci | a757b4eb09da27077be4ab24bc2c203256fd6674 | [] | 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 | 140 | sci | 2_8_data.sci | errcatch(-1,"stop");mode(2);// Aim:To find absolute pressure on skin diver of Example 2-5
// Given:
// Gage Pressure:
Pg=26; //psi
exit();
|
3dfbed2c34a674b90eec6c97d0cc6d7144d9a0e7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH14/EX14.12/Ex14_12.sce | 85216256daf09c971afad71abb86e84c7728dde6 | [] | 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,231 | sce | Ex14_12.sce | // chapter 14
// example 14.12
// Determine the range of frequencies of the chopper
// page-893
clear;
clc;
// given
I=80; // in A
E=480; // in V
N=960; // in rpm
Ra=0.25; // in ohm (armature resistance)
Rf=120; // in ohm (field resistance)
N1=400, N2=750; // in rpm (range of speed)
Ton=3; // in ms
Ef=480; // in V
// c... |
492f599060aab6eca1dc2c4222a9f36ef9ae2875 | 449d555969bfd7befe906877abab098c6e63a0e8 | /575/DEPENDENCIES/9_5_6.sci | 590bdd7155cb204dc0b866e1a8a87342e033b81e | [] | 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 | 108 | sci | 9_5_6.sci | x=0.1
y=0.2
MAcid=98.1
MS=32
MSalt=142
MBase=40
MWater=18
MNa=46
basis=1000 //g
T2=35
T1=25
T3=40 |
6209cd4a3d1a0202f242b5b2693a0f8258db354d | 3969cd48d2c3a244c9a4b88e34c9e17600e47176 | /loadIPT.sce | 9308ed04ce66fc80064a88de8394754b1407d335 | [] | no_license | vbhatt-cs/Scilab-IPT | a362ad5968ac0b5ea3d9b8568ed688b0ea293505 | 78dc014d91c81043e4e81f3055c777ad6e7b0a75 | refs/heads/master | 2021-05-30T18:54:47.751439 | 2016-03-19T16:41:03 | 2016-03-19T16:41:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | loadIPT.sce | exec macros/show.sci
exec macros/imshow.sci
exec macros/modified_if.sci
exec macros/cmp.sci
exec loader.sce
//exec Octave/loader.sce
exec macros/il2mat.sci
exec macros/mat2il.sci
exec macros/phantom.sci
exec macros/para2fan.sci
S = dir('macros/m/')
for x=1:size(S(2), 1)
exec('macros/m/'+S(2)(x))
end
clear S
clear x
|
e9841e57a22203ffe4ce24a1d82b9bf5f3a7915d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH10/EX10.10/10_10.sce | c2c38f543fb0450255a658a03ad553ad1cfb11ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 982 | sce | 10_10.sce | clear
clc
Z=[.2 .2 .05]' * %i
S=30
V=11
I=S*1e6/(sqrt(3)*V*1e3)
E=1
Ia1=E/(Z(1)+Z(2)+Z(3))
If= 3*abs(Ia1) * S*1e6/(sqrt(3)* V*1e3)
Ia2=Ia1
Ia0=Ia1
a=exp(%i * 2 * %pi/3)
A=[1 1 1
1 a^2 a
1 a a^2
]
Va1=E-Ia1*Z(1)
Va2=0-Ia2*Z(2)
Va0=0-Ia0*Z(3)
Vp=[ Va0 Va1 Va2]'
v=A*Vp
vab=v(1)-v(2)
vbc=... |
95e7f37cc352e797b5fb72705da61538654373ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.23/EX2_23.sce | bcd7d07b7085c954f1e2e9a3829a2353732a1f38 | [] | 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 | 401 | sce | EX2_23.sce | //EXAMPLE 2-23 PG NO-71
A=%pi/2;
//[integrate('0',wt,'%pi/3')]^2=%pi/9
//integrate('%pi/3',wt,'%pi/2')=%pi/6;
E=1/A*[(%pi/9)+(%pi/6)];
disp('i) Energy (E) is = '+string (E) +' ');
disp('ii) Square Energy (E) is = '+string (sqrt(E)) +' ');
... |
9dd661f534f3952f777759f40ef57db276370a21 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1.1/macros/algebre/range.sci | 368a2484e05f86ea47f01aa0d1ce7fd33606e1f2 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 306 | sci | range.sci | function [X,dim]=range(A,k)
// Computation of Range A^k ; the first dim columns of X span the
// range of A^k.
//F.D.
//!
if k==0
[n,n]=size(A);
dim=n;X=eye(A);return;
end
[U,dim]=rowcomp(A);X=U;
if k==1
return;
end
for l=2:k
A=A*U';
[U,dim]=rowcomp(A(:,1:dim));
X=U*X;
end;
|
dac172b17a04a7c8587f48de936b9270331c1814 | 717ddeb7e700373742c617a95e25a2376565112c | /213/CH14/EX14.14/14_14.sce | 8ffc16bb41c7b3cb891e9dc2bf4aef2e5ba04dfe | [] | 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 | 823 | sce | 14_14.sce | //To find gyroscopic couple and reaction
clc
//Given:
I=180 //kg-m^2
D=1.8, R=D/2, x=1.5 //m
v=95*1000/3600 //m/s
t=0.1 //s
//Solution:
//Gyroscopic couple set up:
//Calculating the angular velocity of the locomotive
omega=v/R //rad/s
//Calculating the amplitude
A=1/2*6 //mm
//Calculating the maximum veloc... |
4789930eaf533d7ef3dc7fb3d898470b3c88c5bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /199/CH6/EX6.2.b/Example_6_2_b.sce | c3d5e36acf6bdbf35719131abb8c02d249042f6a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 394 | sce | Example_6_2_b.sce | // Chapter6
// Page.No-193, Figure.No-6.4(c)
// Example_6_2_b
// Max output voltage swing
// Given
clear;clc;
R1=100*10^3;R2=100*10^3;R3=100*10^3;Rf=1*10^6;Rin=50;
Ci=0.1*10^-6; // Capacitance b/w 2 stages being coupled
Ro=Rin; // ac output resistance of the 1st stage
UGB=10^6; // Unity gain bandwidth
Vcc=15;... |
8b394438587557b79edf2cb93c7aa6f201d3cb2e | 4bbc2bd7e905b75d38d36d8eefdf3e34ba805727 | /ee_scicoslab/scicos_flex/dspic/macros/flex_blocks/RT-Data-Exchange/MCP2200.sci | 4cecad16538bd1b680a8025a391b6414fa843505 | [] | no_license | mannychang/erika2_Scicos-FLEX | 397be88001bdef59c0515652a365dbd645d60240 | 12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba | refs/heads/master | 2021-02-08T17:01:20.857172 | 2012-07-10T12:18:28 | 2012-07-10T12:18:28 | 244,174,890 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,021 | sci | MCP2200.sci | // MCP2200: Communication block to configure Serial Communication
// and intereact with GPIO pins
function [x,y,typ] = MCP2200(job,arg1,arg2)
x=[];y=[];typ=[];
select job
case 'plot' then
exprs=arg1.graphics.exprs;
baudrate = exprs(1);
pin_in = exprs(2);
... |
bc9b569f494ea97e0ab8b4b49cd98bdef05ab18a | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /AkarPersamaan/scilab/my_laguerre.sce | 14be3056add24a6b6fa176de6849d9d047d9d319 | [] | no_license | f-fathurrahman/ffr-MetodeNumerik | ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327 | e3a9da224c0fd5b32e671708e890018a3c4104c4 | refs/heads/master | 2023-07-19T22:29:38.810143 | 2023-07-07T10:02:34 | 2023-07-07T10:02:34 | 107,272,110 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 491 | sce | my_laguerre.sce | function x = my_laguerre(a,tol)
// start from random number
x = rand()
n = length(a) - 1
MaxIter = 30
for i = 1:MaxIter
[p, dp, d_dp] = evalpoly(a, x)
if abs(p) < tol
return
end
g = dp/p
h = g*g - d_dp/p
f = sqrt( (n-1)*(n*h - g*g) )
if abs(g + f) >= abs(g - f)
dx = ... |
107d9e43fd2947d77d96fd5e2bf2cde65614adfd | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/createsolarsystem.SCI | 85b3c2e1d19b3b66498706dccfe7838128e19995 | [
"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 | 8,606 | sci | createsolarsystem.SCI | au2km=149598000;
zoomf=2000;
planetorbitcolor=color(0.0,0.3,0.6,1);
function createstarback()
{
starbackframe=root.SC.Universe.addsubframe("StarBackFrame");
starbackframe.nearclipplane=5000*au2km;
starbackframe.farclipplane=100000*au2km;
tx=starbackframe.createtexture("star",DataDir+"\textures\star2.bmp");... |
6534340b83018019b49c6e7ebab0fedb4b226869 | 4483ff664b4d01c53114a7fc535625c197c8f989 | /green routing/bo.sce | e08af125d9655dc6d52b73072b4981ca2fcd2654 | [] | no_license | winash1618/myproject | be9b77d4a405edce7e625a999803016b50ab99d0 | 2132e76e6a996bee19f356a2b68af827fa6c621b | refs/heads/master | 2022-12-06T06:09:06.487979 | 2020-08-20T02:00:54 | 2020-08-20T02:00:54 | 288,880,158 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 133 | sce | bo.sce | c=eye(5,5)
s=[1 2 3]
e=c(2,:)
if(e(1,:)==c(1,:))
printf("no")
else
printf("yes")
end
if(sum(s)~= 0)
printf("great")
end
|
fd1b01e49b0a46ba80c21cc0b261779d7be185c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1484/CH2/EX2.3/2_3.sce | 06f4e2762a56c87ea8744be5e846b5b910e7ee11 | [] | 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 | 270 | sce | 2_3.sce |
clc
//initialisation of variables
D= 64 //lb/ft^3
d= 6 //ft
l= 10 //ft
W= 2 //tons
//CALCULATIONS
V= W*2240/D
h= V/(%pi*d^2/4)
BM= d^2/(16*h)
P= -(sqrt(64*BM*2*10*%pi*(22400-%pi*d^4))-W*22400)/10
//RESULTS
printf ('Minimum pull required= %.f lbs ',P+3)
|
b9910349be5c8e25b5bfb9c57293cf297a912dec | 3a3724d75eaeed286d5c0a34dd9b58cb0d440c9b | /report.tst | 8d6b84b50eea0866895833f376bbde220aead3a9 | [] | no_license | AndrewBrenev/LoyaltySystemDB | 1bef789fbe7064f35eaba8238a4110a5b3ed0363 | d09f2d0bd74ececd3d14c44eeb551cf928f283c9 | refs/heads/master | 2022-07-19T02:43:11.285554 | 2020-05-26T18:51:01 | 2020-05-26T18:51:01 | 259,018,029 | 3 | 0 | null | null | null | null | WINDOWS-1252 | Scilab | false | false | 282 | tst | report.tst | PL/SQL Developer Test script 3.0
8
-- Created on 13.05.2020 by ÀÍÄÐÅÉ
declare
test_period date;
test_return cashback_analyzer.cashback_list;
begin
test_period := to_date('13052020','ddmmyyyy');
test_return := cashback_analyzer.getReportForMonth(test_period);
end;
0
0
|
a020e63f2aeb5ac131914af25dff0b1fbe6d8394 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH17/EX17.4/Ex17_4.sce | e946844656bc86ad02e03b945a587bef207da89a | [] | 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 | 895 | sce | Ex17_4.sce | //Ex no.17.4,Page no.381
clc;clear;close;
//Initilization of Variables
sigma_t=100 //MPa //tensile stress
P=170 //KN //Load
//Calculations
//For equal stress in the welds A and B, the load shared by the fillet welds will be proportional to size of weld
//t_a=0.7*s //Effective throat thickness of weld A in upper pl... |
eda61f234c69dcd34c908ee2bf47867aeed76381 | 717ddeb7e700373742c617a95e25a2376565112c | /1472/CH11/EX11.5.c/11_5c.sce | 56beaa1e83d648cbf8ddfd44ee491f52f51f1534 | [] | 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 | 363 | sce | 11_5c.sce | clc
//initialization of varaibles
P1=100 //psia
T1=2000+460 //R
P2=15 //psia
g=1.4
cp=0.276
cv=0.207
T2=1520 //R
//calculations
h1=634.4
pr1=407.3
pr2=pr1*P2/P1
disp("From table 1,")
T2=1535 //R
h2=378.44
dh=h2-h1
v2=53.34*T2/(P2*144)
dv=v2-v1
//results
printf("Enthalpy change = %.2f B/lb",dh)
prin... |
b0990356856177afcd5317120455f6d76a3e7302 | c4dc71508b28a2e15187e1b742173168eda9ab86 | /x_func.sce | c7d490523c58538c401255a9c88f3b5c77a2032f | [] | no_license | ximarx/calcolo-numerico | 103fc59093a2688e8d6224ecdf21d0ce9f3768e3 | bca493091417b8f27131a59a2b3a20c30e31b90f | refs/heads/master | 2020-06-06T05:34:35.065166 | 2012-06-23T06:39:27 | 2012-06-23T06:39:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 41 | sce | x_func.sce | function y=f(x)
y = x^2 -1
endfunction
|
500785adfd92300cacc11b3459bc272862dc5f17 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH5/EX5.19/Ex5_19.sce | ca0b5df911352b0eab26d5c48fc49ec8049b73ac | [] | 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,732 | sce | Ex5_19.sce | clc;
v=2000; // rated voltage of motor
xsm=2; // synchronous reactance of motor
xsg=3; // synchronous reactance of generator
xt=1.5; // transmission line reactance
ia=100; // current drawn by motor
pf=1; // power factor
disp('case a');
vt=v/sqrt(3); // rated per phase voltage
Efm=floor(sqrt(vt^2+(ia*xsm)^2)); ... |
abb482c1272994ac8111aac8671449c65c3a8352 | 808b9a1afbbe9d952b7f35df6ab9a97abbcb7b1c | /src/Normal Version/setting + timing/illusory contrours/Presentation Files/obsolete scripts/IllusoryContours_start_eyetrack.sce | 39a1d7110a0f7212f86b47447d581c7045e101ec | [
"MIT"
] | permissive | CognitiveNeuroLab/Illusory-Contours | 5e20a9912eb8fe22b2ccfd162033ed0eb8fdb7a3 | e36cb1dfe3bcbefe80f7a1c539d66a4eec4b3c11 | refs/heads/main | 2023-04-06T16:28:46.829955 | 2022-04-12T19:38:15 | 2022-04-12T19:38:15 | 470,937,063 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,779 | sce | IllusoryContours_start_eyetrack.sce | # Header Info ##########################################
pulse_width = 5;
write_codes = false;
response_matching = simple_matching;
active_buttons = 2;
button_codes = 100,255;
default_text_color = 255, 255, 255;
default_background_color = 128, 128, 128;
no_logfile = true;
# Begin SDL portion of code ###########... |
37c4b2927f4a72fb10a5b7483f87ab5cbfaf588c | 449d555969bfd7befe906877abab098c6e63a0e8 | /575/CH6/EX6.6.2/6_6_2.sce | 15cda79563e4c9757bf35c9fea73ec105a4050cc | [] | 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 | 800 | sce | 6_6_2.sce | clc
pathname=get_absolute_file_path('6_6_2.sce')
filename=pathname+filesep()+'662.sci'
exec(filename)
printf(" All the values in the textbook are Approximated hence the values in this code differ from those of Textbook")
disp("Mass balance")
printf("ms + %d = mE + mR",basis)
disp("acetone balance")
printf("%f *... |
7b4d46770a9676ee8e6f16ef3dc52c04b256ba60 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2708/CH7/EX7.4/ex_7_4.sce | a43fe3ce4f4f4914e96fee154206db34a4a05217 | [] | 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 | 301 | sce | ex_7_4.sce | //Example 7.4 // solar energy
clc;
clear;
//given data :
r=1.5D11;//distance from sun to earth
P=3.8D26;//power radiated by sun
N=P/(4*%pi*(r^2));// poyting vector (average energy)
N=N*60/4.2D4 ;//to convert watt/m2 into cal/cm2.min
N=ceil(N);
disp(N," average solar energy in cal/cm2.min")
|
5519dfd31634aa1074cb850c314e2404f39da45e | e5606f5f42a6fd164acc42c7be54d0b15b075be5 | /Información Mutua Señales/Información Mutua.sce | ffe2d1bfa9a75e0296f8cfea4030875b38b8eb8f | [
"MIT"
] | permissive | juusechec/MiniProgramasSCILAB | fe0b7afdd9712c4be56202ec7ba858678e7b1ca4 | 244b64942decda867f113f480e3061e18641f748 | refs/heads/master | 2020-12-28T22:01:41.841578 | 2016-09-05T04:56:45 | 2016-09-05T04:56:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 965 | sce | Información Mutua.sce | function sal=info_mutua(pc,pe)
px0=0.5;
px1=0.5;
pyx00=pc;
pyx11=pc;
pyx10=pe;
pyx01=pe;
pyxb0=1-pc-pe;
pyxb1=1-pc-pe;
py0=px1*pyx01+px0*pyx00;
py1=px0*pyx10+px1*pyx11;
pyb=px0*pyxb0+px1*pyxb1;
pxy01=px0*pyx10*log2(py1/(px0*pyx10));
pxy10=px1*pyx01*log2(p... |
e2086316edf4445fc81b7acbe83e0cd0108ea1e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1247/CH4/EX4.5/example4_5.sce | 0b92713a793f139b2e6daeea99991efc1ba7322e | [] | 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 | example4_5.sce | clear;
clc;
// Stoichiometry
// Chapter 4
// Material Balances involving Chemical Reaction
// Example 4.5
// Page 121
printf("Example 4.5, Page 121 \n \n");
// solution
v = 1 //[l] water (basis)
// 1 mol (100mg) CaCO3 gives 1 mol (56) Cao
// use table 3.3 and eg 3.9
x = 56*390.6/100 //[mg/l] lime ... |
b3264fba9e0cc6414ac236a6aae51f0a5723fbe4 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Devices_And_Circuits_K._L._Kishore_1511.zip/Electronic_Devices_And_Circuits_K._L._Kishore_1511/CH3/EX3.10/ex3_10.sce | 4bcbe521585458cc1186ef2cebae07bcff1c19a8 | [] | 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 | 195 | sce | ex3_10.sce | errcatch(-1,"stop");mode(2);// Example 3.10 page no-170
Vdc=(100/(2*%pi))*(-cos(5*%pi/6)+cos(%pi/6))
printf("\nVdc=%.1f V",Vdc)
Vrms=sqrt(3.1)*Vdc
printf("\nVrms=%.1fV",Vrms)
exit();
|
19d0594f35d610c7413536e0ac57008a91859aad | 449d555969bfd7befe906877abab098c6e63a0e8 | /1802/CH11/EX11.7/Exa11_7.sce | 4f6530de9154d76015908d73d3a384da01a58cb7 | [] | 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 | 526 | sce | Exa11_7.sce | //Exa 11.7
clc;
clear;
close;
//Given Data :
format('v',9);
MaxDemand=500;//in KW
LoadFactor=70;//in %/year
LoadFactor=70/100;//in fraction
cosfi=0.8;//unitless
//(i) Rs. 80/KVA of max demand
//(ii) Running chargeare 5 paise/kwh
C1=80;//in Rs./KVA
C2=5;//in paisa/kwh
AvgLoad=MaxDemand*LoadFactor;//in KW
... |
94e31a37790b24695d88c52faf8962dd85b0c275 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1358/CH4/EX4.13/Example413.sce | 2d3f83344edd951174f39deb73acb7b9cb74a753 | [] | 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,903 | sce | Example413.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 4, Example 13")
disp("Let: rh = hub radius")
disp(" rt = tip radius")
disp("The flow area of the impeller inlet annulus is:")
rh ... |
b42c1b467a78909888dcf7514e799a18539ba822 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1775/CH4/EX4.4/Chapter4_Example4.sce | a0ca9dec82d430763afafccd9876bea68b394e8e | [] | 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,147 | sce | Chapter4_Example4.sce | //Chapter-4, Illustration 4, Page 165
//Title: Steam Nozzles and Steam Turbines
//=============================================================================
clc
clear
//INPUT DATA
P1=2.2;//Pressure at entry in MN/(m^2)
T1=533;//Temperature at entry in K
P2=0.4;//Pressure at exit in MN/(m^2)
m=11;//mass fl... |
31209097cd4e82daa7acdc4ba66844e9878131ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH12/EX12.1/Ex12_1.sce | 31fc2df6b0926924565aa861185b39dfc8b842cb | [] | 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 | 264 | sce | Ex12_1.sce | //Chapter 12: Polymers and Polymerization
//Problem: 1
clc;
//Declaration of Variable
Mwt = 21150 // in g per mol
// Solution
m = 2 * 12 + 3 * 1.008 + 1 * 35.45 // g per mer
n = Mwt / m
mprintf("The degree of polymerization is %d",n)
|
41cd3164bebb3710b94d51265f1b032e7c4c9f60 | 285af10c0779ba1ad1e2c9942c12ff796dcc2f19 | /grafico_H_log.sce | 69d3815ee5c6f0f4675639bbad2302b4812ce4d5 | [] | no_license | mbgaspar/circuitos-eletricos-3 | aad7111b1d812005e7309aca5ea333700ae22279 | 1e523ed473d0ee5f172d7fba0881484d62632333 | refs/heads/master | 2021-03-05T18:19:55.985020 | 2020-04-02T16:30:10 | 2020-04-02T16:30:10 | 246,140,640 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 305 | sce | grafico_H_log.sce | subplot(211);
w=logspace(-1,2,100); // de 10^-1 ate 10^2 com 100 pontos w = w/w0
H = 1 ./ (1+%i*w);
plot2d(w,abs(H),logflag="ln");
xlabel("rad/s");
ylabel("modulo de H");
xgrid;
subplot(212);
plot2d(w,(atan(imag(H),real(H)))*180/%pi,logflag="ln");
xlabel("rad/s");
ylabel("fase de H");
xgrid
|
5c3071bd3a0632a9aeb2ea5965f7a68bdfbe1d95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH11/EX11.10/Ex11_10.sce | 8f7f6e8ec2faaa4c3320b112f7f3b50b66a8af11 | [] | 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,844 | sce | Ex11_10.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 11 Example 10")
Q=2.86*3.5;//refrigeration effect in KJ/s
N=1200;//compressor rpm
n=1.13;//compression index
disp("properties of Freon-12,")
disp("at -20 degre... |
6cf04a7d2b0e08c34cc0bf585823c661b22a253b | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3.1/macros/scicos/projaff.sci | 429051803e8690cf00ad5fdbfbb899a03e18d59d | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 597 | sci | projaff.sci | function d=projaff(x,y,pt)
// projaff - projection d'un point sur une droite
//%Syntaxe
// d=projaff(x,y,pt)
//%Parametres
// x: vecteur des abscisses des 2 points definissant la droite
// y: vecteur des ordonnes des 2 points definissant la droite
// pt: coordonnes du point a projeter [abscisses ordonnees]
//%Methode
/... |
34e47d89a300f58c070f67e2abc82024783c8dd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3776/CH1/EX1.3/Ex1_3.sce | 60497acef7ecdf99310d985244443792983cdd73 | [] | 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,607 | sce | Ex1_3.sce | clear
//Given
//
d_pins = 0.375 //inch
load1 = 3 //kips
AB_x = 6 //inch,X-component
AB_y = 3 //inch,Y-component
BC_y = 6 //inch,Y-component
BC_x = 6 //inch,X-component
area_AB = 0.25*0.5 //inch*2
area_net = 0.20*2*(0.875-0.375) //inch*2
area_BC = 0.875*0.25 //inch*2
... |
1a98ddadbc8c0481f53c6e5f56d5f7ee18634c40 | 717ddeb7e700373742c617a95e25a2376565112c | /1514/CH18/EX18.6/18_6.sce | 428585d60509b77b3068c7163a95b25629febd85 | [] | 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 | 409 | sce | 18_6.sce | //chapter 18
//example 18.6
//page 578
clear all;
clc ;
//given
VB1B2=15;
eta=0.7;//intrinsic standoff ratio
ec=0.7+(eta*VB1B2);//capacitor voltage
VEB1sat=2.5;//saturation voltage when capacitor is discharged
Eo=2.5;//capacitor voltage at start of each charging cycle
t=0.1*10*log((15-2.5)/(15-11.2));
f=100... |
63eaab99f5c401ddd5aad8005f2db50a2f466ccf | dc1af20bca10db33d1adcbf61d5fe874eb6eab07 | /PluginTesting/environment/SIMPLE_TEST/SIMPLE_TEST.tst | 983ca6b4e85a05a948f61f945bbd4f4e00e97484 | [] | no_license | TimSVector/PointOfSales_v2 | 2d1130516cfc5d77f2e5d0f60adcde96374f6fc2 | ef630f05850715568725cf94cc0e497146a049d4 | refs/heads/master | 2023-08-04T10:51:50.031346 | 2023-08-03T20:50:28 | 2023-08-03T20:50:28 | 133,404,783 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,316 | tst | SIMPLE_TEST.tst | -- VectorCAST 19.sp1 (06/26/19)
-- Test Case Script
--
-- Environment : SIMPLE_TEST
-- Unit(s) Under Test: manager
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIP... |
56ccfbfba779ca0d24766b436125cdb1154d21e0 | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3913/CH10/EX10.2/Ex10_2.sce | 06926f175034706d9f71a943e0d9fe806d064cc7 | [] | 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 | 280 | sce | Ex10_2.sce | //Chapter 10 : The Minimum Polynomial
//Example 10.2
//Scilab 6.0.1
//Windows 10
clear;
clc;
A=[5 -6 -6;-1 4 2;3 -6 -4]
disp(A,'A=')
A1=A-eye(3,3)
A2=A-2*eye(3,3)
Af=A1*A2
disp(Af,'(A-I3)(A-2I3)=')
mprintf('\n =0')
mprintf('\n it follows that ma(X)=(X-1)(X-2)')
|
0d027b596a46dd1cd68b492ce824939a6c8c490b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH4/EX4.2/Ex4_2.sce | 27e20cb2c39c45d0718ede50a8ffa70a619224e1 | [] | 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,366 | sce | Ex4_2.sce |
// Theory and Problems of Thermodynamics
// Chapter 4
// Energy Analysis of Process
// Example 2
clear ;clc;
//Given data
V = 0.3 // Volume of container in m^3
P1 = 0.2 // Initial Pressure in MPa
power = 200 // Power of electric motor in watts
t = 15 // electri... |
f1c631b6e68ba54a421bc6809ece3b47735eb46f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3050/CH6/EX6.5/Ex6_5.sce | 09c433f203d25fb7aa2a52b694654f23d031af28 | [] | 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 | 281 | sce | Ex6_5.sce | //calculating solubility
//Example 6.5
clc
clear
Ecell=0.169
AgC=0.01
C1=AgC/(10^(Ecell/0.0591))
S=C1*143.5//solubility of AgCl in g/L
Ksp=C1^2//solubility product of AgCl in Mol^2/L^2
printf('Thus solubility of AgCl = %e g/L',S)
printf('\n and Ksp = %e Mol^2/L^2',Ksp)
|
4ff90b45e1e7e0c78a8530aa16fb1679f3428172 | b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf | /TD5/Scripts/ecart_s1.sce | 15b6502b7953677251b5cf210e318e5e160271e5 | [] | no_license | MFrizzy/Modelisation | 51794b2edf421f9d2206cb73972d8d8d7b1e9759 | 0ca819afbcbe00f58f3bbaa8fc97164ae2c1d3cb | refs/heads/master | 2021-08-29T12:02:20.042037 | 2017-12-13T22:39:21 | 2017-12-13T22:39:21 | 106,943,303 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 529 | sce | ecart_s1.sce | load('C:\Users\tangu\OneDrive\Documents\GitHub\Modelisation\TD4\NetworkData.sod')
// Extraction des temps de service
index_bool = ( data(:, 3) == 1 )
tabS1 = data(index_bool, :)
t_s1 = tabS1(1:$,4);
function q = quantile(l,p)
q = -log(1-p)/l
endfunction
lambda=1/mean(t_s1);
n = 10;
C = zeros(1, n + 1)
C(1) = 0;... |
04eb567758cf4d5dae044105a650503ad52a5b8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH7/EX7.20/7_20.sce | 1140c135e9a4992017e72af0e60ecd55a9df22e2 | [] | 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 | 542 | sce | 7_20.sce | //7.20
clc;
r2s=0.32;
r1=0.64;
x2s=0.48;
x1=1.1;
s=r2s/(r1^2+(x1+x2s)^2)^0.5;
printf("\nSlip=%.4f ",s)
V1=400/3^0.5;
Tmax=1.5*V1^2/(2*%pi*25)*(1/(r1+(r1^2+(x1+x2s)^2)^0.5))
printf("\nMaximum Torque=%.2f Nm",Tmax)
n=25*(1-s);
N=n*60;
printf("\nSpeed=%.2f rpm",N)
disp('at 25 Hz')
x1=0.55;
x2s=0.24;
s=r2s... |
5472c33b3b7dec9b200499a5b39d6f4642fd1916 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/rasp_design_added_blocks/wta_new.sce | 2690b20fd05618ec2fbaeb79da3f10d38576d780 | [] | 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 | 78 | sce | wta_new.sce | style.displayedLabel="wta_new"
pal2=xcosPalAddBlock(pal2,"wta_new",[],style);
|
092091e2f965443e82ad8771712d07de2b390dde | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /CostDistanceKCD/Justin/JustinAndBar/Constrainted.sce | 89db1665a66e16cdb13a141a1edbe5650ed3026e | [] | no_license | jmainpri/move3d-assets | a5b621daaedaaf8784fed0da1e80d029c83f3983 | 939db49d17a14e052bb58324b70e6112803d3105 | refs/heads/master | 2021-01-16T17:48:56.669119 | 2016-02-16T14:04:09 | 2016-02-16T14:04:09 | 20,237,987 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,068 | sce | Constrainted.sce | #************************************************************
# Scenario of Test
#
# date : Fri Jun 5 10:45:20 2009
#************************************************************
p3d_sel_desc_name P3D_ENV Test
p3d_sel_desc_name P3D_ROBOT barre
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.... |
0276729cce2dba7d93a12a1a86ecb53298fcafdb | 16f807178d75bf8f92b14bf909e62d286193cc13 | /ControllabilityandObservabilityedsonjmodif.sce | ce0cbdacaa5a942c79e91afccc79eaabc65200d3 | [] | no_license | renzo-source/LABORATORIO-03-Linealizaci-n-num-rica-del-sistema-MoDiCA-X | 11440801c8552f7f613fca0b05be21a8b6ccbab4 | d6a990da1a41b86f726620c28c1af1da5d50c0d7 | refs/heads/master | 2022-12-04T17:48:33.145635 | 2020-08-16T04:13:16 | 2020-08-16T04:13:16 | 279,112,222 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,360 | sce | ControllabilityandObservabilityedsonjmodif.sce | // load the data
load("edsonjLTImodif.sod","X","U","sys")
// load the data
load("edsonjLTIanalitmodif.sod","sysa")
// obtaingin the matrices A,B,C,D
A=sys.A
B=sys.B
C=sys.C
D=sys.D
//matrices Aa,Ba,Ca,Da de forma linealizada
Aa=sysa.A
Ba=sysa.B
Ca=sysa.C
Da=sysa.D
// pregunta 7 Controllability and O... |
4dcfb0348855afa49835f4498a5eb897cf9e19b6 | 991911b2a5fe25b4515d60ea80978b8550f90178 | /SCILab/geraFourier.sci | 92e8e1f2636cb555ff4a6c730ef38e92dfba815b | [] | no_license | fongoses/comunicacao-dados-2013-2 | 48d2f0cd592ea50c8b1ec6f815c8de62f122c4de | 2981e42c5be4550ccd8dd4d4ef93b4397a1ea0d3 | refs/heads/master | 2016-09-10T10:44:16.480842 | 2013-12-17T12:48:45 | 2013-12-17T12:48:45 | 32,294,010 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,105 | sci | geraFourier.sci | function geraFourier(T, A, coef)
// Intervalo (vetor com 2/passo posições)
passo = 0.001;
t = -1:passo:1;
// Frequência Angular 2*%pi*(1/T)
w = 2*%pi;
// Número de bits 1 no período
Ts = 1;
// Definir o tamanho do f (cria um vetor com o mesmo tamanho de t)
f = ... |
d60f41f243982d25aaebaf7c95d1251037ad5e78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH2/EX2.6/example_6.sce | a9d65e5dd40fe11f6e310d745f8d53e3f2c0ba61 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 484 | sce | example_6.sce | clc
clear
printf("example 2.6 page number 73\n\n")
//to find the volume of air
volume_H2=0.5 //in m3
volume_CH4=0.35 //in m3
volume_CO=0.08 //in m3
volume_C2H4=0.02 //in m3
volume_oxygen=0.21 //in m3 in air
//required oxygen for various gases
H2=0.5*volume_H2;
CH4=2*volume_CH4;
CO=0.5*volume_CO;... |
9c33a80f016979dd9913c3c6e135961dca7a77e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1442/CH9/EX9.3/9_3.sce | 9bf5c5486c8cad4d44e9ea0ec943cd8576b7d518 | [] | 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 | 768 | sce | 9_3.sce | clc
//initialisation of variables
m= 4 //kg/s
R= 8.314 //J/mol K
M= 29 //gms
k= 1.4
T1= 27 //C
p2= 1800 //kPa
p1= 105 //kPa
n= 1.22
cp= 1.4 //Jmol K
//CALCULATIONS
T2= (273.15+T1)*(p2/p1)^((n-1)/n)
W= m*k*(R/M)*((273.15+T1)/(k-1))*(1-(p2/p1))^((k-1)/k)
Q= -m*R*(273.15+T1)*log(p2/p1)/M
W1= m*(R/M)*n*((273... |
878a9d86a215ea7ea2e035ff28af462702c4f3f3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/CH5/EX5.7/5_7.sce | f00563639db1eb3816406528f294b658812685a2 | [] | 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 | 248 | sce | 5_7.sce | pathname=get_absolute_file_path('5_7.sce')
filename=pathname+filesep()+'5_7data.sci'
exec(filename)
clear
delY=(W*L^4)*((11/(24*EI))+ 1/(2*GJ));
delZ=(W*L^4)*((1/(6*EI))+ 1/(2*GJ));
printf("\ndel Y %f mm",delY);
printf("\ndel Z %f mm",delZ); |
7cb6fc7346a45c3b4a430310f5a21eee93881d2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1943/CH7/EX7.5/Ex7_5.sce | 3eff3bc2217ebd9a898d20f46f222194d5291005 | [] | 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,508 | sce | Ex7_5.sce |
clc
clear
//Input data
p1=20//pressure in bar
T1=300+273//Tempereture in K
p2=3//pressure in bar
m=0.3//Flow rate in kg/s
n=1.3//Adiabatic constant
Cd=0.98//Coefficient of discharge
Cv=0.92//Coefficient of velocity
//Calculations
vo=0.1255//Specific volume in m^3/kg
px=(0.546*p1)//Critical pressure in ba... |
082be206d8031eda878cb56c6274afb65d001551 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH20/EX20.12/EX20_12.sce | 92057e6a79d12c01d1edb643d8f65c767f2021c0 | [] | 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,431 | sce | EX20_12.sce | clc;funcprot(0);//EXAMPLE 20.12
// Initialisation of Variables
n=2;........//No of cylinders
ma=16;........//Mass of air supplied per min in kg
p1=1;........//Suction pressure in bar
t1=288;.......//Suction temperature in K
k=0.04;.......//Clearance ratio
ni=1.3;........//Compression index
R=0.287;........//Ga... |
08f79482497048976da764ade810421fe472f858 | e9d5f5cf984c905c31f197577d633705e835780a | /GED/nonlinear/scilab/nonlin_mandel98/nonlin_mandel98.sce | f0817631e6897fbf93d0492e2cb2f644d5b20b65 | [] | 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,624 | sce | nonlin_mandel98.sce | // Data Reconciliation Benchmark Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
//Mandel, Denis, Ali Abdollahzadeh, Didier Maquin, and Jos� Ragot. 1998.
//Data reconciliation by inequality balance equilibration: a LMI approach.
//... |
d7522706e259205f87d7d21039fef55fa2c94732 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH8/EX8.9/8_9.sce | fe47a1a9e2c0ea9ac9d1fc3affb9bddd637e13c0 | [] | 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,393 | sce | 8_9.sce | clear;
clc;
funcprot(0);
//Example - 8.9
//Page number - 304
printf("Example - 8.9 and Page number - 304\n\n");
//Given
//At 1 bar, 310 K
H_1 = 310.38;//[kJ/kg]
//At 200 bar, 310 K
H_2 = 277.7;//[kJ/kg]
//At 1 bar, Saturated liquid
H_7 = -122.6;//[kJ/kg]
//At 1 bar, Saturated vapour
H_8 = 77.8;//[kJ/... |
ac6d843c6a16949916eec543e9bc37e9b4ccb5e9 | 9715cbe7e8e57bb70f628b3bd021842f99fbad75 | /taller/soluciones/funcionSeno.sci | c07d3a00211d2c5b10d2cd33a9ee132aa8d9fc50 | [] | no_license | UNIVALLE-EISC/numerical-methods | a3e3f432a6dc54a5ba845789ace2bf39db7ac6fe | 3ea9401e281523e15be0525bfe36e48560caf646 | refs/heads/master | 2021-01-10T15:22:36.080955 | 2018-10-02T21:37:42 | 2018-10-02T21:37:42 | 51,824,833 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sci | funcionSeno.sci | // format(10)
function [y, t] = funcionSeno(tinicio, intervalo, tfin)
t = tinicio:intervalo:tfin;
y = sin(t);
// plot(t,y,'color','red','marker','>');
// xlabel("t, seg");
// ylabel("y, amplitud");
// set(gca(),"grid",[1 1]);
endfunction |
0c8ac971ad112a6a6f4b8ce48a5ad55524b941ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH3/EX3.10/Ch03Ex10.sce | e5d63c373647e96576999d78002d8ca5cc73f44d | [] | 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 | Ch03Ex10.sce | // Scilab Code Ex3.10: Page-91 (2006)
clc; clear;
N = 6.023e+023; // Avogadro's number, per kmol
e = 1.602e-019; // Energy equivalent of 1 eV, J/eV
k = 1.38e-023; // Boltzmann constant, J/K
R = N*k; // Molar gas constant, J/kmol/K
E_F = 7; // Fermi energy of Hf, eV
theta_D = 343; // Debye temperature o... |
f8dc0410419a0bd9375d8460a87685f1d723a4ef | 79418bcba493ca1aeb3fb7ab6c0e549315ac171d | /content/posts/brownian-motion/code/pollen.sce | 4c78f17a8a5fd384df844fc874ad86435ad5bb22 | [] | no_license | Joaoloula/joaoloula.github.io-src | b6dab427e4680ba9474c2a91c06ad734f4886b19 | d0193c509ff868580d0c1d3a7d18c60d810f82b5 | refs/heads/master | 2021-01-17T06:05:04.089862 | 2017-04-12T03:31:21 | 2017-04-12T03:31:21 | 55,262,722 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,647 | sce | pollen.sce | //In this program, new parameters are introduced to account for the physical characteristics
//of the system: we imagine a small particule imersed in a fluid that suffers a large number of
//independent identically distributed collisions modulated by a small time step, as well as a
//dampening factor introduced by the... |
ed5e50a6a4395b6d91731b7d84bb312c28b54aef | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH18/EX18.7/18_7.sce | 7b56e045188f204e96b067013b4497087a5cab90 | [] | 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 | 246 | sce | 18_7.sce | P1 = 1.013;
P2 = 1.5*P1;
Vs = 0.03; Va = Vs;
WD = (P2-P1)*Vs*100;
Pi = (P1+P2)/2;
g = 1.4;
Aa = ((g*P1*100*Vs)/(g-1))*((Pi/P1)^((g-1)/g)-1);
Vb = Va *(P1/Pi)^(1/g);
Ab = Vb*(P2-Pi)*100;
WR = Aa+Ab;
disp("kJ/rev",WR,"Work required is")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.