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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c7628a6470bd1b6f445b324fa5b3bdf694236b0b | 10b625bb4f968cf83298dd40b285b6f15ab4354f | /MP2_Valaquio/functions/Area_Curve.sci | 0473f74cfd3520512e8ed480a38e3bdfcc4e5c8d | [] | no_license | edvalaquio/SciLabProjects | 885b1493b1368bbdccd671a58fba6ead6da9bca1 | aa8efd42ca65d4779376e2ccaf132fd75713fe7f | refs/heads/master | 2021-09-14T20:03:14.736024 | 2018-05-18T10:42:59 | 2018-05-18T10:42:59 | 131,813,353 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 874 | sci | Area_Curve.sci | function mid = midpoint(a, b, n, h, ft)
for i = a:h:(b-h)
result = result + func(i + (h/2), ft)
end
mid = h * result
endfunction
function trap = trapezoid(a, b, n, h, ft)
for i = a:h:(b-h)
result = result + (func(i, ft) + func(i + h, ft))
end
trap = (h/2) * result
endfunction
function simp = simpson(a, b,... |
89a417b7c8a998d0bc9685e44749465d9009ae63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1631/CH2/EX2.20/Ex2_20.sce | 54519a4895f9e033a8bf3c2d1984555dcfd6aee5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 338 | sce | Ex2_20.sce | //Caption: Joint probability
//Example 2.20
//Page no 60
//Find Determine the value of constant C
clc;
clear;
X=[0,0;2,2;2,0];
Y=[0,0;3,3;0,3];
function y=f(x,y),
y=2*x+y;
endfunction
P=int2d(X,Y,f);
C=poly(0,"C");
//we know that joint PDF
// double integration fXY(x,y)dxdy=1
//C*P==1;
C=1/P;... |
5b7241f79e596597ab2270b27c56e08c16a37978 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1952/CH12/EX12.27/Ex27.sce | 56616cc1a45b179f023d3edc2b73a81841b92db7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 415 | sce | Ex27.sce | // Additional solved examples , Example 27 , pg 344
r=0.62*10^-10 //radius of orbit (in m)
e= 1.6*10^-19 //charge on electron (in C)
n=10^15 //frequency of revolution of electron (in rps)
I=e*n //current (in A)
A=%pi *r^2 //area (in m^2)
M=I*A //magnetic moment associated with motion of ... |
9b8fb5f1baa310bc164ef5be8427ad53030eae6e | 7b7be9b58f50415293def4aa99ef5795e6394954 | /sim/cmd/test/man-dehy1.tst | fcb1a5fa5f4bf1ca1e738b0992c50c9b1a3a4ae0 | [] | no_license | sabualkaz/sim42 | 80d1174e4bc6ae14122f70c65e259a9a2472ad47 | 27b5afe75723c4e5414904710fa6425d5f27e13c | refs/heads/master | 2022-07-30T06:23:20.119353 | 2020-05-23T16:30:01 | 2020-05-23T16:30:01 | 265,842,394 | 0 | 0 | null | 2020-05-21T12:26:00 | 2020-05-21T12:26:00 | null | UTF-8 | Scilab | false | false | 1,455 | tst | man-dehy1.tst | #dehydration plant
$thermo = VirtualMaterials.Advanced_Peng-Robinson
/ -> $thermo
thermo + WATER NITROGEN CARBON_DIOXIDE METHANE ETHANE PROPANE ISOBUTANE N-BUTANE ISOPENTANE
thermo + N-PENTANE N-HEXANE N-OCTANE BENZENE TOLUENE ETHYLBENZENE O-XYLENE TRIETHYLENE_GLYCOL
units Field
#define feed to dehydration pl... |
b2e12869af158a31d2d8203d08a7c5fc81132197 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH9/EX9.1/Ex9_1.sce | e02685ec0dca4480ad0a5600779dbf0bd0edd829 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sce | Ex9_1.sce | //Ex9_1 Pg-475
clc
Aol= 250000 //open loop gain
fol=160 //open loop frequency in HZ
Acl=50 //close loop gain
fcl=Aol/Acl*fol //close loop frequency in Hz
printf("Close loop Bandwidth = %.0f kHz",fcl*10^-3)
|
1e8d5459dc06389fdfd1b5ea43b4f0d23f517c31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2153/CH16/EX16.6/ex_16_6.sce | 19706e555a2a091901b848de0d6fbc26c8a234e0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | ex_16_6.sce | //Example 16.6 : intrinsic carrier density
clc;
clear;
close;
//given data :
format('v',10)
e=1.602*10^-19;
p=3000;// in ohm/m
sigma=1/p;// in ohm/m
mu_n=0.14;// in m^2/V-sec
mu_p=0.05;// in m^2/V-sec
n_i=sigma/(e*(mu_n+mu_p));
disp(n_i,"the concentration,n_i(/m^3) = ")
|
5ad670e05a5fc37bdeb45b8faa8c2b8a69acc6a7 | c01ca78370f3e6b54de574f320475030453d1290 | /istrellis.sci | da8be0cbbf59b67536eb0a7a1972185a1164d6ba | [] | no_license | hegdekartik/FOSSEE_communication_toolbox | d7e14c9c4e8c99915b293438c057bbdea60074bb | 399530b6ef3a9ea95164dc5f7d584ea7a9aa7957 | refs/heads/master | 2023-08-19T02:00:29.665821 | 2018-06-13T11:04:18 | 2018-06-13T11:04:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,916 | sci | istrellis.sci | function [isOk, status] = istrellis(S)
// This function checks if the given input is of trellis structure
// Calling Sequence
// [ISOK, STATUS] = ISTRELLIS(S)
//
// Description
// [ISOK, STATUS] = ISTRELLIS(S) returns [T,''] if the given input is valid trellis structure. Otherwise ISOK is F and STA... |
bcb266feb6e24c4eccbbf13fc3fa33a3a5930326 | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/macros/mdaq_error2.sci | ab33de310b1304e1fc9d5d936f658917f96c700a | [
"BSD-3-Clause"
] | permissive | microdaq/Scilab | 78dd3b4a891e39ec20ebc4e9b77572fd12c90947 | ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf | refs/heads/master | 2021-09-29T11:55:21.963637 | 2019-10-18T09:47:29 | 2019-10-18T09:47:29 | 35,049,912 | 6 | 3 | BSD-3-Clause | 2019-10-18T09:47:30 | 2015-05-04T17:48:48 | Scilab | UTF-8 | Scilab | false | false | 289 | sci | mdaq_error2.sci | function error_desc = mdaq_error2(error_id)
result = 0;
[error_desc, result] = call("sci_mlink_error",..
error_id, 1, 'i',..
"out",..
[1, 256], 2, 'c',..
[1,1], 3, 'i');
error_desc = stripblanks(error_desc);
endfunction
|
7a6a8eb137e792aca2d62f38840fbec89e9c9659 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH1/EX1.17/Ex1_17.sce | 5789c68c86dfac3a8511ababf724a9733eb165a4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 546 | sce | Ex1_17.sce | //Example 1_17
clc();
clear;
//To calculate the order of interference of the dark band
t=1.5*10^-6 //units in cm
lemda=5*10^-7 //units in cm
i=60 //units in degree
u=1.33
r=asin((sin(i*%pi/180))/u)*(180/%pi) //units in degree
n=(2*u*t*cos(r... |
6bc9c9d900d73e030910bd77b08e2a291481ca17 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/HG63QMJ/ATWM1_Working_Memory_MEG_HG63QMJ_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce | 60c4ec7743879275746ed3e44dc5979059b1a563 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,617 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_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... |
07e6afcf97ca26258634d11372382a5771039ff6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2204/CH8/EX8.5/ex8_5.sce | 42835c1912414d5f86df405f124e8ccdcdc51f04 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 888 | sce | ex8_5.sce | // Exa 8.5
clc;
clear;
close;
// Given data
VTO= 0.43;// in V
VDD= 2.5;// in V
g=0.4; // value of gamma
W1= 0.375;
L1=0.25;
W2= 0.75;
L2=0.25;
//VDD-VOUT-VT= VDD-VOUT-(VTO+g*(sqrt(0.6+VOUT)-sqrt(0.6)))=0
//VOUT^2+VOUT*(2*A-g^2)+(A-0.6*g^2)=0, where
A=VTO-VDD-g*sqrt(0.6);// assumed
B= (2*A-g^2);// assumed... |
18c39da30c761489ce608416b9d5ceb38c4998f5 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/shanwavf.sci | a597214836bb00f0fb16899dc7e94089765d4cf2 | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,244 | sci | shanwavf.sci | function [psi,x]=shanwavf(lb,ub,n,fb,fc)
// Complex Shannon Wavelet
// Calling Sequence
// [psi,x]=shanwavf(lb,ub,n,fb,fc)
// Parameters
// lb: Real or complex valued vector or matrix
// ub: Real or complex valued vector or matrix
// n: Real valued integer strictly positive
// fb: Real or complex valued vector or matr... |
c7f82694d6880e0bbb4486c1db1ddfaaab3dec9b | 776c9715b4adba254a4ce6ad7391bae87e8086a2 | /techserv/hsop1.tst | 973c8834faa3d21533316b7ac118ef292ac0c504 | [] | no_license | TYMCOM-X/169279.tape | b0cf2f2cc6a400acb6b0ca2f44ef17f0a4854666 | a80150749ad1dc588b6768dfd53c1a21cfc7d783 | refs/heads/master | 2023-03-23T08:41:21.289217 | 2021-03-19T11:26:42 | 2021-03-19T11:26:42 | 345,965,036 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,575 | tst | hsop1.tst |
:************************************************************
: Patchname: HSOP1.TST Product version: SDLC 2.04
: AUthor : James Wang
: Date: Nov 9, 1989
: Task:
: Customer is VA. The files are VA3000.D04
: The first two stations of line 0 were not active.
: B... |
1f73b70267572e09235b7be5849d13d0336a4a2c | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /QC Multi Champ Midair And Combo Practice.sce | fc6ffad6c49893bf34fb9f84efea703b9531cafd | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 453,429 | sce | QC Multi Champ Midair And Combo Practice.sce | Name=QC Multi Champ Midair And Combo Practice
PlayerCharacters=Quaker
BotCharacters=Anarki QC.bot;Clutch QC.bot;Doom QC.bot;Nyx QC.bot;Tank QC Fast Strafes.bot;Tank QC Long Strafes.bot;Tiny QC Fast Strafes.bot;Tiny QC Long Strafes.bot
IsChallenge=true
Timelimit=100.0
PlayerProfile=Quaker
AddedBots=Anarki QC.bot;Clutch ... |
40eafe86c0105a624836bb9450d7dd94711fa25f | 449d555969bfd7befe906877abab098c6e63a0e8 | /53/CH7/EX7.2/example_2.sce | 00e2ce9c01bcc59af9dda1e20bf2408df96952a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 225 | sce | example_2.sce |
printf("A=1+(R1/R2)\n");
A=10;
//out put voltage of an op-amp owing to voltage offset effects Vout
printf("Vout=-A*Vos");
Vos=5;//in mV
Vout=-A*Vos;
printf("\nRESULTS:\n");
printf("Output offset voltage is Vout=%d mV",Vout); |
8b7160913338ac7a014615c4196ed3988e7c8d07 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH13/EX13.11/ex13_11.sce | 6fee81bec6ea4c32d4c69df75f77851dc9402eca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 240 | sce | ex13_11.sce | clc;
v=12; //potential diff. in volt
i=20; //current in Ampere
t=3600; //time in sec
p=v*i; //power in Watt using p=v*i
w=p*t; //calculating work in Joule using w=p*t
disp(w,"Work done in Joule = "); //displaying result |
2a20c9fbf8b43ee15810ddc94e93f53a1ed83a66 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3637/CH4/EX4.3/Ex4_3.sce | 7616dc469fe3e080c87bb94c7eea3d492e414a83 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sce | Ex4_3.sce | //problem 3 pagenumber 4.38
//given
n=4;format(6);
z=['0111','1111'];
vref=5;//volt
//determine v0
r=vref/(2^n-1);
i=1;
while i<3
v0=r*base2dec(z(i),2);
disp('Output voltage '+string(z(i))+' = '+string(v0)+' volt');
i=i+1;
end
|
b869472fd134304a0e323350098b4b4242bfd1e6 | 594cb2143db2483dc9a060b26f3ccbd77cdff0d9 | /ass4-LEV.sce | b7139dda3f7fc276d412c78ca994b7a1f55dfa0f | [] | no_license | Srija-1955/scilab-assignment | 7c6761eb238359810e87656fcbfbdaf5871b028e | ad979aa462fc5bac54f26d4f8bbba6cbfcff9086 | refs/heads/master | 2020-12-31T09:47:41.409220 | 2020-04-04T11:47:30 | 2020-04-04T11:47:30 | 238,985,033 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 480 | sce | ass4-LEV.sce |
//Q3.largest eigen vector
A=input('enter the matrix A:')
disp(A,'the given matrix is')
u0=[1 1 1]'
disp(u0,'the initial vector is')
v=A*u0
a=max(u0)
disp(a,'first approximation to eigen value is')
while abs(max(v)-a)>0.002
disp(v,"current eigen vector is")
a=max(v)
disp(a,"current eigen value i... |
ece2d908600c2f91a620c78fb682949ec6225089 | 891e9f4e3fce67f553f07f24cef2e802423770b9 | /fminimax/fminimaxDemo/fminimaxCheckdims.dem.sce | 750199ea6c60e489dcbda25e80af522db3e0cc70 | [] | no_license | animeshbaranawal/FOSSEE | ae6b6c1a39803ad0fb26780b7f960a62431c71d2 | 75b1b18dcfd935f7ebbe89b44573c8076dae4267 | refs/heads/master | 2022-06-24T14:20:49.508846 | 2022-05-30T17:13:09 | 2022-05-30T17:13:09 | 50,281,099 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 486 | sce | fminimaxCheckdims.dem.sce | mode(1)
//
// Demo of fminimaxCheckdims.sci
//
// The function takes a 2 x 3 matrix of doubles.
function y = myfunction ( x )
fminimaxCheckdims ( "myfunction" , x , "x" , 1 , [2 3] )
y = x
endfunction
// Calling sequences which work
y = myfunction ( ones(2,3) )
y = myfunction ( zeros(2,3) )
// Calling sequences which ... |
9cffd90a3b4e40fd78d15ebea145fe6bd2bbc67b | d56141249002a5da7c4a2641dbdfc609809046a8 | /Abinit/ab_DOS_plot.sce | 4d958ba35b9f53068b70477d048121dae4ccf28b | [] | no_license | kcbhamu/DFTutilities | 14a77226c1229ec61563cc08316d6c32814ddb57 | d6c859407a6b13c8bc5340c08db7a0125d6ed4e6 | refs/heads/master | 2021-06-24T15:23:58.675113 | 2017-08-23T20:56:44 | 2017-08-23T20:56:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 807 | sce | ab_DOS_plot.sce | // This code plots the dos calculated by abinit
clear; clc; xdel(winsid()); exec(PiLib);
// Parameters =========================================
work_dir=[]
E_bound=[-20,+20]
// Main ===============================================
work_dir=PIL_dir_path(work_dir);
flist=dir(work_dir);
grep(flist(2),'_DOS')
fid=mopen(wor... |
5dc53886a0f09db30599a6f21680398d61e7f44c | 45c1200ec894e793587fc6d8f30253e69ecec19a | /neiro/laba2/bin/Debug/data.tst | fe9306f8b55262400535eb259eb85b6095587e14 | [] | no_license | dShadowHS/dShadow | 46c0df8f6715948d2b952de001f1f8748861eb1d | 0b4c4674d137160d09e5bb9092ff0d2253818dd0 | refs/heads/master | 2021-01-11T23:11:28.661559 | 2017-01-10T17:12:41 | 2017-01-10T17:12:41 | 78,555,391 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 304 | tst | data.tst | 250,19;91,67;143,611;62,898;173,263;150,68;53,99;32,922;72,181;150,966;0
247,884;90,424;142,925;68,008;173,891;150,735;52,612;33,568;74,232;153,438;0
190,222;38,532;141,828;76,579;54,05;137,584;25,034;247,481;37,872;18,681;1
191,508;30,369;139,355;85,718;57,963;137,355;25,842;240,011;30,604;24,47;1
|
7073f00870a66c574a012a0f72f043db55783309 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3835/CH2/EX2.5/Ex2_5.sce | e43b72bca6c90796cd5dfa09c8d050aaa6a7cd7e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 386 | sce | Ex2_5.sce | clear
//
//case a
//v0/vs=r2/(r1+r2)=0.4r2=0.6r1
r1=10
r2=(0.6*r1)/(0.4)
printf("\n r2= %0.1f ohm",r2)
//case b
//when r2 is parallel to r3
r3=200000
req=(r2*r3)/(r2+r3)
printf("\n req= %0.1f ohm",req)
//v0/vs=0.5825
change=(0.6-0.5825)/(0.6)
printf("\n change")
r3=20000
req=(r2*r3)/(r3+r2)
printf("\n req= %0.1f ohm... |
e14e11a5e1396bb34fccfec2d95f039905d0e8f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /34/CH12/EX12.11/Ch12Exa11.sci | 2fb3dc2ecff26ec20bfb8ae9d5ec93d1099404a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 480 | sci | Ch12Exa11.sci |
m1= 14.00307; //u
m2= 4.00260; //u
m3= 1.00783; //u
m4= 16.99913; //u
k= m1+m2-m3-m4; // difference in total mass of reactants and products, u
Q= k*931.5; //energy exchanged, MeV
KEcm= -Q; //minimum KE needed in centre of mass system, MeV
KElab= KEcm*(m2+m1)/m1; //minimum KE in laboratory system
disp(KElab,"... |
2a7b2ed1b18ff6d370a6d202a1677d7b9d284bc4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/CH6/EX6.4.a/6_4a.sce | 9830fdde0bd2836e88701e0c991836cf9519ef17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 615 | sce | 6_4a.sce | pathname=get_absolute_file_path('6_4a.sce')
filename=pathname+filesep()+'6_4a_data.sci'
exec(filename)
clf();
V=linspace(20,300,500);
i = 1;
Cl = 0;Cd = 0;Cl_Cd =0;Thrust = 0;
while(i<=length(V))
Cl(i) = 2*W/(D*S*V(i)^2);
Cd(i) = Cdo + Cl(i)^2/(%pi*e*AR);
Cl_Cd(i) = Cl(i)/Cd(i);
Thrust(i) = ... |
d2e96450ad17660f67cce19226e570acb04a386e | 449d555969bfd7befe906877abab098c6e63a0e8 | /293/CH9/EX9.2/eg9_2.sce | 8a35341510cf201b7695a5880944c7b1bf8c7565 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 311 | sce | eg9_2.sce | // Quiescent point
Idq = 0.0034; // drain current
Vdq = 15; // drain voltage
Vgq = 1; // gate voltage
Vdd = 24; //drain supply voltage
Rs = Vgq/Idq;
disp(Rs,"The value of self bais source resistance is(in ohm): ")
Rd = (Vdd - Vdq)/Idq ;
disp(Rd,"The value of drain load resistance is(in ohm): ") |
890816965d35fdd51539cf9fc9528ec4b02177e1 | 562ffd734f982e215eec27e4f2e66e0c6cab6a23 | /HDD/DAAD/TEMPLOS1/T1.SCE | 68d3578ad9ea9474d236cf9defeca690d14d42c1 | [] | no_license | ricpelo/daad_trabajo | f2850a9c0e37a7f439748f4bc682496aa82deef5 | 857f2c3cee4afc7be3f0b9e0f9f6aa42f551ba7a | refs/heads/master | 2021-01-20T03:00:34.273149 | 2017-04-26T21:03:43 | 2017-04-26T21:03:43 | 89,479,218 | 0 | 0 | null | null | null | null | WINDOWS-1252 | Scilab | false | false | 155,346 | sce | T1.SCE | ;
;
;******************************************************************************
; * # # # # #
; 11-10-90 Comenzado * # # # #
; -------- * # # # #
; 31-1-90 Fecha ... |
e375d70700a9c8cede40f7ba58a3df1d591beb09 | 8b2aa0460ec6250a29ed3fb32790e0211478b29a | /data/estabilizando.sce | c5f97cef3a495ad0545182bbe31c3a0687dccb68 | [] | no_license | samverneck/RealTimeMonitor | 41f37735570aa91cab7765f0800547987f0eb72c | f2ea3d70df9fbeed651b0f0b367b09b9fa84b6fa | refs/heads/master | 2020-12-02T18:09:27.752225 | 2017-06-21T19:52:00 | 2017-06-21T19:52:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 714 | sce | estabilizando.sce | close
clear
clearglobal
clc
M = csvRead("tempData_Geladeira_Estabilizando.csv", ";");
tempo = M(:,1)
T_freezer = M(:,2)
T_geladeira = M(:,3)
// --||-- PLOT --||--
//subplot(2,1,1)
plot (tempo, T_freezer,'-b' )
//plot (20*ones(1,2), [-20,35],'-k' )
xlabel("tempo (s)")
ylabel("temperatura (ºC)")
xtitle("Estabilizaçã... |
9ff0f7afcab684700f45eafdd3c533d247381504 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2223/CH7/EX7.4/Ex7_4.sce | e654fb6021cd024e1567ff98ef1f774d9c5d3cd4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,298 | sce | Ex7_4.sce | // scilab Code Exa 7.4 Calculation on a single stage gas turbine
gamma_g=1.33;
gamma=1.4
R_g=284.1;
R=287;
P=1e3; // Power Output in kW
N1=3e3; // Speed in RPM
n_t=0.87; // efficiency
cp_g=1.145; // Specific Heat of gas at Constant Pressure in kJ/(kgK)
cp_a=1.0045; // Specific Heat of air at Constant Pressur... |
cb019bd86d90bfb62f616002a7fdedbe7a68b1f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH11/EX11.9/EX11_9.sce | a7f6061e96682f31dd1d94f8ad6939fd6dfc07cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,138 | sce | EX11_9.sce | clc;funcprot(0);//EXAMPLE 11.9
// Initialisation of Variables
da=0.018;..........................//Throat Diameter in m
df=0.0012;......................//Diameter of fuel orifice in m
Cda=0.82;.................//Coefficient of air flow
Cdf=0.65;......................//Coefficient of fuel flow
z=0.006;............... |
0841040ce029be58c47b7b2369645328efc9e02a | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/percent/%s_l_r.sci | 120cbd9e91c9c832e631bca8b3550aed825b94b7 | [
"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 | 524 | sci | %s_l_r.sci | function b=%s_l_r(a,b)
// a\b a scalar matrix, b rational matrix
//!
// Copyright INRIA
if size(a,'*')==0 then b=[],return,end
if size(a,1)==-1 then a=a+0,end
[ma,na]=size(a);
if ma==1&na==1 then
b('num')=a\b('num'),
elseif size(b('num'),1)==1 then
b=rlist(a\b('num'),ones(na,ma)*b('den'),b('dt'))
else
[num,de... |
b6317b49b2b31fbb0265a00cc645015a156f025e | abd7728083df51a785c94e61999237380b32c4f8 | /examples/Presentation Packs/ERP CORE (Version 0.9)/Flankers ERN-LRP/Scenarios/Flankers ERN-LRP.sce | 65764f4fe406686bc97257debb78b23bbecc47a4 | [] | 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,130 | sce | Flankers ERN-LRP.sce | # -------------------------- Header Parameters --------------------------
scenario = "Flankers ERN-LRP";
write_codes = EXPARAM( "Send Port Codes" );
screen_width_distance = EXPARAM( "Display Width" );
screen_height_distance = EXPARAM( "Display Height" );
screen_distance = EXPARAM( "Viewing Distance" );
default_back... |
5913bdc7323f3536ec7a3423392a69039f443a3d | 449d555969bfd7befe906877abab098c6e63a0e8 | /593/CH14/EX14.7/ex14_7.sce | fc3ad386a6ea0790d2efd55c218572e3c45968ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,991 | sce | ex14_7.sce | clear;
//clc();
// Example 14.7
// Page: 387
printf("Example-14.7 Page no.-387\n\n");
//***Data***//
P_NBP = 1;//[atm]
Temp =273.15+100;//[C] Temperature
D = 0.01*10^(-6);//[m] Diameter of the condensation nuclei( due to impurity )
T = 0.05892;//[N/m] Surface tension between water drops and gas
R = 8.314... |
5cd023634e0e5305ab15c0106ff2b4442942d542 | 449d555969bfd7befe906877abab098c6e63a0e8 | /431/CH4/EX2.22/EX2_22.sce | ee72d9450977f82fc710ed8431d6c3f862ac1134 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 743 | sce | EX2_22.sce | //Calculate the value of resistance
//Chapter 2
//Example 2.22
//page 126
clear;
clc;
disp("Example 2.22")
V=440; //primary voltage in volts
Ia=50; //armature current in amperes
Ra=0.2; //armature resistance in ohms
N=600; //speed in rpm
E=V-(Ia*R... |
06cbb47cc62483794a2171aab3bbe652d0de5f14 | e2ae697563b1b764d79ea1933b555ab0d5e3849c | /macros/rlt.sci | 63c5849de7dc4701fe6ad1a209494e1cea211934 | [] | no_license | gq-liu/IPDesignLab | c49b760740f47ec636232a6947aecb3c0626518a | b2f9a9eecad6616c99a2ec20fcceb14fb3ed0c3f | refs/heads/master | 2022-01-18T13:30:55.972779 | 2019-05-06T17:23:12 | 2019-05-06T17:23:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,799 | sci | rlt.sci | function rlt()
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope th... |
7b9ada5837ddd0b06770ea30c5534a75a3d31146 | 7edeaa4920427595d3601e218f8de85be39cf22d | /TP/tp3/resolchol.sci | 53842ddcb3bd41c60df41a6324c06bd979290a66 | [] | no_license | BiteKirby3/Math-is-so-fun | 96fb19815c7ab46d1a8e81771e0e70170ee503ab | 20db5e67e73a5ccfd1599cf56718c9d6f0adaa0c | refs/heads/main | 2023-08-27T23:18:38.117913 | 2021-10-11T22:59:20 | 2021-10-11T22:59:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 127 | sci | resolchol.sci | function [x] = resolchol(A,b)
C = cholesky(A) //A=C*C' => C*C'*x=b
y = solinf(C, b)
x = solsup(C', y)
endfunction
|
4e9413f15fdf7fa101d5b11811d022d1b0629db5 | 352a2b6c7e8e0fbc76f9dacb222075df0cc1bbc6 | /TP2/traceCauchy.sci | 239d36d6577716cb7f52e410ee96ef7f607650a9 | [] | no_license | BenFradet/RO05 | 443dd2807b521eefdd65ff901d25b46bce8a0838 | 0aa5855de282bfccacae999536f1424a303ca72e | refs/heads/master | 2020-06-06T17:45:47.138916 | 2014-12-18T15:32:12 | 2014-12-18T15:32:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 584 | sci | traceCauchy.sci | function[] = traceCauchy()
exec('generateCauchy.sci', -1);
n = 1000;
a = 1;
x0 = 0;
cauchy = generateCauchy(x0, a, n);
k = [1:n];
means = cumsum(cauchy') ./ k;
x = linspace(-10, 10, n);
f1Cauchy = zeros(1:n);
for i = 1:n
f1Cauchy(i) = size(find(cauchy <= x(i)), 2) / n... |
d2f4c5d83ac59973e5a2c3bcc0acf407adf90f9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH12/EX12.3/ex_3.sce | 8f837f676b8f0b6aa5e2f4115dbdebfa3274be92 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 293 | sce | ex_3.sce | //Example 3// frequency
clc;
clear;
close;
//given data :
N=400;//hZ
V=340;//M/S
VS=60;//M/S
N2=((V/(V-VS))*N);//Hz
disp(round(N2),"frequency when engine is approaching to the listner is,(Hz)=")
N3=((V/(V+VS))*N);//Hz
disp(N3,"frequency when engine is moving away from the listner is,(Hz)=")
|
0b21e0b5e27c4465335fad074260d3d52c14c404 | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH19/EX19.09/19_09.sce | 3f10fe9002c8a8605af24b67a7e571cd401de142 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 664 | sce | 19_09.sce | //pathname=get_absolute_file_path('19.09.sce')
//filename=pathname+filesep()+'19.09-data.sci'
//exec(filename)
//Gas constant(in kJ/kg.K):
R=0.287
//Density ratio:
r1=0.4
//Specific heat(in kJ/kg.K):
Cp=1.005
//Drag coefficient:
d=0.018
//Jet velocity(in m/s):
Ce=550
//Wing area(in m^2):
A=20
//Speed of ... |
9a1a3d296cd48d8dd37a8e1d441840dbbbffdd2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH26/EX26.2/example26_2.sce | 1f424ecf289a50156b5d3e14a17d88c72652dd2f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 431 | sce | example26_2.sce | //Chapter 26
//Example 26_2
//Page 599
clear;clc;
v=230*1e3;
lt=200;
c=0.02*1e-6;
f=50;
cle=c*lt;
l=1/(3*(2*%pi*f)^2*cle);
xl=2*%pi*f*l;
vph=v/sqrt(3);
fi=vph/xl;
rating=vph*fi;
printf("Capacitance of line to earth = %.6f F \n\n", cle);
printf("Required inductance of Peterson coil = %.2f F \n\n", l);
printf("Curren... |
e870a5ec17be8ec9d0f45328992fef27488408b6 | f8bb2d5287f73944d0ae4a8ddb85a18b420ce288 | /Scilab/example/オブザーバに基づく推定状態フィードバック.sce | 30a3db1834bac8115c78f0bac5d5b3f0579dd679 | [] | no_license | nishizumi-lab/sample | 1a2eb3baf0139e9db99b0c515ac618eb2ed65ad2 | fcdf07eb6d5c9ad9c6f5ea539046c334afffe8d2 | refs/heads/master | 2023-08-22T15:52:04.998574 | 2023-08-20T04:09:08 | 2023-08-20T04:09:08 | 248,222,555 | 8 | 20 | null | 2023-02-02T09:03:50 | 2020-03-18T12:14:34 | C | SHIFT_JIS | Scilab | false | false | 554 | sce | オブザーバに基づく推定状態フィードバック.sce | //オブザーバに基づく推定状態フィードバック
A=[1 0;0 2]; b=[1;1]; c=[1 1];
k=[12 -20]; g=[-30;42];
Plant=syslin('c',A,b,c);
Cnt=obscont(Plant,k,-g);
ExClosed = Plant/.(-Cnt);
spec(ExClosed('A'))
t=0:0.01:10; v=0*t; x0=[1;0;0;1]
[y,x]=csim(v,t,ExClosed,x0);
xset("window",0); clf();
plot2d(t',[x(1,:)',x(3,:)'])
xtitle("Extended closed loop... |
89e7bc60d1b4eb80b633f426f298dc5cb764ed95 | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/Scripts/_Movie/scene_foucault.SCI | 06d8326cc791163cca99c03a69555fecabc29cee | [
"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 | 5,118 | sci | scene_foucault.SCI |
codeblock readtextfile(ScriptDir+"\_TOOLS.sci");
codeblock readtextfile(ScriptDir+"\_SSYS.sci");
codeblock readtextfile(ScriptFilePath+"\_FoucaultTools.sci");
codeblock readtextfile(ScriptFilePath+"\_Colors.sci");
codeblock readtextfile(ScriptFilePath+"\_AnimateTools.sci");
codeblock readtextfile(ScriptFilePath+"\... |
7a344504d8180c77a7d294e993b3be6a9ad8f5fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH16/EX16.15/16_15.sce | 4db2b90dc800d6697616bf3af9db8effe2981552 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 530 | sce | 16_15.sce | //pathname=get_absolute_file_path('16.15.sce')
//filename=pathname+filesep()+'16.15-data.sci'
//exec(filename)
//Pressures(in bar):
p2=2
p1=1
//Volume(in m^3):
V1=0.5
//Adiabatic index of compression:
r=1.4
//IP required(in kW):
Wr=(p2-p1)*10^2*V1
//IP when isentropic compression occurs(in kW):
Wi=r/(r-1)*... |
eeb8dc7d1b08b0c0f8134772c578d6654bbf0e22 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH5/EX5.13/5_13.sce | c6cee399f8bdcb0c0c365ea394928c2cfbf146df | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 462 | sce | 5_13.sce | //Problem 5.13: For the arrangement shown in Figure 5.22, find the current Ix
//initializing the variables:
R1 = 8; // in ohms
R2 = 2; // in ohms
R3 = 1.4; // in ohms
R4 = 9; // in ohms
R5 = 2; // in ohms
Vt = 17; // in volts
//calculation:
R01 = R1*R2/(R1 + R2)
R02 = R01 + R3
R03 = R4*R02/(R4 +R02)
Rt ... |
944a35557f23d3fa2ff7b912ff57bad208b93275 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1016/CH14/EX14.1/ex14_1.sce | 1ca487497520bb20b61f403f589c67992a96d836 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | sce | ex14_1.sce | clc;clear;
//Example 14.1
//given data
E1=7.8;//avg. B.E per nucleon in MeV
E2=8.6;//for fissin fragments in MeV
//calculations
FER=(234*E2)-(236*E1);
disp(FER,'Fission energy released in MeV') |
2aac00dd8dc4ac025e37c7f6b2981fb3144f9c11 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1418/CH26/EX26.34/EX26_34.sce | 61090457db5b59377a26728dba785e1b2683d934 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 402 | sce | EX26_34.sce | //EXAMPLE 26.34
//4-POLE LAP WOUND DC MACHINE
clc;
funcprot(0);
//Variable Initialisation
Ra=0.15;...........//Armature resistance in Ohms
P=4;..............//Number of poles
Al=P;...............//Number of parallel paths if generator is lap wound
Ral=Al*Ra;............//Armature resistance if generator is ... |
d0a62732f267f8c43d7c8a063e509617011c2ff6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1682/CH9/EX9.8/Exa9_8.sce | b6ab19f9ac1abb7110e69b035d1718c7e1f92a83 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 478 | sce | Exa9_8.sce | //Exa 9.8
clc;
clear;
close;
//Given data :
P=100000;//in Rs
F=20000;//in Rs
n=8;//in years
i=12;//in % per annum
//Formula : (A/F,i,n) : (i/100)/(((1+i/100)^n)-1)
//Formula : (F/P,i,n) : (1+i/100)^n
//Formula : (F/A,i,n) : (((1+i/100)^n)-1)/(i/100)
t=5;//in Years
Dt=(P-F)*(i/100)/(((1+i/100)^n)-1)*(1+i/1... |
692faf689fa630190e068b70e893824b8c82b0f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH5/EX5.2/Ex5_2.sce | b35e79699331cb817650c987ead26bf35e7bf170 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex5_2.sce | clc;
clear;
lambda=5*10^-5 //wavelength in cm
e=1/6000 //No. of lines per centimeter on the grating surface
//calculation
//1st order
theta_1= asind(lambda/e) //angle in degree
//3rd order
theta_3= asind((3*lambda)/e) //angle in degree
angle_of_deviation = theta_3 - theta_1
printf("Difference in the ... |
1f0a4a5f068f38c9eec1cce2182f08dc171dd012 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH3/EX3.1/example3_1.sce | 3d0e83a5bea24c52c0bf58d7333846856270d66e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,104 | sce | example3_1.sce | // Find current if diode is forwar-biased
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 3-1 in page 143
clear; clc; close;
// Given data
I=29.8*10^-3; // Current in mA
V=0.208; // Voltage in V
// Calculation
I=(45-V)/(1.5*10^3);
printf("... |
cbb299cb49b59ed2e66f068a63b860670e61aa93 | 92d437f771b932e7830c448f910250b9747096ec | /SAE/MIMO/seguimento.sce | 819256e519a739888889941c006261b3bb77ffb7 | [] | no_license | pcaires/Proj_cvoo | c98ca370f5b740ab57ace1d518760100b50a3819 | 59a2a9573d6e9657b6beb89f7a0b637fa4d1e2a7 | refs/heads/master | 2023-05-14T02:30:06.579732 | 2021-06-06T22:48:49 | 2021-06-06T22:48:49 | 367,080,028 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 752 | sce | seguimento.sce | exec('SAE/SISO/SISO.sce',-1)
A1 = A-B*K_SISO
L = diag([-1/1.5 -1/1.5])
C1 = [1 0 0 0;
0 0 0 1]
C_ = C1*A1 - L*C1
D_ = C1*B
x(1) = 0.05*(15*deg) //bb max
x(2) = 5*deg //p max
x(3) = 5*deg //r max
x(4) = 0.5*(30*deg) //phi max
u(1) = 0.001*18*deg //da max
u(2) = 0.01*23... |
1be0b783419e30608595635373eafd48e099babb | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set13/s_Introduction_To_Mechanical_Engineering_S._Chandra_And_O._Singh__2267.zip/Introduction_To_Mechanical_Engineering_S._Chandra_And_O._Singh__2267/CH4/EX4.4/ex4_4.sce | 09edc7d5ff3ca76610c4dadef7bfc0c482534240 | [] | 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 | 193 | sce | ex4_4.sce | errcatch(-1,"stop");mode(2);//Part A Chapter 4 Example 4
;
;
V=0.78;//m^3
Patm=101.325;//kPa
//W=work done by Patm
W=Patm*V;//kJ
disp("Work done by air = "+string(W)+" kJ");
exit();
|
9d6aaad4fb83663d40533e88e0a12cd0807d26eb | 7fa099e9d565bee9cdd572755843852769c99498 | /tests/mvcos-001.tst | 5ad699dba17564ae09a608df37b921a5322b4d3b | [
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-other-permissive",
"BSD-2-Clause"
] | permissive | Peter-J-Jansen/SDL-hyperion | 0d2a16f1d837fa27b8f0aaa927dc84a8ebdb44f6 | 58578601d7a34fc11f050b0ac4fd425a4c0422eb | refs/heads/master | 2023-04-27T03:42:18.421272 | 2022-11-27T00:16:06 | 2022-11-27T00:16:06 | 238,422,138 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,502 | tst | mvcos-001.tst | *Testcase mvcos-001.tst:
# Created and placed into the public domain 27 JAN 2021 by Bob Polmanter.
################################################################################
#
# Execute the MVCOS instruction iteratively, each time trying a
# different combination of machine state, address space control
... |
035e4d31ab10e854cec67d13432b03f1903614dc | f23cac45e0a1e3e9444fd3bb8e11d56a5be97cf8 | /mix.sci | 4fc6999e674303ca7f33bbcbef00c534411561df | [] | no_license | paulaperdigaoram/YOGURT | 4cd805bfb9a06630fba0d990ad7edbbf3786903b | fc95ba5408e085c91bca2a04084fc36b2ea39f95 | refs/heads/master | 2020-03-22T07:56:53.718648 | 2018-08-23T17:31:35 | 2018-08-23T17:31:35 | 139,734,779 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,526 | sci | mix.sci | function o = mix(i)
//Datos de entrada
ProtIn = i(1)
GrasaIn = i(2)
LactosaIn = i(3)
//Parámetros
p = 0.01 // kg leche en polvo / kg leche
ProtLP = 0.384 // kg/kg leche en polvo
GrasaLP = 0.0113 // kg/kg leche en polvo
LactosaLP = 0.5647 // kg/kg leche en... |
9bfc83ac23ebebe00f2a35bf984647cf49735c35 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3446/CH4/EX4.3/Ex4_3.sce | b8c7d709fc177e6409172e9ed8e7f4776486cbc1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 678 | sce | Ex4_3.sce | // Exa 4.3
// To calculate the spacing between successive pulses of the multiplexed signal.
clc;
clear all;
Fs=8*10^3; //in Hz
Fm=3.4*10^3; // in Hz
VCH=24; //voice channels
SCH=1; //sunchronization channel
PDur=1; //extra pulse duration in microsec
//solution
Ts=1/(Fs);
TimeCH=Ts/(VCH+SCH)*10^6; /... |
af53498c0556d0bb66bcef6075d96784310dc021 | 43ee35e120afa343a967b8a7034a973f0a481a4d | /60002190045_SS_EXP_2_CORRELATION.sce | 949633d2c8f1fa17e04f0e71a9a9ff67eff6f644 | [] | no_license | hrushilp/60002190045_SSPRACS | 8c43d955139c09e5e3d0a3d0d041fb053c94cb88 | 07887fd3a92d3d599b993fb5585b63d569836d67 | refs/heads/main | 2023-01-20T06:23:31.575304 | 2020-11-25T18:52:42 | 2020-11-25T18:52:42 | 316,027,450 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 771 | sce | 60002190045_SS_EXP_2_CORRELATION.sce | //PRACTICAL-2_Q2
clc;
clear all;
close;
x1=[1,3,7,-2,5];
h=[2,-1,0,3];
y=xcorr(x1,h);
disp(y,"IS THE REQUIRED CORRELATION!");
l=length(y);
t=0:l-1;
plot2d3(t,y);
xlabel("n");
ylabel("AMPLITUDE");
title("CORRELATION-1");
x1=[1,3,7,-2,5];
h1=[3,0,-1,2];
y=xcorr(x1,h1);
disp(y,"IS THE REQUIRED CORRELATION... |
978c7fa4dce897cd8459e268b395257fc3cd13e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH5/EX5.10/Ex5_10.sce | e8ee25f32b856af772b3050ce5c5ebd30430f9e0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,113 | sce | Ex5_10.sce | //===========================================================================
//chapter 5 example 10
clc;clear all;
//variable declaration
R = 400; //resistance in Ω
V = 150; //voltmeter reading in V
I = 0.05; //current in A
alphac = 0.004; //temperature coefficient of copper
alphas = ... |
25a4e65820c3b60d0cad50e3ca77789765710939 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3513/CH9/EX9.3/Ex9_3.sce | 91f8cb1509eb10065503079f5741f96056e53aa9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 448 | sce | Ex9_3.sce | //Calculate the reliability of the configuration
//page no 219
clear
clc;
RA = 0.8;
RB = 0.8;
RC = 0.8;
RD = 0.95;
RE = 0.85;
RABC = 1-((1-RA)*(1-RB)*(1-RC));
RABCDE1 = RABC*RD*RE;
mprintf("\RABC = %.4f \n",RABC);
mprintf("\RABCDE = %.4f \n",RABCDE1);
RABC=0.992;
RD=0.95;
RE = 1-((1-RE)*(1-RE));
RABCD... |
529af6afeb25fbc0f928b5028402f7aa83cc89b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH7/EX7.5/Ex7_5.sce | 8ac3f8a44d87ec8d27cb34955014ecb6c6a034e2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 438 | sce | Ex7_5.sce | //Ex_7_5
clc;
clear;
close;
format('v',6);
//given data :
IB=50;///micro A(Base Current)
IC=5;//mA(Collector Current)
IE=IC+IB/1000;//mA
Beta=IC*1000/IB;//unitless
alfa=IC/IE;//current gain
disp(IE,"Emitter Current(mA)");
disp(Beta,"Beta=");
disp(alfa,"alfa=");
disp("Verify that alfa=Beta/(Beta+1)");
di... |
d801dcd60e816d7e55f959f6b95a4891511eb7c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3683/CH15/EX15.6/Ex15_6.sce | 9932bd465e9348aea932dfd81b6ed720a6302dca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 529 | sce | Ex15_6.sce | b=200//width, in mm
d=300//effective depth, in mm
Mu=74//in kN-m
top_cover=30//in mm
fck=20//in MPa
fy=415//in MPa
Xc=0.479*d//in mm
Mulim=0.138*fck*b*d^2/10^6//in kN-m
Ast1=round(0.36*fck*b*Xc/0.87/fy)//in sq mm
M1=Mu-Mulim//in kN-m
fcc=0.446*fck//in MPa
//for d'/d=30/300=0.1 and Fe415 grade steel,
fsc=353... |
43ad24399fc42173d4525aabb19c5ab7ecf6c967 | b412360a5393e117e74453519c55968117ef7c7e | /REGRESSIONTESTS/series_capture.tst | 88f2aa8553d156a1a75437e92a70371128cd0208 | [] | no_license | thomas-maeder/popeye | 36be3f54f8a7eea15b52a30cf23e455ed6ff44f8 | 732b721df67295b2c6a1c2ca00e87979f39cc0c9 | refs/heads/develop | 2023-09-05T13:06:45.846081 | 2023-08-31T02:59:55 | 2023-08-31T02:59:55 | 38,768,803 | 38 | 23 | null | 2023-09-14T18:35:27 | 2015-07-08T17:21:43 | C | UTF-8 | Scilab | false | false | 25,164 | tst | series_capture.tst | basics
+---a---b---c---d---e---f---g---h---+
| |
8 . . . . . . . . 8
| |
7 . . . . . . . . 7
| |
6 . . . . . . . . 6
| |
5 . ... |
3e30de5166a6ec92fb721b408aa1eff741270ebe | 449d555969bfd7befe906877abab098c6e63a0e8 | /978/CH15/EX15.5/Example15_5.sce | cd7059c3ed6ce050d4ac2d90957918d66b92da33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 384 | sce | Example15_5.sce | //chapter-15,Example15_5,pg 513
//(delphi/delT)=(2pi/lam)(n*(delL/delT)+L*(deln/delT))=(deln/delT)
lam=635*10^-9//wavelength of light beam
delphi=139//phase angle
delL=0.49*10^-6//change in length
n=1.48//R.I of fibre
k=((lam*delphi)/(2*%pi))-(delL*n)//k=(deln/delT), rate of change of R.I w.r.t T
p... |
330db918ff4b786be54173857a68e250ab2c9bcc | 0896434fe17d3300e03ad0250029673ebf70bacc | /sheet_2/Scilab_programs/cascaded_system_error.sce | 5a7266b82473d8429467ad8fe598261e0d1957a0 | [] | no_license | TheShiningVampire/EE324_Controls_Lab | 8ff1720b852bf24dca3c172082f5f898f80f69f3 | 9aea73eed3f5a4ac6c19a799f8aebe09f4af0be8 | refs/heads/main | 2023-07-09T17:30:38.041544 | 2021-08-23T12:14:29 | 2021-08-23T12:14:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 659 | sce | cascaded_system_error.sce | clear
close
clc
s = poly(0,'s');
n1 = s+5;
d1 = (s+4);
d2 =(s+2);
G1 = syslin('c', n1/(d1*d2));
G2a = syslin('c', n1/(d1));
G2b = syslin('c', 1/(d2));
G3a = syslin('c', 1/(d2));
G3b = syslin('c', n1/d1);
t = 0:0.1:10;
gs1 = csim('step' , t , G1);
gs2a = csim('step' , t , G2a);
gs2 = csim(gs2a , t , G2b);
gs3a = c... |
6272a6305f45619b73e27178795ef09d3162f94d | 918e8207504f36c7eaf613b62c71e91ad3a33a8a | /2017/educrace_by_lulu/EducRace/DATA/Scenario/Carjump.sce | 06ee5f883ddff4c19cece341940f0c879c99bf2d | [] | no_license | lazarusccr/GraphicsContest | b1299eeb74449b8714f126deeb64dc02da285260 | 8dec398588970e958c7f08ab7be32af760acbbd6 | refs/heads/master | 2021-04-29T07:29:46.122593 | 2017-12-28T16:26:51 | 2017-12-28T16:26:51 | 77,950,829 | 4 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 415 | sce | Carjump.sce | Angle 0
ScaleChange 1.5 0.8 StartFastEndSlow
SendEvent 1 // jump started from road
Wait 0.15
SendEvent 2 // ascend half height: test collision with second floor tileengine
Wait 0.2
SendEvent 3 // car is in the air: no collision test
Wait 0.45
ScaleChange 1 0.6 StartSlowEndFast
Wait 0.45
SendEvent 4 // descend half ... |
1f0e03a77c98ecaf40fbdeadf829f2ac081b4704 | 8712e7b4614b1ab648f19bcce8ca17e378876546 | /Scilab Com Interface Grafica/Engine/A3_CHECKBOXES.sce | 8c3a4304211625d2c1f2a3cb14b872b0bc92a290 | [] | no_license | Diogo-Rossi/Mestrado-Diogo-Rossi | d0d476d878c729c44778ea8f364c50c5464fc751 | d544d3bce094931eb96a6031aaa1ae1a833d2b04 | refs/heads/master | 2022-08-26T22:28:04.339221 | 2022-07-11T00:25:21 | 2022-07-11T00:25:21 | 236,889,761 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 558 | sce | A3_CHECKBOXES.sce |
if checkBox(3).value then
checkBox(6).enable = "on"
else
checkBox(6).enable = "off"
end
Elemento = {GridEstrutura Restricoes Cargas LabelNohs LabelBars LabelLoad}
for i=1:6
if checkBox(i).value && checkBox(i).enable=="on" then
Elemento{i}.visible = "on"
else
Elemento{i}... |
e5bf2906d79591f2c648ff04729788b9ef28ecf4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /998/CH29/EX29.62/Ex62.sce | 6e6fb35e18e38b2e29414e8d80f5c552a9b98a95 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 354 | sce | Ex62.sce | //Ex:62
clc;
clear;
close;
G=6.67*10^(-11);//Gravitation const in N-m^2/kg^2
a_1=16000;//semi major axis for satellite-1
a_2=24000;//semi major axis for satellite-2
t1=10;//the orbital period of satellite-1 in hours
t2=t1*(a_2/a_1)^(3/2);//The ratio of orbital periods of given two satellite
printf("Orbital per... |
2dc6352c526a5225724f289cf443bab141d1adad | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH3/EX3.7/Ex3_7.sce | 3f5f867fec9139e0f7fcace31ac70d328f5b565b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 500 | sce | Ex3_7.sce | // Problem 3.7,Page no.57
clc;clear;
close;
//from F.B.D,we get
P_1=50 //KN
P_2=20 //KN
P_3=40 //KN
d=0.02 //mm //Diameter of steel bar
L_1=0.4 //mm
L_2=0.3 //mm
L_3=0.2 //mm
E=210*10**9 //N
//After simplifying Area,we get
A=%pi*10**-4 //m**2 //Area of cross section
//Calculations
sigma_AB=P_1*1000*A //N/m**2
si... |
a342b73d26e7253fa0d009c5fdcfb837be3a5b27 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH24/EX24.2/Ex24_2.sce | f0d9644cc463897ac11adfc2708e52c3041192a3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 641 | sce | Ex24_2.sce | //Example 24.2
c=3*10^8;//Speed of light (m/s)
f1=1530*10^3;//AM radio signal frequency (Hz)
lambda1=c/f1;//AM radio signal wavelength (m)
printf('AM radio signal wavelength = %0.1f m',lambda1)
f2=105.1*10^6;//FM radio signal frequency (Hz)
lambda2=c/f2;//FM radio signal wavelength (m)
printf('\nFM radio signal ... |
4ca24cb61ee452e5214a3192f92b4937522c99e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH3/EX3.12/Ex3_12.sce | 6d1d24660290142bf592e8584852a159919a2b3f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 393 | sce | Ex3_12.sce | clc
//to calculate difference in deviations
lambda=5*10^-5 //wavelength of light in cm
eplusd=1/6000 //where eplusd=e+d
theta1=asind(lambda/eplusd) //for first order spectrum
theta3=asind(3*lambda/eplusd) //for second order spectrum
difference=theta3-theta1
disp("difference in deviations in first ... |
0676e292cb5a390d8f4f7f3853e01234c0fc1ebe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1466/CH14/EX14.6/14_6.sce | 296662f5bea6409ede74ece9a79363959a50418f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 593 | sce | 14_6.sce | clc
//initialisation of variables
p1=60//lb/in^2
Hd2=12//C.H.U
Vs2=5//ft^3/lb
d=1/12
Hd=23.2//C.H.U
t3=-84//c
k=0.85
//CALCULATIONS
p2=0.528*p1
v2=300*sqrt(Hd2)
W=%pi*d*d*v2/(4*Vs2)
net=0.85*Hd
Vs3=8.7//ft^3/lb
v3=300*sqrt(k*Hd)
a3=W*Vs3/v3
d3=sqrt(a3*144*4/%pi)
//RESULTS
printf ('\n critical pressur... |
d320f648bbf19335aca507d28817f7bbcbb333ad | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/isallpass/isallpass4.sce | 14363e040ae32608dc7ab2b3d1c3aadc97009ad3 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | sce | isallpass4.sce | //i/p arg is sos
sos=[1 2 3 4 5 6;2 3 4 5 67 7];
flag = isallpass(sos);
disp(flag);
//output
//!--error 202
//max: Wrong type for argument #1: Real matrix expected.
//at line 130 of function isallpass called by :
//flag = isallpass(sos);
//matlab o/p
// 0
|
e9673b0716acd4c63540b900fac3d3a64293ffb1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH1/EX1.1/1.sce | f4b49adcafdabd5b4e05185243fc6aa38a6fb953 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | 1.sce | clc
//let the total mass of mud be 100lbm
m_total=100;//lbm
//70% by wt of mud is sand(SiO2)and remaining is water
m_sand=0.7*m_total;//lbm
m_water=0.3*m_total;//lbm
rho_sand=165;//lbm/ft^3
rho_water=62.5;//lbm/ft^3
//rho=mass/volume
rho_mud=m_total/((m_sand/rho_sand)+(m_water/rho_water));
disp("The density o... |
9bdd48fa39685b1bb48e5ed1fd65b4e8ee505675 | 2fb7bb1345bfec75ea523db5112549ba03fa03fb | /Sitar/GUITAR-Replayer-Plugin-SWT-Test/testcases/SWTMultiWindowDynamicApp/t_e2635454584_e2635454584.tst | 455533bb48e313fdb3408227e64b064e224a1633 | [] | no_license | mbigigns/SWTGuitar | 633cf01eb6f128c783180aa02763c6d48eb31fb3 | bc0392b3281dbeb75f40b74a30c3032dd64bf925 | refs/heads/master | 2020-04-06T03:44:30.421197 | 2012-05-09T16:45:35 | 2012-05-09T16:45:35 | 3,317,462 | 1 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 289 | tst | t_e2635454584_e2635454584.tst | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TestCase>
<Step>
<EventId>e2635454584</EventId>
<ReachingStep>false</ReachingStep>
</Step>
<Step>
<EventId>e2635454584</EventId>
<ReachingStep>false</ReachingStep>
</Step>
</TestCase>
|
afec12e6ccf5e7a514b48c918867dd608be645c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3802/CH12/EX12.6/Ex12_6.sce | 9a852cfddf5a92981943610421bdd91fd5ac911a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 679 | sce | Ex12_6.sce | //Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex12_6.sce
clc;
clear;
printf("\n (a)")
Pi=8; //power in kilowatt
pf=0.8;
Vl=440;
Qi=Pi*tand(acosd(pf));
P=complex(Pi,Qi);
P_mag=sqrt(real(P)^2+imag(P)^2);
P_... |
54362295807a2d93b21585e71c96c955650d4c0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1106/CH6/EX6.13/ex6_13.sce | 08daf31907012b35e6a2509c7537fe6a337e76f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 183 | sce | ex6_13.sce | // Example 6.13, Page No-289
clear
clc
fr=200
B=20
C=0.33*10^-6
Q=fr/B
R=0.1591/(B*C)
Rr=R/(2*Q*Q-1)
R=R/1000
printf('\nR= %.1f kohm', R)
printf('\nRr= %.1f ohm', Rr)
|
f7c0867d3043aad88837c19c1d249e8c40434a58 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/CS3D.prev.tst | 3db6342bbb5003c2146addc66cfe7e42d562e5df | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 20,822 | tst | CS3D.prev.tst | CandidateSelector expand width=4 base=4 exponent=3 left=4 right=0 fileName=test/CS3D.data.tmp
chain8 [[0,1,-2,-2],[2,2,1,0],[1,-1,3,2],[1,0,2,2]] det=2 [12,1,-9,-10] [39,17,-36,-26] [141,76,-138,-85] [522,296,-519,-305] [1944,1117,-1941,-1126] [7251,4181,-7248,-4190] [27057,15616,-27054,-15625] [100974,58292,-100971,-... |
1101a7ff0f42cc8223f03f2795b7a0dfad6b2981 | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH4/EX4.26/Chap4_Ex26.sce | 80ba859eadf0052e86e522020f5ea6c1cf8e6a09 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,102 | sce | Chap4_Ex26.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-4,Example 26,Page 135
//Title:Standard enthalpy change at 400K
//================================================================================================================
clear
clc
//INPUT
//The rea... |
4ab8587c4b87cb078be2276f85885be784d0a1cc | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1.1/macros/percent/%snl.sci | 88033213ebbbe2e28f23ce2076f9b1333f5f43bb | [
"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 | 128 | sci | %snl.sci | //[r]=%snl(l1,l2)
//correspond a l'operation logique l1==l2 avec l2 une liste
//et l1 une matrice de scalaires
//!
r=%t
//end
|
476ed3c1ad42393b9879e6838adb316d4b98ea6f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2168/CH15/EX15.3/Chapter15_example3.sce | e22c7a16b5cfc693c34c086882bfeec0aa70de5a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sce | Chapter15_example3.sce | clc
clear
//Input data
n=4//Number of cylinders
p=450//Brake Horse power in B.H.P
N=200//Speed in r.p.m
f=0.2//Fuel rate in kg per horse power hour
g=0.9//Specific gravity of fuel
//Output
Fc=(p*f)//Fuel consumption per hour in kg/hr
Fcy=(Fc/n)//Fuel consumption per cylinder in kg/hr
Fcyc=(Fcy/(60*(N/2)))/... |
94bf60058860902f303c91325a290b5d7b9fabbd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2132/CH3/EX3.6/Example3_6.sce | b44b12aaa43bcb5f1adafa29e156486f5b75094e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 907 | sce | Example3_6.sce | //Example 3.6
clc;
clear;
close;
format('v',7);
//Given data :
p_water=1000;//in kg/m^3
p_liquid=800;//in kg/m^3
g=9.81;//gravity constant
h1=1.5;//m
px1=p_liquid*g*h1/1000;//kN/m^2
disp(px1,"Pressure at a point 1.5 meter below free surface in kN/m^2 : ");
h2=2;//m
px2=p_liquid*g*h2/1000;//kN/m^2
disp(px2... |
dd0344a0b16553ce1631b28624d1ae98fd4f0b06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3813/CH4/EX4.19/Ex4_19.sce | 5de12a551d54b8cb37e8714d1b12d51cf0121515 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 999 | sce | Ex4_19.sce | //Electric Drives:concepts and applications by V.subrahmanyam
//Publisher:Tata McGraw-Hill
//Edition:Second
//Ex4_19
clc;
clear;
V=400;// voltage in V
R1=10;// Resistance in ohm
R2=5;// Resistance in ohm
X1=2.6*%i;//Reactance in ohm
X2=2.4*%i;//Reactance in ohm
Xm=36.4*%i;//Reactance in ohm
Z=0.06;//zigma... |
364413c534423dea506997b30137b56e2e633de8 | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/zpklp2lp/test_7.sce | 7db5166fba5f7ce52446e7eeb24174f244e46559 | [] | no_license | shreniknambiar/FOSSEE-DSP-Toolbox | 1f498499c1bb18b626b77ff037905e51eee9b601 | aec8e1cea8d49e75686743bb5b7d814d3ca38801 | refs/heads/master | 2020-12-10T03:28:37.484363 | 2017-06-27T17:47:15 | 2017-06-27T17:47:15 | 95,582,974 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 287 | sce | test_7.sce | // Test #7 : Length test for Input Argument #4 or Input Argument #5
exec('./zpklp2lp.sci',-1);
[z,p,k,n,d]=zpklp2lp(2,3,4,[0.4,7],0.9);
//!--error 10000
//Wo must be real ,numeric and scalar
//at line 43 of function zpklp2lp called by :
//[z,p,k,n,d]=zpklp2lp(2,3,4,[0.4,7],0.9);
|
609014c3c9652628ca1215b495eacb9ca26974cd | f7d0f456b8e29ce4f81d9cbe1ca2a57fede3bc5d | /solvers/cyclist/bench/entl/20.tst | 3c5aeb0f65f5a8f9194c24a86c5a97432ef74f47 | [] | no_license | mihasighi/smtcomp14-sl | 22467201b3f7e74e2001e259134c040d80afd6b6 | 8dd4ff648e16e31acd193f882082df349e211251 | refs/heads/master | 2021-06-06T17:01:18.752298 | 2018-06-28T10:04:32 | 2018-06-28T10:04:32 | 19,853,856 | 1 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 34 | tst | 20.tst | ls(x,y) * ls(y,nil) |- ls(x,nil)
|
3ca76619684a2df7f9ac008e90e0e97158e9ade5 | 35071fb08cee13f4a9e79c396f7c8c028f69db0e | /Tests/Syntaxe/OK/PRINT_OK.tst | 9f9a0f926a6ae4cfc86d443b854c7d33d04fc674 | [] | no_license | V1nc3ntL/Compilation | 2cd9d4fa728055cebd44659cba517e49298142bc | e2008449ddb509021f6ddcfd0a92226807bec9ab | refs/heads/master | 2023-06-01T09:42:01.069684 | 2021-06-02T19:15:13 | 2021-06-02T19:15:13 | 357,205,127 | 0 | 0 | null | 2021-05-31T12:13:32 | 2021-04-12T13:30:46 | C | UTF-8 | Scilab | false | false | 38 | tst | PRINT_OK.tst | void main()
{
print("Hello World");
} |
4e0415cf38ca45dbe4b127f4b5513517bee765e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH37/EX37.4/Example37_4.sce | 85daa3b73ff53c832b638c21771c67fdfb846cb7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 412 | sce | Example37_4.sce | //Given that
l = 405*10^-9 //in meter
d = 19.44*10^-6 //in meter
a = 4.050*10^-6 //in meter
//Sample Problem 37-4a
printf("**Sample Problem 37-4a**\n")
n = floor(d/a)
printf("The number of bright fringes are %d\n", 2*n+1)
//Sample Problem 37-4b
printf("\n**Sample Problem 37-4b**\n")
num = ceil(2*d/a)
... |
ffce7bce850fcb1c47473de6b3e184d3a54a8620 | 717ddeb7e700373742c617a95e25a2376565112c | /3460/CH1/EX1.3/Ex1_3.sce | 834ad5074c6b25b9e9b252d7e3242a9a06edf791 | [] | 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 | 220 | sce | Ex1_3.sce | //calculate receiver's noise figure
clc;
clear all;
SN_in=48; //input signal to noise ration given
SN_out=12; //output signal to noise ratio given
NF=10*log10(48/12);
disp(+'dB',NF,'receiver noise figure is : ')
|
06bcf707a8a91b428971bf9067130e8cff60848e | f04d3d47f893de08cd99a31b4870112915b80d5b | /Datasets/diabetes/data8.tst | 1d7861541d05ff9199c8a2cc8737295269c77168 | [] | no_license | MesumRaza/MyWorkInPython | f5364b8514943e44c7200123653da9f4551251b1 | bd8c9b3ca2fb02ae6d2b626054fa3cd32c28b330 | refs/heads/master | 2021-08-19T21:46:41.412995 | 2017-11-27T13:37:52 | 2017-11-27T13:37:52 | 111,728,604 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,472 | tst | data8.tst | 0 0.522613 0.52459 0.373737 0.0756501 0.500745 0.184458 0.0166667 class1
0 0.603015 0.606557 0.181818 0.0744681 0.454545 0.088386 0.0833333 class0
0.0588235 0.41206 0.52459 0.131313 0.112293 0.315946 0.143894 0.0333333 class0
0.117647 0.673367 0.57377 0 0 0.4307 0.198121 0.0333333 class1
0 0.457286 0.557377 0.323232 0.... |
51f8d63ab02b2411a8e805135ce470b372d91c5d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH7/EX7.2/ex7_2.sce | 5e7430c972e0ff8404d1df4fff05fb9862837a2f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 341 | sce | ex7_2.sce | // Exa 7.2
format('v',7);clc;clear;close;
// Given data
Trs = 17;//rise time in µs
Trs = Trs * 10^-6;// in s
Trd = 21;// in µs
Trd = Trd * 10^-6;// in s
// Trd = sqrt( (Trs^2) + (Tro^2) );
Tro = sqrt( (Trd^2)- (Trs^2) );// in sec
BW = 0.35/Tro;//band width in Hz
BW = BW * 10^-3;// in kHz
disp(BW,"The band w... |
d5480acdabbee45069abf5ea33e4fc7b6181e937 | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH7/EX7.17.5/exa7_17_5.sce | b1a506eada3017faba43b41f4c71764abd267fca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 353 | sce | exa7_17_5.sce | //caption:phase_margin
//example 7.17.5
//page 241
clf();
s=%s;
s1=-s;
disp("for K=3")
g=(2.5*3)/(s*(0.4*s+1)*(0.2*s+1));
g1=(2.5*3)/(s1*(0.4*s1+1)*(0.2*s1+1));
GH=syslin('c',g);
GH1=syslin('c',g1);
nyquist(GH);
nyquist(GH1);
mtlb_axis([-5 1 -500 500]);
xtitle('Nyquist plot of (2.5*3)/(s*(0.4*s+1)*(0.2*s+1))')
pm=p_ma... |
e6362c3985e8243326b904e8e1ada517b0d8d604 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH22/EX22.7/C22P7.sce | 76363502eb34ab116acce46ad69b84e677abf8b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 904 | sce | C22P7.sce | clear
clc
//to find most probable speed,average speed,root-mean square speed of oxygen
//Given:
//temperature
T = 300//in K
//molar gas constant
R = 8.31//in J/mol.K
//molar mass
M = 0.032//in Kg/mol
//Solution:
//applying formula for most probable speed
//most probable speed of oxygen
vp = sqrt((2*R*T... |
452671372aea026a738c4564a59efb18cac115df | 449d555969bfd7befe906877abab098c6e63a0e8 | /1895/CH3/EX3.2/EXAMPLE3_2.SCE | f005190d2d7ffc871751011a7ae24b6f54d4ea25 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,917 | sce | EXAMPLE3_2.SCE | //ANALOG AND DIGITAL COMMUNICATION
//BY Dr.SANJAY SHARMA
//CHAPTER 3
//RADIO TRANSMITTER
clear all;
clc;
printf("EXAMPLE 3.2(PAGENO 138)");
//given from the figure
f = 20*10^6//frequency in hertz
//At point 1 from fig
f_c1 = 2*13.5*10^6//carrier frequency
deltaf1 = 2*8.5*10^3//change in frequency
//calc... |
7f0a784c4154f1610e21ba1a0312a1b2dd4405e3 | 0027a3de9d3e2b6b1672bf2ca2037940eabfc9ae | /Tasks/task2/2/1.2.10.sce | 915e3a673d7294198a9e082a0f980ef26bb0d067 | [] | no_license | SvichkarevAnatoly/Course-Control-Theory | 6c7fecc01821b21f8084fbd3f432537d61a80cb2 | f09d24212cf0940f1dd7ba0decb62d16d40b092b | refs/heads/master | 2021-01-02T22:17:04.361009 | 2014-04-11T17:18:19 | 2014-04-11T17:18:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 510 | sce | 1.2.10.sce | // 256 страница
//D = 2*(A − 0,5 * B) + A^3*B, где
A = [5 3 -1;
2 0 4;
3 5 -1;];
B = [ 1 4 16;
-3 -2 0;
5 7 2;];
// 34 страница в руководстве
D = 2 * ( A - 0.5 * B ) + (A^3)*B
// 33 страница в руководстве
printf('Через возведение в степень -1');
inverseD1 = D^(-1)
// 48 страница в руководст... |
a0a1caad57f6ca526179b0cd6fa416c3559ce3cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH7/EX7.11/Ex7_11.sce | c3339acdbded676233e3366b631c9afc6277c5ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 738 | sce | Ex7_11.sce | //===========================================================================
//chapter 7 example 11
clc;clear all;
//variable declaration
I1 = 2.5; //current across an inductive load in A
I2 = 2.4; //current across an non- inductive resistor in A
I3 = 4.5; //current across the two in series in A
V = 250;... |
3edafa9be658267a08e972f4cb56ff6b6b57e23c | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH6/EX6.2/Example6_2.sce | 5068fb6b63bf12d3ff3157abfda2ad4ef0189940 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 505 | sce | Example6_2.sce | clear ;
clc;
// Example 6.2
printf('Example 6.2\n\n');
//Page no. 147
// Solution
// Basis 1 hour
fd= 1000.0 ;//feed rate-[L/hr]
cfd= 500.0;//Weight of cells per litre- [mg/L]
dn= 1.0 ;//Density of feed-[g/cm^3]
wp= 50.0 ;// Weight percent of cells in product stream
Pg=(fd*cfd*dn)/(1000*wp*.01) ;// Mass ba... |
195b1d519e766bad50f4401fb144273155954500 | 45c7d9d2836acbb24e1448b0e4248091a5f4a361 | /RO04_P2_Exercice_1.sci | 62502cb8df1f80ed636c42f1fd93576d4c416af9 | [] | no_license | JingyiHU/Linear_Programming_Non_Linear_Programming_school_project | 2fd582b0aefb3bee067ac444b32e5f9149615c97 | 971eeb3614268dfc704751b1b48b31d0f9925a69 | refs/heads/master | 2023-03-08T00:42:30.607241 | 2021-02-22T19:09:11 | 2021-02-22T19:09:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,285 | sci | RO04_P2_Exercice_1.sci |
// Exercice 1.1 r -> V(r) *************************************************
r = 0.8:0.03:3;
plot(r, r.^(-12)-2*r.^(-6),'-')
// Exeercice 1.2 **********************************************************
// fonction de calcul de J
function J = lennardjones(x)
N = length(x)/3;
X = matrix(x,3,N);
J = ... |
fc2a1f0b60bf4e34895cf2b7b07a8252a079ca05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /416/CH11/EX11.3/exp11_3.sce | c01c08849b2ec4d7c03260a16870a3329a00b612 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 647 | sce | exp11_3.sce | clc
clear
disp("example 11.3")
//given
p=250//load
rt=14 //run time
t=24//total time
ac=5;bc=8;cc=0.05 //variables of cost equation
bw=30;cw=0.05 //variables of water per power
qw=500//quantity of water
lam=bc+cc*2*p //lambda
a=-qw*(10^6)/(3600*rt)
inn=sqrt(bw^2-4*cw*a)
phh1=(-bw+inn)/(2*cw)//solution of ... |
c6366e9193861b74c07049034745b04bba101d8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2223/CH18/EX18.27/Ex18_27.sce | 49314758b4baa0460fcc98499b33f35b268b494a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 952 | sce | Ex18_27.sce | // scilab Code Exa 18.27 Isentropic Flow-centrifugal Air compressor
T01=335; // in Kelvin
p01=1.02; // Initial Pressure in bar
beta1=61.4; // air angle at the inlet of axial inducer blades
gamma=1.4;
d1=0.175; // Mean Blade ring diameter at entry
d2=0.5; // impeller diameter at exit
cp=1005; // Specific Hea... |
32ff24f30b070f2dff1ddfc63498e5c8b77de116 | fbd17575bab2ee4dc49cc7d13b5b94d24ab9482c | /TP5/test.sci | 3c6ddb1e41a5fec607782f81640747ccdad8b27f | [] | no_license | 1saac-W/MT09-Analyse-Num-rique | 05b509981dfa00e3b7b550716b1487cbbf0a3fed | 0853f8053254f5dd23179073187ada3d936aff84 | refs/heads/master | 2020-09-27T04:34:36.549125 | 2020-01-05T16:02:18 | 2020-01-05T16:02:18 | 226,431,201 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 736 | sci | test.sci | exec './newton.sci';
exec './foncjaclap.sci'
tol = 1e-6;
N = 1000;
//on prend v initial (vi10 et vi20) avec tout les composants nulls
vi10 = zeros(9,1);
[v10, k10] = newton(foncjac_lap, tol, N, vi10);
vi20 = zeros(19,1);
[v20, k20] = newton(foncjac_lap, tol, N, vi20);
//v10 et v20 contient les resultat de chaque ite... |
035a4aac6068961f57eb03deb0b7cafec96d429c | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/pmusic/pmusic5.sce | 17769c7b47788a2d4e27eab2858efcce185e3fbb | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 259 | sce | pmusic5.sce | x=[1 2 3 4 5 6 2 3 7];
p=3;
fs=4e6;
nfft=6;
[S,f] = pmusic(x,p,nfft,fs)
disp(S);
disp(f);
//output
//
// 6.4454494
// 0.5509978
// 0.2413610
// 0.1686702
//
// 0.
// 666666.67
// 1333333.3
// 2000000.
//
//
|
e13a3dcf4f32853daa5e288c1476ab22d2fa9403 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2048/CH8/EX8.1/disc2.sce | 240c2ed869bfb89979ea0d01f0d6d3dea4a7fa34 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 130 | sce | disc2.sce | // Continuous to discrete time transfer function
// 8.1
exec('tf.sci');
sys = tf(10,[5 1]);
sysd = ss2tf(dscr(sys,0.5));
|
2be5b69d63ea387504b3710adbdb3d8e8770bba6 | b38cc305aa8a93920fa1c8b049e8fbab7cb5bb56 | /exercicio_1.sce | 51868a4048880b8fcb354d7c044c82c7aa1977e2 | [] | no_license | JoaoPi314/LCE_2_algorythms | 17ab58d0a9304786ac4374574d8acec881f11c56 | b2a5a1bc73be37555da0f7c83cba85b9c5e89a35 | refs/heads/master | 2022-12-19T00:09:39.141230 | 2020-10-10T06:41:58 | 2020-10-10T06:41:58 | 298,599,199 | 0 | 1 | null | 2020-10-10T06:41:59 | 2020-09-25T14:40:06 | Scilab | UTF-8 | Scilab | false | false | 1,334 | sce | exercicio_1.sce | //Exercício 1
//fi1 + fi2+ fi3 = 0
//Valores comuns
f = 1000;
w0 = 2*%pi*f;
t = linspace(0, 2/1000, 100);
//Valores de V1
A1 = 75;
fi1 = 2.361873;
//Valores de V2
A2 = 25;
fi2 = 1.202528;
//Valores de V3
A3 = 45;
fi3 = 0.29925782;
//Tensões
v1 = A1*cos(w0*t + fi1);
v2 = A2*cos(w0*t + fi2);
v3 = A3... |
54ca4ee1395f4abd9fd56b5d79bf11ced8b904b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3526/CH6/EX6.1/Ex6_1.sce | 9a7d0b28ffc5a6d41451a07c529a5039e03bbd6c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex6_1.sce | //page 152
clc
F=1000//in lb
Ao=(%pi/4)*(0.505)^2//in^2
rho=F/Ao
delta_I=0.001//in
I_o=2//in
e=delta_I/I_o
disp(rho,"The value in psi is=")
disp(e,"The value of epselon") |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.