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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4d289f5797ca68b77abbc0db83131026cb19e145 | aa78020331b2766d96648a66417d8a57911a6ad2 | /tp-camera-calibration/dimitri-charneux.sci | 857e81394b873bbc030f7afdbb67c65c220aaa97 | [] | no_license | DimitriCharneux/VISA | 1d3ec02f27ea9bfdb41ccce548e52d4ce375ae8e | 960361ea2d61ae9fd9db582419b96526cae695c7 | refs/heads/master | 2021-06-09T22:51:44.212184 | 2017-01-03T19:49:49 | 2017-01-03T19:49:49 | 68,818,771 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,449 | sci | dimitri-charneux.sci | // -----------------------------------------------------------------------
/// \brief Calcule un terme de contrainte a partir d'une homographie.
///
/// \param H: matrice 3*3 définissant l'homographie.
/// \param i: premiere colonne.
/// \param j: deuxieme colonne.
/// \return vecteur definissant le terme de contrainte... |
0dd6dbdb34929d915419c66cd9e916a19f067c8b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1299/CH2/EX2.9/example2_9.sce | a36d27467613c973d297b777d65d6c761bec23cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example2_9.sce | //Example 2.9
//Z transform of the signal x(n)=(a)^n*u(n)+(b)^n*u(-n-1).
clear;clc;
xdel(winsid());
//u(n)is unit step input
//a=0.5 and b=0.6
n1=2;
x1=(0.5)^n1;
m1=1;
w1=1;
phi1=tand(0);
a1=1;
theta1=tand(45);
[X1]=czt(x1,m1,w1,phi1,a1,theta1)
n2=2;
x2=(0.6)^n2;
m2=1;
w2=-1;
phi2=tand(-45);
a2=1;... |
d2c27122592a35c3688241111fb2b291215dd35e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH19/EX19.12/EX19_12.sce | 9828feb2b4ebec89929cf3478257caba8ffe02d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | sce | EX19_12.sce | //Finding of Head Discharge , Ratio of Power
//Given
Q1=0.035;
H1=25;
D1=0.5;
N1=1200;
D2=0.3;
N2=2000;
//To Find
H=(D2*N2*sqrt(H1))/(D1*N1);
H2=H^2;
Q=(Q1*D2^3*N2)/(D1^3*N1);
Pr=(D1/D2)^5*(N1/N2)^3;
disp("Head ="+string(H2)+" meter");
disp("Discharge ="+string(Q)+" m^3/sec");
disp("Power Ratio ="+string... |
b0912ba64ca6a9e06039343d0559b8cc5d86d6ce | 9b046504c3b7683d3bfa294fe100408058e75aa3 | /Metodos/Clase3/ScriptsClase/metodosSecante.sce | 2cb00e0980d101c2150fde49e4c9b956ad57de66 | [] | no_license | DavidAlex99/Cursos | f15cb4f4fbb35a6eb62cbae0a9b51ea671f3ea8f | aee547ab09db7e535bea5a6d41ed6e455f8a9a89 | refs/heads/master | 2023-01-08T02:46:07.502656 | 2020-11-14T00:45:57 | 2020-11-14T00:45:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 586 | sce | metodosSecante.sce | clc()
//Metodo de secante f(x) = e^(-x)-x
function result = f(x)
result = exp(-x)-x
endfunction
function tabla=newtonRaphson(x0,fx,delta,n)
[tabla] = (n+1)
xr = x0
tabla(1,1) = 0
tabla(1,2) = x0
tabla(1,3) = fx(x0)
tabla(1,4) = 0
for i = 1:1:n
xa = xr
... |
b1656604024d16ac0cdb35cbe666a08864930218 | 08bfc8a1f8e44adc624d1f1c6250a3d9635f99de | /SDKs/swig/Examples/test-suite/scilab/struct_value_runme.sci | bab63eb5364ebe91b28a86d1ea5970a398216551 | [] | 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 | struct_value_runme.sci | version https://git-lfs.github.com/spec/v1
oid sha256:45e5a086996fd1b8aeeb1fa8aef97426a185f644ea0de2a9de4f38e3f709e717
size 337
|
47b6b2f42e672b78b8627ded98f31182067a1320 | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /CostHriFunction/PR2/Pr2ShelfAndHumanTmp4.sce | 66590267b414406be5a3a1ced3b6c8b339936c4f | [] | 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 | 7,389 | sce | Pr2ShelfAndHumanTmp4.sce | #************************************************************
# Scenario of Ikea
#
# date : Sat Sep 15 18:50:48 2012
#************************************************************
p3d_sel_desc_name P3D_ENV Ikea
p3d_sel_desc_name P3D_ROBOT BLUE_BOTTLE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000... |
2d3cda99a28774120c078be691d299cae37ce264 | 3073307fa4b6da9371518f0718c199501b8c5c71 | /elimGaussPivoteoParcial.sci | 784febd454e9f413daa099a7676894a71acb5674 | [] | 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 | 1,324 | sci | elimGaussPivoteoParcial.sci | //Realiza la eliminacion de Gauss para una matriz A y un vector b
// Devuelve: B matriz triangular superior resultado de aplicar eliminación
// Gaussiana a A. Realiza pivoteo parcial.
// Pivoteo Parcial: Busca el mejor candidato para pivote, que es el que
// tenga mayor valor absoluto.
function [B] = elimGaussPi... |
490fc43bdb4d6103e58cd4f523357108ecb88ae2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH1/EX1.25/ex1_25.sce | 2a2c17edaaf4f961c5611a375ae01c992b565e2b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 419 | sce | ex1_25.sce | // Exa 1.25
clc;
clear;
close;
format('v',5)
// Given data
R1 = 6;// in ohm
R2 = 2;// in ohm
R3 = 2;// in ohm
R4 = 4;// in ohm
R5 = 4;// in ohm
R6 = 6;// in ohm
R12= R1*R2/(R1+R2);// in ohm
R34= R3*R4/(R3+R4);// in ohm
R56= R5*R6/(R5+R6);// in ohm
// Resistance between the point B and C
R_BC= (R12+R34)*... |
eca14ffd4a6b4712b95e168bcee117d9ed828e10 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH2/EX2.5/example5.sce | 5abec9da05d54abda25e37d057f7790df2ab589f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example5.sce | clc
clear
//input data
sc=0.8//Pitch-chord ratio of compressor blade
b1=45//Relative air angle at inlet in degree
b2=15//Relative air angle at oulet in degree
a1=b1//Cascade air angle at inlet in degree
a2=b2//Cascade air angle at outlet in degree
//calculations
en=a1-a2//Nominal deflection angle of the bla... |
cc9a725f29e94f715b0bee1f1540236ba6c14f9d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH5/EX5.10/Ex5_10.sce | 0ee2a489dcaf24c10a6faa185198c155d6257cb7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex5_10.sce |
// Ex5_10
clc;
// Given:
A1=3836;//in barns
E1=1;// in eV
E2=10^6// in eV
// Solution:
vr=sqrt(E2/E1);
A2=A1/vr;
printf("The cs area required will be = %f b", A2)
|
46e9cc64016dc17f5f2741300317f0bf52ed2146 | 67a252961f6616fc6db89eb11c1c83abf4d41468 | /CS4110Design5/CS16B032add.tst | d473b6f37f33fe6955404e7a5f5fb810875759ce | [] | no_license | ramyavelaga9/CS4110 | 5a45497cd7ef28d4472a57a257dad8e5f4a3d17b | 4a3cd82916820e4f7a4930a0efce14def8268dfc | refs/heads/master | 2020-07-17T23:41:12.196500 | 2019-11-20T04:24:32 | 2019-11-20T04:24:32 | 203,223,619 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 269 | tst | CS16B032add.tst | load CS16B032add.asm,
output-file CS16B032add.out,
compare-to CS16B032add.cmp,
output-list RAM[0]%D2.6.2 RAM[1]%D2.6.2 RAM[2]%D2.6.2;
set RAM[0] 1,
set RAM[1] 2,
repeat 20 {
ticktock;
}
output;
set PC 0,
set RAM[0] 5,
set RAM[1] 7,
repeat 20 {
ticktock;
}
output; |
db9af12644c9624db8879a13508714d6aa3c153c | 75f4227b78c1dbf9903692a3967a91098579a10f | /GenCode/Gen/APIGen.tst | e7aa2bc7ea25ee5920b0dad89654b372c44bd971 | [] | no_license | war-man/KLTN-2 | 7d023c852e7c59c7a4537842f4b7e5b5cbabd82f | 06e06f6d44a91747dbfe81ba625f64cf52947d59 | refs/heads/master | 2023-01-29T14:27:41.551745 | 2020-12-13T11:08:20 | 2020-12-13T11:08:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,428 | tst | APIGen.tst | ${
using Typewriter.Extensions.WebApi;
Template(Settings settings)
{
settings
.IncludeProject("CMS.Core");
settings.OutputExtension = ".cs";
settings.OutputFilenameFactory = file =>
{
return $"outputAPIs/{file.Name.Replace(".cs", "") + "Con... |
1b7ffa50886b61ad6bee90a6cc56c56a56c470fc | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Measurements_And_Instrumentation_P._Sharma_876.zip/Electronic_Measurements_And_Instrumentation_P._Sharma_876/CH5/EX5.4/Ex5_4.sce | c36b3bf98b5f97474b098b2555b698ae9bd485c9 | [] | 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 | 206 | sce | Ex5_4.sce | errcatch(-1,"stop");mode(2);//caption:Find equivalant current source
//Ex5.4
Vs=5//source voltage(in V)
Rs=1//source resistance(in ohm)
I=Vs/Rs
disp(I,'equivalant current source(in A)=')
exit();
|
23f18e62f5d7c46101eb8cc2a54e6730dd5aa4fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1544/CH5/EX5.12/Ch05Ex12.sce | a1f18599ce23d8958bda320353d4a110bbbbe852 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 842 | sce | Ch05Ex12.sce | // Scilab code Ex5.12: Pg 158 (2008)
clc; clear;
d = 2; // Distance between two parallel conductors, m
I_1 = 1000; // Electric current in first coil, A
I_2 = 300; // Electric current in second coil, A
mew_o = 4*(%pi)*1e-07; // Permeability... |
5711188165434bb82b5a299e6afc13b2dae0417f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH2/EX2.a.13/Example_a_2_13.sce | 46ed9c8fbcb6ca127fb8af0478a75793b5f8c6bc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 339 | sce | Example_a_2_13.sce | //Example 2_13 page no:97
clc;
delta=[1.08,-0.75,
-4.75,5.75];
delta1=[-6.25,-0.75,
21.25,5.75];
delta2=[1.08,-6.25,
-4.75,21.25];
V1=det(delta1)/det(delta);
V2=det(delta2)/det(delta);
Vx=V1+5-V2;
disp(V1,"the voltage V1 is");
disp(V2,"the voltage V2 is");
disp(Vx,"the voltage across 4 ohm resi... |
89768b9fb796e209f76d9c5db69eef48718f692d | 127061b879bebda7ce03f6910c80d0702ad1a713 | /PiLab/PiLab_ban.sci | cb24a1d5e5bbb37a8b31170d06390397581cbaa0 | [] | no_license | pipidog/PiLib-Scilab | 961df791bb59b9a16b3a32288f54316c6954f128 | 125ffa71b0752bfdcef922a0b898263e726db533 | refs/heads/master | 2021-01-18T20:30:43.364412 | 2017-08-17T00:58:50 | 2017-08-17T00:58:50 | 100,546,695 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 9,973 | sci | PiLab_ban.sci | // **** Purpose ****
// PiLab band structure calculator (level 3)
//==== << PiLab inputs >> ====
//[ban.Format]: 1x1, string, 'red' / 'cart'
//<= format of ban.Path points, reduced or cartisian k-points
//[ban.Path]: nx3, n>=2, real
//<= points to defined your paths, ban.Format defines their meaning
//[ban... |
05b099845aecff5d301a182ee4b7159b49673542 | 4e9df66700bcf9688afe22df0009cdf4a17bc61f | /Scilab_Lab/examples/test.sci | 9cf126ea6de5b78de2549060b6f6ab6cc7c994e0 | [] | no_license | vmebus/workspace | e18947a1f967e6a3a7dfbc5cce6f92380d8637fc | f251b8a8e6cec30a77c7ef7b4103c5ee6e6d1393 | refs/heads/master | 2021-01-09T21:53:45.183564 | 2015-10-03T06:42:23 | 2015-10-03T06:42:23 | 36,120,248 | 0 | 0 | null | null | null | null | WINDOWS-1252 | Scilab | false | false | 197 | sci | test.sci | //Script file example
//Note
a=rand(1,8000,"normal");
L=length(a)
b=sin(a);
c=L+1
d=a+%i*%pi; //d¬O½Æ¼Æ
j=2
d2=a+j*%pi;
d1=a+%pi*%i;
u1=sin(d1);u1(1:3)
u2=sin(d2);u2(1:3),[max(u2),min(u2)]
|
adb330254eb3cc310a64bef58bcaf924739eebba | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH13/EX13.5.a/13_5_data.sci | 739a78c3e9d634255d922d5ffc09e4676cd342a8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sci | 13_5_data.sci | // Aim:To find final pressure in the cylinder in SI units
// Given:
// initial gas pressure:
p1=70; //bar
// initial volume of cylinder:
V1=12900; //cm^3
// initial temperature of cylinder:
T1=37.8; //deg C
// final volume of cylinder:
V2=9680; //cm^3
// final temperature of cylinder:
T2=93.3; //deg C
|
3f959ee1fcccd7749768fe56e507606fed777e32 | f12c726998f902d8b45e2f4c2f319200fcaf1e15 | /comp.sce | 5038a3f50ff2537fc69714c4e9002d84b55d5f58 | [] | no_license | bsAnusha/Handgesture-recognition | 6f15ae926be269a277ecbe57fe89e9cb4acee877 | afc0b9531413146eb4e1f8e6663963ebaa8d880b | refs/heads/master | 2021-03-19T06:41:43.592860 | 2017-09-27T11:28:05 | 2017-09-27T11:28:05 | 105,009,439 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 969 | sce | comp.sce | z=imread('C:\Users\prathima\Desktop\DIPproject\final.jpg');//z is the eroded image that we obtained
H=imread('C:\Users\prathima\Desktop\DIPproject\finalA.jpg');
I=imread('C:\Users\prathima\Desktop\DIPproject\finalB.jpg');
J=imread('C:\Users\prathima\Desktop\DIPproject\finalD.jpg');
K=imread('C:\Users\prathima\Des... |
8f312fe3eca94f55965cb023424326d7f152d11d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH1/EX1.34/Ex1_34.sce | 40d8c5bedf0852f3b3e55e4c72950e452856d4b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 693 | sce | Ex1_34.sce | //Example 1_34
clc;
clear;
close;
format('v',5);
//given data :
V1=48;//V
R1=4;//ohm
R2=20;//ohm
R3=12;//ohm
R4=12;//ohm
V2=12;//V
//Open circuit AB
I1=V1/(R1+R2);//A
I2=V1/(R3+R4);//A
VR1=V1*R1/(R1+R2);//V//across 4 ohm resistance
VR2=V1*R2/(R1+R2);//V//across 20 ohm resistance
VR3=V1*R3/(R3+R4);//V//... |
6f5d5c57a82eca10a7ba6d3aa42829fc9fae97f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1664/CH2/EX2.1/Ex2_1.sce | 9f66f5479c9ce988ced0e00294fba6bf58c68c0c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 550 | sce | Ex2_1.sce |
//Example No.2.1.
// Page No.59.
clc;clear;
p = 5*10^(-3);// output power -[W].
w = 632.8*10^(-9);//wavelength -[m].
h = 6.626*10^(-34);//Planck's constant.
c = (3*10^(8));//Velocity of light.
hv = ((h*c)/(w));// Energy of one photon
printf("\nThe energy of one photon in joules is %3.3e J", hv);
hv = hv/(1.6... |
4762126a5f915c81c0f0df2cc4a67368cd6469e1 | 83776943583653063b2d37696610e02246073d05 | /test/FM01.prev.tst | c5750add78eaa3c00b98affefeebb3f51d2b15c3 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/churchcal | 35f068d2442e536fc5c10b7373644b61540f43b5 | fece7498d20768aa44563f11ad1b6b40e6bda6b2 | refs/heads/master | 2022-02-12T22:43:48.862460 | 2022-01-28T15:03:15 | 2022-01-28T15:03:15 | 30,125,816 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,352 | tst | FM01.prev.tst | 1947 1 1 1 4 1 1041 'Neujahr'
1947 2 1 2 5 1 1025 ''
1947 3 1 3 6 1 1025 ''
1947 4 1 4 7 1 1028 ''
1947 5 1 5 1 2 1032 '2.So.n.Weihn.'
1947 6 1 6 2 2 1057 'Epiphanias'
1947 7 1 7 3 2 513 ''
1947 8 1 8 4 2 513 ''
1947 9 1 9 5 2 513 ''
1947 10 1 10 6 2 513 ''
1947 11 1 11 7 2 516 ''
1947 12 1 12 1 3 520 '1.So.n.Epiph.'
1... |
37bc5f35ad013ccfaa3960d94fe2cf63a9d862b4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH1/EX1.1/1_1.sce | a56eaa12da9d51071733a8f477655a483cdfebe6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 1_1.sce | //Example 1.1
//Rounding off Numbers
//Page no. 2
clc;clear;close;
a=[81.9773;48.365;21.385;12.865;27.553]
for i=1:5
printf('\n%g becomes %.4g\n',a(i),a(i))
end |
d3d6b0e6aa8f601cb721d53211ca038b196d7171 | 4c41a46561edb75863cc92cbe97ded4f850c5be8 | /Files/Dummy2.tst | cbe2698e01ac9453120164699f64784562b6fc24 | [] | no_license | GreyCardinalRus/mt5WEKA | 275ca4a50af5411b7452e6ad47817131a46f3ffa | 5f60673302623b4673d1175fb308aaef2fd1f4df | refs/heads/master | 2021-01-12T00:48:17.826527 | 2018-01-02T16:55:39 | 2018-01-02T16:55:39 | 78,297,393 | 4 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 58 | tst | Dummy2.tst | //-9=4.879704469003193e-316
//-8=4.879704469003193e-316
|
3e21e3a408ce87d34877681c83a946fe014fb5a2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3293/CH1/EX1.8/Ex1_8.sce | 52f6e27807c4864ccc1564d405b1572ea861c5ad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 499 | sce | Ex1_8.sce | //page 12
//Example 1.8
clear;
close;
clc;
n = rand();
n = round(n*10);
disp(eye(n,n));
printf('This is an Identity matrix of order %d * %d',n,n);
disp('And It is a row reduced matrix.');
m = rand();
n = rand();
m = round(m*10);
n = round(n*10);
disp(zeros(m,n));
printf('This is an Zero matrix of order %... |
c7aba6e9b89e5e717d6a8572ed438faa98804fca | 449d555969bfd7befe906877abab098c6e63a0e8 | /2735/CH13/EX13.16/Ex13_16.sce | 791ec018724fca4797781c21dbaacbcaa83c4c9f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 445 | sce | Ex13_16.sce | clc
clear
//Initialization of variables
dL=1/6 //ft
mf=0.430 //lbm/sec
rho=62.4
gc=32.2 //ft/s^2
d=0.81/12 //ft
//calculations
V=mf*4/(rho*%pi)
VD=V/dL^2
Vd=1.92 //ft/s
dFf=0.031/(2*gc) *2.31
dFe=0.04*Vd^2 /(2*gc)
dF=dFf+dFe
dp=rho*(3.5/(2*gc) +dF)
vd22=(2*gc)/rho *dp /(1-(d/dL)^4)
vd2=sqrt(vd22)
C=V... |
64acc6b05464f69577567855152dd0a4909420e8 | 6886f9c39f0a208f28d1196a33ca54d3309881c2 | /primitive roots.sce | b8cdcb69088d065c17428785301a20c612cad156 | [] | no_license | sonusharma55/Data-Compression-and-Encryption | 9110c083d58c59d1d4c102033a9d5cc6f3f314c6 | ade4590edfc8f74e12e2644fd60a2997deb6885c | refs/heads/master | 2020-07-25T21:45:51.063843 | 2019-09-14T11:40:39 | 2019-09-14T11:40:39 | 155,232,740 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 663 | sce | primitive roots.sce | n = input("Enter value of n = ");
for i = 1:n-1
for j = 1:n-1
a(i, j) = i^j;
end
end
printf("Power of integers < n ")
disp(a);
for i = 1:n-1
for j = 1:n-1
a(i, j) = pmodulo(a(i, j), n);
end
end
printf("\nPower of integers < n (mod n)")
disp(a);
for i = 1:n-1
for j... |
89ab28ab34f507be8e1b50d327b7429a3b29e5af | 449d555969bfd7befe906877abab098c6e63a0e8 | /575/DEPENDENCIES/651.sci | 8e6ddc3426da0b43d17413354c96dfbae3006bdc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 119 | sci | 651.sci | basis=150 //kg feed
S100=0.905 //g AgNO3/g
S20=0.689 //g AgNO3/g
inputx=0.095 //kg water/kg
outputx=0.311 //kg water/kg |
627060a253358efd27944280498589858bd99bff | 449d555969bfd7befe906877abab098c6e63a0e8 | /1016/CH5/EX5.11/ex5_11.sce | 870831f84dbd715bd3fc2a9cf798d91eaa53be53 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 348 | sce | ex5_11.sce | clc;clear;
//Example 5.11
//given data
W=6000;//wavelegth in Angstrom
v=4*10^5;//velocity in m/sec
m=9.12*10^-31;//mass of electron in kg
e=1.6*10^-19;//the charge on electron in C
//calculations
KE=0.5*m*v^2/e;
disp(KE,'The Kinetic energy in eV is');
WF=12400/W;
Wo=12400/(WF-KE);
disp(Wo,'The threshold... |
efc6af8d6181b6679584b834984bc2ec983ce068 | 449d555969bfd7befe906877abab098c6e63a0e8 | /28/CH7/EX7.9/ex7_9.sce | 5071e362b2f5ab221301387c2800bbd7968ee258 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 257 | sce | ex7_9.sce | syms K
s=%s;
G=syslin('c',(K*(s+4/3))/(s^2*(s+12)))
evans(G,60)
d=derivat(G)
p=numer(d)
a=roots(p) // a=breakaway points
disp(a,"Breakaway points=")
printf("Equal roots are at s=-4")
printf("/n Value of K at s=-4=")
K=4*4*8/(4-(4/3))
disp(K)
|
bdcacb4126b0d9c44e11286adb55cd3ef9a6797f | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/DEPENDENCIES/4_13data.sci | 1472782ca9695a012a2dc0fd12e5033340e2cff1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 541 | sci | 4_13data.sci | //In A low Speed subsonic wind tunnel,one side of a Mercury manometer is connected byto the reservior and the other side is connected to the test section.
r=1/15; //contraction ratio of nozzle A2/A1
P1=1.1*1.01*10^5 //reservior pressure,N/m^2
T1=300 //reseroir temperature,k
Dh=0.1 //height difference between the tw... |
384d7385c392ac536ec6f450896511c83d64d19f | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electric_Machines_-_I_M._Verma_And_V._Ahuja_695.zip/Electric_Machines_-_I_M._Verma_And_V._Ahuja_695/CH2/EX2.30/Ex2_30.sce | f77ad4314928625750955a1077d8189ce8b0b82c | [] | 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 | 676 | sce | Ex2_30.sce | errcatch(-1,"stop");mode(2);//Caption:Determine the (a)speed at full load (b)speed at double full load (c)stalling torque in terms of full load torque
//Exa:2.30
;
;
V=250;//in volts
R_a=0.2;//in ohms
N_1=800;//in rpm
R_f=250;//in ohms
I_f=V/R_f;//in amperes
I=41;//in ampers
I_a1=I-I_f;//in amperes
E_1=V-(... |
64d072ad6769dc26e3a011a46b1cf32ea527b6d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH8/EX8.13/example8_13.sce | 60c8c63902dfc23f9b6be016fa27014c20441482 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 252 | sce | example8_13.sce | //Chapter 8
//Example 8_13
//Page 184
clear;clc;
r=1;
d=100;
go=30/sqrt(2);
mo=0.9;
delta=0.952;
vc=mo*go*delta*r*log(d/r);
lv=vc*sqrt(3);
printf("Disruptive critical voltage = %.2f kV/phase \n\n", vc);
printf("Line voltage = %.2f kV \n\n", lv);
|
fced8ce47bf02dc10f0bc8eab0389ae7af65ee05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH29/EX29.12/Ex29_12.sce | 9edd693ad21156358d19489fd1cc518e5c5491e2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 184 | sce | Ex29_12.sce |
clc;
f=50*10**3;
dutyc=0.60;
C=0.0022*10**-6;
T=1/f;
t1=dutyc*T;
t2=T-t1;
R2=(t2)/(0.7*C);
disp('Kohm',R2*10**-3,"R2=");
R1=(t1)/(0.7*C)-R2;
disp('Kohm',R1*10**-3,"R1=");
|
478be1598f3d6e10ba976244edc924b953277ca0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /659/CH12/EX12.1/exm12_1.sce | c5ab08b6a483329a50688db60da58331e8158c77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 570 | sce | exm12_1.sce | // Example 12.1
// Write a program to read data from keyboard,write it to a file called INPUT,
// again read the same data from the INPUT file and display it on the screen.
warning('off');
disp("Data Input");
//Open the file INPUT
f1=mopen('INPUT.txt','w');
// Get character from keyboard
... |
4313da8ba301baf8f7a4b499b5a674aa764c8c44 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3819/CH1/EX1.19/Ex1_19.sce | d32092169716992971a5e4aa6cafff4591b34566 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 860 | sce | Ex1_19.sce | // A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 1-Properties of Fluid
// Problem 1.19
//Given Data Set in the Problem(SI Units)
gap=2.2/100
visc=2
SG=0.9
g=9.81
W_dens=SG*1000*g
Vol=1.2*1.2*0.2/100
Area=1.2*1.2
t=0.2/100
vel=0.15
W=40
//Calculations
dis_from_plate... |
624c80aadc2ca7ea13fe23a41104b39ddbba735a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH9/EX9.15/Ex9_15.sce | 208ae6e1603ffbfc06a87f92c08efa67deb24ecf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,099 | sce | Ex9_15.sce | //Ex 9.15
clc;
clear;
close;
format('v',6);
fL=200;//Hz
fH=1; //kHz
Ap=4;//Pass band gain
fc=sqrt(fH*1000*fL);//Hz(Cutoff frequency)
BW=fH*1000-fL;//Hz
Q=fc/BW;//Quality Factor
disp(Q,"Quality factor is ");
disp("As Q<12, it is a wide band filter.");
Ap1=2;//Pass band gain for high pass section
disp("Vari... |
707bd4403cd34c6c957fdd9c6109ed2d42b08c29 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1979/CH10/EX10.3/Ex10_3.sce | 2e48e2fe54ee64e2e43a2057fa1d928ed9aefd76 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 884 | sce | Ex10_3.sce | //chapter-10 page 487 example 10.3
//==============================================================================
clc;
clear;
//For a microwave LOS link
f=2*10^9;//frequency of operation in Hz
c=3*10^8;//Velocity of light in m/sec
r=50000;//repeater spacing in m
PrdBm=-20;//required carrier power at the rec... |
0a07884f03efbafafdfd022b2d5b1880d6a48613 | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH3/EX3.9/Example3_9.sce | cfc61ee2e7997531d94c8e827d839a8439955ea7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 669 | sce | Example3_9.sce | //Example 3.9
clear;
clc;
//Applying Thevenin's theorem
//Anew=(R1B/(R1A+R1B))Aold and R1A || R1B =R1
AnewdB=0;
Anew=10^AnewdB;
C=10*10^(-9);
Aold=2.8;//Obtained from Example 3.8
RA=10*10^3;//Assumed value of RA
RB=17.8*10^3;
R1=15915.494;//obtained from Example 3.8
R2=R1;
R1A=R1*(A... |
f00d34463ac43b6d635c0427d950600db2d8eba3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH1/EX1.2/1_2.sce | 8821de1af32d257ebc64cccf2a75470856c6c123 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sce | 1_2.sce | clear; clc; close;
Id_low = 2;//mA
Id_high = 25;//mA
Vd_reverse_bias = -10;//V
Vd_low = 0.5;//V
Vd_high = 0.85;//V
Id_reverse_bias = -10*10^(-6);//A
Rd_low = Vd_low/Id_low;
Rd_high = Vd_high/Id_high;
Rd_reverse_bias = Vd_reverse_bias/Id_reverse_bias;
disp(Rd_low,'Low level dc resistance(in ohm):');
d... |
b9e4db6571b87690092264f42044f681ada31068 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2195/CH2/EX2.7.3.b/ex_2_7_3_b.sce | 80a4d2e320efb4aeed25b3c103d10395d863ab72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 589 | sce | ex_2_7_3_b.sce | //Example 2.7.3.b: Average deviation
clc;
clear;
close;
//given data :
n=10;
X1=147.2;// in nF
X2=147.4;// in nF
X3=147.9;// in nF
X4=148.1;// in nF
X5=148.1;// in nF
X6=147.5;// in nF
X7=147.6;// in nF
X8=147.4;// in nF
X9=147.6;// in nF
X10=147.5;// in nF
AM=(X1+X2+X3+X4+X5+X6+X7+X8+X9+X10)/n;
d1=X1-AM;
d2=X2-AM;
d3=... |
0fc1b390708133418367a1804fb1087702e38419 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2141/CH12/EX12.8/Ex12_8.sce | e9be89bc89043f0fa2aabdf82c61dda5dbc0ff2c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex12_8.sce |
clc
//initialisation of variables
hf=-104036 //Btu/lb mole
Cp0=4260//Btu/lb mole
h1=4345//Btu/lb mole
h3=3661 //Btu/lb mole
P=500//lbf/in^2
T=600//F
Pr=P/3206//lbf/in^2
Tr=1060/1165//F
Tc=0.53//F
//CALCULATIONS
h=hf+Cp0//Btu/lb mole
h2=hf+h1//Btu/lb mole
h4=hf+h3//Btu/lb mole
h5=Tc*1165//Btu/lb mole
H... |
76465ba67e12dc1f266c0b5213635d5bc33c9bf1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3821/CH10/EX10.1/Example10_1.sce | 0ed5768dce2642858c57de57b48fe64f62eb3ad3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 322 | sce | Example10_1.sce | /////Chapter 10 Properties Of Steam
////Example 10.1 Page No:183
///Find Dryness fuction of steam
///Input data
clc;
clear;
mw=15; //Water steam
ms=185; //Dry steam
///Calculation
x=((ms)/(ms+mw))*100; //Dryness fuction of steam in %
///Output
printf('Dryness fuction of steam= %f percent \n',x);... |
bd0f1efab7fdd66757089ac7096876923615c57f | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH26/EX26.18/example26_18.sce | 560cbfee86078150aae1b9dc2ffc88f79916d779 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 764 | sce | example26_18.sce | m_v=230;
f=60;
p_out=1.5*746;
pf=0.8;
eff=0.75;
disp("Part a");
p_in=p_out/eff;
m_i1=p_in/(m_v*pf);
deg_i1=acos(pf);
m_p1=m_v*m_i1;
deg_v=0;
deg_p1=deg_v+deg_i1*180/%pi;
p1=m_p1*(cos(deg_p1*%pi/180)+%i*sin(deg_p1*%pi/180));
p=real(p1);
p2=p-p1;
qc=-imag(p2);
x_c=m_v^2/qc;
c=1/(2*%pi*f*x_c);
disp("the ... |
c985e910024716d9c37faa8e007ec81bf50bdadd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1472/CH10/EX10.2/10_2.sce | 3436422e3da7ba79d5caf29c5b69ee7f292c5403 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | 10_2.sce | clc
//initialization of varaibles
s=1.6315 //B/lb R
//calculations
disp("From table 1 ")
h=1180.6 //B/lb
t=302.92 //F
p=70 //psia
//results
printf("Pressure = %d psia",p)
printf("\n Temperature = %.2f F",t)
printf("\n Enthalpy = %.1f B/lb",h)
|
416b5f45bd975ada1a9144f6918ab7a68e61a59f | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH1/EX1.15.b/Example1_15_b.sce | 66018c919d8f0c0910611888051f094c2802fa8e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,233 | sce | Example1_15_b.sce | //Example 1.15(b)
clear;
clc;
Rp=100*10^3;//Potentiometer Resistance
VCC=15;
VEE=-15;
//We have to choose the resistances in such a way that we get VA=10V and VB=-10V, so that if we want the source to be in the range -10V<=vW<=10V, we need to only turn the wiper. Let RA and RB be the resistances corre... |
58555e4f4238d48ba5d4b5df72f9458e86be00a0 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.9_8.tst | a9df91a4e1379b02dd94f1cabebe200d7a9030bf | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 801,983 | tst | 5.9_8.tst | 9 157:1 176:1 307:2 347:1 447:2 468:1 648:1 710:1 915:1 962:3 973:1 1237:2 1253:1 1382:1 1564:1 1582:1 1656:1 1675:1 1743:1 1826:1 2003:1 2016:2 2107:1 2121:1 2336:1 2338:1 2634:2 2895:1 2983:1 3000:1 3032:1 3064:1 3373:1 3380:1 3475:1 3578:1 3596:1 3610:1 3694:1 3721:1 3811:1 3875:1 3929:1 3982:1 4160:1 4272:1 4430:1 ... |
37f3330c2c577b46f5f84fe7fe6f004a336e6b0d | 717ddeb7e700373742c617a95e25a2376565112c | /3044/CH5/EX5.7/Ex5_7.sce | 98c8e95f2513b0b84f555dd6d6720853aa3d3188 | [] | 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 | 430 | sce | Ex5_7.sce | // Variable declaration
std_dev = 0.04 //standard deviation
x = 4 // number of ounces
p = 0.02 // probability of x <4
// Calculation
// as we know p = (x-Mean)/std_dev
// from Table-3 (page-514) we find closest value to 0.02 which is 0.0202 corresponding to Z = -2.05
Mean = 4 - (-2.05*0.... |
ebfca5830820cb757f4b2b5530f6777509cdeefc | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH1/EX1.4/Example_1_4.sce | 42bbba832b61aa9d913f2608469b01c844237348 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 420 | sce | Example_1_4.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 1
//Introduction and Basic Concepts
//Example 4
clear;
clc;
//Given
F = 600; //weight in N
t = 120; //time in sec
h = 0.18; //height of stairs in m
//To determine the power developed in man
S = 20*h; //total vertical displacement in m
W =... |
9a52f2c64a29cac8c5252d7219af21144b3a1720 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH14/EX14.8/14_8.sce | b6114e0c5aef90a824e72b305daec10ca128bd80 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 148 | sce | 14_8.sce |
f=50E6
w=2*%pi*f
theta=5*%pi/180
C=1E-12
R=1/theta/w/C
disp(R)
C=10E-12
R=1/theta/w/C
disp(R)
C=100E-12
R=1/theta/w/C
disp(R)
|
7a81297edb3392e77e857727ab2f99d39dce75cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /752/CH6/EX6.6.1/6_6_1.sce | 9d661ac06b85d4cfb69afed0feb88bf5c572a439 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 287 | sce | 6_6_1.sce | clc;
// page no 211
// prob no 6.6.1
//In given problem zero bias capacitance co is 20pF
Co=20;// in pF
Vd=-7;// reverse bias voltage in volt
//constant pottential of junction is 0.5
a=0.5;// for abrupt junction
Cd=Co/(1-(Vd/0.5))^a;
disp('pF',Cd,+'The value of capacitor is '); |
2b71f661ef010d86c139abfbec24bf517c932416 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH1/EX1.33/ch1_ex_33.sce | 35f0b1417534a023abd7e5a2d149a529ddd79a4a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,063 | sce | ch1_ex_33.sce | //CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
//Example 33
disp("CHAPTER 1");
disp("EXAMPLE 33");
//VARIABLE INITIALIZATION
I=10; //current source in Amperes
v=10; //voltage source in Volts
r1=4; //top resistance in Ohms
r1=4; ... |
8690f4354bcb8b714585d65b5f278791fd977433 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2441/CH1/EX1.13/Ex1_13.sce | b73a10cb6faef44860fd8dc7ed988e5af45140fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex1_13.sce | //exa 1.13
clc;clear;close;
format('v',7);
LF=0.825;//Daily Load Factor
ratio1=0.87;//daily peak load to monthly peak load
ratio2=0.78;//monthly peak load to annually peak load
LF_annual=LF*ratio1*ratio2;//Annual Load Factor
disp(LF_annual,"Annual Load Factor : ");
|
cdcfada95c2ed0accbcaa62a933e0c12676f0a87 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH9/EX9.3/CH09Exa3.sce | f09663e25bcb101ee458e507e10d426ded605010 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 520 | sce | CH09Exa3.sce | // Scilab code Exa9.3 : : Page-390 (2011)
clc; clear;
h_cut = 1.0545e-34; // Reduced Planck's constant, joule sec
G = 6.6e-11; // Gravitational constant, newton square metre per square Kg
m = 10^30; // Mass of the star, Kg
m_n = 1.67e-27; // Mass of the neutron, Kg
R = (9*%pi/4)^(2/3)*h_cut^... |
ce5a71919bcaf75b8195b765384eb90aa8bd054b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH13/EX13.5/Ex13_5.sce | a4ae1caf9095617fe2d80db6886ba7f8bd8bdd39 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,257 | sce | Ex13_5.sce | // chapter 13
// example 13.5
// fig. 13.14
// Determine the snubber component values for critical damping, value of R and power loss
// page-810-811
clear;
clc;
// given
Edc=30; // in V
fs=40; // in kHz
i_L=30; // in A (load current)
t_r=80; // in ns (rise time)
t_f=30; // in ns (fall time)
neta=10; // in... |
674c601df71a982b48dd3e55eaf67a1938681a7c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2183/CH6/EX6.2/Ex_6_2.sce | 662d2f756b86a84be8620402a702f86217fb546d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sce | Ex_6_2.sce | // Example 6.2//internal power level
clc;
clear;
close;
e=1.6*10^-19;//Electronic charge
ht=6.62*10^-34;//Constt
C=3*10^8;//speed light in m/s
h=0.87*10^-6;//wavelength in meter
tr=80;//radiative recombination time in nano second
tnr=120;//non radiative recombination time in nano second
t=(tr*tnr)/(tr+tnr);//... |
657f324aa7f7c50ec8aad916207191089291c59b | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH2/EX2.4/c2_4.sce | 2b260c3a1bd2ea41d31e90374b67a8beafba4cfb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,283 | sce | c2_4.sce | //(2.4) During steady-state operation, a gearbox receives 60 kW through the input shaft and delivers power through the output shaft.For the gearbox as the system, the rate of energy transfer by convection is Qdot = -hA(tb-tf) where h = 0.171 kW/m2.k is the heat transfer coefficient, A= 1.0 m2 is the outer surface a... |
41da65f15df8bd9361e494093e60e8dca4cf7f15 | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH3/EX3.14/Example3_14.sce | e0bf909e4ddb5b246e2e2bb5eac97acfbd231540 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 551 | sce | Example3_14.sce | //Example 3.14
clear;
clc;
C=100*10^(-9);//Assuming C=100 nF
C1=C;
C2=2*C;
f0=60;
BW=5;
R=1/(2*%pi*f0*C);
R1=R;
R2=R/2;
Q=f0/BW;
K=(4-(1/Q))/2;
RA=10*10^3;
RB=(K-1)*RA;
printf("Designed Second Order Notch Filter :")
printf("\nR1=%.2f kohms",R1*10^(-3));
printf("\nR2=%.... |
9098ffcdf97c6cb825829792d7eadbba76596830 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH2/EX2.16/example2_16.sce | 9a71e6d1c601aebc409fbeee4955890907b60f22 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 535 | sce | example2_16.sce | //Chapter 2
//Example 2_16
//PAge 30
clear;clc;
p1=700;
p2=500;
n1=1;
n2=2;
fc=0.28;
cv=10200;
days=30;
pcf=0.4;
max_energy=(p1*n1+p2*n2)*24*days;
printf("(i)\tMaximum energy that can be produced in a month = %.1f kWh \n\n", max_energy);
act_energy=pcf*max_energy;
printf("\t\t Actual energy produce... |
0f97b7f0e204924327461cf8c63e88f6462583a5 | 6afc7fb4c7404da6523ba7b016531b1fc4ea53d6 | /Scilab/Scilab2/prog6.sci | 5cd44874f993839a4043a81e26fdfbc5a42b2880 | [] | no_license | GarageInc/old-university-projects | 8867bb29e0229f56c4996a6e7241648d8db7ec19 | fb50c5273b58898ecde0a351e694929a8fa1ad81 | refs/heads/master | 2021-06-04T21:09:51.305920 | 2016-09-26T15:51:19 | 2016-09-26T15:51:19 | 50,765,728 | 5 | 6 | null | null | null | null | UTF-8 | Scilab | false | false | 214 | sci | prog6.sci | function [p] = prog6(A)
n = 4;
p = 1;
for i = 1:n
q = A(i, 1);
for j = 2:n
if q > A(i, j) then q = A(i,j);
end
end
p = p * q;
end
endfunction
|
45f97015a21a4237cbb60c26c3b56252ca5dae97 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH1/EX0.1/EXI_1.sce | 544021dc40e69fc5290f225abf4a30d328772055 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 571 | sce | EXI_1.sce | // Grob's Basic Electronics 11e
// Chapter No. I
// Example No. I_1
clc; clear;
// Express the following numbers in scientifi c notation:(a) 3900 (b) 0.0000056.
disp ('To express 3900 in scientific notation, write the number as a number between 1 and 10, which is 3.9 in this case, times a power of 10.')
disp ('... |
a132957c225e78498795b28fe00c753cb3bd1957 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH5/EX5.8/5_8.sce | 2f41afdba436b1fa95281cb4e4bbf138ef5b0324 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 350 | sce | 5_8.sce | clear;
clc;
h1=75;
h2=45;
l=300;
g=9.81;
T=2500*g;
m=.9;
w=m*g;
//(a)
lc=l+ (2*T * (h1-h2)/(w*l));
dOC=(lc/2)-l;
hCO=w * dOC *dOC / (2*T);
dOP=dOC+(l/2);
hPO=w * dOP *dOP / (2*T);
hPC=hPO-hCO;
mprintf("\nHeight of mid point P above C =%.2f m",hPC);
hP=hPC+h2;
mprintf("\nHeight of mid point P abo... |
60188ebdfdb280724e19e5cd6d511d0f6546de65 | f7378eec5e8815bdba8a29ea1beec900bbac11b1 | /lab1/threshold-code.sci | 558fc186a1fe25ec65bce39569e1e62aeee3d093 | [
"MIT"
] | permissive | andersoncordeiro/ComputerVision | dba8ed6a1a6c890b2aa7b8d4159b07cf311e8c70 | 163bd0e9cbcb7f0046e5f46f78d3967785b0e8b4 | refs/heads/main | 2023-03-05T18:35:06.740972 | 2021-02-16T14:16:09 | 2021-02-16T14:16:09 | 339,419,765 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 249 | sci | threshold-code.sci | // This is sketchy code - devise your own implementation
for i=1:height
for i=1:width
// Ceck pixel value of I(i,j) against threshold
// Act accordingly
end
end
// Please also provide faster implementations than explicit for loops.
|
86199b0ec517cb9f95dde259823feb09ffb4ffb9 | c04fb432166e4832950820b66362a26c125b608a | /make-tests/make5.tst | f938d4f5e9e69d00a987b552be3cba0ad28e7e74 | [] | no_license | andreaowu/Graphs | 6d7d7ce1483e01e0c1bf4657f2f4087cbe328046 | 485dae6c2d173c2844898440fad9306ec77e1962 | refs/heads/master | 2021-01-25T04:58:12.978046 | 2013-12-04T01:09:45 | 2013-12-04T01:09:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 68 | tst | make5.tst | java make.Main -f make-tests/make5.make -D make-tests/make5.info "C" |
aa33239f133815c911f972885c37757d766f999c | 717ddeb7e700373742c617a95e25a2376565112c | /3165/CH2/EX2.11/Ex2_11.sce | fbedc1cc94b36bc8e1c572fa0054e24572426b1d | [] | 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 | 637 | sce | Ex2_11.sce | //Example 2 . 1 1
//Program to Pl o t Magni tude and Phase Responce
clc ;
w=-%pi :0.01: %pi ;
H =1/(1 -0.5*( cos (w)-%i* sin (w)));
// c a l u c u l a t i o n o f Phase and Magni tude o f H
[ phase_H ,m]= phasemag (H);
Hm=abs(H);
a= gca ();
subplot (2 ,1 ,1);
y_location =" o r i g i n ";
plot2d (w/%pi ,Hm);
... |
97a3f268c1ae249ab959c6379d7e33146fa376be | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH4/EX4.14/ex4_14.sce | 53475b65bf5fd35900deb9255cf866fe44c79bfe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | sce | ex4_14.sce | // Exa 4.14
clc;
clear;
close;
// Given data
I_o = 2.4 * 10^-14;
I = 1.5;// in mA
I=I*10^-3;// in A
Eta = 1;
V_T = 26;// in mV
V_T= V_T*10^-3;// in V
v =log((I + I_o)/I_o) * V_T;// in V
disp(v,"The forward biasing voltage across the junction in V is");
|
74bcec3c50eefd56998801585674046e7b24ac20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3637/CH4/EX4.1/Ex4_1.sce | c60ba0834f479c6dcc1b993b79459c9eb862f166 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 170 | sce | Ex4_1.sce | //problem 1 pagenumber 4.38
//given
z='0101';format(6);
n=4;
vof=15;//volt
r=vof/(2^n-1);
v0=r*base2dec(z,2);
disp('Output voltage = '+string(v0)+' volt');
|
45531370e097f067ee3914755102d3b56cd328dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2195/CH2/EX2.6.1/ex_2_6_1.sce | c3e11c642c0ed6dc674bc728c0a244f5a8673414 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 479 | sce | ex_2_6_1.sce | //Example 2.6.1: magnitude and relative error
clc;
clear;
close;
//given data :
format('v',5)
R1=15;//ohm
E1=R1*5/100;//±limiting error for R1
R2=33;//ohm
E2=R2*2/100;//±limiting error for R2
R3=75;//ohm
E3=R3*5/100;//±limiting error for R3
RT=R1+R2+R3;//ohm(in series)
ET=E1+E2+E3;//±limiting error for RT
disp("For ser... |
29ec019d2e9afb720c76816ce681a54d1f44adf8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH15/EX15.05/15_05.sce | ca2893a6b9327d05f422527e5b11342a148fd9db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | sce | 15_05.sce | //Problem 15.05: Calculate the current taken by a 23 μF capacitor when connected to a 240 V, 50 Hz supply.
//initializing the variables:
C = 23E-6; // in Farads
f = 50; // in Hz
V = 240; // in volts
//calculation:
Xc = 1/(2*%pi*f*C)
I = V/Xc
printf("\n\n Result \n\n")
printf("\n current I = %.2f A ",I) |
5dc88f7853d00b02811f3ff3421371844c56991b | 683d2599aa2be1a5f74b928d545b20e7ea656cd1 | /microdaq/macros/dsp_upload.sci | 70990b7fdfc17033ed6e362c55ad482a8a32fcd7 | [
"BSD-3-Clause"
] | permissive | pj1974/Scilab | 5c7fb67d5cae5ac0cdf78e3dd66b97ba50f9fc95 | cd54f1bd8502d6914ad6ff5271ca0e6e3d323935 | refs/heads/master | 2020-12-25T17:12:56.934984 | 2015-10-06T17:16:11 | 2015-10-06T17:16:11 | 41,862,822 | 0 | 0 | null | 2015-09-03T14:00:56 | 2015-09-03T14:00:56 | null | UTF-8 | Scilab | false | false | 1,879 | sci | dsp_upload.sci | function result = dsp_upload( dsp_firmware )
// Load and upload DSP application
if dsp_firmware <> "" then
if isfile(dsp_firmware) <> %t then
mprintf(" ERROR: Unable to load DSP firmware - file %s doesn''t exists!", dsp_firmware);
result = -1;
return
end
... |
c281fed8a67f83f70054cd68909fefea2abc10a4 | 67ba0a56bc27380e6e12782a5fb279adfc456bad | /STAMPER_PROG_7.4/OffsetPolyline.sci | 014ec7769fc2fa5e0dc9c25c00086e563158bde5 | [] | no_license | 2-BiAs/STAMPER_PROG | 8c1e773700375cfab0933fc4c2b0f5be0ab8e8f0 | 4fdc0bcdaef7d6d11a0dcd97bd25a9463b9550d0 | refs/heads/master | 2021-01-18T19:30:06.506977 | 2016-11-10T23:32:40 | 2016-11-10T23:32:40 | 71,999,971 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,760 | sci | OffsetPolyline.sci | function plOutput = OffsetPolyline(plInput, mOffestRegimeBoundaries, mOffsetComponents)
//plInput = FwdSelfIntSmoothing(plInput, 10, .05);
iPointCount = size(plInput, 1);
iSegmentCount = iPointCount - 1;
iIntersectionCount = iSegmentCount - 1;
lnOffsetSegmentBuffer = [];
plOffsetP... |
c9f9312f59eb86d95307ec7e27abe7544784da1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1904/CH11/EX11.4/11_4.sce | 4a33576fa13677e9b337ad5b85f1e595a93da5a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,135 | sce | 11_4.sce | //To Determine the Equivalent System Reliability of Each configuration
//Page 612
clc;
clear;
Ri=0.85;
deff('x=relp(y,z)','x=1-((1-(Ri^y))^z)')//Equal Parallel Combination
deff('x=rels(y,z)','x=(1-((1-Ri)^y))^z') //Equal Series Combination
//Case 1: 4 elements in series
Req1= rels(1,4);
//Case 2: T... |
7f29fb2c42762d6eb293478d34560933bf445065 | 449d555969bfd7befe906877abab098c6e63a0e8 | /992/CH2/EX2.10/ex2_10.sce | a4678233bc76ed45b1ec1032505d079f70db7de5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 424 | sce | ex2_10.sce |
//Exa:2.10
clc;
clear;
close;
//Given:
//Pb=(1+mt*mt/2)*Pc;
printf("\n\n\t (a)when m=1 Pt=1.5Pc");
printf("\n and carrier and one sideband supressed Pt=1.25Pc");
r=1.25/1.5;
printf("\n\n\t Percent power saving =%fpercent",r*100);
printf("\n\n\t (b)when m=0.5 Pt=1.125Pc");
printf("\n and carrier and one sid... |
76957d2065c33281fcf296aca7120df6add801f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1775/CH4/EX4.19/Chapter4_Example19.sce | 66395ea87dfd9483d597f8b351aedc199ee3d8a9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,958 | sce | Chapter4_Example19.sce | //Chapter-4, Illustration 19, Page 208
//Title: Steam Nozzles and Steam Turbines
//=============================================================================
clc
clear
//INPUT DATA
b1=30;//Blade angle at inlet in first stage in degrees
b2=30;//Blade angle at exit in first stage in degrees
b3=30;//Blade ang... |
3b53cd002744425e87c94a7a5d99e795a2ce7b67 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH20/EX20.1/Ex20_1.sce | 7051abf23f9b92d6367e31a2264cadc4016e545b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sce | Ex20_1.sce | //Example 20_1
clc();
clear;
//To findout the time that it has to wait after turning off the set before it is safe to touch capacitor
r=10^6 //Units in Ohms
c=10^-5 //Units in F
ti=r*c //Units in Sec
printf("We have to wait for a time of t=%d sec",ti)
|
72741583ed92c9596ffedbb368f0c2a70c8b5ac3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH11/EX11.2/Ex11_2.sce | 54ed983f11c785212dddc8b42e592d605fa731e5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex11_2.sce | //pagenumber 514 example 2
clear
macapa=900*10^-12;//farad
micapa=90*10^-12;//farad
r=100*10^3;//ohm
//(a) frequency range
fremin=1/(2*3.14*r*macapa);
disp("min frequency = "+string((fremin))+"hertz");
fremax=1/(2*3.14*r*micapa);
disp("max frequency = "+string((fremax))+"hertz");
//(b) r3
r=10*10^3;/... |
9f35d2fdbcc6fbefc7d2ff738002cc72e13c01fc | 952f05b9b2293792559cddaf7ee402ccc22b0b8d | /icclim/test-cases/test-cases-360-days/read-the-docs-example-02-360-day.tst | b80cd375e82b681d43723778dd161dbe2dc25d44 | [
"Apache-2.0"
] | permissive | ptrgast/icclim | a5c768bde9f5ce0562ef8250262ca1d70213c461 | 1c43cc7fc5d779f04fb72361a80bde3b232a9580 | refs/heads/master | 2020-05-18T18:44:15.153378 | 2020-02-04T07:46:40 | 2020-02-04T07:46:40 | 184,594,303 | 0 | 0 | NOASSERTION | 2020-02-04T07:46:41 | 2019-05-02T14:19:16 | Python | UTF-8 | Scilab | false | false | 400 | tst | read-the-docs-example-02-360-day.tst | [Read-the-docs-example-2-360-day] # Read the docs - example 2
indice_name: ETR
in_files: [['tasmax_day_HadGEM2-ES_historical_r1i1p1_19891201-19991130.nc', 'tasmax_day_HadGEM2-ES_historical_r1i1p1_19991201-20051130.nc'], ['tasmin_day_HadGEM2-ES_historical_r1i1p1_19891201-19991130.nc', 'tasmin_day_HadGEM2-ES_historical_r... |
6083f73394a4736cfd709cc03ca9ee8bc7428f65 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1151/CH9/EX9.6/example6.sce | 87b87233127c1310e3589a1bd62584cd6bc77704 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,015 | sce | example6.sce | s=%s;
// g i v e n Ka=10 sec^-1
K =10;
g =K/(s *s*(1+0.25*s))
G= syslin ('c',g)
fmin =0.01;
fmax =100;
bode (G,fmin , fmax )
show_margins (G)
xtitle (" uncompensated system")
[gm , freqGM ]= g_margin (G)
[pm , freqPM ]= p_margin (G)
disp (gm ," g a i n ma r g i n=")
disp (( freqGM *2* %pi)," g a in margi... |
772f973a96d1fb560df3ec5011b145af65744db3 | 8d962619c9b5378078e89b5fef79e36140aa3425 | /src/Qwack.Transport/TypewriterTemplate.tst | 4ff970663995a01b7a5d9ef41b9d1d4c458eb506 | [
"MIT"
] | permissive | cetusfinance/qwack | 3bbc9c1e26aa1163e4656bc5eaa8970ede4cb362 | cdd92deac2092a8ec49ce11b071ecc19bc740bbf | refs/heads/master | 2023-08-25T04:18:53.885240 | 2023-08-24T15:07:41 | 2023-08-24T15:07:41 | 72,575,213 | 25 | 13 | MIT | 2023-06-14T17:12:08 | 2016-11-01T20:46:55 | C# | UTF-8 | Scilab | false | false | 3,564 | tst | TypewriterTemplate.tst | ${
// Enable extension methods by adding using Typewriter.Extensions.*
using Typewriter.Extensions.Types;
// Uncomment the constructor to change template settings.
//Template(Settings settings)
//{
// settings.IncludeProject("Project.Name");
// settings.OutputExtension = ".tsx";
/... |
054069aead6af5869a7ca0a523b53d7548eb2239 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/m2sci/sci_eval.sci | d432e406ead0d118a8c54b8f46003af29b673c5c | [
"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 | 1,249 | sci | sci_eval.sci | function [stk,txt,top]=sci_eval()
// Copyright INRIA
txt=[]
write(logfile,'Warning: eval argument not translated to scilab syntax. Check')
if lhs==1 then
if rhs==1 then
if and(lst(ilst+1)==['1' 'ans']) then
stk=list('execstr('+stk(top)(1)+')','0','?','?','?')
else
stk=list('evstr('+stk(top)(1)+')'... |
83be1dd1bbaad076be5bfb66874de2ea9becd887 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH40/EX40.11/40_11.sce | 18e41e1a2de329eb4ef08b0fac476c7f4e55fee8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 850 | sce | 40_11.sce | //Problem 40.11:The charging current for an 800 m run of isolated twin line is not to exceed 15 mA. The voltage between the lines is 10 kV at 50 Hz. If the line is air-insulated, determine (a) the maximum value required for the capacitance per metre length, and (b) the maximum diameter of each conductor if their distan... |
8b291d8af87244fe53200607fc8146bac9f865a0 | 244971ae8af51184d278cdc2be1c80775413adae | /SSSoEDFAlimiter.sci | 95928472b1a70e630a5818caabd95590f8aa8d80 | [] | no_license | MSCA-SIMFREE/748767 | 5879f1f139b608c7cd2f1bd62325b281c9c1e7d1 | 4726206e514f1e47e939e73b9339c056057866db | refs/heads/master | 2020-12-27T15:21:13.646362 | 2020-02-03T11:40:00 | 2020-02-03T11:40:00 | 237,951,088 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 870 | sci | SSSoEDFAlimiter.sci | // The code was developed under Horizon2020 Framework Programme
// Project: 748767 — SIMFREE
function [Out,G]=SSSoEDFAlimiter(In,P_dBm)
// A simple optical limiter.
//
// Calling Sequence
// [Out,G]=SSSoEDFAlimiter(In,P_dBm)
//
// Parameters
// In : Optical Input
// P_dBm : Output... |
fafd3dfe0c7cf80c77263825e76c5345262f26ea | a1161d9e9d26e0a7b20c31269be145f13d9d3e89 | /QA/tests/had/had_em.tst | ed8a0c9cdd9a212d53ded64a62a0c55963a2f9e0 | [
"LicenseRef-scancode-warranty-disclaimer",
"ECL-2.0"
] | permissive | nwchemgit/nwchem | c06e7e1fe11b3afad17b167f29a97c4fa3ad0fda | c5a8125298a6ea7d6eb27b07c196ea8041aa7198 | refs/heads/master | 2023-09-05T17:18:34.513866 | 2023-09-02T02:56:47 | 2023-09-02T02:56:47 | 111,318,191 | 425 | 164 | NOASSERTION | 2023-09-11T16:34:14 | 2017-11-19T17:48:21 | Fortran | UTF-8 | Scilab | false | false | 320 | tst | had_em.tst | Energy = -4.622E+05
Energy = -4.728E+05
Energy = -4.820E+05
Energy = -4.904E+05
Energy = -4.981E+05
Energy = -5.050E+05
Energy = -5.112E+05
Energy = -5.168E+05
Energy = -5.217E+05
Energy = -5.259E+05
|
2039f30038a92bcb350aa418b4dc8bd0445470d6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH8/EX8.9/EX8_9.sce | 97c9a3c906045dcce27419b070d3ced845c2ddc5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 776 | sce | EX8_9.sce | //EXAMPLE 8-9 PG NO-525
Ro=600;
Fc=3000;
L=Ro/(4*%pi*Fc);
disp('i) INDUCTANCE (L) is = '+string ([L]) +' H ')
C=1/(4*%pi*Fc*Ro);
disp('ii) CAPACITOR (C) is = '+string ([C]) +' F ')
Fo=2700;
m=sqrt(1-(Fo/Fc)^2);
disp('iii) (m) is = '+string ([m]) +' ');
X=(2*C)/m;
disp(... |
893bc85802845aba82b55c9800c9c14e3d72195c | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/block_info/bi_vmm_offc.sci | 15110dcece1266aed4e63b23b8ef16fe44ed6fb4 | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 3,111 | sci | bi_vmm_offc.sci | vmm_offc,13,2,37
2,1,2
35,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37
num_of_blk,1,mblif_num,0,vmm_offc_off1_ibias,10e-9,vmm_offc_off2_ibias,10e-9,vmm_offc_w16n,50e-9,vmm_offc_w26n,50e-9,vmm_offc_w16p,50e-9,vmm_offc_w26p,50e-9,vmm_offc_w15n,50e-9,vmm_offc_w25n,50e-9... |
9e585826eb3e10b923231ccd6d8e42179385556f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1325/CH14/EX14.5/14_5.sce | 26624ab7a5759d7741e8ab01e8b194e278406865 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | 14_5.sce | //To find the balance weight required and the residual unbalanced force
clc
//given
W=180//lb
R=150//lb
c=.5
N=300//rpm
r=7.5/12//ft
Bb=(W+c*R)*r*12
b=6//in
B=Bb/b
w=(%pi*N)/30
Uf=(1/2)*(R/g)*w^2*r
a=floor(Uf)
printf("Balance weight required = %.1f lb\n The resultant unbalanced force = %.f lb\n",B,a)
|
938987611a0b16a4e6ffeef2d42eb12f1438a130 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1775/CH4/EX4.23/Chapter4_Example23.sce | bdf5111c7bcac01415c9705aa65eca7268e677f9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,084 | sce | Chapter4_Example23.sce | //Chapter-4, Illustration 23, Page 214
//Title: Steam Nozzles and Steam Turbines
//=============================================================================
clc
clear
//INPUT DATA
P0=800;//Steam pressure in kPa
P2=100;//Pressure at point 2 in kPa
T0=973;//Steam temperature in K
a1=73;//Nozzle angle in de... |
2a008fe5be21520a848f9bfb834c795c4a1e9e23 | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH5/EX5.8/Example5_8.sce | 12fd97fe1f3dc163e9c7c4fca9f8b0856c5dce32 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 745 | sce | Example5_8.sce | //Example 5.8
//Program to determine the total loss incurred by the star coupler
//and average insertion loss
clear;
clc ;
close ;
//Given data
Pi=1*10^(-3); //Watts - INPUT POWER AT PORT 1
Po=14*10^(-6); //Watts - OUTPUT POWER AT OTHER PORTS
N=32; //Ports
//Calculation of Spli... |
df24a991b04ceeb83c96420af75a48e3ec137ed2 | f42e0a9f61003756d40b8c09ebfe5dd926081407 | /TP3/rich.sci | d97868f54c9412c43fa00498e6210ecf1d1e5867 | [] | no_license | BenFradet/MT09 | 04fe085afaef9f8c8d419a3824c633adae0c007a | d37451249f2df09932777e2fd64d43462e3d6931 | refs/heads/master | 2020-04-14T02:47:55.441807 | 2014-12-22T17:34:50 | 2014-12-22T17:34:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,304 | sci | rich.sci | function[x] = rich(a, b, c, u)
//richtmayer's algorithm for solving tridiag matrices
[one na] = size(a);
if one <> 1
error('a not a vector');
end
[one nb] = size(b);
if one <> 1 | nb <> na + 1
error('b not the right dims');
end
[one nc] = size(c);
if one <> 1 | nc ... |
db70a440d2dbe1e4d5047e67094b5bea279ceb68 | abd7728083df51a785c94e61999237380b32c4f8 | /examples/Presentation Packs/Cognitive Psychology Experiments III (Version 3)/CPT-X/Scenarios/CPT-X.sce | 1b8af88994c8c2f3d4514e0734bf5e3557284fe8 | [] | no_license | LCTO-TLCO/UAVpresentation | 93b0c0e0eb123b550218bbae4e0bb1db8c30cb5e | 83e0f22cfdc2b7172bf0b90a9a14ddf77e6ccf2a | refs/heads/master | 2023-07-25T14:03:39.874916 | 2021-09-07T07:19:38 | 2021-09-07T07:19:38 | 301,918,691 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 16,778 | sce | CPT-X.sce | # -------------------------- Header Parameters --------------------------
scenario = "CPT-X";
write_codes = EXPARAM( "Send ERP Codes" );
default_font_size = EXPARAM( "Default Font Size" );
default_background_color = EXPARAM( "Default Background Color" );
default_text_color = EXPARAM( "Default Font Color" );
default_... |
90a5ac8599826901b1bf7ef717a9ded1a88f7051 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH11/EX11.3/Ex11_3.sce | 43835d627a4ef8edd60c43ed30a99c40b88e0c0a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 470 | sce | Ex11_3.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 11 Example 3")
T1=(-27+273);//temperature of refrigerator in K
W=3*.7457;//work input in KJ/s
Q=1*3.5;//refrigeration effect in KJ/s
disp("COP=T1/(T2-T1)=Q/W")
... |
63eecc0a8daeb519d5d50b376dec3f0e69a4b6bb | ac1f8441b0319b4a391cd5a959bd3bb7988edfa7 | /data/news2015/news2015/SplitsNEWS15/EnKa/enka.6.tst | ecec64f248f9f908f0d8862d136540738dd0b837 | [
"MIT"
] | permissive | SaeedNajafi/transliterator | 4d58b8604fa31f52ee2dce7845e002a18214fd5e | 523a087b777a5d6eec041165dabb43848f6222e6 | refs/heads/master | 2021-09-18T17:02:59.083727 | 2018-07-17T06:01:21 | 2018-07-17T06:01:21 | 129,796,130 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 60,762 | tst | enka.6.tst | a a c h a r y a n a n d a n ಆ ಚ ಾ ರ ್ ಯ ನ ಂ ದ ನ ್
a a d a r s h ಆ ದ ರ ್ ಶ ್
a a d i t y a k e s h a v ಆ ದ ಿ ತ ್ ಯ ಕ ೇ ಶ ವ ್
a a g k a d a r i y a ಆ ಗ ್ ಕ ಾ ದ ರ ಿ ಯ ಾ
a a h l a d i t ಆ ಹ ್ ಲ ಾ ದ ಿ ತ ್
a a h w a n i t ಆ ಹ ್ ವ ಾ ನ ಿ ತ ್
a a j k a g u n d a ಆ ಜ ್ ಕ ಾ ಗ ು ಂ ಡ ಾ
a a k a n k s h a ಆ ಕ ಾ ಂ ಕ ್ ... |
586bad5cf50c1d85a22b866d0954442a331ed37c | d1a2737ec744ffbba1165afa7b05f26a4076f513 | /Lab 7/q4.sce | bb50a1d5a71d3f0a15feab4eabf6a9139995d959 | [
"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 | 3,159 | sce | q4.sce | clc; clear;
// A = p2z(R,Theta) - Convert from polar to rectangular form.
// R is a matrix containing the magnitudes
// Theta is a matrix containing the phase angles (in degrees).
function [A] = p2z(R,Theta)
if argn(2) <> 2 then
error("incorrect number of arguments.");
end
if ~and(size(R) == size(Theta)) t... |
9f047cd5127583cdaa18274182cf80c998c9f466 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3257/CH7/EX7.7/Ex7_7.sce | ddb7551751d9f18d415dbd2a53dc8c8ce3ec9cf9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 373 | sce | Ex7_7.sce | // Estimating the limiting drawing ratio
clc
del_l = 0.23 // fractional change in length
del_t = -0.1 // fractional change in thickness
printf("\n Example 7.7")
l_ratio = (1+del_l)
t_ratio = (1+del_t)
w_ratio = 1/(l_ratio*t_ratio)
R = log(1/w_ratio)/log(1/t_ratio)
printf("\n\n For planar isotropy and from ... |
0e5f02b48c13a901e2cb2d077b781f9c7fe93596 | f708de8b70d2f3c38b5eb963efe5d71de1a0de49 | /src/goahead/test/basic/callback.tst | b08f519b35c0caabde12fc8c30ad6edcadfa51c9 | [] | no_license | baobao-skl/SmartSDK | 7225208110f223f950477f577947dbbe2577f439 | 7c81b63a66f3c0cf98ff3c2f1330a3a5e226dbe6 | refs/heads/master | 2020-05-28T01:47:07.809576 | 2014-08-12T14:20:21 | 2014-08-12T14:20:21 | 19,645,700 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,487 | tst | callback.tst | /*
callback.tst - Http tests using callbacks
*/
// MOB - re-enable
if (false) {
const HTTP = App.config.uris.http || "127.0.0.1:8080"
let http: Http = new Http
// Using a read callback
http.setCallback(Http.Read, function (e) {
if (e is HttpDataEvent) {
if (e.eventMask == H... |
a0ebd1e5b529b63f92fc291c8a4100b003959de8 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/ADRSolver/Tests/Helmholtz3D_nodal_HexDeformed.tst | e68aba7be564600919550e8ac84de993ba859694 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 630 | tst | Helmholtz3D_nodal_HexDeformed.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description> 3D Helmholtz/Steady Diffusion Reaction P=7 Hex Deformed</description>
<executable>ADRSolver</executable>
<parameters>Helmholtz3D_nodal_HexDeformed.xml</parameters>
<files>
<file description="Session File">Helmholtz3D_nodal_HexDeformed.x... |
2f78fdf735cdbeb57c6ce7204bbca4b7c95b8517 | 9fd700113e21acbb9d3cef5e6010e7f37656b6e6 | /cs16b025_lab1/Or8.tst | c00ad68b381cc4586ff7d44c4863283a782b46e8 | [] | no_license | madhav543/cs16b025_lab | 01432fe8d0fbacf4dafe5189413943ec48afaed4 | 4924ea918b9b4dc6eb22b713e639204c9e59c697 | refs/heads/master | 2020-07-11T22:44:32.575114 | 2019-11-19T16:06:12 | 2019-11-19T16:06:12 | 204,659,765 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 432 | tst | Or8.tst | load Or8.hdl,
output-file Or8.out,
compare-to Or8.cmp,
output-list ip1%B1.8.1 ip2%B1.8.1 out%B1.8.1;
set ip1 %B00000000,
set ip2 %B00000000,
eval,
output;
set ip1 %B11111111,
set ip2 %B00000000,
eval,
output;
set ip1 %B11111111,
set ip2 %B11111111,
eval,
output;
set ip1 %B10101010,
set ip2 %B01010101,
eval,
output;... |
ba0ac6248b7063bdcef9bc9bd1d4fe6ca92ba1cf | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/C45-C/results/C45-C.wine-10-1tra/result8.tst | b7ed851bcd8899589b009c7fe27000e693e1cdfe | [] | 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 | 775 | tst | result8.tst | @relation wine
@attribute Alcohol real[11.0,14.9]
@attribute MalicAcid real[0.7,5.8]
@attribute Ash real[1.3,3.3]
@attribute AlcalinityOfAsh real[10.6,30.0]
@attribute Magnesium real[70.0,162.0]
@attribute TotalPhenols real[0.9,3.9]
@attribute flavanoids real[0.3,5.1]
@attribute NonflavanoidsPhenols real[0.1,0.7]
@att... |
e11162a34416888b6f5f4e73f201e2b01358d716 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1655/CH4/EX4.3.1/Example_4_3_1.sce | 3af0966493203b14af50733b288c0abfa898b347 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 810 | sce | Example_4_3_1.sce |
// Example 4.3.1 page 4.4
clc;
clear;
L=10; //fiber length in km
Pin=150d-6; //input power
Pout=5d-6; //output power
len=20; //length of optical link
interval=1; //splices after interval of 1 km
l=1.2; //loss due to 1 splice
attenuation=10*log10(Pin/Pout);
alpha=attenu... |
35d688c2dce76724d619beb3d3cd8c8ea47646b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /323/CH7/EX7.4/ex7_4.sci | 94e69d9c01427b3fa2f3ee3ff423000562e7b238 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 161 | sci | ex7_4.sci | //Chapter 7,Ex7.4,Pg7.15
clc;
B=100
Icbo=4 //current in microamperes
Ib=40 //Current in microamperes
Ic=B*Ib+(B+1)*Icbo
printf("\n Ic=%.1f mA \n",Ic*10^-3) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.