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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2c243b988e6068b1c61f66630cf4dc20ad40ed67 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3281/CH2/EX2.9/ex2_9.sce | 2fad2b547e2ed034b08dc6667de4d2696b154ad3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 219 | sce | ex2_9.sce | //Page Number: 96
//Example 2.9
clc;
//Given,
c=3D+8; //m/s
fc=3D+9; //Hz
//Cutoff wavelength
lamc=c/fc;
a=lamc/2;//m
a=a*100;//cm
disp('Dimensions:');
disp('cm',a,'a:');
b=a/2; //cm
disp('cm',b,'b:');
|
094b4c896828372f4c09bad13e615d1fa6fe383d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH16/EX16.7/Ex16_7.sce | 643ffbedd4b62c8745d7a204c4fd10294328d06f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 922 | sce | Ex16_7.sce |
// Examle 16.7
Il=100; // Series field current
Rse=0.1; // Resistance series field
Vse=Rse*Il; // Voltage drop across series field (Vse)
disp('Voltage drop across series field (Vse) = '+string(Vse)+' Volt');
V=250; // Supply voltage
Vsh=... |
eb2f3cac8569f223069171dc6f07ce2fce00f976 | 299ec76be485b8d1574b9216bbe8ac6763b2ade3 | /AI_Lab_Ex4/Lab4_ex2.sce | 7904c9df5eb883e389aca8bec86c82e29bd8e315 | [
"MIT"
] | permissive | parth2608/Artificial-Intelligence-Basics | 65d42ff4e495c11a2ba536e730714570a58b56c7 | b3a0378c7f5b9dbad91df9a6c29b5f30b865e088 | refs/heads/master | 2022-11-21T01:41:07.713381 | 2020-07-15T07:00:34 | 2020-07-15T07:00:34 | 279,790,254 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 459 | sce | Lab4_ex2.sce | X = [1, 2, 3, 4, 5];
Y = [10, 40, 50, 78, 83];
m = length(X);
sum_ = 0;
loss_i = 1;
for a = 1:0.01:100
for i = 1:m
H(i) = a * X(i);
sum_ = sum_ + (H(i) - Y(i))**2;
end
loss(loss_i) = sum_ / (2*m);
loss_i = loss_i + 1;
sum_ = 0;
end
mprintf("Minimum value ... |
84678b0647fbe2d737f00daac461ad351393ea5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH26/EX26.19/Ex26_19.sce | cceb47fc27c9ec72f34f4ae54a74f3805e211acd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 769 | sce | Ex26_19.sce | // 1 APPENDIX. Ex no 19. Page no 657
// Initilization of variables
F=2 // kN
W=1 // kN
// Co-ordinates as matrices
A=[0,0,0]
C=[0,0,1.2]
B=[0,0,2.5]
D=[-1,1,0]
E=[1,1,0]
F=[0,0,1]
G=[0,0,2]
// Force vector
f=[0,-2,0]
// Weight vector
w=[0,-1,0]
// Calculations
// we have 5 unknowns: A_x,A_y,A_z,T_FE & T_GD
// we define... |
cddfbf9f93791d1c7f1c5b3800ba05044cf34cd5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3739/CH3/EX3.1/EX3_1.sce | c9c7910c882c66bbafbb7192330444997624296b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 802 | sce | EX3_1.sce | //Chapter 3, Example 3.1, page 61
clc
//Initialisation
h=2 //height in Km
h1=5 //height in Km
//Calculation
t2=290-(6.5*h) //Proposed formula for height h=2Km
p2=950-117*h
e2=8-3*h
t21=294.98-5.22*h-0.007*h**2
p21=1012.82-111.5... |
fecd6109dbabce3336d7c6cfc636a7d0bc05b047 | 975bff4cfbf67b318995dc4c925cb18317ae38a3 | /OraclePH.sce | 49b08efe94355ffbe4b73acef4641ce94687a5e2 | [] | no_license | VictorSanh/Optimisation | 98da003def697207e0fb967abe07b99ac7afc7e1 | 5dc3a2dec09982d066ee1e0504cecd0a6f2b71a6 | refs/heads/master | 2021-01-18T21:16:30.468266 | 2016-05-21T16:46:13 | 2016-05-21T16:46:13 | 55,126,828 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,284 | sce | OraclePH.sce |
function[F, G, H, ind] = OraclePH(qc, ind)
// Si ind = 2, on calcule seulement F
if ind == 2 then
F = 1/3*(q0+B*qc)'*(r .* (q0+B*qc) .* abs(q0+B*qc)) + pr'*Ar*(q0+B*qc) ;
// Si ind = 3, on calcule seulement G
elseif ind == 3 then
G = B'*Ar'*pr + B'*(r.*(q0+B*qc).*abs(q0+B*qc)... |
8ce04a0b28ff612106995c6e08005e482aad6fa2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2066/CH8/EX8.4.c/8_4c.sce | 2d963e2ea5d042019356f256d5e15ba355a96aea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | 8_4c.sce | clc
clear
//Initialization of variables
T1=584.6 //R
g=32.2 //ft/s^2
k=1.4
R=53.3 //ft-lb/lb R
V1=600 //ft/s
T2=519.6 //R
//calculations
Nm1=V1/(sqrt(k*g*R*T1))
Nm22= ((1+ (k-1)/2 *Nm1^2)/(T2/T1) -1)*(2/(k-1))
Nm2=sqrt(Nm22)
Ar= Nm1/Nm2 *((1+ (k-1)/2 *Nm2^2)/(1+ (k-1)/2 *Nm1^2))^((k+1)/(2*(k-1)))
//result... |
682f5d2be6cafdfd5395f883d4f8238cbade9107 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH12/EX12.17/12_17.sce | c166244bc55f235c2093f9fe3ac3497ef09e3dc2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 164 | sce | 12_17.sce | clear; clc; close;
Pd_temp0 = 80;
T1 = 100;
T0 = 25;
D = 0.5;
Pd_temp1 = Pd_temp0-(T1-T0)*(D);
disp(Pd_temp1,'Maximum power dissipation(Watts) = ');
|
8299ca87b2da92a74dfa4ef8091a045d4f511ad9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH5/EX5.27/5_27.sce | 341e4ad30f6d18539778b8ef56fc4a7479d01a45 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sce | 5_27.sce | clc
//Initialization of variables
g=981 //cm/s^2
H=20 //cm
err=3/100
//calculations
dH=err/2.5 *H
v0=sqrt(2*g*dH)
//results
printf("Required velocity = %.2f cm/s",v0)
//The answer is a bit different due to rounding off error
|
42d9e7b4bf675bff360b30e1ac5777e42672d132 | 33d7960e39a3e71591538dccbe1dd4014c377e78 | /Sample Solution/CompFin_2017_SS_Exercise_12_QF.sce | 171aecc858c78d1e690ac3918312209a5913361e | [] | no_license | wiiwins/Compfin | 529e2997994babb9e3795283ddbd8ec782131148 | 2629685421e970a369ec797b76dda3d2803bcbcf | refs/heads/master | 2020-05-18T01:25:39.357847 | 2019-06-27T11:21:46 | 2019-06-27T11:21:46 | 184,090,400 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,788 | sce | CompFin_2017_SS_Exercise_12_QF.sce | function V_0 = UpOutPut_BinMod (S_0, r, sigma, T, K, B, M)
// Compute values of u, d and q according to Equations (2.4)--(2.7).
delta_t = T/M;
alpha = exp(r*delta_t);
beta = 1/2 * ( 1/alpha + alpha*exp(sigma^2*delta_t) );
u = beta + sqrt(beta^2-1);
d = 1/u;
q = ( exp(r*delta_t)-d ) / ( ... |
47a56354b85aabc8a51d5557d46ef133b085fcb1 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Ashe Sphere Frenzy Strafing.sce | b42e62493a9016ea4172296eb59b5d3d2d42aa99 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,175,507 | sce | Ashe Sphere Frenzy Strafing.sce | Name=Ashe Sphere Frenzy Strafing
PlayerCharacters=Clicker
BotCharacters=TileFrenzyStrafing Sphere.bot;TileFrenzyStrafing Sphere.bot;TileFrenzyStrafing Sphere.bot
IsChallenge=true
Timelimit=61.0
PlayerProfile=Clicker
AddedBots=TileFrenzyStrafing Sphere.bot;TileFrenzyStrafing Sphere.bot;TileFrenzyStrafing Sphere.bo... |
62e3173093ece81b31c0551e860e85c518121300 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH7/EX7.17/exa_7_17.sce | e325c86c0647603f60e3a3de8179e74ca6d37dfa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | exa_7_17.sce | // Exa 7.17
clc;
clear;
close;
// Given data
r= 100;// in ohm
R2= 1000;// in ohm
R3= 500;//in ohm
R4= 1000;//in ohm
C= 3;// in micro F
C= C*10^-6;// in F
Rx= R2*R3/R4;// in ohm
disp(Rx,"Value of Rx in ohm")
Lx= C*R2/R4*(r*(R3+R4)+R3*R4);// in H
disp(Lx,"Value of Lx in H")
|
0918bd66be7a69c0ef78010a714dab5f8a4c52a1 | cd33d80e77d439f6ccf245975860abfcea63edd4 | /2gisTestLinux/test1 1.tst | f181c24051780fbbb468e3a7486c962f390b4e45 | [] | no_license | fmalchemist92/2gisTestLinux | 253a81fdd707a369ba8a7210a8be89ef7e74e1d8 | 5f8c150d415cdcb30460c3dac792dd7d243db837 | refs/heads/master | 2020-09-17T00:49:16.537246 | 2019-11-28T13:26:26 | 2019-11-28T13:26:26 | 223,929,581 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 31 | tst | test1 1.tst | war
war,
,war
,war,
newar
warne |
732b058f877dc6a50196623b53f71a5059b3e28f | 1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08 | /Scilab/PCIeGen3/HSpiceUtilities/bak/HSpiceSupervisorTest.sci | 15247a8893ea4042e0b4b5b139ec4d451b8ffa36 | [] | no_license | lrayzman/SI-Scripts | 5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d | 9ab161c6deff2a27c9da906e37aa68964fabb036 | refs/heads/master | 2020-09-25T16:23:23.389526 | 2020-02-09T02:13:46 | 2020-02-09T02:13:46 | 66,975,754 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 15,293 | sci | HSpiceSupervisorTest.sci | // HSpice automation supervisor script example
//
// (c)2008 L. Rayzman
// Created : 10/17/2008
// Last Modified: 10/20/2008
//
// TODO:
//
clear;
getf("HSPiceUtilities.sci"); // Include HSpice utilities
//////////////////////////////////////SPECIFY///////////////////////... |
cf9d025701c1fdcce6e8e51366b8a143212f7670 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/m2sci/%l2sci.sci | 6b5d9948a954074cc0df80bbf10f1a6968b4fc4d | [
"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 | 479 | sci | %l2sci.sci | function [stk,txt,top]=%l2sci()
// \
//!
// Copyright INRIA
txt=[]
s2=stk(top);s1=stk(top-1);top=top-1;
if s2(2)=='2'|s2(2)=='1' then s2(1)='('+s2(1)+')',end
if s1(2)=='2' then s1(1)='('+s1(1)+')',end
if part(s1(1),1)=='-' then s1(1)='('+s1(1)+')',end
if s1(3)=='1'&s1(4)=='1' then
stk=list(s1(1)+'\'+s2(1),'1',s2(3),... |
6550c2c4be3a393c687446f37f30d1b190def14e | 449d555969bfd7befe906877abab098c6e63a0e8 | /767/CH4/EX4.8.5/Ch04Exa4_8_5.sci | 652fca7b19f3133dbf5f568f20cba21bea942e2b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,191 | sci | Ch04Exa4_8_5.sci | // Scilab code Exa 4.8.5 : Identifying the nucleus and energy released in the given reaction : page no. 197 (2011)
// Declare three cells (for three reactions)
R = cell(4,3);
// Enter data for first cell (Reaction)
R(1,1).entries = 'H'; // Element
R(1,2).entries = 1; // Atomic number
R(1,3).entries = 2; // Mass nu... |
bf0593f1eb5a24ee34cf26a30467e223d8d7ae70 | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/Intersectcrvs.sci | 59b4fdcce3ea45f5cdb0e7fc805623076d995d7e | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 591 | sci | Intersectcrvs.sci | // 08.05.18 Koshikawa
// 08.05.19 Changed
// 08.06.03
// 09.11.12
// 09.11.14 debug
function PL=Intersectcrvs(varargin)
Nargs=length(varargin);
Eps=10^(-4);
Tmp=varargin(Nargs);
if type(Tmp)==1 & length(Tmp)==1
Eps=Tmp;
end
G1=varargin(1);
if Mixtype(G1)==1
G1=list(G1);
end;
G2=varargin(2);... |
6b8e7b7b7577b0a1c2041738d69beeb476d0d6b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /243/CH7/EX7.4/7_04.sce | f72e01b88bfa168567762106cf9566701ba6609d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 494 | sce | 7_04.sce | //Example No. 7_04
//Gauss Jordan Elimination
//Pg No. 228
clear ; close ; clc ;
A = [ 2 4 -6 ; 1 3 1 ; 2 -4 -2 ];
B = [ -8 ; 10 ; -12 ];
[ar,ac] = size(A);
Aug = [ 2 4 -6 -8 ; 1 3 1 10 ; 2 -4 -2 -12 ];
disp(Aug)
for i = 1 : ar
Aug(i,i:ar+1) = Aug(i,i:ar+1)/Aug(i,i) ;
... |
40212d3e97cbeedefa7dde08c126ced35e63c49c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH7/EX7.22/7_22.sce | 8b2a7e773bba1ac40a756959e4bea3eaaaaaaeaf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 700 | sce | 7_22.sce | clc
clear
//Input data
B=32;//Brake horse power in kW with all cylinders working
B1=21.6;//BHP with number 1 cylinder cut out in kW
B2=22.3;//BHP with number 2 cylinder cut out in kW
B3=22.5;//BHP with number 3 cylinder cut out in kW
B4=23;//BHP with number 4 cylinder cut out in kW
//Calculations
I1=B-B1;//I... |
8ecc5b4fa12d05152a0cab46dbc4178d37d952fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2138/CH5/EX5.1/ex_5_1.sce | cd44d9845943cf94410b31ff99aba513a95a1473 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 206 | sce | ex_5_1.sce | //Example 5.1: E.C.E
clc;
clear;
close;
//given data :
t=200; // time in sec
M=111.83; // silver in mg
I=0.5; // current in A
Z=(M/(I*t*1000))*1000;// electro-chemical-equivalent
disp(Z,"E.C.E,Z(mg/C) = ")
|
c810aef502338b1f151dcf80210e6e7df2e254d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH7/EX7.4/Ex7_4.sce | 600dae6fda5d89d8754cc186a0f5094c96aced28 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 192 | sce | Ex7_4.sce | clear
//Given
P1=100.0 //W
P=1100.0 //W
V=250
//Calculation
P2=P-P1
R=V**2/P2
//Result
printf("\n The value of unknown resistance is %0.3f ohm", R)
|
2a75a9cecbe71d5862e84e1e1ef2cc73181fd4a2 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.1/Unix/scilab-2.1/macros/percent/%spas.sci | aaf70a3ae5438b656ae7fe2c2eb44c425691d089 | [
"MIT",
"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 | 160 | sci | %spas.sci | function s=%spas(a,b)
// %spas - adds a sparse matrix and a scalar s
//!
if size(b)==[-1 -1] then
[m,n]=size(a)
s=a+(b+0)*speye(m,n)
else
s=full(a)+b
end
|
614d4c2dd933acec46bdf07670eaa7756652ae64 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1730/CH3/EX3.5/Exa3_5.sce | ca38df2e42fb1d99f3d4597e2b257ad62a999fc1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Exa3_5.sce | //Exa3.5
clc;
clear;
close;
// given data
n_i=1.4*10^18;// in m^3
N_D=1.4*10^24;// in m^3
n=N_D;// (approx)
p=n_i^2/n;
// let Ratio of electron to hole concentration = r
r=n/p;
disp("Ratio of electron to hole concentration is : "+string(r)); |
fe2d79eb02f86017da5a8063b20a4c4f6e996e40 | 06a62d768e69fd9dda11b30011c252807e301813 | /myCubeRoot.sci | 6d367cf16b9d3d83e565d094260ed58bd23b4a87 | [] | no_license | vikram-niit/matlab | 36ce3d9539629128251eab060164ce81c03aa690 | da8aeb4d727c47474d37676650664bd028d7e41d | refs/heads/master | 2020-03-18T13:40:37.068765 | 2018-05-25T03:51:55 | 2018-05-25T03:51:55 | 134,800,217 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 672 | sci | myCubeRoot.sci | function [x,n] = myCubeRoot(a,tol)
// Use iterative algorithm to compute cube root of a real number
// Inputs
// a Value for which cube-root is to be found
// tol Tolerance up to which the result is to be found
// Outputs
// x Approximate value of cube root found
// n ... |
249f056cc06e5a70427e73408204de77eb477888 | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH13/EX13.07/13_07.sce | 111969636c528e9bb149176c9475ca598550cbd7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | 13_07.sce | //Problem 13.07:
//initializing the variables:
DG0fO2 = 0; // cal/gmol
DG0fCO = -32781; // cal/gmol
DG0fCO2 = -94258; // cal/gmol
Tk = 298; // in K
R = 1.987; // cal/gmol.K
//calculation:
DG0 = DG0fCO - 0.5*DG0fO2 - DG0fCO2
K = %e^(-1*DG0/(R*Tk))
printf("\n\nResult\n\n")
printf("\n chemical reaction... |
041ea67a36b98fc6b710749fb8e7130ca267d330 | 449d555969bfd7befe906877abab098c6e63a0e8 | /629/CH4/EX4.3/example4_3.sce | 783c2a93049c9e4973cd746367700a98bdfa3553 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 580 | sce | example4_3.sce | clear
clc
//Example 4.3 PRESSURE IN A DECELERATING TANK OF LIQUID
p1=0;
Gamma=42; //[lbf/ft^3]
g=32.2; //[ft/s^2]
al=-10; //[ft/s^2]
l=20; //[ft]
//Euler's equation along the top of tank, dp/dl=-Gamma*l/g
p2=p1-Gamma*al*l/g //[psfg]
//1kPa=20.88psfg
printf("\n(a)The pressure at the top front, p = %.f psfg (=... |
d822fb3395571aa0073a1c6195ae17bdfd8c1c89 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.19_10.tst | 4fc20654e06fa42ff9aa7038abe44446ddaab920 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 376,060 | tst | 5.19_10.tst | 19 84:1 705:1 966:1 1214:1 1895:1 2088:1 2221:1 2238:1 2503:1 2533:1 2623:1 2891:1 2941:1 4003:1 4690:1 4696:1 4701:86 4852:1 4986:1 5220:1 5396:1 5987:1 5999:1 6139:1 6620:1 6814:1 7233:2 7241:1 7283:1 7538:1 7700:1 7880:1 8268:1 8766:1 9003:1 9189:1 9193:1 9293:1 9878:2 10314:1 10380:1 10382:1 10481:1 10598:1 10658:1... |
819f54b6b36e3f3eaf641490e6efaa557514a054 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.113/EX2_113.sce | a413668ec8996d7572f251446ad15bb9267bae0f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 334 | sce | EX2_113.sce | //example-2.113 pg no -149
Wo=9.798*10^3;
Fo=1559.39;
C=2;
R=10*10^-6;
L=10^-3;
D.R=L/(C*R); //DYNAMIC RESISTANCE
Q=(1/C)*((L/R)^0.5);
B.W=Wo/Q; //BAND WIDTH
disp('i) DYNAMIC RESISTANCE = '+string (D.R)+ ' ohm ');
disp('ii) Q = '+string (Q)+' ');
disp('iii) BAND WIDTH = '+string (B.W)+'rad/s... |
fe221fc562b4983cd94b66bcf002e5bf85182099 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3835/CH6/EX6.12/Ex6_12.sce | 84e49996d14d3f5697b9e5431d6f3cfacacb0508 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 250 | sce | Ex6_12.sce | clear
//
//case 1
//2300 winding used as secondary
//given and derived
st=150
v1=13800
v2=2300
a=(v1-v2)/v2
b=a+1
sat=(6*150)/5
printf("\n sat= %0.1f Kva",sat)
//case 2
v1=13.8
v2=11.5
a=(v1-v2)/v2
sat=((1+a)/a)*150
printf("\n sat= %0.1f kva",sat)
|
6be6b53c85ebd0d79e63381c7131957fc9e76bba | 449d555969bfd7befe906877abab098c6e63a0e8 | /2318/CH5/EX5.8/ex_5_8.sce | 7c5c71713064eab24095e8a193c261cb85265c33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 312 | sce | ex_5_8.sce | //Example 5.7 // Shunt resistance
clc;
clear;
close;
//given data :
N=800;// turns
I=10;// in A
reluctance=150000;// in AT per Wb
fi=(N*I)/reluctance;
K=.15*10^-3;// in Wb turns/ division
rs=0.025;// in ohm
Ns=1;
theta=120;//divisions
S=(K*rs*theta)/((fi*Ns)-(K*theta));
disp(S,"The shunt resistance,S(ohm) = ")
|
fe909a16f288719aa86166f9472779f4e584cc90 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH2/EX2.12/Ex2_12.sce | b703052fbffdfe13a088dcbf4ee298693fd6370d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 143 | sce | Ex2_12.sce | //EX2_12 PG-2.43
clc
Tf_min=1;//fall time in micro second
Trr_max=Tf_min/10
printf("the maximum recovery time is %.1f micro sec",Trr_max)
|
e10284091c7c06cf7d8b98d09c2e26ce3595144e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1442/CH13/EX13.7/13_7.sce | 0e78f8770a889d8f89e0911cc4470ea87c824805 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 508 | sce | 13_7.sce | clc
//initialisation of variables
vi= 0.0009992 //m^3
T= 60 //C
T1= 20 //C
T2= 40 //C
vi1= 0.0010042 //m^3
vi2= 0.0009886 //m^3
v= 0.000951 //m^3
v1= 0.0009992 //m^3
v2= 0.0009956 //m^3
//CALCULATIONS
B= (vi1-vi2)/(vi*(T-T1))
Kt= (v1-v2)/(v*(T2-T1))
Et= 1/Kt
//RESULTS
printf (' volume exapansion coeffic... |
d674940718d9182a3e3c085bb3eafff9231af683 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1592/CH1/EX1.1/Example1_1.sce | 7481ebe254839db3b92388bf5b3c3e2027887aa9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 398 | sce | Example1_1.sce | //Scilab Code for Example 1.1 of Signals and systems by
//P.Ramakrishna Rao
//Determine whether the given signal is periodic or not
//x(t)=10*(cos(10*pi*t))^2
clc;
clear;
syms t;
x=10*(cos(10*%pi*t))^2;
disp(x,'x(t)');
t=0:0.01:1;
x=10*(cos(10*%pi*t))^2;
t=0:0.01:1;
plot(t,x,'r')
title('x(t)');
xlabel('Ti... |
6d58d35877b4c0dfb08edb0049fdce6fdf39480c | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testfunction.sce | 2632df5556e0e7e60ac14b4e779ca7e1c4fc2cd3 | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 66 | sce | testfunction.sce | function y=foo(x)
y=1+x^2
endfunction
foo(2) // returns 5
|
4bafdb8b1d395ab6ed9fb3b3d73060d7e69617c9 | a159f59d19e2b03b234e9c2977ba4a932180e648 | /Software/GreenScilabV0.9/env/2LeafAreaIndex.sci | da751c23d5cff596ceee088bbbdc89437bb602d8 | [] | no_license | OpenAgricultureFoundation/openag_sim | e052bbcc31b1d7f9b84add066327b479785f8723 | 425e678b55e24b5848d17181d25770175b8c2c3f | refs/heads/master | 2021-07-01T06:25:08.753260 | 2017-09-20T21:44:18 | 2017-09-20T21:44:18 | 80,540,145 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 251 | sci | 2LeafAreaIndex.sci | LAI
0.01118
0.01476
0.02032
0.02834
0.03961
0.05524
0.07664
0.10554
0.14399
0.19430
0.25887
0.33990
0.43896
0.52272
0.62880
0.74310
0.85958
0.97150
1.07201
1.15493
1.21549
1.25077
1.25993
1.24408
1.20588
1.14898
1.07750
|
b44aa4be930ca06d5394615a228d290668bd004a | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/mtlb/mtlb_min.sci | 0d875193e6fb23a3b37964528b19a18bd3a2ef61 | [
"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 | 319 | sci | mtlb_min.sci | function [r,k]=mtlb_min(a)
// Copyright INRIA
// Copyright INRIA
if ~isreal(a,0) then
if size(a,1)==1|size(a,2)==1 then
[r,k]=min(abs(a))
r=a(k)
else
[r,k]=min(abs(a),'r')
r=a(k,:)
end
else
a=real(a)
if size(a,1)==1|size(a,2)==1 then
[r,k]=min(a)
else
[r,k]=min(a,'r')
end
end
|
4bd4fd6f3f6567591dbd2eddec5dadfb687318b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH18/EX18.10/example10_sce.sce | cb81f9b2617df278b296e370c4de6dac36d24582 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example10_sce.sce | //chapter 18
//example 18.10
//page 785
printf("\n")
printf("given")
I1=1*10^-3;Vref=1.25;Vo=6;Vs=15;Il=200*10^-3;
R1=Vref/I1
R2=(Vo-Vref)/I1
Pd=(Vs-Vo)*Il;
printf("regulated power dissipation is %3.2fW\n",Pd) |
e419c1cf935891d81c1a3223e032c5f10bfa1429 | f2068f2734a1b9080ea2db4455a5fc3581ab0a1c | /plus_tau_cont-с.sci | 9300f81fcdec1119b569cfefb3857018e09efda0 | [] | no_license | NnataKha/Conflict-models-with-attractive-interaction | 5a9bc20603f05cfefa5283db453bc377ff68ff15 | afc53eff31d1d16134b76fde0b51698abc4a9c67 | refs/heads/master | 2020-03-16T18:48:14.182188 | 2018-05-10T11:17:25 | 2018-05-10T11:17:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,673 | sci | plus_tau_cont-с.sci | clear;
// function that determines p_i
function y=fun1(x)
y=sin(4*x*%pi)+1;
endfunction
// function that determines r_i
function y=fun2(x)
y=cos(2*x*%pi)+1;
endfunction
// function that determines tau
function y=fun3(x)
y=1/(x+1);
endfunction
cp=intg(0,1,fun1);
cr=intg(0,1,fun2);
ct=intg(... |
9befc696a44409b6c0d2c93032cb6943f740a567 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set4/s_Design_With_Operational_Amplifiers_And_Analog_Integrated_Circuits_S._Franco_929.zip/Design_With_Operational_Amplifiers_And_Analog_Integrated_Circuits_S._Franco_929/CH1/EX1.3/Example1_3.sce | 62a952ae5f9b341f963fe2122b0e1f1ac123450b | [] | 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 | 281 | sce | Example1_3.sce | errcatch(-1,"stop");mode(2);//Example 1.3
;
;
R1=10*10^3;
R2=100*10^3;
Ri=R1;//Input Resistance
Ro=0;//Output Resistance
A=-(R2/R1);// Ideal Overall Gain
printf("Ri=%.2f kohms",(Ri/1000));
printf("\nRo=%.f ohms",Ro);
printf("\nA=%.2f V/V",A);
exit();
|
688e08a09bbb426111a1b74232d796ea1b407f84 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1883/CH5/EX5.15.2/Example5_23.sce | 45c8639da19c077a5da79f608d9c2341e08fc6a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 441 | sce | Example5_23.sce | //Chapter-5,Example5_15_2,pg 5-42
//En=(n^2*h^2)/(8*m*e*L^2) n=1,2,3,....
//as width 'L' gets double ,the ground state energy becomes one-fourth
E=5.6*10^-3 //Ground state energy of an electron
E_new=E/4 ... |
d77254c24974ac79577e6a010bf10c352b50d53d | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH1/EX1.3/Chap1_Ex3.sce | c31291850b8ddeb481b4a611f355e2d3397ec6ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 943 | sce | Chap1_Ex3.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-1,Example 3,Page 7
//Title:Pressure drop
//================================================================================================================
clear
clc
//INPUT
rho_water=1000;//density of water... |
88188648743d5b1643094165270f0d2494b626d1 | 7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2 | /Scilab/virtual/2dof_controller/twodof_para.sce | dc52942272bac7c7a237f5254fe365a0556e9ffc | [] | no_license | advait23/sbhs-manual | e2c380051117e3a36398bb5ad046781f7b379cb9 | d65043acd98334c44a0f0dbf480473c4c4451834 | refs/heads/master | 2021-01-16T19:50:40.218314 | 2012-11-16T04:11:12 | 2012-11-16T04:11:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,358 | sce | twodof_para.sce | mode(0)
global Rc Sc Tc gamm
s=%s;
z=%z;
//TFcont = syslin('c',-280.14/((s-31.32)*(s+100)*(s+31.32)));
TFcont = syslin('c',0.593/((47.21*s+1)*(1.373*s+1)))//second order
//TFcont = syslin('c',0.594/(49.19*s+1))//first order
SScont = tf2ss(TFcont);
//TFdisc=ss2tf(SScont);
Ts = 1;
[B,A,k] = myc2d(SScont,Ts);
//polynomi... |
188b8ba8fce6e28fded20168a375836c8abeac25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH11/EX11.9/11_9.sce | 38040ca61a2d81854c39c3d5c6cf419a04a324a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 443 | sce | 11_9.sce | clc;
clear;
a=0.82 //cell parameter in nm
b=0.94 //cell parameter in nm
c=0.75 //cell parameter in nm
h=1 //x intercept of parallel plane
k=2 // intercept of parallel plane
l=3 //z intercept of parallel plane
//calculation
d_123=((h/a)^2+(k/b)^2+(l/c)^2)^(-1/2)
d_246=d_123/2
mprintf("The interplanar distan... |
cb39fccd979afdec5570fe241c8b471a5081a715 | 449d555969bfd7befe906877abab098c6e63a0e8 | /599/CH7/EX7.9/example7_9.sce | 2f74ba6ea2efba74523993117f33d3417e59dc6d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 883 | sce | example7_9.sce |
clear;
clc;
printf("\t Example 7.2\n");
//part(i)
a1=229.7; //solubility at 60 degree
a2=174.7; //solubility at 60 degree
t1=68; // percentage of sodium nitrate
t2=30.34;
x1=a1/329.7 *100; //percentage of saturated solution at 50 degree
tw=(t1/32)/(x1/t2); ... |
51046d4debd55a47d1fe4b2582ab7be3db963583 | 449d555969bfd7befe906877abab098c6e63a0e8 | /964/CH6/EX6.9/6_9.sce | b3923f09f441b7c935cd33afff10d2cf12492b19 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 891 | sce | 6_9.sce | //clc()
//f(x) = x^3 - 5*x^2 + 7*x -3
//f'(x) = 3*x^2 - 10*x + 7
disp("standard Newton Raphson method")
for i = 1:7
if i == 1 then
x(i) = 0;
else
x(i) = x(i-1) - ((x(i-1))^3 - 5*(x(i-1))^2 + 7*x(i-1) -3)/(3*(x(i-1))^2 - 10*(x(i-1)) + 7);
et(i) = (1 - x(i)) * 100 / 1;
... |
0218fca466cffd16a322d00a79284c8ecb882e85 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH12/EX12.3/12_3.sce | 2bcb11b871d30dc1feb605b96ab5f1d0a664dbc3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 275 | sce | 12_3.sce | //Height from which stone fell
//refer fig.12.7
//Let the stone be dropped from A at a height h above window
//h=(g*t^2)/2 ...(1)
//h+2.45=((g)*(t+0.5)^2)/2 ...(2)
//from (1) and (2)
t=0.2495 //sec
g=9.81 //m/sec^2
h=(g*t^2)/2 //m
printf("\nh=%.3f m",h)
|
92e5332d9bf832b2d8500a9bea57bf80f0d1af76 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH16/EX16.12/Ex16_12.sce | bf4cc4278083aa872949939c481313ebb5854303 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 114 | sce | Ex16_12.sce | clc;
Idc=0.2;
Vdc=30;
C1=100;
C2=100;
L=5;
f=50;
RL=Vdc/Idc;
y=5700/(L*C1*C2*RL);
disp('%',y*100,"y=");
|
1c980815d6911a831ed91ac076f05c57526bda8c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1316/CH2/EX2.10/example2_10.sce | 7417d62b65de5abccb5df211b11b1ad69352bc0c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 510 | sce | example2_10.sce | //Chapter 2
//Example 2.10
//Page 68
clear;
clc;
R1 = 1000;
R2 = 2000;
R3 = 1000;
C1 = 1;
printf("Because the bridge is at null , we have \n ")
printf("Z2*Z3 = Z1*Zx \n")
printf("R2(R3-j/wC)=R1(Rx-j/wCx) \n")
printf("The real and imaginary parts must be indpendently equal,so that \n")
printf("Rx-(R2*... |
b95933f507f4e71347c98314dd4d9bfae6be1b03 | 88f74b5fffdd03abe6e83f706181fd7f42a18b28 | /60002190054_Scilab3(Z-Transform).sce | b30c74530d3a14a4ac66cb92a7b7b02254df3e9d | [] | no_license | khushiig/SciLab | 915c9fc2d762f09cb83da128d6a8885f988b6fb8 | 3ee1b02318f8c056690edd678eabb49f520e29f9 | refs/heads/main | 2023-01-25T03:42:14.747948 | 2020-11-25T10:31:41 | 2020-11-25T10:31:41 | 315,850,079 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 695 | sce | 60002190054_Scilab3(Z-Transform).sce | //find the z transform of a simple sequence
function [za]=ztransfer(seq, n)
z=poly(0, 'z','r')
za=seq*(1/z)^n'
endfunction
//my sequence starts from n=0 to n=8
x1=[2 -1 3 2 1 0 2 3 -1]
n=0:8
zz=ztransfer(x1,n)
//find the z transform of a simple sequence
function [za]=ztransfer(seq, n)
z=poly(0... |
5e8f7dfae24899b0323cdc2cf9abe6898144ed2c | 449d555969bfd7befe906877abab098c6e63a0e8 | /884/CH16/EX16.9/Example16_9.sce | 169c12beb89c59ebf8c1d254aef4accf65f8662e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 458 | sce | Example16_9.sce | // Computation of solubility from Ksp
clear;
clc;
printf("\t Example 16.9\n");
Ksp=2.2*10^-20;//solubility product
//Let 's' be the equilibrium concentration of the [Cu2+] and hence conc of [OH-] ions will be'2s', M, so Ksp=s*(2s)^2=4s^3
s=(Ksp/4)^(1/3);//concentration, M
M=97.57;//mol mass of Cu(OH)2, g... |
b7a5cb9134fc6236737b53ce4a4e96c36b4eed77 | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH13/EX13.12/ex_13_12.sce | 9f246a55cf70052a4cfed4bf46afee588691f457 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 188 | sce | ex_13_12.sce | warning('off');
fp=mopen('lines.dat','rb');
count=0;
ch=mfscanf(fp,"%c");
while(~meof(fp))
count=count+1;
ch=mfscanf(fp,"%c");
end
mclose(fp);
printf("Count= %d\n",count); |
9805bb09397972d9e18567271b9a95a2c5b81756 | 449d555969bfd7befe906877abab098c6e63a0e8 | /623/CH3/EX2.2.1/U2_C2_1.sce | 6392e2109ad12b8e541c8b5f57fb73946eacc797 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 636 | sce | U2_C2_1.sce | //variable initialization
m=9.1*10^-31; //mass of electron (kg)
h=6.6*10^-34; //planck's constant (joule-second)
e=1.6*10^-19; ... |
782e135d57ffa65695131d4860d0a75194840132 | e806e966b06a53388fb300d89534354b222c2cad | /macros/ssim.sci | 5972816041a6a80e5654aade5cc923a4382aef99 | [] | no_license | gursimarsingh/FOSSEE_Image_Processing_Toolbox | 76c9d524193ade302c48efe11936fe640f4de200 | a6df67e8bcd5159cde27556f4f6a315f8dc2215f | refs/heads/master | 2021-01-22T02:08:45.870957 | 2017-01-15T21:26:17 | 2017-01-15T21:26:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 133 | sci | ssim.sci | function[ssim_val] = ssim(srcImg, reference)
srcMat = mattolist(srcImg)
ssim_val = opencv_ssim(srcMat, reference)
endfunction
|
c5d1518a89506ae15937afe36bdadeb86e0dcaf3 | 43ee35e120afa343a967b8a7034a973f0a481a4d | /60002190045_SS_EXP_3.sce | 8d9d4e2bf1a02547f73e0fe06a3a1fd559748a9d | [] | 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 | 471 | sce | 60002190045_SS_EXP_3.sce | //PRACTICAL-3(SAMPLING)
clc;
n=0:1:100;
fs=50;
T=1/fs;
t=n*T;
figure;
x1=cos(2*%pi*5*t);
plot2d3(n,x1);
figure;
x2=cos(2*%pi*45*t);
plot2d3(n,x2);
figure;
x3=cos(2*%pi*55*t);
plot2d3(n,x3);
figure;
n=0:1:100;
fs=0.02;
T=1/fs;
t=n*T;
x=cos(2*%pi*0.02*t);
plot2d3(n,x);
figure;
n=0:1:100;
... |
da86771433282169c8656fcc34766e307b505cc2 | ffe0de17029e2174bdf1d65c8336b872591dfab8 | /04/divide/divide.tst | 96de8e81777e31688cddd1df520486e6ff6a5479 | [] | no_license | oribro/Nand2Tetris | aec1e14749c49e6698289b42bb3adbf911a56784 | fc61fd8cbe70db0edee9ed4f48d3f6923212524b | refs/heads/master | 2021-01-12T14:10:35.738055 | 2017-02-05T13:19:55 | 2017-02-05T13:19:55 | 69,925,550 | 0 | 1 | null | 2016-11-30T18:10:52 | 2016-10-04T01:34:20 | Assembly | UTF-8 | Scilab | false | false | 1,214 | tst | divide.tst | output-file divide.out,
compare-to divide.cmp,
output-list RAM[13]%D2.6.2 RAM[14]%D2.6.2 RAM[15]%D2.6.2 ;
// Set test arguments
set RAM[13] 35,
set RAM[14] 5,
set RAM[15] 0,
set RAM[16] 0,
set RAM[17] 0,
set RAM[18] 0,
set RAM[19] 0,
set RAM[20] 0,
set RAM[21] 0,
set RAM[22] 0,
repeat 250 {
ticktock;
}
output;
... |
52bc1eb4d7670dc48976a75ae161c8b1c922a13e | 417f69e36190edf7e19a030d2bb6aa4f15bb390c | /SMTTests/tests/err_bv.tst | 4fc6091bdf003c0be22b2af2a9e2570555d8b6f5 | [] | no_license | IETS3/jSMTLIB | aeaa7ad19be88117c7454d807a944e8581184a66 | c724ac63056101bfeeb39cc3f366c8719aa23f7b | refs/heads/master | 2020-12-24T12:41:17.664907 | 2019-01-04T10:47:43 | 2019-01-04T10:47:43 | 76,446,229 | 1 | 0 | null | 2016-12-14T09:46:41 | 2016-12-14T09:46:41 | null | UTF-8 | Scilab | false | false | 363 | tst | err_bv.tst | ; checks bit vector sorts
(set-logic QF_BV)
(declare-fun x () (_ BitVec 4))
(declare-fun y () (_ BitVec 1))
(declare-fun z () (_ BitVec 4))
(declare-fun k () (_ BitVec 0))
(declare-fun k () (_ BitVecx 0))
(declare-fun k () (_ BitVec -1))
(declare-fun k () (_ BitVec))
(declare-fun k () (_ BitVec 1 2))
(assert (= x #b010... |
18a5366fdec83cdd24f28282d7e72592452d8780 | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3876/CH9/EX9.9/Ex9_9.sce | 2cce2a7c9a8ffa99a4792d84b0857bf28f0f2556 | [] | no_license | psinalkar1988/Scilab-TBC-Uploads-1 | 159b750ddf97aad1119598b124c8ea6508966e40 | ae4c2ff8cbc3acc5033a9904425bc362472e09a3 | refs/heads/master | 2021-09-25T22:44:08.781062 | 2018-10-26T06:57:45 | 2018-10-26T06:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | sce | Ex9_9.sce |
//Chapter 9 Ionic Equilibria and Buffer Action
clc;
clear;
//Initialisation of Variables
c= 0.010 //M
Ksp= 1.56*10**-10
M= 108 //gms
C= 10**-3 //M
//CALCULATIONS
K= Ksp/C
m= M*K
m1= M*c
//RESULTS
mprintf("The atomic weight of silver being %d, the weight of silver remaining \n in solution is %.2e gram",M,m)
mprintf... |
70ab13fbde139e9ed2c3ed16d3906d5b3fd29296 | 3c47dba28e5d43bda9b77dca3b741855c25d4802 | /microdaq/tests/Task/dsp.sce | 1be18d5e235872ce501f2b0118f57204f340b4dc | [
"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 | 255 | sce | dsp.sce | dsp = mdaqDSPTask();
dsp.init("mdaqsignalmem.out", 100, -1);
dsp.start();
dsp.write(1, 3.14);
disp(dsp.read(1, 1, 10, -1));
disp(dsp.read(2, 1, 10, -1));
dsp.write(1, 6.14);
disp(dsp.read(1, 1, 10, -1));
disp(dsp.read(2, 1, 10, -1));
dsp.stop();
return;
|
7467a57651c30b56e13a33aaa01c13e86eb20b0c | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set10/s_Engineering_Thermodynamics_S._S._Khandare_2144.zip/Engineering_Thermodynamics_S._S._Khandare_2144/CH2/EX2.4/exa_2_4.sce | 9c03ddeb560ce46c3b5eb62b44aab1ec26768233 | [] | 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 | 182 | sce | exa_2_4.sce | errcatch(-1,"stop");mode(2);// Example 2.4
;
;
// Given data
V0= 1;// in m^3
t= 300;// in °C
V= V0*(1+t/273);// in m^3
disp(V,"The volume occupied in m^3 is : ")
exit();
|
5a13786a25e7e36c4a812606863f57ba701446a8 | 986b9b329679cdb931a688f3b846e253cf877a93 | /Exercise_31.sce | 54bdf58582c7916b71f5c934c6af104180212e86 | [] | no_license | Gotcha17/CompFin_Sheet10 | 437c12ec6d2a42a423cac4f508525e4fd761ff21 | 2a8f1a3a58708d3233240828b7202c9e8466fc58 | refs/heads/master | 2021-01-02T23:01:07.219707 | 2017-08-21T20:14:26 | 2017-08-21T20:14:26 | 99,440,898 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,744 | sce | Exercise_31.sce | clc; clear; funcprot(0);
function [S0, V0] = BS_EuPut_FiDi_Explicit (r, sigma, a, b, m, nu_max, T, K)
q = 2*r/sigma^2;
delta_t_tilde = T*sigma^2/(2*nu_max);
delta_x_tilde = (b-a)/m;
x_tilde = a + [0:m].*delta_x_tilde;
lambda = delta_t_tilde/delta_x_tilde^2;
w = max(exp(0.5.*x_tilde(1:(m... |
fe27cd5ba9a4467f66f3c75aebbcf28e4bee0489 | 449d555969bfd7befe906877abab098c6e63a0e8 | /542/CH11/EX11.7/Example_11_7.sce | 818883bb9f22f052283904fa14d8caee95a96343 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,994 | sce | Example_11_7.sce | clear;
clc;
printf('Example 11.7'); //Example 11.7
// Find Number of theoretical plates needed and the position of entry for the feed
F = 100; //Feed [kmol]
function[f]=Feed(x)
f(1)=x(1)+x(2)-100; //Overall mass Balance
f(2)=0.9*x(1)+.1*x(2)-(100*.4); //A bala... |
3eb187f6712e2951a25f0f81a4ff7de2cdb43e70 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH3/EX3.11/3_11.sce | cd43b2052a7a874f9834510ea6e2f20c9d13d9b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,005 | sce | 3_11.sce | //Example 3.11
//Triangularization Method
//Page no. 63
clc;clear;close;
A=[1,3,8;1,4,3;1,3,4];
B=[4;-2;1];
printf('A can be factorizaed as follows:\n')
printf('\tL\t\t *\t\tU\t\t =\t\tA')
U(2,1)=0;U(3,1)=0;U(3,2)=0;
L(1,2)=0;L(1,3)=0;L(2,3)=0;
for i=1:3
L(i,i)=1
end
for i=1:3
U(1,i)=A(1,i)
e... |
7aaa6d69756dc5bec92bed508f5f8e757653905f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH13/EX13.16/Ex13_16.sce | db932e68b182691c5ea0a28ca6b3a2c50c25404c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 565 | sce | Ex13_16.sce | //Initilization of variables
m1=14 //kg
m2=7 //kg
theta=45 //degrees
u_1=1/4 //coefficient of friction between mass 1 and plane
u_2=3/8 //coefficient of friction between mass 2 and plane
g=9.8 //m/s^2
//Calculations
//The equations of motion for m1 are
N1=m1*g*cosd(theta) //N
F1=u_1*N1 //N
//The equations of... |
3ab8acb07d95327a84a441d4ada524700deba6ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /2168/CH9/EX9.9/Chapter9_example9.sce | 7ed747388e64ee918c6d3563e1c645f22ccac5b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 450 | sce | Chapter9_example9.sce | clc
clear
//Input data
td=7.5//Throat diameter in cm
Ca=0.85//Coefficient of air flow
fd=0.5//Diameter of fuel orifice in cm
Cd=0.7//Coefficient of discharge
l=5//Nozzle lip in mm
x=1//Approach factor
dpa=0.15//Pressure drop in kg/cm^2
da=1.29//Density of air in kg/m^3
dp=720//Density of fuel in kg/m^3
//... |
c368a35e214bee3c12ba11f1a7b04b58509c63f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH15/EX15.24/Ex15_24.sce | aa2c4406d0d66424d0931fc529402192369a24ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 684 | sce | Ex15_24.sce | //The notation has been changed for ease
//Calculations
x=(5*1*3.5+8*1*0.5)/(5*1+8*1) //in
y=(5*1*0.5+8*1*4)/13 //in
//Moment of inertia
Ix=(1/12)*(5)*(1^3)+(5*2.15*2.15)+(1/12)*(1*8^3)+(8*1.35^2) //in^4
Iy=(1/12)*(1)*(5^3)+(5*1.85*1.85)+(1/12)*(8)*(1^3)+(8*1.15^2) //in^4
Ixy=(8*1*(-1.15)*1.35)+(5*1*1.85*(-2.15... |
660f6470a142bf1b9d763f61b741edbd04e2c1fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /773/CH2/EX2.03/2_03.sci | 9716868e8492c9b106de60ef61724d832967801e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 229 | sci | 2_03.sci | //value theorem//
p=poly([9 1],'s','coeff')
q=poly([3 7 1],'s','coeff')
f=p/q;
disp(f,"F(s)=")
x=s*f;
y=limit(x,s,0); // final value theorem
disp(y,"f(inf)=")
z=limit(x,s,%inf); // initial value theorem
disp(z,"f(0)=")
|
f41685bc2d245c89d0e7c96cf1746614c2385186 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1826/CH10/EX10.6/ex10_6.sce | 4dc0ec52a6e34ac5942f8ff3577e58b1e7f841fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sce | ex10_6.sce | // Example 10.6, page no-270
clear
clc
ni=2.1*10^19//m^-3
mue=0.4//m^2/V-s
muh=0.2
e=1.6*10^-19//C
p=4.5*10^23//m^-3
sig=ni*e*(mue+muh)
r=p*e*muh
printf("The conductivity of intrinsic Ge is %.3f *10^-2 /ohm-cm\nThe intrinsic resistivity is %.2f *10^4",sig,r*10^-4)
|
ede7a0128893ab83d47e2eaa3ba084ce2b365874 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2153/CH2/EX2.6.b/ex_2_6_b.sce | bb567f9b6480f1bde9cb3e5f472921f0b817e633 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 295 | sce | ex_2_6_b.sce | //Example 2.6.b : frequency
clc;
clear;
close;
//given data :
format('v',9)
Z=1;//for hydrozen
n1=3;
n2=2;
m=6.626*10^-34;// mass of electron in kg
E3=-(13.6*Z^2)/n1^2;
E2=-(13.6*Z^2)/n2^2;
del_E=E3-E2;
E=del_E*1.6*10^-19;// in joules
v=(E/m);
disp(v,"frequency of the photon emitted,v(Hz) = ")
|
065037766e93cc3cf453aaa5d2019f054f19b7ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /479/CH14/EX14.10/Example_14_10.sce | f2d9716eb3d24e04830bb18b995e4fc9cf7bc45e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example_14_10.sce | //Chemical Engineering Thermodynamics
//Chapter 14
//Thermodynamics of Chemical Reactions
//Example 14.10
clear;
clc;
//Given
//SO2(A) + (1/2)O2 (B) - SO3(C)
//Basis: 1 Kgmole SO2
n_A = 1;//Kgmole of SO2 fed
n_B = n_A;//Kgmole of O2 fed
T1 = 273+400;//Temperature in K at which reactants enter
To = 298;/... |
4a1008a9f2901f089fd9f13ba7a96edb4573da94 | 449d555969bfd7befe906877abab098c6e63a0e8 | /683/CH8/EX8.6/S8_6.sce | 6c83bbec5a2bcf083f19c960894ba627bda0b06a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 633 | sce | S8_6.sce | // sum 8-6
clc;
clear;
// 18 SWG=1.219MM in dia
d=1.219;
E=198.6*10^3;
G=80.7*10^3;
m=0.19;
A=1783;
sig=A/(d^m);
Tys=(0.4*sig);
Do=12.5;
D=Do-d;
C=D/d;
Ks=((2*C)+1)/(2*C);
W=(Tys*%pi*(d^3))/(8*D*Ks);
Nt=13.5;
Na=Nt-2;
del=(8*W*(D^3)*Na)/(G*(d^4));
Ls=(Nt-1)*d;
Lo=Ls+del+(0.15*del);
// printing ... |
4c9d15488adcb17f7bed80acbc398a5bb8329d50 | 51f86a7cb83f5566263e7bac73e911895c9ef210 | /projects/02/ALU.tst | 73e550a2f33d2545709a3d1b4557179230a43598 | [
"MIT"
] | permissive | theapi/nand2tetris_fpga | 413b1eba61bc508235b7079ed036af84ffe5f43c | 501382db87f751d24abd1307d7f823d642680e13 | refs/heads/master | 2023-08-25T00:08:30.642533 | 2016-08-28T11:46:36 | 2016-08-28T11:46:36 | 43,551,890 | 12 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 3,770 | tst | ALU.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/02/ALU.tst
load ALU.hdl,
output-file ALU.out,
compare-to ALU.cmp,
output-list x%B1.16.1 y%B1.16.1 zx%B1.1.1 nx%B1.1.1 zy%B1.1.1
ny%B1.1.1 f%B1.1.1 no%... |
7c6803a9350445df56dd02c880b2fbfcab9ed37b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3556/CH12/EX12.14/Ex12_14.sce | b48550d41b4aaef1663ad6a60391fb550ba4c6a4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,164 | sce | Ex12_14.sce | clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 2 : AC Circuits
// Chapter 12 : Three Phase Circuit
// Example 12 - 13
clear; clc; close;
//
// Given data
P1 = 1560.0000;
P2 = 2100.0000;
Vp ... |
17067324edb369278e9265cd96238fe32c1284fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH2/EX2.25/ex2_25.sce | 587ea7ea975badedb896e2a821bd3ef8ca0aec39 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex2_25.sce | // Exa 2.25
clc;
clear;
close;
format('v',6)
// Given data
Vin = 15;// in V
// Peak output voltage,
Vout = Vin;// in V
disp(Vout,"Peak output voltage in V is");
|
fa51134032863bc8d7a194fe5affcd4c3cc70904 | f6134e0a162a059c42ec3ef8de2a63941d73936c | /Scilab_code/RLG/Geometry/rectBbox2D.sci | da12848985280b55cac71687aab8b8a8514ec65e | [] | no_license | mxch18/SRL-WRT_pathPlanning | 38a1701934a4a0e919a6c1c7990092b242df72da | 6992febbbe103814d2cef5351a0e8917b183a2b0 | refs/heads/master | 2020-03-23T06:43:54.155192 | 2018-09-26T17:26:56 | 2018-09-26T17:26:56 | 141,226,032 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 504 | sci | rectBbox2D.sci | function [rectCorners, rectAxis] = rectBbox2D(points)
//Author : Maxens ACHIEPI
//Space Robotics Laboratory - Tohoku University
//Description:
//Computes the minimal rectangular planar bounding box of the set of points.
//The bounding box is not axis-aligned, and the longest direction of the bo... |
668d8f012331d37d0f9f95fbae562e48fff26b81 | 449d555969bfd7befe906877abab098c6e63a0e8 | /647/CH9/EX9.6/Example9_6.sce | 249e553fb56d965509b4b721f854a55260a283c9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,216 | sce | Example9_6.sce | clear;
clc;
// Example: 9.6
// Page: 341
printf("Example - 9.6 and Page number - 341\n\n");
//Given
T = 25+273.15;// [K]
P = 1;// [atm]
// Component 1 = water
// Component 2 = methanol
a = -3.2;// [cubic cm/mol] A constant
V2 = 40.7;// [cubic cm/mol] Molar volume of pure component 2 (methanol)
// V1_b... |
05b7f189510df32f83c3f18a03ac47fa50f2fbba | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/rasp_design_added_blocks/nfet_i2v.sce | 7c9e1c6f06f6a3aca0b90fee707c508542ebaad1 | [] | 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 | 196 | sce | nfet_i2v.sce | //style.fontSize=12;
//style.displayedLabel="<table> <tr> <td><b>In</b></td> <td>nfet_i2v</td> <td align=right><b>Out</b></td> </tr> </table>";
//pal5 = xcosPalAddBlock(pal5,"nfet_i2v",[],style);
|
b97bd9f392dc6d241e9eef1aa4ae72a91c0b7848 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/BX2.prev.tst | 8481d2527d6f923d229b9b433ce31ef0c0564c3e | [
"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 | 6,461 | tst | BX2.prev.tst | 0: [414560,217519,95800,422481] is powerSum(4)
2⁵5¹2591w + 217519x + 2³5²479y + 3¹140827z
1: [2767624,1390400,673865,2813001] is powerSum(4)
2³345953w + 2⁶5²11¹79x + 5¹307¹439y + 3¹937667z
2: [8332208,5507880,1705575,8707481] is powerSum(4)
2⁴520763w + 2³3¹5¹7¹79¹83x + 3¹5²22741y + 223¹39047z
3: [11289040,8282543,58700... |
4bce7ae349b0c05b2abe19cd6f1039181e5420db | 449d555969bfd7befe906877abab098c6e63a0e8 | /25/CH2/EX2.3/2_3.sce | a949b68fb4705721e3b5c6f285d8f8f4b7a09aa6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 993 | sce | 2_3.sce | // example:-2.3,page no.-31.
//program to find the resulting fields by assumibg plane waves on either side of the current sheet and enforcing the boundary conditions.
syms E x E1 E2 H1 H2 z Jo A B c N n d ko y;
sym('n*(E2-E1)=0'); //boundary condition to be satisfied at z=0
sym('z*(E2-E1)=0'); // " " ... |
e02a5fa76f2e42688e367a6989d7a90a6242d615 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1073/CH6/EX6.4/6_4.sce | aecc7518a050bdf843ed9083a187077205859ac0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,953 | sce | 6_4.sce |
clc;
clear;
//Example 6.4
Cpf=3.98 //Specific heat of feed in kJ/(kg.K)
lambda_s=2202 //Latent heat of conds of heat at 0.2MPa in [kJ/kg]
lambda=2383 //Latent heat of vaporisation of water aty 323 [kJ/kg
ic=0.1 //Initial concentration of soilds in [%]
fc=0.5 //Final concentratio... |
9d566084d4ab19b28f8c7699458d2d647bd8db4e | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.1_20.tst | 2c896a59c30cb8672d677c3ab3c06293f5d7ca87 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 682,716 | tst | 5.1_20.tst | 1 58:1 116:1 310:1 354:1 366:2 513:2 564:1 678:1 714:1 740:1 770:2 858:1 1075:1 1199:1 1308:1 1356:1 1492:1 1950:1 2417:1 2545:1 2633:1 3023:1 3262:1 3483:1 3538:1 3614:1 3640:1 3703:1 3832:1 3890:1 4290:1 4405:1 4444:1 4527:1 4538:1 4555:1 4821:1 5180:1 5395:1 5515:1 5836:1 6100:1 6257:1 6880:1 7177:1 7373:1 7446:1 75... |
f6c12e956ad0805bc40e25f797f0a2db09a02098 | 43d4a49b973060b6d301953994565af0930415e2 | /makefiles/Makefile.tst | 3f3f8a188a82c6c5d7a344ecedcddb2358160107 | [] | no_license | GSI-CS-CO-Forks/kernel_modules | 8c11e19d08a247804a75ebdca2c7ba5ab0f45ae1 | d642e01ce8f9bf741a9790cb68a1354f1a1e86f9 | refs/heads/master | 2022-05-14T06:32:55.061699 | 2022-03-17T15:55:22 | 2022-03-17T15:55:22 | 64,207,904 | 2 | 1 | null | 2019-10-11T16:47:59 | 2016-07-26T09:19:29 | C | UTF-8 | Scilab | false | false | 2,391 | tst | Makefile.tst | ###############################################################################
# @file Makefile.tst
#
# @brief Builds up test programs.
#
# @author Yury GEORGIEVSKIY, CERN.
#
# @date Created on 13/01/2009
###############################################################################
# Makefile from current directory... |
18cb84c356a83e4b6f9731396894b5a4f7a31d28 | 3174b244396ca6f067cb6b14edfea0e94a5ffcb1 | /projects/07/StackArithmetic/SimpleSub/SimpleSub.tst | fb33add91030a3e4dfbd331b8df076fedd7b46e6 | [] | no_license | sotlucas/nand2tetris | 29c109321636dad52a8da15b7251931f458d880a | 284bdf045b125ac1d9729010543b7bb36964a6fa | refs/heads/master | 2020-07-09T15:10:08.403439 | 2019-09-21T19:33:10 | 2019-09-21T19:33:10 | 204,005,757 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 313 | tst | SimpleSub.tst | load SimpleSub.asm,
output-file SimpleSub.out,
compare-to SimpleSub.cmp,
output-list RAM[0]%D2.6.2 RAM[256]%D2.6.2;
set RAM[0] 256, // initializes the stack pointer
repeat 60 { // enough cycles to complete the execution
ticktock;
}
output; // the stack pointer and the stack base
|
2fd8e494a9d98994df5e06634e817c298b6add15 | b829a470efb851fdd8700559c2092711adaa42e0 | /Data/OVI-CV-03-Facenet/CV-Groups/cv-group-114528472700/OVI-Test/cv-group-114528472700-run-05.tst | 0711d834c3b5497fee60a4a4d88db70ab70326c0 | [] | no_license | achbogga/FaceRecognition | 6f9d50bd1f32f2eb7f23c7ae56f9e7b225d32325 | 165ebc7658228d2cceaee4619e129e248665c49a | refs/heads/master | 2021-07-04T21:47:57.252016 | 2017-08-01T18:53:12 | 2017-08-01T18:53:12 | 96,568,452 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 504 | tst | cv-group-114528472700-run-05.tst | Ahmad\Ahmad_008.jpg
Ahmad\Ahmad_011.jpg
Sima\Sima_010.jpg
Sima\Sima_009.jpg
SungChun\SungChun_016.jpg
SungChun\SungChun_006.jpg
Kiran\Kiran_016.jpg
Kiran\Kiran_014.jpg
Allison\Allison_003.jpg
Allison\Allison_008.jpg
Amit\Amit_004.jpg
Amit\Amit_008.jpg
Gang\Gang_001.jpg
Gang\Gang_011.jpg
Ethan\Ethan_010.jp... |
169fcfe9b3d2f60b08d4b727f2b7a105167f29ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /1697/CH4/EX4.4/Exa4_4.sce | 15257deb7d4eef622f0e1da1573351cf3b6a0cfc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 517 | sce | Exa4_4.sce | //Exa 4.4
clc;
clear;
close;
//given data :
n=10;//no. of elements
//d=lambda/4 separation in meter
disp("For broad side array : ")
disp("D=2*n/(lambda/d)");
disp("Putting d=lambda/4 we get D=2*n/4")
D=2*n/4;//directivity : unitless
Ddb=10*log10(D);//in db
disp(Ddb,"For broad side array D in db = ");
disp(... |
445a072803c48ec17c0356155af6c927058cea90 | 449d555969bfd7befe906877abab098c6e63a0e8 | /797/CH11/EX11.5e/11_05_example.sci | 3d0294d308af29e0b5204a9ad79ade8d14024131 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 457 | sci | 11_05_example.sci | //Example 11-5 Lift and Drag of commercial Airplane
m = 70000 //mass of commercial airplane [kg]
A = 150 //wing planeform area [m^2]
V = 558 //crusing speed of the plane [km/hr]
rho_altitude = 0.312 //density of air at altitude of 12000m [kg/m^3]
rho_ground = 1.2 //density of air on ground [kg/m^3]
C_Lmax_flap = 3.48 /... |
583f4728c44d45f7759ad0299611e525ee3c6990 | 49c332fb095450edccbd7e42e057fa0b57157045 | /test/FM11.prev.tst | a05709dc1285a8248660ff65acf72aa35de65b53 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/numword | 836edd4693d90ede0f37ebcad01f8202362f3c74 | 9fbef644f2142ed7db9b4fa696b5a2388181f7b9 | refs/heads/master | 2022-02-04T19:09:38.860895 | 2022-01-28T14:43:02 | 2022-01-28T14:43:02 | 5,777,703 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 578 | tst | FM11.prev.tst | 0:00 zwölf
0:15 viertel nach zwölf
0:20 zwanzig nach zwölf
0:45 viertel vor eins
1:00 eins
1:15 viertel nach eins
1:45 viertel vor zwei
2:15 viertel nach zwei
3:15 viertel nach drei
4:29 neunundzwanzig nach vier
5:30 halb sechs
6:31 neunundzwanzig vor sieben
7:45 viertel vor acht
8:50 zehn vor neun
9:00 neun
12:00 zwöl... |
b9e7eac8f804120c58ffad9f0c3a7f6ae0873dec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH3/EX3.39/39.sce | 5e06487cad56a6b7c56f83d6402ef0f5ef90a663 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 573 | sce | 39.sce | clc
// Given that
N = 6000 // Grating lines per cm
w = 10 // Width in cm
n = 2 // Order
m =3 // Order
lambda = 6000 // wavelength of light in angstrom
// Sample Problem 39 on page no. 177
printf("\n # PROBLEM 39 # \n")
printf(" Standard formula used \n")
printf(" lambda/d_lambda = n*N \n")
n_tot = w*N // T... |
f677645f9aecd3a68124b47c90aa3a1e3d9532d8 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/pow2db/pow2db7.sce | 3477f20b14b19cfd6ac4511dedda843cdf978a47 | [] | 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 | 204 | sce | pow2db7.sce | //Checking the output of the function when a matrix of negative values is given as an input
y=[10 10; 10 10;10 0];
y1=pow2db(y);
disp(y1);
//Output
// 10. 10.
// 10. 10.
// 10. - Inf
|
b1910dc60d6634a3d6744c32e0ddae0221c503fa | 918e8207504f36c7eaf613b62c71e91ad3a33a8a | /2017/educrace_by_lulu/EducRace/DATA/Scenario/PlayerCarFallFromSecondFloor.sce | 836e912d1a182d640fa4094b5c7f0d1af705e570 | [] | 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 | 76 | sce | PlayerCarFallFromSecondFloor.sce | ScaleChange 1 0.3 StartSlowEndFast
Wait 0.1
SendEvent 5
Wait 0.2
SendEvent 0 |
79c203bbc21ca5ae58a7d45843da88affecfc25d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2744/CH9/EX9.6/Ex9_6.sce | d56986a36d7832eb077578ee56b249767256d2f3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 612 | sce | Ex9_6.sce | clear;
clc;
b1 = 10;// inches
d1 = 7/2;// inches
r = 9/2;// inches
b2 = 12;// inches
d2 = 1/2;// inches
l = 20;// feet
n = 4;// factor of safety
A_s = 7.19;// in^2
I_xx1 = 109.42;// in^4
I_yy1 = 7.42;// in^4
d = 0.97;// inches
f_c = 21;// lb/in^2
a = 1/7500;
A = 2*A_s + 4*b2*d2;// in^2
I_xx = 2*I_xx1 + ... |
9484e804820964c66ab67d5088461b704f49ea3d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH10/EX10.8/10_8.sce | b35e7a5082a66ea001fbfa5aeba4b02328be174d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 426 | sce | 10_8.sce | clear
clc
G=[50 11 0 .08
30 11 0 .07]
T=[50 11 220 .1
30 220 11 .09]
B=[50 11]
T(1,5)= T(1,3)/T(1,2)
T(2,5)= T(2,3)/T(2,2)
B(3)=B(2)* T(1,5)
B(4)=B(3)* T(2,5)
B(5)= B(3)^2/B(1)
Z=555.6
z=Z/B(5)
zt2=T(2,4) * B(1)/T(2,1)
zg2=G(2,4) * B(1)/G(2,1)
Zn=3
zn=Zn *3 / ( B(4)^2/B(1))
mprintf("ze... |
7fb255996c9ebacd9eb8bf34ef950f39b2874553 | 449d555969bfd7befe906877abab098c6e63a0e8 | /70/CH3/EX3.1.2/3_1_2.sci | af56c526b118c088c0e0e4efb0c6e96e07f8d5bf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | 3_1_2.sci | //page 144
clear;
close;
clc;
disp('Suppose V is a plane spanned by v1=(1,0,0,0) and v2=(1,1,0,0).If W is the line spanned by w=(0,0,4,5),then w is orthogonal to both v''s.The line W will be orthogonal to the whole plane V.') |
ae654634a158c6b610e81b8a83ac05e72caab789 | c28130b62911f5891f14826350089c73c907d3b5 | /exo8_temps_L.sci | 683ccfc58e23c189f847e93b049c909bed5cfd88 | [
"MIT"
] | permissive | zyron92/Simulation_of_Cardiac_Excitation | f1709d032613f49427a72716b4e258c3b578b739 | 66813dc24128d9cb171e77d4f780b6bf54011d15 | refs/heads/master | 2021-01-19T10:25:43.810588 | 2017-02-16T12:58:38 | 2017-02-16T12:58:38 | 82,180,177 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 689 | sci | exo8_temps_L.sci | //charger les scripts des fonctions laplacien et slaplacien
exec('exo6_laplacien.sci',-1)
exec('exo7_slaplacien.sci',-1)
//la fonction principal qui calcul la difference du temps entre L*b et Ls*b
//l'hypothese est que cette différence >= 0
function[val]=calcul_temps(D,n)
//Calcul du temps d'exécution pour différents... |
03e930afe500cd03c2d3542dc155bd9620a90577 | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH5/EX5.14/ex_5_14.sce | 4547aa4db715eec73152197400774da4cdbcee65 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 988 | sce | ex_5_14.sce | //cal stress at A and B
clc
//solution
//given
W=3000//N
T=10^6//N-mm
P=15000//N
d=50//mm
x=250//mm
pi=3.14
A=(pi/4)*d^2//mm^2//area of shaft
f1=P/A//tensile stress at A and B
M=W*x//N-mm
Z=(pi/32)*d^3//mm^3
f2=M/Z//N/mm^2
fa=f1+f2//N/mm^2
fb=f2-f1//N/mm^2//tensile stress at B
fs=16*T/(pi*d^3)//N/mm^3
... |
979e0a1a9c650159a6a6d6275678680db97cbdbf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH3/EX3.22/Ex3_22.sce | fce8b52d2580a7cb346bc425e28bfbcd2a28fe82 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,601 | sce | Ex3_22.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 3 : TRANSFORMERS
// EXAMPLE : 3.22
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
S = 10 * 10 ^ 3; // Rating of the Two-winding Transformer ... |
0eb3e873ab289e59195b80bd802d10464cc7c0f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1703/CH12/EX12.4/12_4.sce | 2401a4cef522dec163f947262705ff11e922df32 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 212 | sce | 12_4.sce | clc
//initialisation of variables
H2= 0.75 //ft
v1= 1 //ft/sec
v2= 6 //ft/sec
k= 1.433
//CALCULATIONS
H1= H2*(v1/v2)^(2/3)
Q1= k*H1^2.47
Q2= Q1*(H2/H1)^2.5
//RESULTS
printf ('Flow = %.3f cuses ',Q2 )
|
7d34a7104c7ef33f2b6b2d47e7af4e540c14e89d | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.13_2.tst | 4657000baf09b1da856e91c21352487c593213dd | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 260,896 | tst | 5.13_2.tst | 13 1223:1 1378:1 1430:1 1445:1 1631:1 1873:1 2054:1 2354:1 2816:1 3640:1 3716:1 4122:1 5132:1 5424:1 6655:1 6877:1 7166:1 9387:1 10372:1 11055:1 12318:1 12787:1 12825:1 12958:1 13126:1 13583:1 13888:1 13968:1 14032:1 14134:1 14176:1 16284:43 16813:1 17032:1 17610:1 18489:1 19433:1 19608:1 19882:1 20160:1 20295:1 20930:... |
50d28274bf6497d02536fa8d4d0e7c06d1d68dfa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH5/EX5.6/Ex5_6.sce | 05d1ba940c5a140f4841530c8d262c47b670d610 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 430 | sce | Ex5_6.sce | //Variable declaration:
P = 1.2 //Abslute pressure of gas (psia)
MW = 29 //Molecular weight of gas (g/gmol)
R = 82.06 //Universal gas constant (atm.cm^3/gmol.K)
T = 20+273 //Temperature in Kelvin (K)
//Calculation:
p = P*MW/R/T ... |
b4e13771af255766304fcb78bade27134be139c2 | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/Scripts/_Movie/_Colors.SCI | 5e5d2779a11efb40ddb798c5ef20083facd8729a | [
"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 | 222 | sci | _Colors.SCI |
function GetColor(name,opacity)
{
cl=color(1,1,1);
if name=="Red" then cl=color(0.8,0.15,0.4);
if name=="Clock" then cl=color(0.8,0.7,0.3);
if isvardefined("opacity") then
cl.a=opacity;
return(cl);
} |
d8143621457a8b0df21285e195c591c18a0c2e6e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH14/EX14.22/example14_22.sce | 1ee5220af651855bf5b36b23b17fc8ca79bdb092 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 693 | sce | example14_22.sce | clc
// Given that
lambda = 5.896e-7 // wavelength of first light in meter
lambda_ = 2.83e-7 // wavelength of second light in meter
V1 = 0.12 // stopping potential for emitted electrons for first light in V
V2 = 2.2 // stopping potential for emitted electrons for second light in V
c = 3e8 // speed of light in m/sec
e =... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.