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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fbeaf888cb08191210f2f54ac2472b86dce5b34a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH6/EX6.10/Ex6_10.sce | f1f5c205f7f360b7397f75e70808a6bcc4b79398 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,648 | sce | Ex6_10.sce | //Example 6.10
// Nyquist plot for an Open-loop unstable system.
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
//System transfer function
s=poly(0,'s');
sysG=(s+1)/(s*(s/10-1));
evans(sysG,50)
exec .\fig_settings.sci; //custom sc... |
24ab6da7b96fac529c810fd43c2e5bd9cf48d256 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH6/EX6.10/10.sce | 0441c8054b0755c67a617c6e51dc2666061c3f6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 329 | sce | 10.sce | clc
// Given that
NA = 0.3 // numerical aperture of fiber
d = 200 // core diameter in micro meter
lambda = 0.9 // wavelength of propagating light in micro meter
// Sample Problem 10 on page no. 268
printf("\n # PROBLEM 10 # \n")
N_max = 2*(d/2)^2*%pi^2*NA^2/lambda^2
printf("\n Total number of propagating modes are %d.... |
efea1a773ebf0e39d170e5da7f457c19f1963dcc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1673/CH8/EX8.15/8_15.sce | ad9519c9a48c22b814c0e916e65fabde0795cacf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 611 | sce | 8_15.sce | //boundary value problem using finite difference method
//example 8.15
//page 328
clc;clear;close;
deff('y=f(x)','y=cos(x)+((1-cos(1))/sin(1))*sin(x)-1');
h1=1/2;
Y=f(0.5);
y0=0,y2=0;
y1=4*(1/4+y0+y2)/7
printf('computed value with h=%f of y(0.5) is %f\n',h1,y1)
printf('error in the result with actual value %f... |
f18ccaf14b0322feba6561f9d104c5a6e385c114 | 7b5fc14eb97ac069fb310c30488cf43459cd667b | /LA_Assignment_LUDecomp.sce | ebab3a934c839811cdfcd49daa95d8c405489b7d | [] | no_license | Araz1103/Linear-Algebra-Assignments | 97406f1e10ed80570c0bb6d404c8fbd59b769ac3 | 84644aec95bc7e430bcc01f6075d60b23e2e4a65 | refs/heads/master | 2020-12-31T10:07:47.386678 | 2020-04-10T12:01:32 | 2020-04-10T12:01:32 | 238,992,825 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 635 | sce | LA_Assignment_LUDecomp.sce | str = input("Enter a 3x3 matrix which has spaces to seperate", "string")
v = evstr(strsplit(str, " "))
c11=v(1)
c12=v(2)
c13=v(3)
c21=v(4)
c22=v(5)
c23=v(6)
c31=v(7)
c32=v(8)
c33=v(9)
a=[c11,c12,c13;c21,c22,c23;c31,c32,c33]
u=a;
disp(a,'the given matrix found out is a=')
m=det(u(1,1));
n=det(u(... |
fccafef2d5bd4b9844a8334a762d21c5a9a0c334 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH6/EX6.20/Ex6_20.sce | d3f8b1ab422dee866eef6a2619262e554d369f80 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,636 | sce | Ex6_20.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 6 : SYNCHRONOUS MACHINES
// EXAMPLE : 6.20
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
v = 11*10^3; // Operating voltage of the Synchronou... |
fe23590a89e67fe7ffaefb45f0de6aef7fe8340c | 56ae453b5537f39dbd832dd0416f3c804aa1b937 | /microdaq/macros/microdaq_macros/mdaqDIOFunc.sci | 8eb4c5695d57d379ea3e6ecbf27e6e7a4747fdc6 | [
"BSD-3-Clause"
] | permissive | grtwall/Scilab | 38bc8bc978e715b770da61482a9ac30e0cb806d3 | e44e0dc0d357a6baf875d33ddd435a29e053b7f1 | refs/heads/master | 2020-07-22T16:48:31.589484 | 2018-07-31T13:15:40 | 2018-07-31T13:15:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,148 | sci | mdaqDIOFunc.sci | function mdaqDIOFunc(arg1, arg2, arg3)
if argn(2) == 2 then
func = arg1;
enable = arg2;
end
if argn(2) == 3 then
link_id = arg1;
func = arg2;
enable = arg3;
if link_id < 0 then
error("Invalid link ID!")
end
end
... |
2c6246800e8dbc5b1df38769f89fc9bc08ba5fcc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH8/EX8.10/CH08Exa10.sce | e72836a439db9161fda62cf27828a6458676c047 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 675 | sce | CH08Exa10.sce | // Scilab code Exa8.10 : : Page-352 (2011)
clc; clear;
r = 2e-015; // Range of nuclear force, metre
h_kt = 1.0546e-34; // Reduced value of Planck's constant, joule sec
m = 1.674e-27; // Mass of each nucleon, Kg
K = round (2*h_kt^2/(2*m*r^2*1.6023e-13)); // Kinetic energy of each nucleon in centr... |
59a96155fdac94c9b37a981e37baeec4a20b376c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2453/CH3/EX3.10/3_10.sce | 9f033373c45d2291cfebba2f89643f52cd64a4a3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 605 | sce | 3_10.sce | //To calculate the energy values
n1 = 1; //for ground state
n2 = 2; //for 1st excited state
n3 = 3; //for 2nd excited state
h = 6.626*10^-34; //planck's constant, J sec
m = 9.1*10^-31; //mass of electron, kg
L = 1*10^-10; //width, m
E1 = h^2*n1^2/(8*m*L^2); //energy in ground state... |
44ff2aaedfc2f6c30cb053f1eb84e8f4f01c2bdb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH3/EX3.5/Ex3_5.sce | 74430dfda6bf49d52f4fedd37915099e3d2f8a18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 635 | sce | Ex3_5.sce | clear;
clc;
printf("\t\t\tProblem Number 3.5\n\n\n");
// Chapter 3 : The First Law Of Thermodynamics
// Problem 3.5 (page no. 96)
// Solution
P1=100 //Unit:psia //Pressure at the entrance to a steady-flow device
Rho1=62.4 //Unit:lbm/ft^3 //the density of the fluid
A1V1=10000 //Unit:ft^3/min //Entering fluid
... |
f56f3aabd2a20a7c50b0eb1ddbd07ed71743e7ab | a435738e50c764cdad11efea04c47939b837e230 | /chdyn.sce | 4da490e36a5de125f9eeefe3599b3d09361bf12a | [] | no_license | Fadilmb/traitement_image | 4cb3607067595e2f0331ebff5cb6497bec2879be | eca892e77779a1226b293b25902c739285ab7f31 | refs/heads/master | 2020-04-19T14:23:39.082467 | 2019-02-05T16:28:24 | 2019-02-05T16:28:24 | 168,243,508 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,070 | sce | chdyn.sce | function image_extended = extensionDynamicRange (image)
size_image=size(image);
matix_columns = size_image(1);
matix_arrows = size_image(2);
for i=1:matix_columns
for j=1:matix_arrows
image_extended(i,j)=(255/(max(image)-min(image)))*(image(i,j)-min(image));
end
... |
0daba26417a92a58706413bcaebbb8c34ac6e48a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2234/CH1/EX1.18/ex1_18.sce | 81edb0294f7a638bdb3bf32f5021f805203ea170 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 166 | sce | ex1_18.sce | clc;
i=60; //current in ampere
v=12; //voltage in volt
t=3600; //time in sec
p=i*v*t; //calculating power
disp(p,"Number of joules = "); //displaying result |
21d769be697abb862b72fda0059128d4e341ba57 | 27118cf46a66cfdbc5de0d638b4c751bc2662d5b | /src/project.sce | c118ea9310f5be3c3b1496094e0b75c0d8e0d8c0 | [] | no_license | madki/logicsimulation | 431f58ac4ef104894eb1b9e0534f8c104231b74a | bd752aee0a12b6fa92a92a6927f61de5e234e99a | refs/heads/master | 2021-01-17T22:59:06.976782 | 2013-11-14T08:17:15 | 2013-11-14T08:17:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,852 | sce | project.sce | clear;
clc;
// Reading from file
fid = mopen('output.txt', 'r');
if (fid == -1) then
error("cannot open file");
end
flines = mgetl(fid);
mclose(fid);
N = strtod(flines(1));
a = list();
for i = 2:size(flines, 1)
t = strsplit(flines(i), ' ');
b = list();
for j=1:size(t,1)
if isdigit(t(j)) then
... |
8d647414c81b54976a9410358dd54bf54ecf29fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH13/EX13.20/13_20.sce | a34a021fafa8883854011589ba03f315eba98e7c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,372 | sce | 13_20.sce | //Chapter 13, Problem 20, figure 13.72
clc;
E1=12; //e.m.f source 1
E2=24; //e.m.f source 2
r1=3; //resistance in ohm
r2=2; //resistance in ohm
R=1.8; //resistance in oh... |
dbdd9b3fc5b1d6b620fac49e1eef761fdcbb8b2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH2/EX2.20/ex2_20.sce | 82aa6b1c4db6714c20a004420a0fef0af477d396 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 174 | sce | ex2_20.sce | clc;
h=6; //height in ft
g=32; //gravitaional constant in ft/sec square
t=sqrt((2*h)/g); //calculating time
disp(t,"Time in sec = "); //displaying result |
612397751da7eb312a9e67f4606ff1e1dbdc405d | b23687e2eb02bcb6d0f581b7975f42c496faeda1 | /cosine_wave_discrete.sce | 7ae9b6e5ab4dc30b80094c89b2b6640cbf314ff3 | [
"MIT"
] | permissive | harvishj/Scilab | bd3fbd3e679eb07aa088ff2bab40d491c6499770 | 9daada512f42ea6f52199a34d6b18e64b107af94 | refs/heads/master | 2021-07-14T15:06:03.621923 | 2020-10-05T06:35:43 | 2020-10-05T06:35:43 | 213,328,984 | 1 | 3 | MIT | 2020-10-05T06:35:44 | 2019-10-07T08:16:52 | Scilab | UTF-8 | Scilab | false | false | 203 | sce | cosine_wave_discrete.sce | clear;
clf;
n = -5:0.1:5;
f = 20;fs=50;
X = cos(2 * %pi * f/fs * n);
subplot(1,2,1);
plot2d3(n,X);
dt = 1/1000;
t = -0.1:dt:0.1;
x = cos(2*%pi*f*t);
xgrid(4);
subplot(1,2,2);
plot(t,x);
xgrid(4);
|
f42a643c0633b7562ec86aafbf959676ee7db32c | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH28/EX28.3/Example28_3.sce | 82af5e68553a77ef145e9c39148405333d49dc94 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,134 | sce | Example28_3.sce | clear ;
clc;
// Example 28.3
printf('Example 28.3\n\n');
//page no. 875
// Solution fig. 28.3
// Given
//Input analysis
soln1 = 600 ; // Mass flow rate of entering solution 1 -[lb/hr]
c1_NaOH = 10/100 ;// Fraction of NaOH in entering solution 1
T1 = 200 ;// Temperature at entry
soln2 = 400 ;// Mass flow rate of ano... |
e84e3a01240a582639746546fa01a4aaa7944cf0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH5/EX5.2b/eg5_2b.sce | 4d43b219dbd4905563001d9e270408e354026ecf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | eg5_2b.sce | function result= bino(n, k, p)
result = factorial(n)*(p^k)*((1-p)^(n-k))/(factorial(k)*factorial(n-k))
endfunction
prob = bino(10,0, 0.1) + bino(10, 1,0.1 );
disp(prob, "The exact probability is ");
probp = cdfpoi("PQ", 1, 1)
disp(probp, "The poisson approximation is ") |
55b2148301cd93082f61408853d336e2eb41285e | 19c6e93614bb02c3c860d74c25b49558f521ba17 | /opdracht3.sce | 2f2af721c3aca8fe3c8a2ada8d473dc80787a175 | [] | no_license | darkeclipz/spherical-geometry | cc26edcf55aa7bef6c876a5d9208ab9dd5e1e9de | 4eb9c757ef271442c31f55b2d18b0bfe9457530d | refs/heads/master | 2023-02-19T03:33:57.024519 | 2021-01-19T13:35:12 | 2021-01-19T13:35:12 | 319,594,472 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 757 | sce | opdracht3.sce | // Calculates the great circle (GRC) distance (in units of the radius) between
// two points on a sphere, given with latitude/longitude, and a radius.
// The cosine rule is used to find the distance.
function [distance]=GRC_distance_latlondeg(lat_a_deg, lon_a_deg, ..
lat_b_d... |
14a461490b37db1988b592d55f3071793bf7f3a4 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /prog_assembly/libs/scilab_code/characterization/all_step/mite_FG/miteFGchar.sce | 4f1654e729a264dc5bd51452afe55e60adbd98f3 | [] | 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 | 2,899 | sce | miteFGchar.sce | myVariable = linspace(0.2,2.5,24) ;
chip_number=17;
chip_numbers=string(chip_number)
path = pwd();
count=1;
m=1;
counts=string(count)
m_place=string(m);
mkdir MITE_FG_CAL
while count<15
MITE_blif = mopen(path+'/mite_FG.blif','wb')
mputl('.model mite_FG',MITE_blif)
mputl('.inputs net1_1',MITE_blif)
mputl('.outputs gn... |
185b46992132299526cbc04af25fea31246a9993 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH6/EX6.13/ex6_13.sce | 979671e2fdc0d19468d543992fd197d854faaddc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 472 | sce | ex6_13.sce | // Exa 6.13
format('v',7);clc;clear;close;
// Given data
f = 1;// in MHz
f = f * 10^6;// in Hz
omega = 2*%pi*f;// in rad/sec
C = 65;// in pF
C = C * 10^-12;// in F
R = 10;// in ohm
R_SH = 0.02;// in ohm
// Q = X_L/R = X_C/R = 1/(omega*C*R);
Qactual = 1/(omega*C*R);// True value of Q
Qmeasured = 1/(omega*C*(... |
2d6b56a467893b00a870008d0454a914b9c0a22a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH7/EX7.2/Ex7_2.sce | 76031fd7a4c622c918bfde84c3e4780b815fabca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | Ex7_2.sce | //Ex7_2
clc
TA = 30
TJ = 48
PD = 4
TR = (TJ - TA)/PD
disp("TA = "+string(TA)+"degreeC")//ambient temperature at which transistor is operated
disp("TJ = "+string(TJ)+"degreeC")//junction temperature
disp("PD = "+string(PD)+"W")//dissipated power
disp("TR = (TJ - TA)/PD = "+string(TR)+"degreeC/W")//termal resist... |
c711a43a208fc058987b262bb5372721d8db4454 | 1485852dd59aafc286600126cf832a32e10f117f | /tests/stylization/test7.sce~ | 47e28e80559a8f1568b912a26e08fad98468041b | [] | no_license | rg77/Scilab-Image-Processing-And-Computer-Vision-Toolbox | dec9fbbce32cfd1eab3c45ccb29c89aaa1384758 | 8adb116da3a9c29a32e5e0727105aff571e5b374 | refs/heads/master | 2020-12-02T16:14:45.282650 | 2017-07-07T10:12:04 | 2017-07-07T10:12:04 | 96,524,257 | 0 | 0 | null | 2017-07-07T09:43:50 | 2017-07-07T09:43:50 | null | UTF-8 | Scilab | false | false | 110 | test7.sce~ | src = imread("../images/cow2.jpg");
output = stylization(src,100, 10); //out of range values
imshow(output);
| |
15d44ec1ba7bf9f88adb24eab93dc21c142c8a15 | c9cea368728effc50ef3a05f10679bcc5c63382a | /Otros/jc_llanos - met_ciclico.sce | a69fd82f88ba2b3a2c35f5664cc2049df80761ad | [] | no_license | juancllanos/Optimizacion | dbb30315da1b6b3bfac0d1ace5d8e468557565d3 | ef85b725af392290dd46febc839f27944a5ed9d7 | refs/heads/master | 2020-04-28T05:46:38.128903 | 2019-05-21T21:59:16 | 2019-05-21T21:59:16 | 175,032,693 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,196 | sce | jc_llanos - met_ciclico.sce | // PUNTO 1 :
function fx = f1(x)
fx = x(1)*x(1)+x(2)*x(2)
endfunction
/*function fx = f2(x)
fx = exp(2*x(1)**2+x(1)-8)
endfunction*/
// ---------------------------------------
// Funcion que halla el t minimo
function [tmin,fmin] = min1abFB(f,x,d,a,b,h)
tmin = b;
// acotamos tmin como b ya que sabemos qu... |
8cae98cda905ced0f49111fbd4624b9ed1c75d45 | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /system/kiks_pushobj_test.sci | afb734c0564eb20be298c680afb00ca54bc3863c | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,660 | sci | kiks_pushobj_test.sci | function [] = kiks_pushobj_test(id,runtime)
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// -----------------------------------------------------
// (c) 2000-2004 Theodor Storm <theodor@tstorm.se>
// http://www.tstorm.se
// -----------------------------------------------------
... |
a8f7366a5bbaec2a303b94d23fe565ccfc2466d7 | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/Scripts/Physics/Orbitals2.SCI | b128721f71540a1fdcf75ae9c26c3dfe44c590d6 | [
"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 | 1,617 | sci | Orbitals2.SCI | codeblock readtextfile(ScriptDir+"\_TOOLS.sci");
#function density(xc,yc,zc)
#{
# vl=exp(-0.5*sqrt(xc*xc+yc*yc+zc*zc))*xc;
# return(vl);
#}
function density(xc,yc,zc)
{
rd=sqrt(xc*xc+yc*yc+zc*zc);
f1=(6-rd)*exp(-0.5*rd);
vl=f1*(2*sqr(zc)-(sqr(xc)+sqr(yc)));
return(vl);
}
function denscolor(pt)
{
... |
1e4df0153a24dcad6ee5958d1ca18482403e20d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH8/EX8.20/Example_8_20.sce | 7d86d2f8892a104df5977f8553d31d314d6850d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example_8_20.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 8
//Phase Equilibria
//Example 20
clear;
clc;
//Given:
P = 101.3; //total pressure of system (kPa)
T = 337.5; //temperature in K
x1 = 0.842;
//Antoine constants
//For methanol(1)
A1 = 16.12609;
B1 = 3394.286;
C1 = 43.2;
//For methy... |
2cccc10b12ed7261e7cc188cff601cb87bb0d629 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH10/EX10.21/10_21.sce | c06e366ae21089fe30a50ded32e28c901cda1d72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,893 | sce | 10_21.sce | clear;
clc;
//Example - 10.21
//Page number - 362
printf("Example - 10.21 and Page number - 362\n\n");
//Given
P = 2.76*10^(6);//[N/m^(2)] - Pressure
T = 310.93;//[K] - Temperature
R = 8.314;//[J/mol*K] - Universal gas constant
// For n-butane
Tc = 425.18;//[K] - Critical temperature
Pc = 37.97;//[bar]... |
b3b5375a9f85f2dee3d50a279b5cd4d89387e52a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH2/EX2.24/2_24.sce | eb391ffe8d2913a39f8ccb41f6004132e407651a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 868 | sce | 2_24.sce | //ques-2.24
//Finding percentage composition of dry products of combustion
clc
C=900;//weight of carbon in fuel (in g)
H=6;//weight of hydrogen in fuel (in g)
p=90;//Percentage of air used for combustion
W_Th=(C*(32/12)+H*(16/2))*(100/23);//theoretical weight of air used (in g)
W=W_Th*(p/100);//actual weight of ... |
ca4c53ce5ac2015ba23f1dc02ab501312c74763a | 582be270b7fa07bed4052844aaa055f2a97d2a09 | /ARROWS/ARROWS_sce.sce | 1b75fcafdc0328e27d7867ba0f17ca15d98a5f0d | [
"CC0-1.0"
] | permissive | GNilsonne/SleepyBrain-StimulusPresentation | 9de4aef10fe4bbb7ac4bb37606382ec303fe4fb0 | fc8244a85dace20e25e64989be0aa3cf7f771532 | refs/heads/master | 2021-01-10T17:33:26.112138 | 2017-08-08T03:59:47 | 2017-08-08T03:59:47 | 50,339,695 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 11,003 | sce | ARROWS_sce.sce | #########################################################
# This experiment presents IAPS pictures preceded by
# instructions to upregulate or downregulate the
# emotional response to the picture.
#
# Adapted by Gustav Nilsonne 120625
# Original script by Armita Golkar
################################################... |
4f79c515b54b181122e8847f2327f8e4ec631493 | f78a758dc17a311b355e12366d1315f7a9c2b763 | /Volkswagen/VW 80000 2013/E-15 Reverse polarity 3.tst | 78ebacf6db614bda1a63b9a68f7a9cbe12993e30 | [] | no_license | CZPFOX/Standards | 9dbf036f7e3e5767c23872c884ae7da83e66f81c | af34157e6e447d1a2b39136b9f3734feb663d9bb | refs/heads/master | 2020-06-18T12:58:06.033918 | 2019-07-11T02:55:42 | 2019-07-11T02:55:42 | 196,309,147 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,801 | tst | E-15 Reverse polarity 3.tst | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AutoTestC version="2.0.0">
<Title>Test case 2 - polarity dynamic - 8ms</Title>
<Organization>Volkswagen</Organization>
<Standard>VW 80000 2013</Standard>
<Item>6.15 E-15 Reverse polarity</Item>
<system>
<PowerSystem>3</PowerSystem>
... |
d68121d0664c4a9bc5c540dfb3fbc04e98dcccbf | 67549df2a087a841e4e04a54509843c18795a981 | /packets/echantillons/dojo/modele.sci | 7e090aa1f67bb7a7dfb048dff7357a42c70e0790 | [] | no_license | scicasoft/CRUD-generator | 60494434091147e1f8aa62c02b7d34339747885e | 037a7dabdf4d84933ffec560c0bd1a85c45deb03 | refs/heads/master | 2020-05-03T11:30:19.887391 | 2011-06-12T10:33:38 | 2011-06-12T10:33:38 | 719,111 | 0 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 1,055 | sci | modele.sci | <?php
class [[NOM_TABLE_MAJ]] extends Base[[NOM_TABLE_MAJ]]
{
public function getRow($ID, $table){
$resultat = Doctrine_Query::create()
->from($table.' b')
->where('num=?',$ID)
->execute();
return $resultat;
}
//Recuperer un ligne
public function getRow2($ID,$ta... |
b2cb979dd24d7969c3489cbfa84cee430d510099 | 1a00eb132340e145c8a7d8fd0ef79a02b24605a2 | /macros/DIGITAL_READ_SB.sci | f7d19c09674dd813b6d179dc06bfc14d1f1d4fb4 | [] | no_license | manasdas17/Scilab-Arduino-Toolbox | e848d75dc810cb0700df34b1e5c606802631ada4 | 2a6c9d3f9f2e656e1f201cecccd4adfe737175e7 | refs/heads/master | 2018-12-28T15:51:35.378091 | 2015-08-06T07:22:15 | 2015-08-06T07:22:15 | 37,854,821 | 3 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 2,981 | sci | DIGITAL_READ_SB.sci | //
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2011-2011 - DIGITEO - Bruno JOFRET
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The ter... |
dbca9c12b1bb8cb49a42e9a449672e36f69319ac | bce0c755bfdc527c8cc0737e8e1e59467267cff9 | /macros/cvtColor.sci | 6f235e2715035d679d1de08a6f4347b43543404f | [] | no_license | shubham0108/FOSSEE-Image-Processing-Toolbox | bacc26e6c7139383a374ea16f6c62565a7ff0603 | 68cddb2ca8dabddfe47251ac6647011acb849a2c | refs/heads/master | 2021-06-16T02:27:39.886532 | 2020-05-01T09:23:39 | 2020-05-01T09:23:39 | 97,078,162 | 0 | 0 | null | 2017-07-13T03:57:21 | 2017-07-13T03:57:21 | null | UTF-8 | Scilab | false | false | 3,706 | sci | cvtColor.sci | // Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_... |
9f0ffbb555d44090ae9be8cc5701da7ccf667330 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3856/CH12/EX12.3/Ex12_3.sce | 974ad913eda1bd3c0d7b77f4766b6e2312334db3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex12_3.sce | //Estimate the Rate constant for a diffusion controlled reaction in water
//Example 12.3
clc;
clear;
R=8.314; //Gas constant in J K^-1 mol^-1
T=298; //Absolute temperature in K
eta=8.9*10^-4; //Viscosity of water in J s m^-3 (1J=1N m therefore N s m^-2=J s m^-3 )
KD=(8*R*T)*1000/(3*eta); //Rate... |
abfa3bd98556836be4ddbb4a232a20995fda21c5 | a187b16fa86d7ed603747786ec9a46406eb527d0 | /ItemTemplates/Empty/Template.tst | c1fcf2b8b830488b26028e5b0e1c37c6703a3c17 | [
"Apache-2.0"
] | permissive | tareq-s/Typewriter | c90b13efc0e532e89100c130bb717f486c0ba907 | d2ab1e20006d1dc61619055dbf51c068badb3ac6 | refs/heads/master | 2020-12-26T03:44:26.122089 | 2015-07-22T14:27:04 | 2015-07-22T14:27:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 479 | tst | Template.tst |
module $rootnamespace$ {
// $Classes/Enums/Interfaces(filter)[template][separator]
// filter (optional): Matches the name or full name of the current item. * = match any, wrap in [] to match attributes
// template: The template to repeat for each matched item
// separator (optional): A separator ... |
8a12fa6de950f0d4deb55c1bbc73fbd64f9a38a5 | e86653ab56eded6714574f9f8f34013272027113 | /3432/CH6/EX6.14/Ex6_14.sce | e414428a884c839a33e7d4f5c73a790e5dc4a850 | [] | no_license | FOSSEE/Xcos_TBC_Uploads | 3637554f9dca20d0c5ec2c5d00d30942edafe09a | 37e81552cb6d9066617ba91b13c91098e5ab6758 | refs/heads/master | 2023-03-30T10:45:38.033053 | 2021-03-15T05:40:35 | 2021-03-17T09:45:20 | 346,244,418 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 148 | sce | Ex6_14.sce | //Example 6.14
//Lead compensation for DC motor.
// the required value
// for step response, set sw to 2
// for ramp response, set sw to 0
sw = 2
|
4aea4a27ae1ee1e6e9089e273e76186e96593a2b | 0812f3bb6f3cc038b570df68ccee4275da04b11f | /models/complexity_1000/Applied_Thermodynamics_and_Engineering/CH4/EX4.3/4_3.sce | eb7e7ca08057ea4efd2f4ea6445ec5657e4c1055 | [] | no_license | apelttom/20-semester_PhD_thesis | edc0b55580bae9d364599932cd73cf32509f4b7a | ff28b115fcf5e121525e08021fa0c02b54a8e143 | refs/heads/master | 2018-12-26T22:03:38.510422 | 2018-12-14T20:04:11 | 2018-12-14T20:04:11 | 106,552,276 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 342 | sce | 4_3.sce | clc;
p=1.05;//bar
V=0.02;//m^3
R=0.287;//m^3
T=15+273;//K
m=p*V*10^5/(R*T*10^3);
p2=4.2;//bar
T2=p2*T/p;
cv=0.714;
Q=m*cv*(T2-T);
Q_12=Q;
cp=1.005;
T3=288;//K
Q_23=m*cp*(T3-T2);
Q=Q_12+Q_23;
disp("heat rejected is:");
disp("kJ",-Q);
ch_entro=m*cp*log(T2/T3)-m*cv*log(T2/T3);
disp("decrease in entropy of air is:");
... |
c29db057659e16b42359ab346cba4dfeead1ac87 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH57/EX57.02/57_02.sce | a024ce6f87bf3cfe42498a224f9c49a036362d91 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 73 | sce | 57_02.sce | clear;
clc;
z=3+4*%i;
y=1/z;
mprintf("the impedence=%fmho",abs(y));
|
a8cfd2904900531841d7f6acba15ec99cdde347a | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s__elelectronics_instrumentation_and_measurements_U._S._Shah_2195.zip/_elelectronics_instrumentation_and_measurements_U._S._Shah_2195/CH3/EX3.15.2/ex_3_15_2.sce | 5492081357dc4a0e7f522fd775cccc8b4c88cbbb | [] | 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 | 213 | sce | ex_3_15_2.sce | errcatch(-1,"stop");mode(2);//Example 3.15.2: shunt resistance
;
;
//given data :
Im=1;// in mA
Rm=100;// in ohm
I=100;// in mA
Rsh=(Im*10^-3*Rm)/((I-Im)*10^-3);
disp(Rsh,"shunt resistance,Rsh(ohm) = ")
exit();
|
0d8961d2edd9d2b1224581f7f8eb7de4ac682da7 | 262ac6443426f24d5d9b13945d080affb0bd6d9b | /opgaves/dominos/edit-me.sce | d9ed8978d260b223b19b5b323dbd7e4bb4c6dd00 | [] | no_license | slegers/Scilab | 9ebd1d486f28cf66e04b1552ad6e94ea4bc98a0b | 1b5dc3434def66355dafeb97c01916736a936301 | refs/heads/master | 2021-01-12T01:42:01.493578 | 2017-01-09T10:54:09 | 2017-01-09T10:54:09 | 78,420,343 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,006 | sce | edit-me.sce | function [longest] = solve(ns)
temp = 0;
longest = 0;
if size(ns, 'r') == 0 then
longest = 0;
return;
end
lst = list();
lst2 = list();
for i = 1:size(ns, 'r')
lst($+1) = i;
end
for i = 1:size(ns, 'r')
lst2 = lst;
lst2(i) = null();
temp ... |
d7eae0b2ba1f63a023862d375240ca0148ae2c46 | 0812f3bb6f3cc038b570df68ccee4275da04b11f | /models/complexity_1000/Applied_Thermodynamics_and_Engineering/CH4/EX4.15/4_15.sce | 4f369a8ea684bb3aa0e6642b1dabafbe70418ac6 | [] | no_license | apelttom/20-semester_PhD_thesis | edc0b55580bae9d364599932cd73cf32509f4b7a | ff28b115fcf5e121525e08021fa0c02b54a8e143 | refs/heads/master | 2018-12-26T22:03:38.510422 | 2018-12-14T20:04:11 | 2018-12-14T20:04:11 | 106,552,276 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 212 | sce | 4_15.sce | clc;
cp=6.3;
h2=70;
h1=15;
T0=283;//K
T1=343;//K
T2=288;//K
T3=1400+273;//K
s2_s1=cp*log(T1/T2);
b2_b1=cp*(h2-h1)-T0*(s2_s1);
loss=cp*(h2-h1)*(1-T0/T3)
eff=b2_b1/loss
disp("effectiveness is:")
disp("%",eff*100)
|
08eb38a2b4953ed5732d6314d34dd061d1678d18 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH4/EX4.18/4_18.sce | 92cd6fd912f3f65d628613d42dfb1f3cbd0536f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 4_18.sce | clc
//initialisation of variables
H= -57.7979 //cal
H1= -68.3174 //cal
S= 45.106 //cal deg^-1
S1= 16.716 //cal deg^-1
T= 25 //C
//CALCULATIONS
H2= (H-H1)*1000
S2= S-S1
G= H2-(273.16+T)*S2
//RESULTS
printf (' Gibs free energy= %.1f cal',G)
|
4d99f1575bf598eb3e1e3d13b61696cf7906ea6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1316/CH1/EX1.13/example1_13.sce | 46d36c1875d89db89c9d356aa488a4c114976f5f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | example1_13.sce | //Chapter 1
//Example 1.13
//Page 31
clear;
clc;
TF=5;
Temp_Res=0.2;
//Calculation of required voltage resolution
printf("The temperature change of 0.2 degree celcius will result in a voltage change of = %.1f mV",TF*Temp_Res);
|
ecdeaded7f899983e175f6ecf1bc438812ebcded | 449d555969bfd7befe906877abab098c6e63a0e8 | /446/CH3/EX3.2/3_2.sce | e9708155530d9548b542e8887715221e9109b53b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 313 | sce | 3_2.sce | clear
clc
disp('Exa-3.2');
I=120;r=0.1*10^-9;Eev=2.3 //I-intensity in W/m^2 r in m & E in electron volt
A=%pi*r^2;K=1.6*10^-19; // A=area and K is conversion factor from ev to joules
t= Eev*K/(I*A); //time interval
printf('The value of time interval was found out to be %.1f sec',t);
|
716a6500d5335023e80105ef032e1692e277c322 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH2/EX2.14/Ex2_14.sce | fb93d24da1ddb4af04fe7468da0aa75685fc5d0a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 379 | sce | Ex2_14.sce | //Initilization of variables
//Co-ordinates with respect to point O
x=17.9 //ft
y=6.91 //ft
z=46.3 //ft
Fz=-4000 //lb
Fy=0 //lb
//Calculation
Mx=y*Fz-z*Fy //lb-ft
//Result
clc
printf('The scalar coefficient of the i term is the moment about the X-Axis Mx:%f lb-ft lb-ft',Mx) //lb-ft
//The answer in the text ... |
3009f92147e5017f2d4e70c49d7005afb8a6157d | 08bfc8a1f8e44adc624d1f1c6250a3d9635f99de | /SDKs/swig/Examples/test-suite/scilab/li_std_except_runme.sci | 817a63ab628a9040efda4fac0b8a06ef62c69722 | [] | 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 | 129 | sci | li_std_except_runme.sci | version https://git-lfs.github.com/spec/v1
oid sha256:59caf11026b4bd162415b1839ec5534b09cadb3372e7c2980bccd93ed3dc10a7
size 1108
|
f83fdad96be4e3a550fd4b943e8568231608128f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1049/CH4/EX4.12/ch4_12.sce | 0944ad47aee678f941f8c9f5d67b8a757136e346 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 189 | sce | ch4_12.sce | clc
clear
V_s=300;//V
R=60;//ohm
L=2;//H
t=40*10^-6;//s
i_T=(V_s/R)*(1-exp(-R*t/L));
i=.036;//A
R1=V_s/(i-i_T);
printf("maximum value of remedial parameter=%.3f kilo-ohm",R1/1000); |
06bb5db6194d70815ddd6ea66dd4252f47b82fb9 | 399252dd10344a5bf910cf9d25663fd3ce2d5482 | /bataille_fonctions.sci | 311257446760accff88608745d999b74634a9f3a | [
"Apache-2.0"
] | permissive | DYNXTSX/Bataille_Carte | 1a8483fb5a48e38fd96a32c08fc729e16f5d397f | 25354303e62d2136dfa5a440d07575c2c632c06b | refs/heads/main | 2023-02-24T15:01:30.513765 | 2021-02-02T15:20:17 | 2021-02-02T15:20:17 | 335,332,013 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 19,764 | sci | bataille_fonctions.sci | //fonction de distribution normal
function [jeu1, jeu2] = distribue()
//déclaration des variables
paquetdecarte = [1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 5 5 5 5 6 6 6 6 7 7 7 7 8 8 8 8 9 9 9 9 10 10 10 10 11 11 11 11 12 12 12 12 13 13 13 13];
jeu1 = 1:26;
jeu2 = 1:26;
k=1
i=1
//distributio... |
813dc50eaa1904466fa78e2af74fc868f848f79f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3802/CH3/EX3.13/Ex3_13.sce | 1f2eae0989e4d09079049eb82f656515e49c56de | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex3_13.sce | //Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex3_13.sce
clc;
clear;
//from the figure 3.25 the below values are taken
Z1=complex(1.2,1.6);
Z2=complex(1.0,-1.75);
Z12=complex(6,8);
V1=complex(110,0);
V2=c... |
8c48d39949cf0e16f97e080cb28cd355d94d9307 | eec7ebd86603d3208aacde26fd2abcbe9bd66968 | /EAPSI_Training_Task1_7_11_18_EN.sce | 1587913885285a27b7ca6a909a448e9807bd3598 | [] | no_license | sra27/Presentation-Scenarios | 897dd11dabbc31b6baafbbaa5e3d14b2eb8030ee | 856b244d97509847ac5c04bb3bdc305128b52326 | refs/heads/master | 2020-04-04T15:09:47.936450 | 2018-11-03T21:53:00 | 2018-11-03T21:53:00 | 156,026,804 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 17,154 | sce | EAPSI_Training_Task1_7_11_18_EN.sce | #=================================================================================================
#HEADER
#=================================================================================================
no_logfile = false;
active_buttons = 5;
button_codes = 1,2,3,4,5;
response_matching = simple_matching;
... |
af12cd993f8ee2250cc110fbd89c182d4e526a53 | 4533c11d75f955d8350d45606af92ca064d2e319 | /differentialEvolution/scilab-scripts/LIF_paramEstimAFD.sce | 33e822bf37ecf659040eaa7e5ddc31d20c6f14e7 | [] | no_license | lois76/ParamEstimationDE | 0066c5a18042637b97bf989e77f2ce04ba283b12 | ab3911174450a4ec9976a108885cf8e7afc62b3d | refs/heads/master | 2022-05-21T04:49:51.662762 | 2022-03-21T13:15:38 | 2022-03-21T13:15:38 | 167,556,538 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 4,321 | sce | LIF_paramEstimAFD.sce | /////////////////////////////////////////////////////
/////////////// Voltage Data ///////////////
/////////////////////////////////////////////////////
A = read("/scilab-scripts/AFDnewDataSecondRecordingsNumberPointsDividedBy4.txt",-1,11);
//A = read("/home/naudin/Documents/article-2/AFD under Extreme Stimul... |
d1dc338d0f8a1d337dd9858bc63ef8e7b8a94552 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2024/CH5/EX5.1/5_1.sce | b5d73e908de118ba0ac5ed9f65ca5485f01f1a8f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 320 | sce | 5_1.sce | clc
//Initialization of variables
Tr=500 //R
Ta=1000 //R
dt=100 //R
//calculations
n1=1- Tr/Ta
n2= 1-Tr/(Ta+dt)
n3 = 1- (Tr-dt)/Ta
//results
printf(" Efficiency in case 1 = %.1f percent",n1*100)
printf("\n Efficiency in case 3 = %.1f percent",n2*100)
printf("\n Efficiency in case 3 = %.1f percent",n3*100)
|
5b5ee1e90cabddd0da524bd082799e195f0cd7bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3308/CH2/EX2.1/Ex2_1.sce | fa06cfb686e6a3f3b38c7da20a5e81602fd29c56 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 501 | sce | Ex2_1.sce |
clc
// Given that
//True stress=100000*(True strain)^0.5
// Sample Problem on page no. 63
printf("\n # Calculation of Ultimate Tensile Strength # \n")
//from the data given
n=0.5
E=0.5
K=100000
Truestress=K*((E)^n)
//let An(area of neck)/Ao=t
//from log(Ao/An)=n
t=exp(-n)
UTS=Truestress*exp(-n)//fro... |
7115e0714a6953cbdcba7aa0ade6cab9318ff053 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3440/CH3/EX3.9/Ex3_9.sce | 248e72277051f6d1d95c14ec79a91179e65927ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 299 | sce | Ex3_9.sce | clc
T=300 //K
k=8.617*10^-5 //eV/K
q=1.6*10**-19 //C
ND=8*10^14//cm^-3
Vb=500 //V
W=20*10^-6//m
epsilonx=8.854*10^-14 //F/cm
Wm=sqrt((2*epsilonx*12.4*Vb)/(q*ND))
Wm1=Wm*10^-2 //to convert into micrometer
disp(Wm1,"W in meter=")
Vb1=Vb*(W/Wm1)*(2-W/Wm1)
disp(Vb1,"Vb1 in V=")
|
24d1a372bcbfbd048a3d766bc7c246a32caa335a | 449d555969bfd7befe906877abab098c6e63a0e8 | /40/CH8/EX8.6/Exa_8_6.sce | 2b63a0678644524fabe995c0bf0b83da76b2e911 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 407 | sce | Exa_8_6.sce | //Signal and spectrum replication
xn=[2 3 2 1];
XDFT=fft(xn,-1)
yn=[xn xn xn];
YDFT=fft(yn,-1)
YDFT1=3*[XDFT(1:1/3:length(XDFT))];
for i=2:3
YDFT1(i:3:length(YDFT1))=0;
end
YDFT1(12:-1:11)=0;
disp(YDFT1,'the DFT of x[n/3] is');
hn=[xn(1:1/3:length(xn))]
for i=2:3
hn(i:3:length(hn))=0;
end
hn(12:-1:11)=0;
hn
HDF... |
5bf90af40e4bfde0cc115ffe9906a416cadbf3f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH1/EX1.7/ex7.sce | a50228ce688843f5c57080b71025bb545114fdb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 452 | sce | ex7.sce | //ques7
//Measuring pressure with multifluid manometer
clear
clc
Patm=85.6; //in kPa
dwater=1000;//density of water in Kg/m^3
dmercury=13600;//density of mercury in Kg/m^3
doil=850;//density of oil in Kg/m^3
g=9.81;//acc due to gravity in m/s^2
h1=0.1;//height of water in metre
h2=0.2;//height of oil in metr... |
c1715de3cb8edbb6770ffe6051310990efa46fc6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH6/EX6.13/Ex6_13.sce | 91df968866a34058c8431413293151537b5c94b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex6_13.sce |
V=230//applied voltage
L=60D-3//inductance of coil
f=50 //frequency of supply
Xl=2*%pi*f*L
I=230/Xl
//if frequency is reduced to 20 Hz
Xl=2*%pi*20*L
I1=V/Xl
mprintf("Current through the coil if frequency is reduced to 20 Hz=%f A\n",I1)
//if frequency is increased to 60 Hz
Xl=2*%pi*60*L
I2=V/Xl
mprintf("Cu... |
3204b5c64aff99d7ba5e1d0810085c03b0d2125f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3856/CH19/EX19.2/Ex19_2.sce | a5b679d4896e0cfacdc57efa417800fc51a20174 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 595 | sce | Ex19_2.sce | //Calculate the Partial pressure of Oxygen at an altitude of 30 km (stratosphere)
//Example 19.2
clc;
clear;
Po=0.20; //Partial pressure of Oxygen at an sea level in atm
g=9.81; //Gravitational constant in m s^-2
h=30*10^3; //height in m
mew=0.03200; //Molar mass of Oxygen molucule in kg mol^-1
... |
67e13a74c44d54b5dffa9dc2110c50eee2161fc9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /83/CH12/EX12.4/example_12_4.sce | bcd57a005aed7fd997098791807f5ce9cb8955e2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 708 | sce | example_12_4.sce | //Chapter 12
//Example 12.4
//page 453
//To calculate acceleration and rotor angle
clear;clc;
delta0=33.9; //initial rotor angle
H=4; //inertia constant
f=50; //frequency
Pm=1; //mechanical power input
t=0.05; //time interval
angular_acceleration=(Pm-0.694*sind(delta0))*180*f/H;
delta_change=0.5*angular_acceleration*t... |
c937419941b75a307690d7aa6cdd084ac9468d49 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH14/EX14.2/Ex14_2.sce | 6eab7a711ac586d7bc5977b33a0cf3aed704a633 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex14_2.sce | clc
// At P = .14 MPa
h1 = 236.04 // Enthalpy at state 1 in kJ/kg
s1 = 0.9322 // Entropy at state 2 in kJ/kgK
s2 = s1 // Isenthalpic process
// At P = 0.8 MPa
h2 = 272.05 // Enthalpy at state 2 in kJ/kg
h3 = 93.42 // Enthalpy at state 3 in kJ/kg
h4 = h3 // Isenthalpic process
m = 0.06 // mass flow rate in kg/s... |
038330eaaac2b84185c54f77c06a572aaa1a40f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH24/EX24.13/Ex24_13.sce | 5238fc3d672b66b055b9c3074332a106d5f612ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,758 | sce | Ex24_13.sce | // Example 24_13
clc;funcprot(0);
//Given data
T_1=27+273;// K
p_1=1;// bar
p_2=4;// bar
n_c=0.80;// Isentropic efficiency of compressor
n_t=0.85;// Isentropic efficiency of turbine
e=0.75;// The effectiveness of regenerator
p_lr=0.1;// Pressure loss in regenerator along air side in bar
p_lcc=0.05;// Pressu... |
ddab9be1e06f132e8f8fa414de5d4fb081ac0b4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH2/EX2.11/example2_11.sce | 41f31f7504f04b9dd6f125c24d5ea6024616b2c9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example2_11.sce | //example2.11
clc
disp("P=4, Z=200, A=2, psi=25*10^-3 Wb")
disp("(I_a)=(I_L)=60 A, R_a=0.15ohm, R_se=0.2 ohm")
disp("V=(E_b)+(I_a*R_a)+(I_a*R_se)")
disp("250=E_b+60(0.15+0.2)")
b=250-(60*(0.15+0.2))
disp(b,"E_b(in V)=")
disp("Now, E_b=(psi*P*N*Z)/(60*A)")
disp("Therefore, 229=(25*(10^-3)*4*N*200)... |
d24e64d3ec1296681d316bb598c7782b038ce08e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1523/CH3/EX3.9/3_9.sce | 412740ccb39e946e5017908e0ae55544d51f90a3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 3_9.sce | //Network Theorem 2
//pg no 3.10
//example 3.9
//when 100 V source is acting alone
disp("Vx-5I1=0");//equation 1
disp("Applying KVL to mesh,");
disp("10Vx-15I1=-100");//equation 2
A=[1 -5;10 -15];//solving equation in matrix form
B=[0 -100]'
X=inv(A)*B;
disp(X);//negative because of opposite direction
disp("... |
d8666fed5dd0a9dd3f9e71891b29d21d2b9ddfbd | 449d555969bfd7befe906877abab098c6e63a0e8 | /165/CH4/EX4.12/ex4_12.sce | bc51abb2f936609c95c426fd919fce8d1f280197 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,102 | sce | ex4_12.sce | //Example 4.12
clc;
Ra=25000;
Rb=5000;
V=30; //Voltage across given terminals
VRb=Rb*V/(Ra+Rb); //Using Voltage divider between Ra Rb
//Also the true voltage across Rb
disp(VRb,'True voltage across Rb')
// Case I: Given is sensitivity of 1000
S1=1000; ... |
f68ca157dcee1272e75e16ae9e915fc6d35e3e6e | 449d555969bfd7befe906877abab098c6e63a0e8 | /536/CH1/EX1.1/Example_1_1.sce | 756ec7a62e46c34d79470f48b22884ce50a72e3b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | sce | Example_1_1.sce | clc;
printf("Example 1.1\n");
// 1 Poise = 1g/cm s = ((1/453.6)lb)/((1/30.48)ft*1s)
be=30.48/453.6*3600; //be->british engineering unit
printf("\n 1 Poise = %.4f lb/ft s",be/3600);
printf("\n = %.0f lb/ft h",be);
// 1 Poise = 1g/cm s = ((1/1000)kg)/((1/100)m*1s)
si=100/1000; //si->SI units
printf("\... |
6514e122e4f9948f13c7042af8e13cda79e5410a | 803898f95f34521f4fc08ff42534888367ff4028 | /extlibs/HDF5/v1.8.15/tools/h5repack/testfiles/plugin_none.h5repack_layout.UD.h5.tst | 4fb690675190e57c0630062198d9b2d3cbd5cde3 | [
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-hdf4",
"BSD-3-Clause"
] | permissive | Unidata/gempak | 17057d45ad92512f56193155dd0d6ad0301965d8 | f3997c88469be1c08cd265ef553c812a28778284 | refs/heads/main | 2023-07-13T19:39:57.114715 | 2023-06-23T10:11:23 | 2023-06-23T10:11:23 | 4,715,296 | 53 | 29 | BSD-3-Clause | 2023-06-23T10:11:24 | 2012-06-19T15:15:17 | C | UTF-8 | Scilab | false | false | 508 | tst | plugin_none.h5repack_layout.UD.h5.tst | Objects to modify layout are...
Objects to apply filter are...
Uncompress all
-----------------------------------------
Type Filter (Compression) Name
-----------------------------------------
group /
dset (1.000:1) /dset1
dset (1.000:1) /dset2
dset (1... |
ce7e13692c512ae573ecd7c073fcdb9a29c411db | ad617742f184bf6d4cceb3e9c99232d8bd52b862 | /tests/CDSG.tst | 9d0105219a4c0ed40c271d1e6acc87635a3e4297 | [
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-other-permissive",
"BSD-2-Clause"
] | permissive | 9track/hyperion | d621343e7eea27c45db49c7c284dd1680491c82c | 9ceed2cc7261820eef01c55dac9b9a6ae47636b2 | refs/heads/master | 2022-09-15T12:19:09.059528 | 2020-05-28T03:05:29 | 2020-05-28T03:05:29 | 268,044,749 | 3 | 1 | NOASSERTION | 2020-05-30T09:03:56 | 2020-05-30T09:03:55 | null | UTF-8 | Scilab | false | false | 362 | tst | CDSG.tst | *Testcase for CDSG, STPQ and LPQ Instructions
mainsize 1
numcpu 2
sysclear
archlvl z/Arch
loadcore "$(testpath)/CDSG.core"
runtest 1
v 900.38
v 940.70
*Compare
v 940.10
*Want "Success ! CDSQ, STPQ and LPQ: OK" E2A48383 85A2A240 5A40C3C4 E2C76B40
#v 960.100
*Done
nu... |
7c6eaf49f2e74d19c24bdee4a827faf149153957 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1748/CH1/EX1.9/Exa1_9.sce | 267606e51594d2fc0b694bd05707634928d857d4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 925 | sce | Exa1_9.sce | //Exa 1.9
clc;
clear;
close;
//given data
format('v',6);
RatedPower=100;//in KVA
RatedPower=100*1000;//in VA
VL=1040;//in Volt
Phase=3;//Machine phase
If=40;//in Ampere
Isc=200;//in Ampere
EL=1040;//in Volt
Eph=EL/sqrt(3);//in Volt
Zs=Eph/Isc;//in Ohm
Rs=0.2;//in Ohm
Xs=sqrt(Zs^2-Rs^2);//in Ohm
IL=19.2... |
cebe2d770f23b74565de810fda923c5d3682538e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH24/EX24.29/Ex24_29.sce | bbb4c542dc89e68b4ed31b1acfd5724ef74cc65e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,897 | sce | Ex24_29.sce | // Example 24_29
clc;funcprot(0);
//Given data
T_1=15+273;// K
p_1=1;// bar
T_5=1000;// K
dp_in=0.07;// bar
dp_re=0.1;// bar
R_c1=2;// Compression ratio
n_c=0.80;// Efficiency of compressor
n_c1=n_c;
n_c2=n_c;
dp_com=0.15;// bar
dp_rh=0.1;// bar
n_t1=0.87;// Efficiency of turbine 1
n_t2=0.7;// Efficien... |
a274f15214de9aa0d09fcd0bd0bd5a897bca76bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1016/CH3/EX3.8/ex3_8.sce | 6984eaa3460eab65585c86b9e2b9c4cb0cc7f910 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sce | ex3_8.sce | clc;clear;
//Example 3.8
//given data
h=6.625*10^-34;//Plank's constant
c=3*10^8;//speed of light in m/s
E1=10.2;//in eV energy
E2=12.09;//in eV energy
e=1.6*10^-19;//the charge on electron in C
//calcualtion
//principal quantum no are 2 & 3 respectively
W=c*h/(E1*e)*10^10;
disp(W,'wavelength in angstrom... |
1b48b9c600144741ea5fadc1d4c9c2623f1f31c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1286/CH3/EX3.8/3_8.sce | 096c33506ac2bc2e44c8342935a0947b2fac7809 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 230 | sce | 3_8.sce | clc
//initialisation if variables
m=1*10^-4//kg
v=0.0005//m^3
l=22.57*10^5//j
t1=15//c
p=6//kg/m^3
//calculations
H=m*l
h=v*p*(100-t1)*4.18
c=H/h
//results
printf(' specific heat of gas at constant volume= % 1f j',c)
|
a9bd4444c9f5da302f03d779e468722742e70794 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3773/CH4/EX4.1/Ex4_1.sce | aaf28c96d63c8300e60b93b46d9288adcc4472dc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 651 | sce | Ex4_1.sce | //Chapter 4: Radiation
//Example 4-4.1
clc;
//Variable Initialization
theta = 30 //Angle of radiation (degrees)
epsilon_0 = 8.854e-12 //Permittivity of free space (F/m)
I_dl = 10 //Current in length dl (A-m)
r = 100e3 //Distance of point from origin (m)
//Calculation
E_mag =... |
fdbb1c6fab77895c049fbb7e7db16f1d7af6b139 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH11/EX11.20/Example11_20.sce | 19f450ba7135019565c222955dfcb805bea4d220 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 585 | sce | Example11_20.sce | //Exa 11.20
clc;
clear;
close;
//Given data :
Vs=11;//kV
f=50;//Hz
D=2;//cm
d=0.5;//cm
epsilon_r=3.5;//relative permitivity
pf=0.05;//power factor
C=0.024*epsilon_r/log10(D/d)*10^-6;// F/km
disp(C*10^6,"Capacitance of the cable(micro F)");
Vp=Vs*1000/sqrt(3);//Volt
Ic=2*%pi*f*C*Vp;//A
disp(Ic,"Charging c... |
48c909ab9df3891e7daa1507484492e0d04d3cd2 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/calpol/factors.sci | 8e1dc8bccb6550e4bb6b16bfa97ce4ffc0a120fa | [
"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 | 858 | sci | factors.sci | function [lnum,lden,g]=factors(P,flag)
//Given a polynomial or rational P, returns in list lnum polynomials of
//degree 1 or two which are the factors of numerators of P.
// and in lden the factors of denominator of P. g is the gain.
// if flag=='c' unstable roots are reflected vs the imaginary axis
// if flag=='d' u... |
340b59734779b35ad8683db8c7c735e2b1e5cfe2 | 12d519f18a15ef7423dffa1727cb877966fcf913 | /scilab/xls_SelectWorksheet.sci | 5fb25aeebbaa8d7e4a9427a2afed2185f35b482d | [] | no_license | gviolato/gviolato.github.io | e9b799bf61dd345fe06760ebc296f49f467347b7 | 190748c14c115f63e366d2244a572de08daa7e5e | refs/heads/master | 2021-01-17T15:29:43.924914 | 2017-01-25T23:33:53 | 2017-01-25T23:33:53 | 22,399,267 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 460 | sci | xls_SelectWorksheet.sci | function ret = xls_SelectWorksheet(WorksheetName)
ret = %f;
Worksheet = 0;
r = %t;
while r
Worksheet = Worksheet + 1;
try
r = xls_SetWorksheet(Worksheet);
catch
r = xls_SetWorksheet(1);
break;
end
name = xls_Ge... |
f484da3f2143f1badb0924e7da73e0672d67d773 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH5/EX5.10/example_5_10.sce | ea0af2ee5dd23676ca8bd6532af44c4d1c720cb2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example_5_10.sce | syms H G1 G2 G3
//separating the two paths we get 1+1=2 in parallel combinations
//shifting take off point after 2*G3 and then after 2*G2*G3
a=(2*G2*G3)/(1+(2*G2*G3*H/(2*G3)))
b=a/(1+(H*a))
c=G1*b
Y=c/(1+(c*(1/(2*G2*G3))))
disp(Y,"C/R = ")
|
8e6d13e2ea79419d7f40b7068331a3643e824d36 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.0/Unix/scilab-2.0/macros/algebre/lusolve.sci | 2da958fe973c1bffcbb75fc090853324dc7a22b8 | [
"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 | 215 | sci | lusolve.sci | function res=lusolve(fact,b)
[lhs,rhs]=argn(0);
if rhs<>2 then error('bad call to lusolve: needs 2 inputs'), end
if type(fact) <> 15 then error('lusolve: first argument must be a list'), end
res=lusolve1(fact(3),b)
|
69949afb556c8ce8dc06aedbe78eb8dd6c89e757 | dd537a2a0c34c08c5c45eb32ecf0a6650d6aee81 | /A7.sce | c98e73c8065a072fd6a3af90d309856d20cad2da | [] | no_license | hadizainurin/DSP | 5855b1d19d90b5c284f73b19a6e9792403d7575b | ca873a6fdba7c655f681567d49a813bb3bd4cd8a | refs/heads/main | 2023-03-02T09:31:09.692702 | 2021-02-05T15:36:50 | 2021-02-05T15:36:50 | 324,384,788 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,299 | sce | A7.sce | //Reading the input of the sound
clc;clear;
cd ("C:\Users\User\Desktop\Important\DSP\Assignment6");
[y, fs, bits] = wavread("message.wav");
/* To plot te graph to get the cutoff frequency
//Clipping the original signal
n=length(y)
N=n/2;
x=(fs/2)/N;
y1=[0:x:((fs/2)-x)];
Y=fft(y); //Convert to frequency domain
clf(); ... |
7d2de29f8ac8c86646b3840a5c368b616eea780e | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/DEPENDENCIES/3_11_data.sci | dd6ce5b70072d1bd15ed01ab8222f5fcd3703f9e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 88 | sci | 3_11_data.sci | //Compression ratio
r=20;
//Cutoff percent
x=0.05;
//Ratio of specific heats
y=1.4; |
7f463b3d20ab3b8dd4858b8c5bc9c0f607a0d090 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH19/EX19.7/Ex19_7.sce | 768cf304efadab90deb258d6fd58d3ad4b38e0f9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex19_7.sce | clc;
Rin=20000;
rf=100000;
Vout1=-12;
Vout2=12;
Vin=2.4;
UTP=-(Rin/rf)*Vout1;
LTP=-(Rin/rf)*Vout2;
Vrin=(Vin-Vout1)*(Rin/(Rin+rf));
disp('V',UTP,"UTP=");//The answers vary due to round off error
disp('V',LTP,"LTP=");//The answers vary due to round off error
disp('V',Vrin,"Vrin=");//The answers vary due to ro... |
ccb4256a9585d3db976c6997959d9b9861343b60 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH6/EX6.1/Ex6_1.sce | 2607bd4574c9f62262f07bd63a7d6d5059b6f8eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex6_1.sce | clc;
//page no 186
//prob no. 6.1
//All frequencies in kHz
fc=1*10^3; //in kHz
W=15;
DSBl=fc-W; //lowest freq of DSB signal
DSBh=fc+W; //highest freq of DSB signal
disp(DSBh,'to',DSBl,'(a) The range of freq is from ');
BT=2*W;
disp(BT,'(b) Transmission bandwidth is ');
|
0b173ef93b518340abc78e56df18d0162ea9971a | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH8/EX8.16/ch8_16.sci | 7a6b480209630dbe23d06400967f2a9c5b982817 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | ch8_16.sci | //to find power angle,field current
clc;
j=sqrt(-1);
V=400;
Vt=V/sqrt(3);
pf=1;
Ia=50;
Xs=1.3;
Ef=Vt-j*Ia*Xs;
disp(-atand(imag(Ef)/real(Ef)),'power angle');
Pm=Vt*Ia*pf;
pff=.8;
Ia=Pm/(Vt*pff);
ang=acosd(pff);
Eff=sqrt((Vt*cosd(ang))^2+(Vt*sind(ang)+Ia*Xs)^2);
If=.9;
Iff=If*Eff/abs(Ef);
disp(Iff,'f... |
762e34115200a71a768e4ac8a0ceb66cf7846b6f | 9d59fb06cf0644f9c0c84aae7977eeff57116a45 | /1-RDMP/RDMP-3c.sce | 6f94687fc83f0d946b5cc099d2e36063fceb2aa9 | [] | no_license | aguadix/RQ | f353b8fa0e36828c8cca9af53f5c3275ed476a75 | 43e8a31003bf038b0cd72487868c760829b9797c | refs/heads/master | 2023-03-07T10:50:29.102260 | 2023-03-06T01:35:58 | 2023-03-06T01:35:58 | 53,548,175 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,098 | sce | RDMP-3c.sce | clear; clc;
// RDMP-3c.sce
// A => B
// No adiabático: serpentín
// SECTORES
N = 10; // divisiones del serpentín
// SISTEMA DE ECUACIONES DIFERENCIALES
function dxdt = f(t,x)
// Variables diferenciales
Ts = x(1:N)
CA = x(N+1)
T = x(N+2)
// Calor transferido del reactor al serpentín
i = 1:N; ... |
8c40a6faf4341dfcbaa2438a63a1b236ac300548 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2354/CH17/EX17.12/17_12.sce | 93e5f42ebbff6dcf8041f9e387d468a18f60a32b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | 17_12.sce | //example 17.12
clc; funcprot(0);
// Initialization of Variable
Nu=65.8;
k=0.028;
As=1.2*1.2;//area
Ts=350;//temperature
Tsurr=300;//temperature
sigma=5.67e-8;
epsilon=0.25;//emmisivity
h=Nu*k/0.3;
Pe=h*As*(Ts-Tsurr)+epsilon*sigma*As*(Ts^4-Tsurr^4);
disp(Pe,"allowable electrical power in W");
clear()
|
aa5926ebfa8fde1ad76ad9b1ecd70ee714577973 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH2/EX2.18/Ex2_18.sce | ebaa03689627d79b37975cd711da8d31c20a5678 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex2_18.sce | //Ex2_18
clc
L1 = 1*10^-3
L2 = 5*10^-3
LT = (L1*L2)/(L1+L2)
disp("L1 = "+string(L1)+"H")//inductance of coil 1
disp("L2 = "+string(L2)+"H")//inductance of coil 2
disp("1/LT = 1/L1 + 1/L2")
disp("LT = (L1*L2)/(L1+L2) = "+string(LT)+"H")//parallel inductance
|
531329b818131e134529d3dc810fcdd41421f8ff | a72a0b668d399097c37190a9306c802a64d086d0 | /Sample/GroundwaterModel/sswFinish.sce | 7d333a7c6d7c3c13375fe589a1a93b36d7caa181 | [] | no_license | CNH-Hyper-Extractive/simple-script-wrapper | e3038039d0ae592293e99b6dd7fff819d9784956 | 0165df0b1d4cf21fd7de1d5bbff42c60fbe9aab4 | refs/heads/master | 2020-05-18T15:41:57.217472 | 2014-07-01T05:15:16 | 2014-07-01T05:15:16 | 16,794,069 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 107 | sce | sswFinish.sce |
//
// This function is called once at the end of the simulation.
//
function[] = sswFinish()
endfunction
|
47b88bc3ab0df088bcbcf13224dff06f7d64fcca | 449d555969bfd7befe906877abab098c6e63a0e8 | /2048/DEPENDENCIES/poladd.sci | 79fcdabede22a866783cadcb2cdc28b7ccf9c2f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 344 | sci | poladd.sci | function [C,degC] = poladd(A,degA,B,degB)
[rA,cA] = polsize(A,degA);
[rB,cB] = polsize(B,degB);
if cA ~= cB | rA ~= rB
error('poladd: Inconsistent dimensions');
end
degC = max(degA,degB);
if degC >= degA
A = [A zeros(rA,(degC-degA)*cA)];
end
if degC >= degB
B = [B zeros(rB,(degC-degB)*cB)];
end
... |
7f2b40621a4ed644558cb8dd12d382bca652287d | 449d555969bfd7befe906877abab098c6e63a0e8 | /833/CH12/EX12.12/Ex12_12.txt | a7f1fd46dc256e6507b0a11cab1c100f52ff28f9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 621 | txt | Ex12_12.txt | //Caption:Find the dimensions of D and L
//Exa:12.12
clc;
clear;
close;
P=7.5//Power of induction motor(in KW)
p=4//Number of poles
f=50//frequency(in hertz)
V=415//Voltage applied of motor(in volts)
e=0.88//Efficiency
pf=0.87//Power factor
b=2.5//Ratio of pull out torque to full load torque
c=1.75//Ratio o... |
295f7ea72033ae1409cc3e26051b4f2b9cdab98f | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/CompressibleFlowSolver/Tests/RinglebFlow_P3.tst | e3c775fc0be7d9361ffee795308941864a060b28 | [
"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 | 1,072 | tst | RinglebFlow_P3.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>Euler, Ringleb Flow P=3</description>
<executable>CompressibleFlowSolver</executable>
<parameters>RinglebFlow_P3.xml</parameters>
<files>
<file description="Session File">RinglebFlow_P3.xml</file>
<file description="Restart File"... |
d0fcfadd7a97479d1200d43883619a810536e8eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/CH15/EX15.11/example_15_11.sce | 038a563d3630abfdadba4d9025ba7ca9614749a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 356 | sce | example_15_11.sce | // example 15.11
clc;
clear;
disp('The full scale count for ADC3511 is 1999 and for the ADC3711 is 3999. So, the largest value possible for the MSD in either case is 3 = 0011. clearly the MSB is not needed for th magnitue of the MSD. It is thus convenient to specif positive number when this bit is a 0 and a negtiv... |
cb4a1ad2cdbc7012bbc83025b9931da63eda3f9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH1/EX1.22/ex_22.sce | ddf259bc222210ed494825d0ed411e9d4115bea7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 302 | sce | ex_22.sce | //Example 22 // frequency
clc;
clear;
close;
k=100;//N/m
m=100;//gm
n1=((1/(2*%pi))*sqrt(k/(m*10^-3)));//sec^-1
m1=100;//gm
m2=200;//gm
mu=((m1*m2)/(m1+m2))*10^-3;//kg
fr=((1/(2*%pi))*sqrt(k/mu));//sec^-1
disp(n1,"in first case frequency is,(sec^-1)=")
disp(fr,"in second case frequency is,(sec^-1)=")
|
0e0fd5bd7c7a773f12b13ae41765942473c69d05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3363/CH16/EX16.11/Ex16_11.sce | 27dda0be1bf9b98bb6236ea6699e8b154aca1f1d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex16_11.sce | //Example 16.11, page 624
clc
E=200*1.6*10^-13//j/neutron
E=10^-11//Rounding off
p=E/(10^-3)
P=10^8//in watt
N=P/p
printf("\n The number of free electron present is %e",N) |
ae85380d9809420935dcfcb674ae987aff80c44f | 449d555969bfd7befe906877abab098c6e63a0e8 | /462/CH5/EX5.3/ex_5_3.sce | bbc7354e987321592ef96a2f919c94f8520bcfbc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 421 | sce | ex_5_3.sce | //example 5.3//
clc
//clears the screen//
clear
//clears already existing variables//
//conversion of given equation to its canonical POS form//
disp('given=> Y=(A+B)(A+C)(B+C'')')
disp('on solving')
disp('Y=(A+B+CC'')(A+BB''+C)(AA''+B+C'')')
disp('Y=(A+B+C)(A+B+C'')(A+C+B)(A+C+B'')(A+B+C'')(A''+B+C'')')
//us... |
0b62f2bd338e3e64d3230b0a357d38138d9a2e31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH9/EX9.3/9_3.sce | 9896b47c7c7d78c59ddccb07b80585b07a6fa441 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 637 | sce | 9_3.sce | clear;
clc;
printf("\t\t\tExample Number 9.3\n\n\n");
// boiling on brass plate
// Example 9.3(page no.-501-502)
// solution
Qawater_platinum=946.1;//[kw/square meter] from figure (9-8) heat flux for water platinum combination
Tw=117;// [degree celsius]
Tsat=100;// [degree celsius]
// from table (9-2)
Csf... |
82df043d6d406335ab83c2fe853082390003315f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2150/CH9/EX9.3/ex9_3.sce | c5804c14d9dc97b28f4371c6de2032389c70a8ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 186 | sce | ex9_3.sce | // Exa 9.3
clc;
clear;
close;
// Given data
scale= 20;// in µS/cm
gh= 3.2;//amplitude of the graph in cm
T= gh*scale;// in mV
disp(T,"The period of the waveform in µS is : ")
|
391922bc2eb3b899e13fa0ff304f904fe4129580 | 84ea66af72ab1c482a1a03fd2d8bdc74e9ad1668 | /Tutorial03-Curve_fitting/Scilab_code/errorfun.sci | 741ad63ea30f84e790708437b8100af526b4e622 | [] | no_license | FOSSEE/scilab-tutorials | c4a9464a5b163074566234e42659f99e2012ecc0 | 301609f6ef1653dee4fa2ed74bca3e6f7abc1308 | refs/heads/master | 2020-03-26T23:48:04.178016 | 2018-10-08T00:44:39 | 2018-10-08T00:44:39 | 145,567,949 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 180 | sci | errorfun.sci | //A function to compute error between computed data and measured data
function err = errorfun(x, time, measured_data)
err = (fit_function(time, x) - measured_data )
endfunction
|
ba48bee77eda9e1e7b69cb7fd36fa5a36222681e | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set8/s_Elements_Of_Mechanical_Engineering_N._M._Bhatt_And_J._R._Mehta_2339.zip/Elements_Of_Mechanical_Engineering_N._M._Bhatt_And_J._R._Mehta_2339/CH1/EX1.1.3/Ex1_3.sce | 4797d9fab6e8e97c5ce107ff0198b1a1dd0b1a2e | [] | 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 | 127 | sce | Ex1_3.sce | errcatch(-1,"stop");mode(2);
//Declaring values
Q=50;
W=40;
U=Q-W;
printf('Change in Internal Energy= %2.0f kJ',U);
exit();
|
ab8a7aea42e0bb4c2975d977019f51f0566a2efd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2090/CH3/EX3.4/Chapter3_Example4.sce | 643f00dae919c5d5cc9b0cd458d663ddb503e1e4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,296 | sce | Chapter3_Example4.sce | clc
clear
//Input data
CO=12;//The composition of carbondioxide of combustion by volume in percentage
C=0.5;//The composition of carbonmoxide of combustion by volume in percentage
O=4;//The composition of oxygen of combustion by volume in percentage
N=83.5;//The composition of nitrogen of combustion by volume ... |
98b56418c6c2cc9cdbe709efe290a87f0db536c3 | aa71d456514d0b21d0f207d4c14ee71876029f21 | /aws-java-sdk-core/src/test/resources/resources/profileconfig/MultipleProfilesWithCsmProperties.tst | 252f3288109f34c698a2bcd4312325f5d920b04e | [
"Apache-2.0"
] | permissive | ckiosidis/aws-sdk-java | ff89fb1acd6f27a3792a9c86026b58e2b19a7d95 | 52c0498762e61e4c2d5cbc293cee61cd614a71f6 | refs/heads/master | 2020-03-29T05:34:20.817581 | 2018-09-21T19:28:54 | 2018-09-21T19:28:54 | 149,588,289 | 0 | 0 | Apache-2.0 | 2018-09-21T19:28:55 | 2018-09-20T09:54:04 | Java | UTF-8 | Scilab | false | false | 134 | tst | MultipleProfilesWithCsmProperties.tst | [aws_csm_1]
csm_enabled = true
csm_port = 1234
csm_clientid = foo
[aws_csm_2]
csm_enabled = false
csm_port = 5678
csm_clientid = bar
|
2a11c397c94d88731974c26f3872b94ffc6fcc44 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1073/CH6/EX6.12/6_12.sce | 301b1b7afa15bbfefe00215f38c4da2fb4608c3a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,720 | sce | 6_12.sce |
clc;
clear;
//Example 6.12
Tf=353; //[K]
T=273 //[K]
mf_dot=10000; //Feed [kg/h]
ic=0.07; //Initial conc of glycerine
fc=0.4; //FinaL CONC OF GLYCERINE
//Overall glycerine balance
m3dot_dash=(ic/fc)*mf_dot //[kg/h]
mv_dot=mf_dot-m3dot_dash //... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.