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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8ea2e27c3d1086f480eda2fe8e345219cd84fccb | fdf97225e208a6642e1aafddb68b8d3e948f9b9a | /sql/feuerstein/Best_Practices/Code/emplu.tst | bdf2681cb7b5fe1c5acf38c28185b68171e506e9 | [] | no_license | jampaniuday/sql_source | 2b47413a50bf419559f6310148f799cf04edb668 | 5c84428161ef58084f8fb25021fd378544ee91db | refs/heads/master | 2021-06-11T14:18:52.676174 | 2017-02-06T21:52:11 | 2017-02-06T21:52:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 521 | tst | emplu.tst | @@emplu.pkg
CREATE OR REPLACE PROCEDURE test_emplu (
counter IN INTEGER, empno_in IN emp.empno%TYPE := 7788)
IS
emprec employee%ROWTYPE;
BEGIN
PLVtmr.set_factor (counter);
PLVtmr.capture;
FOR i IN 1 .. counter
LOOP
emprec := emplu1.onerow (empno_in);
END LOOP;
PLVtmr.show_elapsed ('database table');
PLVtmr.set_factor (counter);
PLVtmr.capture;
FOR i IN 1 .. counter
LOOP
emprec := emplu2.onerow (empno_in);
END LOOP;
PLVtmr.show_elapsed ('index-by table');
END;
/
|
e8c9ee39700e4b07c9a55db4b934fd72238c993f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH18/EX18.40/18_40.sce | 8e3c8dbdd5d875697a79560ff11e137cd586c73e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 289 | sce | 18_40.sce | //ques-18.40
//Calculating final pressure and temperature on expansion of a dry gas
clc
T1=273;//temperature (in K)
r=3;//ratio = V2/V1
P1=760;//pressure (in mm Hg)
q=1.4;
T2=T1/(r^(q-1));
P2=P1/(r^q);
printf("Final pressure is %.1f atm and final temperature is %.0f K.",P2,T2);
|
7b5e768f317a81245737f624162d3f6c1d666ef9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1664/CH8/EX8.8/Ex8_8.sce | e34b56ebeb3ae5aa69aba6ebc4bb4265f72ce1bf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 376 | sce | Ex8_8.sce | //Example No.8.8.
//Page No.233.
clc;clear;
T = 298;//Temperature -[K].
k = 1.38*10^(-23);//Boltzman's constant.
Eg = 1.07*1.6*10^(-19);//Here E= E-Eg.
f = 1/(1+exp(Eg/(2*k*T)));//probability of an electron to the conduction band at 25 degree celcius.
printf("\nThe probability of an electron thermlly excited to the conduction band at 25 degree celcius is %3.3e",f);
|
38dfa879c8de507719935b33c1a0556a9cc9c6a7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3739/CH7/EX7.8/EX7_8.sce | 571dc5a007f1d5c61287c494e6a6945f21ab6975 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 592 | sce | EX7_8.sce | //Chapter 7, Example 7.8, page 322
clc
//Initialisation
A=99.8 //in percent
l=1250 //radio link in km
C=155*10**6 //in bps
T=24*60*60 //Total measurement time
//Calculation
U=100-A
u=U/100
ue=u*l/2500
uep=ue*0.3 //propagation unavailability value
M=C*uep*T*10**-3 //number of errored bits due to propagation
//Results
printf("Maximum delay bit error per day = %d bits per day",M)
|
38a853b9f8bd1058bfd8bac4927c61ac869d7b02 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH1/EX1.16/Ex1_16.sce | 9881577de0b5a1e561a62ef2f9c0f9d5388afd6d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 589 | sce | Ex1_16.sce | //Ex1.16
clc
ni = 2.5*(10^13) //intrinsic concentration
donor = 10^-7 //donor atoms
ND = 4.41*(10^22)*(10^-7) //donor atom concentration
e = 1.6*(10^-19) //electron charge
micro_n = 3800; micro_p = 1800 //charge mobility
disp("ni ="+string(ni)+" /cm.cube")
disp("donor = "+string(donor))
disp("n = ND ="+string(ND)+" /cm.cube")
disp("p = (ni^2)/ND = "+string((ni^2)/ND)+" /cm.cube") //hole concentration
disp("micro_n = 3800 cm.sq/V-s; micro_p = 1800 cm.sq/V-s")
sigma = ni*e*(micro_n+micro_p) //conductivity
disp("sigma = ni*e(micro_n + micro_p) = "+string(sigma)+"mho/cm")
|
efc9f5499de205d4b18e3d62d85263ead1067067 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/int/%s_4_i.sci | 95fc81d4a587eff3dce2cddd72593e5aa820ba47 | [
"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 | 46 | sci | %s_4_i.sci | function r=%s_4_i(a,b)
// a>=b
r=a>=double(b)
|
bd26d5cbf01c8786c43c7585e3c317722b36d333 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH17/EX17.6/Ex17_6.sce | 0281ceb6e32cc36798f503be9aa13eb428963c5f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 304 | sce | Ex17_6.sce | clc;
close();
clear();
//page no 554
//prob no. 17.6
c=3*10^8; //speed of light in m/s
f=5.925*10^9; //Hz
lembda=c/f; //m
mprintf('The wave length is %.3f cm \n',lembda*100)
theta_3dB=1.6; // beamwidth degree
D=70*lembda/theta_3dB //m
mprintf('The diameter is, D= %.3f m \n',D);
|
9943c5d8c0739f87fddea55b335575b68a2917d6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /122/CH8/EX8.3/exa8_3.sce | 15cd936c0cdafd0e1f8f2e5958330c40597cfc48 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,510 | sce | exa8_3.sce | // Example 8-3
// Computation of Optimal solution 2
clear; clc;
xdel(winsid()); //close all windows
// please edit the path
// cd "";
// exec("plotresp.sci");
s = %s;
G = 4 / ( s^3+ 6*s^2 + 8*s + 4);
t = 0:0.1:8; u = ones(1,length(t));
// lesser points for a rough check
t1 = 0:0.01:8; u1 = ones(1,length(t1));
// more points for a rigorous check
k = 0;
mprintf('Processing...\n');
for K = 3:0.2:6
for a = 0.1:0.1:3
Gc = K * (s + a)^2 / s;
H = G * Gc;
H = syslin('c', H /. 1);
y = csim(u,t,H);
m = max(y);
if m < 1.15 & m > 1.08 then
// give a margin of 0.02 for the rough check - 1.08
y = csim(u1,t1,H);
m = max(y);
if m < 1.15 & m > 1.10 then
// check for settling time
l =length(t1);
while y(l) > 0.98 & y(l) < 1.02 ; l = l-1; end
ts = (l-1) * 0.01;
if ts < 3.00 then
k = k + 1;
solution(k,:) = [K a m ts];
end
end
end
end
if modulo(K*10,2) == 0 then mprintf(' completed %d%%\n', (K - 3)/3*100)
end
end
disp(solution,'solution [K a m ts] = ');
[x O] = gsort(solution(:,3),'r','i');
for i = 1:k
sortsolution(i,:) = solution( O(i) , :);
end
disp(sortsolution,'sortsolution [K a m ts] = ');
// Response with smallest overshoot
x = sortsolution(1,:);
K = x(1); a = x(2);
Gc = K * (s + a)^2 / s;
H = G * Gc;
H = syslin('c', H /. 1);
plotresp(u,t,H,'Step Response with smallest overshoot');
disp(Gc,'Gc = ');
disp(H,'H = ');
|
5f595b7348fa668149e70263d2cfbb6c00adc5de | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH16/EX16.6/16_6.sce | 872ca6ca37745a086fa19e46f2036c8f9383a7f7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 264 | sce | 16_6.sce | clear;
clc;
R1=175;R2=350;
y=poly([1 -3 1],"N","coeff");
f=roots(y);
N=f(1,1);
D=20*log10(N);
Ro=R1*(N+1)/(N-1);
printf("The characteristic impedance of T attenuator = %f ohms and its attenuation per section is %f db",round(Ro*10)/10,round(D*100)/100);
|
52f1b51553a7c645d24c5dc20f31e3da913aa895 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1586/CH14/EX14.4/EXP14_4.sce | 43230b92ef4a86023606bcf745ebc3e3b88b8c98 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 385 | sce | EXP14_4.sce | clc;funcprot(0);//EXAMPLE 14.4
// Initialisation of Variables
K=567.53*10^6;..........//Slope of the Equationof Mg- alloy in Pa-nu/m^2
d=10;...........//Grain size in nu-m
Y=52.54*10^6;...........//Intercept of Mg- alloy in Pa
//CALCULATIONS
Yp=Y+(K*d^(-1/2));.......//Predicted yield strength of an Mg- alloy in MPa
disp(Yp,"Predicted yield strength of an Mg- alloy in MPa:")
|
ed09089e661f32a1b61ea8343a5bb56032b3b1b7 | 1a00eb132340e145c8a7d8fd0ef79a02b24605a2 | /macros/cmd_servo_move.sci~ | 83309e1434baa5ed421c5f84c533dacb49e1715d | [] | 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,144 | cmd_servo_move.sci~ | function cmd_servo_move(h,servo_no,u1)
// Command to run servo motor which has been setup
//
// Calling Sequence
// cmd_servo_move(h,servo_no,u1)
//
// Parameters
// h : Board number, reserved for future use. For this version, any number would do
// servo_no : 1=pin 9, 2=pin 10
// u1 : 0 - 180 degree
//
// Description
// A servomotor is an rotary actuator consist of an electric motor, gears, a potentiometer and an analogue or digital electronics for control. The servomotor usualy used for a position control application (or speed for continuous rotation servos).
//
// The user must give the command of the position setpoint or desired speed. This command is sent to the actuator in pulses spaced by 10 to 20 ms. The coding of these pulses is made such that a pulse of 1.5 ms corresponding to the centered position (rest), a pulse of 1 ms corresponds to an angle of 90° in the anticlockwise direction, and a pulse 2 ms corresponds to an angle of 90° clockwise. All other pulse widths give intermediate values.
//
// A servomotor for continuous rotation, the pulse width control the rotational speed and the direction. It is recommended to use a voltage regulator to power the servomotor instead of using the Arduino board power. For simplicity, the function takes an input commnad in degrees from 0 to 180. Two actuators can be controlled with this toolbox. (modified version of 3 motors available)
//
// Examples
// ok = open_serial(1,9,115200)
// cmd_servo_attach(1,1)
// sleep(1000)
// cmd_servo_move(1,1,90)
// sleep(1000)
// cmd_servo_move(1,1,45)
// sleep(1000)
// cmd_servo_detach(1,1)
// sleep(1000)
// close_serial(1)
//
// See also
// cmd_servo_setup
// cmd_servo_detach
//
// Authors
// Bruno JOFRET, Tan C.L.
//
if (u1<0) then
pin="Sw"+ascii(48+servo_no)+ascii(0);
elseif u1>180 then
pin="Sw"+ascii(48+servo_no)+ascii(180);
else
pin="Sw"+ascii(48+servo_no)+ascii(uint8(u1));
end
write_serial(1,pin,4);
endfunction
| |
20b236421f1bad128490a82015ed2c70d99e546f | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /Positive_Negative_test/Netezza-Base-HypothesisTesting/FLtTest2S-NZ-01.tst | 0109701a15c72461663b6858e532e196f343ac74 | [] | no_license | kamleshm/intern_fuzzy | c2dd079bf08bede6bca79af898036d7a538ab4e2 | aaef3c9dc9edf3759ef0b981597746d411d05d34 | refs/heads/master | 2021-01-23T06:25:46.162332 | 2017-07-12T07:12:25 | 2017-07-12T07:12:25 | 93,021,923 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,844 | tst | FLtTest2S-NZ-01.tst | -- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Netezza
--
-- Copyright (c): 2014 Fuzzy Logix, LLC
--
-- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC.
-- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC.
-- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade
-- secret or copyright law. Dissemination of this information or reproduction of this material is
-- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC.
--
--
-- Functional Test Specifications:
--
-- Test Category: Hypothesis Testing Functions
--
-- Test Unit Number: FLtTest2S-NZ-01
--
-- Name(s): FLtTest2S
--
-- Description: Performs Students-t test for two samples. Students-t test on two samples
-- is used to determine if the population means from the two samples are equal.
-- Two-sample t-test is used for unpaired data. For paired data, you could
-- use FLtTest1S.
--
-- Applications:
--
-- Signature: FLtTest2S(StatType VARCHAR(10), VarType VARCHAR(20), SampleNo BIGINT,
-- InValue DOUBLE PRECISION, NumTails BIGINT)
--
-- Parameters: See Documentation
--
-- Return value: Double Precision
--
-- Last Updated: 01-14-2015
--
-- Author: <Joe.Fan@fuzzyl.com>, <Anurag.Reddy@fuzzyl.com>,Kamlesh Meena
--
-- BEGIN: TEST SCRIPT
\time
--.run file=../PulsarLogOn.sql
---- Table used for testing
DROP TABLE tblHypoTestNew IF EXISTS;
SELECT a.TestType,
a.GroupID,
COUNT(*)
FROM tblHypoTest a
GROUP BY a.TestType, GroupID
ORDER BY 1, 2;
CREATE TABLE tblHypoTestNew
(
TestType VARCHAR(30),
GroupID INTEGER,
ObsID INTEGER,
Num_Val FLOAT)
DISTRIBUTE ON(OBSID);
-- BEGIN: NEGATIVE TEST(s)
---- Validation of parameters
-- Case 1a:
---------------------------------------------------------------------------------------
---- Try the test with invlaid values of first parameter like T_TEST, PROB, etc.
---------------------------------------------------------------------------------------
SELECT FLtTest2S('T_TEST', 'UNEQUAL_VAR', a.GroupID, a.Num_Val, 1)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: Fuzzy Logix specific error message
-- Case 1b:
SELECT FLtTest2S('PROB', 'UNEQUAL_VAR', a.GroupID, a.Num_Val, 1)
FROM tblHypoTestNew a
WHERE a.TestType = 'tTest';
-- Result: Fuzzy Logix specific error message
-- Case 2a:
---------------------------------------------------------------------------------------
---- Try the test with invlaid values of second parameter like 'VARIANCE', 'EQ_VAR' etc.
---------------------------------------------------------------------------------------
SELECT FLtTest2S('T_STAT', 'VARIANCE', a.GroupID, a.Num_Val, 1)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: Fuzzy Logix specific error message
-- Case 2b:
SELECT FLtTest2S('T_STAT', 'EQ_VAR', a.GroupID, a.Num_Val, 1)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: Fuzzy Logix specific error message
-- Case 3a:
---------------------------------------------------------------------------------------
---- Try the test with fifth parameter i.e., number of tails not 1 or 2. Values like -1, 0, 3 should be tried
---------------------------------------------------------------------------------------
SELECT FLtTest2S('T_STAT', 'EQUAL_VAR', a.GroupID, a.Num_Val, 0)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: Fuzzy Logix specific error message
-- Case 3b:
SELECT FLtTest2S('T_STAT', 'EQUAL_VAR', a.GroupID, a.Num_Val, -1)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: Fuzzy Logix specific error message
-- Case 3c:
SELECT FLtTest2S('T_STAT', 'EQUAL_VAR', a.GroupID, a.Num_Val, 3)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: Fuzzy Logix specific error message
-- Case 4a:
---------------------------------------------------------------------------------------
---- Try the test with empty table
---------------------------------------------------------------------------------------
SELECT FLtTest2S('T_STAT', 'EQUAL_VAR', a.GroupID, a.Num_Val, 2)
FROM tblHypoTestNew a
WHERE a.TestType = 'tTest';
-- Result: 1 row returned as null value
-- Case 4b:
---------------------------------------------------------------------------------------
---- Try the test with all NULL values
---------------------------------------------------------------------------------------
INSERT INTO tblHypoTestNew
SELECT a.TestType,
a.GroupID,
a.ObsID,
NULL
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Case 4c:
SELECT FLtTest2S('T_STAT', 'EQUAL_VAR', a.GroupID, a.Num_Val, 2)
FROM tblHypoTestNew a
WHERE a.TestType = 'tTest';
-- Result: return NULL value
-- Case 5a:
---------------------------------------------------------------------------------------
---- Try the test with all values same for the third parameters i.e., standard deviation as 0
---------------------------------------------------------------------------------------
DELETE FROM tblHypoTestNew;
-- Case 5b:
---------------------------------------------------------------------------------------
INSERT INTO tblHypoTestNew
SELECT a.TestType,
a.GroupID,
a.ObsID,
10
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Case 5c:
SELECT FLtTest2S('T_STAT', 'EQUAL_VAR', a.GroupID, a.Num_Val, 1)
FROM tblHypoTestNew a
WHERE a.TestType = 'tTest';
-- Result: return NULL value
-- Case 5d:
SELECT FLtTest2S('T_STAT', 'EQUAL_VAR', a.GroupID, a.Num_Val, 2)
FROM tblHypoTestNew a
WHERE a.TestType = 'tTest';
-- Result: return NULL value
-- Case 5e:
SELECT FLtTest2S('T_STAT', 'UNEQUAL_VAR', a.GroupID, a.Num_Val, 1)
FROM tblHypoTestNew a
WHERE a.TestType = 'tTest';
-- Result: return NULL value
-- Case 5f:
SELECT FLtTest2S('T_STAT', 'UNEQUAL_VAR', a.GroupID, a.Num_Val, 2)
FROM tblHypoTestNew a
WHERE a.TestType = 'tTest';
-- Result: return NULL value
-- END: NEGATIVE TEST(s)
-- BEGIN: POSITIVE TEST(s)
-- Test with normal and extreme scale factor values
-- Case 1a:
SELECT FLtTest2S('T_STAT', 'EQUAL_VAR', a.GroupID, a.Num_Val, 1)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: standard outputs
-- Case 1b:
SELECT FLtTest2S('T_STAT', 'EQUAL_VAR', a.GroupID, a.Num_Val, 2)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: standard outputs
-- Case 1c:
SELECT FLtTest2S('T_STAT', 'UNEQUAL_VAR', a.GroupID, a.Num_Val, 1)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: standard outputs
-- Case 1d:
SELECT FLtTest2S('T_STAT', 'UNEQUAL_VAR', a.GroupID, a.Num_Val, 2)
FROM tblHypoTest a
WHERE a.TestType = 'tTest';
-- Result: standard outputs
-- END: POSITIVE TEST(s)
DROP TABLE tblHypoTestNew;
\time
-- END: TEST SCRIPT
|
e1d8ef30a37b3f7cc9cfa2b13070c2e350ca15df | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /MienTommy's Air UFO Ultimate Ladder.sce | 27f8feeb4c0a1b16d32691bfe65b459d20483a7d | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 48,505 | sce | MienTommy's Air UFO Ultimate Ladder.sce | Name=MienTommy's Air UFO Ultimate Ladder
PlayerCharacters=A
BotCharacters=Bot Rotation air.rot
IsChallenge=true
Timelimit=100000.0
PlayerProfile=A
AddedBots=Bot Rotation air.rot
PlayerMaxLives=0
BotMaxLives=10
PlayerTeam=1
BotTeams=2
MapName=boxervert.map
MapScale=10.0
BlockProjectilePredictors=false
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=0.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=1.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Track, Apex Legends, Apex, Overwatch, CSGO
WeaponHeroTag=Soldier, Zarya, Widowmaker, Tracer
DifficultyTag=5
AuthorsTag=twitch.tv/MienTommy, Ku
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=EXTREMELY DIFFICULT - 10 Levels of UFO with increasing speed at each level up to 3x the level 1 speed. This is designed to push the limits of your aim capabilities and break any plateaus.
GameVersion=1.0.8.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=air1_UFO
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=air1_UFO2
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO2
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=air1_UFO3
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO3
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=air1_UFO4
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO4
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=air1_UFO5
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO5
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=air1_UFO6
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO6
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=air1_UFO7
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO7
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=air1_UFO8
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO8
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=air1_UFO9
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO9
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Profile]
Name=air1_UFO10
DodgeProfileNames=Very Short Strafes + Jump;Long Strafes Close
DodgeProfileWeights=1.0;0.5
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=air1_UFO10
SeeThroughWalls=false
NoDodging=false
NoAiming=false
[Bot Rotation Profile]
Name=Bot Rotation air
ProfileNames=air1_UFO;air1_UFO2;air1_UFO3;air1_UFO4;air1_UFO5;air1_UFO6;air1_UFO7;air1_UFO8;air1_UFO9;air1_UFO10
ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
Randomized=false
[Character Profile]
Name=A
MaxHealth=100.0
WeaponProfileNames=Track Master 100;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=2000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO2
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=2400.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO3
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=3200.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO4
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=3600.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO5
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=4000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO6
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=4400.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO7
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=4800.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO8
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=5200.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO9
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=5600.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=air1_UFO10
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=6000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.2
JetpackFullFuelTime=100000.0
JetpackFuelIncPerSec=0.1
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=Blink.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Dodge Profile]
Name=Very Short Strafes + Jump
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.1
MaxLRTimeChange=0.3
MinFBTimeChange=0.1
MaxFBTimeChange=0.3
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.6
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Dodge Profile]
Name=Long Strafes Close
MaxTargetDistance=750.0
MinTargetDistance=200.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.0
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.1
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=Track Master 100
Type=Hitscan
ShotsPerClick=1
DamagePerShot=4.0
KnockbackFactor=0.0
TimeBetweenShots=0.01
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=1000000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.01
HitSoundCooldown=0.01
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=0.0
TaggingHitFactor=0.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=1000.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Movement Ability Profile]
Name=Blink
MaxCharges=3.0
ChargeTimer=3.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.075
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=15000.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=0.075
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=1500.0
AIMaxTargDist=1000000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=25.0
AIDamageReactionResetTimer=1.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-592.000000 704.000000 256.000000
-576.000000 704.000000 256.000000
-576.000000 704.000000 -768.000000
-592.000000 704.000000 -768.000000
-592.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 272.000000 -768.000000
-592.000000 272.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 720.000000 256.000000
448.000000 720.000000 256.000000
448.000000 720.000000 -768.000000
-576.000000 720.000000 -768.000000
-576.000000 704.000000 256.000000
448.000000 704.000000 256.000000
448.000000 704.000000 -768.000000
-576.000000 704.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-152.000000 704.000000 -280.000000
-72.000000 704.000000 -280.000000
-72.000000 704.000000 -296.000000
-152.000000 704.000000 -296.000000
-152.000000 16.000000 -280.000000
-72.000000 16.000000 -280.000000
-72.000000 16.000000 -296.000000
-152.000000 16.000000 -296.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-160.000000 704.000000 -216.000000
-72.000000 704.000000 -216.000000
-72.000000 704.000000 -232.000000
-160.000000 704.000000 -232.000000
-160.000000 16.000000 -216.000000
-72.000000 16.000000 -216.000000
-72.000000 16.000000 -232.000000
-160.000000 16.000000 -232.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-88.000000 704.000000 -216.000000
-72.000000 704.000000 -216.000000
-72.000000 704.000000 -296.000000
-88.000000 704.000000 -296.000000
-88.000000 16.000000 -216.000000
-72.000000 16.000000 -216.000000
-72.000000 16.000000 -296.000000
-88.000000 16.000000 -296.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-160.000000 704.000000 -216.000000
-128.000000 704.000000 -216.000000
-128.000000 704.000000 -296.000000
-160.000000 704.000000 -296.000000
-160.000000 16.000000 -216.000000
-128.000000 16.000000 -216.000000
-128.000000 16.000000 -296.000000
-160.000000 16.000000 -296.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-152.000000 696.000000 308.000000
484.000000 696.000000 308.000000
484.000000 696.000000 292.000000
-152.000000 696.000000 292.000000
-152.000000 0.000000 308.000000
484.000000 0.000000 308.000000
484.000000 0.000000 292.000000
-152.000000 0.000000 292.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-160.000000 696.000000 304.000000
-152.000000 696.000000 304.000000
-152.000000 696.000000 -808.000000
-160.000000 696.000000 -808.000000
-160.000000 0.000000 304.000000
-152.000000 0.000000 304.000000
-152.000000 0.000000 -808.000000
-160.000000 0.000000 -808.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-152.000000 696.000000 -804.000000
484.000000 696.000000 -804.000000
484.000000 696.000000 -820.000000
-152.000000 696.000000 -820.000000
-152.000000 0.000000 -804.000000
484.000000 0.000000 -804.000000
484.000000 0.000000 -820.000000
-152.000000 0.000000 -820.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
484.000000 696.000000 292.000000
500.000000 696.000000 292.000000
500.000000 696.000000 -804.000000
484.000000 696.000000 -804.000000
484.000000 0.000000 292.000000
500.000000 0.000000 292.000000
500.000000 0.000000 -804.000000
484.000000 0.000000 -804.000000
faces
-256.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
-256.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
-256.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
-256.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
-256.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
-256.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 160.000000 296.000000
488.000000 160.000000 296.000000
488.000000 160.000000 -800.000000
-144.000000 160.000000 -800.000000
-144.000000 144.000000 296.000000
488.000000 144.000000 296.000000
488.000000 144.000000 -800.000000
-144.000000 144.000000 -800.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-144.000000 320.000000 304.000000
488.000000 320.000000 304.000000
488.000000 320.000000 -792.000000
-144.000000 320.000000 -792.000000
-144.000000 304.000000 304.000000
488.000000 304.000000 304.000000
488.000000 304.000000 -792.000000
-144.000000 304.000000 -792.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-156.000000 0.000000 296.000000
488.000000 0.000000 296.000000
488.000000 0.000000 -808.000000
-156.000000 0.000000 -808.000000
-156.000000 -16.000000 296.000000
488.000000 -16.000000 296.000000
488.000000 -16.000000 -808.000000
-156.000000 -16.000000 -808.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type PlayerSpawn
Vector3 position 296.000000 0.000000 -584.000000
Vector3 angles -45.000000 0.000000 0.000000
Bool8 teamA 0
entity
type CameraPath
UInt32 entityIdAttachedTo 5
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 456.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 352.000000 256.000000 224.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position 296.000000 0.000000 48.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 368.000000 0.000000 -256.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -112.000000 160.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 16.000000 0.000000 48.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000000 0.000000 -560.000000
Vector3 angles -45.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000000 160.000000 -560.000000
Vector3 angles -45.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 296.000000 160.000000 -584.000000
Vector3 angles -45.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 368.000000 160.000000 -256.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 296.000000 160.000000 48.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000000 160.000000 48.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000000 320.000000 -560.000000
Vector3 angles -45.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 296.000000 320.000000 -584.000000
Vector3 angles -45.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 368.000000 320.000000 -256.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 296.000000 320.000000 48.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000000 320.000000 48.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
|
71c60805af145760b1c946cce750b5b5cae06b63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1442/CH9/EX9.6/9_6.sce | 54e8b9389e5e4ba0358884f998cdfe3d8d637547 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sce | 9_6.sce | clc
//initialisation of variables
m1= 0.2 //kg/s
v1= 1.0803 //m^3/kg
P= 200 //kPa
T= 200 //C
s1= 5.8041 //kJ.kg K
s2= 7.5066 //kJ/kg K
h1= 2870.5 //kJ/kg
h2= 2495.9 //kJ/kg
//CALCULATIONS
V1= m1*v1
V2= 0.1*V1
Q= m1*(273.15+T)*(s1-s2)
W= m1*((h1-h2)-(273.15+T)*(s2-s1))
//RESULTS
printf (' volume flow rate into composser = %.4f m^3/s',V1)
printf (' \n volume flow rate out of composser = %.4f m^3/s',V2)
printf (' \n Work = %.1f kW',W)
printf (' \n Heat = %.1f kW',Q)
|
adab9fbaca1322b2d152317e041482c66cff9b5c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3819/CH1/EX1.26/Ex1_26.sce | 6876533ce02ba098178a15b13461ec891f2ca074 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 352 | sce | Ex1_26.sce | // A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 1-Properties of Fluid
// Problem 1.26
//Given Data Set in the Problem(SI Units)
d=40*10^-3
p=2.5
//Calculations
//Using Pressure =8*Surface tension/diameter of the soap bubble
st=p*d/8
mprintf("The Surface tension inside the soap bubble is %f N/m",st)
|
76e736e120a710dee610e9ec6a6e0347c5aa0e56 | 88f74b5fffdd03abe6e83f706181fd7f42a18b28 | /60002190054_Scilab5(InverseZ-Transform).sce | 22bbd120c590ddab3091aabadd1f2519a8d8047a | [] | 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 | 394 | sce | 60002190054_Scilab5(InverseZ-Transform).sce | //Programs to find the inverse z transform using the
//long division method
clear;
z=%z;
num=4*z-2;
den=(z-1)*(z-2)^2;
h=ldiv(num,den,16);
disp("First sixteen terms of the series:",h)
//Programs to find the inverse z transform using the
//long division method_2
clear;
z=%z;
num=3*(z^2)+2*z+1;
den=z^2-3*z+2;
h=ldiv(num,den,16);
disp("First sixteen terms of the series:",h)
|
1aacfcdf71d4f07b4f2150b82222ffda53c62f65 | 27d20d5d5ba446128b602e338b583ee5f76666b9 | /2012/1004/gcpc2012d.tst | b4d2ca4675736ea3b6faaf16652ccfe226817c29 | [] | no_license | Neverous/ii-mia | 2b6b10181e7b6207d22a1ffd6c08c499ccc8c613 | 9a87fa85e325b1c39041c99a74005f88341a1aa7 | refs/heads/master | 2021-01-10T15:52:27.778247 | 2016-03-22T14:49:34 | 2016-03-22T14:49:34 | 54,483,598 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 474 | tst | gcpc2012d.tst | /home/neverous/Pobrane/OLD/secret_2012/Outsourcing/testcases/sample;1;32768 /home/neverous/Pobrane/OLD/secret_2012/Outsourcing/testcases/Positives;1;32768 /home/neverous/Pobrane/OLD/secret_2012/Outsourcing/testcases/PositivesUselessLabels;1;32768 /home/neverous/Pobrane/OLD/secret_2012/Outsourcing/testcases/Paths;1;32768 /home/neverous/Pobrane/OLD/secret_2012/Outsourcing/testcases/Negatives;1;32768 /home/neverous/Pobrane/OLD/secret_2012/Outsourcing/testcases/All;1;32768
|
46b68988d2ab9e0cd13e1527a869be5ae158aead | 449d555969bfd7befe906877abab098c6e63a0e8 | /824/CH5/EX5.4/5_4.sce | d2a5e5c754c973df1a2ec1d68e7f8814485abb2f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 173 | sce | 5_4.sce | //Clear//
clc
clear
exec("5.4data.sci");
rCH4 = (v0/W)*CCH4;x
x=log(PCO);
y = log(rCH4)
alpha= (y(3)-y(2))/(x(3)-x(2));
//plot2d(x,y)
disp("alpha")
disp(alpha)
|
41d710c3cf11546b920cfe9ae55179dc91fd0e0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3863/CH1/EX1.30/Ex1_30.sce | 9afac61f6210e7fed6ddac25e0abe06da2f1f25d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,050 | sce | Ex1_30.sce | clear
//
//
//Given
//Variable declaration
Ds=20 //Diameter of steel rod in mm
Di_c=40 //Internal diameter of copper tube in mm
De_c=50 //External diameter of copper tube in mm
Es=200*10**3 //Youngs modulus of steel in N/sq.mm
Ec=100*10**3 //Youngs modulus of copper in N/sq.mm
alpha_s=12e-6 //Co-efficient of linear expansion of steel in per degree celsius
alpha_c=18e-6 //Co-efficient of linear expansion of copper in per degree celsius
T=50 //Rise of temperature in degree celsius
//Calculation
As=(%pi/4)*(Ds**2) //Area of steel rod in sq.mm
Ac=(%pi/4)*(De_c**2-Di_c**2) //Area of copper tube in sq.mm
sigmac=(((alpha_c-alpha_s)*T)/(((Ac/As)/Es)+(1/Ec))) //Compressive stress in copper
sigmas=(sigmac*(Ac/As)) //Tensile stress in steel
//Result
printf("\n Stress in copper = %0.3f N/mm^2",sigmac)
printf("\n Stress in steel = %0.3f N/mm^2",sigmas)
|
19e99447b13085bf626ea42ebe0eebf624f9fa8a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH5/EX5.23/example5_23.sce | e7cb3a2ac8c27f0115d8bc5c9798d830115600be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 387 | sce | example5_23.sce |
//example 5.23
//calculate
//diameter of well
clc;
//given
h1=2.1; //initial pumping depression
h=1.6; //heigth after recuperation
t=90; //time
h2=h1-h;
KbyA=2.303*60*log10(h1/h2)/t;
Q=10; //yield(lit/sec)
H=2;
A=Q*3.6/(H*(KbyA));
d=(4*A/%pi)^0.5;
d=round(d*10)/10;
mprintf("\nDaimeter of well=%f m",d);
|
558d2bc12d86beddbe2ac50576c6f73a3deeb3c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1544/CH3/EX3.12/Ch03Ex12.sce | 72ddda713184bbe64efe2285b9e0900c2cdb0bbe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,988 | sce | Ch03Ex12.sce | // Scilab code Ex3.12: Pg 92-95 (2008)
clc; clear;
V = 200; // Supply voltage, voltage
C_AB = 2; // Capacitance across branch AB, micro-farad
C_BC = 3; // Capacitance across branch BC, micro-farad
C_CD = 6; // Capacitance across branch CD, micro-farad
C_EF = 8; // Capacitance across branch EF, micro-farad
C_BD = 4; // Capacitance across branch EF, micro-farad
// Part (a)
// Since 3-micro-farad & 6-micro-farad capacitors are in series & the reciprocal of the resulting capacitance of capacitors connected in series is the sum of the reciprocal of the individual capacitances present in the circuit, therefore i.e 1/C = 1/C1 + 1/C2
C_BCD = ( C_BC*C_CD )/(C_BC+C_CD); // Resulting capacitance across branch BCD, micro-farad
//Since C_BCD & 4-micro-farad capacitors are in parallel & the resulting capacitance of parallerly connected capacitors is the sum of the individual capacitance present in the circuit
C_BD = C_BCD + C_BD; // Resulting capacitance across branch BD, micro-farad
// Since 2-micro-farad & C_BD capacitors are in series & the reciprocal of the resulting capacitance of capacitors connected in series is the sum of the reciprocal of the individual capacitances present in the circuit, therefore, we have
C_AD = (C_BD*C_AB)/(C_BD+C_AB); // Resulting capacitance across branch AD, micro-farad
//Since C_AD & C_EF capacitors are in parallel & the resulting capacitance of parallerly connected capacitors is the sum of the individual capacitance present in the circuit
C = C_AD + C_EF; // Resulting capacitance of the circuit, micro-farad
Q = V*C; // Electric charge drawn from the supply, C
// Part (b)
Q_EF = V*C_EF; // The charge on the 8 micro-farad capacitor, micro-coulomb
// Part (c)
Q_AD = Q - Q_EF; // The charge on the 4 micro-farad capacitor, C
Q_BD = Q_AD; // Charge in series combination of capacitors, micro-farad
// Since Q = C*V, solving for V
V_BD = Q_BD/C_BD; // The p.d. across the 4 F capacitor,V
// Part(d)
Q_BCD = V_BD*C_BCD; // Electric charge across branch BCD, C
Q_BC = Q_BCD; // Electric charge, C
V_BC = Q_BC/C_BC; // The p.d. across the 3 micro-farad capacitor
printf("\nThe charge drawn from the supply = %3.1f mC", Q/1e+03);
printf("\nThe charge on the %1d micro-farad capacitor = %3.1f mC", C_EF, Q_EF/1e+03);
printf("\nThe p.d. across the %1d micro-farad capacitor= %2d V", C_BD, V_BD);
printf("\nThe p.d. across the %1d micro-farad capacitor = %5.2f V", Q_BC, V_BC);
// Result
// The charge drawn from the supply = 1.9 mC
// The charge on the 8 micro-farad capacitor = 1.6 mC
// The p.d. across the 6 micro-farad capacitor= 50 V
// The p.d. across the 100 micro-farad capacitor = 33.33 V
|
1b37181af9cd7ff7f118a27cda85721b4264fbe1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2175/CH10/EX10.7/10_7.sce | a4668f0add931080f120274e0cff9d33d8a5dfc3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 520 | sce | 10_7.sce | clc;
v=650*10^3/3600;
KE=(1/2*v^2);
T0=-18+273;
cp=1.005;
Ieff=0.9;
T01=KE/10^3/cp+T0;
T01s=T0+Ieff*(T01-T0)
p02!p01=9;
y=1.4;
T02s=T01*(p02!p01)^[(y-1)/y];
Ieff2=0.89;
T02=T01+(T02s-T01)/Ieff2
W=cp*(T02-T01);
p01!p0=1.215;
p03!p4=p02!p01*p01!p0;
T03=1123;
y2=1.333;
T4=T03/[(p03!p4)^{(y2-1)/y2}];
C4=180.5;
cps=1.15*10^3;
T04=T4+C4^2/(2*cps);
Ieff3=0.93;
Wo=cps*(T03-T04)*Ieff3/1000
Ieff4=0.98;
NW=(Wo-W)*Ieff4;
Q=cps*(T03-T02)/1000
Teff=NW/Q
disp("%",Teff*100,"Thermal efficiency");
|
2ee5aa703c51d9194ac67cd6dfe2203f2a0a764f | ad617742f184bf6d4cceb3e9c99232d8bd52b862 | /tests/bfp-004-cvttolog.tst | 7ac6b7abbd347d212ec73360fddf4adfba7bf6ed | [
"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 | 23,185 | tst | bfp-004-cvttolog.tst | *Testcase bfp-004-cvttolog.tst: CLFEBR, CLFDBR, CLFXBR
#Testcase bfp-004-cvttolog.tst: IEEE Convert To Logical
#..Includes CONVERT TO LOGICAL 32 (3). Tests traps, exceptions,
#..rounding modes, and NaN propagation.
sysclear
archmode esame
#
# Following suppresses logging of program checks. This test program, as part
# of its normal operation, generates 17program check messages that have no
# value in the validation process. (The messages, not the program checks.)
#
ostailor quiet
loadcore "$(testpath)/bfp-004-cvttolog.core"
runtest 1.0
ostailor default # restore messages for subsequent tests
# BFP short inputs converted to uint-32 test results
*Compare
r 1000.10
*Want "CLFEBR result pairs 1-2" 00000001 00000001 00000002 00000002
r 1010.10
*Want "CLFEBR result pairs 3-4" 00000004 00000004 00000000 00000000
r 1020.10
*Want "CLFEBR result pairs 5-6" 00000000 00000000 FFFFFFFF 00000000
r 1030.10
*Want "CLFEBR result pairs 7-8" FFFFFF00 FFFFFF00 00000001 00000001
r 1040.08
*Want "CLFEBR result pair 9" 00000000 00000000
# BFP short inputs converted to uint-32 FPCR contents, cc
*Compare
r 1100.10
*Want "CLFEBR FPC pairs 1-2" 00000002 F8000002 00000002 F8000002
r 1110.10
*Want "CLFEBR FPC pairs 3-4" 00000002 F8000002 00880003 F8008000
r 1120.10
*Want "CLFEBR FPC pairs 5-6" 00880003 F8008000 00880003 F8008000
r 1130.10
*Want "CLFEBR FPC pairs 7-8" 00000002 F8000002 00080002 F8000C02
r 1140.08
*Want "CLFEBR FPC pair 9" 00080002 F8000802
# rounding mode tests - short BFP - results from rounding
*Compare
r 1200.10 # RZ, RP, RM, RFS
*Want "CLFEBR -1.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 1210.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR -1.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 1220.08 # RP, RM
*Want "CLFEBR -1.5 M3 modes 6, 7" 00000000 00000000
r 1230.10 # RZ, RP, RM, RFS
*Want "CLFEBR -0.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 1240.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR -0.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 1250.08 # RP, RM
*Want "CLFEBR -0.5 M3 modes 6, 7" 00000000 00000000
r 1260.10 # RZ, RP, RM, RFS
*Want "CLFEBR 0.5 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 1270.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 0.5 M3 modes 1, 3-5" 00000001 00000001 00000000 00000000
r 1280.08 # RP, RM
*Want "CLFEBR 0.5 M3 modes 6, 7" 00000001 00000000
r 1290.10 # RZ, RP, RM, RFS
*Want "CLFEBR 1.5 FPC modes 1-3, 7" 00000001 00000002 00000001 00000001
r 12A0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 1.5 M3 modes 1, 3-5" 00000002 00000001 00000002 00000001
r 12B0.08 # RP, RM
*Want "CLFEBR 1.5 M3 modes 6, 7" 00000002 00000001
r 12C0.10 # RZ, RP, RM, RFS
*Want "CLFEBR 2.5 FPC modes 1-3, 7" 00000002 00000003 00000002 00000003
r 12D0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 2.5 M3 modes 1, 3-5" 00000003 00000003 00000002 00000002
r 12E0.08 # RP, RM
*Want "CLFEBR 2.5 M3 modes 6, 7" 00000003 00000002
r 12F0.10 # RZ, RP, RM, RFS
*Want "CLFEBR 5.5 FPC modes 1-3, 7" 00000005 00000006 00000005 00000005
r 1300.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 5.5 M3 modes 1, 3-5" 00000006 00000005 00000006 00000005
r 1310.08 # RP, RM
*Want "CLFEBR 5.5 M3 modes 6, 7" 00000006 00000005
r 1320.10 # RZ, RP, RM, RFS
*Want "CLFEBR 9.5 FPC modes 1-3, 7" 00000009 0000000A 00000009 00000009
r 1330.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 9.5 M3 modes 1, 3-5" 0000000A 00000009 0000000A 00000009
r 1340.08 # RP, RM
*Want "CLFEBR 9.5 M3 modes 6, 7" 0000000A 00000009
r 1350.10 # RZ, RP, RM, RFS
*Want "CLFEBR max FPC modes 1-3, 7" FFFFFF00 FFFFFF00 FFFFFF00 FFFFFF00
r 1360.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR max M3 modes 1, 3-5" FFFFFF00 FFFFFF00 FFFFFF00 FFFFFF00
r 1370.08 # RP, RM
*Want "CLFEBR max M3 modes 6, 7" FFFFFF00 FFFFFF00
r 1380.10 # RZ, RP, RM, RFS
*Want "CLFEBR 0.75 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 1390.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 0.75 M3 modes 1, 3-5" 00000001 00000001 00000001 00000000
r 13A0.08 # RP, RM
*Want "CLFEBR 0.75 M3 modes 6, 7" 00000001 00000000
r 13B0.10 # RZ, RP, RM, RFS
*Want "CLFEBR 0.25 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 13C0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 0.25 M3 modes 1, 3-5" 00000000 00000001 00000000 00000000
r 13D0.08 # RP, RM
*Want "CLFEBR 0.25 M3 modes 6, 7" 00000001 00000000
# rounding mode tests - short BFP - FPCR contents with cc in last byte
*Compare
r 1600.10
*Want "CLFEBR -1.5 FPC modes 1-3, 7 FPCR" 00800003 00800003 00800003 00800003
r 1610.10
*Want "CLFEBR -1.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00880003 00880003
r 1620.08
*Want "CLFEBR -1.5 M3 modes 6, 7 FPCR" 00880003 00880003
r 1630.10
*Want "CLFEBR -0.5 FPC modes 1-3, 7 FPCR" 00000001 00000001 00800003 00800003
r 1640.10
*Want "CLFEBR -0.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00080001 00080001
r 1650.08
*Want "CLFEBR -0.5 M3 modes 6, 7 FPCR" 00080001 00880003
r 1660.10
*Want "CLFEBR +0.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1670.10
*Want "CLFEBR +0.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 1680.08
*Want "CLFEBR +0.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 1690.10
*Want "CLFEBR +1.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 16A0.10
*Want "CLFEBR +1.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 16B0.08
*Want "CLFEBR +1.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 16C0.10
*Want "CLFEBR +2.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 16D0.10
*Want "CLFEBR +2.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 16E0.08
*Want "CLFEBR +2.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 16F0.10
*Want "CLFEBR +5.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1700.10
*Want "CLFEBR +5.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 1710.08
*Want "CLFEBR +5.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 1720.10
*Want "CLFEBR +9.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1730.10
*Want "CLFEBR +9.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 1740.08
*Want "CLFEBR +9.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 1750.10
*Want "CLFEBR max FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1760.10
*Want "CLFEBR max M3 modes 1, 3-5 FPCR" 00000002 00000002 00000002 00000002
r 1770.08
*Want "CLFEBR max M3 modes 5-7" 00000002 00000002
r 1780.10 # RZ, RP, RM, RFS
*Want "CLFEBR +0.75 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1790.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR +0.75 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 17A0.08 # RP, RM
*Want "CLFEBR +0.75 M3 modes 6, 7 FPCR" 00080002 00080002
r 17B0.10
*Want "CLFEBR +0.25 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 17C0.10
*Want "CLFEBR +0.25 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 17D0.08
*Want "CLFEBR +0.25 M3 modes 6, 7 FPCR" 00080002 00080002
# BFP short inputs converted to uint-32 test results
*Compare
r 2000.10
*Want "CLFDBR result pairs 1-2" 00000001 00000001 00000002 00000002
r 2010.10
*Want "CLFDBR result pairs 3-4" 00000004 00000004 00000000 00000000
r 2020.10
*Want "CLFDBR result pairs 5-6" 00000000 00000000 FFFFFFFF 00000000
r 2030.10
*Want "CLFDBR result pairs 7-8" FFFFFFFF FFFFFFFF 00000001 00000001
r 2040.08
*Want "CLFDBR result pair 9" 00000000 00000000
# BFP long inputs converted to uint-32 FPCR contents, cc
*Compare
r 2100.10
*Want "CLFDBR FPC pairs 1-2" 00000002 F8000002 00000002 F8000002
r 2110.10
*Want "CLFDBR FPC pairs 3-4" 00000002 F8000002 00880003 F8008000
r 2120.10
*Want "CLFDBR FPC pairs 5-6" 00880003 F8008000 00880003 F8008000
r 2130.10
*Want "CLFDBR FPC pairs 7-8" 00080002 F8000802 00080002 F8000C02
r 2140.08
*Want "CLFDBR FPC pair 9" 00080002 F8000802
# rounding mode tests - long BFP - results from rounding
*Compare
r 2200.10 # RZ, RP, RM, RFS
*Want "CLFDBR -1.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 2210.10 # RNTA, FS, RNTE, RZ
*Want "CLFDBR -1.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 2220.08 # RP, RM
*Want "CLFDBR -1.5 M3 modes 6, 7" 00000000 00000000
r 2230.10 # RZ, RP, RM, RFS
*Want "CLFDBR -0.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 2240.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR -0.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 2250.08 # RP, RM
*Want "CLFDBR -0.5 M3 modes 6, 7" 00000000 00000000
r 2260.10 # RZ, RP, RM, RFS
*Want "CLFDBR 0.5 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 2270.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 0.5 M3 modes 1, 3-5" 00000001 00000001 00000000 00000000
r 2280.08 # RP, RM
*Want "CLFDBR 0.5 M3 modes 6, 7" 00000001 00000000
r 2290.10 # RZ, RP, RM, RFS
*Want "CLFDBR 1.5 FPC modes 1-3, 7" 00000001 00000002 00000001 00000001
r 22A0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 1.5 M3 modes 1, 3-5" 00000002 00000001 00000002 00000001
r 22B0.08 # RP, RM
*Want "CLFDBR 1.5 M3 modes 6, 7" 00000002 00000001
r 22C0.10 # RZ, RP, RM, RFS
*Want "CLFDBR 2.5 FPC modes 1-3, 7" 00000002 00000003 00000002 00000003
r 22D0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 2.5 M3 modes 1, 3-5" 00000003 00000003 00000002 00000002
r 22E0.08 # RP, RM
*Want "CLFDBR 2.5 M3 modes 6, 7" 00000003 00000002
r 22F0.10 # RZ, RP, RM, RFS
*Want "CLFDBR 5.5 FPC modes 1-3, 7" 00000005 00000006 00000005 00000005
r 2300.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 5.5 M3 modes 1, 3-5" 00000006 00000005 00000006 00000005
r 2310.08 # RP, RM
*Want "CLFDBR 5.5 M3 modes 6, 7" 00000006 00000005
r 2320.10 # RZ, RP, RM, RFS
*Want "CLFDBR 9.5 FPC modes 1-3, 7" 00000009 0000000A 00000009 00000009
r 2330.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 9.5 M3 modes 1, 3-5" 0000000A 00000009 0000000A 00000009
r 2340.08 # RP, RM
*Want "CLFDBR 9.5 M3 modes 6, 7" 0000000A 00000009
r 2350.10 # RZ, RP, RM, RFS
*Want "CLFDBR max FPC modes 1-3, 7" FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF
r 2360.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR max M3 modes 1, 3-5" FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF
r 2370.08 # RP, RM
*Want "CLFDBR max M3 modes 6, 7" FFFFFFFF FFFFFFFF
r 2380.10 # RZ, RP, RM, RFS
*Want "CLFDBR 0.75 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 2390.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 0.75 M3 modes 1, 3-5" 00000001 00000001 00000001 00000000
r 23A0.08 # RP, RM
*Want "CLFDBR 0.75 M3 modes 6, 7" 00000001 00000000
r 23B0.10 # RZ, RP, RM, RFS
*Want "CLFDBR 0.25 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 23C0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 0.25 M3 modes 1, 3-5" 00000000 00000001 00000000 00000000
r 23D0.08 # RP, RM
*Want "CLFDBR 0.25 M3 modes 6, 7" 00000001 00000000
# rounding mode tests - long BFP - FPCR contents with cc in last byte
*Compare
r 2600.10
*Want "CLFDBR -1.5 FPC modes 1-3, 7 FPCR" 00800003 00800003 00800003 00800003
r 2610.10
*Want "CLFDBR -1.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00880003 00880003
r 2620.08
*Want "CLFDBR -1.5 M3 modes 6, 7 FPCR" 00880003 00880003
r 2630.10
*Want "CLFDBR -0.5 FPC modes 1-3, 7 FPCR" 00000001 00000001 00800003 00800003
r 2640.10
*Want "CLFDBR -0.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00080001 00080001
r 2650.08
*Want "CLFDBR -0.5 M3 modes 6, 7 FPCR" 00080001 00880003
r 2660.10
*Want "CLFDBR +0.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 2670.10
*Want "CLFDBR +0.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 2680.08
*Want "CLFDBR +0.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 2690.10
*Want "CLFDBR +1.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 26A0.10
*Want "CLFDBR +1.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 26B0.08
*Want "CLFDBR +1.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 26C0.10
*Want "CLFDBR +2.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 26D0.10
*Want "CLFDBR +2.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 26E0.08
*Want "CLFDBR +2.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 26F0.10
*Want "CLFDBR +5.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 2700.10
*Want "CLFDBR +5.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 2710.08
*Want "CLFDBR +5.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 2720.10
*Want "CLFDBR +9.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 2730.10
*Want "CLFDBR +9.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 2740.08
*Want "CLFDBR +9.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 2750.10
*Want "CLFDBR max FPC modes 1-3, 7 FPCR" 00000002 00800003 00000002 00000002
r 2760.10
*Want "CLFDBR max M3 modes 1, 3-5 FPCR" 00880003 00080002 00880003 00080002
r 2770.08
*Want "CLFDBR max M3 modes 6, 7 FPCR" 00880003 00080002
r 2780.10
*Want "CLFDBR +0.75 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 2790.10
*Want "CLFDBR +0.75 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 27A0.08
*Want "CLFDBR +0.75 M3 modes 6, 7 FPCR" 00080002 00080002
r 27B0.10
*Want "CLFDBR +0.25 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 27C0.10
*Want "CLFDBR +0.25 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 27D0.08
*Want "CLFDBR +0.25 M3 modes 6, 7 FPCR" 00080002 00080002
# BFP extended inputs converted to uint-32 test results
*Compare
r 3000.10
*Want "CLFXBR result pairs 1-2" 00000001 00000001 00000002 00000002
r 3010.10
*Want "CLFXBR result pairs 3-4" 00000004 00000004 00000000 00000000
r 3020.10
*Want "CLFXBR result pairs 5-6" 00000000 00000000 FFFFFFFF 00000000
r 3030.10
*Want "CLFXBR result pairs 7-8" FFFFFFFF FFFFFFFF 00000001 00000001
r 3040.08
*Want "CLFXBR result pair 9" 00000000 00000000
# BFP extended inputs converted to uint-32 FPCR contents, cc
*Compare
r 3100.10
*Want "CLFXBR FPC pairs 1-2" 00000002 F8000002 00000002 F8000002
r 3110.10
*Want "CLFXBR FPC pairs 3-4" 00000002 F8000002 00880003 F8008000
r 3120.10
*Want "CLFXBR FPC pairs 5-6" 00880003 F8008000 00880003 F8008000
r 3130.10
*Want "CLFXBR FPC pairs 7-8" 00080002 F8000802 00080002 F8000C02
r 3140.08
*Want "CLFXBR FPC pair 9" 00080002 F8000802
# rounding mode tests - extended BFP - results from rounding
*Compare
r 3200.10 # RZ, RP, RM, RFS
*Want "CLFXBR -1.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 3210.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR -1.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 3220.08 # RP, RM
*Want "CLFXBR -1.5 M3 modes 6, 7" 00000000 00000000
r 3230.10 # RZ, RP, RM, RFS
*Want "CLFXBR -0.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 3240.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR -0.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 3250.08 # RP, RM
*Want "CLFXBR -0.5 M3 modes 6, 7" 00000000 00000000
r 3260.10 # RZ, RP, RM, RFS
*Want "CLFXBR 0.5 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 3270.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 0.5 M3 modes 1, 3-5" 00000001 00000001 00000000 00000000
r 3280.08 # RP, RM
*Want "CLFXBR 0.5 M3 modes 6, 7" 00000001 00000000
r 3290.10 # RZ, RP, RM, RFS
*Want "CLFXBR 1.5 FPC modes 1-3, 7" 00000001 00000002 00000001 00000001
r 32A0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 1.5 M3 modes 1, 3-5" 00000002 00000001 00000002 00000001
r 32B0.08 # RP, RM
*Want "CLFXBR 1.5 M3 modes 6, 7" 00000002 00000001
r 32C0.10 # RZ, RP, RM, RFS
*Want "CLFXBR 2.5 FPC modes 1-3, 7" 00000002 00000003 00000002 00000003
r 32D0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 2.5 M3 modes 1, 3-5" 00000003 00000003 00000002 00000002
r 32E0.08 # RP, RM
*Want "CLFXBR 2.5 M3 modes 6, 7" 00000003 00000002
r 32F0.10 # RZ, RP, RM, RFS
*Want "CLFXBR 5.5 FPC modes 1-3, 7" 00000005 00000006 00000005 00000005
r 3300.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 5.5 M3 modes 1, 3-5" 00000006 00000005 00000006 00000005
r 3310.08 # RP, RM
*Want "CLFXBR 5.5 M3 modes 6, 7" 00000006 00000005
r 3320.10 # RZ, RP, RM, RFS
*Want "CLFXBR 9.5 FPC modes 1-3, 7" 00000009 0000000A 00000009 00000009
r 3330.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 9.5 M3 modes 1, 3-5" 0000000A 00000009 0000000A 00000009
r 3340.08 # RP, RM
*Want "CLFXBR 9.5 M3 modes 6, 7" 0000000A 00000009
r 3350.10 # RZ, RP, RM, RFS
*Want "CLFXBR max FPC modes 1-3, 7" FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF
r 3360.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR max M3 modes 1, 3-5" FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF
r 3370.08 # RP, RM
*Want "CLFXBR max M3 modes 6, 7" FFFFFFFF FFFFFFFF
r 3380.10 # RZ, RP, RM, RFS
*Want "CLFXBR 0.75 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 3390.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 0.75 M3 modes 1, 3-5" 00000001 00000001 00000001 00000000
r 33A0.08 # RP, RM
*Want "CLFXBR 0.75 M3 modes 6, 7" 00000001 00000000
r 33B0.10 # RZ, RP, RM, RFS
*Want "CLFXBR 0.25 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 33C0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 0.25 M3 modes 1, 3-5" 00000000 00000001 00000000 00000000
r 33D0.08 # RP, RM
*Want "CLFXBR 0.25 M3 modes 6, 7" 00000001 00000000
r 3600.10
*Want "CLFXBR -1.5 FPC modes 1-3, 7 FPCR" 00800003 00800003 00800003 00800003
r 3610.10
*Want "CLFXBR -1.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00880003 00880003
r 3620.08
*Want "CLFXBR -1.5 M3 modes 6, 7 FPCR" 00880003 00880003
r 3630.10
*Want "CLFXBR -0.5 FPC modes 1-3, 7 FPCR" 00000001 00000001 00800003 00800003
r 3640.10
*Want "CLFXBR -0.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00080001 00080001
r 3650.08
*Want "CLFXBR -0.5 M3 modes 6, 7 FPCR" 00080001 00880003
r 3660.10
*Want "CLFXBR +0.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 3670.10
*Want "CLFXBR +0.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 3680.08
*Want "CLFXBR +0.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 3690.10
*Want "CLFXBR +1.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 36A0.10
*Want "CLFXBR +1.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 36B0.08
*Want "CLFXBR +1.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 36C0.10
*Want "CLFXBR +2.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 36D0.10
*Want "CLFXBR +2.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 36E0.08
*Want "CLFXBR +2.5 M3 modes 5-7" 00080002 00080002
r 36F0.10
*Want "CLFXBR +5.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 3700.10
*Want "CLFXBR +5.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 3710.08
*Want "CLFXBR +5.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 3720.10
*Want "CLFXBR +9.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 3730.10
*Want "CLFXBR +9.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 3740.08
*Want "CLFXBR +9.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 3750.10
*Want "CLFXBR max FPC modes 1-3, 7 FPCR" 00000002 00800003 00000002 00000002
r 3760.10
*Want "CLFXBR max M3 modes 1, 3-5 FPCR" 00880003 00080002 00880003 00080002
r 3770.08
*Want "CLFXBR max M3 modes 6, 7 FPCR" 00880003 00080002
r 3780.10
*Want "CLFXBR +0.75 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 3790.10
*Want "CLFXBR +0.75 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 37A0.08
*Want "CLFXBR +0.75 M3 modes 6, 7 FPCR" 00080002 00080002
r 37B0.10
*Want "CLFXBR +0.25 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 37C0.10
*Want "CLFXBR +0.25 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 37D0.08
*Want "CLFXBR +0.25 M3 modes 6, 7 FPCR" 00080002 00080002
*Done
|
51e386a502d1356540da8dbd21761e7aa7572a71 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH34/EX34.18/ex18.sce | 93d82f4bf7ddb42b477062109c67f6abba57f1ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 179 | sce | ex18.sce | clear
clc
disp("chances of winning of A=1/2+(1/2)^2*(1/2)+(1/2)^4*(1/2)+(1/2)^6*(1/2)+..=' )
(1/2)/(1-(1/2)^2)
disp('chances of winning of B=1-chances of winning of A')
1-2/3 |
75eab172b75fc0b09472d21908a79488d7ef6518 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH11/EX11.6/Example11_6.sce | 16f14b894dc9861fb4397fbe785a52b12cf466e9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,955 | sce | Example11_6.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 4: OVERHEAD LINE INSULATORS
// EXAMPLE : 4.6 :
// Page number 186
clear ; clc ; close ; // Clear the work space and console
// Given data
m = 6.0 // Mutual capacitance
n = 5.0 // Number of insulators
// Calculations
E_4 = (1+(1/m)) // Voltage across 4th insulator as percent of E_5(%)
E_3 = (1+(3/m)+(1/m**2)) // Voltage across 3rd insulator as percent of E_5(%)
E_2 = (1+(6/m)+(5/m**2)+(1/m**3)) // Voltage across 2nd insulator as percent of E_5(%)
E_1 = (1+(10/m)+(15/m**2)+(7/m**3)+(1/m**4)) // Voltage across 1st insulator as percent of E_5(%)
E_5 = 100/(E_4+E_3+E_2+E_1+1) // Voltage across 5th insulator as percent of E_5(%)
E4 = E_4*E_5 // Voltage across 4th insulator as percent of E_5(%)
E3 = E_3*E_5 // Voltage across 3rd insulator as percent of E_5(%)
E2 = E_2*E_5 // Voltage across 2nd insulator as percent of E_5(%)
E1 = E_1*E_5 // Voltage across 1st insulator as percent of E_5(%)
eff = 100/(n*E1/100) // String efficiency(%)
// Results
disp("PART II - EXAMPLE : 4.6 : SOLUTION :-")
printf("\nVoltage distribution as a percentage of voltage of conductor to earth are:")
printf("\n E_1 = %.2f percent", E1)
printf("\n E_2 = %.2f percent", E2)
printf("\n E_3 = %.1f percent", E3)
printf("\n E_4 = %.1f percent", E4)
printf("\n E_5 = %.2f percent", E_5)
printf("\nString efficiency = %.f percent \n", eff)
printf("\nNOTE: Changes in obtained answer from that of textbook is due to more precision")
|
0fe1f90fcc1a08138747d1a19817975cf599a357 | 449d555969bfd7befe906877abab098c6e63a0e8 | /615/CH6/EX6.2/6_2.sce | 97072c9a38cbd04d26367fcaddf5bbe69515f2c7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 176 | sce | 6_2.sce | //lubricants//
//example 6.2//
s=0.86;//specific gravity of lubricating oil//
A=(141.5/s)-131.5;//formula of API gravity//
printf("The gravity of lubricating oil is %f",A); |
954b3123ad80ec658cb4e796df52c9ee1ae9105b | 449d555969bfd7befe906877abab098c6e63a0e8 | /944/CH7/EX7.9/example7_9_TACC.sce | 60b1fa3c850c032875762d8883ef2454ec9f7df8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 601 | sce | example7_9_TACC.sce | //example 7.9
clear;
clc;
//Given:
V=0.001;//Volume of vessel[m3]
T=300;//Temperature [K]
k=1.381*10^-23;//Boltzmann constant[J/K]
mol.wt=32;//molecular mass of oxygen molecule
h=6.626*10^-34;//planck's constant[J.s}
//To find the Transitional partition function of an oxygen molecule confined in a 1-litre vessel at 300K
m=32*1.66*(10^-27);//mass of oxygen molecule[Kg]
x=[(2*3.14*m*k*T)^(3/2)]*V;
y=h^3;
zt=x/y;//Transitional partition function of an oxygen molecule
disp(zt,'The Transitional partition function of an oxygen molecule confined in a 1-litre vessel at 300K is') |
12e0305604e7b1d4f94b0c0388c89787b81b4a7a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3872/CH9/EX9.7/Ex9_7.sce | 3e613327f9728b51de4f9503cb9bed47c999ed17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,785 | sce | Ex9_7.sce | //Book - Power system: Analysisi & Design 5th Edition
//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J.Overbye
//Chapter-9 ;Example 9.7
//Scilab Version - 6.0.0; OS - Windows
clc;
clear;
Vf=1.05 //Prefault voltage in per unit
Zf=0 //Fault through impedance in per unit
Ybus0=-%i*[20 0;0 4] //zero sequence bus admittance matrix in per unit
Zbus0=inv(Ybus0) //zero sequence bus impedance matrix in per unit
Ybus1=-%i*[9.9454 -3.2787;-3.2787 8.2787] //Positive sequence bus admittance matrix in per unit
Zbus1=inv(Ybus1) //Positive sequence bus admittance matrix in per unit
Ybus2=-%i*[9.1611 -3.2787;-3.2787 8.0406] //Negative bus admittance matrix in per unit
Zbus2=inv(Ybus2) //Negative sequence bus admittance matrix in per unit
Z110=%i*0.05 //zero sequence impedance Z110 find out from the Zbus0
Z111=%i*0.11565 //positive sequence impedance Z111 find out from the Zbus1
Z112=%i*0.12781 //negative sequence impedance Z112 find out from the Zbus2
I10=Vf/(Z110+Z111+Z112) //zeor sequence fault current at bus 1 in per unit
I11=I10 //positive sequence fault current at bus 1 in per unit
I12=I11 //Negative sequence fault current at bus 1 in per unit
a=exp(%i*120*%pi/180) //operator a
Isf1=[1 1 1;1 (a^2) a;1 a (a^2)]*[I10;I11;I12] //Subtransient fault current in each phase at bus 1 in per unit
Z220=%i*0.25 //zero sequence impedance Z220 find out from the Zbus0
Z221=%i*0.13893 //positive sequence impedance Z221 find out from the Zbus1
Z222=%i*0.14562 //negative sequence impedance Z222 find out from the Zbus2
I20=Vf/(Z220+Z221+Z222) //zeor sequence fault current at bus 1 in per unit
I21=I20 //positive sequence fault current at bus 1 in per unit
I22=I21 //Negative sequence fault current at bus 1 in per unit
Isf2=[1 1 1;1 (a^2) a;1 a (a^2)]*[I20;I21;I22] //Subtransient fault current in each phase at bus 2 in per unit
V1=[0;Vf;0]-[Z110 0 0;0 Z111 0;0 0 Z112]*[I10;I11;I12] //The sequence components of the line to ground voltages at bus 1 during tha fault at bus 1 with k=1 and n=1 in per unit
V1lg=[1 1 1;1 (a^2) a;1 a (a^2)]*[V1] //The line to ground voltages at bus 1 during tha fault at bus 1 in per unit
Z210=%i*0.05 //zero sequence impedance Z210 find out from the Zbus0
Z211=%i*0.11565 //positive sequence impedance Z211 find out from the Zbus1
Z212=%i*0.12781 //negative sequence impedance Z212 find out from the Zbus2
V2=[0;Vf;0]-[Z210 0 0;0 Z211 0;0 0 Z212]*[I10;I11;I12] //The sequence components of the line to ground voltages at bus 1 during tha fault at bus 2 with k=2 and n=1in per unit
V2lg=[1 1 1;1 (a^2) a;1 a (a^2)]*[V2] //The line to ground voltages at bus 1 during tha fault at bus 1 in per unit
disp(clean(Zbus0,1e-10),'The zero sequence bus impedance matrix is:');
disp(clean(Zbus1,1e-10),'The positive sequence bus impedance matrix is:');
disp(clean(Zbus2,1e-10),'The negative sequence bus impedance matrix is:');
disp(clean(Isf1,1e-10),'The Subtransient fault current in pu in each phase during fault at bus 1 are:');
disp(clean(Isf2,1e-10),'The Subtransient fault current in pu in each phase during fault at bus 2 are:');
disp(abs(clean(V1lg,1e-10)),'The magnitude of the line to ground voltages at bus 1 in pu during fault at bus 1 :',);
disp(atand(clean(imag(V1lg),1e-10),clean(real(V1lg),1e-10)),'The angle of the line to ground voltages at bus 1 in degrees during fault at bus 1 :',);
disp(abs(clean(V2lg,1e-10)),'The magnitude of the line to ground voltages at bus 2 in pu during fault at bus 1 :',);
disp(atand(clean(imag(V2lg),1e-10),clean(real(V2lg),1e-10)),'The angle of the line to ground voltages at bus 1 in degrees during fault at bus 1 :',);
|
d84121973a358ca717ea92c7a98247236b96ed48 | 81719679e3d5945def9b7f3a6f638ee274f5d770 | /aws-java-sdk-core/src/test/resources/resources/profileconfig/CompleteCsmProperties.tst | b0b26d60853b370ce49678bded28511f0bece48e | [
"Apache-2.0"
] | permissive | ZeevHayat1/aws-sdk-java | 1e3351f2d3f44608fbd3ff987630b320b98dc55c | bd1a89e53384095bea869a4ea064ef0cf6ed7588 | refs/heads/master | 2022-04-10T14:18:43.276970 | 2020-03-07T12:15:44 | 2020-03-07T12:15:44 | 172,681,373 | 1 | 0 | Apache-2.0 | 2019-02-26T09:36:47 | 2019-02-26T09:36:47 | null | UTF-8 | Scilab | false | false | 65 | tst | CompleteCsmProperties.tst | [aws_csm]
csm_enabled = true
csm_port = 1234
csm_client_id = foo
|
5e00f2e40a08d74fbc87f8f2b1cebcde0dfaf81e | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH11/EX11.10.b/exa11_10_b.sce | c6ee7d48f15ce3d0a10e8c042c6e9a6f0aabb9b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 705 | sce | exa11_10_b.sce | //Caption:calculate_Td,tr,Tp,Mp
//example 11_10_b
//page 478
s=%s;
syms Td
G=16/(s^2+1.6*s)
G1=1+s*Td
H=1;
a=G*G1
CL=a/.H
CL=simple(CL)
disp(CL,"C(s)/R(s)=");
zeta=0.8//given
//since zeta=0.8 so 2*zeta*Wn=1.6+16*Td
Wn=sqrt(16)
//so on solving
Td=0.3
//so transfer function takes the form:
CL1=(16+4.8*s)/(s^2+6.4*s+6)
disp(CL1,"C(s)/R(s)=");
Wn1=sqrt(16)
//2*zeta1*Wn1=6.4
zeta1=6.4/(2*Wn1)//damping ratio
Wd=Wn1*sqrt(1-zeta1^2)//damped frequency
Mp=(exp(-(zeta1*%pi)/sqrt(1-zeta1^2)))*100//max. overshoot
tr=(%pi-atan(sqrt(1-zeta1^2)/zeta1))/(Wn1*sqrt(1-zeta1^2))//rise time
Tp=%pi/Wd//peak time
disp(Tp,"peak time=");
disp(Mp,"max. peak overshoot=")
disp(tr,"rise time=")
|
bc0a7af9ed6a1f55b27fb90fd89b007e3abd74cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1052/CH29/EX29.3/293.sce | 500f45ab1e7567932af3ca1885200813be296be4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,156 | sce | 293.sce | clc;
//Examctple 29.3
//page no 455
printf("Example 29.3 page no 455");
//an iron foundry has four work stations that are connected to single duct
v_air=4000//the minimum air velocity required for general foundry dust,ft/min
v_air_s=v_air/60//velocity of air in ft/s
n=4//no. of duct
q_e=3000//each duct transport air,acfm
q=n*q_e//total transport,acfm
A=q/v_air//cross sectional area required ,ft^2
D=sqrt(4*A/%pi)//duct diameter,ft
rho=0.075//density of air
meu=1.21e-5//viscosity of air
R_e=D*rho*v_air_s/meu//reynolds no
printf("\n reynolds no. R_e=%f ",R_e);
f=0.003///fanning friction factor,since R_e >20000
L=400//duct length
g_c=32.2//grav. acc.
P_drop_d=(4*f*L*v_air_s^2*rho)/(2*g_c*D)//pressure drop in the duct
printf("\n pressure drop in duct P_drop_d=%f lbf/ft^2",P_drop_d);
P_drop_h=0.5*5.2//pressure drop in hood
P_drop_cyc=3.5*5.2//pressure drop in cyclone cleaner
P_drop_t=P_drop_d + P_drop_h + P_drop_cyc//total prssure drop
printf("\n total pressure drop P_drop_t=%f lbf/ft^2",P_drop_t);
neta=0.4//pump efficiency
hp=(P_drop_t*q/neta)*3.03e-5//power required in hp
printf("\n power required hp=%f hp ",hp);
|
df366842af08d5b41204126836382f5f7e93962e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH9/EX9.2/Ex9_2.sce | 285280b8f0778d1eff9f0e06f4050617353c6950 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 224 | sce | Ex9_2.sce |
//Ex9_2
clc;
// Given:
m1=24*10^-6;// g per day
m2=10^-2;// g per day
i1=10^-6;// in A
//Formula: i1*m2=m1*i2
//Solution:
i2=(i1*m2)/m1;
i=i2/10^-3;// in mA
printf("The ion current should be = %f mA",i)
|
0e2649d0aa1c4bd1ffb99b8b06173039bd6312a7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2168/CH26/EX26.5/Chapter26_example5.sce | 0cd26eef039cedb79f705b7677a2fa41f5285d3b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,149 | sce | Chapter26_example5.sce | clc
clear
//Input data
p=3.5//Pressure at the delivery is 3.5 times that at entrance
T=1.15//Temperature rise during compression is 1.15 times that for frictionless adiabatic compression. In textbook it is given wrong as 1.5
T3=500+273//Temperature of products of combustion in K
pa=1//Atmospheric pressure in kg/cm^2
Ta=15+273//Atmospheric temperature in K
Cp=0.24//Specific heat at constant pressure in kJ/kg.K
g=1.4//Ratio of specific heats
J=427//Mechanical equivalent of heat in kg.m/kcal
//Calculations
p2=p*pa//Pressure in kg/cm^2
T2a=(Ta*(p2/pa)^((g-1)/g))//Temperature in K
T2=(T2a-Ta)*T+Ta//Temperature in K
wcomp=(Cp*(T2-Ta))//Work done by compressor in kcal/kg
T5=T3/(p2/pa)^((g-1)/g)//Temperature in K
dh35=(Cp*(T3-T5))//Change in enthalpy in kcal/kg
dhnozzle=(dh35-wcomp)//Change in enthalpy of nozzle in kcal/kg
v5=sqrt(2*9.81*J*dhnozzle)//Velocity at the nozzle exit in m/sec
Th=(v5/9.81)//Thrust in kg per kg of air/sec
//Output
printf('(a) the power required to drive the compressor per kg of air per second is %3.1f kcal/kg \n (b) Static thrust developed per kg of air per second is %3.1f kg',wcomp,Th)
|
912984b7de8734681374598080cf2b3934942d46 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1910/CH9/EX9.2/Chapter92.sce | 8f54ce94ce6593fcaf9208d66bc70992332184a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,461 | sce | Chapter92.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Introduction to heat transfer by S.K.Som, Chapter 9, Example 2")
//Steam is condensed at temprature(Tg=100°C) on the outer surafce of a horizontal tube of length(L=3m) and diameter(d)=50mm or .05m
Tg=100;
L=3;
D=0.05;
//The Tube surface is maintained at temprature,Tw=90°C
Tw=90;
//tf is mean film temprature
disp("The mean film temprature in°C is")
tf=(Tg+Tw)/2
//The properties of condensate are density(rho=962kg/m^3),conductivity(k=0.677W/(m*K)),viscosity(mu=3*10^-4 kg/(m*s))
rho=962;
k=0.677;
mu=3*10^-4;
//The value rhov=0.598kg/m^3 and hfg=2.27*10^6J/kg at 100°C are found from steam table
//g is acceleration due to gravity =9.81m/s^2
g=9.81;
rhov=0.598;//vapour density
hfg=2.27*10^6;//enthalpy of vaporisation
//The average heat transfer coefficient hbar=0.745*[(rho*(rho-rhov)*g*hfg*k^3)/(mu*D*(Tg-Tw))]^(1/4)
disp("The average heat transfer coefficient in W/(m^2*K)")
hbar=0.745*[(rho*(rho-rhov)*g*hfg*k^3)/(mu*D*(Tg-Tw))]^(1/4)
//The rate of condensation is given by mdotc=(hbar*(pi*D*L)*(Tg-Tw))/hfg
disp("The total rate of condensation in kg/s")
mdotc=(hbar*(%pi*D*L)*(Tg-Tw))/hfg
disp("Check for reynolds no.")
//For a horizontal tube having length,L,perimeter is P=2L
P=2*L;
//Re is reynolds number
disp("Reynolds number is")
Re=(4*mdotc)/(mu*P)
disp("The flow is laminar")
|
55698ccf7bf59c547c449252f8cd31ca7300f565 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3843/CH2/EX2.7/Ex2_7.sce | 7055758c54fbfadbcca50b8c5317c62031faee34 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,248 | sce | Ex2_7.sce | // Example 2_7
clc;funcprot(0);
// Given data
T=500+273;// K
rho=24;// The density in kg/m^3
R=0.462;// kJ/kg.K
v=1/rho;// m^3/kg
// Calculation
// (a)
P=rho*R*T;// kPa
printf("\n(a)Using the ideal gas equation,The pressure of steam(P)=%4.0f kPa.",P);
// (b)
// Using values for a and b from Table B-8,the vander Waals equation provides
a=1.703;
b=0.00169;
P=((R*T)/(v-b))-(a/v^2);// kPa
printf("\n(b)Using the vander Waals equation,the pressure of steam(P)=%4.0f kPa.",P);
// (c)
// Using values for a and b from Table B-8,the Redlich-Kwong equation provides
a=43.9;
b=0.00117;
P=((R*T)/(v-b))-(a/(v*(v+b)*sqrt(T)));// kPa
printf("\n(c)Using the Redlich-Kwong equation,the pressure of steam(P)=%4.0f kPa.",P);
// (d)
T_c=647.4;// The critical temperature in K
T_R=T/T_c;// The reduced temperature
P_c=8000;// The critical pressure in kPa
P_R=P/P_c;// The reduced pressure
// By using the reduced temperature and the reduced pressure
Z=0.93;// The compressibilty factor
P=(Z*R*T)/v;// kPa
printf("\n(d)By using the compressibilty factor,the pressure of steam(P)=%4.0f kPa.",P);
// (e)
// By using the steam tables,
P=8000;// kPa
printf("\n(e)By using the steam tables,the pressure of steam(P)=%4.0f kPa.",P);
|
69549b3c554fa28da1ac67b2dcc9dd9f810cd8a7 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/examples/link-examples/ext8c.sce | 3ff2ccc962892983eee829df0139b84a7e73cb3a | [
"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 | 318 | sce | ext8c.sce | //Copyright INRIA
//same example as # 10 with call to matptr
//param must be defined as a scilab variable
files=G_make(['/tmp/ext8c.o'],'ext8c.dll');
link(files,'ext8c','C');
param=[1,2,3]
y=call('ext8c','out',size(param),1,'d');
if norm(y-param) > %eps then pause,end
if norm(param(1)-18.0) > %eps then pause,end
|
85b34c9b24cb149b3334710108d6789e37b33b68 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1709/CH9/EX9.6/9_6.sce | a7f57a7425eb40c148748a78e4928a8d869fc997 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 203 | sce | 9_6.sce | clc
//Initialization of variables
m=5.32*10^-26 //kg
v=445 //m/s
sigma=3.84*10^-19 //m^2
//calculations
mu=m*v/(3*sigma)
//results
printf("Dynamic viscosity of oxygen = %.2e newton sec/m^2",mu)
|
4e55099fdd6bc70180bc4f141ffd598370c11fb3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH10/EX10.5/ex5.sce | 05f0901c361de30ab799503ad8809025c9b56538 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | WINDOWS-1252 | Scilab | false | false | 1,593 | sce | ex5.sce | //example5
//The Ideal Regenerative Rankine Cycle
clear
clc
P1=10 //Pressure in state 1 in kPa
h1=191.81 //Specific enthelpy in state 1 in kJ/kg
v1=0.00101 //Specific volume in state 1 in m3/kg
P2=1200 //Pressure in state 2 in kPa
wpumpin=v1*(P2-P1) //work done by the pump 1 in kJ/kg
h2=h1+wpumpin //Specific Enthalpy in state 2 in kJ/kg
v3=0.001138 //Specific volume in state 3 in m3/kg
h3=798.33 //Specific enthalpy in kJ/kg
P3=1200 //Pressure in state 3 in kPa
P4=15000 //Pressure in state 4 in kPa
wpumpin2=v3*(P4-P3) //work done by pump 2 in kJ/kg
h4=h3+wpumpin2 //Specific ehnthalpy in state 4 in kJ/kg
P5=15 //Pressure in state 5 in MPa
T5=600 //Temp. in state 5 in °C
P6=1200 //Pressure in state 6 in kPa
h5=3583.1 //Specific enthalpy in state 5 in kJ/kg
s5=6.6796 //Specific entropy in state 5 in kJ/kg-K
h6=2860.2 //Specific enthalpy in state 6 in kJ/kg
T6=218.4//Temp. in state 6 in °C
sf=0.6492 //in kJ/kg-K
sfg=7.4996 //in kJ/kg-K
s5=6.6796 //Specific entropy in state 5 in kJ/kg-K
s6=s5 //Specific entropy in state 6
s7=s5 //Specific entropy in state 7
x7=(s7-sf)/sfg //quality of steam in state 7
hf=191.81 //in kJ/kg
hfg=2392.1 //in kJ/kg
h7=hf+x7*hfg //Specific enthalpy in state 7 in kJ/kg
y=(h3-h2)/(h6-h2) //fraction of steam extracted from the turbine
qin=h5-h4 //heat coming in in kJ/kg
qout=(h7-h1)*(1-y) //heat going out in kJ/kg
n=1-qout/qin //Thermal efficiency of the cycle
printf("\n Hence, the fraction of steam extracted from the turbine is = %.4f. \n",y);
printf("\n and thermal efficiency of the cycle is = %.3f. \n",n); |
00b83d39ce0af98dba12177d7064ede26b63c7f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1631/CH4/EX4.21.i/Ex4_21i.sce | e123e7e9cb3dceaa13aa328781d4c61efa3b1de6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 377 | sce | Ex4_21i.sce | //Caption:Quantizing levels, bits per sample
//Example 4_21.i
//page no 197
//Find Quantizing levels,minimum number of bits per sample
clear;
clc;
SNRO=30;//dB
fmin=300;
fmax=3300;
fs=80000;
//SNRO=1.76+20log10(q)
q=10^((SNRO-1.76)/20);
q=ceil(q);
v=log2(q);
disp(q,"Quantizing levels required is");
disp(ceil(v),"minimum number of bits per sample are");
|
fee9b2b4a6e07ce8609230a4a0f29111af82a9d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3869/CH7/EX7.5/Ex7_5.sce | 325da08f4480c0bba5d43fa1cd5b6fe91ff660b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 618 | sce | Ex7_5.sce | clear
//
//
//
//Variable declaration
theta1=(8+(35/60))*%pi/180 //glancing angle(radian)
lamda=0.842 //wavelength of X-rays(angstrom)
n1=1 //order
n2=3 //order
//Calculation
x=n2*lamda*sin(theta1)/(n1*lamda)
theta2=asin(x)*180/%pi //glancing angle
theta2d=int(theta2) //glancing angle(degrees)
theta2m=(theta2-theta2d)*60 //glancing angle(minutes)
//Result
printf("\n glancing angle is %0.3f degrees %0.3f minutes",theta2d,theta2m)
printf("\n answer for glancing angle in minutes given in the book is wrong")
|
352ff0ebce613cdc9a6d5d32826745f9a1aa86d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1052/CH26/EX26.4/264.sce | a04024cd2a437295158c03906e26f7f1026dbf0e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 264.sce | clc;
//Example 26.4
//page no 387
printf("\nExample 26.4 page no 387\n\n");
//air is used to fluidize a bed of speherical particles
D=0.2//bed diameter,m
d_p=7.4e-5//diameter of 200 mesh particles from table 23.2,m
rho_s=2200//ultimate solid density
rho_f=1.2//density of air
meu=1.89e-5//viscosity of air
g=9.807//grav. constant
e=0.45//bed porosity
L_mf=0.3//length at minimum fluidization
//assume laminar flow
//applying equation 26.29
v_mf=(1-e)*g*rho_s*d_p^2/(150*e^3*meu)//minimum fluidizaton veloctiy
printf("\n min. fluidization velocity v_mf=%f m/s",v_mf);
//check the flow regime
R_e=v_mf*d_p/(meu*(1-e))
printf("\n Reynolds no R_e=%f ",R_e);
//since R_e= 1.79 <10,flow is laminar
m_dot=%pi*v_mf*D^2*rho_f/4//mass flow rate
printf("\n mass flow rate m_dot =%f kg/s",m_dot);
P_fr=round((1-e)*rho_s*g*L_mf)//gas pressure drop across the bed
printf("\n gas pressure drop P_fr=%f Pa",P_fr);
|
da5112b73ea7556d48c6d61112cfb24039095ede | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH12/EX12.4/Ex12_4.sce | 3a2aee004dd91c438ab76a034567e1bdd1bb9e88 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex12_4.sce | //Example 12.4
P2=1.01*10^5;//Absolute pressure in the nozzle (N/m^2)
v1=1.96;//Speed of water in the hose (m/s)
v2=25.5;//Speed of water in the nozzle (m/s)
rho=10^3;//Density of water (kg/m^3)
P1=P2+1/2*rho*(v2^2-v1^2);//Abolute pressure in the hose from Bernoulli's equation (N/m^2)
printf('Absolute pressure in the hose = %0.2e N/m^2',P1)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
0b81fcf4e14bd770f8d7ddd2d74f8fdd3ec6af02 | a5f734c593296260310d614424be1bbcc2f5f7bd | /test/workflow.tst | 0ee71f816cd5d9da14918bc49914548e1c4165f3 | [] | no_license | Mark-Seaman/JackHammer | 459e58484d67945b932ae6ce4281d0b849cd0039 | 82964a2f5ac465c5fe0ae6e9095aff9ae0202b43 | refs/heads/master | 2016-09-05T18:33:16.154602 | 2015-04-01T22:32:58 | 2015-04-01T22:32:58 | 10,584,774 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 30 | tst | workflow.tst | tpyrun $p/test/workflow_test
|
8e0790b6b7ed8edb41731b875d7af83bbb2840ab | 449d555969bfd7befe906877abab098c6e63a0e8 | /2258/CH1/EX1.5/1_5.sce | 2ecd531b78a762ce1593577c2a14f8f3ffcc257a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 277 | sce | 1_5.sce | clc();
clear;
// To calculate the uncertainity in momentum
deltax=0.2; //distance in armstrong
delta_xm=deltax*10^-10; //distance in m
h=6.626*10^(-34);
delta_p=h/(2*%pi*delta_xm);
printf("The uncertainity in momentum of electron in kg m/sec is");
disp(delta_p);
|
044713a3a852c321b42113921bb9384da3dbbbab | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH6/EX6.18/Ex6_18.sce | e7ca83ae4eccfa12a52d8d6dfc6557ecb34e0908 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,187 | sce | Ex6_18.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 6 Example 18")
v=0.4;//volume of air in part A and part B in m^3
p1=10*10^5;//initial pressure of steam in pa
p2=15*10^5;//final pressure of steam in pa
disp("here heat addition to part B shall cause evaporation of water and subsequently the rise in pressure.")
disp("final,part B has dry steam at 15 bar.In order to have equilibrium the part A shall also have pressure of 15 bar.thus heat added")
disp("Q=v*(p2-p1)/1000in KJ")
Q=v*(p2-p1)/1000
disp("final enthalpy of dry steam at 15 bar,h2=hg_15bar")
disp("h2=2792.2 KJ/kg from steam table")
h2=2792.2;
disp("let initial dryness fraction be x1,initial enthalpy,")
disp("h1=hf_10bar+x1*hfg_10bar.........eq1")
disp("here at 10 bar,hf_10bar=762.83 KJ/kg,hfg_10bar=2015.3 KJ/kg from steam table")
hf_10bar=762.83;
hfg_10bar=2015.3;
disp("also heat balance yields,")
disp("h1+Q=h2")
disp("so h1=h2-Q in KJ/kg")
h1=h2-Q
disp("so by eq 1=>x1=(h1-hf_10bar)/hfg_10bar")
x1=(h1-hf_10bar)/hfg_10bar
disp("heat added(Q)in KJ")
Q
disp("and initial quality(x1)")
x1
|
db7fe057f630aba8a04965d94ab356a0d3139c06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH18/EX18.1/Ex18_1.sce | 41235ca4c42adb327b6bca5bb2f2c5a89eec9752 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 941 | sce | Ex18_1.sce | // Example 18_1
clc;funcprot(0);
//Given data
n=10;// Number of fans used
T_1=35;// °C
T_2=30;// °C
m_w1=1000;// The quantity of cooling tower circulated through the tower in kg/min
DBT=35;// Dry bulb temperature in °C
WBT=25;//Wet bulb temperature in °C
C_pw=4.2;// kJ/kg°C
RH=90;// Relative humidity in %
//Calculation
//The conditions of air at inlet and outlet are represented on psychrometric chart as shown in Fig.Prob.18.1(b)
// From psychrometric chart,
H_a1=76.4;// kJ/kg
H_a2=94.5;// kJ/kg
w_1=19;// grams/kg
w_2=24.4;// grams/kg
v_s1=0.895;// m^3/kg
V=(v_s1*m_w1*C_pw*(T_1-T_2))/((H_a2-H_a1)-(((w_2-w_1)/1000)*C_pw*T_2));// m^3/min
C=V/n;// Capacity of each fan in m^3/min
m_m=(V/v_s1)*((w_2-w_1)/1000)*60;// The quantity of make up in kg/hr
printf('\nThe quantity of air handled=%0.1f m^3/min \nThe quantity of make up water=%0.0f kg/hr',C,m_m);
// The answers provided in the textbook is wrong
|
bcaf6135fc8fab0f0a2bd4018917f1bcdf99b3ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /1544/CH2/EX2.8/Ch02Ex8.sce | d549fc58a53b101fa8dc84510205f3fa45a3f91c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 979 | sce | Ch02Ex8.sce | // Scilab code Ex2.8: 49 (2008)
clc; clear;
// Applying Kirchhoff’s current law (the sum of the currents arriving at a junction is equal to the sum of the currents leaving that junction) at junction A
I2 = 40 + 10; // Electric current, A
// Applying Kirchhoff’s current law at junction C
I1 = 80 - I2; // Electric current, A
// Applying Kirchhoff’s current law at junction D
I3 = 80 + 30; // Electric current, A
// Applying Kirchhoff’s current law at junction E
I4 = I3 - 25; // Electris current, A
// Applying Kirchhoff’s current law at junction F
I5 = 30 - 85; // Electric cuurent, A
printf("\nCurrent I1 = %2d A\nCurrent I2 = %2d A\nCurrent I3 = %3d A\nCurrent I4 = %2d A\nCurrent I5 = %2d A,", I1, I2, I3, I4, I5);
// Result
// Current I1 = 30 A
// Current I2 = 50 A
// Current I3 = 110 A
// Current I4 = 85 A
// Current I5 = -55 A
|
ea18837a070b96af26e763e6ec7e9a464d5ebffd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2504/CH6/EX6.5/6_5.sce | bc93606004457070bf920c99c86c4860487df5cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 660 | sce | 6_5.sce | clc
//initialisation of variables
clear
r= 1.4
ma2= 2.5 //ft/sec
g= 32.17 //ft/sec^2
p2= 1 //lbf/in^2
ps= 17.08 //lbf/in^2
ps2= 75 //lbf/in^2
Ts= 720 //R
R= 53.3 //lbf ft/lbm
A= 4 //ft^2
ps3= 0.4 //lbf/in^2
A2= 0.685 //ft^2
P= 5 //per cent
//CALCULATIONS
R1= (1+0.5*(r-1)*ma2^2)^(r/(r-1))
R2= (2*(r/(r-1))*(p2/ps)^(2/(r))*(1-(p2/ps)^((r-1)/r)))^0.5
m2= R2*ps2*144*(g/(R*Ts))^0.5*0.1
m= m2*A
At= A*R2/A2
m1= m*(1-(P/100))
mrp= (1-(P/100))*R2
//RESULTS
printf ('Mass flow rate= %.1f lbm/sec',m)
printf ('\n Area of throat= %.3f ft^2',At)
printf ('\n Mass flow rate= %.1f lbm/sec',m1)
printf ('\n Mass flow rate parameter = %.4f',mrp)
|
98e5753bc95445e95633266d34dd010c70013508 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH4/EX4.8/Ex4_8.sce | 208eba54d39ce963f74fad9e914763e63445c28b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 615 | sce | Ex4_8.sce | //CHAPTER 4- MEASURING INSTRUMENTS
//Example 8
clc;
disp("CHAPTER 4");
disp("EXAMPLE 8");
//VARIABLE INITIALIZATION
I_m=15/1000; //from mA to A
r_m=5; //in Ohms
I=2; //in Amperes
v=30; //in Volts
//SOLUTION
R_sh=(I_m*r_m)/I; //I_m=I*(R_sh/(R_sh+r_m)) if R_sh<<5Ω, then I_m=I*(R_sh/r_m) neglecting R_sh in the denominator
disp(sprintf("In order to read upto 2A, a shunt of %f Ω has to be connected in parallel",R_sh));
R_se=(v-(I_m*r_m))/I_m;
disp(sprintf("In order to read upto 30V, a resistance of %f Ω has to be connected in series",R_se));
//END
|
cfa58936a7790ab931deb8737c98e131196f4355 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1583/CH4/EX4.6/FSNT_Ex_4_6.sce | 5784c48a64de5f93be1cd2e5bb48e725d542527e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 521 | sce | FSNT_Ex_4_6.sce | clc
//Chapter 4:Frequency selective networks and transformers
//example 4.6 paga no 130
//given
Rs=10//source resistance
L=0.2*10^-6//inductor
f=20*10^6//given frequency
XL=(2*%pi*f*L)//inductive reactance
Rp=50//input impedance
Xs=sqrt(Rp*Rs-Rs^2)//series reactance
Xcs=5.1//series capacitive reactance
CS=(2*%pi*f*Xcs)^-1//series capacitance
Xp=(Rs^2+Xs^2)/Xs//equivalent parallel reactance
mprintf('the value of series reactance is j%f ohm \n the value equivalent parallel reactance is j%f ohm ',Xs,Xp)
|
fa536f411bfbeb5cacfb8a0afe71b0794b59193b | 8ceaed28ddedaaf04d0deab0902f314d458dc616 | /projects/01/Or4Way16.tst | 3083aafaf0bf3d482382e6f0a7ce2cb0ec3be441 | [] | no_license | appleJax/nand-2-tetris | 1d2ec6f57bf043a6b78e97dcd9f8b8713f38323f | 79e4364b9ec4dd179c4b92c366c26d3217c617a4 | refs/heads/main | 2023-01-13T21:25:09.007141 | 2022-01-03T06:52:03 | 2022-01-03T06:52:03 | 224,096,207 | 0 | 0 | null | 2023-01-05T05:00:47 | 2019-11-26T03:41:37 | Hack | UTF-8 | Scilab | false | false | 611 | tst | Or4Way16.tst | load Or4Way16.hdl,
output-file Or4Way16.out,
compare-to Or4Way16.cmp,
output-list a%B1.16.1 b%B1.16.1 c%B1.16.1 d%B1.16.1 out%B1.16.1;
set a 0,
set b 0,
set c 0,
set d 0,
eval,
output;
set a %B1000000000000000,
set b 0,
set c 0,
set d 0,
eval,
output;
set a %B1000000000000000,
set b %B0100000000000000,
set c %B0010000000000000,
set d %B0001000000000000,
eval,
output;
set a %B1000000000000000,
set b %B1100000000000000,
set c %B0010000000000000,
set d %B0001000000000000,
eval,
output;
set a %B1111111111111111,
set b %B1111111111111111,
set c %B1111111111111111,
set d %B1111111111111111,
eval,
output;
|
6a0e0ef1798263a3238994e7f71e1237fd571e3a | c3d38db94d5862857932065e0c266a64e426002a | /tst/Ex10.tst | 134f4ef211a7ff626bdfb1e5d6a4c7ff7cacaf6d | [] | no_license | fingolfin/carat | 69806199557c0b46b752d83b0755c627ed5877ec | 21741c23edb7d5cf410e7dc1698f7fb942573e9e | refs/heads/master | 2020-09-03T15:33:29.255011 | 2019-05-23T07:31:58 | 2019-05-23T07:31:58 | 133,804,402 | 0 | 0 | null | 2018-05-17T11:35:02 | 2018-05-17T11:35:02 | null | UTF-8 | Scilab | false | false | 379 | tst | Ex10.tst | echo "### Test Ex10-1"
../bin/carat/Bravais_catalog << EOF
6-1
y
stdout
s
1
1
n
EOF
echo "### Ex10-1 return code $?"
echo "### Test Ex10-2"
../bin/carat/Elt Ex10_m
echo "### Ex10-2 return code $?"
echo "### Test Ex10-3"
../bin/carat/Orbit -g -S Ex10_m Ex10_B
echo "### Ex10-3 return code $?"
echo "### Test Ex10-4"
../bin/carat/Order Ex10_mB2
echo "### Ex10-4 return code $?"
|
2bc58a43e206656be37cfa70471de014f76d99ca | c59576b9f96a7b26dc5bc0d52998ad818380b8cf | /test/FM10.prev.tst | cfccf3aea814b6a336c670e556059105764e649c | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/checkdig | 0588535521d9106a5c777a809e50d64a9204fa3c | 3570d246efd0d102f1a2652dfe752884b5d346d8 | refs/heads/master | 2022-02-14T07:41:43.949901 | 2022-01-28T15:00:07 | 2022-01-28T15:00:07 | 30,117,975 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 397 | tst | FM10.prev.tst | DE7901234567890 !OK
DE3400000001588 !OK
WR31CIS ?NOK
AT6101234567890 ?NOK
BE68123456789 ?NOK
FR9212345678 ?NOK
FR9112345678901 ?NOK
FR90123456789 ?NOK
FR2812345678901234 ?NOK
HU15A09450512 ?NOK
HU47E10011922T201 ?NOK
FI2212345678 ?NOK
IT36A1B2C ?NOK
IE84123456 ?NOK
LU270123456789 ?NOK
NL360123456789 ?NOK
PL180123456789 ?NOK
PT73123456 ?NOK
ES50M23456789 ?NOK
GB14123456 !OK
DE7901234567890 ?NOK
|
9bf94b4c6f190a45ddd6d98b91c8015c5d39c33d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH4/EX4.13/Ex4_13.sce | 4e6746e233880e1dc738551bef316848e1094e8c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex4_13.sce | clear all; clc;
disp("Scilab Code Ex 4.13 : ")
//Given:
sigma_allow = 115; //MPa
//Determinng the stress concentration factor:
r_n =10/20;
w_h = 40/20;
k = 1.4; //from graph
sigma_avg = sigma_allow/k;
P =sigma_avg*20*10;
P = P/1000;
//Display:
printf("\n\nThe largest axial force that the bar can carry = %1.2f kN",P);
//------------------------------------------------------------------------------END---------------------------------------------------------------------
|
50d174b923844e2388757aac3df448d411bc08e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH10/EX10.2/10Ex2.sce | a906e8b8f52988ecd231cc0ad299fb9481cfcf2e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 200 | sce | 10Ex2.sce | //chapter 10 Ex 2
clc;
clear;
close;
n1=6; n2=28; n3=0.2; n4=.04;
mprintf("(i)6 percent=%.2f\n (ii)28 percent=%.2f\n (iii)0.2 percent=%.3f\n (iv)0.04 percent=%.4f",n1/100,n2/100,n3/100,n4/100);
|
89afa83f51ec448545686f7020275cee33ccf23d | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH24/EX24.10/Example24_10.sce | 72d07837d5cf8846c16731c86dce7a682f35b07e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | Example24_10.sce | //Example 24.10
clc
disp("2''s compliment method")
disp(" 1 0 0 0")
disp(" 0 1 1 0 <-- 2''s complement")
disp(" -------")
disp(" 1 1 1 0 <-- no carry")
disp("No carry results. Thus, the difference is negative and the answer is the 2''s compliment of 1110, i.e. 0010") |
18f32e4bb0ba3d61aa51b56a8c857aba43a1e3be | 449d555969bfd7befe906877abab098c6e63a0e8 | /3161/CH2/EX2.7/Ex2_7.sce | 07a72dee357245982cdd4600d230c83a9cf954b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,413 | sce | Ex2_7.sce | clc;
//page 96
//problem 2.7
//Here P(ra|mb) is denoted as P_ramb where a is 0,1,2 & b is 0,1
//P(X) is denoted as P_X where X is m0, m1, C & E
//From given values P_m0 = 0.6, P_m1 = 0.4, P_r0m0 =0.6, P_r1m1 = 0.7, P_r0m1 = 0, P_r1m0 = 0.2, P_r2m0 = 0.2 & P_r2m1 = 0.3
P_m0 = 0.6
P_m1 = 0.4
P_r0m0 =0.6
P_r1m1 = 0.7
P_r0m1 = 0
P_r1m0 = 0.2
P_r2m0 = 0.2
P_r2m1 = 0.3
//(a)
//Comaparing P(r0|m0)*P(m0) & P(r0|m1)*P(m1) gives result
LHS = P_r0m0*P_m0
RHS = P_r0m1*P_m1
disp('As P(r0|m0)*P(m0)['+string(LHS)+'] > P(r0|m1)*P(m1)['+string(RHS)+']')
disp('we select m0 whenever r0 is received')
//Similarly compare P(r1|m1)*P(m1) & P(r1|m0)*P(m0)
LHS = P_r1m1*P_m1
RHS = P_r1m0*P_m0
disp('As P(r1|m1)*P(m1)['+string(LHS)+'] > P(r1|m0)*P(m0)['+string(RHS)+']')
disp('we select m1 whenever r1 is received')
//compare P(r2|m0)*P(m0) & P(r2|m1)*P(m1)
LHS = P_r2m0*P_m0
RHS = P_r2m1*P_m1
disp('As P(r2|m0)*P(m0)['+string(LHS)+'] = P(r2|m1)*P(m1)['+string(RHS)+']')
disp('We can accordingly make either assignment and we arbitrarily associate r2 with m0')
//(b)
//The probability of being correct is P(C) = P(r0|m0)*P(m0)+P(r1|m1)*P(m1)+P(r2|m0)*P(m0)
P_C = P_r0m0*P_m0+P_r1m1*P_m1+P_r2m0*P_m0
//The probability of error is P(E) = 1-P(C)
P_E = 1 - P_C;
disp('Probability of being correct is P(C) = '+string(P_C)')
disp('Probability of error is P(E) = '+string(P_E)')
|
d73ef71a2c56bb2da0aac9d86fec5b3d1ced0150 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1073/CH2/EX2.42/2_42.sce | 3d93507adb47e69df6306df1113e1e5d2f7e081d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 2_42.sce |
clear;
clc;
//Example 2.42
//Given
rho=7800 //[kg per cubic m]
h=100 //W/(sq m.K) Convective heat transfer coeff
Cp=460 //J/(kg.K)
k=40 //W/(m.K)
L=1 //[m] length ofrod
D=10 //mm
D=D/1000 //diameter in[m]
R=D/2 //raidus in [m]
//For cylindrical rod:
A=2*%pi*R*L //Area in [sq m]
V=%pi*R^2*L //Volume in [cubic m]
L_dash=V/A //[m]
Nbi=h*L_dash/k //Biot number
//N_bi<0.10,Hence lumped heat capavity is possible
T=473 //[K]
T_inf=393 //[K]
T0=593 //[K]
t=-rho*Cp*V*log((T-T_inf)/(T0-T_inf))/(h*A)
printf("Time required to reach temperature %f is %f s",T,t);
|
9a9fa8f837d8169c41826e315862fc4b9ab7f6d9 | ef7da921e1289d3deaaf9727db2b6f025656e8d9 | /OscillationRate.sce | e47c357161d84e9ca5317a3c5bf1242005220e03 | [] | no_license | PrayagS/SciLab_Exercises | ea88438207f2dc5d3f211c9abfe137a4bd43f68f | 0495ba76e693750980fefb386c28209a6fd6563e | refs/heads/master | 2020-09-08T01:52:22.914681 | 2019-11-16T05:39:29 | 2019-11-16T05:39:29 | 220,977,317 | 2 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sce | OscillationRate.sce | clear;
clf;
n = 0:1:50;
x1 = cos(2*%pi*0*n);
subplot(321);
plot2d3(n,x1);
plot(n,x1);
x2 = cos(2*%pi*0.3*n);
subplot(322);
plot2d3(n,x2);
plot(n,x2);
x3 = cos(2*%pi*0.5*n);
subplot(323);
plot2d3(n,x3);
plot(n,x3);
x4 = cos(2*%pi*0.8*n);
subplot(324);
plot2d3(n,x4);
plot(n,x4);
x5 = cos(2*%pi*1*n);
subplot(325);
plot2d3(n,x5);
plot(n,x5);
x6 = cos(2*%pi*1.3*n);
subplot(326);
plot2d3(n,x6);
plot(n,x6); |
1b0a85dbfe2c2f1e6d5e78ba64ca6c1aa92e9973 | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH6/EX6.12/Chap6_Ex12_R1.sce | e586d548f3d889914e60c384224aa32b3f40f267 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,131 | sce | Chap6_Ex12_R1.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-6,Example 12,Page 226
//Title: Minimum power for compression
//================================================================================================================
clear
clc
//INPUT
P1=0.1;//pressure at which air enters the compressor in MPa
T1=300;//temperature at which air enters the compressor in K
P2=1;//pressure at which air leaves the compressor in MPa
T2=300;//temperature at which air leaves the compressor in K
T0=300;//ambient temperature in K
N=1;//molar flow rate of air in mol/s
gaamma=1.4;//ratio of specific heat capacities (no unit)
R=8.314;//universal gas constant in J/molK
//CALCULATION
//T0=T1=T2 and h2-h1=Cp*(T2-T1)=0 as T2=T1
Ws=(-N*T0*(-R*log (P2/P1)))*10^-3;//calculation of minimum power required for compression using Eq.(6.99) in kW
//OUTPUT
mprintf("\n The minimum power required to compress one mole per second of air=%0.3f kW\n",Ws);
//===============================================END OF PROGRAM===================================================
|
da2a8048475d99d7bcc7c33926c1e2f010cd45ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH15/EX15.3/15_3.sce | 48da6eae92686bf291276f7d9d597e29cbac1057 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 815 | sce | 15_3.sce | //Eg-15.3
//pg-611
clear
clc
// The value of y can be computed using the equation :
// y(i,j+1) = 0.68*y(i,j) + 0.16*y(i+1,j) + 0.16*y(i-1,j)
y = zeros(5,5);
y(1,1:5) = 25;
y(1:5,1) = 100;
y(1:5,5) = 100;
//disp(y)
for(j = 2:4)
for(i = 1:4)
y(i+1,j) = 0.68*y(i,j) + 0.16*y(i,j+1) + 0.16*y(i,j-1);
end
end
printf('The values of y for different t are shown in the table(Rows represents different time level and columns represent x0,x1,x2,x3,x4) below and the plot corresponding to this value is shown in the figure generated\n')
disp(y)
//There is a mistake in the textbook
x = 0:0.25:1;
y1 = y(1,1:5);
y2 = y(2,1:5);
y3 = y(3,1:5);
y4 = y(4,1:5);
y5 = y(5,1:5);
plot(x,y1,x,y2,x,y3,x,y4,x,y5)
legend('t0','t1','t2','t3','t4')
xlabel('x')
ylabel('y')
|
4ba98ccc4cecd68b56cd94e349c741588717c969 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/util/hypermat.sci | 69af216e3186e7c55e974f76690c7ea77577516a | [
"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 | 655 | sci | hypermat.sci | function M=hypermat(dims,v)
// Copyright INRIA
//initialize an hypermatrix whose dimensions are given in the vector dims
// all entries are set to 0
//
// M data structure contains the vector of matrix dimensions M('dims')
// and the vector of entries M('entries') such as the leftmost subcripts vary first
// [M(1,1,..);..;M(n1,1,..);...;M(1,n2,..);..;M(n1,n2,..);...]
[lhs,rhs]=argn(0)
dims=round(dims)
if rhs<2 then
M=mlist(['hm','dims','entries'],dims,zeros(prod(dims),1))
else
if size(v,'*')<> prod(dims) then
error('hypermat: Number of entries does not match product of dimensions')
end
M=mlist(['hm','dims','entries'],dims,v(:))
end
|
e0d01a3ece79bbc4c3e4918eb6d08d8d3241710c | af7cd799acb90ee773382c3b1b8630e092971cd8 | /tp-cn/system_triangulaire.sce | 9f441c6a7c6d59eb31b5911c0bd8fcc302334791 | [] | no_license | Souad742/my-repo | 1e080b1a593aa1f8f24edd2ed4a766680344510f | 3c0df0e0cf230cbd6160d8e9a08ca7b51bdbf324 | refs/heads/main | 2023-02-03T05:06:47.269245 | 2020-12-18T23:32:27 | 2020-12-18T23:32:27 | 305,127,993 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 463 | sce | system_triangulaire.sce | function [x] = lsolve(A,b)
n=size(A,1);
m=size(b,2);
x = zeros(size(b,1),size(b,2));
x(1,1:m)=(b(1,1:m))./A(1,1);
for i=1:n
x(i,1:m)=(b(i,1:m)-A(i,1:(i-1))*(x(1:(i-1),1:m)))./A(i,i);
end
endfunction
function [x] = usolve(A,b)
n=size(A,1);
m=size(b,2);
x = zeros(size(b,1),size(b,2));
x(n,1:m)=(b(n,1:m))./A(n,n);
for i=n-1:-1:1
x(i,1:m)=(b(i,1:m)-A(i,i+1:n))*(x((i+1):n,1:m))./A(i,i);
end
endfunction
|
688f034d68b7f2ce793760dd0e984ef74b236932 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.12_9.tst | f491812fc80206fc430593b58df6caa1f669a601 | [] | 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 | 22,888 | tst | bow.12_9.tst | 12 2:0.020833333333333332 5:0.03225806451612903 19:0.3333333333333333 21:1.0 31:0.16666666666666666 60:1.0 70:0.25 81:0.3333333333333333 388:1.0 601:1.0 867:0.5 1219:1.0 2516:1.0 4412:1.0
12 2:0.020833333333333332 5:0.03225806451612903 17:0.25 38:0.06666666666666667 47:0.5 70:0.25 110:0.0625 119:0.3333333333333333 135:1.0 191:0.5 227:1.0 288:1.0 481:1.0 509:1.0 567:1.0 593:1.0 923:1.0 1251:1.0 1615:1.0 2293:1.0 4194:1.0 4355:1.0 4884:1.0 5129:1.0 6479:1.0 6648:1.0 6999:1.0 7002:1.0
12 17:0.25 135:2.0 308:1.0 1393:0.5 2213:1.0 2386:1.0 3595:1.0
12 5:0.03225806451612903 12:0.2 17:0.25 30:1.0 72:0.3333333333333333 73:1.0 85:0.18181818181818182 91:1.0 135:1.0 152:0.5 220:1.0 222:0.07142857142857142 284:1.0 309:1.0 371:1.0 504:1.0 512:1.0 786:0.5 1330:1.0 2549:1.0 3288:1.0 4906:1.0 5162:1.0 5373:1.0 6832:1.0
12 5:0.03225806451612903 28:1.0 65:1.0 93:1.0 110:0.0625 119:0.6666666666666666 135:1.0 170:1.0 510:1.0 786:0.5 2379:1.0 2959:1.0
12 2:0.020833333333333332 5:0.06451612903225806 17:0.25 29:0.2 50:1.0 57:0.5 60:1.0 63:0.5 74:1.0 93:1.0 110:0.0625 125:0.3333333333333333 135:1.0 140:1.0 147:0.14285714285714285 227:1.0 286:0.3333333333333333 355:0.25 593:1.0 703:1.0 728:1.0 763:0.5 883:0.5 1157:0.5 1320:1.0 1758:1.0 3640:1.0 4887:1.0 6500:1.0 6527:1.0
12 2:0.020833333333333332 17:0.25 33:1.0 57:0.25 85:0.18181818181818182 119:0.3333333333333333 170:1.0 306:1.0 350:0.5 594:1.0 702:0.25 703:1.0 1304:0.5 1585:1.0 4626:1.0 4844:1.0 5440:1.0
12 20:1.0 29:0.4 31:0.16666666666666666 57:0.5 60:1.0 65:1.0 70:0.25 91:1.0 130:0.3333333333333333 224:2.0 319:1.0 325:0.5 511:1.0 1505:1.0 1864:1.0 2253:1.0 2800:1.0 3261:1.0 5248:1.0 6329:1.0 6513:1.0 6889:1.0
12 12:0.2 17:0.25 31:0.16666666666666666 43:0.05555555555555555 59:0.5 60:1.0 85:0.18181818181818182 127:0.6666666666666666 128:1.0 182:0.3333333333333333 601:1.0 696:1.0 702:0.25 1573:1.0 1874:1.0 1977:1.0 3959:1.0 4396:1.0 4837:0.5
12 5:0.0967741935483871 17:0.25 19:0.3333333333333333 66:1.0 110:0.0625 237:1.0 266:0.5 269:1.0 306:1.0 341:0.5 469:0.25 502:1.0 567:1.0 1796:1.0 1991:1.0 2253:1.0 2347:1.0 2652:1.0 2800:1.0 4172:0.5
12 31:0.16666666666666666 60:1.0 135:1.0 227:1.0 286:0.3333333333333333 1689:0.6666666666666666 2164:1.0
12 5:0.06451612903225806 12:0.4 46:1.0 65:1.0 66:1.0 119:0.3333333333333333 130:0.3333333333333333 135:1.0 246:0.25 702:0.25 746:0.3333333333333333 1392:1.0 2445:1.0 3075:1.0 3493:1.0 4037:1.0 4210:1.0 4513:1.0
12 17:0.25 47:0.5 63:0.5 65:1.0 85:0.09090909090909091 91:1.0 119:0.6666666666666666 122:1.0 138:1.0 227:1.0 306:1.0 496:1.0 502:1.0 1991:1.0 2731:1.0 2871:1.0 3887:1.0 4911:1.0
12 2:0.020833333333333332 5:0.06451612903225806 57:0.25 81:0.3333333333333333 91:1.0 125:0.3333333333333333 209:1.0 246:0.25 277:2.0 309:1.0 421:0.5 767:1.0 1045:1.0 1103:1.0 1190:0.25 1458:1.0 1926:1.0 2816:0.5 2871:1.0 4151:1.0 4810:1.0 4887:1.0 5454:1.0 6138:1.0 6347:1.0 6908:1.0
12 2:0.020833333333333332 3:1.0 5:0.06451612903225806 10:1.0 29:0.4 57:0.25 60:1.0 81:0.3333333333333333 84:0.5 85:0.09090909090909091 110:0.0625 147:0.2857142857142857 182:0.3333333333333333 209:1.0 216:0.5 246:0.25 350:0.5 380:0.5 543:0.5 678:1.0 977:1.0 1084:0.5 1162:1.0 1392:3.0 2079:1.0 2622:1.0 5062:1.0 5630:1.0
12 17:0.25 57:0.25 85:0.18181818181818182 110:0.0625 176:1.0 182:0.3333333333333333 191:0.5 198:1.0 212:1.0 329:1.0 439:0.3333333333333333 469:0.25 527:0.08333333333333333 567:1.0 662:0.5 902:1.0 1586:1.0 5657:1.0
12 2:0.020833333333333332 5:0.06451612903225806 17:0.25 22:0.16666666666666666 57:0.75 60:1.0 110:0.0625 119:0.3333333333333333 199:0.5 216:0.5 291:1.0 535:1.0 567:1.0 749:1.0 960:0.3333333333333333 983:1.0 1063:1.0 1156:0.2 1415:1.0 4763:1.0 4837:0.5 4887:1.0 5562:1.0
12 2:0.020833333333333332 12:0.4 31:0.16666666666666666 47:0.5 57:0.25 60:1.0 85:0.09090909090909091 94:1.0 127:0.3333333333333333 160:0.25 227:1.0 266:0.5 281:1.0 286:0.3333333333333333 332:1.0 512:1.0 588:1.0 593:1.0 631:0.3333333333333333 632:1.0 953:1.0 2003:1.0 2955:1.0 3108:1.0 3916:1.0 5492:1.0 5654:1.0
12 5:0.03225806451612903 160:0.25 199:0.5 212:1.0 756:1.0 922:0.5 983:1.0 1317:0.5 3893:1.0 4846:1.0 4938:1.0 5246:1.0
12 5:0.03225806451612903 43:0.05555555555555555 57:0.25 85:0.09090909090909091 119:0.3333333333333333 227:1.0 286:0.3333333333333333 481:1.0 584:1.0 867:0.5 883:0.5 1203:1.0 1317:0.5 1728:1.0 1864:1.0 4259:0.5 4627:1.0 4681:1.0 6567:0.5
12 74:1.0 119:0.3333333333333333 130:0.3333333333333333 135:1.0 152:0.5 518:0.5 905:0.5 4191:1.0 5049:1.0 6061:1.0 6676:1.0
12 5:0.03225806451612903 17:0.25 20:2.0 51:0.4 60:1.0 110:0.0625 127:0.3333333333333333 130:0.3333333333333333 160:0.25 246:0.25 341:0.5 516:0.5 1052:1.0 1586:1.0 1761:1.0 1864:1.0 2432:1.0 2500:1.0 4191:1.0 5356:1.0 5431:1.0
12 5:0.06451612903225806 17:0.25 20:1.0 29:0.2 43:0.05555555555555555 50:1.0 57:0.5 60:1.0 85:0.09090909090909091 125:0.3333333333333333 126:1.0 127:0.3333333333333333 152:0.5 160:0.5 905:0.5 1114:1.0 1243:1.0 1317:0.5 1424:1.0 2365:1.0 2606:1.0 4191:1.0 4239:1.0 4490:1.0 5617:1.0 5618:1.0 6037:1.0 6643:1.0
12 1:0.14285714285714285 12:0.2 17:0.75 29:0.2 44:1.0 91:1.0 119:0.3333333333333333 147:0.14285714285714285 150:1.0 170:2.0 191:0.5 222:0.07142857142857142 300:0.5 306:2.0 325:0.5 475:0.5 905:0.5 962:1.0 1018:0.3333333333333333 2203:1.0 3275:1.0 4172:0.5 4191:1.0 4341:1.0 5426:1.0 6959:1.0
12 5:0.06451612903225806 20:1.0 24:1.0 43:0.05555555555555555 47:0.5 57:0.25 60:1.0 81:0.3333333333333333 85:0.18181818181818182 119:0.3333333333333333 152:0.5 160:0.5 222:0.07142857142857142 507:1.0 516:0.5 593:1.0 647:0.5 746:0.3333333333333333 1018:0.3333333333333333 1167:1.0 3530:1.0 4225:1.0 4644:1.0 6707:1.0
12 5:0.06451612903225806 12:0.2 28:1.0 57:0.5 60:2.0 74:1.0 85:0.09090909090909091 122:1.0 130:0.3333333333333333 155:1.0 175:0.047619047619047616 176:1.0 194:0.16666666666666666 227:1.0 236:1.0 286:0.3333333333333333 671:1.0 1075:1.0 1857:1.0 2024:1.0 3601:1.0 6957:1.0
12 2:0.020833333333333332 5:0.06451612903225806 31:0.16666666666666666 60:1.0 77:0.5 91:1.0 119:0.3333333333333333 355:0.25 502:1.0 649:1.0 867:0.5 962:1.0 1100:1.0 1317:0.5 1500:1.0 1864:1.0 2345:1.0 2559:1.0 4730:1.0 5418:1.0
12 5:0.03225806451612903 57:0.25 61:0.25 85:0.09090909090909091 132:1.0 142:0.09090909090909091 246:0.25 507:1.0 617:1.0 702:0.25 906:1.0 1064:0.3333333333333333 1103:1.0 3401:1.0 4943:1.0
12 57:0.25 81:0.3333333333333333 85:0.09090909090909091 94:1.0 527:0.08333333333333333 867:0.5 1156:0.2 1761:1.0 4267:2.0
12 5:0.03225806451612903 57:0.25 119:0.6666666666666666 128:1.0 222:0.14285714285714285 236:1.0 1018:0.3333333333333333 1506:1.0 1659:0.25 1987:1.0 4641:1.0 5227:1.0 5270:1.0 5449:1.0 6060:1.0
12 29:0.2 57:0.25 85:0.09090909090909091 127:0.3333333333333333 156:0.1111111111111111 160:0.25 216:0.5 306:1.0 530:1.0 1061:1.0 1132:1.0 2079:1.0 2251:1.0 2800:1.0 5618:1.0 5762:1.0
12 5:0.03225806451612903 12:0.2 17:0.25 29:0.2 47:0.5 57:0.25 60:2.0 63:0.5 77:0.5 81:0.3333333333333333 85:0.18181818181818182 104:1.0 147:0.14285714285714285 222:0.07142857142857142 227:1.0 271:0.5 286:0.3333333333333333 288:1.0 309:1.0 363:1.0 368:1.0 475:0.5 522:1.0 548:1.0 1114:1.0 1736:1.0 2847:0.5 3423:1.0 4491:1.0 4887:1.0 4960:1.0 5087:1.0 5381:1.0 6173:1.0
12 5:0.03225806451612903 29:0.2 31:0.16666666666666666 50:1.0 119:0.3333333333333333 310:1.0 332:1.0 526:1.0 532:0.5 627:0.5 1018:0.3333333333333333 1130:1.0 1739:1.0 2200:0.3333333333333333 2310:1.0 3261:1.0 3650:1.0 4351:1.0 5227:1.0
12 5:0.03225806451612903 28:1.0 148:0.25 160:0.25 314:1.0 1240:1.0 1382:1.0 1674:0.5 5776:1.0
12 2:0.020833333333333332 12:0.4 47:0.5 57:1.0 110:0.0625 125:0.3333333333333333 127:0.3333333333333333 147:0.14285714285714285 160:0.25 222:0.14285714285714285 389:0.5 683:1.0 739:0.3333333333333333 797:1.0 869:1.0 951:0.5 984:0.5 3340:1.0 4233:1.0 4239:1.0 4980:1.0 5545:1.0 6433:1.0 6959:1.0
12 5:0.03225806451612903 47:0.5 56:1.0 57:0.25 85:0.18181818181818182 91:1.0 119:0.3333333333333333 306:1.0 355:0.25 543:0.5 2379:1.0 2959:1.0 4188:1.0 4304:1.0 6676:1.0
12 17:0.25 22:0.16666666666666666 63:1.0 81:0.3333333333333333 85:0.2727272727272727 119:0.3333333333333333 125:0.3333333333333333 160:0.25 198:1.0 511:1.0 516:1.5 1084:0.5 1356:0.5 1594:1.0 1925:1.0 2816:0.5 3174:1.0 4678:1.0 4969:1.0 5617:1.0 6179:1.0
12 5:0.06451612903225806 12:0.2 29:0.2 48:0.5 104:1.0 136:0.05263157894736842 147:0.14285714285714285 172:1.0 191:0.5 306:1.0 522:1.0 532:0.5 547:0.3333333333333333 573:1.0 1141:1.0 1487:1.0 1739:1.0 2421:1.0 3499:1.0 4644:1.0 4890:1.0 5162:1.0 6662:1.0
12 2:0.020833333333333332 5:0.03225806451612903 12:0.2 17:0.25 20:1.0 29:0.2 57:0.25 60:1.0 84:1.0 110:0.1875 125:0.3333333333333333 156:0.1111111111111111 175:0.047619047619047616 212:1.0 300:0.5 319:1.0 370:0.3333333333333333 496:1.0 522:1.0 547:0.3333333333333333 2079:1.0 2888:1.0 3090:1.0 3499:1.0 4172:0.5 4348:1.0 4644:1.0 4816:1.0 5162:1.0
12 29:0.4 39:1.0 58:0.5 110:0.0625 115:2.0 127:0.3333333333333333 132:1.0 136:0.05263157894736842 175:0.047619047619047616 370:0.3333333333333333 469:0.25 534:0.2 702:0.25 734:1.0 1172:1.0 2505:1.0 3113:1.0 3261:1.0 4105:1.0
12 85:0.09090909090909091 130:0.3333333333333333 136:0.05263157894736842 146:1.0 147:0.14285714285714285 169:1.0 306:1.0 309:1.0 310:1.0 915:1.0 1084:0.5 1180:0.5 1195:1.0 1610:1.0 3073:1.0 4298:1.0 4602:1.0 6217:1.0
12 5:0.03225806451612903 91:1.0 136:0.05263157894736842 306:1.0 544:0.5 1610:1.0 4085:1.0 4298:1.0 6217:1.0
12 12:0.2 48:0.5 57:0.25 85:0.18181818181818182 156:0.1111111111111111 175:0.047619047619047616 597:1.0 951:0.5 1728:1.0 2164:1.0 3416:1.0 3728:1.0
12 135:1.0 1225:1.0
12 5:0.03225806451612903 57:0.5 63:0.5 65:1.0 115:1.0 142:0.09090909090909091 147:0.14285714285714285 175:0.047619047619047616 271:0.5 288:1.0 389:0.5 469:0.25 593:1.0 631:0.3333333333333333 686:1.0 690:1.0 989:1.0 1992:0.25
12 5:0.03225806451612903 12:0.2 28:1.0 48:0.5 51:0.2 57:0.75 69:0.5 81:0.3333333333333333 119:0.6666666666666666 127:0.3333333333333333 175:0.047619047619047616 180:1.0 250:1.0 262:0.3333333333333333 370:0.3333333333333333 1325:1.0 1472:1.0 1512:1.0 2936:1.0 3800:1.0 4130:1.0 4910:1.0 5305:1.0
12 2:0.020833333333333332 5:0.06451612903225806 6:1.0 9:1.0 12:0.2 26:1.0 28:1.0 51:0.2 57:0.25 60:1.0 66:1.0 85:0.09090909090909091 127:0.3333333333333333 147:0.14285714285714285 160:0.25 170:1.0 175:0.047619047619047616 222:0.07142857142857142 237:1.0 371:1.0 746:0.3333333333333333 960:0.3333333333333333 974:1.0 1519:1.0 2729:1.0 3190:1.0 3401:1.0 3800:1.0 4837:0.5 5388:1.0 5445:1.0 6883:1.0
12 5:0.03225806451612903 13:0.14285714285714285 17:0.25 22:0.16666666666666666 29:0.2 85:0.09090909090909091 147:0.14285714285714285 182:0.3333333333333333 349:0.3333333333333333 585:1.0 649:1.0 827:0.2 900:1.0 1594:1.0 2915:1.0 4603:1.0 4959:1.0
12 5:0.03225806451612903 19:0.3333333333333333 29:0.4 42:1.0 43:0.05555555555555555 63:0.5 81:0.3333333333333333 135:2.0 147:0.2857142857142857 152:0.5 300:0.5 309:1.0 496:1.0 656:0.5 827:0.2 1100:1.0 1415:1.0 1873:0.3333333333333333 3261:1.0 4819:1.0 6418:1.0
12 2:0.020833333333333332 5:0.06451612903225806 28:1.0 29:0.2 38:0.06666666666666667 57:0.25 70:0.25 81:0.3333333333333333 84:0.5 85:0.09090909090909091 148:0.5 211:1.0 212:1.0 309:1.0 319:1.0 388:1.0 597:1.0 662:0.5 793:1.0 794:1.0 921:0.2 984:0.5 1180:0.5 1731:1.0 2664:1.0 2785:1.0 2788:1.0 2936:1.0 3870:0.5 4172:0.5 4257:1.0
12 1:0.14285714285714285 2:0.041666666666666664 5:0.03225806451612903 9:1.0 29:0.2 47:0.5 60:3.0 72:0.3333333333333333 94:1.0 122:1.0 182:0.3333333333333333 478:1.0 550:0.25 556:1.0 798:1.0 833:1.0 2140:1.0 2142:1.0 3308:1.0 3542:1.0 4172:0.5 4365:1.0 6440:1.0 6988:1.0
12 5:0.03225806451612903 12:0.6 13:0.14285714285714285 46:1.0 59:0.5 62:1.0 110:0.0625 136:0.05263157894736842 160:0.25 209:1.0 306:1.0 363:1.0 373:1.0 469:0.25 484:0.5 550:0.25 1018:0.3333333333333333 1405:1.0 2421:1.0 3056:1.0 4295:1.0 4508:1.0 4640:0.5 4641:1.0 5162:1.0 5815:1.0 6507:2.0
12 2:0.020833333333333332 5:0.03225806451612903 37:0.1111111111111111 48:0.5 57:0.25 85:0.09090909090909091 110:0.0625 142:0.09090909090909091 147:0.14285714285714285 160:0.25 212:1.0 341:0.5 459:1.0 556:1.0 827:0.2 887:1.0 1157:0.5 2164:1.0 2500:1.0 2954:1.0 3739:1.0 4009:1.0 4233:1.0
12 2:0.020833333333333332 12:0.2 22:0.16666666666666666 29:0.2 47:0.5 60:1.0 85:0.18181818181818182 110:0.0625 122:2.0 147:0.14285714285714285 172:1.0 273:0.2 763:0.5 874:0.5 1063:1.0 1076:1.0 1191:1.0 1663:1.0 1823:1.0 3800:1.0 5173:1.0 5461:1.0 6483:1.0
12 5:0.06451612903225806 50:1.0 57:0.25 85:0.09090909090909091 104:1.0 110:0.0625 147:0.14285714285714285 182:0.3333333333333333 212:1.0 216:0.5 253:1.0 288:1.0 363:1.0 593:1.0 838:1.0 1064:0.3333333333333333 1069:0.3333333333333333 1084:0.5 1103:1.0 1382:1.0 1454:1.0 2202:1.0 4339:1.0 4745:1.0 5373:1.0 6381:1.0
12 12:0.2 30:1.0 60:1.0 85:0.09090909090909091 110:0.0625 135:1.0 152:0.5 212:1.0 3499:1.0 4980:1.0
12 5:0.03225806451612903 17:0.25 22:0.16666666666666666 29:0.2 31:0.16666666666666666 37:0.1111111111111111 60:1.0 91:1.0 147:0.14285714285714285 175:0.047619047619047616 288:1.0 490:0.5 601:1.0 867:0.5 1365:1.0 2816:0.5 5477:1.0 5614:1.0 6155:1.0
12 5:0.03225806451612903 12:0.2 25:1.0 29:0.2 32:1.0 43:0.05555555555555555 48:0.5 60:1.0 81:0.3333333333333333 119:0.3333333333333333 123:1.0 135:1.0 151:1.0 245:1.0 327:1.0 370:0.6666666666666666 578:1.0 2816:0.5 4887:1.0
12 37:0.1111111111111111 85:0.09090909090909091 110:0.0625 160:0.5 169:1.0 199:0.5 246:0.25 496:2.0 822:1.0 855:1.0 1103:1.0 1933:1.0 5426:1.0 6043:1.0 6908:1.0
12 5:0.03225806451612903 110:0.0625 119:0.3333333333333333 135:1.0 148:0.25 175:0.047619047619047616 222:0.07142857142857142 253:1.0 317:1.0 1064:0.3333333333333333 1474:1.0 1580:1.0
12 5:0.06451612903225806 48:0.5 57:1.0 81:0.3333333333333333 85:0.09090909090909091 110:0.0625 130:0.3333333333333333 142:0.09090909090909091 162:1.0 182:0.3333333333333333 216:0.5 246:0.25 273:0.2 415:1.0 439:0.3333333333333333 443:0.5 511:1.0 597:1.0 702:0.25 1114:1.0 1177:1.0 1190:0.25 1987:1.0 2569:1.0 3818:2.0 4188:1.0 4784:1.0 5215:1.0 5431:1.0
12 17:0.75 19:0.3333333333333333 29:0.2 57:0.25 84:0.5 85:0.18181818181818182 110:0.0625 125:0.3333333333333333 128:1.0 130:0.3333333333333333 135:1.0 142:0.09090909090909091 152:0.5 246:0.5 443:0.5 473:0.5 511:1.0 517:0.5 597:1.0 721:1.0 902:1.0 1190:0.25 1615:1.0 1728:1.0 2569:1.0 4146:1.0 4613:1.0 5653:1.0
12 5:0.03225806451612903 17:0.5 57:0.25 110:0.0625 119:0.3333333333333333 135:1.0 291:1.0 2749:1.0 4153:1.0 4336:1.0 5087:1.0 5324:1.0
12 5:0.03225806451612903 12:0.4 29:0.4 47:0.5 48:0.5 51:0.6 57:0.75 65:1.0 70:0.25 77:0.5 94:1.0 127:0.6666666666666666 136:0.05263157894736842 162:1.0 176:1.0 182:0.3333333333333333 273:0.2 293:0.5 342:1.0 475:0.5 511:1.0 662:0.5 1654:1.0 2194:1.0 2729:1.0 5860:1.0
12 5:0.06451612903225806 12:0.2 28:1.0 51:0.2 60:1.0 135:1.0 175:0.047619047619047616 236:1.0 306:1.0 368:1.0 867:0.5 1864:1.0 3541:1.0 3669:1.0 4344:1.0 4523:1.0 4644:1.0 5017:1.0
12 29:0.6 42:1.0 43:0.05555555555555555 57:0.75 63:0.5 70:0.25 77:0.5 125:0.3333333333333333 142:0.09090909090909091 147:0.14285714285714285 152:0.5 246:0.25 273:0.2 300:0.5 306:1.0 349:0.3333333333333333 496:1.0 535:1.0 2776:1.0 4640:0.5 4641:1.0
12 5:0.03225806451612903 113:1.0 1084:0.5 1382:1.0 1674:0.5 1742:1.0 2194:1.0 4259:0.5 4745:1.0
12 5:0.03225806451612903 12:0.2 29:0.2 57:0.5 85:0.09090909090909091 106:1.0 119:0.3333333333333333 127:0.3333333333333333 147:0.14285714285714285 160:0.25 170:1.0 291:1.0 479:1.0 617:1.0 640:0.3333333333333333 889:1.0 1079:1.0 1190:0.25 2284:0.5 2686:1.0 4745:1.0 4926:1.0 5688:1.0 6191:1.0
12 2:0.041666666666666664 5:0.03225806451612903 12:0.2 29:0.4 48:0.5 57:0.25 58:1.0 69:0.5 110:0.0625 160:0.25 246:0.25 2434:1.0 3779:1.0 3788:1.0 4258:1.0
12 29:0.2 61:0.25 136:0.05263157894736842 147:0.14285714285714285 513:1.0 763:0.5 1224:1.0 1260:1.0 4258:1.0
12 12:0.2 28:1.0 29:0.2 136:0.05263157894736842 175:0.047619047619047616 246:0.25 439:0.3333333333333333 469:0.25 773:1.0 1283:1.0 4172:0.5 4396:1.0 5705:1.0 5745:1.0
12 29:0.2 51:0.2 127:0.3333333333333333 136:0.05263157894736842 175:0.047619047619047616 439:0.3333333333333333 746:0.3333333333333333 921:0.2 1991:1.0 5875:1.0 6992:1.0
12 12:0.4 20:1.0 29:0.2 51:0.4 57:0.25 63:0.5 85:0.09090909090909091 130:0.3333333333333333 136:0.05263157894736842 150:1.0 182:0.3333333333333333 475:0.5 517:0.5 687:0.5 701:1.0 797:1.0 1396:1.0 1674:0.5 2432:1.0 4508:1.0 5381:1.0
12 12:0.2 29:0.2 74:1.0 77:0.5 85:0.09090909090909091 136:0.05263157894736842 147:0.14285714285714285 175:0.047619047619047616 306:1.0 512:1.0 686:2.0 888:1.0 1565:1.0 1982:1.0
12 5:0.03225806451612903 29:0.6 43:0.05555555555555555 77:0.5 85:0.09090909090909091 94:1.0 127:0.3333333333333333 136:0.05263157894736842 266:0.5 364:1.0 702:0.25 867:0.5 905:0.5 3541:1.0 4508:1.0 4992:1.0
12 5:0.03225806451612903 29:0.2 43:0.05555555555555555 48:0.5 216:0.5 341:0.5 977:1.0 3789:1.0
12 5:0.03225806451612903 9:1.0 17:0.25 26:1.0 58:0.5 60:1.0 119:0.3333333333333333 122:1.0 128:1.0 152:0.5 170:1.0 175:0.047619047619047616 222:0.07142857142857142 246:0.25 475:0.5 516:0.5 747:1.0 798:1.0 859:0.25 1084:0.5 2257:1.0 3509:1.0 4172:0.5 4508:1.0 5067:1.0 5089:1.0
12 2:0.020833333333333332 77:0.5 175:0.047619047619047616 212:1.0 1018:0.3333333333333333 1293:0.5 2151:1.0 3416:1.0 4561:1.0 6152:1.0
12 12:0.2 106:1.0 110:0.0625 136:0.05263157894736842 175:0.047619047619047616 182:0.3333333333333333 227:1.0 319:1.0 410:1.0 1506:1.0
12 1:0.14285714285714285 5:0.0967741935483871 12:0.2 14:0.25 17:0.25 28:1.0 38:0.06666666666666667 85:0.18181818181818182 93:1.0 119:0.6666666666666666 135:1.0 142:0.18181818181818182 147:0.14285714285714285 175:0.047619047619047616 222:0.07142857142857142 227:1.0 259:1.0 905:0.5 974:2.0 1654:1.0 2054:1.0 2217:1.0 2749:1.0 2800:1.0 3499:1.0 4153:1.0 4508:1.0 5882:1.0
12 2:0.020833333333333332 5:0.03225806451612903 28:1.0 29:0.2 72:0.3333333333333333 85:0.09090909090909091 94:1.0 175:0.047619047619047616 222:0.07142857142857142 259:1.0 365:1.0 380:0.5 435:1.0 469:0.25 522:1.0 905:0.5 2217:1.0 4508:1.0 5787:1.0
12 5:0.06451612903225806 12:0.6 31:0.16666666666666666 81:0.3333333333333333 85:0.09090909090909091 99:1.0 135:1.0 147:0.2857142857142857 151:1.0 216:0.5 266:0.5 306:1.0 310:1.0 363:1.0 905:0.5 957:0.5 977:1.0 1079:1.0 1382:1.0 1666:1.0 2142:1.0 2657:1.0 3275:1.0 4172:0.5 4455:1.0 4462:1.0 4745:1.0 5215:1.0 5889:1.0 5890:1.0
12 2:0.020833333333333332 12:0.2 17:0.25 29:0.2 38:0.06666666666666667 59:0.5 81:0.3333333333333333 85:0.09090909090909091 110:0.0625 135:1.0 165:1.0 227:2.0 286:0.3333333333333333 321:1.0 350:0.5 435:1.0 945:1.0 971:1.0 1289:1.0 1325:1.0 1500:1.0 2675:1.0 4172:0.5 4398:1.0
12 5:0.06451612903225806 12:0.2 37:0.1111111111111111 38:0.06666666666666667 85:0.09090909090909091 110:0.0625 160:0.25 169:1.0 175:0.047619047619047616 178:1.0 179:1.0 284:1.0 291:1.0 481:1.0 1864:1.0 2583:1.0 5885:1.0
12 12:0.2 20:1.0 29:0.2 57:0.25 81:0.3333333333333333 85:0.09090909090909091 125:0.3333333333333333 127:0.3333333333333333 132:1.0 175:0.047619047619047616 284:1.0 288:2.0 306:1.0 524:1.0 683:1.0 786:0.5 949:1.0 971:1.0 1761:1.0 2246:1.0 2298:1.0 3806:1.0 4730:1.0
12 2:0.020833333333333332 5:0.03225806451612903 12:0.4 20:1.0 28:1.0 29:0.4 31:0.16666666666666666 37:0.1111111111111111 60:2.0 77:0.5 85:0.09090909090909091 94:1.0 110:0.125 119:0.6666666666666666 136:0.05263157894736842 227:1.0 236:1.0 306:1.0 511:1.0 607:0.25 953:1.0 1103:1.0 1390:1.0 3113:1.0 3438:0.5
12 5:0.03225806451612903 12:0.2 29:0.2 37:0.1111111111111111 51:0.2 110:0.0625 136:0.05263157894736842 758:1.0 2131:1.0 3225:1.0 4614:1.0
12 2:0.020833333333333332 5:0.03225806451612903 12:0.4 13:0.14285714285714285 18:0.5 31:0.16666666666666666 81:0.3333333333333333 151:1.0 175:0.047619047619047616 189:0.5 1044:1.0 4508:1.0 4800:1.0
12 12:0.4 29:0.2 57:0.5 59:0.5 60:1.0 77:0.5 85:0.18181818181818182 119:0.3333333333333333 135:1.0 209:1.0 288:1.0 306:1.0 309:1.0 363:1.0 370:0.3333333333333333 447:1.0 593:1.0 1594:1.0 1758:1.0 2657:1.0 3024:1.0 4282:1.0 4699:1.0 5570:1.0 6425:1.0
12 5:0.03225806451612903 12:0.2 85:0.09090909090909091 160:0.25 175:0.047619047619047616 284:1.0 527:0.08333333333333333 1396:1.0 1416:1.0 1864:1.0 2583:1.0
12 20:1.0 31:0.16666666666666666 42:1.0 119:0.3333333333333333 160:0.25 246:0.25 520:1.0 686:1.0 4745:1.0
12 5:0.03225806451612903 31:0.16666666666666666 42:1.0 60:1.0 119:0.3333333333333333 179:1.0 227:1.0 246:0.25 376:1.0 520:1.0 686:1.0 4745:1.0 6268:1.0
12 2:0.020833333333333332 5:0.03225806451612903 12:0.2 20:1.0 51:0.2 65:1.0 81:0.3333333333333333 85:0.18181818181818182 119:0.3333333333333333 122:1.0 125:0.3333333333333333 135:1.0 165:1.0 173:0.25 246:0.25 288:1.0 306:1.0 370:0.3333333333333333 522:1.0 1084:0.5 1500:1.0 2151:1.0 2657:1.0 2741:1.0 3737:1.0 3951:1.0 4745:1.0 5087:1.0 5437:1.0
12 12:0.2 43:0.05555555555555555 125:0.3333333333333333 127:0.3333333333333333 194:0.16666666666666666 246:0.25 527:0.08333333333333333 846:1.0 2125:1.0 2151:1.0 6012:1.0
12 5:0.03225806451612903 60:1.0 85:0.09090909090909091 119:0.3333333333333333 127:0.3333333333333333 147:0.14285714285714285 160:0.25 288:1.0 306:1.0 370:0.3333333333333333 742:1.0 827:0.2 905:0.5 1674:0.5 1864:1.0 2151:1.0 2155:1.0 2657:1.0 6992:1.0
12 2:0.020833333333333332 5:0.03225806451612903 48:0.5 66:1.0 110:0.125 119:0.3333333333333333 135:1.0 148:0.25 198:1.0 288:1.0 309:1.0 481:1.0 1472:1.0 1537:1.0 1864:1.0 2915:1.0 2916:1.0 2959:1.0 3382:1.0 3750:1.0 3902:1.0
12 2:0.0625 5:0.0967741935483871 17:0.25 19:0.3333333333333333 20:1.0 22:0.16666666666666666 29:0.2 38:0.06666666666666667 58:0.5 60:2.0 83:1.0 85:0.18181818181818182 94:1.0 130:0.3333333333333333 147:0.2857142857142857 176:1.0 212:1.0 341:0.5 747:1.0 951:0.5 974:2.0 1493:1.0 2652:1.0 2816:0.5 2915:1.0 3307:1.0 4146:1.0 4176:1.0 4194:1.0 5030:1.0 5578:1.0
12 5:0.03225806451612903 17:0.25 19:0.3333333333333333 20:1.0 51:0.6 57:0.75 60:1.0 66:1.0 85:0.18181818181818182 110:0.0625 119:0.3333333333333333 150:1.0 182:0.3333333333333333 216:0.5 246:0.25 266:0.5 291:1.0 388:1.0 473:0.5 475:0.5 906:1.0 962:1.0 974:1.0 975:1.0 1218:1.0 1275:1.0 2156:1.0 3499:1.0 3789:1.0 4259:0.5 4344:1.0 4906:1.0 4915:0.5 5617:1.0 5618:1.0
12 3:1.0 5:0.03225806451612903 13:0.2857142857142857 28:1.0 29:0.2 37:0.2222222222222222 42:1.0 43:0.05555555555555555 44:1.0 51:0.2 57:0.5 65:2.0 85:0.18181818181818182 91:1.0 94:1.0 122:2.0 142:0.09090909090909091 150:1.0 152:0.5 170:2.0 171:1.0 273:0.2 319:1.0 346:1.0 380:0.5 401:1.0 732:1.0 1064:0.3333333333333333 1187:1.0 1192:1.0 1317:0.5 1415:1.0 1559:0.5 1605:0.5 1724:1.0 2194:1.0 2715:1.0 4763:1.0 5618:1.0 6814:1.0
12 5:0.03225806451612903 43:0.05555555555555555 48:0.5 60:2.0 81:0.6666666666666666 85:0.18181818181818182 91:1.0 119:0.6666666666666666 122:1.0 135:1.0 147:0.14285714285714285 156:0.1111111111111111 216:0.5 222:0.07142857142857142 773:1.0 859:0.25 977:1.0 1157:0.5 2073:1.0 2437:1.0 2855:1.0 3499:2.0 4689:1.0 5162:1.0 5426:2.0 5534:1.0 5617:1.0 5618:1.0
|
ec8fe0751675582ec3bfb4fea9b298d4c577332a | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH2/EX2.5/2_5.sce | 91c2413fc10b63fc2bb2da4e22017ee5b0641bd6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 305 | sce | 2_5.sce | function [Rab,Rbc,Rca]=star_to_delta(Ra,Rb,Rc)
X=Ra*Rb+Rb*Rc+Rc*Ra
Rab=X/Rc
Rbc=X/Ra
Rca=X/Rb
endfunction
function p=parallel(r1,r2)
p=r1*r2/(r1+r2)
endfunction
[Rx,Ry,Rz]=star_to_delta(8,4,2)
Req_ad=parallel(parallel(4,Rx)+parallel(12,Rz),parallel(3,Ry))
disp(Req_ad) |
fbaca81473d9fe2a211d4298837c9fd06e14b420 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2006/CH6/EX6.13/ex6_13.sce | 00386ded465006d2f02bf24b1a43f25492d5c9d9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 722 | sce | ex6_13.sce | clc;
p1=0.3; // initial pressure of ateam in MPa
T1=350; // Initial temperature of steam in degree celcius
// following are the values taken from steam table for initial state
v1=0.9535; // specific volume in m^3/kg
u1=2886.2; // specific internal energy in kJ/kg
s1=7.868; // specific entropy in kJ/kg K
v2=2*v1; // final specific volume of steam
u2=u1;
// following are the values taken from steam table final state
T2=349; // Final temperature of steam in degree celcius
p2=0.167; // Final pressure of ateam in MPa
s2=8.164; // specific entropy in kJ/kg K
delta_s=s2-s1; // Entropy generation
LW=(T1+T2)/2 * delta_s; // Lost work
disp ("kJ",LW,"Lost work = ","kJ/kg K",delta_s,"Entropy Generation =");
|
96761de0181fb34e4a4a390e41f58c43664e2235 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH1/EX1.25/Ex1_25.sce | d0760dd8081ea0ad44e30363e2f74b08d94d05f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 673 | sce | Ex1_25.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh,Chapter 1,Example 25")
m1=2;//mass of H2 in kg
m2=3;//mass of He in kg
T=100;//temperature of container in k
Cp1=11.23;//specific heat at constant pressure for H2 in KJ/kg k
Cp2=5.193;//specific heat at constant pressure for He in KJ/kg k
disp("since two gases are non reacting therefore specific heat of final mixture(Cp)in KJ/kg k can be obtained by following for adiabatic mixing")
disp("so the specific heat at constant pressure(Cp)in KJ/kg k")
disp("Cp=((Cp1*m1)+Cp2*m2)/(m1+m2)")
Cp=((Cp1*m1)+Cp2*m2)/(m1+m2)
|
b00717f0924fd66cf9c3797e309859631a6464f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /635/CH6/EX6.2/Ch06Ex2.sci | 2168d57c28fcba7faaaac21564851d09382065e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,065 | sci | Ch06Ex2.sci | // Scilab Code Ex6.2 Rate of diffusion of copper through pure Al sheet: Page-196 (2010)
a = 4.05e-010; // Lattice parameter of fcc Al, m
N = 4; // Number of Al atoms per unit cell of fcc Al
n = N/a^3; // Number of Al atoms per unit volume, per metre cube
D = 5.25e-013; // Diffusion coeffcient of copper in Al at 550 degree celsius, metre square per sec
c1 = 0.19e-02; // Atomic percent of copper at the surface, per unit volume
c2 = 0.18e-02; // Atomic percent of copper at the the depth 1.2 mm from the surface, per unit volume
dc = (c2 - c1)*n; // Change in concentration of copper at 1.2 mm depth of the surface, per metre cube
dx = 1.2e-03; // Thickness of the pure Al sheet, m
J = -D*(dc/dx); // Fick's first law giving outward flux of copper through the Al sheet, Cu atoms per metre square per second
printf("\nThe outward flux of copper through the Al sheet = %4.2e Cu atoms per metre square per sec", J);
// Result
// The outward flux of copper through the Al sheet = 2.63e+015 Cu atoms per metre square per sec
|
a9e3a00fca266a2b64238d3e8d0a15d9d99903f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1358/CH7/EX7.12/Example712.sce | 24c8d65c82974cab9b040a54bd60f483c184f970 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 847 | sce | Example712.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 7, Example 12")
disp("Dimensionless specific speed is")
disp("Ns = 0.336*(C3/C0)^0.5*(A3/Ad)^0.5 in rev")
disp("A3 and Ad are in m2")
D3t = 0.064;//m
D3h = 0.026;//m
A3 = %pi*(D3t^2 - D3h^2)/4
D2 = 0.092;//m
Ad = %pi*D2^2/4
disp("Dimensionless specific speed Ns in rev and Nsa in rad")
Ns = 0.336*(0.447*A3/Ad)^0.5//rev
Nsa = 0.904
disp("The flow rate at outlet for the ideal turbine is given by Q3 in m3/s")
disp("Ns = 0.18*(Q3/(N*D2^3))^0.5")
N = 30500;
Q = (Ns/0.18)^2*N*D2^3/60
disp("The power developed by the turbine is given by in kW")
disp("W = m*U3^2")
disp(" = rho3*Q3*U3^2")
rho3 = 1.75;//kg/m3
Wt = rho3*Q*(%pi*N*D2/60)^2 /1000
|
983ba1d16ae25dbb28bde659c0c5472709013b33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH4/EX4.14/Ex4_14.sce | 1898ca4b27d6103e02e5ed99c1fa45e577a45896 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex4_14.sce |
// Ex4_14
clc;
// Given:
E0=1.7;// in MeV
// Solution:
// For E0<2.5 MeV; using Katz and Penfold empirical equation we have
R1=412*((E0)^(1.265-0.0954*log(E0)));// mg/cm^2
// Using feather's relation we have
R2=530*E0-106;// mg/cm^2
printf("The range in Al for beta radiation is %f mg/cm^2 using Katz and Penfold empirical equation and %f mg/cm^2 using feathers relation.",R1,R2)
|
6a1d60f24d01f512b4a2ce1ce790baa2c4390017 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2072/CH21/EX21.5/Ex21_5.sce | b98e178fcfcc9b1f5985332d24028a565ba82301 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 208 | sce | Ex21_5.sce | //Example 21.5
clc;
V_max=150//in V
V_rms=(V_max)/sqrt(2)
I_max=.255//in ohm
I_rms=I_max/sqrt(2)
cos=.426
P=V_rms*I_rms*cos
disp(V_rms,"Voltage in V=")
disp(I_rms,"Current in Amps=")
disp(P,"Power in watt=")
|
67a7de79dd63d59aeed65e99e6d14e8252197ded | 449d555969bfd7befe906877abab098c6e63a0e8 | /1397/CH6/EX6.6/6_6.sce | 6097006adcda46c8f4661e634064599a5f56b36d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 538 | sce | 6_6.sce | //clc();
clear;
//To calculate the percentage of volume change
T=910; //temperature in C
r1=1.258; //initial atomic radius in Armstrong
r2=1.292; //latter atomic radius in Armstrong
a1=(4*r1)/sqrt(3); //lattice constant in BCC structure
Vu1=a1^3; //volume of unit cell of BCC
n1=2;
V1=Vu1/n1;
disp(V1);
a2=2*sqrt(2)*r2; //lattice constant in FCC structure
Vu2=a2^3; //volume of unit cell of FCC
n2=4;
V2=Vu2/n2;
disp(V2);
PV=(V1-V2)*100/V2;
printf("percentage volume change is")
disp(PV);
|
7dbd02771e3c5a1a686059b4dbc1f8eb5d32b027 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1538/CH3/EX3.3/Ex3_3.sce | 5550f3d7f0d9fb82ab506b1531d5c1e0f2979933 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 388 | sce | Ex3_3.sce | //example-3.3
//page no-78
//given
//ionia radius of Na and cl are resp.
r1=0.98*10^(-10) //m
r2=1.81*10^(-10) //m
//no of atons in FCC
N=4
//total volume of Na and cl ions are resp
v1=N*4/3*(%pi)*(r1)^3 //m^3
v2=N*4/3*(%pi)*(r2)^3 //m^3
//the lattice constant
a=2*r1+2*r2
//average packing fraction
APF=(v1+v2)/a^3
printf ("the average packing fraction is %f",APF)
|
2bbb69822ab306ceb50db1b240fc66a365c7d28b | 72bdc6d649588b61192529e7d1420ddc18d1a67a | /tema1/Ejemplo3cTema1.sce | e2d9c17efa684559ec5a07d8b0bab1bc870c2bef | [] | no_license | jgpATs2w/scilab-examples | c3fcff648f720a8e909b2af0ec9ab70fb90dfcd2 | 59522a5ae1abbadf6f62bff16095f4b74c707918 | refs/heads/master | 2020-09-27T23:41:06.927931 | 2020-02-11T08:54:24 | 2020-02-11T08:54:24 | 226,637,785 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 288 | sce | Ejemplo3cTema1.sce | clear
i=0;
producto=1;
for a=1:1:12
for b=a+1:1:13-a
c=15-a-b
if c<>a & c<>b & a*b*c>producto
producto=a*b*c
i=i+1;
ternassuman15(i,:)=[a b c];
resultado=[a b c]
end
end
end
disp(ternassuman15)
disp(producto)
disp(resultado) |
fae0b880aa545d6031aece43a7c200002442e82e | b37ac7105c45cf46c3d4a422d28ad4977fa8f380 | /gradient-descent/fitting-line-using-gradient-descent.sci | c950814829fffadb560473d7c71560ebd0ca5ce9 | [] | no_license | svrealtime/publecture-ai-smalldata | d0045ed9852d03e29c829ba7aa6eb7611201e57c | 7479f2eaaef60d2e425828229e3b1f3648418168 | refs/heads/master | 2020-07-17T13:50:41.277701 | 2017-06-14T10:43:51 | 2017-06-14T10:43:51 | 94,319,589 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,806 | sci | fitting-line-using-gradient-descent.sci | // given 5 samples (c.q. approximated points) of a line
// determine the parameters of the best fitting line
// i.e. a and b in l:y = ax + b
// via gradient descent
// e.g. y=2x-3
xx = 1:5;
yy = [-1.1, 0.9, 3.2, 4.9,7.2]; // approximations
function [a, b] = update_one_step(a, b, xx, yy, lambda) // lambda is learning rate
rr = a*xx + b - yy; // (minus) residuals
nabla_a = rr*xx'; // gradient w.r.t. a
nabla_b = rr*ones(xx)'; // gradient w.r.t. b
// update
a = a - lambda*nabla_a; // gradient descent
b = b - lambda*nabla_b;
endfunction
function pr_gr_ss = progress(aa,bb)
delta_aa = max(aa) - min(aa);
delta_bb = max(bb) - min(bb);
pr_gr_ss = sqrt(delta_aa*delta_aa + delta_bb*delta_bb);
endfunction
function [a,b] = gradient_descent(xx,yy)
aa = 1; // initiate sequence of a's
bb = 0; // initiate sequence of b's
lambda = .01; // learning rate
epsilon = 10^-6; // progress tolerance
// fill sequences aa and bb with 4 extra values
for n = 1:4
[a,b] = update_one_step(aa($), bb($), xx, yy, lambda);
aa = [aa, a]; bb = [bb, b];
end
// continu if progress in not small enough
while progress(aa,bb)>epsilon
[a,b] = update_one_step(aa($), bb($), xx, yy, lambda);
aa = [aa(2:$),a]; bb = [bb(2:$), b];
end
// return tail values
a = aa($);
b = bb($);
endfunction
// calculate and report
[a,b] = gradient_descent(xx,yy);
disp('a = '+string(a)); // a = 2.0599923
disp('b = '+string(b)); // b = -3.1599722
function y = f(x)
y = a*x+b;
endfunction
clf()
CROSS = -2;
plot2d(xx,yy,CROSS);
x_min = min(xx); x_max = max(xx);
RED = 5;
plot2d([x_min,x_max],[f(x_min),f(x_max)],RED);
xtitle('best fitting line, using Gradient Descent');
xlabel('x'); ylabel('y');
|
3499ef3e1aa7e4883eb33c2e7a2ffe3fb4d5c590 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3.1/Unix-Windows/scilab-2.3/macros/percent/%re.sci | 0fbd078665936efc896dc056e26268502e2a69b3 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | 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 | 471 | sci | %re.sci | function [f1,f2,f3,f4,f5]=%re(i,j,f)
// %re(i,j,f) extraction f(i,j) in a rational matrix
//!
if type(i)==10 then
[lhs,rhs]=argn(0)
if rhs<>2 then error(21),end
nams=['num','den','dt']
for k=1:prod(size(i))
kf=find(i(k)==nams)
if kf==[] then error(21),end
execstr('f'+string(k)+'=j(kf+1)')
end
return
end
if type(i)==4 then i=find(i),end
if type(j)==4 then j=find(j),end
f1=f;
[n,d]=f1(2:3)
f1(2)=n(i,j);f1(3)=d(i,j)
if f1(3)==[] then f1=[],end
|
e8d23bead3415b486f6985ee7cbd2c9951a7fd34 | 98efda43218be3d9e665771c28742517fd4f334f | /Toolbox Test/rc2is/rc2is3.sce | 0de47ff0b0268bdff8ba9be485f5fb3b52072dea | [] | no_license | ankurmallick/Scilab_spt | bded5b3ed7c5618770ef4bb997b5f61aa7732cd9 | e35c986f70147ee773796c839153ed7adbda3941 | refs/heads/master | 2021-01-17T06:48:24.162281 | 2016-12-05T12:54:24 | 2016-12-05T12:54:24 | 43,445,584 | 0 | 2 | null | 2015-12-10T05:15:44 | 2015-09-30T16:47:57 | Scilab | UTF-8 | Scilab | false | false | 203 | sce | rc2is3.sce | //Testing for complex inputs(exception handling)
a=2+1*%i;
rc2is(a);
//Output
//--error 10000
//Input reflection coefficients are not real
//at line 33 of function rc2is called by :
//rc2is(a);
|
356044b68980d21b237433092f457c94411f08d2 | 3283519dac9c1e61d043b013149244a630700610 | /Problem Set 2/Pset2-Item4/4B-Lineweaver.sce | b00bdc7c192fbf27b5ba62ea751d4c3dfcece292 | [] | no_license | PascuaPrimrose/CS-131---Numerical-Methods | c9496ecc37100ef3f9175f3cbc4eb2b745f8fa1c | 69db2c5b6794e6af748991b6995172d59c65de50 | refs/heads/master | 2020-04-24T16:23:00.646776 | 2019-02-22T17:13:03 | 2019-02-22T17:13:03 | 172,104,222 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 626 | sce | 4B-Lineweaver.sce | //Linear Least Squares Lineweaver (i)
clc
clear
C = [2.5, 5, 10, 15, 20];
v0 = [0.024, 0.036, 0.053, 0.060, 0.064];
function [a0, a1] = leastSq(x, y)
nx = 5
sumX = sum(x)
sumY = sum(y)
sumXY = sum(x.*y)
sumXX = sum(x.^2)
a1 = (nx*sumXY-sumX*sumY)/(nx*sumXX-sumX^2)
a0 = (sumXX*sumY-sumXY*sumX)/(nx*sumXX-sumX^2)
endfunction
function [y] = func(a0,a1,x)
y = a1*x + a0
endfunction
x = 0;
y = 0;
x = 1./C
y = 1./v0
[z,a] = leastSq(x, y);
disp(z, "Vmax");
disp(a, "Km");
yL = []
for i=1:5
yL(i) = func(z, a, x(i))
end
plot(x, yL)
plot(x, y, ".")
|
90177c9ee1f78d51ffb89e247773f3a48efa6ab3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH11/EX11.1/ex_1.sce | b4ffdc6e02e682f5b2138e0d5dfc0d9a8dcfd40e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 187 | sce | ex_1.sce | //Example 1// Frequencies
clc;
clear;
close;
//given data :
t=2;// in sec
n1=100;// in vibrations/sec
n2a=n1+(1/t);
n2b=n1-(1/t);
disp(n2a,"frequency,n2a= ")
disp(n2b,"frequency,n2b = ")
|
4640904b7e3e4067c873cbbe4c91c3b341090493 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH4/EX4.2/2.sce | 37e770be645b5ff54c3988cdc56f9109a397f013 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 431 | sce | 2.sce |
//Variable declaration
e=1.6*10**-19;
m=9.1*10**-31; //mass(kg)
h=6.626*10**-34; //planck's constant
lamda=1.66*10**-10; //wavelength(m)
//Calculation
v=h/(m*lamda); //velocity(m/s)
E=h**2/(2*m*e*lamda**2); //kinetic energy(eV)
//Result
printf('velocity is %0.3f *10**4 m/s \n',(v/10**4))
printf('answer varies due to approximating off errors\n')
printf('kinetic energy is %0.3f eV \n',(E)) |
cc944703a01b0beb75ad5dc537ff343cb6dd8750 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3773/CH9/EX9.1/Ex9_1.sce | e4998a53744b8a552ba0bc38116be6f092b2907b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 735 | sce | Ex9_1.sce | //Chapter 9: Reflector Antennas
//Example 9-2.1
clc;
//Variable Initialization
P_transmit = 25000.0 //Power transmitted by station transmitter (W)
gain_dbi = 29.0 //Gain of array (dBi)
r = 7500e3 //Distance (m)
h = 250e3 //Height (m)
z = 377.0 //Intrinsic impedance of free space (ohm)
//Calculation
gain = 10**(gain_dbi/10) //Gain of array (unitless)
erp = gain*P_transmit //Effective radiated power (W)
p_area = erp/(2*%pi*r*h) //Power per unit area at distance r (W/m^2)
field_str = sqrt(p_area*z) //Field strength (mV/m)
//Result
disp(erp,"The effective radiated power in W")
mprintf("\nThe field strength at the distance r is %.3f V/m^2",field_str)
|
fe9c06f2c9d7b2442bd203edf15c5c52a2e9194b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1217/CH4/EX4.15/Exa4_15.sce | ca2f063eeddbaac1a4942d0bd917329c8fade840 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 411 | sce | Exa4_15.sce | //Exa 4.15
clc;
clear;
close;
// given data
Gain=10;//Unitless
fb=10;//in KHz
//Assuming fa=fb/10
fa=fb/10;//in KHz
// Formula : fa=1/(2*pi*RF*CF)
RFCF=1/(2*%pi*fa);
//Assuming R1=1Kohm
R1=1;//in Kohm
RF=10*R1;//in Kohm
CF=RFCF/RF;//in uF
Rcomp=(R1*RF)/(R1+RF);// in Kohm
disp(RF,"Value of RF in Kohm is : ");
disp(CF,"Value of CF in uF is : ");
disp(Rcomp*1000,"Value of Rcomp in ohm is : "); |
bf21d0f581bbf683918b1800b8d6ab12ce1098b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH6/EX6.10/ex6_10.sce | b9d2519da4c74862924b4d999587e86381f84e88 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 406 | sce | ex6_10.sce | //Programming Example 6.10
//Averaging a list of numbers
count=1;
Sum=0;
//initialize and read in a value for n
printf("How many numbers ? ");
n=scanf("%d");
//read in the numbers
while(count <= n)
printf("x= ");
x=scanf("%f");
Sum=Sum+x;
count=count+1;
end
//calculate the average and display the answer
average=Sum/n;
printf("\n The average is %f\n", average); |
87d20b15b7b40cb0655f64bffc92005b2dffd2c4 | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/jintgen/unr_oper_11.tst | 28c973e45151e5fb8cfaf4f094592c21ffc6e948 | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 219 | tst | unr_oper_11.tst | // @Harness: verifier
// @Purpose: "Test for operator resolution"
// @Result: "UnresolvedOperator @ 7:25"
architecture unr_oper_01 {
subroutine foo(a: int, b: boolean): void {
local e: int = a | b;
}
}
|
650313ddb3775ca4be04f7e59869739be28e3bbc | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH40/EX40.13/40_13.sce | 4bf59974517b79c94011ac3db042578dff3f2960 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 483 | sce | 40_13.sce | //Problem 40.13: A capacitor is charged with 5 mC. If the energy stored is 625 mJ, determine (a) the voltage across the plates and (b) the capacitance of the capacitor.
//initializing the variables:
e0 = 8.85E-12;
er = 1;
Q = 5E-3; // in Coulomb
W = 0.625; // in Joules
//calculation:
//voltage across the plates
V = 2*W/Q
//Capacitance C
C = Q/V
printf("\n\n Result \n\n")
printf("\n voltage across the plates is %.0f V",V)
printf("\n Capacitance C is %.2E F",C) |
495d9f71e01fec56e1a82be4e78e3bfd2b26dd43 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH10/EX10.12.b/solution10_12.sce | cd03358d26158af19c13df565c8be4b15edef663 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,683 | sce | solution10_12.sce |
//Obtain path of solution file
path = get_absolute_file_path('solution10_12.sce')
//Obtain path of data file
datapath = path + filesep() + 'data10_12.sci'
//Clear all
clc
//Execute the data file
exec(datapath)
//Calculate the maximum spring force P (N)
P = m * 9.81
//Calculate the Wahl Factor K
K = (((4 * C) - 1)/((4 * C) - 4)) + (0.615/C)
//Assume the wire diameter to be 1mm d
d = 1
//Calculate the shear stress in the spring tau (N/mm2)
tau = (K * 8 * P * C)/(%pi * (d^2))
trials = 0
warning("off")
numeric = read_csv(path + filesep() + 'table10_2.csv')
while (gr~='SW' & gr~='VW')
printf("\n")
gr = input("Enter appropriate steel grade: ","string")
end
if (gr == 'SW')
col = 2
elseif (gr == 'VW')
col = 3
end
row = 4
//Calculate the wire diameter dNew (mm)
for i = 1:1:%inf
trials = trials + 1
dNew = evstr(numeric(row, 1))
Sut = evstr(numeric(row, col))
tauNew = tau/(dNew^2)
taud = (r/100)*Sut
if (taud > tauNew)
break()
end
row = row + 1
end
//Calculate the mean coil diameter D (mm)
D = C * dNew
//Calculate the length of each division ld (mm)
ld = l/div
//Calculate the stiffness of the spring k (N/mm)
k = (mi * 9.81)/ld
//Calculate the number of active coils N
N = (G * (dNew^4))/(8 * (D^3) * k)
//Calculate the solid length of the spring s (mm)
s = N * dNew
//Print results
printf("\nNumber of trials= %d\n",trials)
printf("\nWire diameter(dNew) = %f mm\n",dNew)
printf("\nMean coil diameter(DNew) = %f mm\n",D)
printf("\nNumber of active coils(N) = %d\n",N)
printf("\nTotal number of coils(Nt) = %d\n",N)
printf("\nThe helical tension spring has Nt = N\n")
printf("\nSolid length of the spring(s) = %f mm\n",s)
|
bfea4ae745be39563435e007127dc9e3002380fc | 5f2ca8e18735204f5995ac7e44a6e301eb23ea0b | /scripts/trim/trim_f16.sci | 88de1d37dfe33fb10df6bc106609a844b7cf31c7 | [] | no_license | Jettanakorn/mcflight | 4e7d4e20976e8f3621bf13fec2a8b522ecfc49a9 | e6579a11e10c5e9ae9ee558f464a6b88e1ae7a26 | refs/heads/master | 2023-03-17T10:49:28.906700 | 2019-10-30T20:20:58 | 2019-10-30T20:20:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,582 | sci | trim_f16.sci | exec('eqm/engine_f16.sci');
exec('eqm/eqm.sci');
exec('eqm/params_f16.sci');
function [X, controls, params] = trim_straight_level(V_ftps, alt_ft, xcg)
[out, inp] = argn(0);
if inp<3 then
xcg = .35;
end
if inp<2 then
alt_ft = 0.0;
end
params = load_f16();
params.xcg = xcg;
params.coordinated_turn = 0;
params.turn_rate_rps = 0.0;
params.roll_rate_rps = 0.0;
params.pitch_rate_rps = 0.0;
params.phi_rad = 0.0;
params.gamma_rad = 0.0;
params.stability_axis_roll = 0;
params.VT_ftps = V_ftps;
params.alt_ft = alt_ft;
function y = costf16(x)
y = cost_trim_f16(x,params);
endfunction
S0 = [
.0 //throttle 0-1
0.0 //elev_deg
0.0 //alpha_rad
//0.0//ail_deg
//0.0//rudder_deg
//0.0//beta_rad
];
S = fminsearch(costf16, S0);
X = [
params.VT_ftps //VT_fps
S(3) //alpha_rad
0.0 //beta_rad
0.0 //phi_rad
S(3) //theta_rad
0.0 //psi_rad
0.0 //p_rps
0.0 //q_rps
0.0 //r_rps
0.0 //north position ft
0.0 //east position ft
params.alt_ft //alt_ft
tgear(S(1)) //power_perc
];
controls.throttle = S(1);
controls.elev_deg = S(2);
controls.ail_deg = 0.0;
controls.rudder_deg = 0.0;
endfunction
function [X, controls, params] = trim_coordinated_turn(V_ftps, alt_ft, turn_rate_rps, gamma_rad, xcg)
[out, inp] = argn(0);
if inp<5 then
xcg = .35;
end
if inp<4 then
gamma_rad = 0.0;
end
params = load_f16();
params.xcg = xcg;
params.coordinated_turn = 1;
params.turn_rate_rps = turn_rate_rps;
params.roll_rate_rps = 0.0;
params.pitch_rate_rps = 0.0;
params.phi_rad = 0.0;
params.gamma_rad = gamma_rad;
params.stability_axis_roll = 0;
params.VT_ftps = V_ftps;
params.alt_ft = alt_ft;
function y = costf16(x)
y = cost_trim_f16(x,params);
endfunction
S0 = [
.1 //(1)throttle 0-1
0.0 //(2)elev_deg
0.0 //(3)alpha_rad
0.0 //(4)ail_deg
0.0 //(5)rudder_deg
0.0 //(6)beta_rad
];
S = fminsearch(costf16, S0);
X = [
params.VT_ftps //VT_fps
S(3) //alpha_rad
S(6) //beta_rad
0.0 //phi_rad
0.0 //theta_rad
0.0 //psi_rad
0.0 //p_rps
0.0 //q_rps
0.0 //r_rps
0.0 //north position ft
0.0 //east position ft
params.alt_ft //alt_ft
tgear(S(1)) //power_perc
];
X = trim_constraint_f16(X, params);
controls.throttle = S(1);
controls.elev_deg = S(2);
controls.ail_deg = S(4);
controls.rudder_deg = S(5);
endfunction
function y = cost_trim_f16(S, params)
X = zeros(13,1);
controls.throttle = S(1);
controls.elev_deg = S(2);
X(2) = S(3);
if(length(S)>3) then
controls.ail_deg = S(4);
controls.rudder_deg = S(5);
X(3) = S(6);
else
controls.ail_deg = 0.0;
controls.rudder_deg = 0.0;
X(3) = 0.0;
end
X(13) = tgear(controls.throttle);
X = trim_constraint_f16(X, params);
XD = eqm(0, X, controls, params);
y = XD(1)^2 + 100*(XD(2)^2 + XD(3)^2) + 10*(XD(7)^2 + XD(8)^2 + XD(9)^2);
endfunction
function [X_new] = trim_constraint_f16(X, params)
X(1) = params.VT_ftps;
X(12) = params.alt_ft;
cos_alpha = cos(X(2));
sin_alpha = sin(X(2));
tan_alpha = sin_alpha/cos_alpha;
cos_beta = cos(X(3));
sin_beta = sin(X(3));
if(params.coordinated_turn) then
sin_gamma = sin(params.gamma_rad);
centripetal_acc = params.turn_rate_rps*params.VT_ftps/params.g0_ftps2;
a = 1 - centripetal_acc*tan_alpha*sin_beta;
b = sin_gamma/cos_beta;
c = 1 + (centripetal_acc^2)*cos_beta^2;
//phi_rad, Stevens&Lewis 2nd edition, eq 3.6-5
X(4) = atan(centripetal_acc*(cos_beta/cos_alpha)*((a-b^2) + b*tan_alpha*sqrt(c*(1-b^2) + (centripetal_acc^2)*sin_beta^2))/(a^2 - (b^2)*(1 + c*tan_alpha^2)));
//theta_rad, Stevens&Lewis 2nd edition eq 3.6-3
a = cos_alpha*cos_beta;
b = sin(X(4))*sin_beta + cos(X(4))*sin_alpha*cos_beta;
X(5) = atan((a*b + sin_gamma*sqrt(a^2 - sin_gamma^2 + b^2))/(a^2 - sin_gamma^2));
elseif (params.turn_rate_rps <> 0) then
//skidding turn logic
else //non-turning flight
X(4) = params.phi_rad;
alpha_rad = X(2);
if (params.phi_rad <> 0.0) then
alpha_rad = -X(2);
end
if (params.gamma_rad <> 0.0) then
sin_gamma_over_cos_beta = sin(params.gamma_rad)/cos_beta;
X(5) = alpha_rad + atan(sin_gamma_over_cos_beta/sqrt(1.0-sin_gamma_over_cos_beta*sin_gamma_over_cos_beta));
else
X(5) = alpha_rad;
end
X(7) = params.roll_rate_rps;
X(8) = params.pitch_rate_rps;
if(params.stability_axis_roll)
X(9) = roll_rate_rps*sin_alpha/cos_alpha; // stability-axis roll
else
X(9) = 0.0; // body-axis roll
end
end
X_new = X;
endfunction
|
2350f9f0c8475500e1161a88204a9c47c986b76e | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/util/%lss_ones.sci | 4b5e783c23fd92a3a698c5e86af311fec20209c2 | [
"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 | 56 | sci | %lss_ones.sci | function x=%lss_ones(a)
// Copyright INRIA
x=ones(a(5))
|
2c12f5e332fb32b02a4ced8a0c0937cb3ed0afa4 | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /matlab/plasma/bfieldtrapezium.sce | 6e98f4f1f6d6de331f449576afa85981e0556ad8 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,639 | sce | bfieldtrapezium.sce | //bfield outside a solenoid
//assume solenoid aligned along z axis
function [b]=bfieldtrapezium(r,ztp,zbot,n,i,rfp,dtheta)
//n number of turns
//i per turn
bt=zeros(3,1);
btd=zeros(3,1);
mu0=4.0*%pi*(10^(-7));
dz=(ztp-zbot)/n;
ce=zeros(3,1);
//calculate field contribution for each turn
//z=zbot;
z=0;
dz=0.1;
dz=0;
//dr=2*%pi/dtheta;
//r=r/2;
dr=r*dtheta;
//ntheta=(2*%pi-dtheta)/dtheta
ntheta=(2*%pi)/dtheta
for ic=0:ntheta-1
for jc=1:2
theta=-%pi+(ic+(jc-1))*dtheta
//current element location
//z=theta;
xi=r*cos(theta);
yi=r*sin(theta);
rcp(1,1)=xi;
rcp(2,1)=yi;
rcp(3,1)=z;
rp(1,1)=rfp(1,1)-r*cos(theta+dtheta/4);
rp(2,1)=rfp(2,1)-r*sin(theta+dtheta/4);
rp(3,1)=rfp(3,1)-z;
rcpd(1,1)=r*cos(theta+dtheta/2);
rcpd(2,1)=r*sin(theta+dtheta/2);
rcpd(3,1)=z+dz;
//current element vector
//using tangent vector defn. from
//http://mathworld.wolfram.com/TangentVector.html
//and arc length ds=rdtheta
//ce(1,1)=-sin(theta);
//ce(2,1)=cos(theta);
ce(:,1)=rcpd(:,1)-rcp(:,1);
//evaluate cross product of current element and
//field vector
cp(1,1)=ce(2,1)*rp(3,1)-ce(3,1)*rp(2,1);
cp(2,1)=ce(3,1)*rp(1,1)-ce(1,1)*rp(3,1);
cp(3,1)=ce(1,1)*rp(2,1)-ce(2,1)*rp(1,1);
rsq=(rp(1,1)*rp(1,1)+rp(2,1)*rp(2,1)+rp(3,1)*rp(3,1))^(3/2);
btd(:,jc)=cp(:,1)/rsq;
end
bt(:,1)=bt(:,1)+0.5*(btd(:,1)+btd(:,2));
end
b=mu0*i*dr*bt/(4*%pi);
endfunction
|
20ce2be715376b2b6ba2b48a4543a62e0f14b250 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH8/EX8.7/Ex8_7.sce | ea05d9cb99418f0c6d2b05d020c1d9dde7fd5fb6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 328 | sce | Ex8_7.sce | //Example number 8.7, Page number 172
clc;clear;
close;
//Variable declaration
H=1800; //magnetizing force(amp/m)
chi=3*10**-5; //magnetic flux(wb)
A=0.2*10**-4; //area(m**2)
//Calculation
B=chi/A;
mew=B/H; //permeability(henry/m)
//Result
printf("permeability is %.3e H/m^2",mew)
//answer in the book is wrong
|
ca32002dccf9525f772b5e3aa18b87b8bdcb92b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH13/EX13.6/Ex13_6.sce | a1dd47006ae11fea8b03e7a33639586020c659db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,027 | sce | Ex13_6.sce | clc;clear;
//Example 13.6
//13.6 (d) answer not matching as float datatype is giving more accurate answer in comparison to textbook that has given approximate due to rounding off to two decimal places
//given data
mfs=0.0348;
mfw=0.9652;
T0=288.15;
//constants used
Mw=18;
Ms=58.44;
Rw=0.4615;
pm=1028;
Ru=8.314;
//calculations
//part - a
Mm=1/((mfs/Ms)+(mfw/Mw));
yw=mfw*Mm/Mw;
ys=1-yw;
disp(yw,'the mole fraction of the water');
disp(ys,'the mole fraction of the saltwater');
//part - b
wmin=-Ru*T0*(ys*log(ys)+yw*log(yw));
wm=wmin/Mm;
disp(wm,'the minimum work input required to separate 1 kg of seawater completely into pure water and pure salts in kJ');
//part - c
wmin=Rw*T0*log(1/yw);
disp(wmin,'the minimum work input required to obtain 1 kg of fresh water from the sea in kJ');
//part - d
Pmin=pm*Rw*T0*log(1/yw);
disp(Pmin,'the minimum gauge pressure that the seawater must be raised if fresh water is to be obtained by reverse osmosis using semipermeable membranes in kPa')
|
b022bff1bd5fb6d52b86f3fcd47baee4554e9115 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/mtlb/%s_c_b.sci | 3dc5de6cc0e4d1b93583cfb58fe14a305bfe9638 | [
"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 | 39 | sci | %s_c_b.sci | function r=%s_c_b(s,b)
r=[s bool2s(b)]
|
e8539fabbab700f9cbad6ee417c3514bf9b4ecec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2840/CH1/EX1.10/ex1_10.sce | 0bca1dc909c64e81dd09087703a355c20b4a9ca4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 280 | sce | ex1_10.sce | clc;
clear all;
n = 2.8e10; // Rigidity modulus in Newton per meter suquare
theta = 90; // In degress
theta1 = theta*(%pi/180); // in radians
l = 2; //Length of wire in meter
r = 0.5e-3; // Radius of wire in meter
t = (%pi^2 * n *r^4)/(4*l);
disp('Nm',t,'Torque is');
|
26d708baaa477ac867509e13eee0fc2e51f389eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH14/EX14.11/Ex14_11.sce | b50ce7969220981cd31dded11274bbead6f090a3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 228 | sce | Ex14_11.sce | //Ex14_11 Pg-699
clc
L=500/1000 //length of fiber in m
Pin=1*10^(-3) //input power in watt
Pout=85/100*10^(-3) //output power in watt
alpha=(10/L)*log10(Pin/Pout) //loss
printf("Loss in the fiber = %.2f dB/Km",alpha)
|
7616deb9a0ebaff642ab1e04316c96efbb4358a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH2/EX2.8/2_8.sce | 0a05d4239cf77c1b08721d6dd2769dc22d53b2b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 155 | sce | 2_8.sce | //Converting practical voltage source to current source
I=12/6
//KCLs
A=[0.7,-0.5;-0.5,0.767]
V=inv(A)*[7;2]
disp(V)
I12=(V(1)-V(2))/2
disp(I12) |
d28940028228f56d935fcbfd152a45c4e9e6d3f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /48/CH15/EX15.11/eg_15_11.sce | bc81bcfff013cd858678ba82189f86cd072c5500 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 442 | sce | eg_15_11.sce | clc;
clear;
A=[0 1 0;
1 0 0;
0 1 1];
B=[1;1;1];
C=[1 0 0];
D=[1];
K=[C;C*A;C*(A*A)];
disp(K);
disp(rank(K),'rank of K matrix is ');
disp("Since the rank is 2 K matrix can be reduced");
disp("As only the first 2 rows are linearly independent therefore");
T=[1 0 0;0 1 0];
disp(T,'T =');
disp("In this case Q is");
Q=[1 0;0 1];
disp(Q);
Q_inv=inv(Q);
R=T';
//y_red=T*y;
A_red=T*A*R;
B_red=T*B;
C_red=C*R;
D_red=D; |
9deeff29349d367ff7a179196135e51af5f07478 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH11/EX11.2/Ex11_2.sce | 326d2e131c31cd1c827756f2a23a925e71941da8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 737 | sce | Ex11_2.sce |
// Theory and Problems of Thermodynamics
// Chapter 11
// Kinetic Theory of Gases
// Example 2
clear ;clc;
//Given data
P = 0.1 // pressure of helium surface exposed in MPa
T = 300 // temperature of helium surface exposed in K
R = 8.314 // gas constant
M = 4*1e-3 // molecular weight of helium
k = 1.3804*1e-23 // boltzmann constant
// Calculations
V = (8*R*T/(%pi*M))^0.5 // average velocity of gas molecule
n = P*1e6/(k*T) // number of mlucules per m^3
num_col = 1/4*n*V // number of collisions per m^2 per second
// output results
mprintf('number of collisions per m^2 per second = %4.4f E+27', num_col*1e-27)
|
702331af6b8ff379e9ce1edf30242456a004a57e | f6134e0a162a059c42ec3ef8de2a63941d73936c | /Scilab_code/Local_Planner/matrix_fromAngleVector.sci | 739ed07c8c35ef27f6d922ca1370c23dd6b22dfc | [] | 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 | 718 | sci | matrix_fromAngleVector.sci | function Rmat = matrix_fromAngleVector(angle,vector)
//Author : Maxens ACHIEPI
//Space Robotics Laboratory - Tohoku University
//Description:
//Outputs the rotation matrix according to Rodrigues formula
//INPUT
//
//OUTPUT
//
//TODO :
//----------------------------------------------------------------------------//
vector = vector/norm(vector);
ux = vector(1);
uy = vector(2);
uz = vector(3);
P = [ux**2 ux*uy ux*uz;ux*uy uy**2 uy*uz;ux*uz uy*uz uz**2];
I = eye(3,3);
Q = [0 -uz uy;uz 0 -ux;-uy ux 0];
c = cos(angle);
// disp(c)
s = sin(angle);
// disp(s)
Rmat = P+c*(I-P)+s*Q;
endfunction
|
64133903b69ee5a9e62289a11e69801941ac05d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2441/CH2/EX2.23/Ex2_23.sce | 54408889203a06febaab69edcd3bb7f73d8156df | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 552 | sce | Ex2_23.sce | //exa 2.23
clc;clear;close;
format('v',7);
//dF1/dP1=0.025*P1+15;//
//dF2/dP2=0.05*P2+20;//
PL=15.625;//MW
P1=125;//MW
lambda=24;//Rs. per MWh
B11=PL/P1^2;//Coefficient Loss
//dF2/dP2*L2=lambda
P2=poly(0,'P2');
L2=1;//penalty factor
eqn=(0.05*P2+20)*L2-lambda;
P2=roots(eqn);//MW
//PL=B11*P1^2
P1=poly(0,'P1');
dPLbydP1=2*B11*P1;
L1=1/(1-dPLbydP1);//penalty factor
eqn=(0.025*P1+15)-lambda/L1
P1=roots(numer(eqn));//MW
disp(P2,P1,"Generation P1 & P2 in MW are ");
PL=B11*P1^2;//MW
LD=P1-PL+P2;//MW
disp(LD,"Load Demand(MW) :");
|
e32f361995a53efeb8744473022e421287099e16 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/DT87NVH/ATWM1_Working_Memory_MEG_DT87NVH_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce | 9b0a813e27f7129c0ebe607443f63d0f80ba2ffc | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,597 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
43 61 292 292 399 125 2192 2992 1992 fixation_cross gabor_039 gabor_158 gabor_004 gabor_180 gabor_039_alt gabor_158 gabor_004 gabor_180_alt "1_1_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_039_158_004_180_target_position_2_3_retrieval_position_2" gabor_circ gabor_021_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_1_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_001 gabor_163 gabor_089 gabor_074 gabor_001_alt gabor_163 gabor_089_alt gabor_074 "1_2_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_001_163_089_074_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_119_framed blank blank blank blank fixation_cross_target_position_2_4 "1_2_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_019 gabor_135 gabor_059 gabor_180 gabor_019_alt gabor_135 gabor_059 gabor_180_alt "1_3_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_019_135_059_180_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_059_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_3_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2142 2992 2192 fixation_cross gabor_035 gabor_004 gabor_160 gabor_073 gabor_035 gabor_004 gabor_160_alt gabor_073_alt "1_4_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_035_004_160_073_target_position_1_2_retrieval_position_2" gabor_circ gabor_054_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_4_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_054_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_131 gabor_012 gabor_155 gabor_091 gabor_131 gabor_012_alt gabor_155_alt gabor_091 "1_5_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_131_012_155_091_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_091_framed blank blank blank blank fixation_cross_target_position_1_4 "1_5_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_163 gabor_147 gabor_001 gabor_073 gabor_163 gabor_147 gabor_001_alt gabor_073_alt "1_6_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_163_147_001_073_target_position_1_2_retrieval_position_1" gabor_027_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_6_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_176 gabor_020 gabor_002 gabor_154 gabor_176_alt gabor_020 gabor_002_alt gabor_154 "1_7_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_176_020_002_154_target_position_2_4_retrieval_position_2" gabor_circ gabor_020_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_7_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1792 2992 2542 fixation_cross gabor_067 gabor_140 gabor_029 gabor_085 gabor_067_alt gabor_140_alt gabor_029 gabor_085 "1_8_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2550_gabor_patch_orientation_067_140_029_085_target_position_3_4_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_8_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_001_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1742 2992 2292 fixation_cross gabor_001 gabor_037 gabor_115 gabor_086 gabor_001 gabor_037 gabor_115_alt gabor_086_alt "1_9_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_001_037_115_086_target_position_1_2_retrieval_position_2" gabor_circ gabor_037_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_9_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1842 2992 2092 fixation_cross gabor_176 gabor_161 gabor_039 gabor_110 gabor_176_alt gabor_161 gabor_039 gabor_110_alt "1_10_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_176_161_039_110_target_position_2_3_retrieval_position_2" gabor_circ gabor_161_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_10_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_020 gabor_099 gabor_042 gabor_077 gabor_020_alt gabor_099 gabor_042 gabor_077_alt "1_11_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_020_099_042_077_target_position_2_3_retrieval_position_2" gabor_circ gabor_148_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_11_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1842 2992 1892 fixation_cross gabor_121 gabor_152 gabor_169 gabor_014 gabor_121 gabor_152_alt gabor_169 gabor_014_alt "1_12_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_1900_gabor_patch_orientation_121_152_169_014_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_063_framed blank blank blank blank fixation_cross_target_position_1_3 "1_12_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_154 gabor_122 gabor_099 gabor_077 gabor_154_alt gabor_122 gabor_099_alt gabor_077 "1_13_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_154_122_099_077_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_077_framed blank blank blank blank fixation_cross_target_position_2_4 "1_13_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1792 2992 2492 fixation_cross gabor_065 gabor_039 gabor_155 gabor_179 gabor_065_alt gabor_039 gabor_155 gabor_179_alt "1_14_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2500_gabor_patch_orientation_065_039_155_179_target_position_2_3_retrieval_position_2" gabor_circ gabor_039_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_14_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1992 2992 2592 fixation_cross gabor_120 gabor_034 gabor_079 gabor_005 gabor_120 gabor_034 gabor_079_alt gabor_005_alt "1_15_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_120_034_079_005_target_position_1_2_retrieval_position_2" gabor_circ gabor_034_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_15_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1892 2992 1892 fixation_cross gabor_177 gabor_104 gabor_021 gabor_161 gabor_177_alt gabor_104 gabor_021 gabor_161_alt "1_16_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_1900_gabor_patch_orientation_177_104_021_161_target_position_2_3_retrieval_position_1" gabor_041_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_16_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_041_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1892 2992 1942 fixation_cross gabor_072 gabor_131 gabor_050 gabor_088 gabor_072 gabor_131 gabor_050_alt gabor_088_alt "1_17_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_072_131_050_088_target_position_1_2_retrieval_position_2" gabor_circ gabor_178_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_17_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_061 gabor_027 gabor_136 gabor_177 gabor_061_alt gabor_027_alt gabor_136 gabor_177 "1_18_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_061_027_136_177_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_136_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_18_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 2192 2992 2542 fixation_cross gabor_127 gabor_173 gabor_042 gabor_059 gabor_127 gabor_173 gabor_042_alt gabor_059_alt "1_19_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2550_gabor_patch_orientation_127_173_042_059_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_108_framed blank blank blank blank fixation_cross_target_position_1_2 "1_19_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_108_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_068 gabor_153 gabor_035 gabor_009 gabor_068 gabor_153_alt gabor_035 gabor_009_alt "1_20_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_068_153_035_009_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_035_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_20_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_175 gabor_113 gabor_088 gabor_151 gabor_175 gabor_113 gabor_088_alt gabor_151_alt "1_21_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_175_113_088_151_target_position_1_2_retrieval_position_1" gabor_037_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_21_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2042 2992 1942 fixation_cross gabor_052 gabor_087 gabor_157 gabor_003 gabor_052_alt gabor_087 gabor_157 gabor_003_alt "1_22_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_052_087_157_003_target_position_2_3_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_22_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_118 gabor_173 gabor_037 gabor_146 gabor_118 gabor_173_alt gabor_037 gabor_146_alt "1_23_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_118_173_037_146_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_085_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_23_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1942 2992 2442 fixation_cross gabor_130 gabor_098 gabor_022 gabor_081 gabor_130 gabor_098_alt gabor_022 gabor_081_alt "1_24_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2450_gabor_patch_orientation_130_098_022_081_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_160_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_24_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1942 2992 2242 fixation_cross gabor_023 gabor_160 gabor_086 gabor_045 gabor_023 gabor_160 gabor_086_alt gabor_045_alt "1_25_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_023_160_086_045_target_position_1_2_retrieval_position_1" gabor_023_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_25_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_021 gabor_128 gabor_177 gabor_156 gabor_021_alt gabor_128 gabor_177 gabor_156_alt "1_26_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_021_128_177_156_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_042_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_26_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1992 2992 2292 fixation_cross gabor_047 gabor_070 gabor_152 gabor_176 gabor_047 gabor_070_alt gabor_152_alt gabor_176 "1_27_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_047_070_152_176_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_176_framed blank blank blank blank fixation_cross_target_position_1_4 "1_27_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 2092 2992 2192 fixation_cross gabor_014 gabor_126 gabor_087 gabor_147 gabor_014_alt gabor_126 gabor_087_alt gabor_147 "1_28_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_014_126_087_147_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_28_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_087_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1842 2992 2192 fixation_cross gabor_064 gabor_088 gabor_154 gabor_134 gabor_064 gabor_088_alt gabor_154_alt gabor_134 "1_29_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_064_088_154_134_target_position_1_4_retrieval_position_1" gabor_019_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_29_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2092 2992 2492 fixation_cross gabor_006 gabor_168 gabor_088 gabor_044 gabor_006_alt gabor_168 gabor_088 gabor_044_alt "1_30_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_006_168_088_044_target_position_2_3_retrieval_position_2" gabor_circ gabor_119_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_30_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2042 2992 2242 fixation_cross gabor_150 gabor_093 gabor_011 gabor_169 gabor_150_alt gabor_093 gabor_011 gabor_169_alt "1_31_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_150_093_011_169_target_position_2_3_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_31_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1942 2992 2142 fixation_cross gabor_122 gabor_049 gabor_067 gabor_004 gabor_122 gabor_049_alt gabor_067 gabor_004_alt "1_32_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2150_gabor_patch_orientation_122_049_067_004_target_position_1_3_retrieval_position_2" gabor_circ gabor_049_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_32_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_049_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_132 gabor_117 gabor_045 gabor_072 gabor_132 gabor_117 gabor_045_alt gabor_072_alt "1_33_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_132_117_045_072_target_position_1_2_retrieval_position_2" gabor_circ gabor_162_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_33_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1942 2992 2342 fixation_cross gabor_079 gabor_027 gabor_047 gabor_105 gabor_079_alt gabor_027 gabor_047 gabor_105_alt "1_34_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2350_gabor_patch_orientation_079_027_047_105_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_105_framed blank blank blank blank fixation_cross_target_position_2_3 "1_34_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_105_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2092 2992 1992 fixation_cross gabor_090 gabor_180 gabor_136 gabor_113 gabor_090_alt gabor_180_alt gabor_136 gabor_113 "1_35_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2000_gabor_patch_orientation_090_180_136_113_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_063_framed blank blank blank blank fixation_cross_target_position_3_4 "1_35_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_178 gabor_046 gabor_026 gabor_155 gabor_178 gabor_046 gabor_026_alt gabor_155_alt "1_36_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_178_046_026_155_target_position_1_2_retrieval_position_2" gabor_circ gabor_046_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_36_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_052 gabor_089 gabor_111 gabor_029 gabor_052 gabor_089 gabor_111_alt gabor_029_alt "1_37_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_052_089_111_029_target_position_1_2_retrieval_position_2" gabor_circ gabor_089_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_37_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_004 gabor_178 gabor_114 gabor_033 gabor_004 gabor_178_alt gabor_114 gabor_033_alt "1_38_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_004_178_114_033_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_065_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_38_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1942 2992 2142 fixation_cross gabor_114 gabor_033 gabor_138 gabor_094 gabor_114_alt gabor_033 gabor_138 gabor_094_alt "1_39_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_114_033_138_094_target_position_2_3_retrieval_position_2" gabor_circ gabor_168_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_39_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2042 2992 2042 fixation_cross gabor_018 gabor_125 gabor_074 gabor_051 gabor_018_alt gabor_125_alt gabor_074 gabor_051 "1_40_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_018_125_074_051_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_target_position_3_4 "1_40_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2042 2992 1942 fixation_cross gabor_063 gabor_126 gabor_038 gabor_145 gabor_063_alt gabor_126 gabor_038_alt gabor_145 "1_41_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_063_126_038_145_target_position_2_4_retrieval_position_2" gabor_circ gabor_126_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_41_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1992 2992 1892 fixation_cross gabor_069 gabor_104 gabor_087 gabor_043 gabor_069_alt gabor_104 gabor_087_alt gabor_043 "1_42_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_1900_gabor_patch_orientation_069_104_087_043_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_133_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_42_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_133_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_130 gabor_015 gabor_074 gabor_040 gabor_130 gabor_015_alt gabor_074_alt gabor_040 "1_43_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_130_015_074_040_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_040_framed blank blank blank blank fixation_cross_target_position_1_4 "1_43_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1742 2992 2142 fixation_cross gabor_043 gabor_153 gabor_078 gabor_003 gabor_043_alt gabor_153 gabor_078_alt gabor_003 "1_44_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2150_gabor_patch_orientation_043_153_078_003_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_124_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_44_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_124_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2142 2992 2292 fixation_cross gabor_059 gabor_096 gabor_019 gabor_172 gabor_059_alt gabor_096_alt gabor_019 gabor_172 "1_45_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_059_096_019_172_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_125_framed blank blank blank blank fixation_cross_target_position_3_4 "1_45_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_087 gabor_024 gabor_047 gabor_162 gabor_087_alt gabor_024 gabor_047_alt gabor_162 "1_46_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_087_024_047_162_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_162_framed blank blank blank blank fixation_cross_target_position_2_4 "1_46_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2142 2992 2292 fixation_cross gabor_159 gabor_007 gabor_139 gabor_078 gabor_159_alt gabor_007 gabor_139_alt gabor_078 "1_47_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_159_007_139_078_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_033_framed blank blank blank blank fixation_cross_target_position_2_4 "1_47_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_033_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_002 gabor_135 gabor_024 gabor_067 gabor_002_alt gabor_135 gabor_024_alt gabor_067 "1_48_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_002_135_024_067_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_067_framed blank blank blank blank fixation_cross_target_position_2_4 "1_48_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_154 gabor_024 gabor_045 gabor_070 gabor_154 gabor_024_alt gabor_045 gabor_070_alt "1_49_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_154_024_045_070_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_045_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_49_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_155 gabor_080 gabor_110 gabor_131 gabor_155 gabor_080 gabor_110_alt gabor_131_alt "1_50_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_155_080_110_131_target_position_1_2_retrieval_position_1" gabor_155_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_50_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1992 2992 1942 fixation_cross gabor_016 gabor_063 gabor_104 gabor_084 gabor_016 gabor_063 gabor_104_alt gabor_084_alt "1_51_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_1950_gabor_patch_orientation_016_063_104_084_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_target_position_1_2 "1_51_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1892 2992 2342 fixation_cross gabor_109 gabor_130 gabor_041 gabor_004 gabor_109_alt gabor_130 gabor_041 gabor_004_alt "1_52_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_109_130_041_004_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_041_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_52_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_052 gabor_031 gabor_089 gabor_177 gabor_052 gabor_031_alt gabor_089_alt gabor_177 "1_53_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_052_031_089_177_target_position_1_4_retrieval_position_1" gabor_007_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_53_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2142 2992 2042 fixation_cross gabor_108 gabor_153 gabor_084 gabor_036 gabor_108 gabor_153_alt gabor_084_alt gabor_036 "1_54_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_108_153_084_036_target_position_1_4_retrieval_position_1" gabor_063_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_54_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_067 gabor_038 gabor_094 gabor_123 gabor_067 gabor_038_alt gabor_094_alt gabor_123 "1_55_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_067_038_094_123_target_position_1_4_retrieval_position_1" gabor_017_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_55_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_086 gabor_049 gabor_011 gabor_156 gabor_086 gabor_049 gabor_011_alt gabor_156_alt "1_56_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_086_049_011_156_target_position_1_2_retrieval_position_1" gabor_132_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_56_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_043 gabor_062 gabor_174 gabor_084 gabor_043_alt gabor_062 gabor_174_alt gabor_084 "1_57_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_043_062_174_084_target_position_2_4_retrieval_position_2" gabor_circ gabor_110_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_57_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1992 2992 2542 fixation_cross gabor_175 gabor_128 gabor_053 gabor_143 gabor_175 gabor_128_alt gabor_053 gabor_143_alt "1_58_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2550_gabor_patch_orientation_175_128_053_143_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_143_framed blank blank blank blank fixation_cross_target_position_1_3 "1_58_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_143_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1742 2992 2492 fixation_cross gabor_105 gabor_050 gabor_125 gabor_167 gabor_105 gabor_050_alt gabor_125 gabor_167_alt "1_59_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_105_050_125_167_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_125_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_59_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1842 2992 1892 fixation_cross gabor_074 gabor_003 gabor_043 gabor_116 gabor_074 gabor_003_alt gabor_043 gabor_116_alt "1_60_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_074_003_043_116_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_043_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_60_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2192 2992 1992 fixation_cross gabor_042 gabor_016 gabor_176 gabor_159 gabor_042_alt gabor_016 gabor_176 gabor_159_alt "1_61_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_042_016_176_159_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_129_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_61_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1792 2992 2342 fixation_cross gabor_120 gabor_172 gabor_006 gabor_085 gabor_120 gabor_172 gabor_006_alt gabor_085_alt "1_62_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2350_gabor_patch_orientation_120_172_006_085_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_006_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_62_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_006_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1842 2992 2392 fixation_cross gabor_110 gabor_054 gabor_138 gabor_169 gabor_110_alt gabor_054 gabor_138_alt gabor_169 "1_63_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_110_054_138_169_target_position_2_4_retrieval_position_2" gabor_circ gabor_004_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_63_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_149 gabor_073 gabor_006 gabor_132 gabor_149_alt gabor_073 gabor_006_alt gabor_132 "1_64_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_149_073_006_132_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_180_framed blank blank blank blank fixation_cross_target_position_2_4 "1_64_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2242 2992 2042 fixation_cross gabor_065 gabor_097 gabor_146 gabor_009 gabor_065 gabor_097_alt gabor_146_alt gabor_009 "1_65_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2050_gabor_patch_orientation_065_097_146_009_target_position_1_4_retrieval_position_1" gabor_065_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_65_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 64 292 292 399 125 1792 2992 1992 fixation_cross gabor_146 gabor_129 gabor_010 gabor_172 gabor_146 gabor_129_alt gabor_010_alt gabor_172 "1_66_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2000_gabor_patch_orientation_146_129_010_172_target_position_1_4_retrieval_position_2" gabor_circ gabor_129_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_66_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_129_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 1742 2992 2592 fixation_cross gabor_072 gabor_087 gabor_107 gabor_038 gabor_072 gabor_087_alt gabor_107_alt gabor_038 "1_67_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2600_gabor_patch_orientation_072_087_107_038_target_position_1_4_retrieval_position_1" gabor_072_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_67_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_141 gabor_088 gabor_118 gabor_055 gabor_141 gabor_088_alt gabor_118_alt gabor_055 "1_68_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_141_088_118_055_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_005_framed blank blank blank blank fixation_cross_target_position_1_4 "1_68_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 63 292 292 399 125 1742 2992 2042 fixation_cross gabor_149 gabor_088 gabor_127 gabor_041 gabor_149 gabor_088 gabor_127_alt gabor_041_alt "1_69_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2050_gabor_patch_orientation_149_088_127_041_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_177_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_69_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_177_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
43 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_029 gabor_137 gabor_114 gabor_087 gabor_029 gabor_137_alt gabor_114 gabor_087_alt "1_70_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_029_137_114_087_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_114_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_70_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_114_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.