blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8e9b5a67f9a098b101a71e3f401fdb68bb4db710 | 37f0a77c880cb08065ebcd5003e209eb87c3baca | /kolos.sce | 4a07282faf953a54bb4fe94a823dfe29ae90a954 | [] | no_license | hlvlad/putexs | 6e6de98f8969af2aa8bffcca45f9720c66f8c817 | 218dc6e2e35e93b5a71b5bebde7dd930e3a6ac66 | refs/heads/master | 2021-08-30T18:14:28.506655 | 2017-12-19T00:03:25 | 2017-12-19T00:03:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,512 | sce | kolos.sce | //Odpowiedzi na zadania z kolosa Scilab
//Zadanie2 \uwaga - wektor kolumnowy(')
A = [1:10]'.^2
//Zadanie3
B = [1:10;3:12]
//Zadanie4 \mnożymy przez macierz jednostkową
C = testmatrix('magi',5).*eye(5,5)
//Zadanie5 \przykladowe
D = 10:-1:1
E = D(:,[1 2 3 4 8])
//Zadanie6
F = [1 2 3;4 5 6]
F(3,:) = zeros()
//Zadanie7
G = 1:10
sum(G(find(modulo(G,2) == 0)))
//find(modulo(G,2) == 0) - zwraca indeksy tych elementow G, które spełniają
//warunek w nawiasach
//Zadanie8 Tu było tak, że podane są dwa obrazki wykresów, musicie napisać kod, który bym stworzył takie same wykresy
x = -%pi:%pi/50:%pi
subplot(211) //znaczy: pierwsze 2 cyfry - to jest "macierz wykresów", 3 cyfra - w którym okienku rysować kolejny wykres.
//czyli "Narysuj (2) wierszy (1) kołumnę okienek dla wykresów, rysuj następny w (1) (pierwszym) okienku.
plot(x, sin(x), "r--") //czerwona przerywana linia
//r Red
//g Green
//b Blue
//y Yellow
//k Black -to zapamiętać
//w White
/"-" ciągła; "--" -przerywana; ":" -kropkowana;
legend("y = sin(x)")
subplot(212) //rysuj w (2) drugim okienku
plot(x, cos(x), "g")
legend("y = cos(x)")
//Zadanie9 ';' - nie wyświetlaj operacji przypisania
x = 10; y = 5; z = x + y
//Zadanie10
A = [1 2 3; 4 5 6]
B = [3 2]'
//Dla A*X = B - podziel lewostronnie B prez A
X = A \ B
//Dla X*A = B - podziek prawostronnie B prez A
//X = B / A
//Zadanie11
H = [1 2; 3 4]
m = 2
n = 1
disp(H(m,n))
//Zadanie12 x^3-4*x= 0 <=> 1*x^3 + 0*x^2 + -4*x + 0 = 0
roots([1 0 -4 0])
|
e23ff5afccbf144516bd2fca37381eadbba9ef5a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1541/CH1/EX1.18/Chapter1_Example18.sce | 8bdf8e154cd8e9dcc3e0084604f628986a2d97e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 807 | sce | Chapter1_Example18.sce | //Chapter-1, Example 1.18, Page 1.43
//=============================================================================
clc
clear
//INPUT DATA
N=(1800/60);//Speed of the motor in rps
V=200;//Terminal voltage in V
Nl=(900/60);//Lathe speed in rps
F=300;//Force exerted in N
r=0.2;//Radius of the shaft in m
n=0.9;//Efficiency of the motor
Dp=0.3;//Diamter of the Lathe pulley in m
//CALCULATIONS
Tsh=(F*r);//Shaft torque in N.m
Psh=(Tsh*2*3.14*Nl);//Shaft power in W
Pi=(Psh/n);//Input power in W
I=(Pi/V);//Current taken by the motor in A
Dm=((Nl*Dp)/N)*100;//Diameter of the motor pulley in cm
//OUTPUT
mprintf('Current taken by the motor is %3.1f A \nDiameter of the motor pulley is %3.0f cm',I,Dm)
//=================================END OF PROGRAM==============================
|
b9f8c5331a761eaaab93cbde1577eaf252fd0b17 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfas_ap_vrt_col/~BivLCM-SR-bfas_ap_vrt_col-PLin-VLin.tst | f4de68b7c7aab527d182afd67886c332a590f93d | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,974 | tst | ~BivLCM-SR-bfas_ap_vrt_col-PLin-VLin.tst |
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.262144D+00
2 -0.359526D-02 0.199907D-02
3 0.104005D+00 -0.189235D-02 0.337347D+00
4 -0.195789D-02 0.849295D-03 -0.313139D-02 0.276119D-02
5 -0.915431D-04 -0.438625D-04 0.130727D-02 -0.151150D-04 0.246644D-02
6 0.123125D-02 0.740214D-04 -0.480436D-03 -0.556875D-04 -0.120679D-03
7 0.145335D-02 0.122853D-03 -0.186038D-02 0.799507D-04 0.373619D-03
8 0.753160D-03 -0.287143D-04 0.596881D-03 -0.310529D-05 0.324505D-03
9 -0.232455D+00 0.490005D-03 0.941626D-01 0.223040D-01 0.380150D-01
10 -0.217671D+00 -0.657843D-02 0.116086D+00 -0.683271D-02 0.114569D+00
11 -0.355698D+00 0.140175D-01 0.401005D-01 0.135178D-01 0.253358D-03
12 -0.642711D+00 0.169333D-01 -0.126325D+01 0.556044D-01 -0.238512D-01
13 0.802282D-01 0.386326D-02 -0.662118D-01 -0.491421D-02 0.960675D-04
14 -0.496861D-01 -0.411329D-02 -0.326792D+00 0.880839D-02 0.324545D-01
15 -0.148341D+01 0.841557D-02 -0.291677D+00 0.156096D-01 -0.104223D+00
16 -0.207093D-01 -0.783314D-02 -0.211675D-02 -0.207312D-02 0.557354D-04
17 -0.895896D-03 -0.331172D-03 -0.250640D-02 -0.245769D-03 -0.181153D-03
18 -0.356763D+00 -0.215176D-01 -0.829817D+00 -0.212596D-01 -0.368667D-01
19 -0.133429D+00 0.383534D-03 -0.221509D-01 0.320092D-02 -0.698925D-02
20 -0.694808D+00 -0.111328D-01 -0.340467D+01 -0.219339D-01 -0.187338D-01
21 0.110642D+00 -0.380416D-02 0.684149D-03 -0.543096D-02 0.516203D-02
22 0.530448D-03 -0.988613D-04 0.331848D-02 0.448584D-04 0.805726D-04
23 -0.117962D-01 -0.121358D-02 -0.153349D-01 -0.131532D-01 -0.526226D-03
24 0.290216D-02 -0.538824D-04 0.394785D-02 -0.436345D-03 -0.981440D-04
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.810592D-03
7 0.752413D-03 0.313162D-02
8 -0.719703D-04 0.228535D-03 0.273417D-02
9 -0.995552D-02 -0.125407D-03 0.274227D-02 0.351765D+02
10 -0.971728D-02 0.418224D-02 0.654993D-03 0.105681D+01 0.135167D+02
11 -0.117160D-02 -0.869317D-03 -0.267792D-01 0.818761D+01 0.363331D+00
12 -0.339425D-01 -0.411827D-01 -0.493181D-01 0.211172D+01 0.164756D+01
13 0.485236D-01 0.101047D+00 0.191245D-01 -0.107068D+01 0.354279D+00
14 -0.499225D-02 0.903123D-02 0.262013D+00 0.550423D+00 0.107491D+01
15 -0.535050D-02 -0.553377D-02 0.111130D-01 -0.406614D+01 -0.834538D+01
16 -0.128261D-02 -0.164389D-02 -0.416071D-03 0.461227D+00 0.558652D-01
17 0.727651D-06 -0.331136D-03 -0.364992D-03 -0.592045D-01 0.445812D-02
18 -0.471677D-01 -0.101773D+00 -0.863068D-02 -0.613800D+00 -0.140865D+01
19 -0.750086D-02 0.468283D-02 -0.563419D-02 -0.338433D+00 -0.458946D+00
20 -0.969605D-02 -0.698608D-01 -0.160654D+00 -0.611577D+00 0.162920D+01
21 0.532416D-02 -0.667245D-02 0.729768D-02 0.197117D+00 0.498137D+00
22 0.842240D-04 0.600198D-04 -0.341601D-04 -0.186314D-01 -0.451470D-02
23 -0.247161D-04 -0.158919D-02 0.154544D-02 -0.273525D+00 0.133239D+00
24 0.245780D-03 0.776112D-03 -0.215105D-03 -0.727007D-02 -0.894870D-02
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.269342D+02
12 0.933070D+01 0.847860D+02
13 -0.267930D+01 -0.508339D+01 0.108607D+02
14 -0.230657D+01 -0.401284D+01 0.228617D+01 0.574015D+02
15 0.114632D+00 0.568475D+01 -0.900374D+00 -0.106965D+01 0.167510D+03
16 0.275082D+00 0.114855D+00 -0.116685D+00 -0.323139D-01 0.408664D+00
17 -0.388219D-02 0.107036D-01 0.413338D-02 -0.855537D-02 -0.742375D+00
18 0.297264D+00 0.633699D+01 -0.469236D+01 -0.346990D+01 0.548648D+02
19 0.555373D+00 0.975296D+00 -0.341696D+00 -0.197551D+00 0.267604D+01
20 0.331008D+01 -0.102851D+01 -0.244336D+01 -0.216859D+02 0.230075D+02
21 -0.542218D+00 -0.957564D+00 0.254242D+00 0.744921D-01 -0.280342D+01
22 -0.317580D-01 -0.334822D-01 -0.186446D-02 0.167814D-01 -0.234116D+00
23 -0.330318D-01 -0.553257D+00 -0.189274D-01 0.312631D+00 -0.354818D-01
24 -0.286627D-01 -0.896861D-01 0.288059D-01 -0.698717D-01 -0.110498D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.314673D+00
17 -0.137318D-01 0.964260D-02
18 0.132137D+00 -0.173138D+00 0.141999D+03
19 0.252647D+00 -0.243320D-01 -0.333689D+00 0.372865D+01
20 -0.275435D+00 -0.299236D-01 0.108122D+03 -0.361465D+01 0.414724D+03
21 0.179672D-01 0.759499D-02 0.146126D+01 -0.328984D+01 0.478330D+01
22 -0.101029D-01 0.326853D-02 -0.637680D+00 -0.131728D-01 -0.424596D+00
23 0.475075D-01 -0.615785D-02 0.814815D+00 0.340245D-02 0.345985D+01
24 -0.502348D-02 0.116721D-02 -0.453050D+00 0.223910D-01 -0.203865D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.375024D+01
22 -0.219333D-01 0.708818D-02
23 0.196253D+00 -0.963063D-02 0.548011D+00
24 -0.409807D-01 0.295112D-02 -0.346996D-01 0.215508D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.157 1.000
3 0.350 -0.073 1.000
4 -0.073 0.361 -0.103 1.000
5 -0.004 -0.020 0.045 -0.006 1.000
6 0.084 0.058 -0.029 -0.037 -0.085
7 0.051 0.049 -0.057 0.027 0.134
8 0.028 -0.012 0.020 -0.001 0.125
9 -0.077 0.002 0.027 0.072 0.129
10 -0.116 -0.040 0.054 -0.035 0.627
11 -0.134 0.060 0.013 0.050 0.001
12 -0.136 0.041 -0.236 0.115 -0.052
13 0.048 0.026 -0.035 -0.028 0.001
14 -0.013 -0.012 -0.074 0.022 0.086
15 -0.224 0.015 -0.039 0.023 -0.162
16 -0.072 -0.312 -0.006 -0.070 0.002
17 -0.018 -0.075 -0.044 -0.048 -0.037
18 -0.058 -0.040 -0.120 -0.034 -0.062
19 -0.135 0.004 -0.020 0.032 -0.073
20 -0.067 -0.012 -0.288 -0.020 -0.019
21 0.112 -0.044 0.001 -0.053 0.054
22 0.012 -0.026 0.068 0.010 0.019
23 -0.031 -0.037 -0.036 -0.338 -0.014
24 0.039 -0.008 0.046 -0.057 -0.013
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.472 1.000
8 -0.048 0.078 1.000
9 -0.059 0.000 0.009 1.000
10 -0.093 0.020 0.003 0.048 1.000
11 -0.008 -0.003 -0.099 0.266 0.019
12 -0.129 -0.080 -0.102 0.039 0.049
13 0.517 0.548 0.111 -0.055 0.029
14 -0.023 0.021 0.661 0.012 0.039
15 -0.015 -0.008 0.016 -0.053 -0.175
16 -0.080 -0.052 -0.014 0.139 0.027
17 0.000 -0.060 -0.071 -0.102 0.012
18 -0.139 -0.153 -0.014 -0.009 -0.032
19 -0.136 0.043 -0.056 -0.030 -0.065
20 -0.017 -0.061 -0.151 -0.005 0.022
21 0.097 -0.062 0.072 0.017 0.070
22 0.035 0.013 -0.008 -0.037 -0.015
23 -0.001 -0.038 0.040 -0.062 0.049
24 0.059 0.094 -0.028 -0.008 -0.017
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 0.195 1.000
13 -0.157 -0.168 1.000
14 -0.059 -0.058 0.092 1.000
15 0.002 0.048 -0.021 -0.011 1.000
16 0.094 0.022 -0.063 -0.008 0.056
17 -0.008 0.012 0.013 -0.011 -0.584
18 0.005 0.058 -0.119 -0.038 0.356
19 0.055 0.055 -0.054 -0.014 0.107
20 0.031 -0.005 -0.036 -0.141 0.087
21 -0.054 -0.054 0.040 0.005 -0.112
22 -0.073 -0.043 -0.007 0.026 -0.215
23 -0.009 -0.081 -0.008 0.056 -0.004
24 -0.038 -0.066 0.060 -0.063 -0.058
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.249 1.000
18 0.020 -0.148 1.000
19 0.233 -0.128 -0.015 1.000
20 -0.024 -0.015 0.446 -0.092 1.000
21 0.017 0.040 0.063 -0.880 0.121
22 -0.214 0.395 -0.636 -0.081 -0.248
23 0.114 -0.085 0.092 0.002 0.230
24 -0.061 0.081 -0.259 0.079 -0.682
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.135 1.000
23 0.137 -0.155 1.000
24 -0.144 0.239 -0.319 1.000
|
96c010ce5137eba273e74725004e570663525116 | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH12/EX12.5/exa12_5.sce | 0a6904c29b933e6e7eb04c1ba49bd46470e069fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 469 | sce | exa12_5.sce | //Caption:transfer_function
// example 12.5
//page 518
// we are solving this problem from signal flow graph approach
syms G1 G2 G3 G4 G5 H1 H2
// forward path denoted by P1,P2 and so on and loop by L1,L2 and so on
//path factor by D1,D2 and so on and graph determinant by D
P1=G1*G4*G5;
P2=G1*G2*G3*G5;
L1=-G3*G5;
L2=-G3*G5*H2;
L3=-G1*G4*G5*H1;
L4=-G1*G2*G3*G5*H1;
D1=1;
D2=1;
D=1-(L1+L2+L3+L4);
Y=(P1*D1+P2*D2)/D;
Y=simple(Y);
disp(Y,"C(s)/R(s)="); |
f94c89a2baddcd5a72a4982bf2ad22a96a3e3184 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/RA72WYU/ATWM1_Working_Memory_MEG_RA72WYU_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce | 98a646e8db359ad0153f15cfd10ece27e2fbe964 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,687 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_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 = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; 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 = 290; width = 290; color = 128, 128, 128;} 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;
44 62 292 292 399 125 1892 2992 1992 fixation_cross gabor_090 gabor_051 gabor_121 gabor_173 gabor_090 gabor_051_alt gabor_121_alt gabor_173 "1_1_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_090_051_121_173_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_173_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_165 gabor_045 gabor_125 gabor_108 gabor_165 gabor_045 gabor_125_alt gabor_108_alt "1_2_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_165_045_125_108_target_position_1_2_retrieval_position_2" gabor_circ gabor_045_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_088 gabor_160 gabor_002 gabor_114 gabor_088_alt gabor_160 gabor_002 gabor_114_alt "1_3_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_088_160_002_114_target_position_2_3_retrieval_position_2" gabor_circ gabor_160_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2092 2992 2342 fixation_cross gabor_070 gabor_179 gabor_140 gabor_098 gabor_070_alt gabor_179_alt gabor_140 gabor_098 "1_4_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_070_179_140_098_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_098_framed blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2142 2992 2292 fixation_cross gabor_028 gabor_147 gabor_010 gabor_168 gabor_028 gabor_147_alt gabor_010_alt gabor_168 "1_5_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_028_147_010_168_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_118_framed blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_071 gabor_013 gabor_031 gabor_136 gabor_071_alt gabor_013_alt gabor_031 gabor_136 "1_6_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_071_013_031_136_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_087_framed blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2192 2992 1992 fixation_cross gabor_140 gabor_052 gabor_158 gabor_110 gabor_140 gabor_052_alt gabor_158 gabor_110_alt "1_7_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_140_052_158_110_target_position_1_3_retrieval_position_1" gabor_140_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 2242 2992 2492 fixation_cross gabor_111 gabor_092 gabor_034 gabor_059 gabor_111_alt gabor_092_alt gabor_034 gabor_059 "1_8_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_2250_3000_2500_gabor_patch_orientation_111_092_034_059_target_position_3_4_retrieval_position_2" gabor_circ gabor_092_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_092_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_083 gabor_166 gabor_026 gabor_056 gabor_083_alt gabor_166_alt gabor_026 gabor_056 "1_9_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_083_166_026_056_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_056_framed blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_146 gabor_162 gabor_033 gabor_076 gabor_146 gabor_162 gabor_033_alt gabor_076_alt "1_10_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_146_162_033_076_target_position_1_2_retrieval_position_1" gabor_096_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_105 gabor_017 gabor_129 gabor_044 gabor_105 gabor_017_alt gabor_129_alt gabor_044 "1_11_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_105_017_129_044_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_179_framed blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1942 2992 2342 fixation_cross gabor_128 gabor_161 gabor_019 gabor_055 gabor_128_alt gabor_161 gabor_019_alt gabor_055 "1_12_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_128_161_019_055_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_103_framed blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1842 2992 2192 fixation_cross gabor_113 gabor_171 gabor_048 gabor_064 gabor_113 gabor_171_alt gabor_048_alt gabor_064 "1_13_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_1850_3000_2200_gabor_patch_orientation_113_171_048_064_target_position_1_4_retrieval_position_2" gabor_circ gabor_171_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_171_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 2492 fixation_cross gabor_065 gabor_150 gabor_114 gabor_178 gabor_065_alt gabor_150 gabor_114_alt gabor_178 "1_14_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_065_150_114_178_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_178_framed blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_032 gabor_047 gabor_166 gabor_122 gabor_032 gabor_047_alt gabor_166_alt gabor_122 "1_15_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_032_047_166_122_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_122_framed blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2092 2992 2092 fixation_cross gabor_142 gabor_111 gabor_167 gabor_055 gabor_142_alt gabor_111_alt gabor_167 gabor_055 "1_16_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_142_111_167_055_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_027_framed gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_067 gabor_136 gabor_084 gabor_102 gabor_067 gabor_136 gabor_084_alt gabor_102_alt "1_17_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_067_136_084_102_target_position_1_2_retrieval_position_1" gabor_022_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1842 2992 1992 fixation_cross gabor_035 gabor_161 gabor_072 gabor_005 gabor_035 gabor_161 gabor_072_alt gabor_005_alt "1_18_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_1850_3000_2000_gabor_patch_orientation_035_161_072_005_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_051_framed blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_051_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_127 gabor_016 gabor_088 gabor_148 gabor_127 gabor_016_alt gabor_088 gabor_148_alt "1_19_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_127_016_088_148_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_040_framed gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2092 2992 2042 fixation_cross gabor_110 gabor_049 gabor_020 gabor_134 gabor_110_alt gabor_049 gabor_020 gabor_134_alt "1_20_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_110_049_020_134_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_020_framed gabor_circ blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1842 2992 2492 fixation_cross gabor_173 gabor_090 gabor_019 gabor_042 gabor_173_alt gabor_090 gabor_019 gabor_042_alt "1_21_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_1850_3000_2500_gabor_patch_orientation_173_090_019_042_target_position_2_3_retrieval_position_1" gabor_128_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_128_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2092 2992 2042 fixation_cross gabor_121 gabor_034 gabor_103 gabor_015 gabor_121 gabor_034_alt gabor_103_alt gabor_015 "1_22_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_121_034_103_015_target_position_1_4_retrieval_position_1" gabor_072_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_100 gabor_042 gabor_074 gabor_016 gabor_100_alt gabor_042 gabor_074_alt gabor_016 "1_23_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_100_042_074_016_target_position_2_4_retrieval_position_2" gabor_circ gabor_180_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_009 gabor_150 gabor_037 gabor_127 gabor_009_alt gabor_150 gabor_037_alt gabor_127 "1_24_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_009_150_037_127_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_082_framed blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1942 2992 2292 fixation_cross gabor_044 gabor_087 gabor_176 gabor_102 gabor_044 gabor_087_alt gabor_176 gabor_102_alt "1_25_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_044_087_176_102_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_176_framed gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_051 gabor_073 gabor_137 gabor_098 gabor_051_alt gabor_073 gabor_137 gabor_098_alt "1_26_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_051_073_137_098_target_position_2_3_retrieval_position_2" gabor_circ gabor_073_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1842 2992 2442 fixation_cross gabor_129 gabor_063 gabor_087 gabor_111 gabor_129_alt gabor_063 gabor_087_alt gabor_111 "1_27_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_1850_3000_2450_gabor_patch_orientation_129_063_087_111_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_042_framed gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_042_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_157 gabor_067 gabor_126 gabor_097 gabor_157 gabor_067 gabor_126_alt gabor_097_alt "1_28_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_157_067_126_097_target_position_1_2_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1942 2992 2392 fixation_cross gabor_115 gabor_178 gabor_134 gabor_151 gabor_115 gabor_178_alt gabor_134 gabor_151_alt "1_29_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_115_178_134_151_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_089_framed gabor_circ blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2392 fixation_cross gabor_135 gabor_013 gabor_178 gabor_056 gabor_135_alt gabor_013_alt gabor_178 gabor_056 "1_30_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_135_013_178_056_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_101_framed blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_101_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2242 2992 2142 fixation_cross gabor_132 gabor_089 gabor_010 gabor_067 gabor_132 gabor_089_alt gabor_010 gabor_067_alt "1_31_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_132_089_010_067_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_010_framed gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 2192 2992 2142 fixation_cross gabor_067 gabor_091 gabor_048 gabor_007 gabor_067_alt gabor_091 gabor_048_alt gabor_007 "1_32_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_2200_3000_2150_gabor_patch_orientation_067_091_048_007_target_position_2_4_retrieval_position_1" gabor_067_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_067_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 2342 fixation_cross gabor_094 gabor_158 gabor_031 gabor_053 gabor_094 gabor_158 gabor_031_alt gabor_053_alt "1_33_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_094_158_031_053_target_position_1_2_retrieval_position_2" gabor_circ gabor_112_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_053 gabor_032 gabor_117 gabor_097 gabor_053 gabor_032_alt gabor_117 gabor_097_alt "1_34_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_053_032_117_097_target_position_1_3_retrieval_position_1" gabor_008_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1842 2992 2492 fixation_cross gabor_128 gabor_019 gabor_047 gabor_089 gabor_128_alt gabor_019_alt gabor_047 gabor_089 "1_35_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_128_019_047_089_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 2142 2992 2442 fixation_cross gabor_104 gabor_155 gabor_049 gabor_078 gabor_104_alt gabor_155_alt gabor_049 gabor_078 "1_36_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_2150_3000_2450_gabor_patch_orientation_104_155_049_078_target_position_3_4_retrieval_position_2" gabor_circ gabor_155_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_155_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 2292 fixation_cross gabor_118 gabor_153 gabor_043 gabor_072 gabor_118_alt gabor_153 gabor_043 gabor_072_alt "1_37_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_118_153_043_072_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_043_framed gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_060 gabor_175 gabor_014 gabor_090 gabor_060 gabor_175_alt gabor_014_alt gabor_090 "1_38_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_060_175_014_090_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_042_framed blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 2142 2992 2292 fixation_cross gabor_127 gabor_147 gabor_015 gabor_085 gabor_127 gabor_147 gabor_015_alt gabor_085_alt "1_39_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_2150_3000_2300_gabor_patch_orientation_127_147_015_085_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_037_framed blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_037_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_092 gabor_049 gabor_023 gabor_161 gabor_092_alt gabor_049 gabor_023_alt gabor_161 "1_40_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_092_049_023_161_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_112_framed blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_092 gabor_166 gabor_129 gabor_150 gabor_092_alt gabor_166_alt gabor_129 gabor_150 "1_41_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_092_166_129_150_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_014_framed blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2442 fixation_cross gabor_032 gabor_017 gabor_138 gabor_099 gabor_032_alt gabor_017 gabor_138 gabor_099_alt "1_42_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_032_017_138_099_target_position_2_3_retrieval_position_2" gabor_circ gabor_155_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1892 2992 2242 fixation_cross gabor_079 gabor_035 gabor_158 gabor_006 gabor_079 gabor_035_alt gabor_158 gabor_006_alt "1_43_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_079_035_158_006_target_position_1_3_retrieval_position_1" gabor_079_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1792 2992 2392 fixation_cross gabor_121 gabor_097 gabor_014 gabor_166 gabor_121 gabor_097 gabor_014_alt gabor_166_alt "1_44_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1800_3000_2400_gabor_patch_orientation_121_097_014_166_target_position_1_2_retrieval_position_2" gabor_circ gabor_097_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1942 2992 2042 fixation_cross gabor_069 gabor_087 gabor_156 gabor_001 gabor_069_alt gabor_087 gabor_156 gabor_001_alt "1_45_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_1950_3000_2050_gabor_patch_orientation_069_087_156_001_target_position_2_3_retrieval_position_1" gabor_022_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_022_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1842 2992 1992 fixation_cross gabor_049 gabor_087 gabor_029 gabor_112 gabor_049_alt gabor_087 gabor_029_alt gabor_112 "1_46_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_049_087_029_112_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_112_framed blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1792 2992 2192 fixation_cross gabor_078 gabor_060 gabor_045 gabor_106 gabor_078 gabor_060 gabor_045_alt gabor_106_alt "1_47_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_078_060_045_106_target_position_1_2_retrieval_position_1" gabor_123_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1992 2992 2092 fixation_cross gabor_098 gabor_173 gabor_146 gabor_062 gabor_098_alt gabor_173_alt gabor_146 gabor_062 "1_48_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_098_173_146_062_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_016_framed blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 2192 2992 2342 fixation_cross gabor_085 gabor_033 gabor_120 gabor_154 gabor_085 gabor_033 gabor_120_alt gabor_154_alt "1_49_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_2200_3000_2350_gabor_patch_orientation_085_033_120_154_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_120_framed gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_120_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1842 2992 2292 fixation_cross gabor_168 gabor_153 gabor_100 gabor_029 gabor_168 gabor_153 gabor_100_alt gabor_029_alt "1_50_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_168_153_100_029_target_position_1_2_retrieval_position_1" gabor_168_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1742 2992 2242 fixation_cross gabor_019 gabor_173 gabor_146 gabor_089 gabor_019_alt gabor_173 gabor_146 gabor_089_alt "1_51_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_019_173_146_089_target_position_2_3_retrieval_position_2" gabor_circ gabor_126_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_098 gabor_146 gabor_161 gabor_036 gabor_098_alt gabor_146 gabor_161_alt gabor_036 "1_52_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_098_146_161_036_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_036_framed blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1992 2992 2492 fixation_cross gabor_030 gabor_120 gabor_163 gabor_010 gabor_030_alt gabor_120 gabor_163_alt gabor_010 "1_53_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2000_3000_2500_gabor_patch_orientation_030_120_163_010_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_010_framed blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_056 gabor_121 gabor_013 gabor_077 gabor_056 gabor_121 gabor_013_alt gabor_077_alt "1_54_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_056_121_013_077_target_position_1_2_retrieval_position_1" gabor_103_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_043 gabor_131 gabor_154 gabor_008 gabor_043 gabor_131_alt gabor_154 gabor_008_alt "1_55_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_043_131_154_008_target_position_1_3_retrieval_position_1" gabor_043_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 2142 2992 2042 fixation_cross gabor_049 gabor_137 gabor_029 gabor_064 gabor_049 gabor_137_alt gabor_029 gabor_064_alt "1_56_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_2150_3000_2050_gabor_patch_orientation_049_137_029_064_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_114_framed blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_114_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_134 gabor_022 gabor_059 gabor_074 gabor_134 gabor_022_alt gabor_059_alt gabor_074 "1_57_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_134_022_059_074_target_position_1_4_retrieval_position_1" gabor_134_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2192 2992 2242 fixation_cross gabor_179 gabor_099 gabor_144 gabor_014 gabor_179_alt gabor_099_alt gabor_144 gabor_014 "1_58_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_179_099_144_014_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_063_framed blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 2242 2992 2442 fixation_cross gabor_156 gabor_123 gabor_016 gabor_051 gabor_156_alt gabor_123_alt gabor_016 gabor_051 "1_59_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_2250_3000_2450_gabor_patch_orientation_156_123_016_051_target_position_3_4_retrieval_position_2" gabor_circ gabor_123_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_123_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_172 gabor_131 gabor_114 gabor_025 gabor_172_alt gabor_131 gabor_114_alt gabor_025 "1_60_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_172_131_114_025_target_position_2_4_retrieval_position_2" gabor_circ gabor_082_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_021 gabor_099 gabor_132 gabor_156 gabor_021 gabor_099 gabor_132_alt gabor_156_alt "1_61_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_021_099_132_156_target_position_1_2_retrieval_position_2" gabor_circ gabor_050_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2042 2992 2392 fixation_cross gabor_092 gabor_148 gabor_007 gabor_131 gabor_092 gabor_148_alt gabor_007 gabor_131_alt "1_62_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_092_148_007_131_target_position_1_3_retrieval_position_1" gabor_092_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1942 2992 2142 fixation_cross gabor_170 gabor_148 gabor_103 gabor_132 gabor_170 gabor_148_alt gabor_103 gabor_132_alt "1_63_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_170_148_103_132_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_103_framed gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_007 gabor_167 gabor_134 gabor_048 gabor_007 gabor_167 gabor_134_alt gabor_048_alt "1_64_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_007_167_134_048_target_position_1_2_retrieval_position_2" gabor_circ gabor_028_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 2242 2992 2392 fixation_cross gabor_036 gabor_152 gabor_170 gabor_065 gabor_036_alt gabor_152 gabor_170 gabor_065_alt "1_65_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_300_300_399_2250_3000_2400_gabor_patch_orientation_036_152_170_065_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_065_framed blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_UncuedRetriev_retrieval_patch_orientation_065_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2192 2992 2192 fixation_cross gabor_120 gabor_001 gabor_084 gabor_058 gabor_120 gabor_001 gabor_084_alt gabor_058_alt "1_66_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_120_001_084_058_target_position_1_2_retrieval_position_2" gabor_circ gabor_138_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_095 gabor_127 gabor_155 gabor_050 gabor_095 gabor_127_alt gabor_155_alt gabor_050 "1_67_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_095_127_155_050_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_050_framed blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_078 gabor_044 gabor_130 gabor_060 gabor_078_alt gabor_044 gabor_130_alt gabor_060 "1_68_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_078_044_130_060_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_060_framed blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2142 2992 2142 fixation_cross gabor_153 gabor_129 gabor_080 gabor_040 gabor_153 gabor_129_alt gabor_080_alt gabor_040 "1_69_Encoding_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_153_129_080_040_target_position_1_4_retrieval_position_1" gabor_153_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1742 2992 2442 fixation_cross gabor_093 gabor_175 gabor_005 gabor_070 gabor_093 gabor_175_alt gabor_005 gabor_070_alt "1_70_Encoding_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_300_300_399_1750_3000_2450_gabor_patch_orientation_093_175_005_070_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_021_framed blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_Nonsalient_Uncued_DoChange_UncuedRetriev_retrieval_patch_orientation_021_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# 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;
}; |
d1bc542ca3a3a2fc98c4a3f85a266a3dba13b646 | 759fde9a4e4630494c19352ad74772a2af730889 | /cs3214-esh-master/cs3214-esh-master/src/plugin.tst | 32ffa038297d63e0e1f2aec6924a5016a582ac46 | [] | no_license | pohopoho/CS3214 | 4c106fc6b643abdc05876239f33d5b0ac1b525ae | 24b1251ad8ee05d1c9e1a93893a358809f993f20 | refs/heads/main | 2023-04-23T01:39:23.550806 | 2021-05-12T23:50:53 | 2021-05-12T23:50:53 | 366,880,490 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 23 | tst | plugin.tst | = Plugins Tests
1 tst2
|
0f75e2f4c78aa4660e551a3bc65e383afb83459d | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/DEPENDENCIES/3_2_data.sci | 61182cf8a3a5fc5d72cb4e69730a927ac9e30102 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 134 | sci | 3_2_data.sci | //Initial Temperature (in kelvin)
t1=323;
//Temperature at end of compression(in kelvin)
t2=646;
//Ratio Of Specific Heats
y=1.4; |
5e1977d655f6842cca11855ab24249ecaeefc8ae | 3cbee2296fd6b54f80587eead83813d4c878e06a | /sci2blif/rasp_design_added_blocks/dc_in.sce | 32ec220690d92ca8f3d0e3ea81e3d4f83526b2c2 | [] | no_license | nikhil-soraba/rasp30 | 872afa4ad0820b8ca3ea4f232c4168193acbd854 | 936c6438de595f9ac30d5619a887419c5bae2b0f | refs/heads/master | 2021-01-12T15:19:09.899590 | 2016-10-31T03:23:48 | 2016-10-31T03:23:48 | 71,756,442 | 0 | 0 | null | 2016-10-24T05:58:57 | 2016-10-24T05:58:56 | null | UTF-8 | Scilab | false | false | 96 | sce | dc_in.sce | style.fontSize=16;
style.displayedLabel="DC_in";
pal6 = xcosPalAddBlock(pal6,"dc_in",[],style);
|
8005da2f79c406dc07900edb36e64746b484f6e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH7/EX7.36/36.sci | 7d1b7177d066ecbbdabee578d7ab11368d1e1cd8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 334 | sci | 36.sci | clc;
clear all;
disp("heat transfer from plate")
ta=20;//degree C
U=40;//m/s
ts=60;// degree C
L=1;//m
B=1;//m
Pr=0.699;
k=0.0275;//W/m.C
v=16.96*10^(-6);// m^2/s
rho=1.128;//kg/m^3
cp=1005;//J/kg.K
ReL=U*L/v;;
Nu=(0.037*(ReL^0.8)-850)*Pr^(1/3)
h=Nu*k/L;
Q=h*L*B*(ts-ta);//W
disp("W",Q,"Heat loss from plate is Q=")
|
beb2632bcbcdf6a796b403e8b2ccce82901786c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2513/CH12/EX12.1/12_1.sce | f7b3afc6bd7941b9c154d1c30b1f9eb9e7543037 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 149 | sce | 12_1.sce | clc
//initialisation of variables
c=100//in
a=10//in
Q=0.976//ft
//CALCULATIONS
G=a*Q//ft
//RESULTS
printf('the graphical basic =% f ft',G)
|
4788e7adc55eb259dfdbbf8f816dfd2758b36fe6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH1/EX1.17/1_17.sce | e9ab0deb5a95dadc1eaf0e07feeaec685247f195 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 141 | sce | 1_17.sce | //Eg No. 1.17
//Pg No. 36
clc ;
clear ;
close ;
printf('did not have a scilab analogy for the c++ code, for details go the page no. 36') |
adba5afda26054f4c65fe9bf56f46f0b41df36c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2657/CH11/EX11.9/Ex11_9.sce | 6b62a60b54e8877b3b720c3f9cdbf6e1d55c1187 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,165 | sce | Ex11_9.sce | //Effect of air cleaner
clc,clear
//Given:
A_F=14 //Air fuel ratio at sea level
P2=0.834 //Pressure at venturi throat without an air cleaner in bar
P1=1.013 //Pressure of air in bar at sea level
deltaP_ac=30 //Pressure drop to air cleaner in mm of mercury
m_a=250 //Air flow in kg/hr
//Solution:
//No air cleaner
deltaP_a1=P1-P2 //Pressure difference at venturi throat in bar
//When air cleaner is fitted
deltaP_ac=deltaP_ac/750 //Pressure drop to air cleaner in bar
p=poly(0,'p') //Defining pressure at venturi throat with an air cleaner as unknown in bar
deltaP_a2=P1-deltaP_ac-p //Pressure difference at venturi throat in bar
//For same air flow and constant coefficients pressure difference in above two cases is same
p=roots(deltaP_a2-deltaP_a1) //Pressure at venturi throat with an air cleaner in bar
deltaP_f=P1-p //Pressure difference at venturi throat when air cleaner is fitted in bar
A_F_f=A_F*sqrt(deltaP_a1/deltaP_f) //Air fuel ratio when air cleaner is fitted
//Results:
printf("\n (a)The throat pressure when the air cleaner is fitted, P = %.3f bar",p)
printf("\n (b)Air fuel ratio with air cleaner is fitted = %.2f\n\n",A_F_f)
|
345e9a3ab13da9db1d2cd50e40ccdb921319fbd4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH22/EX22.11/Ex22_11.sce | 6996b25e6788dcbd7e3a572fc12812faac5e64ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 166 | sce | Ex22_11.sce | clear
//Given
l=5.50*10**-7 //m
D=5.1
//Calculation
a=(1.22*l)/D
//Result
printf("\n Minimum angular separation is %0.1f *10**-7 rad",a*10**7)
|
05d68b4b76e87ce543ae71857b19da87aa54982e | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/freqz.sci | dc71b75863f738ad28d5a542cc2a4ca49442cdfc | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,390 | sci | freqz.sci | function [H, W] = freqz(B, varargin)
//This function returns the complex frequency response H of the rational IIR filter whose numerator and denominator coefficients are B and A, respectively.
//Calling Sequence
//[H, W] = freqz(B, A, N, "whole")
//[H, W] = freqz(B)
//[H, W] = freqz(B, A)
//[H, W] = freqz(B, A, N)
//H = freqz(B, A, W)
//[H, W] = freqz(..., FS)
//freqz(...)
//Parameters
//B, A, N: Integer or Vector
//Description
// Return the complex frequency response H of the rational IIR filter whose numerator and denominator coefficients are B and A, respectively.
//
//The response is evaluated at N angular frequencies between 0 and 2*pi.
//
//The output value W is a vector of the frequencies.
//
//If A is omitted, the denominator is assumed to be 1 (this corresponds to a simple FIR filter).
//
//If N is omitted, a value of 512 is assumed. For fastest computation, N should factor into a small number of small primes.
//
//If the fourth argument, "whole", is omitted the response is evaluated at frequencies between 0 and pi.
//
// 'freqz (B, A, W)'
//
//Evaluate the response at the specific frequencies in the vector W. The values for W are measured in radians.
//
// '[...] = freqz (..., FS)'
//
//Return frequencies in Hz instead of radians assuming a sampling rate FS. If you are evaluating the response at specific frequencies W, those frequencies should be requested in Hz rather than radians.
//
// 'freqz (...)'
//
//Plot the magnitude and phase response of H rather than returning them.
//Examples
//H = freqz([1,2,3], [4,3], [1,2,5])
//ans =
// 0.4164716 - 0.5976772i - 0.4107690 - 0.2430335i 0.1761948 + 0.6273032i
funcprot(0);
rhs=argn(2);
lhs=argn(1);
if(rhs<2 | rhs>4) then
error("Wrong number of input arguments.");
end
if (lhs<1 | lhs>2)
error("Wrong number of output arguments.");
end
if (lhs==1) then
select(rhs)
case 1 then
H = callOctave("freqz",B);
case 2 then
H = callOctave("freqz",B, varargin(1));
case 3 then
H = callOctave("freqz",B, varargin(1), varargin(2));
end
elseif (lhs==2) then
select(rhs)
case 1 then
[H, W] = callOctave("freqz",B);
case 2 then
[H, W] = callOctave("freqz",B, varargin(1));
case 3 then
[H, W] = callOctave("freqz",B, varargin(1), varargin(2));
case 4 then
[H, W] = callOctave("freqz", B, varargin(1), varargin(2), varargin(3));
end
end
endfunction
|
1b2ed2ea4ab6066f67d60e7890212d9bc51ce6e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3638/CH13/EX13.7/Ex13_7.sce | cf6258c2ab7b58119eae51946e8025d8e1a1592e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,059 | sce | Ex13_7.sce | //Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999
//Example 13.7
//OS=Windows XP sp3
//Scilab version 5.5.2
clc;
clear;
//given
Id=1e-9;//Dark current of a silicon PIN photodiode in A
P=500e-9;//Optical power in W
R=0.65;//Responsivity in A/W
Rl=1000;//Value of load resistor in Ohms
e=1.6e-19//Electronic charge in C
kB=1.38e-23;//Boltzmann constant in SI Units
Deltaf=100e6;//Detector bandwidth in Hz
T=300;//Missing data- Temperature in K
M=50;//Internal gain corresponding to input optical power P
x=0;//No excess noise
I=M*R*P;//Signal current in A
mprintf("\n I=%.2f uA",I/1e-6)//Division by 10^(-6) to convert into uA
//Let the root mean square shot noise current be Ins
//The rms shot noise current due to signal is:
Ins=sqrt(2*e*M*I*Deltaf);//As the root mean square shot noise current is the square root of mean square shot noise current in A
mprintf("\n The rms shot noise current due to signal = %.2f nA",Ins/1e-9);//Division by 10^(-9) to convert into nA
//The answers vary due to round off error
//The rms shot noise current due to dark current is:
Ins=sqrt(2*e*(M^2)*Id*Deltaf);//As the root mean square shot noise current is the square root of mean square shot noise current in A
mprintf("\n The rms shot noise current due to dark current = %.2f nA",Ins/1e-9);//Division by 10^(-9) to convert into nA
//The answers vary due to round off error
//The rms shot thermal noise current is:
Ins=sqrt(4*kB*T*Deltaf/Rl);//As the root mean square shot noise current is the square root of mean square shot noise current in A
mprintf("\n The rms shot thermal noise current = %.2f nA",Ins/1e-9);//Division by 10^(-9) to convert into nA
//The answers vary due to round off error
SNR=((M*R*P)^2)/(2*e*(M^(2+x))*(R*P+Id)*Deltaf+4*kB*T*Deltaf/Rl);//Corresponding Signal-to-noise ratio since x=0
mprintf("\n SNR = %f",SNR);//The answers vary due to round off error
mprintf("\n SNR in dB = %.2f dB",10*log10(SNR));//For conversion to dB
//The answers vary due to round off error
|
0f71ede4d0887aa3c667100d654aadfbf992747c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1299/CH5/EX5.2.2a/examplesec5_2_2a.sce | 73bab952148fcfc580f6ffdb015d5cf854e4a202 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 139 | sce | examplesec5_2_2a.sce | //Example sec 5.2.2 a
//Routh array in scilab
clear;clc;
xdel(winsid());
s=poly(0,'s')
A=s^5+s^4+2*s^3+2*s^2+4*s+6
routh_t(A)
|
033bb1635b1636ff00dc17bdea43cd40bd675dbb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2309/CH5/EX5.17/Ex5_17.sce | ff8cdc1d2a372c6cb5c4a4830125ec55f9fae7bf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 802 | sce | Ex5_17.sce | // Chapter 5 Example 17
//==============================================================================
clc;
clear;
//input data
// (101),(221) planes in simple cubic lattice
h1 = 1; // miller indice
k0 = 0; // miller indice
l1 = 1; // miller indice
h2 = 2; // miller indice
k2 = 2; // miller indice
l1 = 1; // miller indice
a = 4.2 // inter atomic space Å
// Calculations
d101 = a/sqrt((h1^2)+(k0^2)+(l1^2)); // interplanar distance
d221 = a/sqrt((h2^2)+(k2^2)+(l1^2)); // interplanar distance
// Output
mprintf('d(101) = %3.4f Å\n d(221) = %3.1f Å ',d101,d221);
//=============================================================================
|
dc74708a2bc317e0d789e51650338171849a2362 | 68e80c4f0dec343ba03b15706ea26fe4ba86f0be | /inv_trans_TPF.sce | c9b26f80f9482e76a098c4d5af319bf39f63c6bd | [] | no_license | JurySpb/TPF-scilab | 524b60fe0bb87a0bc05c6b5287d9a1d7f214ad81 | 83046c90f6fd0985d8509d4cbc1ae814e7de40f8 | refs/heads/master | 2020-04-17T15:03:27.012837 | 2019-02-10T11:47:24 | 2019-02-10T11:47:24 | 166,683,316 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,121 | sce | inv_trans_TPF.sce |
///////////////////
// inversion Abel transformation
// See works:
// C. J. Dasch,...
// P. S. Kolhe and A. K. Agrawal,...
// H. Chehouani and M. El Fagrich,...
// for Scilab
// 02-2019
// Jury Barinov
//
// (two-point formula, TPF)
function [yout]=inv_trans_TPF(yi)
n1=length(yi); // poins on R
deff("[a]=Aij(i,j)","a=sqrt((j)^2-(i-1)^2)-sqrt((j-1)^2-(i-1)^2)");
deff("[b]=Bij(i,j)","b=log((j+sqrt((j)^2-(i-1)^2))./((j-1)+sqrt((j-1)^2-(i-1)^2)))");
//
Dij=0;
for i=1:n1
D=0;
for j=i:n1
if j>i & j<>2 then
Dij=(1/%pi);
Dij=Dij.*(Aij(i,j)-Aij(i,j-1)-(j).*Bij(i,j)+(j-2).*Bij(i,j-1));
elseif j>i & j==2 then
Dij=(1/%pi);
Dij=Dij.*(Aij(i,j)-(j).*Bij(i,j)-1);//
end
if j==i & i<>1 then
Dij=(1/%pi);
Dij=Dij.*(Aij(i,j)-(j).*Bij(i,j));
end
if (i==j & i==1) | j<i then
Dij=0;
end
D=D+Dij.*yi(j);
end
b(i)=D;
end;
yout=b;
endfunction
|
0b2114f5d33b2dab2c4aab768400ad46b320c26f | 6813325b126713766d9778d7665c10b5ba67227b | /Chapter5/Ch_5_Eg_5.1.sce | 9b707d04b94e07066aee3242b8a81fedafc16485 | [] | no_license | arvindrachna/Introduction_to_Scilab | 955b2063b3faa33a855d18ac41ed7e0e3ab6bd1f | 9ca5d6be99e0536ba1c08a7a1bf4ba64620ec140 | refs/heads/master | 2020-03-15T19:26:52.964755 | 2018-05-31T04:49:57 | 2018-05-31T04:49:57 | 132,308,878 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 159 | sce | Ch_5_Eg_5.1.sce | // To plot a sine curve
x=-%pi:.2:%pi; // Generate x-coordinates
y=sin(x); // Calculate y-coordinates
plot(x, y) // Plot the data
|
ec12d668129ed6d86dcdbc8d68caee5a9d20f626 | 8154aad4ec93590d702564f920c85f382d15476d | /spoj/prime1.tst | e7f03f0629b693e0c06b7af19cc92bea47284cb7 | [] | no_license | en1r0py/testfield-dumpinggrounds | 1e9004c1041be2a72cea80af2aa3c467a16d5090 | c1353962a13157b5c79c988abd36ac5d9213eb59 | refs/heads/master | 2020-06-04T03:48:16.860222 | 2013-01-09T17:11:23 | 2013-01-09T17:11:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 14 | tst | prime1.tst | 2
1 10
59 139
|
a8a914b90a86d6fa78f289a13af24e545cfc29bb | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/phasez/phasez3.sce | 5666c162c14e0d31f48d77b53815c2fb1d1b3c6a | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 543 | sce | phasez3.sce | //i/p arg b contains imaginary element
b=[1 2 3 5*%i 6 7];
a=[2 3 4 5 7 8];
n=10;
[phi,w] = phasez(b,a,n);
disp(phi);
disp(w);
//output
//!--error 117
//List element number 1 is Undefined.
//at line 69 of function phasez called by :
//[phi,w] = phasez(b,a,n);
//matlab o/p
// 0.2573
// 0.2055
// 0.2119
// -0.0603
// -1.0214
// -0.8054
// -0.6420
// -0.0378
// 0.4624
// 0.7915
//
// 0
// 0.3142
// 0.6283
// 0.9425
// 1.2566
// 1.5708
// 1.8850
// 2.1991
// 2.5133
// 2.8274
|
8f1348d6ad9c25d7103d5afe06598d7bf6da1318 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3564/CH1/EX1.7/Ex1_7.sce | 3794091eda4c2615147f86b20f1b45e1ab41c17e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 807 | sce | Ex1_7.sce |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clc;
disp("Introduction to Fluid Mechanics, 3rd Ed. William S. Janna Chapter - 1 Example # 1.7 ")
//Using Appendix table A.6 for properties of air
//Specific heat of air in Btu/slag
cp = 7.72;
//Specific heat ratio gamma for air is
gamma = 1.4;
//Specific heat at constant volume of air in Btu/slag.R
cv = cp/gamma;
//Inital temperature in degree F
T1 = 70;//Symbol is assumed for computation
//Final temperature in degree F
T2 = 110;//Symbol is assumed for computation
//Temperature difference deltaT in degree K
deltaT = T2-T1;
//Change in internal energy in Btu/slag
disp("Change in internal energy in Btu/slag is")
deltau = cv*deltaT
//Answer varies slightly because of round-off error
|
497e120c77c58814ad1250a59604dd6865035085 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH7/EX7.18/18.sce | b0a6668015e02143cb84c3a049e6960f50d3d636 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 157 | sce | 18.sce | clc
vg=0.1274; //m^3/kg
vf=0.001157; //m^3/kg
// dp/dT=32; //kPa/K
T3=473; //K
h_fg=32*10^3*T3*(vg-vf)/10^3;
disp("h_fg=")
disp(h_fg)
disp("kJ/kg") |
5799cf89589a360dd1f5386d96adaf345058250b | 449d555969bfd7befe906877abab098c6e63a0e8 | /174/CH14/EX14.1/example14_1.sce | b3c0d817b1a2fe97fd7d8d975ec5a7a47f60b32a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 889 | sce | example14_1.sce | // To find acceptance angle and numerical aperture
// Modern Electronic Instrumentation And Measurement Techniques
// By Albert D. Helfrick, William D. Cooper
// First Edition Second Impression, 2009
// Dorling Kindersly Pvt. Ltd. India
// Example 14-1 in Page 392
clear; clc; close;
// Given data
n_2 = 1.45; //Core index of refraction
n_1 = 1.47; //Cladding index of refraction
//Calculation
theta_c = acos(n_2/n_1);
theta_A = 2*asin(n_1*sin(theta_c));
NA = sqrt(n_1^2 -n_2^2);
printf("The critical angle of the fiber = %0.2f degree\n",theta_c*180/%pi);
printf("The acceptance angle of the fiber = %0.2f degree\n",theta_A*180/%pi);
printf("The numerical aperture of the fiber = %0.3f ",NA);
//Result
// The critical angle of the fiber = 9.46 degree
// The acceptance angle of the fiber = 27.97 degree
// The numerical aperture of the fiber = 0.242
|
bd0b4944fdbc6319ae446ce03b2bb512c47168c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1460/CH3/EX3.4/3_4.sce | e2b58d172d39c254f5a871e40f62b91194bb3b03 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 229 | sce | 3_4.sce | clc
//initialization of variables
P=80 //lb/in^2
T=120+460 //R
R=53.3 //ft-lb/lbmR
//calculations
disp("From table 6,")
h=138.66 //B/lbm
P=P*144 //lb/ft^2
v=R*T/P
//results
printf("Specific volume = %.2f ft^3/lbm",v)
|
aae547ccf9bb8c0e7c56817538269331cbb76626 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH1/EX1.a.19/Example_a_1_19.sce | bc42bf1335a89077fc8d904c4bc648f98077b729 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 491 | sce | Example_a_1_19.sce | //Example 1_19 page no:35
clc;
V1=-4;
I1=2;
P1=V1*I1;
disp(P1,"the power absorbed by 2A current source is (in W)");
V2=-4;
I2=1;
P2=V2*I2;
disp(P2,"the power absorbed by 4V voltage source is (in W)");
V3=2;
I3=3;
P3=V3*I3;
disp(P3,"the power absorbed by 2V voltage source is (in W)");
V4=7;
I4=2;
P4=V4*I4;
disp(P4,"the power absorbed by 7A current source is (in W)");
V5=2;
I5=2;
P5=-2*V5*I5;
disp(P5,"the power absorbed by 2xi independent current source is (in W)");
|
516027f1593bbe796c1ca982dcd69858c19b6263 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH33/EX33.1/Example33_1.sce | 7f4cc386f98482a2579aa05fa15f35a4831fa68c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,015 | sce | Example33_1.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART III : SWITCHGEAR AND PROTECTION
// CHAPTER 7: PROTECTIVE RELAYS
// EXAMPLE : 7.1 :
// Page number 595-596
clear ; clc ; close ; // Clear the work space and console
// Given data
I_setting = 150.0 // Current setting of IDMT(%)
t_mult = 0.5 // Time multiplier setting
ratio_CT = 500.0/5 // CT ratio
CT_sec = 5.0 // Secondary turn
I_f = 6000.0 // Fault current
// Calculations
I_sec_fault = I_f/ratio_CT // Secondary fault current(A)
PSM = I_sec_fault/(CT_sec*I_setting/100) // Plug setting multiplier
t = 3.15 // Time against this PSM(sec). From graph E7.1 in textbook page no 595
time_oper = t*t_mult // Operating time(sec)
// Results
disp("PART III - EXAMPLE : 7.1 : SOLUTION :-")
printf("\nTime of operation of the relay = %.3f sec", time_oper)
|
09a2c38be55c1e6ff8158b6143521e1bd4249ebe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH14/EX14.8/Ex14_8.sce | e20b3d9ccb786194b8880cf8d1d84c561edad575 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 137 | sce | Ex14_8.sce | clear;
clc;
//Example 14.8
Is1=10^-14;
Is2=1.05*10^-14;
Vt=0.026;
Vos=Vt*log(Is2/Is1);
printf('\nthe offset voltage =%fV\n',Vos)
|
c4f51cdc08346fd3c05ce1acc1bb278892f25224 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2273/CH7/EX7.2/ex7_2.sce | 4018bb9c39106bf52cecc55c4a5fbbbb24fc5a7c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 525 | sce | ex7_2.sce | //Determine whether corona will be there or not
clear;
clc;
//soltion
//given
Er=4;//relative permittivity
r=3.52/2;//cm
Vp=28;//kV//Voltage between conductor and an earthed clamp surrounding the porcelain
g1=poly(0,"g1");
r1=4/2;//cm
r2=10/2;//cm
g2=r*g1/(Er*r1);
g1max=roots(g1*r*log(r1/r)+g2*r1*log(r2/r1)-28);
printf("Maximum gradient on conductor surface= %.3f kV/cm\n",g1max);
printf("If gradient exceeds dielectric strength of air (21.1kV/cm) the corona will be present \n In this case it is present");
|
68d63996cee5afd91260850240d60aeef9b49368 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH8/EX8.22/8_22.sce | 95989620927bbb51d4108e9290b60b02ef753396 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 297 | sce | 8_22.sce | //8.22
clc;
R2=5.6*10^3;
R1=10*10^3;
Avf=1+R2/R1;
printf("Mid band Gain=%.2f", Avf)
Vin=1.1;
Vo=Avf*Vin;
printf("\nOutput voltage=%.3f mV", Vo)
R=10000;
C=0.001*10^-6;
fc=1/(2*%pi*R*C);
printf("\nCutt off frequency=%.2f Hz", fc)
Vo=0.707*Avf;
printf("\nOutput voltage=%.3f mV", Vo)
|
ad3bdadc3c1583e03f8c5b70f6094d9151bb3810 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1820/CH5/EX5.3/Example5_3.sce | 4925188ccb6059b0fbe4412d4585c502bea6f320 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,047 | sce | Example5_3.sce | // ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
// TURAN GONEN
// CRC PRESS
// SECOND EDITION
// CHAPTER : 5 : UNDERGROUND POWER TRANSMISSION AND GAS-INSULATED TRANSMISSION LINES
// EXAMPLE : 5.3 :
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
D = 1.235 ; // Inside diameter of sheath in inch
d = 0.575 ; // Conductor diameter in inch
kv = 115 ; // Voltage in kV
l = 6000 ; // Length of cable in feet
r_si = 2000 ; // specific insulation resistance is 2000 MΩ/1000ft . From Table 5.2
// CALCULATIONS
// For case (a)
r_si0 = r_si * l/1000 ;
R_i = r_si0 * log10 (D/d) ; // Total Insulation resistance in MΩ
// For case (b)
P = kv^2/R_i ; // Power loss due to leakage current in W
// DISPLAY RESULTS
disp("EXAMPLE : 5.3 : SOLUTION :-") ;
printf("\n (a) Total insulation resistance at 60 degree F , R_i= %.2f MΩ \n",R_i) ;
printf("\n (b) Power loss due to leakage current , V^2/R_i = %.4f W \n",P) ;
printf("\n NOTE : ERROR : Mistake in textbook case (a) \n") ;
|
c53dd0b8579c9abf35db31f47c6c8fd10dabf54e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH7/EX7.10/7_10.sce | 1bf2d36f25284206acc9c2ec6fc6d8bf2558ffcc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 301 | sce | 7_10.sce | clc
//Initialization of variables
g=9.81 //m/s^2
rho=10^3 //kg/m^3
l=1 //m
b=0.3 //m
Q=4.2 //m^3/s
//calculations
A=l*b
R=A/(2*(l+b))
d5=1.62/24.15
d=d5^(1/5)
Pr=2*(l+b)/(%pi*d)
//results
printf("The rectangular cross section will cost %.2f times that of a circular cross section",Pr)
|
907a7c408e0aeeca5a1c4b0f22085434b4d9dae8 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Apex Wingman long range 2 bot.sce | b719de8914ed1d195235abc94126305bafdcb0f8 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 31,101 | sce | Apex Wingman long range 2 bot.sce | Name=Apex Wingman long range 2 bot
PlayerCharacters=Apex purple armor wingman
BotCharacters=Apex_bot_long.bot;Apex_bot_long.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Apex purple armor wingman
AddedBots=Apex_bot_long.bot;Apex_bot_long.bot
PlayerMaxLives=0
BotMaxLives=0;0
PlayerTeam=2
BotTeams=1;1
MapName=longrange.map
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000000.0
ScorePerDamage=50.0
ScorePerKill=200.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Apex
WeaponHeroTag=Wingman
DifficultyTag=2
AuthorsTag=
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=true
Description=Shot 2 targets with Wingman from long range, ads allowed
GameVersion=2.0.1.2
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
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[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
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=Apex_bot_long
DodgeProfileNames=Long Strafes Apex
DodgeProfileWeights=1.0
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=Apex purple armor no gun
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.810 Y=0.200 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=Apex purple armor wingman
MaxHealth=200.0
WeaponProfileNames=;Wingman S5;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1200.0
MaxCrouchSpeed=500.0
Acceleration=7000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=260.0
MainBBRadius=50.0
MainBBHasHead=true
MainBBHeadRadius=18.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=260.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
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=0.75
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
TerminalVelocity=0.0
CharacterModel=Meso
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Apex purple armor no gun
MaxHealth=200.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1200.0
MaxCrouchSpeed=500.0
Acceleration=7000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=260.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=18.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=260.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=[ADM]Sprint.abilsprint;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.75
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
TerminalVelocity=0.0
CharacterModel=Meso
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=Long Strafes Apex
MaxTargetDistance=5000.0
MinTargetDistance=1200.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.1
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
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Weapon Profile]
Name=Wingman S5
Type=Hitscan
ShotsPerClick=1
DamagePerShot=45.0
KnockbackFactor=0.1
TimeBetweenShots=0.38
Pierces=false
Category=SemiAuto
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=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=8
AmmoPerShot=1
ReloadTimeFromEmpty=2.1
ReloadTimeFromPartial=2.1
DamageFalloffStartDistance=5000.0
DamageFalloffStopDistance=5000.0
DamageAtMaxRange=200.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
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=8
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=78.260002
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Law Bringer
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.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,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=4.0
MinRecoilUp=4.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.025
TimeToRecoilReset=0.29
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Sprint Ability Profile]
Name=[ADM]Sprint
MaxCharges=1.0
ChargeTimer=0.1
ChargesRefundedOnKill=0.0
DelayAfterUse=0.0
FullyAuto=false
AbilityDuration=0.0
BlockAttackWhileSprinting=false
AbilityBlockedWhenAttacking=true
SpeedModifier=1.333333
45DegreeSprint=true
90DegreeSprint=false
135DegreeSprint=false
180DegreeSprint=false
TapToSprint=true
Block45DegreesWhenSprinting=false
AIUseInCombat=true
AIUseOutOfCombat=true
AIUseOnGround=true
AIUseInAir=false
AIReuseTimer=0.1
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=250.0
AIMaxTargDist=10000.0
AIMaxTargFOV=90.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.18
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=2.0
AIDamageReactionThreshold=1.0
AIDamageReactionResetTimer=0.1
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-576.000000 0.000000 256.000000
448.000000 0.000000 256.000000
448.000000 0.000000 -768.000000
-576.000000 0.000000 -768.000000
-576.000000 -16.000000 256.000000
448.000000 -16.000000 256.000000
448.000000 -16.000000 -768.000000
-576.000000 -16.000000 -768.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
-576.000000 0.000000 1280.000000
448.000000 0.000000 1280.000000
448.000000 0.000000 256.000000
-576.000000 0.000000 256.000000
-576.000000 -16.000000 1280.000000
448.000000 -16.000000 1280.000000
448.000000 -16.000000 256.000000
-576.000000 -16.000000 256.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
-576.000000 0.000000 -768.000000
448.000000 0.000000 -768.000000
448.000000 0.000000 -1792.000000
-576.000000 0.000000 -1792.000000
-576.000000 -16.000000 -768.000000
448.000000 -16.000000 -768.000000
448.000000 -16.000000 -1792.000000
-576.000000 -16.000000 -1792.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
-576.000000 272.000000 -1792.000000
448.000000 272.000000 -1792.000000
448.000000 272.000000 -1808.000000
-576.000000 272.000000 -1808.000000
-576.000000 0.000000 -1792.000000
448.000000 0.000000 -1792.000000
448.000000 0.000000 -1808.000000
-576.000000 0.000000 -1808.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
-576.000000 272.000000 1296.000000
448.000000 272.000000 1296.000000
448.000000 272.000000 1280.000000
-576.000000 272.000000 1280.000000
-576.000000 0.000000 1296.000000
448.000000 0.000000 1296.000000
448.000000 0.000000 1280.000000
-576.000000 0.000000 1280.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
448.000000 272.000000 1280.000000
464.000000 272.000000 1280.000000
464.000000 272.000000 -1792.000000
448.000000 272.000000 -1792.000000
448.000000 0.000000 1280.000000
464.000000 0.000000 1280.000000
464.000000 0.000000 -1792.000000
448.000000 0.000000 -1792.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
-592.000000 272.000000 1280.000000
-576.000000 272.000000 1280.000000
-576.000000 272.000000 -1792.000000
-592.000000 272.000000 -1792.000000
-592.000000 0.000000 1280.000000
-576.000000 0.000000 1280.000000
-576.000000 0.000000 -1792.000000
-592.000000 0.000000 -1792.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
-576.000000 704.000000 1296.000000
448.000000 704.000000 1296.000000
448.000000 704.000000 1280.000000
-576.000000 704.000000 1280.000000
-576.000000 272.000000 1296.000000
448.000000 272.000000 1296.000000
448.000000 272.000000 1280.000000
-576.000000 272.000000 1280.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 704.000000 -1792.000000
448.000000 704.000000 -1792.000000
448.000000 704.000000 -1808.000000
-576.000000 704.000000 -1808.000000
-576.000000 272.000000 -1792.000000
448.000000 272.000000 -1792.000000
448.000000 272.000000 -1808.000000
-576.000000 272.000000 -1808.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
-592.000000 704.000000 1280.000000
-576.000000 704.000000 1280.000000
-576.000000 704.000000 -1792.000000
-592.000000 704.000000 -1792.000000
-592.000000 272.000000 1280.000000
-576.000000 272.000000 1280.000000
-576.000000 272.000000 -1792.000000
-592.000000 272.000000 -1792.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
448.000000 704.000000 1280.000000
464.000000 704.000000 1280.000000
464.000000 704.000000 -1792.000000
448.000000 704.000000 -1792.000000
448.000000 272.000000 1280.000000
464.000000 272.000000 1280.000000
464.000000 272.000000 -1792.000000
448.000000 272.000000 -1792.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 1280.000000
448.000000 720.000000 1280.000000
448.000000 720.000000 -1792.000000
-576.000000 720.000000 -1792.000000
-576.000000 704.000000 1280.000000
448.000000 704.000000 1280.000000
448.000000 704.000000 -1792.000000
-576.000000 704.000000 -1792.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 32.000000 528.000000
448.000000 32.000000 528.000000
448.000000 32.000000 512.000000
-576.000000 32.000000 512.000000
-576.000000 0.000000 528.000000
448.000000 0.000000 528.000000
448.000000 0.000000 512.000000
-576.000000 0.000000 512.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
-576.000000 704.000000 528.000000
448.000000 704.000000 528.000000
448.000000 704.000000 512.000000
-576.000000 704.000000 512.000000
-576.000000 32.000000 528.000000
448.000000 32.000000 528.000000
448.000000 32.000000 512.000000
-576.000000 32.000000 512.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 32.000000 -1024.000000
448.000000 32.000000 -1024.000000
448.000000 32.000000 -1040.000000
-576.000000 32.000000 -1040.000000
-576.000000 0.000000 -1024.000000
448.000000 0.000000 -1024.000000
448.000000 0.000000 -1040.000000
-576.000000 0.000000 -1040.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
-576.000000 704.000000 -1024.000000
448.000000 704.000000 -1024.000000
448.000000 704.000000 -1040.000000
-576.000000 704.000000 -1040.000000
-576.000000 32.000000 -1024.000000
448.000000 32.000000 -1024.000000
448.000000 32.000000 -1040.000000
-576.000000 32.000000 -1040.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
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type CameraPath
UInt32 entityIdAttachedTo 5
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 320.000000 256.000000 320.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -128.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -192.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -256.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -320.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -384.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -448.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -512.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 64.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 192.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 256.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 320.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 384.000000 0.000000 1248.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 64.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 128.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 192.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 256.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 320.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 384.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -128.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -192.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -256.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -320.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -384.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -448.000000 0.000000 -1760.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -512.000000 0.000000 -1760.000000
Bool8 teamA 0
|
1ddf8af00a3392ba897150a1a6b90fd326decd4b | 449d555969bfd7befe906877abab098c6e63a0e8 | /632/CH12/EX12.10/example12_10.sce | 4d204c2603e8ef15da70eac3c1be3b55b0e878c9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 262 | sce | example12_10.sce | //clc()
// C5H12(g) + 8O2(g) = 5CO2(g) + 6H20(l)
Hfco2 = -393.51;//kJ
Hfh2o = - 241.826;//kJ
Hfc5h12 = -146.4;//kJ
Hvap = 43.967;//kJ/mol
H1 = 6*Hfh2o +5*Hfco2 - Hfc5h12;
H2 = 6 * (-Hvap);
Hreac = H1 + H2;
disp("kJ",Hreac,"Standard heat of reaction = ") |
6264ade3fb451a970350a502d46ade2a1d5ffa9e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1430/CH9/EX9.11/exa9_11.sce | c3c60fceacb2fee8bf9242d34d66037ec00d9bf9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 749 | sce | exa9_11.sce | //Example 9.11
// Underdamped Zero-Input Response
// form figure 9.25
L=0.1;
R=5;
C=1/640;
alpha=R/(2*L);
omega_0=sqrt(1/(L*C));
//Characteristic Values
p1=-alpha+sqrt(alpha^2-omega_0^2);
omega_d=sqrt(omega_0^2-alpha^2);
p2=p1'; // Complex conjugate
V_s1=30; // t<0
V_s2=0;//t>0
// using initial conditions we find
i_L_aft=0;// i(0^+)=0
i_L_aft_d=-30/L; // i'(0^+)=0
I_ss= 0; // when capacitor becomes fully charge before t<0
//Using complex matrix equation
P=[1,1;p1,p2];
I=[i_L_aft-I_ss;i_L_aft_d]
A=P\I
A_1=A(1);
A_1_m=abs(A_1);
phase_A_1=atan(imag(A_1),real(A_1))*(180/%pi);
t=0:0.001:0.5
i_L=2*A_1_m*exp(-alpha*t).*cos(omega_d*t+phase_A_1);
plot(t,i_L)
xlabel('t')
ylabel('i_L(t)')
title('Current Waveform')
|
206b07731f8c7e136aed1477965c107107dd38c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /46/CH16/EX16.4/Example16_4.sce | d4f1040717d02793aea800cb022aad8018fd394f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 183 | sce | Example16_4.sce | //Example 16.4
clc
s=%s;
H=1/(s+1);
Hs=syslin('c',H)
J=1/(s+5);
Js=syslin('c',J)
G=Hs*Js;
Gs=syslin('c',G)
clf
bode([Hs;Js;Gs;])
legend(['1/(s+1)';'1/(s/5+1)';'1/(5*(s+1)*(s/5+1))'])
|
72f48753be87aadc66d0e44d859cc82cb00c609a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH3/EX3.21/exa_3_21.sce | 25e354eac9e4227ef8e6f53762a8c2547809dd6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 654 | sce | exa_3_21.sce | // Exa 3.21
clc;
clear;
close;
// Given data
R1=3.3;// in k ohm
R1=R1*10^3;// in ohm
R2=R1;
R_p= 2.5;// in k ohm
R_p =R_p*10^3;// in ohm
R3=1.2;// in k ohm
R3=R3*10^3;// in ohm
R4=R3;
R_f= 3.9;// in k ohm
R_f =R_f*10^3;// in ohm
R5=R_f;
R_in= 2;// in M ohm
R_in= R_in*10^6;// in ohm
R_out= 75;// in ohm
A=2*10^5;
f_o= 5;// in Hz
A_d= -1*(1+2*R1/R_p)*R_f/R3;
disp(A_d,"Voltage gain ");
A_d=abs(A_d);
R_inf= R_in*(1+(R1+R_p)/(2*R1+R_p)*A);// in ohm
disp(R_inf*10^-9,"Input resistance in G ohm")
R_outf= R_out/(1+A/A_d);// in ohm
disp(R_outf,"Output voltage in ohm")
f_f= A*f_o/A_d;// in Hz
disp(f_f*10^-3,"Bandwidth in kHz");
|
b1e8e798dbe0c667ce822977404d478b15c69213 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /NFNTS Activate the eyes.sce | e57942a33f2b22eb4a37c6d36afcedf092ad60b5 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 68,979 | sce | NFNTS Activate the eyes.sce | Name=NFNTS Activate the eyes
PlayerCharacters=player_eye_char
BotCharacters=wave_eye_bot.bot
IsChallenge=true
Timelimit=180.0
PlayerProfile=player_eye_char
AddedBots=wave_eye_bot.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=1
BotTeams=2
MapName=wave_eye.map
MapScale=2.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=true
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=0.0
ScorePerDamage=1.0
ScorePerKill=10.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=
WeaponHeroTag=LG
DifficultyTag=3
AuthorsTag=NFNT
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=Don't aim, look.
GameVersion=2.0.2.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
LockFOVRange=true
LockedFOVMin=103.0
LockedFOVMax=103.0
LockedFOVScale=Clamped Horizontal
[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
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=wave_eye_bot
DodgeProfileNames=wave_eye_dodge
DodgeProfileWeights=1.0
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=false
CharacterProfile=wave_eye_char
SeeThroughWalls=false
NoDodging=false
NoAiming=true
AbilityUseTimer=1.0
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=player_eye_char
MaxHealth=100.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=0.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.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=true
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
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.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=-250.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=wave_eye_char
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=100.0
CrouchHeightModifier=0.6
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=100000.0
MaxCrouchSpeed=200.0
Acceleration=100000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=1600.0
Gravity=6.0
AirControl=0.1
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
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=320.0
MainBBRadius=65.0
MainBBHasHead=true
MainBBHeadRadius=55.0
MainBBHeadOffset=-10.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=320.0
ProjBBRadius=65.0
ProjBBHasHead=true
ProjBBHeadRadius=55.0
ProjBBHeadOffset=-10.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
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=false
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.2
JumpSpeedPenaltyPercent=1.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=wave_eye_dodge
MaxTargetDistance=1500.0
MinTargetDistance=1000.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.1
MaxLRTimeChange=0.2
MinFBTimeChange=0.1
MaxFBTimeChange=0.2
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.1
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.05
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.2
MaxCrouchTime=0.3
MinJumpTime=0.2
MaxJumpTime=0.3
LeftStrafeTimeMult=0.8
RightStrafeTimeMult=0.8
StrafeSwapMinPause=0.1
StrafeSwapMaxPause=0.2
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=0.8
BackTimeMult=0.8
DamageReactionChangesFB=false
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-896.000000 576.000000 -880.000000
896.000000 576.000000 -880.000000
896.000000 576.000000 -896.000000
-896.000000 576.000000 -896.000000
-896.000000 -32.000000 -880.000000
896.000000 -32.000000 -880.000000
896.000000 -32.000000 -896.000000
-896.000000 -32.000000 -896.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
896.000000 576.000000 896.000000
896.000000 576.000000 -895.999023
880.000000 576.000000 -896.000000
880.000000 576.000000 896.000000
896.000000 -32.000000 896.000000
896.000000 -32.000000 -895.999023
880.000000 -32.000000 -896.000000
880.000000 -32.000000 896.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
896.000244 576.000000 879.999878
-895.999756 576.000000 879.999878
-895.999756 576.000000 895.999878
896.000244 576.000000 895.999878
896.000244 -32.000000 879.999878
-895.999756 -32.000000 879.999878
-895.999756 -32.000000 895.999878
896.000244 -32.000000 895.999878
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
-31.999998 32.000000 880.000000
31.999998 32.000000 880.000000
31.999998 -32.000000 880.000000
-31.999998 -32.000000 0.000000
-31.999998 -32.000000 880.000000
31.999998 -32.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
-192.000000 96.000000 880.000000
-176.000000 96.000000 880.000000
-176.000000 -32.000000 880.000000
-192.000000 -32.000000 0.000000
-176.000000 -32.000000 0.000000
-192.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
-352.000000 160.000000 880.000000
-336.000000 160.000000 880.000000
-336.000000 -32.000000 880.000000
-352.000000 -32.000000 0.000000
-352.000000 -32.000000 880.000000
-336.000000 -32.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
-512.000000 224.000000 880.000000
-496.000000 224.000000 880.000000
-496.000000 -32.000000 880.000000
-512.000000 -32.000000 0.000000
-496.000000 -32.000000 0.000000
-512.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
-672.000000 288.000000 880.000000
-656.000000 288.000000 880.000000
-656.000000 -32.000000 880.000000
-672.000000 -32.000000 0.000000
-656.000000 -32.000000 0.000000
-672.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
-31.999998 -32.000000 0.000000
-65.166168 -32.000000 0.000000
-31.999998 -32.000000 880.000000
-31.999998 32.000000 880.000000
-65.166168 -32.000000 880.000000
-65.166168 35.545189 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-65.166168 -32.000000 0.000000
-85.737610 -32.000000 0.000000
-65.166168 -32.000000 880.000000
-65.166168 35.545189 880.000000
-85.737610 -32.000000 879.999939
-85.737610 44.688046 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-85.737610 -32.000000 0.000000
-98.752182 -32.000000 0.000000
-85.737610 -32.000000 879.999939
-85.737610 44.688046 879.999939
-98.752182 -32.000000 880.000000
-98.752182 57.189507 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-98.752182 -32.000000 0.000000
-109.247810 -31.999998 0.000000
-98.752182 -32.000000 880.000000
-98.752182 57.189507 880.000000
-109.247810 -31.999998 880.000000
-109.247810 70.810493 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-109.247810 -31.999998 0.000000
-122.262421 -32.000004 0.000000
-109.247810 -31.999998 880.000000
-109.247810 70.810493 880.000000
-122.262421 -32.000004 880.000122
-122.262421 83.311966 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-122.262421 -32.000004 0.000000
-142.833847 -32.000000 0.000000
-122.262421 -32.000004 880.000122
-142.833847 -32.000000 880.000000
-142.833847 92.454819 880.000000
-122.262421 83.311966 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-142.833847 -32.000000 0.000000
-176.000000 -32.000000 0.000000
-142.833847 -32.000000 880.000000
-142.833847 92.454819 880.000000
-176.000000 -32.000000 880.000000
-176.000000 96.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
-336.000000 -32.000000 880.000000
-302.833832 -32.000000 880.000000
-336.000000 -32.000000 0.000000
-336.000000 160.000000 880.000000
-302.833832 -32.000000 0.000000
-302.833832 156.454803 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-302.833832 -32.000000 880.000000
-282.262390 -32.000000 879.999939
-302.833832 -32.000000 0.000000
-302.833832 156.454803 880.000000
-282.262390 -32.000000 0.000000
-282.262390 147.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-282.262390 -32.000000 879.999939
-269.247803 -32.000000 880.000000
-282.262390 -32.000000 0.000000
-282.262390 147.311951 879.999939
-269.247803 -32.000000 0.000000
-269.247803 134.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
-269.247803 -32.000000 880.000000
-258.752167 -31.999998 880.000000
-269.247803 -32.000000 0.000000
-269.247803 134.810486 880.000000
-258.752167 -31.999998 0.000000
-258.752167 121.189491 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-258.752167 -31.999998 880.000000
-245.737625 -32.000004 880.000122
-258.752167 -31.999998 0.000000
-258.752167 121.189491 880.000000
-245.737625 -32.000004 0.000000
-245.737625 108.688065 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-245.737625 -32.000004 880.000122
-225.166168 -32.000000 880.000000
-245.737625 -32.000004 0.000000
-245.737625 108.688065 880.000122
-225.166168 -32.000000 0.000000
-225.166168 99.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-225.166168 -32.000000 880.000000
-192.000000 -32.000000 880.000000
-225.166168 -32.000000 0.000000
-225.166168 99.545197 880.000000
-192.000000 -32.000000 0.000000
-192.000000 96.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-496.000000 -32.000000 880.000000
-462.833832 -32.000000 880.000000
-496.000000 -32.000000 0.000000
-496.000000 224.000000 880.000000
-462.833832 -32.000000 0.000000
-462.833832 220.454819 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-462.833832 -32.000000 880.000000
-442.262360 -32.000000 879.999939
-462.833832 -32.000000 0.000000
-462.833832 220.454819 880.000000
-442.262360 -32.000000 0.000000
-442.262360 211.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-442.262360 -32.000000 879.999939
-429.247803 -32.000000 880.000000
-442.262360 -32.000000 0.000000
-442.262360 211.311951 879.999939
-429.247803 -32.000000 0.000000
-429.247803 198.810501 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-429.247803 -32.000000 880.000000
-418.752136 -31.999998 880.000000
-429.247803 -32.000000 0.000000
-429.247803 198.810501 880.000000
-418.752136 -31.999998 0.000000
-418.752136 185.189484 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-418.752136 -31.999998 880.000000
-405.737610 -32.000004 880.000122
-418.752136 -31.999998 0.000000
-418.752136 185.189484 880.000000
-405.737610 -32.000004 0.000000
-405.737610 172.688065 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-405.737610 -32.000004 880.000122
-385.166168 -32.000000 880.000000
-405.737610 -32.000004 0.000000
-385.166168 -32.000000 0.000000
-385.166168 163.545181 880.000000
-405.737610 172.688065 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
-385.166168 -32.000000 880.000000
-352.000000 -32.000000 880.000000
-385.166168 -32.000000 0.000000
-385.166168 163.545181 880.000000
-352.000000 -32.000000 0.000000
-352.000000 160.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-656.000000 -32.000000 880.000000
-622.833801 -32.000000 880.000000
-656.000000 -32.000000 0.000000
-656.000000 288.000000 880.000000
-622.833801 -32.000000 0.000000
-622.833801 284.454834 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-622.833801 -32.000000 880.000000
-602.262390 -32.000000 879.999939
-622.833801 -32.000000 0.000000
-622.833801 284.454834 880.000000
-602.262390 -32.000000 0.000000
-602.262390 275.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-602.262390 -32.000000 879.999939
-589.247803 -32.000000 880.000000
-602.262390 -32.000000 0.000000
-602.262390 275.311951 879.999939
-589.247803 -32.000000 0.000000
-589.247803 262.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
-589.247803 -32.000000 880.000000
-578.752136 -31.999998 880.000000
-589.247803 -32.000000 0.000000
-589.247803 262.810486 880.000000
-578.752136 -31.999998 0.000000
-578.752136 249.189484 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-578.752136 -31.999998 880.000000
-565.737610 -32.000004 880.000122
-578.752136 -31.999998 0.000000
-578.752136 249.189484 880.000000
-565.737610 -32.000004 0.000000
-565.737610 236.688080 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-565.737610 -32.000004 880.000122
-545.166138 -32.000000 880.000000
-565.737610 -32.000004 0.000000
-565.737610 236.688080 880.000122
-545.166138 -32.000000 0.000000
-545.166138 227.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-545.166138 -32.000000 880.000000
-512.000000 -32.000000 880.000000
-545.166138 -32.000000 0.000000
-545.166138 227.545197 880.000000
-512.000000 -32.000000 0.000000
-512.000000 224.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-816.000000 -32.000000 880.000000
-782.833801 -32.000000 880.000000
-816.000000 -32.000000 0.000000
-816.000000 352.000000 880.000000
-782.833801 -32.000000 0.000000
-782.833801 348.454803 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-782.833801 -32.000000 880.000000
-762.262390 -32.000000 879.999939
-782.833801 -32.000000 0.000000
-782.833801 348.454803 880.000000
-762.262390 -32.000000 0.000000
-762.262390 339.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-762.262390 -32.000000 879.999939
-749.247803 -32.000000 880.000000
-762.262390 -32.000000 0.000000
-762.262390 339.311951 879.999939
-749.247803 -32.000000 0.000000
-749.247803 326.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-749.247803 -32.000000 880.000000
-738.752197 -31.999998 880.000000
-749.247803 -32.000000 0.000000
-749.247803 326.810486 880.000000
-738.752197 -31.999998 0.000000
-738.752197 313.189453 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-738.752197 -31.999998 880.000000
-725.737671 -32.000004 880.000122
-738.752197 -31.999998 0.000000
-738.752197 313.189453 880.000000
-725.737671 -32.000004 0.000000
-725.737671 300.688080 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-725.737671 -32.000004 880.000122
-705.166199 -32.000000 880.000000
-725.737671 -32.000004 0.000000
-725.737671 300.688080 880.000122
-705.166199 -32.000000 0.000000
-705.166199 291.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-705.166199 -32.000000 880.000000
-672.000000 -32.000000 880.000000
-705.166199 -32.000000 0.000000
-705.166199 291.545197 880.000000
-672.000000 -32.000000 0.000000
-672.000000 288.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-880.000000 352.000000 880.000000
-816.000000 352.000000 880.000000
-816.000000 -32.000000 880.000000
-880.000000 -32.000000 0.000000
-816.000000 -32.000000 0.000000
-880.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
176.000000 96.000000 880.000000
192.000000 96.000000 880.000000
192.000000 -32.000000 880.000000
176.000000 -32.000000 0.000000
192.000000 -32.000000 0.000000
176.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
336.000000 160.000000 880.000000
352.000000 160.000000 880.000000
352.000000 -32.000000 880.000000
336.000000 -32.000000 0.000000
336.000000 -32.000000 880.000000
352.000000 -32.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
496.000000 224.000000 880.000000
512.000000 224.000000 880.000000
512.000000 -32.000000 880.000000
496.000000 -32.000000 0.000000
512.000000 -32.000000 0.000000
496.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
656.000000 288.000000 880.000000
672.000000 288.000000 880.000000
672.000000 -32.000000 880.000000
656.000000 -32.000000 0.000000
672.000000 -32.000000 0.000000
656.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
816.000000 352.000000 880.000000
880.000000 352.000000 880.000000
880.000000 -32.000000 880.000000
816.000000 -32.000000 0.000000
880.000000 -32.000000 0.000000
816.000000 -32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
brush
vertices
176.000000 -32.000000 0.000000
142.833832 -32.000000 0.000000
176.000000 -32.000000 880.000000
176.000000 96.000000 880.000000
142.833832 -32.000000 880.000000
142.833832 92.454819 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
142.833832 -32.000000 0.000000
122.262390 -32.000000 0.000000
142.833832 -32.000000 880.000000
142.833832 92.454819 880.000000
122.262390 -32.000000 879.999939
122.262390 83.311951 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
122.262390 -32.000000 0.000000
109.247810 -32.000000 0.000000
122.262390 -32.000000 879.999939
122.262390 83.311951 879.999939
109.247810 -32.000000 880.000000
109.247810 70.810493 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
109.247810 -32.000000 0.000000
98.752167 -31.999998 0.000000
109.247810 -32.000000 880.000000
109.247810 70.810493 880.000000
98.752167 -31.999998 880.000000
98.752167 57.189499 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
98.752167 -31.999998 0.000000
85.737595 -32.000004 0.000000
98.752167 -31.999998 880.000000
98.752167 57.189499 880.000000
85.737595 -32.000004 880.000122
85.737595 44.688053 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
85.737595 -32.000004 0.000000
65.166153 -32.000000 0.000000
85.737595 -32.000004 880.000122
65.166153 -32.000000 880.000000
65.166153 35.545189 880.000000
85.737595 44.688053 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
65.166153 -32.000000 0.000000
31.999998 -32.000000 0.000000
65.166153 -32.000000 880.000000
65.166153 35.545189 880.000000
31.999998 -32.000000 880.000000
31.999998 32.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 3 5 0x00000000
brush
vertices
192.000000 -32.000000 880.000000
225.166183 -32.000000 880.000000
192.000000 -32.000000 0.000000
192.000000 96.000000 880.000000
225.166183 -32.000000 0.000000
225.166183 99.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
225.166183 -32.000000 880.000000
245.737610 -32.000000 879.999939
225.166183 -32.000000 0.000000
225.166183 99.545197 880.000000
245.737610 -32.000000 0.000000
245.737610 108.688049 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
245.737610 -32.000000 879.999939
258.752197 -32.000000 880.000000
245.737610 -32.000000 0.000000
245.737610 108.688049 879.999939
258.752197 -32.000000 0.000000
258.752197 121.189507 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
258.752197 -32.000000 880.000000
269.247833 -31.999998 880.000000
258.752197 -32.000000 0.000000
258.752197 121.189507 880.000000
269.247833 -31.999998 0.000000
269.247833 134.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
269.247833 -31.999998 880.000000
282.262451 -32.000004 880.000122
269.247833 -31.999998 0.000000
269.247833 134.810486 880.000000
282.262451 -32.000004 0.000000
282.262451 147.311966 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
282.262451 -32.000004 880.000122
302.833832 -32.000000 880.000000
282.262451 -32.000004 0.000000
302.833832 -32.000000 0.000000
302.833832 156.454803 880.000000
282.262451 147.311966 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
302.833832 -32.000000 880.000000
336.000000 -32.000000 880.000000
302.833832 -32.000000 0.000000
302.833832 156.454803 880.000000
336.000000 -32.000000 0.000000
336.000000 160.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
352.000000 -32.000000 880.000000
385.166168 -32.000000 880.000000
352.000000 -32.000000 0.000000
352.000000 160.000000 880.000000
385.166168 -32.000000 0.000000
385.166168 163.545181 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
385.166168 -32.000000 880.000000
405.737610 -32.000000 879.999939
385.166168 -32.000000 0.000000
385.166168 163.545181 880.000000
405.737610 -32.000000 0.000000
405.737610 172.688049 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
405.737610 -32.000000 879.999939
418.752197 -32.000000 880.000000
405.737610 -32.000000 0.000000
405.737610 172.688049 879.999939
418.752197 -32.000000 0.000000
418.752197 185.189499 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
418.752197 -32.000000 880.000000
429.247772 -31.999998 880.000000
418.752197 -32.000000 0.000000
429.247772 -31.999998 0.000000
429.247772 198.810486 880.000000
418.752197 185.189499 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
429.247772 -31.999998 880.000000
442.262451 -32.000004 880.000122
429.247772 -31.999998 0.000000
442.262451 -32.000004 0.000000
442.262451 211.311981 880.000122
429.247772 198.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 1 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
442.262451 -32.000004 880.000122
462.833832 -32.000000 880.000000
442.262451 -32.000004 0.000000
462.833832 -32.000000 0.000000
462.833832 220.454819 880.000000
442.262451 211.311981 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
462.833832 -32.000000 880.000000
496.000000 -32.000000 880.000000
462.833832 -32.000000 0.000000
462.833832 220.454819 880.000000
496.000000 -32.000000 0.000000
496.000000 224.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
512.000000 -32.000000 880.000000
545.166199 -32.000000 880.000000
512.000000 -32.000000 0.000000
512.000000 224.000000 880.000000
545.166199 -32.000000 0.000000
545.166199 227.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
545.166199 -32.000000 880.000000
565.737610 -32.000000 879.999939
545.166199 -32.000000 0.000000
545.166199 227.545197 880.000000
565.737610 -32.000000 0.000000
565.737610 236.688049 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
565.737610 -32.000000 879.999939
578.752197 -32.000000 880.000000
565.737610 -32.000000 0.000000
565.737610 236.688049 879.999939
578.752197 -32.000000 0.000000
578.752197 249.189514 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
578.752197 -32.000000 880.000000
589.247742 -31.999998 880.000000
578.752197 -32.000000 0.000000
578.752197 249.189514 880.000000
589.247742 -31.999998 0.000000
589.247742 262.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
589.247742 -31.999998 880.000000
602.262512 -32.000004 880.000122
589.247742 -31.999998 0.000000
589.247742 262.810486 880.000000
602.262512 -32.000004 0.000000
602.262512 275.311981 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
602.262512 -32.000004 880.000122
622.833801 -32.000000 880.000000
602.262512 -32.000004 0.000000
602.262512 275.311981 880.000122
622.833801 -32.000000 0.000000
622.833801 284.454834 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
622.833801 -32.000000 880.000000
656.000000 -32.000000 880.000000
622.833801 -32.000000 0.000000
622.833801 284.454834 880.000000
656.000000 -32.000000 0.000000
656.000000 288.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
672.000000 -32.000000 880.000000
705.166199 -32.000000 880.000000
672.000000 -32.000000 0.000000
672.000000 288.000000 880.000000
705.166199 -32.000000 0.000000
705.166199 291.545197 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
705.166199 -32.000000 880.000000
725.737549 -32.000000 879.999939
705.166199 -32.000000 0.000000
705.166199 291.545197 880.000000
725.737549 -32.000000 0.000000
725.737549 300.688049 879.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
725.737549 -32.000000 879.999939
738.752197 -32.000000 880.000000
725.737549 -32.000000 0.000000
725.737549 300.688049 879.999939
738.752197 -32.000000 0.000000
738.752197 313.189514 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
738.752197 -32.000000 880.000000
749.247803 -31.999998 880.000000
738.752197 -32.000000 0.000000
738.752197 313.189514 880.000000
749.247803 -31.999998 0.000000
749.247803 326.810486 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
749.247803 -31.999998 880.000000
762.262512 -32.000004 880.000122
749.247803 -31.999998 0.000000
749.247803 326.810486 880.000000
762.262512 -32.000004 0.000000
762.262512 339.311981 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 3 0x00000000
brush
vertices
762.262512 -32.000004 880.000122
782.833862 -32.000000 880.000000
762.262512 -32.000004 0.000000
782.833862 -32.000000 0.000000
782.833862 348.454803 880.000000
762.262512 339.311981 880.000122
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000
brush
vertices
782.833862 -32.000000 880.000000
816.000000 -32.000000 880.000000
782.833862 -32.000000 0.000000
782.833862 348.454803 880.000000
816.000000 -32.000000 0.000000
816.000000 352.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
brush
vertices
-896.000000 -32.000000 896.000000
896.000000 -32.000000 896.000000
896.000000 -32.000000 -896.000000
-896.000000 -32.000000 -896.000000
-896.000000 -48.000000 896.000000
896.000000 -48.000000 896.000000
896.000000 -48.000000 -896.000000
-896.000000 -48.000000 -896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-896.000000 576.000000 -897.000000
-896.000366 576.000000 894.999573
-880.000366 576.000000 894.999634
-880.000183 576.000000 -897.000000
-896.000000 -32.000000 -897.000000
-896.000366 -32.000000 894.999573
-880.000366 -32.000000 894.999634
-880.000183 -32.000000 -897.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
-880.000000 575.999939 -32.000000
880.000000 575.999939 -32.000000
880.000000 575.999939 -48.000000
-880.000000 575.999939 -48.000000
-880.000000 -32.000000 -32.000000
880.000000 -32.000000 -32.000000
880.000000 -32.000000 -48.000000
-880.000000 -32.000000 -48.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
64.000000 576.000000 -48.000000
928.293213 576.000000 451.000366
936.793213 576.000000 436.277893
72.500008 576.000000 -62.722431
64.000000 -32.000000 -48.000000
928.293213 -32.000000 451.000366
936.793213 -32.000000 436.277893
72.500008 -32.000000 -62.722431
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
-927.824219 576.000000 450.510956
-64.397751 576.000000 -47.990326
-72.897774 576.000000 -62.712749
-936.324219 576.000000 435.788513
-927.824219 -32.000000 450.510956
-64.397751 -32.000000 -47.990326
-72.897774 -32.000000 -62.712749
-936.324219 -32.000000 435.788513
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
-880.000000 592.000000 896.000000
896.000000 592.000000 896.000000
896.000000 592.000000 -48.000000
-880.000000 592.000000 -48.000000
-880.000000 576.000000 896.000000
896.000000 576.000000 896.000000
896.000000 576.000000 -48.000000
-880.000000 576.000000 -48.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
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 -400.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
2104ce572a1c30bf2c92955574ee3c6becff3c3b | 717ddeb7e700373742c617a95e25a2376565112c | /2438/CH6/EX6.20/Ex6_20.sce | 3768f1ed448b1b9ca13b9842a4f7b7f2264c8d6d | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 609 | sce | Ex6_20.sce | // chapter 6 example 2o
clc;
clear;
//input data
n = 3.0*10^28; //number of electrons per m^3
t = 3*10^-14; //time in s
m = 9.1*10^-31; //mass of electron in kg
L = 2.44*10^-8; //lorentz number in ohm W/K^2
T = 330; //temperature in kelvin
e = 1.6*10^-19; //charge of electron
//calculation
sigma = n*e^2*t/m; //electrical conductivity in (ohm-m)^-1
//result
mprintf('electrial conductivity=%3.2e.(ohm-m)^-1\n',sigma);
810
622
|
f0e59e6bedd4842d53f783f584900c7e5f674dce | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH12/EX12.7/Ex12_7.sce | 6edce62f26708b1263c5732eb5e5d90e6c4834c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sce | Ex12_7.sce | clear;
clc;
//Example 12.7
Ri=50;
R1=10;
R2=90;
Av=10^4;
bv=1/(1+R2/R1);
printf('\nfeedback transfer function=%.2f\n',bv)
Rif=Ri*(1+bv*Av);
Rif=Rif*0.001;//Mohm
printf('\ninput resistance=%.2f MOhm\n',Rif)
|
eeff35b745fa77ea5dcb343c04d8a9c8617f3ff6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH6/EX6.5/exa_6_5.sce | aebd7ffc1c9b089623c11e37cfa891efc9035cf1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 235 | sce | exa_6_5.sce | // Exa 6.5
clc;
clear;
close;
// Given data
delta_I_D= 1.9-1.0;// in mA
delta_V_GS= 3.3-3.0;// in V
gm= delta_I_D/delta_V_GS;//in mA/V
disp("The value of transconductance is "+string(gm)+" mA/V or "+string(gm*10^3)+" HmV10s")
|
786a35e4305c641d0e80e816dcca38ef2dbb0fd1 | c565d26060d56f516d954d4b378b8699c31a71ef | /2-DOF_manual/codes-virtual/comm.sci | 4e9611dc2a5ae54200882cf2d708b96f2efcfe64 | [] | no_license | rupakrokade/sbhs-manual | 26d6e458c5d6aaba858c3cb2d07ff646d90645ce | 5aad4829d5ba1cdf9cc62d72f794fab2b56dd786 | refs/heads/master | 2021-01-23T06:25:53.904684 | 2015-10-24T11:57:04 | 2015-10-24T11:57:04 | 5,258,478 | 0 | 0 | null | 2012-11-16T11:45:07 | 2012-08-01T11:36:17 | Scilab | UTF-8 | Scilab | false | false | 1,040 | sci | comm.sci | mode(0);
function [stop,temp] = comm(heat,fan)
global fdfh fdt fncr fncw m err_count stop m temp
fncr = 'scilabread.sce'; //file to be read - temperature
fncw = 'scilabwrite.sce'; //file to be written - heater, fan
a = mgetl(fdt,1);
b = evstr(a);
byte = mtell(fdt);
mseek(byte,fdt,'set');
if a~= []
temp = b(1,4);
if heat>100
heat = 100;
elseif heat<0
heat = 0;
end;
if fan>100
fan = 100;
elseif fan<0
fan = 0;
end;
A = [m,heat,fan,m];
fdfh = file('open','scilabwrite.sce','unknown');
file('last', fdfh)
write(fdfh,A,'(7(e11.5,1x))');
file('close', fdfh);
m=m+1;
else
m = m+1;
//temp = 0; //This variable will make temp plot go to zero whenever there is a packet loss
err_count = err_count + 1; //counts the no of times network error occurs
if err_count > 200
disp("NO NETWORK COMMUNICATION!");
stop = 1; // status set for stopping simulation
end
end
return
endfunction
|
273b5752f35e16bcd4b15e50c718443450f788c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH7/EX7.3/ex3.sce | ea4d9db8b5fb5049c23cd7656b4cedf64540df4b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,905 | sce | ex3.sce | // Example 7.3 : To determine all parameters for different transistor
I_REF=90*10^-6; // (A)
V_tn=0.7; // (V)
V_tp=0.8; // Magnitude is cconsidered
uC_n=160*10^-6; // uC_n=u_n*C_ox
uC_p=40*10^-6; // uC_p=u_p*C_ox
V_A=10; // (V)
V_DD=2.5; // (V)
V_SS=2.5; // (V)
L=0.8*10^-6; // (m)
r_o2=222; // (ohm)
r_o4=222; // (ohm)
g_m1=0.3; // (mho)
A_1=-g_m1*r_o2*r_o4/(r_o2+r_o4);
disp(A_1,"A_1 (V/V)")
r_o6=111; // (ohm)
r_o7=111; // (ohm)
g_m6=0.6; // (mho)
A_2=-g_m6*r_o6*r_o7/(r_o6+r_o7);
disp(A_2,"A_2 (V/V)")
disp("For Q_1")
W=20*10^-6; // (m)
I_D=I_REF/2; // (A)
disp(I_D,"I_D (A)")
K_p=uC_p*W/L;
V_OV=sqrt(2*I_D/K_p);
disp(V_OV,"V_OV (V)")
V_GS=V_tp+V_OV;
disp(V_GS,"V_GS (V)")
g_m=2*I_D/V_OV;
disp(g_m,"g_m (A/V)")
r_o=V_A/I_D;
disp(r_o,"r_o (ohm)")
disp("For Q_2")
W=20*10^-6; // (m)
I_D=I_REF/2; // (A)
disp(I_D,"I_D (A)")
K_p=uC_p*W/L;
V_OV=sqrt(2*I_D/K_p);
disp(V_OV,"V_OV (V)")
V_GS=V_tp+V_OV;
disp(V_GS,"V_GS (V)")
g_m=2*I_D/V_OV;
disp(g_m,"g_m (A/V)")
r_o=V_A/I_D;
disp(r_o,"r_o (ohm)")
disp("For Q_3")
W=5*10^-6; // (m)
I_D=I_REF/2; // (A)
disp(I_D,"I_D (A)")
K_n=uC_n*W/L;
V_OV=sqrt(2*I_D/K_n);
disp(V_OV,"V_OV (V)")
V_GS=V_tn+V_OV;
disp(V_GS,"V_GS (V)")
g_m=2*I_D/V_OV;
disp(g_m,"g_m (A/V)")
r_o=V_A/I_D;
disp(r_o,"r_o (ohm)")
disp("For Q_4")
W=5*10^-6; // (m)
I_D=I_REF/2; // (A)
disp(I_D,"I_D (A)")
K_n=uC_n*W/L;
V_OV=sqrt(2*I_D/K_n);
disp(V_OV,"V_OV (V)")
V_GS=V_tn+V_OV;
disp(V_GS,"V_GS (V)")
g_m=2*I_D/V_OV;
disp(g_m,"g_m (A/V)")
r_o=V_A/I_D;
disp(r_o,"r_o (ohm)")
disp("For Q_5")
W=40*10^-6; // (m)
I_D=I_REF; // (A)
disp(I_D,"I_D (A)")
K_p=uC_p*W/L;
V_OV=sqrt(2*I_D/K_p);
disp(V_OV,"V_OV (V)")
V_GS=V_tp+V_OV;
disp(V_GS,"V_GS (V)")
g_m=2*I_D/V_OV;
disp(g_m,"g_m (A/V)")
r_o=V_A/I_D;
disp(r_o,"r_o (ohm)")
disp("For Q_6")
W=10*10^-6; // (m)
I_D=I_REF;
disp(I_D,"I_D (A)")
K_n=uC_n*W/L;
V_OV=sqrt(2*I_D/K_n);
disp(V_OV,"V_OV (V)")
V_GS=V_tn+V_OV;
disp(V_GS,"V_GS (V)")
g_m=2*I_D/V_OV;
disp(g_m,"g_m (A/V)")
r_o=V_A/I_D;
disp(r_o,"r_o (ohm)")
disp("For Q_7")
W=40*10^-6; // (m)
I_D=I_REF;
disp(I_D,"I_D (A)")
K_p=uC_p*W/L;
V_OV=sqrt(2*I_D/K_p);
disp(V_OV,"V_OV (V)")
V_GS=V_tp+V_OV;
disp(V_GS,"V_GS (V)")
g_m=2*I_D/V_OV;
disp(g_m,"g_m (A/V)")
r_o=V_A/I_D;
disp(r_o,"r_o (ohm)")
disp("For Q_8")
W=40*10^-6; // (m)
I_D=I_REF;
disp(I_D,"I_D (A)")
K_p=uC_p*W/L;
V_OV=sqrt(2*I_D/K_p);
disp(V_OV,"V_OV (V)")
V_GS=V_tp+V_OV;
disp(V_GS,"V_GS (V)")
g_m=2*I_D/V_OV;
disp(g_m,"g_m (A/V)")
r_o=V_A/I_D;
disp(r_o,"r_o (ohm)")
A_O=A_1*A_2;
disp(20*log10(A_O),"The dc open loop gain in dB")
v_ICMmin=-2.5+1;
disp(v_ICMmin,"Lower limit of input common-mode (V)")
v_ICMmax=2.2-1.1;
disp(v_ICMmax,"Upper limit of input common-mode (V)")
v_Omax=V_DD-V_OV;
disp(v_Omax,"Highest allowable output voltage (V)")
v_Omin=-V_SS+V_OV;
disp(v_Omin,"Lowest allowable output voltage (V)") |
513fdff86098dbfd662779655f2977c25521da65 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/demos/lmitool/normopt2.sci | 568f8b84c1bfbc2d7021804b627abda75ac162f0 | [
"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 | 1,063 | sci | normopt2.sci | function [X,c]=normopt2(sys)
// Generated by lmitool on Wed Feb 08 14:55:43 MET 1995
Mbound = 1e3;
abstol = 1e-10;
nu = 10;
maxiters = 100;
reltol = 1e-10;
options=[Mbound,abstol,nu,maxiters,reltol];
///////////DEFINE INITIAL GUESS BELOW
[A,B,C,D]=abcd(sys)
X_init=eye(A);Ib=eye(B'*B);Ic=eye(C*C');
///////////
XLIST0=list(X_init,c_init)
XLIST=lmisolver(XLIST0,normopt2_eval,options)
[X,c]=XLIST(:)
/////////////////EVALUATION FUNCTION////////////////////////////
function [LME,LMI,OBJ]=normopt2_eval(XLIST)
[X,c]=XLIST(:)
/////////////////DEFINE LME, LMI and OBJ BELOW
LME=X'-X
LMI=-[A*X+X*A',B,X*C';B',-gama*Ib,D';C*X,D,-gama*Ic]
// LMI=-[A*X*E'+E*X*A',B,E*X*C';B',-gama*Ib,D';C*X*E',D,-gama*Ic]
OBJ=gama
|
a637499fadc080dc1d021a9a8d067396d4ab679a | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH7/EX7.1/7_1.sce | dcf0b8310fea278310d2612b4c6d91f4e3b6fb2e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 549 | sce | 7_1.sce | //To find the angular velocity
clc
//Given:
NBA=120 //rpm
AB=40/1000,CD=80/1000 //m
//Solution:
//Refer Fig. 7.7
//Calculating the angular velocity of the crank AB
omegaBA=2*%pi*NBA/60 //rad/s
//Calculating the velocity of B with respect to A
vBA=omegaBA*AB //m/s
vB=vBA
//By measurement from the velocity diagram, Fig. 7.7(b),
vCD=0.385 //m/s
vC=vCD
//Calculating the angular velocity of link CD
omegaCD=vCD/CD //rad/s
//Results:
printf("\n\n The angular velocity of link CD, omegaCD = %.1f rad/s, clockwise about D.\n\n",omegaCD) |
60e6fb9650f5c446e87d4ac61286095bb4cd1e0d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1016/CH8/EX8.18/ex8_18.sce | 376e80e5117ef2196fdfe1187b937d3e1481a69f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sce | ex8_18.sce | clc;clear;
//Example 8.18
//given data
D=32;//angle in degree
W=1.54*10^-10;//wavelength in angstrom
h=2;k=2;l=0;//lattice consts
//calcualtions
d=W/(2*sind(D));
a=d*sqrt(h^2+k^2+l^2);
disp(a,'lattice parameter in m');
r=sqrt(2)*a/4;
disp(r,'radius of atom in m') |
875ad51bfbcd67279e872a770412d70270cb901c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1883/CH1/EX1.2.1/Example1_24.sce | 3702c56355db9c37017830ab09a6642ea1b81603 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example1_24.sce | //Chapter-1,Example1_2_1,pg 1-11
i=45 //angle of incidence
u=1.2 //refractive index of soap film
t=4*10^-5 //thickness of soap film
r=asind(sind(i)/u) //by Snell's law
//for dark band '2*u*t*cos(r) = n*lam'
wavelength_1=(2*u*t*cosd(r)/1)*10^8 //for n=1
wavelength_2=(2*u*t*cosd(r)/2)*10^8 //for n=2
wavelength_3=(2*u*t*cosd(r)/3)*10^8 //for n=3
//visible range of wavelengths is 4000 A. to 7000 A.
printf('\n for n=1 wavelength = %.1f A.\n',wavelength_1)
printf('\n for n=2 wavelength = %.1f A.\n',wavelength_2)
printf('\n for n=3 wavelength = %.2f A.\n',wavelength_3)
printf('\n hence, none of the wavelengths from the visible region are absent in reflected light ')
|
bb26ea3d195f3ca957a12e98fc9ce9891db2d354 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH19/EX19.10/19_10.sce | 3838a2efb611c5b5cba5e3a8a403c08e41180cd5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 19_10.sce | //Chapter 19, Problem 10
clc;
R=200e3; //resistance
Vi=-0.75; //input voltage
C=2.5e-6; //capacitance
Vo = (-1/(C*R))*integrate('-0.75', 't', 0, 0.1) //output voltage
printf("\n Output voltage is %.2f V",Vo)
|
a50bfb820b0670568f157f6d0178eee1cbeedd9e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH10/EX10.12/10Ex12.sce | 42475f00cf5e6b79899aaca99526175243e749a3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 202 | sce | 10Ex12.sce | //chapter 10 Ex 12
clc;
clear;
close;
num=81.472;
nearNum=81.5; //nearest floating number
Error=nearNum-num;
percent=(Error/num)*100;
printf("The percentage error is %0.3f percent",percent);
|
941d2b50cd648775518457352881e4f158e06849 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2840/CH3/EX3.4/ex3_4.sce | f593ceaa68a5cb893139cf603af62885f98d5e54 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 153 | sce | ex3_4.sce | clc;
f=1e6 //frequency in Hz
L=1 //inductance in henry
//f=(1/2*pi)*(sqrt(1/(L*C)))
c=1/(4*%pi^2*f^2*L);//capacitance
disp(+'F',c,'capacitance =')
|
4a95d320623e5a9296f7fbdd9a00d4ad8cdc4d84 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1286/CH4/EX4.2/4_2.sce | eeda8a36f98be8faecb7db63744118553bd8e88f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 244 | sce | 4_2.sce | clc
//initialisations
t1=20//c
m1=10//gm
t2=-80//c
t2=15//c
m2=10.77//gm
t3=10//c
c=0.5
//CALCULATIONS
A=[5 -10;5 -10.77]
b=[550;488.5]
c=A\b
R1=c(1,1)
R2=c(2,1)
//results
printf(' latent heat of fusion of ice= %1f cal/gm',R2)
|
90e81af6ba13f965a75e077dcc1bfc4b22af913b | 91bba043768342a4e23ee3a4ff1aa52fe67f7826 | /cs/142/1/tests/test26.tst | 30973bcd40db3c76a458c999d41fa7821f8d2e12 | [] | no_license | MaxNanasy/old-homework | 6beecc3881c953c93b847f1d0d93a64ec991d6de | 48b7997a49a8f111344f30787c178e1661db04bd | refs/heads/master | 2016-09-08T04:37:44.932977 | 2010-03-02T00:48:59 | 2010-03-02T00:48:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 21 | tst | test26.tst | main() { ::procedure} |
f76a24302af38b0149f3d3ae2c3360286430d110 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH13/EX13.8/94ex.sce | 224b29d58357083e0e795943176718211cdbb605 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 214 | sce | 94ex.sce |
clc;
close;
clear;
x=poly(0,'x');
p=(x+1)^2
p1=(x-1)^2
a=poly(0,'a');
p2=(a+9)^2
p3=string('(1-5xy)^2=1-10xy+25x^2y^2')
p4=string('(2x+7y)^2=4x^2 +28xy +49y^2')
p5=string('(3a-10b)^2=9a^2-60ab+100b^2')
|
17ca075b552d57515c08db9a343a92ad04be9540 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/islinphase/islinphase3.sce | f2f3e4ee8d50b846b531ce1876b208e457c3affb | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 99 | sce | islinphase3.sce | b=[1.0000 -0.9999];
a=[1.0000 0.4500];
flag2=islinphase(b,a,1e-3);
disp(flag2);
//output
// 0
|
60a0e96f2b492d7da35e4a1903aaa0cc9622e181 | 6fb11fd0a9cf84fb1a7580d43d7f38a423b710d4 | /graph-make-trip/trip-tests/.#trip01.tst | 60e0121897d5bbb1c66f9c9bae90659eca37010e | [] | no_license | rueberger/class-projects | 5004bf0de00262b3a1df2cd861961428b2d3d1a5 | e20b01b86939be22be64a48b36f8559f5425c43f | refs/heads/master | 2021-01-15T08:09:32.279621 | 2015-11-10T10:25:22 | 2015-11-10T10:25:22 | 24,175,919 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 42 | tst | .#trip01.tst | andrew@andrew-Lenovo-U410.19969:1387943765 |
a59ad91c0d1ea30dc691c750ea97add509e0bf9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2006/CH8/EX8.4/ex8_4.sce | 80bea46552dbd0d7cef5bc1dff8ef112449f92ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,071 | sce | ex8_4.sce | clc;
T3=450; // temperature of steam at state 3 in degree celcius
p3=10; // Boiler pressure in MPa
p6=5; // Condenser pressure in kPa
// From steam tables at state 1
hf=137.82; hfg=2423.7; // specific enthalpy in kJ/kg
sf=0.4764; sfg=7.9187; // specific entropy in kJ/kg K
h1=137.82; // specific enthalpy at state 1 in kJ/kg
s1=0.4764; // specific entropy at state in kJ/kgK
v1=0.001005; // specific volume in m^3/kg
wp=abs (v1*(p3*10^3-p6)); // Pump work (absolute value)
h2=h1+wp; // specific enthalpy at state 2
// (a).Rankine cycle with superheat
// From steam tables at state 3
h3=3240.9;// specific enthalpy in kJ/kg
s3=6.419; // specific entropy in kJ/kg K
// State 4_1
x4_1=(s3-sf)/sfg; // Quality of steam at state 4_1
h4_1=hf+x4_1*hfg; // specific enthalpy at state 4_1
wT=h3-h4_1; // Turbine work
wnet=wT-wp; // Net work output
qH=h3-h2; // Heat added
eff_th=wnet/qH; // Thermal efficiency
SSC=3600/wnet; // specific steam consumption
disp ("kg/kWh",SSC,"specific steam consumption =","%",eff_th*100,"Thermal efficiency =",x4_1,"Quality of steam at exhaust = ","(a).Rankine cycle with superheat");
// (b).Reheat cycle
s4=s3; // isentropic expansion
x4=0.975; // Quality of steam at state 4
// from steam table intermediate pressure is selected for s4 & x4 by interpolation and assumed by round value
p4=1.2; // Intermediate pressure in MPa
// From steam tables at state 4
hf4=798.6; hfg4=1986.2; // specific enthalpy in kJ/kg
h4=hf4+x4*hfg4; // specific enthalpy in kJ/kg
// From steam tables at state 5
h5=3368.5;// specific enthalpy in kJ/kg
s5=7.5266; // specific entropy in kJ/kg K
x6=(s5-sf)/sfg; // Quality of steam at state 6
h6=hf+x6*hfg; // specific enthalpy in kJ/kg
wT=(h3-h4)+(h5-h6); // Turbine work
wnet=wT-wp; // Net work output
qH=(h3-h2)+(h5-h4); // Heat added
eff_th=wnet/qH; // Thermal efficiency
SSC=3600/wnet; // specific steam consumption
disp ("kg/kWh",SSC,"specific steam consumption =","%",eff_th*100,"Thermal efficiency =",x6,"Quality of steam at exhaust = ","(b).Reheat cycle");
|
5ae73479aa5586c5c88484a60a6828244c1a95a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1835/CH7/EX7.5/Ex7_5.sce | 5802a4011224c4efad649d3e6036502700e47c9a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,390 | sce | Ex7_5.sce | //CHAPTER 7 ILLUSRTATION 5 PAGE NO 200
//TITLE:GOVERNORS
//FIGURE 7.8
clc
clear
//===========================================================================================
//INPUT DATA
g=9.81// ACCELERATION DUE TO GRAVITY
OA=.30// LENGHT OF UPPER ARM IN m
AC=.30// LENGTH OF LOWER ARM IN m
m=10// MASS OF BALL IN Kg
M=50// MASS OF SLEEVE IN Kg
r=.2// RADIUS OF ROTATION IN m
CD=.04// DISTANCE BETWEEN AXIS AND LOWER ARM IN m
F=15// FRICTIONAL LOAD ACTING IN N
//============================================================
h=(OA^2-r^2)^.5// HIEGTH OF THE GOVERNOR IN m
AE=r-CD// AE VALUE IN m
CE=(AC^2-AE^2)^.5// BD DISTANCE IN m
TANalpha=r/h// TAN OF ANGLE OF INCLINATION OF THE ARM TO THE VERTICAL
TANbeeta=AE/CE// TAN OF ANGLE OF INCLINATION OF THE LINK TO THE VERTICAL
k=TANbeeta/TANalpha
N=((895/h)*(m+(M*(1+k)/2))/m)^.5// EQULIBRIUM SPEED IN rpm
N1=((895/h)*((m*g)+(M*g+F)/2)*(1+k)/(m*g))^.5// MAX SPEED IN rpm
N2=((895/h)*((m*g)+(M*g-F)/2)*(1+k)/(m*g))^.5// MIN SPEED IN rpm
R=N1-N2// RANGE OF SPEED
printf('EQUILIBRIUM SPEED OF GOVERNOR = %.3f rpm\n RANGE OF SPEED OF GOVERNOR= %.3f rpm',N,R)
|
7e04bf74e29e135526f86db4e4767352889efc5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH9/EX9.19/example19.sce | de5cce59f0c7d52f066eff11a842dd71d0dd1e23 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,118 | sce | example19.sce | clc
clear
//input data
D=8//Outer diameter of the turbine in m
Db=3//Inner diameter of the turbine in m
P=30000//Power developed by the turbine in kW
nH=0.95//Hydraulic efficiency
N=80//Speed of the turbine in rpm
H=12//Head operated by the turbine in m
Q=300//Discharge through the runner in m^3/s
g=9.81//Acceleration due to gravity in m/s^2
dw=1000//Density of water in kg/m^3
//calculations
U1=(3.1415*D*N)/60//Runner tip speed at inlet in m/s
U2=U1//Runner tip speed at outlet in m/s as flow is axial
Cr1=Q/((3.1415/4)*(D^2-Db^2))//Flow velocity at inlet in m/s
Cr2=Cr1//Flow velocity at outlet in m/s as flow is axial
b22=atand(Cr2/U2)//The angle of the runner blade at outlet in degree
Cx1=(nH*g*H)/U1//Velocity of whirl at inlet in m/s
b11=180-(atand(Cr1/(U1-Cx1)))//The angle of the runner blade at inlet in degree
nM=(P*10^3)/(dw*g*Q*(Cx1*U1/g))//Mechanical efficiency
n0=nM*nH//Overall efficiency
//output
printf('(a)Blade angle at\n inlet is %3.2f degree\n outlet is %3.2f degree\n(b)Mechanical efficiency is %3.3f\n(c)Overall efficiency is %3.3f',b11,b22,nM,n0)
|
b2dd16a05ba9de22e5ef1bd3ce89dcf6a264a478 | 61e39cdb9efce4bc7bc35be444b193c1066f1bf2 | /newtonforwad.sce | cf2a065a412c93dbe0b08ea9d01fb97dfe96b84a | [] | no_license | nancyanand2807/SCILAB-CODES | 866c1c99754975f9f0deb271d3844c854db1645c | 69bf72606e8cd62aae3d1302c734f425d381a121 | refs/heads/master | 2020-06-02T00:39:27.236873 | 2019-06-09T11:26:55 | 2019-06-09T11:26:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 436 | sce | newtonforwad.sce | //Forward Difference
x=input("Enter value of x as row matrix:")
y=input("Enter value of y as row matrix:")
xg=input("Enter xg at which we want to interpolate:")
n=length(x)
h=x(2)-x(1)
u=(xg-x(1))/h
disp("Forward difference table is:")
for i=1:n-1
disp(diff(y,i))
end
yg=y(1)
p=u
for i=1:n-1
d=diff(y,i)
yg=yg+p*d(1)
p=p*((u-i)/(i+1))
end
disp(yg,"The interpolation by forward difference table is :")
|
df8bbbc5654a5c93bdf72f9d40db039d3ff7b20b | 449d555969bfd7befe906877abab098c6e63a0e8 | /767/CH4/EX4.7.5/Ch04Exa4_7_5.sci | db2e4e4c2f37c36085d704d5877a0fb358c21d59 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 763 | sci | Ch04Exa4_7_5.sci | // Scilab code Exa4.7.5: To determine the number of nuclear fission and decrease in mass during explosion at hiroshima : Page 191 (2011)
E = 200*1.6e-013; // Energy released during fission of one nucleus, J
E_t = 20000*4.18e+09; // Energy released in detonation of 20000 tons of TNT, J
N_f = E_t/E; // Number of fission occured during eplosion, fissions
c = 3e+08; // Velocity of light, m/s
m = E_t/(c)^2*10^6; // Decrease in mass during explosion, mg
m_r = round(m)
printf("\n Number of fissions occured during explosion = %4.2e fissions \n Decrease in mass during explosion = %d mg ", N_f, m_r)
// Result
// Number of fissions occured during explosion = 2.61e+024 fissions
// Decrease in mass during explosion = 929 mg |
c8af65a4a6c0d718a07a0b2aa6c8efc6a05364b3 | 717ddeb7e700373742c617a95e25a2376565112c | /806/DEPENDENCIES/269.sci | 527926d6b6f8fd15b35b608eab3f599f2d1278a2 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 218 | sci | 269.sci | p=54//lb/ft^3(Weigth density of liquid)
h1=12//feet(Liquid height on one side of the gate)
h2=8//feet(Liquid height on other side of the gate)
b=8//feet
c=6//feet
w=6//feet(Width of gate)
W=2000//kg(Mass of gate) |
968a9be7b278bb8dde62e7811bf188e8949e169e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3515/CH1/EX1.7/Ex_1_7.sce | 36bf0cb8bc4af115355cf8fb2c5140d6f7eaa681 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 507 | sce | Ex_1_7.sce | // Exa 1.7
format('v',7);
clc;
clear;
close;
// Given data
V1= 745;// in µV
V2= 740;// in µV
V1=V1*10^-6;// in volt
V2=V2*10^-6;// in volt
CMRR=80;// in dB
Av=5*10^5;
// (i)
// CMRR in dB= 20*log(Ad/Ac)
Ad=Av;
Ac= Ad/10^(CMRR/20);
// (ii)
Vo= Ad*(V1-V2)+Ac*(V1+V2)/2;
disp(Vo,"Output voltage in volt is : ")
// Note:- In the book, there is calculation error to evaluate the value of Ac, so the value of Ac is wrong ans to evaluate the output voltage there is also calculation error
|
a1ef0fd935ef5eaee97a7c0465c4f5f5c7b3fe3f | f6134e0a162a059c42ec3ef8de2a63941d73936c | /Scilab_code/RLG/sampleFromMultInterval.sci | efa8cb5dec6a2cb970f468d9c935a76cade744c3 | [] | 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 | 1,176 | sci | sampleFromMultInterval.sci | function smpl = sampleFromMultInterval(multipleIntv)
//Author : Maxens ACHIEPI
//Space Robotics Laboratory - Tohoku University
//Description:
//
//INPUT
//multipleIntv: matrix of intervals. Size is Nx2.
//OUTPUT
//sample: a uniform random sample in one of the interval of the input
//----------------------------------------------------------------------------//
N = size(multipleIntv,1);
lowBnd = zeros(1,N);
highBnd = zeros(1,N);
sizeIntv = zeros(1,N);
sizeIntvs = 0;
lowBnd(1) = multipleIntv(1,1);
highBnd(1) = multipleIntv(1,2);
sizeIntv(1) = abs(highBnd(1)-lowBnd(1));
sizeIntvs = sizeIntvs + sizeIntv(1);
for i = 2:N
lowBnd(i) = multipleIntv(i,1);
highBnd(i) = multipleIntv(i,2);
size_i = abs(highBnd(i)-lowBnd(i));
sizeIntv(i) = sizeIntv(i-1) + size_i;
sizeIntvs = sizeIntvs + size_i;
end
weightedBern = rand()*sizeIntvs;
for i =1:N
if weightedBern <= sizeIntv(i) then
smpl = lowBnd(i) + rand()*(highBnd(i)-lowBnd(i));
break;
end
end
endfunction
|
6a2a7f3ef2b4adc7ed6cbfe4b57aa74f728582d3 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/DEVELOPMENT-LANGUAGES/niger-congo/aka.tst | 49c7cb692d4eb915a0d4178df2d345c85ce72cf7 | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 17,063 | tst | aka.tst | wie V;HAB;NEG;FUT
wie V;PRF;PRS;LGSPEC1
wie V;PRF;PST+IMMED
wie V;NEG;PRS;LGSPEC1
wie V;HAB;FUT
wie V;HAB+PRF;PRS
wie V;PROG;NEG;PRS+IMMED
wie V;IMP;NEG;PRS
wie V;HAB+PROG;PST
wie V;HAB+PROG;NEG;PST
wie V;HAB+PRF;NEG;PST
wie V;PRF;NEG;PRS+IMMED
wie V;PRF;PRS+IMMED
wie V;PROG;PRS+IMMED
wie V;NEG;PST;LGSPEC1
wie V;HAB+PROG;PRS
wie V;PST;LGSPEC1
wie V;HAB;PRS
wie V;PROG;PST+IMMED
wie V;HAB+PRF;NEG;PRS
wie V;HAB+PROG;NEG;PRS
wie V;NEG;PST+IMMED
wie V;HAB;PST
wie V;PROG;NEG;PRS;LGSPEC1
wie V;SBJV;PRS
wie V;PRS;LGSPEC1
wie V;PRF;NEG;PST+IMMED
wie V;IMP;PRS
wie V;HAB;NEG;PRS
wie V;PRF;PST;LGSPEC1
wie V;PST+IMMED
wie V;PROG;PST;LGSPEC1
wie V;HAB;NEG;PST
wie V;PROG;PRS;LGSPEC1
wie V;PROG;NEG;PST;LGSPEC1
wie V;PRF;NEG;PST;LGSPEC1
wie V;PROG;NEG;PST+IMMED
wie V;PRF;NEG;PRS;LGSPEC1
wie V;HAB+PRF;PST
wie V;SBJV;NEG;PRS
wie V;NFIN
tow .. mu V;HAB;PRS
tow .. mu V;HAB+PRF;PRS
tow .. mu V;HAB;FUT
tow .. mu V;PROG;NEG;PRS;LGSPEC1
tow .. mu V;PRF;PST;LGSPEC1
tow .. mu V;HAB+PRF;NEG;PRS
tow .. mu V;SBJV;NEG;PRS
tow .. mu V;PRF;NEG;PST+IMMED
tow .. mu V;PROG;PRS;LGSPEC1
tow .. mu V;HAB+PROG;NEG;PST
tow .. mu V;HAB+PROG;PST
tow .. mu V;IMP;NEG;PRS
tow .. mu V;PST+IMMED
tow .. mu V;HAB+PROG;NEG;PRS
tow .. mu V;HAB;PST
tow .. mu V;HAB+PROG;PRS
tow .. mu V;HAB;NEG;FUT
tow .. mu V;NEG;PRS;LGSPEC1
tow .. mu V;HAB;NEG;PST
tow .. mu V;PRF;PRS;LGSPEC1
tow .. mu V;NEG;PST;LGSPEC1
tow .. mu V;PRF;NEG;PST;LGSPEC1
tow .. mu V;HAB+PRF;NEG;PST
tow .. mu V;PROG;NEG;PST+IMMED
tow .. mu V;PROG;PRS+IMMED
tow .. mu V;PRF;PRS+IMMED
tow .. mu V;PRF;NEG;PRS;LGSPEC1
tow .. mu V;PROG;NEG;PST;LGSPEC1
tow .. mu V;SBJV;PRS
tow .. mu V;PROG;PST;LGSPEC1
tow .. mu V;PRF;NEG;PRS+IMMED
tow .. mu V;NEG;PST+IMMED
tow .. mu V;PST;LGSPEC1
tow .. mu V;PROG;PST+IMMED
tow .. mu V;NFIN
tow .. mu V;PRS;LGSPEC1
tow .. mu V;HAB+PRF;PST
tow .. mu V;HAB;NEG;PRS
tow .. mu V;IMP;PRS
tow .. mu V;PRF;PST+IMMED
tow .. mu V;PROG;NEG;PRS+IMMED
tu nguan V;PROG;PRS;LGSPEC1
tu nguan V;PROG;PST+IMMED
tu nguan V;PRF;NEG;PRS;LGSPEC1
tu nguan V;HAB+PRF;PRS
tu nguan V;PRF;PST+IMMED
tu nguan V;PROG;NEG;PRS+IMMED
tu nguan V;PROG;PRS+IMMED
tu nguan V;NEG;PST;LGSPEC1
tu nguan V;NEG;PRS;LGSPEC1
tu nguan V;PRF;NEG;PST;LGSPEC1
tu nguan V;PRF;PST;LGSPEC1
tu nguan V;HAB;NEG;PRS
tu nguan V;PROG;NEG;PST;LGSPEC1
tu nguan V;IMP;PRS
tu nguan V;PROG;PST;LGSPEC1
tu nguan V;PRF;NEG;PRS+IMMED
tu nguan V;PRF;NEG;PST+IMMED
tu nguan V;PROG;NEG;PST+IMMED
tu nguan V;HAB;NEG;PST
tu nguan V;PRF;PRS;LGSPEC1
tu nguan V;HAB+PROG;NEG;PST
tu nguan V;HAB+PROG;PST
tu nguan V;HAB;PRS
tu nguan V;PROG;NEG;PRS;LGSPEC1
tu nguan V;PRS;LGSPEC1
tu nguan V;HAB;FUT
tu nguan V;PST+IMMED
tu nguan V;HAB;NEG;FUT
tu nguan V;PRF;PRS+IMMED
tu nguan V;HAB;PST
tu nguan V;HAB+PROG;NEG;PRS
tu nguan V;SBJV;NEG;PRS
tu nguan V;HAB+PROG;PRS
tu nguan V;NEG;PST+IMMED
tu nguan V;HAB+PRF;NEG;PST
tu nguan V;PST;LGSPEC1
tu nguan V;HAB+PRF;PST
tu nguan V;HAB+PRF;NEG;PRS
tu nguan V;SBJV;PRS
tu nguan V;NFIN
tu nguan V;IMP;NEG;PRS
mene V;HAB;NEG;FUT
mene V;HAB+PROG;PRS
mene V;HAB;NEG;PST
mene V;PRS;LGSPEC1
mene V;SBJV;PRS
mene V;SBJV;NEG;PRS
mene V;HAB+PRF;PST
mene V;HAB;FUT
mene V;PROG;PST+IMMED
mene V;PROG;NEG;PST;LGSPEC1
mene V;HAB+PROG;PST
mene V;PROG;NEG;PST+IMMED
mene V;PRF;NEG;PRS+IMMED
mene V;PROG;NEG;PRS+IMMED
mene V;HAB+PRF;PRS
mene V;NEG;PST;LGSPEC1
mene V;PROG;NEG;PRS;LGSPEC1
mene V;HAB+PROG;NEG;PRS
mene V;IMP;NEG;PRS
mene V;IMP;PRS
mene V;NEG;PST+IMMED
mene V;HAB;PRS
mene V;PROG;PRS+IMMED
mene V;HAB+PRF;NEG;PRS
mene V;PST;LGSPEC1
mene V;NFIN
mene V;PRF;NEG;PST+IMMED
mene V;PRF;PST+IMMED
mene V;NEG;PRS;LGSPEC1
mene V;PRF;PRS+IMMED
mene V;PROG;PST;LGSPEC1
mene V;PRF;NEG;PST;LGSPEC1
mene V;HAB;PST
mene V;PROG;PRS;LGSPEC1
mene V;PRF;NEG;PRS;LGSPEC1
mene V;HAB+PRF;NEG;PST
mene V;HAB+PROG;NEG;PST
mene V;PRF;PST;LGSPEC1
mene V;PRF;PRS;LGSPEC1
mene V;HAB;NEG;PRS
mene V;PST+IMMED
dum V;HAB;PST
dum V;PROG;PRS+IMMED
dum V;PROG;PRS;LGSPEC1
dum V;HAB;PRS
dum V;HAB+PROG;NEG;PST
dum V;HAB;NEG;FUT
dum V;NEG;PRS;LGSPEC1
dum V;HAB;NEG;PRS
dum V;HAB+PROG;NEG;PRS
dum V;PRF;NEG;PST;LGSPEC1
dum V;PROG;NEG;PST;LGSPEC1
dum V;PROG;NEG;PRS+IMMED
dum V;PROG;PST;LGSPEC1
dum V;HAB+PRF;NEG;PST
dum V;SBJV;NEG;PRS
dum V;PRF;NEG;PRS+IMMED
dum V;PRF;PRS+IMMED
dum V;PRS;LGSPEC1
dum V;PRF;PST+IMMED
dum V;NFIN
dum V;IMP;NEG;PRS
dum V;PST;LGSPEC1
dum V;HAB+PROG;PRS
dum V;PRF;NEG;PRS;LGSPEC1
dum V;HAB+PRF;PST
dum V;NEG;PST;LGSPEC1
dum V;PROG;NEG;PRS;LGSPEC1
dum V;HAB+PRF;NEG;PRS
dum V;IMP;PRS
dum V;PRF;PST;LGSPEC1
dum V;PROG;NEG;PST+IMMED
dum V;HAB;FUT
dum V;PRF;NEG;PST+IMMED
dum V;HAB;NEG;PST
dum V;HAB+PROG;PST
dum V;PST+IMMED
dum V;NEG;PST+IMMED
dum V;PRF;PRS;LGSPEC1
dum V;PROG;PST+IMMED
dum V;HAB+PRF;PRS
dum V;SBJV;PRS
kekamu V;HAB+PROG;PST
kekamu V;PROG;NEG;PST;LGSPEC1
kekamu V;HAB;NEG;FUT
kekamu V;PROG;NEG;PST+IMMED
kekamu V;HAB+PROG;PRS
kekamu V;NEG;PST+IMMED
kekamu V;HAB;FUT
kekamu V;HAB+PRF;NEG;PRS
kekamu V;HAB;NEG;PRS
kekamu V;PROG;NEG;PRS;LGSPEC1
kekamu V;PST;LGSPEC1
kekamu V;PRF;NEG;PRS;LGSPEC1
kekamu V;PROG;PRS+IMMED
kekamu V;PRF;PRS;LGSPEC1
kekamu V;HAB+PROG;NEG;PRS
kekamu V;SBJV;NEG;PRS
kekamu V;PRS;LGSPEC1
kekamu V;HAB+PRF;PST
kekamu V;HAB;PST
kekamu V;PRF;PST;LGSPEC1
kekamu V;IMP;NEG;PRS
kekamu V;HAB+PRF;PRS
kekamu V;SBJV;PRS
kekamu V;PROG;PRS;LGSPEC1
kekamu V;IMP;PRS
kekamu V;HAB+PROG;NEG;PST
kekamu V;HAB+PRF;NEG;PST
kekamu V;HAB;NEG;PST
kekamu V;HAB;PRS
kekamu V;PRF;PST+IMMED
kekamu V;PRF;NEG;PST;LGSPEC1
kekamu V;NEG;PST;LGSPEC1
kekamu V;PRF;NEG;PST+IMMED
kekamu V;PRF;PRS+IMMED
kekamu V;NEG;PRS;LGSPEC1
kekamu V;PROG;NEG;PRS+IMMED
kekamu V;NFIN
kekamu V;PRF;NEG;PRS+IMMED
kekamu V;PST+IMMED
kekamu V;PROG;PST;LGSPEC1
kekamu V;PROG;PST+IMMED
kyerɛ V;HAB+PRF;PST
kyerɛ V;PROG;NEG;PRS;LGSPEC1
kyerɛ V;NEG;PRS;LGSPEC1
kyerɛ V;HAB;PRS
kyerɛ V;HAB;NEG;PST
kyerɛ V;PRF;PST+IMMED
kyerɛ V;SBJV;NEG;PRS
kyerɛ V;NEG;PST;LGSPEC1
kyerɛ V;PST;LGSPEC1
kyerɛ V;PRF;NEG;PRS+IMMED
kyerɛ V;PRF;NEG;PST;LGSPEC1
kyerɛ V;PROG;PST+IMMED
kyerɛ V;PROG;NEG;PST+IMMED
kyerɛ V;NFIN
kyerɛ V;PROG;PRS+IMMED
kyerɛ V;HAB+PRF;NEG;PRS
kyerɛ V;PRF;PRS+IMMED
kyerɛ V;HAB+PROG;NEG;PST
kyerɛ V;IMP;NEG;PRS
kyerɛ V;PST+IMMED
kyerɛ V;PROG;PST;LGSPEC1
kyerɛ V;PRF;NEG;PRS;LGSPEC1
kyerɛ V;PRF;PRS;LGSPEC1
kyerɛ V;HAB;PST
kyerɛ V;PROG;PRS;LGSPEC1
kyerɛ V;PROG;NEG;PRS+IMMED
kyerɛ V;PRF;PST;LGSPEC1
kyerɛ V;IMP;PRS
kyerɛ V;HAB+PROG;PRS
kyerɛ V;HAB;FUT
kyerɛ V;HAB+PRF;PRS
kyerɛ V;PRF;NEG;PST+IMMED
kyerɛ V;HAB;NEG;FUT
kyerɛ V;PRS;LGSPEC1
kyerɛ V;HAB+PROG;PST
kyerɛ V;HAB;NEG;PRS
kyerɛ V;PROG;NEG;PST;LGSPEC1
kyerɛ V;SBJV;PRS
kyerɛ V;HAB+PRF;NEG;PST
kyerɛ V;NEG;PST+IMMED
kyerɛ V;HAB+PROG;NEG;PRS
nyam V;PRF;PST;LGSPEC1
nyam V;PRF;NEG;PRS+IMMED
nyam V;PRF;NEG;PRS;LGSPEC1
nyam V;HAB+PROG;NEG;PRS
nyam V;SBJV;PRS
nyam V;PRF;PRS;LGSPEC1
nyam V;HAB;NEG;PST
nyam V;IMP;NEG;PRS
nyam V;HAB;PRS
nyam V;PROG;PRS+IMMED
nyam V;NEG;PST;LGSPEC1
nyam V;PRF;PRS+IMMED
nyam V;HAB+PRF;NEG;PRS
nyam V;PRF;NEG;PST;LGSPEC1
nyam V;NEG;PST+IMMED
nyam V;HAB+PROG;PRS
nyam V;PROG;NEG;PRS;LGSPEC1
nyam V;PST;LGSPEC1
nyam V;PROG;PST+IMMED
nyam V;HAB+PROG;NEG;PST
nyam V;HAB+PRF;NEG;PST
nyam V;HAB+PRF;PRS
nyam V;PRS;LGSPEC1
nyam V;PRF;NEG;PST+IMMED
nyam V;PROG;NEG;PST;LGSPEC1
nyam V;HAB;FUT
nyam V;SBJV;NEG;PRS
nyam V;PRF;PST+IMMED
nyam V;HAB;NEG;PRS
nyam V;NEG;PRS;LGSPEC1
nyam V;HAB;PST
nyam V;PST+IMMED
nyam V;HAB;NEG;FUT
nyam V;PROG;PST;LGSPEC1
nyam V;NFIN
nyam V;HAB+PROG;PST
nyam V;PROG;NEG;PST+IMMED
nyam V;PROG;PRS;LGSPEC1
nyam V;IMP;PRS
nyam V;HAB+PRF;PST
nyam V;PROG;NEG;PRS+IMMED
kasa V;HAB+PROG;PST
kasa V;PROG;NEG;PRS+IMMED
kasa V;PRF;NEG;PST+IMMED
kasa V;PRF;PST;LGSPEC1
kasa V;PROG;PST;LGSPEC1
kasa V;PRF;PRS;LGSPEC1
kasa V;SBJV;PRS
kasa V;HAB;NEG;PST
kasa V;PRF;NEG;PST;LGSPEC1
kasa V;NEG;PRS;LGSPEC1
kasa V;HAB;PRS
kasa V;PROG;PRS+IMMED
kasa V;PST+IMMED
kasa V;IMP;NEG;PRS
kasa V;NEG;PST+IMMED
kasa V;HAB;NEG;PRS
kasa V;PRF;PRS+IMMED
kasa V;PRF;NEG;PRS;LGSPEC1
kasa V;HAB+PRF;NEG;PRS
kasa V;HAB;NEG;FUT
kasa V;HAB+PRF;NEG;PST
kasa V;IMP;PRS
kasa V;SBJV;NEG;PRS
kasa V;PST;LGSPEC1
kasa V;HAB;FUT
kasa V;PRS;LGSPEC1
kasa V;HAB+PROG;NEG;PRS
kasa V;PROG;PRS;LGSPEC1
kasa V;HAB+PROG;NEG;PST
kasa V;PRF;PST+IMMED
kasa V;PROG;NEG;PST+IMMED
kasa V;HAB+PRF;PST
kasa V;PROG;PST+IMMED
kasa V;NEG;PST;LGSPEC1
kasa V;NFIN
kasa V;PRF;NEG;PRS+IMMED
kasa V;HAB;PST
kasa V;HAB+PROG;PRS
kasa V;PROG;NEG;PRS;LGSPEC1
kasa V;PROG;NEG;PST;LGSPEC1
kasa V;HAB+PRF;PRS
soɛr V;NEG;PST+IMMED
soɛr V;IMP;NEG;PRS
soɛr V;HAB+PROG;NEG;PRS
soɛr V;PROG;NEG;PRS;LGSPEC1
soɛr V;PRF;PST+IMMED
soɛr V;NEG;PRS;LGSPEC1
soɛr V;SBJV;PRS
soɛr V;PRF;PRS;LGSPEC1
soɛr V;HAB+PROG;PRS
soɛr V;HAB+PRF;PRS
soɛr V;PST+IMMED
soɛr V;PRF;NEG;PRS+IMMED
soɛr V;PROG;NEG;PRS+IMMED
soɛr V;PROG;PRS+IMMED
soɛr V;HAB;PST
soɛr V;PROG;PRS;LGSPEC1
soɛr V;HAB;NEG;PRS
soɛr V;SBJV;NEG;PRS
soɛr V;PROG;NEG;PST+IMMED
soɛr V;PST;LGSPEC1
soɛr V;PRF;PRS+IMMED
soɛr V;PRF;PST;LGSPEC1
soɛr V;NFIN
soɛr V;HAB;NEG;FUT
soɛr V;PRF;NEG;PST;LGSPEC1
soɛr V;IMP;PRS
soɛr V;HAB+PROG;NEG;PST
soɛr V;HAB;FUT
soɛr V;PRS;LGSPEC1
soɛr V;PROG;PST+IMMED
soɛr V;PRF;NEG;PRS;LGSPEC1
soɛr V;HAB;PRS
soɛr V;HAB+PROG;PST
soɛr V;PRF;NEG;PST+IMMED
soɛr V;PROG;PST;LGSPEC1
soɛr V;HAB;NEG;PST
soɛr V;PROG;NEG;PST;LGSPEC1
soɛr V;HAB+PRF;PST
soɛr V;NEG;PST;LGSPEC1
soɛr V;HAB+PRF;NEG;PST
soɛr V;HAB+PRF;NEG;PRS
tɔ V;HAB+PRF;PST
tɔ V;PROG;NEG;PST;LGSPEC1
tɔ V;PST+IMMED
tɔ V;PRS;LGSPEC1
tɔ V;PRF;PRS+IMMED
tɔ V;PST;LGSPEC1
tɔ V;PRF;NEG;PST;LGSPEC1
tɔ V;HAB+PRF;NEG;PRS
tɔ V;NEG;PRS;LGSPEC1
tɔ V;HAB+PROG;PST
tɔ V;HAB;PRS
tɔ V;PRF;NEG;PRS+IMMED
tɔ V;PRF;NEG;PST+IMMED
tɔ V;IMP;PRS
tɔ V;PROG;NEG;PST+IMMED
tɔ V;PRF;NEG;PRS;LGSPEC1
tɔ V;HAB+PRF;NEG;PST
tɔ V;NEG;PST+IMMED
tɔ V;HAB;NEG;FUT
tɔ V;HAB;NEG;PST
tɔ V;SBJV;NEG;PRS
tɔ V;HAB;PST
tɔ V;PROG;PRS+IMMED
tɔ V;NFIN
tɔ V;HAB+PRF;PRS
tɔ V;IMP;NEG;PRS
tɔ V;HAB+PROG;NEG;PRS
tɔ V;PRF;PRS;LGSPEC1
tɔ V;PROG;PRS;LGSPEC1
tɔ V;PRF;PST+IMMED
tɔ V;PRF;PST;LGSPEC1
tɔ V;HAB+PROG;NEG;PST
tɔ V;NEG;PST;LGSPEC1
tɔ V;HAB;FUT
tɔ V;SBJV;PRS
tɔ V;PROG;PST+IMMED
tɔ V;PROG;NEG;PRS+IMMED
tɔ V;PROG;NEG;PRS;LGSPEC1
tɔ V;HAB+PROG;PRS
tɔ V;PROG;PST;LGSPEC1
tɔ V;HAB;NEG;PRS
boro V;PST+IMMED
boro V;IMP;NEG;PRS
boro V;HAB+PROG;NEG;PRS
boro V;PROG;NEG;PRS;LGSPEC1
boro V;HAB;NEG;PRS
boro V;HAB;NEG;PST
boro V;PRF;PST+IMMED
boro V;PST;LGSPEC1
boro V;HAB;FUT
boro V;PRF;NEG;PST+IMMED
boro V;HAB;PST
boro V;PROG;NEG;PST+IMMED
boro V;HAB+PRF;PRS
boro V;PROG;PST;LGSPEC1
boro V;NEG;PST+IMMED
boro V;HAB+PROG;PRS
boro V;NFIN
boro V;SBJV;PRS
boro V;PROG;NEG;PRS+IMMED
boro V;IMP;PRS
boro V;HAB;NEG;FUT
boro V;PRF;PRS+IMMED
boro V;PRF;NEG;PRS;LGSPEC1
boro V;PRS;LGSPEC1
boro V;PRF;NEG;PST;LGSPEC1
boro V;PROG;PRS;LGSPEC1
boro V;HAB+PROG;PST
boro V;SBJV;NEG;PRS
boro V;PRF;NEG;PRS+IMMED
boro V;PROG;NEG;PST;LGSPEC1
boro V;HAB;PRS
boro V;HAB+PRF;NEG;PST
boro V;PROG;PST+IMMED
boro V;HAB+PRF;NEG;PRS
boro V;NEG;PST;LGSPEC1
boro V;PRF;PST;LGSPEC1
boro V;NEG;PRS;LGSPEC1
boro V;HAB+PROG;NEG;PST
boro V;PRF;PRS;LGSPEC1
boro V;PROG;PRS+IMMED
boro V;HAB+PRF;PST
bɔ mpae V;HAB;NEG;FUT
bɔ mpae V;PRF;PST+IMMED
bɔ mpae V;PRF;PST;LGSPEC1
bɔ mpae V;PRF;NEG;PST+IMMED
bɔ mpae V;HAB+PROG;PRS
bɔ mpae V;HAB+PRF;NEG;PST
bɔ mpae V;PRF;NEG;PRS+IMMED
bɔ mpae V;PROG;PST;LGSPEC1
bɔ mpae V;PRF;PRS+IMMED
bɔ mpae V;PROG;PRS+IMMED
bɔ mpae V;IMP;PRS
bɔ mpae V;SBJV;PRS
bɔ mpae V;PROG;NEG;PRS;LGSPEC1
bɔ mpae V;PST+IMMED
bɔ mpae V;NEG;PST+IMMED
bɔ mpae V;HAB;NEG;PST
bɔ mpae V;IMP;NEG;PRS
bɔ mpae V;NFIN
bɔ mpae V;PST;LGSPEC1
bɔ mpae V;NEG;PRS;LGSPEC1
bɔ mpae V;HAB+PROG;NEG;PST
bɔ mpae V;PROG;NEG;PST+IMMED
bɔ mpae V;HAB+PRF;PRS
bɔ mpae V;HAB;PST
bɔ mpae V;HAB;NEG;PRS
bɔ mpae V;HAB+PROG;NEG;PRS
bɔ mpae V;PROG;NEG;PRS+IMMED
bɔ mpae V;HAB+PRF;NEG;PRS
bɔ mpae V;PROG;PST+IMMED
bɔ mpae V;PROG;NEG;PST;LGSPEC1
bɔ mpae V;SBJV;NEG;PRS
bɔ mpae V;PRF;NEG;PRS;LGSPEC1
bɔ mpae V;HAB+PROG;PST
bɔ mpae V;PRS;LGSPEC1
bɔ mpae V;NEG;PST;LGSPEC1
bɔ mpae V;PROG;PRS;LGSPEC1
bɔ mpae V;HAB+PRF;PST
bɔ mpae V;PRF;PRS;LGSPEC1
bɔ mpae V;HAB;PRS
bɔ mpae V;PRF;NEG;PST;LGSPEC1
bɔ mpae V;HAB;FUT
tweɔn V;PRF;PRS+IMMED
tweɔn V;SBJV;PRS
tweɔn V;HAB+PRF;PST
tweɔn V;PROG;PST;LGSPEC1
tweɔn V;PRF;NEG;PRS;LGSPEC1
tweɔn V;HAB+PRF;NEG;PRS
tweɔn V;NEG;PRS;LGSPEC1
tweɔn V;PRF;NEG;PST;LGSPEC1
tweɔn V;PROG;NEG;PST+IMMED
tweɔn V;IMP;NEG;PRS
tweɔn V;HAB;PST
tweɔn V;PRF;PRS;LGSPEC1
tweɔn V;IMP;PRS
tweɔn V;PRF;NEG;PRS+IMMED
tweɔn V;PROG;NEG;PST;LGSPEC1
tweɔn V;PROG;PST+IMMED
tweɔn V;HAB+PRF;PRS
tweɔn V;HAB;PRS
tweɔn V;HAB+PROG;NEG;PST
tweɔn V;HAB;NEG;PST
tweɔn V;PST;LGSPEC1
tweɔn V;NFIN
tweɔn V;HAB+PROG;PST
tweɔn V;HAB;NEG;PRS
tweɔn V;PST+IMMED
tweɔn V;HAB+PROG;NEG;PRS
tweɔn V;NEG;PST;LGSPEC1
tweɔn V;PRF;PST+IMMED
tweɔn V;PRS;LGSPEC1
tweɔn V;PRF;NEG;PST+IMMED
tweɔn V;PRF;PST;LGSPEC1
tweɔn V;PROG;NEG;PRS;LGSPEC1
tweɔn V;HAB;FUT
tweɔn V;NEG;PST+IMMED
tweɔn V;SBJV;NEG;PRS
tweɔn V;PROG;PRS+IMMED
tweɔn V;HAB;NEG;FUT
tweɔn V;HAB+PROG;PRS
tweɔn V;PROG;PRS;LGSPEC1
tweɔn V;PROG;NEG;PRS+IMMED
tweɔn V;HAB+PRF;NEG;PST
nom V;PRS;LGSPEC1
nom V;PROG;PST;LGSPEC1
nom V;PRF;PRS;LGSPEC1
nom V;PST+IMMED
nom V;NEG;PST;LGSPEC1
nom V;PROG;NEG;PRS+IMMED
nom V;HAB+PRF;NEG;PST
nom V;HAB+PROG;NEG;PRS
nom V;PRF;PRS+IMMED
nom V;PROG;NEG;PST;LGSPEC1
nom V;NFIN
nom V;PROG;NEG;PRS;LGSPEC1
nom V;PROG;PRS;LGSPEC1
nom V;HAB+PRF;PST
nom V;HAB+PRF;NEG;PRS
nom V;PRF;NEG;PRS;LGSPEC1
nom V;PRF;PST;LGSPEC1
nom V;NEG;PST+IMMED
nom V;IMP;PRS
nom V;IMP;NEG;PRS
nom V;HAB+PROG;PRS
nom V;HAB+PROG;NEG;PST
nom V;PROG;PST+IMMED
nom V;HAB;NEG;FUT
nom V;PRF;NEG;PRS+IMMED
nom V;NEG;PRS;LGSPEC1
nom V;HAB;FUT
nom V;HAB;PST
nom V;PRF;NEG;PST;LGSPEC1
nom V;HAB;PRS
nom V;HAB+PROG;PST
nom V;HAB;NEG;PRS
nom V;PRF;NEG;PST+IMMED
nom V;PROG;PRS+IMMED
nom V;SBJV;PRS
nom V;PST;LGSPEC1
nom V;HAB;NEG;PST
nom V;PROG;NEG;PST+IMMED
nom V;SBJV;NEG;PRS
nom V;HAB+PRF;PRS
nom V;PRF;PST+IMMED
ba V;NEG;PST+IMMED
ba V;SBJV;NEG;PRS
ba V;PROG;PRS;LGSPEC1
ba V;PRF;PST;LGSPEC1
ba V;PRF;PRS+IMMED
ba V;HAB;PST
ba V;PROG;NEG;PRS+IMMED
ba V;HAB;NEG;PST
ba V;HAB+PROG;PST
ba V;PRF;NEG;PRS;LGSPEC1
ba V;PROG;PST+IMMED
ba V;HAB+PRF;NEG;PRS
ba V;PROG;NEG;PRS;LGSPEC1
ba V;HAB;NEG;PRS
ba V;NEG;PRS;LGSPEC1
ba V;PRF;PST+IMMED
ba V;IMP;NEG;PRS
ba V;HAB+PROG;NEG;PRS
ba V;PRS;LGSPEC1
ba V;PROG;PRS+IMMED
ba V;HAB;FUT
ba V;PROG;NEG;PST;LGSPEC1
ba V;NFIN
ba V;HAB+PROG;NEG;PST
ba V;IMP;PRS
ba V;HAB+PRF;PRS
ba V;PRF;NEG;PRS+IMMED
ba V;PRF;NEG;PST+IMMED
ba V;PRF;PRS;LGSPEC1
ba V;PROG;PST;LGSPEC1
ba V;PST+IMMED
ba V;PROG;NEG;PST+IMMED
ba V;PST;LGSPEC1
ba V;HAB+PRF;PST
ba V;SBJV;PRS
ba V;HAB+PRF;NEG;PST
ba V;HAB+PROG;PRS
ba V;HAB;NEG;FUT
ba V;PRF;NEG;PST;LGSPEC1
ba V;NEG;PST;LGSPEC1
ba V;HAB;PRS
suma V;HAB+PROG;NEG;PRS
suma V;IMP;NEG;PRS
suma V;HAB+PRF;PRS
suma V;HAB+PRF;PST
suma V;PRF;NEG;PST;LGSPEC1
suma V;SBJV;PRS
suma V;PST+IMMED
suma V;PROG;PST+IMMED
suma V;PROG;NEG;PST;LGSPEC1
suma V;NEG;PST+IMMED
suma V;PROG;PRS;LGSPEC1
suma V;IMP;PRS
suma V;HAB+PROG;NEG;PST
suma V;HAB+PROG;PRS
suma V;HAB;PRS
suma V;PROG;PST;LGSPEC1
suma V;PRF;NEG;PRS+IMMED
suma V;NEG;PST;LGSPEC1
suma V;HAB;NEG;PRS
suma V;PRF;PRS;LGSPEC1
suma V;HAB;FUT
suma V;PRF;PRS+IMMED
suma V;HAB;NEG;PST
suma V;PRF;NEG;PST+IMMED
suma V;PROG;NEG;PRS;LGSPEC1
suma V;PROG;NEG;PRS+IMMED
suma V;HAB;NEG;FUT
suma V;PROG;PRS+IMMED
suma V;HAB+PROG;PST
suma V;PRF;PST;LGSPEC1
suma V;PROG;NEG;PST+IMMED
suma V;PRF;NEG;PRS;LGSPEC1
suma V;PST;LGSPEC1
suma V;HAB+PRF;NEG;PRS
suma V;SBJV;NEG;PRS
suma V;PRF;PST+IMMED
suma V;PRS;LGSPEC1
suma V;NFIN
suma V;NEG;PRS;LGSPEC1
suma V;HAB;PST
suma V;HAB+PRF;NEG;PST
tow V;HAB;NEG;FUT
tow V;PRF;PST+IMMED
tow V;HAB+PRF;NEG;PRS
tow V;NEG;PST+IMMED
tow V;HAB;NEG;PRS
tow V;HAB+PROG;PRS
tow V;HAB+PROG;NEG;PRS
tow V;PRS;LGSPEC1
tow V;NEG;PRS;LGSPEC1
tow V;NFIN
tow V;PRF;NEG;PRS+IMMED
tow V;HAB+PRF;NEG;PST
tow V;PROG;PRS;LGSPEC1
tow V;HAB+PRF;PST
tow V;HAB;PST
tow V;PRF;NEG;PST;LGSPEC1
tow V;PRF;PRS+IMMED
tow V;HAB+PRF;PRS
tow V;PRF;PST;LGSPEC1
tow V;SBJV;PRS
tow V;PRF;PRS;LGSPEC1
tow V;HAB;FUT
tow V;PROG;PST+IMMED
tow V;PROG;NEG;PRS+IMMED
tow V;NEG;PST;LGSPEC1
tow V;PROG;PST;LGSPEC1
tow V;PROG;NEG;PST;LGSPEC1
tow V;IMP;NEG;PRS
tow V;SBJV;NEG;PRS
tow V;PRF;NEG;PRS;LGSPEC1
tow V;HAB+PROG;PST
tow V;PRF;NEG;PST+IMMED
tow V;PST+IMMED
tow V;HAB+PROG;NEG;PST
tow V;HAB;NEG;PST
tow V;PROG;NEG;PST+IMMED
tow V;PROG;NEG;PRS;LGSPEC1
tow V;PST;LGSPEC1
tow V;PROG;PRS+IMMED
tow V;IMP;PRS
tow V;HAB;PRS
tɔn V;PRF;PRS+IMMED
tɔn V;HAB+PROG;PRS
tɔn V;SBJV;NEG;PRS
tɔn V;HAB+PROG;PST
tɔn V;PRF;NEG;PRS+IMMED
tɔn V;PRF;NEG;PRS;LGSPEC1
tɔn V;IMP;PRS
tɔn V;PST+IMMED
tɔn V;HAB;FUT
tɔn V;IMP;NEG;PRS
tɔn V;PROG;NEG;PST+IMMED
tɔn V;HAB+PROG;NEG;PRS
tɔn V;PROG;PRS+IMMED
tɔn V;NFIN
tɔn V;HAB;NEG;PRS
tɔn V;HAB;PST
tɔn V;PROG;NEG;PRS+IMMED
tɔn V;PROG;PRS;LGSPEC1
tɔn V;PRF;PST;LGSPEC1
tɔn V;PRF;NEG;PST;LGSPEC1
tɔn V;PRF;PST+IMMED
tɔn V;HAB;NEG;FUT
tɔn V;PROG;PST;LGSPEC1
tɔn V;PST;LGSPEC1
tɔn V;HAB+PRF;NEG;PRS
tɔn V;HAB;PRS
tɔn V;SBJV;PRS
tɔn V;HAB+PRF;NEG;PST
tɔn V;NEG;PST;LGSPEC1
tɔn V;PRF;NEG;PST+IMMED
tɔn V;HAB+PROG;NEG;PST
tɔn V;PRS;LGSPEC1
tɔn V;PROG;NEG;PST;LGSPEC1
tɔn V;HAB;NEG;PST
tɔn V;PRF;PRS;LGSPEC1
tɔn V;NEG;PRS;LGSPEC1
tɔn V;HAB+PRF;PRS
tɔn V;HAB+PRF;PST
tɔn V;PROG;PST+IMMED
tɔn V;PROG;NEG;PRS;LGSPEC1
tɔn V;NEG;PST+IMMED
|
bb5919bdc3a5273bf75e9406d10ad4c890b5567a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH13/EX13.5/C13P5.sce | 6da864919f44c48cef80788921bc97b170b2fbad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 876 | sce | C13P5.sce |
clear
clc
//to find change in stored internal energy of system of block+surface
//distance travelled by block befire coming to rest
// GIVEN:
//mass of block
M = 5.2//in Kg
//initial horizontal velocity of block
vcm = 0.65//in m/s
//coefficient of kinetic friction
mew = 0.12
//acceleration due to gravity
g = 9.8//in m/s^2
// SOLUTION:
//applyinq consevation of energy principle
//change in stored internal energy of system of block+surface
//final kinetic energy is zero as block comes to rest
delta_Eint = -(0-(1/2*M*vcm^2))//in J //-ve sign as kinetic energy is lost
//distance travelled by block befire coming to rest
scm = (vcm^2/(2*mew*g))//in m
printf ("\n\n Final kinetic energy is zero as block comes to rest delta_Eint = \n\n %.1f J",delta_Eint)
printf ("\n\n Distance travelled by block befire coming to rest scm = \n\n %.2f m",scm)
|
750c6306ba9ed17e33c58b0a870da739fe1e2f0d | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/TF41.prev.tst | 01c51b873cbc73643a0277822e7cb0b44b7ecda4 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,516 | tst | TF41.prev.tst | Expanding for base=2, level=4, reasons+features=base,same,similiar,evenexp igtriv,norm
Refined variables=x,y,z
[0+1x,0+1y,0+1z]: unknown -> [1] [0,0,0] x⁴-y⁴-z²
---------------- level 0
expanding queue[0]^-1,meter=[2,2,2]: x⁴-y⁴-z²
[0+2x,0+2y,0+2z]: unknown -> [1] [0,0,0] 4x⁴-4y⁴-z²
[1+2x,1+2y,0+2z]: unknown -> [2] [1,1,0] 2x+6x²+8x³+4x⁴-2y-6y²-8y³-4y⁴-z²
[1+2x,0+2y,1+2z]: unknown -> [3] [1,0,1] 2x+6x²+8x³+4x⁴-4y⁴-z-z²
endexp[0]
---------------- level 1
expanding queue[1]^0,meter=[1,1,2]: 4x⁴-4y⁴-z²
[0+2x,0+2y,0+4z]: same form as x⁴-y⁴-z²
endexp[1]
expanding queue[2]^0,meter=[1,1,2]: 2x+6x²+8x³+4x⁴-2y-6y²-8y³-4y⁴-z²
[1+2x,1+2y,0+4z]: unknown -> [4] [0,0,0] x+3x²+4x³+2x⁴-y-3y²-4y³-2y⁴-2z²
endexp[2]
expanding queue[3]^0,meter=[1,1,2]: 2x+6x²+8x³+4x⁴-4y⁴-z-z²
[1+2x,0+2y,1+4z]: unknown -> [5] [0,0,0] x+3x²+4x³+2x⁴-2y⁴-z-2z²
[1+2x,0+2y,3+4z]: negative-1 [5] by {z=>-z-1}
endexp[3]
---------------- level 2
expanding queue[4]^2,meter=[2,2,1]: x+3x²+4x³+2x⁴-y-3y²-4y³-2y⁴-2z²
[1+4x,1+4y,0+4z]: unknown -> [6] [0,0,0] x+6x²+16x³+16x⁴-y-6y²-16y³-16y⁴-z²
[3+4x,1+4y,0+4z]: negative-1 [6] by {x=>-x-1}
[1+4x,3+4y,0+4z]: negative-1 [6] by {y=>-y-1}
[3+4x,3+4y,0+4z]: negative-1 [6] by {x=>-x-1,y=>-y-1}
endexp[4]
expanding queue[5]^3,meter=[2,1,2]: x+3x²+4x³+2x⁴-2y⁴-z-2z²
[1+4x,0+2y,1+8z]: unknown -> [7] [0,0,0] x+6x²+16x³+16x⁴-y⁴-z-4z²
[3+4x,0+2y,1+8z]: negative-1 [7] by {x=>-x-1}
endexp[5]
---------------- level 3
expanding queue[6]^4,meter=[2,2,2]: x+6x²+16x³+16x⁴-y-6y²-16y³-16y⁴-z²
[1+8x,1+8y,0+8z]: unknown -> [8] [0,0,0] x+12x²+64x³+128x⁴-y-12y²-64y³-128y⁴-2z²
[5+8x,5+8y,0+8z]: unknown -> [9] [1,1,0] 125x+300x²+320x³+128x⁴-125y-300y²-320y³-128y⁴-2z²
[5+8x,1+8y,4+8z]: unknown -> [10] [1,0,1] 125x+300x²+320x³+128x⁴-y-12y²-64y³-128y⁴-2z-2z²+19
[1+8x,5+8y,4+8z]: unknown -> [11] [0,1,1] x+12x²+64x³+128x⁴-125y-300y²-320y³-128y⁴-2z-2z²-20
endexp[6]
expanding queue[7]^5,meter=[2,2,2]: x+6x²+16x³+16x⁴-y⁴-z-4z²
[1+8x,0+4y,1+16z]: unknown -> [12] [0,0,0] x+12x²+64x³+128x⁴-8y⁴-z-8z²
[5+8x,2+4y,1+16z]: unknown -> [13] [1,1,0] 125x+300x²+320x³+128x⁴-4y-12y²-16y³-8y⁴-z-8z²+19
[5+8x,0+4y,9+16z]: unknown -> [14] [1,0,1] 125x+300x²+320x³+128x⁴-8y⁴-9z-8z²+17
[1+8x,2+4y,9+16z]: unknown -> [15] [0,1,1] x+12x²+64x³+128x⁴-4y-12y²-16y³-8y⁴-9z-8z²-3
endexp[7]
---------------- level 4
Maximum level 4 [16] mod 2: x⁴-y⁴-z²
|
93365353dd29ac25075c3f0bb1318f6eb00e1b1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH1/EX1.1.31/Ch1_1_31.sce | 5fc380b2a34b39239b2498a1d95882f91eef8ae6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 263 | sce | Ch1_1_31.sce | clc
disp("Example 1.31")
printf("\n")
disp("Plot the piecewise-linear characteristic of silicon diode")
printf("Given\n")
//given
Vf=[0 0.7 0.74]
If=[0 0 0.2]
plot2d(Vf, If)
xlabel("Vf")
ylabel("If")
xtitle("Piecewise-linear characteristic of diode")
|
470dcc6561432f6b8ffbb0237621d34d6ff50456 | f5da6dd873d514a17c39d7b2b0121919f8433b5b | /Exercise_03.sce | fab92eb0e4cfd78cea4bc4bd349c66ae9af9f2a9 | [] | no_license | Gotcha17/CompFin_Sheet1 | d7a0a368aa20d7e27d8b5bd03d0ce59171190868 | 92c26627ebd43cb7f37096604cfc4f850f435d3e | refs/heads/master | 2021-01-02T23:01:13.322764 | 2017-08-15T22:20:03 | 2017-08-15T22:20:03 | 99,440,307 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,251 | sce | Exercise_03.sce | clc; clear;
function lr = log_returns (data); //function log_return is defined with input data and output lr
lr = diff(log(data)); //lr is the log difference, function diff substitutes from next value the current one, so data needs to be ordered ascending in date
endfunction
data1 = csvRead('time_series_dax.csv',";",",","",[],[],[],[1]); // data is read, ";" is the separator, "," is the decimal, and [1] tells that first row is the header and is ignored
data = data1($:-1:1, 2); // second column is ordered from bottom to top, as it is needed this way for the diff function and only second column is of interest
lr = log_returns(data); //function log_return is called
scf(0); //figure 0 is selected
clf(); //selected figure is cleared
plot(lr); //lr is plotted
xgrid(1); // grid is added for better visibility
title("log-returns of DAX in the period from 26/11/1990 to 26/10/2015"); //title
xlabel("trading day"); //x axis label
ylabel("log-return"); //y axis label
muh = 250*mean(lr); //annualized empirical mean
sigma=sqrt(250*variance(lr)); //annualized empirical standard deviation
disp("Annualized mean is " + string(muh) + " and annualized standard deviation is " + string(sigma)); //displays the results
|
9440efc415e0cb4ddc1a6a4e6af77775e4a559c8 | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Barcode Flick Easy.sce | bc220235c48073ee0795fbb0a9fb648f5ca8542f | [] | 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 | 22,054 | sce | Barcode Flick Easy.sce | Name=Barcode Flick Easy
PlayerCharacters=player_char
BotCharacters=barcode_bot.bot;barcode_bot.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=player_char
AddedBots=barcode_bot.bot;barcode_bot.bot
PlayerMaxLives=0
BotMaxLives=0;0
PlayerTeam=1
BotTeams=2;2
MapName=barcode_flick.map
MapScale=10.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=0.0
ScorePerDamage=0.2
ScorePerKill=10.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Barcode Flick Easy
WeaponHeroTag=pistol
DifficultyTag=2
AuthorsTag=NFNT
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=true
Description=Scenario with left and right flicks as main
GameVersion=2.0.0.2
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
[Bot Profile]
Name=barcode_bot
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=barcode_char
SeeThroughWalls=false
NoDodging=true
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=player_char
MaxHealth=100.0
WeaponProfileNames=pistol;;;;;;;
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=0.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.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=true
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
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.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=barcode_char
MaxHealth=25.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.0001
MaxRespawnDelay=0.0001
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=0.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.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=600.0
MainBBRadius=60.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=600.0
ProjBBRadius=60.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
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.0
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.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Weapon Profile]
Name=pistol
Type=Hitscan
ShotsPerClick=1
DamagePerShot=25.0
KnockbackFactor=4.0
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
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=100000.0
GravityScale=1.0
HeadshotCapable=true
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
ProjectileGraphic=Ball
VisualLifetime=0.1
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.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
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
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=Flare
ParticleProjectileTrail=None
ParticleHitscanTrace=None
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
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=360.0
AADeadZone=0.0
AAFOV=360.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
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-256.000000 200.000000 168.000000
-248.000000 200.000000 168.000000
-248.000000 200.000000 -256.000000
-256.000000 200.000000 -256.000000
-256.000000 0.000000 168.000000
-248.000000 0.000000 168.000000
-248.000000 0.000000 -256.000000
-256.000000 0.000000 -256.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
248.000000 200.000000 168.000000
256.000000 200.000000 168.000000
256.000000 200.000000 -256.000000
248.000000 200.000000 -256.000000
248.000000 0.000000 168.000000
256.000000 0.000000 168.000000
256.000000 0.000000 -256.000000
248.000000 0.000000 -256.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
-248.000000 200.000000 -248.000000
248.000000 200.000000 -248.000000
248.000000 200.000000 -256.000000
-248.000000 200.000000 -256.000000
-248.000000 0.000000 -248.000000
248.000000 0.000000 -248.000000
248.000000 0.000000 -256.000000
-248.000000 0.000000 -256.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
-256.000000 0.000000 256.000000
256.000000 0.000000 256.000000
256.000000 0.000000 -256.000000
-256.000000 0.000000 -256.000000
-256.000000 -16.000000 256.000000
256.000000 -16.000000 256.000000
256.000000 -16.000000 -256.000000
-256.000000 -16.000000 -256.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
-255.000000 176.000000 255.000000
257.000000 176.000000 255.000000
257.000000 176.000000 -257.000000
-255.000000 176.000000 -257.000000
-255.000000 160.000000 255.000000
257.000000 160.000000 255.000000
257.000000 160.000000 -257.000000
-255.000000 160.000000 -257.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
-80.000000 200.000000 256.000000
80.000000 200.000000 256.000000
80.000000 200.000000 224.000000
-80.000000 200.000000 224.000000
-80.000000 0.000000 256.000000
80.000000 0.000000 256.000000
80.000000 0.000000 224.000000
-80.000000 0.000000 224.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
80.000000 200.000000 256.000000
256.000000 200.000000 256.000000
256.000000 200.000000 128.000000
80.000000 0.000000 224.000000
80.000000 200.000000 224.000000
256.000000 0.000000 256.000000
256.000000 0.000000 128.000000
80.000000 0.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 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 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-256.000000 200.000000 256.000000
-80.000000 200.000000 256.000000
-80.000000 200.000000 224.000000
-257.000000 0.000000 128.000000
-257.000000 200.000000 128.000000
-80.000000 0.000000 256.000000
-80.000000 0.000000 224.000000
-256.000000 0.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 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 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
entity
type PlayerSpawn
Vector3 position 0.000000 40.000000 -50.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position -173.000000 15.000000 132.000000
Vector3 angles 135.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -140.000000 15.000000 160.000000
Vector3 angles 145.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 15.000000 180.000000
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -60.000000 15.000000 190.000000
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -20.000000 15.000000 195.000000
Vector3 angles 175.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 20.000000 15.000000 195.000000
Vector3 angles 185.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 60.000000 15.000000 190.000000
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 15.000000 180.000000
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 140.000000 15.000000 160.000000
Vector3 angles 215.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 173.000000 15.000000 132.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -158.000000 15.000000 143.000000
Vector3 angles 135.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -123.000000 15.000000 170.000000
Vector3 angles 145.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -82.000000 15.000000 186.000000
Vector3 angles 160.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -41.000000 15.000000 192.000000
Vector3 angles 170.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 158.000000 15.000000 145.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 123.000000 15.000000 170.000000
Vector3 angles 215.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 82.000000 15.000000 186.000000
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 41.000000 15.000000 192.000000
Vector3 angles 190.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -2.000000 15.000000 197.000000
Vector3 angles 175.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -184.000000 15.000000 118.000000
Vector3 angles 135.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 188.000000 15.000000 118.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
8d0aba539bfafbcf5086b6b143d1b3d4576fb450 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH3/EX3.a.13/Example_a_3_13.sce | 8a19a38c4f51de7083dc19572e4394dcdb1a9a59 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | Example_a_3_13.sce | //Example_a_3_13 page no:142
clc;
I=20;
R1=6;
R2=3;
R3=5;
R4=2;
R5=6;
I5=I*(R2/(R2+6.5));
I6=I5*(2/(R1+2));
V=I6*R4;
Rt=(((((6*3)/(6+3))+5)*2)/((((6*3)/(6+3))+5)+2))+(6+2);
I61=V/Rt;
I=I6-I61;//in A
disp(I,"the ammeter reading is (in A)");
|
f1dbf33b648272225f782c2adb32d4601d8e93b9 | 36e294af022143c4ad0adaf1a40183c8114cb39a | /Scripts/create_duty_cycle_data.sce | 66be6db0251f22c38ca36aac528023291d5eea84 | [] | no_license | pflynn/Spectrum_analysis | d6388a46f686912a4d4a543f18b2a49063374506 | eb31f3349fdf4f16227b25782d40937b126b297e | refs/heads/master | 2016-09-05T17:10:44.896865 | 2011-06-27T15:01:20 | 2011-06-27T15:01:20 | 1,960,672 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,155 | sce | create_duty_cycle_data.sce | // Second stage
//Creating csv files with 501 values of 1(exceeds threshold) or 0(does not exceed threshold)
//
for j = 1:num_of_samples
// 'number' is used to pick the desired file at hand
// 'number' has to be a string as it is used as part of a file name
number = string(j);
if (j == 1)
A = evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Results'+'/'+ band_name + number +'.csv'));
B = (A>threshold)*1;
else
C = evstr(read_csv('C:\Documents and Settings\pflynn\Desktop\Results'+'/'+ band_name + number +'.csv'));
D = (C>threshold)*1;
B = B + D;
A = max(A,C)
// creates a list of strings of either 1 or 0 depending on wheather the value
// exceeds the threshold or not.
end
end
B = string(B/num_of_samples)
//end
// Creates and saves files used for getting duty cycle plots
write_csv(B,'C:\Documents and Settings\pflynn\Desktop\Duty cycle plot data'+ '/dc '+ band_name +'.csv');
// A file is created for each band of spectrum, this is the max hold data
write_csv(string(A),'C:\Documents and Settings\pflynn\Desktop\Max hold plot data'+ '/mh '+ band_name + '.csv');
clear A
clear B
clear C |
adbf0386c58926a9fd93beaae1a52c12b16dc677 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2660/CH9/EX9.5/Ex9_5.sce | c01d793a8c6810b566d6906791cb3937b439d595 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 843 | sce | Ex9_5.sce | clc
b = 30 // basic size in mm
s1 = 0.005 // maximum limit of shaft in mm
s2 = 0.018 // minimum limit of shaft in mm
h1 = 0.020 // maximum limit of hole in mm
h2 = 0.0 // minimum limit of hole in mm
t1 = s2-s1 // shaft tolerence in mm
t2 = h1-h2 // hole tolerence in mm
Sh = b-s1 // high limit of shaft in mm
Sl = b-s2 // low limit of shaft in mm
Hh = b+h1 // high limit of hole in mm
Hl = b+h2 // low limit of hole in mm
c1 = Hh-Sl // maximum clearance in mm
c2 = Hl-Sh // minimum clearance in mm
printf("\n Basic size = %d mm\n Shaft tolerence = %0.3f mm\n Hole tolerence = %0.3f mm",b,t1,t2)
printf("\n High limit of shaft = %0.3f mm\n Low limit of shaft = %0.3f mm\n High limit of hole = %0.3f mm \n Low limit of hole = %0.3f mm",Sh,Sl,Hh,Hl)
printf("\n Maximum clearance = %0.3f mm\n Minimum clearance = %0.3f mm",c1,c2)
|
7ad0128615a6deef5f2e06e389f26d5724aa1606 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH19/EX19.5w/19_5w.sce | 262e3eac0b9cbd15a780185d4552d5ebfff6795b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 796 | sce | 19_5w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 19.5w
//calculation of the object distance and the angular magnification for the least strain in the eyes
//given data
fo=.5*10^-2//focal length(in m) of the objective lens
fe=5*10^-2//focal length(in m) of the eyepiece
d=7*10^-2//separation(in m) between the objective lens and the eyepiece
D=25*10^-2//least distance(in m) for the clear vision
//calculation
v=d-fe//distance at which the first image should be formed
u=1/((1/v)-(1/fo))//lens formula for the objective lens
m=(v*D)/(u*fe)//angular magnification
printf('the object distance for the least strain in the eyes is %3.1f cm',abs(u*10^2))
printf('\nthe angular magnification for the least strain in the eyes is %d',m)
|
32baf588cbb70b921c51320446a5e89593a2e3a1 | e806e966b06a53388fb300d89534354b222c2cad | /macros/readForegroundMask.sci | 12db37ecbb7f82f63ee6ececc976b6806dd7d311 | [] | no_license | gursimarsingh/FOSSEE_Image_Processing_Toolbox | 76c9d524193ade302c48efe11936fe640f4de200 | a6df67e8bcd5159cde27556f4f6a315f8dc2215f | refs/heads/master | 2021-01-22T02:08:45.870957 | 2017-01-15T21:26:17 | 2017-01-15T21:26:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 937 | sci | readForegroundMask.sci | function varargout=readForegroundMask(varargin)
// This function computes the foreground mask for the input image.
//
// Calling Sequence
// mask = readForegroundMask(image)
//
// Parameters
// mask: the computed foreground mask.
// image : the input image
//
//
// Description
// This function returns the foreground mask for an image using Gaussian Mixed Models.
//
// Examples
// myStr = ForegroundDetector()
// myVideo = VideoReader('sample.mp4');
// while hasFrame()
// frame = readFrame();
// mask = readForegroundMask(frame);
// end
//
//
// Authors
// Shashank Shekhar
[lhs,rhs]=argn(0)
if rhs<1 then
error(msprintf(" Not enough input arguments"))
end
if rhs>1 then
error(msprintf(" Too many input arguments to the function"))
end
if lhs>1 then
error(msprintf(" Too many output arguments"))
end
varargout(1) = ocv_readForegroundMask(varargin(1));
endfunction
|
f1f9e6c8e39d0d00d93906ca88602e9da558abe7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2741/CH5/EX5.2/Chapter5_Example2.sce | e2d7271f5623c9459db459b2eec6e655c9866438 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 672 | sce | Chapter5_Example2.sce | clc
clear
//Input data
t=1;//The increase in the temperature of a piece of aluminium in degree centigrade
a=6*10^23;//The number of atoms present in 27 g of aluminium in atoms
Sp=0.22;//The specific heat of aluminium in cal/g-K
m=27;//The amount of aluminium in g
J=4.2*10^7;//The mechanical equivalent of heat in ergs/calorie
//Calculations
H=m*Sp*t;//Heat required to raise the temperature of 27 gms of aluminium by 1 degree centigrade in cals
E=m*Sp*J;//Energy gained by atoms of aluminium in ergs
E1=E/a;//Increase in energy per atom of aluminium in ergs
//Output
printf('The increase in energy per atom of aluminium is %3.4g ergs ',E1)
|
d431c42c25932a8accadd9ad12b9b434f6375a96 | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/DEPENDENCIES/4_06data.sci | e6b472c6a9b1d5a3cea40c083e3f29f504a1619b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 638 | sci | 4_06data.sci | //Based on elementary Thermodynamics
//Part 1:SI unit
Cv=720;//specific heat at constant volume for air in standard condition in J/Kg.K
Cp=1008;//specific heat at constant pressure for air in standard condition in J/Kg.K
T=288;//standard temperature
e=Cv*T//internal energy per unit mass
h=Cp*T//enthalpy per unit mass
//Part 2:English Engineering unit
Cv1=4290;//specific heat at constant volume for air in Ft.Lb/slug*Rankine
Cp1=6006;///specific heat at constant volume for air in Ft.Lb/slug*Rankine
T1=519;//standard temperature in degree rankine
e1=Cv1*T1//internal energy per unit mass
h1=Cp1*T1//enthalpy per unit mass
|
2bc6c6481f5c4ef8ebe7afd8717b905f4333d05f | 2157e5477a68100718fef686429f6ab2d846fffe | /macros/matrix_linprog.sci | d0ce43c626bac2dcff22afa117e0496d36468aba | [] | no_license | sidn77/FOSSEE-Optimization-toolbox | 44ca727e3f2dff5b61b43384421ae9e633d95bb1 | 58416c0613131665e14c0143791fb1f305c411e0 | refs/heads/master | 2021-01-11T04:58:15.068871 | 2016-09-29T11:31:12 | 2016-09-29T11:31:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,118 | sci | matrix_linprog.sci | // Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// Author: Guru Pradeep Reddy, Bhanu Priya Sayal
// Organization: FOSSEE, IIT Bombay
// Email: gurupradeept@gmail.com, bhanupriyasayal@gmail.com
// This file must be used under the terms of the BSD.
// This source file is licensed as described in the file LICENSE, which
// you should have received as part of this distribution. The terms
// are also available at
// https://opensource.org/licenses/BSD-3-Clause
function [xopt,fopt,exitflag,output,lambda] = matrix_linprog (varargin)
//To check the number of input and output argument
[lhs , rhs] = argn();
c = [];
A = [];
b = [];
Aeq = [];
beq = [];
lb = [];
ub = [];
options = list();
//To check the number of argument given by user
if ( rhs < 3 | rhs == 4 | rhs == 6 | rhs >8 ) then
errmsg = msprintf(gettext("%s: Unexpected number of input arguments : %d provided while should be in the set of [3 5 7 8]"), "linprog", rhs);
error(errmsg)
end
c = varargin(1);
if(size(c,2) == 0) then
errmsg = msprintf(gettext("%s: Cannot determine the number of variables because input objective coefficients is empty"), "linprog");
error(errmsg);
end
if (size(c,2)~=1) then
errmsg = msprintf(gettext("%s: Objective Coefficients should be a column matrix"), "linprog");
error(errmsg);
end
nbVar = size(c,1);
A = varargin(2);
b = varargin(3);
if ( rhs<4 ) then
Aeq = []
beq = []
else
Aeq = varargin(4);
beq = varargin(5);
end
if ( rhs<6 ) then
lb = [];
ub = [];
else
lb = varargin(6);
ub = varargin(7);
end
if ( rhs<8 | size(varargin(8)) ==0 ) then
param = list();
else
param =varargin(8);
end
//Check type of variables
Checktype("linprog", c, "c", 1, "constant")
Checktype("linprog", A, "A", 2, "constant")
Checktype("linprog", b, "b", 3, "constant")
Checktype("linprog", Aeq, "Aeq", 4, "constant")
Checktype("linprog", beq, "beq", 5, "constant")
Checktype("linprog", lb, "lb", 6, "constant")
Checktype("linprog", ub, "ub", 7, "constant")
nbConInEq = size(A,1);
nbConEq = size(Aeq,1);
lb = lb(:);
ub = ub(:)
b = b(:);
beq = beq(:);
if (size(lb,2)==0) then
lb = repmat(-%inf,nbVar,1);
end
if (size(ub,2)==0) then
ub = repmat(%inf,nbVar,1);
end
if (type(param) ~= 15) then
errmsg = msprintf(gettext("%s: options should be a list "), "linprog");
error(errmsg);
end
if (modulo(size(param),2)) then
errmsg = msprintf(gettext("%s: Size of parameters should be even"), "linprog");
error(errmsg);
end
options = list("MaxIter", [3000]);
for i = 1:(size(param))/2
select convstr(param(2*i-1),'l')
case "maxiter" then
options(2*i) = param(2*i);
else
errmsg = msprintf(gettext("%s: Unrecognized parameter name ''%s''."), "linprog", param(2*i-1));
error(errmsg)
end
end
//Check the size of inequality constraint which should be equal to the number of variables
if ( size(A,2) ~= nbVar & size(A,2) ~= 0) then
errmsg = msprintf(gettext("%s: The number of columns in A must be the same as the number of elements of c"), "linprog");
error(errmsg);
end
//Check the size of equality constraint which should be equal to the number of variables
if ( size(Aeq,2) ~= nbVar & size(Aeq,2) ~= 0 ) then
errmsg = msprintf(gettext("%s: The number of columns in Aeq must be the same as the number of elements of c"), "linprog");
error(errmsg);
end
//Check the size of Lower Bound which should be equal to the number of variables
if ( size(lb,1) ~= nbVar) then
errmsg = msprintf(gettext("%s: The Lower Bound is not equal to the number of variables"), "linprog");
error(errmsg);
end
//Check the size of Upper Bound which should equal to the number of variables
if ( size(ub,1) ~= nbVar) then
errmsg = msprintf(gettext("%s: The Upper Bound is not equal to the number of variables"), "linprog");
error(errmsg);
end
//Check the size of constraints of Lower Bound which should equal to the number of constraints
if ( size(b,1) ~= nbConInEq & size(b,2) ~= 0) then
errmsg = msprintf(gettext("%s: The number of rows in A must be the same as the number of elements of b"), "linprog");
error(errmsg);
end
//Check the size of constraints of Upper Bound which should equal to the number of constraints
if ( size(beq,1) ~= nbConEq & size(beq,2) ~= 0) then
errmsg = msprintf(gettext("%s: The number of rows in Aeq must be the same as the number of elements of beq"), "linprog");
error(errmsg);
end
//Check if the user gives a matrix instead of a vector
if (size(lb,1)~=1)& (size(lb,2)~=1) then
errmsg = msprintf(gettext("%s: Lower Bound should be a vector"), "linprog");
error(errmsg);
end
if (size(ub,1)~=1)& (size(ub,2)~=1) then
errmsg = msprintf(gettext("%s: Upper Bound should be a vector"), "linprog");
error(errmsg);
end
if (nbConInEq) then
if ((size(b,1)~=1)& (size(b,2)~=1)) then
errmsg = msprintf(gettext("%s: Constraint Lower Bound should be a vector"), "linprog");
error(errmsg);
end
end
if (nbConEq) then
if (size(beq,1)~=1)& (size(beq,2)~=1) then
errmsg = msprintf(gettext("%s: Constraint should be a vector"), "linprog");
error(errmsg);
end
end
for i = 1:nbConInEq
if (b(i) == -%inf)
errmsg = msprintf(gettext("%s: Value of b can not be negative infinity"), "linprog");
error(errmsg);
end
end
for i = 1:nbConEq
if (beq(i) == -%inf)
errmsg = msprintf(gettext("%s: Value of beq can not be negative infinity"), "linprog");
error(errmsg);
end
end
nbVar = size(c,1);
c = c';
conMatrix = [Aeq;A];
nbCon = size(conMatrix,1);
conlb = [beq; repmat(-%inf,nbConInEq,1)];
conub = [beq;b];
[xopt,fopt,status,iter,Zl,dual] = linearprog(nbVar,nbCon,c,conMatrix,conlb,conub,lb',ub',options);
xopt = xopt';
exitflag = status;
output = struct("Iterations" , [],..
"constrviolation" , []);
output.Iterations = iter;
output.constrviolation = []//max([0;norm(Aeq*xopt-beq, 'inf');(lb-xopt);(xopt-ub);(A*xopt-b)]);
lambda = struct("lower" , [], ..
"ineqlin" , [], ..
"eqlin" , []);
lambda.lower = []//Zl;
lambda.eqlin = []//dual(1:nbConEq);
lambda.ineqlin = []//dual(nbConEq+1:nbCon);
select status
case 0 then
printf("\nOptimal Solution.\n");
case 1 then
printf("\nPrimal Infeasible.\n");
case 2 then
printf("\nDual Infeasible.\n");
case 3 then
printf("\nIteration limit reached.\n");
case 4 then
printf("\nNumerical Difficulties.\n");
case 5 then
printf("\nPrimal Objective limit reached.\n");
case 6 then
printf("\nDual Objective limit reached.\n");
else
printf("\nInvalid status returned. Notify the Toolbox authors\n");
break;
end
endfunction
|
474dec0956323a1907087e96fe19bd71bf7e6d98 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH12/EX12.1/Ex12_1.sce | 3eca56b2bef2b5b0a0aaf82bd186151253732b62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sce | Ex12_1.sce | clc;clear;
//Example 12.1
//given data
h1=305.22;
T1=305;
h2=295.17;
T2=295;
//calculations
//from the given equation we can calculate
cp=(h1-h2)/(T1-T2);
disp(cp,'the cp of air at 300 K in kJ/ kg - K')
|
461557985341ff2c7e2e2982826a843c2db0aee5 | b52ef17dbb229bbcc28dfe42bb6fa4ae0c774d0e | /week3/task2.sce | df426a4289ee6393a2e287276fb1f1d77e3a3812 | [] | no_license | ElenPatrusheva/scilab_exp | 5d04edcf32422d021ac73cedf9f4debb7681c35b | 99414b66fd869bd6c01b6ccda7aedf212108f09c | refs/heads/master | 2021-10-08T09:49:00.143990 | 2021-10-02T17:31:08 | 2021-10-02T17:31:08 | 249,473,770 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,958 | sce | task2.sce | function res = conv(coef, signal)
res = coef * signal(length(signal):-1:1)';
endfunction
function y_k=count_out(x, y, b, a)
y_k = conv(b, x) + conv(a, y);
endfunction
function filt = count_next(filter1, x_s)
tmp = count_out(x_s(filter1.k+1:1: filter1.k+3), filter1.y_s(filter1.k+1:1:filter1.k+2), filter1.b_s, filter1.a_s);
filter1.y_s(filter1.k + 3) = tmp;
filter1.k = filter1.k + 1;
filt = filter1
endfunction
function filter_synthetic_signals(highpass_filter, lowpass_filter)
//x_s = [0 0 0.5 0.56 0.58 0.575 0.56 ] // slow changing
x_s = [0 0 1 0.5 0.9 0.5 1 0.6 1] // fast changing
for i = 1:5
lowpass_filter = count_next(lowpass_filter, x_s);
end
for i = 1:5
highpass_filter = count_next(highpass_filter, x_s);
end
disp('Input signal: ');
disp(x_s);
disp('Lowpass: ');
disp(lowpass_filter.y_s);
disp('Highpass: ');
disp(highpass_filter.y_s);
endfunction
function res = filtering(filter1, x_s)
len = length(x_s) - 2
for i = 1: len
filter1.y_s(filter1.k + 3) = count_out(x_s(filter1.k+1:1: filter1.k+3), filter1.y_s(filter1.k+1:1:filter1.k+2), filter1.b_s, filter1.a_s);
filter1.k = filter1.k + 1;
end
res = filter1.y_s
endfunction
lowpass_filter = struct('b_s', 'a_s', 'y_s', 'k');
lowpass_filter.b_s = [0.00008765554875401547 0.00017531109750803094 0.00008765554875401547];
lowpass_filter.a_s = [1.9733442497812987 -0.9736948719763];
lowpass_filter.y_s = [0 0];
lowpass_filter.k = 0;
highpass_filter = struct('b_s', 'a_s', 'y_s', 'k');
highpass_filter.b_s = [0.40495734254626874 -0.8099146850925375 0.4049573425462687];
highpass_filter.a_s = [-0.3769782747249014 -0.19680764477614976];
highpass_filter.y_s = [0 0];
highpass_filter.k = 0;
//filter_synthetic_signals(highpass_filter, lowpass_filter);
x = loadwave('data/violin.wav');
//playsnd(x);
len = length(x);
x = cat(2, [0 0 ], x);
lowpass_filter.k = 0;
lowpass_filter.y_s = [0 0];
highpass_filter.k = 0;
highpass_filter.y_s = [0 0];
low_res = filtering( lowpass_filter, x);
high_res = filtering(highpass_filter, x);
savewave('data/my_violin_filter_low', low_res, 44100);
savewave('data/my_violin_filter_high', high_res, 44100);
tmp = 1:1: len;
clf;
subplot(3, 2, 1);
xlabel('Samples');
ylabel('Amplitude');
title('Original signal');
plot( x(3: len+2 ));
subplot(3, 2, 3);
xlabel('Samples');
ylabel('Amplitude');
title('Lowpass filtering');
plot(low_res(3: len+2 ));
subplot(3, 2, 5);
xlabel('Samples');
ylabel('Amplitude');
title('Highpass filtering');
plot(high_res(3: len+2));
subplot(3, 2, 2);
xlabel('Samples');
ylabel('Amplitude');
title('Original signal');
plot(x(3: len+2 ));
subplot(3, 2, 4);
xlabel('Samples');
ylabel('Amplitude');
title('Lowpass filtering given');
plot(loadwave('data/proc_low.wav'));
subplot(3, 2, 6);
xlabel('Samples');
ylabel('Amplitude');
title('Highpass filtering given');
plot(loadwave('data/proc_high.wav'));
|
da2ef433ffaf10fcaeaadc5d1c35209b14c8aafe | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH2/EX2.3/C2P3.sce | 52173975e032a19e02af1d83acc4ee061b4df97d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,077 | sce | C2P3.sce |
clear
clc
//to find magnitude and direction of resultant of a and b and c vector
// GIVEN::
//coefficient in x direction for vector a
ax = 4.3
//coefficient in y direction for vector a
ay = -1.7
//coefficient in x direction for vector b
bx = -2.9
//coefficient in y direction for vector b
by = 2.2
//coefficient in x direction for vector c
cx = 0
//coefficient in y direction for vector c
cy = -3.6
//we can write a,b and c in vector form
a = [4.3 -1.7]
b = [-2.9 2.2]
c = [0 -3.6]
// SOLUTION:
//coefficient in x direction for resultant vector
sx = ax + bx + cx
//coefficient in y direction for resultant vector
sy = ay + by + cy
//direction of resultant vector
fi = atand(sy/sx)+360
printf ("\n\n Coefficient of resultant vector in x direction sx = \n\n %.1f",sx);
printf ("\n\n Coefficient of resultant vector in y direction sy =\n\n %.1f",sy);
printf ("\n\n Resultant vector s =\n\n %.1fi + %.1fj',sx,sy);
printf ("\n\n Direction of resultant vector with positive x axis measured counterclockwise fi =\n\n %3i degrees",fi);
|
08aa342d4271ce7181e8bb3b893f0c14a159ecfd | 669f52463d792f1d4933d95acd31792e2e47b056 | /old/test.sce | c685fbef4dd6955fa34ebb817f6433168642756c | [] | no_license | larrybolt/wisk2hitori | ce39473d7a49fa32bdfea46f0fc8c8a8acc71163 | 5f01b9c13fa50cf7d4d865c5a34c95b20d195d4c | refs/heads/master | 2021-01-22T15:01:16.856691 | 2016-05-17T10:28:17 | 2016-05-17T10:28:17 | 33,406,015 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 214 | sce | test.sce | // script die de testen uitvoert,
// eerst de controleSudoku() functie,
// daarna de solveSudoku
mode(-1);
warning('off')
exec('solver.sce')
exec('testcases/controleSudoku2.sce')
exec('testcases/solveSudoku2.sce')
|
82df762c3459ee4c40dfc22424f935ef448ae07f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3763/CH4/EX4.3/Ex4_3.sce | fd0fd14f9c11c24f36812966c716bc40456e5e18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex4_3.sce | clear
//
//
//
//Variable declaration
y=1/100 //percentage of probability
x=0.5*1.6*10**-19 //energy(J)
k=1.38*10**-23 //boltzmann constant
//Calculation
xbykT=log((1/y)-1)
T=x/(k*xbykT) //temperature(K)
//Result
printf("\n temperature is %0.0f K",T)
printf("\n answer varies due to rounding off errors")
|
02f67fa12793bd428add700a00b4897b342c8c21 | 463377b6374a24bbe111707a34e24949f3bd2543 | /spa.sci | 4b91cc9d3399d37d6ecd52fd50d5c51b69adb583 | [] | no_license | solothinker/Scilab-Identification | 3a46c0f3b8b1a7430f8a799be5e1310e2723b535 | cdad0d7292c31c29d377b640f6966a7c3bb81bb9 | refs/heads/master | 2022-01-05T12:39:07.410803 | 2019-06-15T02:18:13 | 2019-06-15T02:18:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,339 | sci | spa.sci | function varargout = spa(varargin)
[lhs , rhs] = argn();
if ( rhs < 1 || rhs > 3 ) then
errmsg = msprintf(gettext("%s: Wrong number of input arguments" ),"spa");
error(errmsg)
elseif typeof(varargin(1)) <> "iddata" then
error(msprintf(gettext("%s:Plant data must be ""iddata"" type.\n"),"spa"))
end
plantData = varargin(1)
windowSize = %F
inputFreq = %F
//------------------------------------------------------------------------------
// arranging the plant data
inputData = plantData.InputData;
if ~size(inputData,"*") then
error(msprintf(gettext("%s:Input data must be non-zero vector. \n"),"spa"))
end
outputData = plantData.OutputData
if ~size(outputData,"*") then
error(msprintf(gettext("%s:Output data must be non-zero vector. \n"),"spa"))
end
//------------------------------------------------------------------------------
N = size(inputData,'r')
nout = size(outputData,'c')
nin = size(inputData,'c')
if ~windowSize then
windowSize = min(N/10, 30)
end
if inputFreq then
else
inputFreq = (1:128)/128 * %pi/plantData.Ts
end
M = windowSize
Ryu = xcov(outputData,inputData,M,'biased')
Ruu = xcov(inputData,inputData,M,'biased')
Ryy = xcov(outputData,outputData,M,'biased')
G = [];spect = [];
for ii = 1:nout
phiY = spaCalculation(inputFreq,Ryy,M)
temp = phiY
for jj = 1:nin
phiYU = spaCalculation(inputFreq,Ryu,M)//sapply(freq, cov2spec, Ryu[i, j, ], M)
phiU = spaCalculation(inputFreq,Ruu,M)
G = [G phiYU./phiU]
//pause
temp = temp - phiYU .* conj(phiYU)./phiU
end
spect = [spect temp]
end
// disp(size(spect))
// disp(spect)
frdData = frd(G',inputFreq',plantData.Ts,spect')
varargout(1) = frdData
endfunction
function varargout = spaCalculation(varargin)
inputFreq = varargin(1)
xcovData = varargin(2)
Mnumber = varargin(3)
temp = []
win_l=window('hn',2*Mnumber+1)
for ii = 1:size(inputFreq,'c')
seq1 = exp(-(%i) * (-Mnumber:Mnumber) * inputFreq(ii))
data = (seq1.*win_l)
data2 = sum(data.*xcovData')
temp = [temp data2]
end
varargout(1) = temp
endfunction
|
31a2fd8dbf372a3e5614921b2888c51517fb37ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH12/EX12.21/Example12_21.sce | 1dca18de27829bdc815cfd6b92bfc89e3c8e8df7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,383 | sce | Example12_21.sce | //Example 12.21
//Program to :
//(a)Calculate second order dispersion coefficient for L1
//(b)Determine the dispersion slope for L2
//(c)Verify that periodic dispersion management map will provide
//sufficient coincidence to facilitate reliable DWDM transmission
clear;
clc ;
close ;
//Given data
L1=160; //km - PATH LENGTH
L2=20; //km - PATH LENGTH
//(a)To calculate second order dispersion coefficient for L1
Beeta22=17; //ps/nm/km - 2nd ORDER DISPERSION COEFF. FOR L2
Beeta21=-Beeta22*L2/L1;
printf("\n\n\t(a)The second order dispersion coefficient for L1 is %0.3f ps/nm/km",Beeta21);
//(b)To determine the dispersion slope for L2
S1=0.075; //ps/nm^2/km - DISPERSION SLOPE FOR L1
S2=-S1*L1/L2;
printf("\n\n\t(b)The dispersion slope for L2 is %0.1f ps/nm^2/km",S2);
//(c)To verify that periodic dispersion management map will provide
//sufficient coincidence to facilitate reliable DWDM transmission
OP=S1*(L1/L2)+S1*(Beeta22/Beeta21);
if OP==0 then
printf("\n\n\t(c)Periodic dispersion management map will provide sufficient coincidence to facilitate reliable DWDM transmission as S1(L1/L2)+S1(Beeta22/Beeta21)=0");
else
printf("\n\n\t(c)Periodic dispersion management map will not provide sufficient coincidence to facilitate reliable DWDM transmission as S1(L1/L2)+S1(Beeta22/Beeta21)!=0");
end |
823a9c369bc3b5dddf497f6bc49d837847048d60 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/int/%i_sign.sci | 731279d3ac5fcdc9b66a283fb7bf6cae2ed1d840 | [
"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 | 105 | sci | %i_sign.sci | function r=%i_sign(m)
it=inttype(m)
r=m;
r(1:$)=iconvert(1,it)
r(find(m<iconvert(0,it)))=iconvert(-1,it)
|
203585542ca751df0445f6063fdb4329d15b597e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH1/EX1.34/1_34.sce | 64af3d23b95e44db5cacfa5c348a300916cc7287 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 986 | sce | 1_34.sce | clc
clear
//Input data
T1=300;//Minimum temperature of the plant containing a two stage compressor with perfect intercooling and a single stage turbine in K
T5=1100;//Maximum temperature of the plant in K
P1=1;//Initial Pressure in bar
P5=15;//Final pressure in bar
Cp=1.05;//Specific heat of air in kJ/kg K
r=1.4;//Isentropic ratio
P6=P1;//Pressure at 6 in bar
//Calculations
P3=(P1*P5)^(1/2);//The intermediate pressure for cooling in bar
P2=P3;//Pressure at point 2 in bar
T2=T1*(P2/P1)^((r-1)/r);//Temperature at the end of process 1-2
T3=T1;//Intermediate temperature in K
T4=1.473*T3;//Temperature at point 4 in K
T6=T5/(P5/P6)^((r-1)/r);//Temperature at point 6 in k
Wt=Cp*(T5-T6);//Work done by the turbine per kg of air in kJ/s
Wc=Cp*(T4-T3)+Cp*(T2-T1);//Work done by the compressor per kg of air in kJ/s
Wn=Wt-Wc;//Net work done in kJ/s
Pn=Wn;//Net power developed in kW
//Output
printf('The net power of the plant per kg of air/s is %3.2f kW',Pn)
|
3b0ec04aaec44b00612ccc4489031d2877623d20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH22/EX22.5/example22_5.sce | fd7f52d202c21b75ee8b8fcfc8e767bae23980c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | example22_5.sce | c=10*10^(-6);
r=5*10^3;
v=24;
disp("Part a");
t=r*c;
disp("the time constan (in ms) of the circuit i; disp(t*10^3)");
disp("Part b");
rate=v/t;
disp("the initial rate of rise of capacitor voltage (in V/s) is"); disp(rate);
disp("Part c");
t1=5*t;
disp("time taken (in ms) to reach 24 V is"); disp(t1*10^3); |
3650159ee5ee06e544e026db906a6aeddbb8fe9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH11/EX11.11/Ex11_11.sce | 97928507e4e7b566cb51e57702d6f246ec8b4174 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sce | Ex11_11.sce | //chapter11
//example11.11
//page210
V_Rc=1
gain_beta=45
Rc=1 // kilo ohm
Ic=V_Rc/Rc
//since gain_beta=Ic/Ib
Ib=Ic/gain_beta
printf("base current = %.3f mA",Ib)
|
480f44c9fb75c2559ed18f52e566d3170cceda21 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH7/EX7.1/Ex7_1.sce | 5bdf512b4098bad2649e03b2d026b2be51654236 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 926 | sce | Ex7_1.sce | // Problem no 7.1,Page no.183
clc;clear;
close;
G=84 //Gpa //Modulus of Rigidity
N=110 //no. of revolution
//d*D**-1=0.6 //Ratio of inner diameter to outer diameter
sigma_s=63 //MPa //shear stress
L=3 //m //Length of shaft
P=590 //KW //Power
//Calculation
//P=2*%pi*N*T_mean*60000**-1 //KW //Power
T_mean=P*60000*(2*%pi*N)**-1 //N*m //Mean Torque
//I_p=p*32**-1*(D**4-d**4)
//After substituting value of d in above equation we get
//I_p=0.0272*%pi*D**4 //m**4 //Polar moment of Inertia
T_max=1.2*T_mean //N*m //Max torque
//Using Relation
//T_max*T_p**-1=sigma_s*R**-1=G*theta*L**-1
//After substituting values and simplifying we get
D=(5.7085*10**-3)**0.3333 //m //Diameter of shaft
theta=1.4*%pi*180**-1 //radians
//theta=((T_max*L)*(G*10**9*I_p)) //radians
//After substituting values and simplifying we get
D_1=(1.0513*10**-3)**0.25
//Result
printf("The Minimum external diameter is %.2f",D_1);printf(" m")
|
6e98cf4e767c362adcbfcc7943791bea0f43bf50 | 449d555969bfd7befe906877abab098c6e63a0e8 | /46/CH22/EX22.2/Example22_2.sce | 52a0911373e38d84f94adee7a2d0b1fecd525f61 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 114 | sce | Example22_2.sce | //Example 22.2
clc
syms T tau z n
disp("f(t)=exp(-t/tau)")
ft=exp(-n*T/tau)*z^(-n);
Z=symsum(ft,n,0,%inf)
|
ef6741dac31c70501f7ea2366c9c99f5b22f5e47 | 417f69e36190edf7e19a030d2bb6aa4f15bb390c | /SMTTests/tests/err_scope_sort.tst | df8e850a6a947c699a8af521c6ab47fb899471ea | [] | no_license | IETS3/jSMTLIB | aeaa7ad19be88117c7454d807a944e8581184a66 | c724ac63056101bfeeb39cc3f366c8719aa23f7b | refs/heads/master | 2020-12-24T12:41:17.664907 | 2019-01-04T10:47:43 | 2019-01-04T10:47:43 | 76,446,229 | 1 | 0 | null | 2016-12-14T09:46:41 | 2016-12-14T09:46:41 | null | UTF-8 | Scilab | false | false | 124 | tst | err_scope_sort.tst | ; test scope of declare-sort
(set-logic QF_UF)
(declare-sort A 0)
(push 1)
(declare-sort B 0)
(pop 1)
(declare-fun xx () B)
|
0baf142446cde8b27756c10be6e7e1604d3afd07 | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH5/EX5.17/ex_5_17.sce | 6bff1f3552e6f9611d1516bbf88ab11bbeba82ea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,073 | sce | ex_5_17.sce | //find dia using two diffrnt theories
clc
//soltion
//given
fs=700//N/mm^2
M=10*10^6//N-mm
T=30*10^6//N-mm
Fs=2//factor of safety
E=210*10^3//N/mm^2
m=4
pi=3.14
//let d be dia of shaft in mm
//Z=(pi/32)*d^3//mm^3
//f1=M/Z=101.8*10^6/d^3//N/mm^2
//t=16*T/(pi*d^3)=152.8*10^6/d^3//N/mm^2
//ft1=(f1/2)+(0.5*sqrt((f1^2)+(4*t^2)))
//ft1=211.9*10^6/d^3//N/mm^2/max prin stress
//ft2=(f1/2)-(0.5*sqrt((f1^2)+(4*t^2)))//min prin stress
//ft2=-110.1*10^6/d^3//N/mm^2
//acc to max shear stress theory
//Tmax=(ft1-ft2)/2=161*10^6/d^3//max shear stress theory
//Tmax=fs/(2*Fs)
//161*10^6/d^3=700/(2*2)
d=(161*10^6/175)^(1/3)//mm
//acc to max strain energy theory
//1/(2*E)*[ft1^2+ft2^2-(2*ft1*ft2/m)]=1/(2*E)*[fs/Fs]^2
//ft1^2 + ft2^2- (2*ft1*ft2/m)=[fs/Fs]^2
//[211.9*10^6/d2^3]^2 + [-110.1*10^6/d2^3]^2 + [2*211.9*10^6*110.1*10^6*0.25/d2^6]=[700/2]^2
//68689*10^12/d2^6=122500
d2=(68689*10^12/122500)^(1/6)//mm
printf("the dia of shaft using max shear stress theory is,%f mm\n",d)
printf("the dia of shaft using max strain energy theory is,%f mm",d2)
|
511a7417807a834a7e5a1f5b900dbb3d6eeca27f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3821/CH10/EX10.12/Example10_12.sce | 90c37c39b1dfde87a42758ebd19a0b000ff0dd53 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,290 | sce | Example10_12.sce | /////////Chapter 10 Properties Of Steam
/////Example 10.12 Page No:194
///Entropy of 1.5Kg of superheated steam
//Input data
clc;
clear;
m=1.5; //Entropy of the steam
P=10*10^5; //Absolute pressure in bar
//From steam table properties of saturated steam
///(pressure basis)at 10 bar
ts=179.9+273; //Indegree celsius
vf=0.001127; //In m**3/Kg
vg=0.1943; //In m**3/Kg
hf=762.6; ///In KJ/Kg
hfg=2013.6; //In KJ/Kg
hg=2776.2; //In KJ/Kg
Sf=2.1382; //In KJ/KgK
Sfg=4.4446; //In KJ/KgK
Sg=6.5828; //In KJ/Kg
Cps=2.3;
tsup=250+273;
///Calculation
//(1)Enthalpy of dry and saturated steam
h=hg; //Enthalpy of dry and saturated steam
EODS=hg*m; //Enthalpy of 1.5Kg of dry and saturated steam
v=vg; //volume of dry and saturated steam
u=h-((P*v)/10^3); //Internal Energy
IES=u*m; //Internal energy of the steam
s=6.5858; //Entropy of dry and saturated steam
EODSS=s*m; //Entropy of 1.5Kg dry and saturated steam
x=0.75;
//(2)Enthalpy of wet steam
h1=hf+x*hfg; //Enthalpy of wet steam
EWS=h1*m; //Enthalpy of1.5Kg of wet steam
Vwet=x*vg; //Volume of steam
u1=h1-((P*Vwet)/10^3); //Internal energy
IES1=u1*m; //Internal energy of1.5Kg of the steam
s1=Sf+x*Sfg; //Entropy of wet steam
EWS1=s1*m; //Entropy of1.5Kg of wet steam
///(3)Enthalpy of superheated steam
h2=hg+Cps*(tsup-ts); //Enthalpy of superheated steam
EOSHS=h2*m; //Enthalpy of 1.5Kg of superheated steam
Vsup=vg*(tsup/ts); //Volume of superheated steam
u2=h2-((P*Vsup)/10^3); //Internal energy
IES2=u2*m; //Internal energy of 1.5Kg of the steam
s2=Sg+Cps*(log(tsup/ts));//Entropy of superheated steam
EOSHS1=s2*m; //Entropy of 1.5Kg of superheated steam
///Output
printf('Enthalpy of dry and saturated steam= %f KJ/Kg \n ',h);
printf('Enthalpy of 1.5Kg of dry and saturated steam= %f KJ \n ',EODS);
printf('volume of dry and saturated steam= %f m^3/Kg \n ',v);
printf('Internal Energy= %f KJ/Kg \n ',u);
printf('Internal energy of the steam= %f KJ \n ',IES);
printf('Entropy of dry and saturated steam = %f KJ/KgK \n ',s);
printf('Entropy of 1.5kg of dry and saturated steam= %f KJ/K \n ',EODSS);
printf('Enthalpy of wet steam= %f KJ/Kg \n ',h1);
printf('Enthalpy of1.5Kg of wet steam= %f KJ \n ',EWS);
printf('Volume of steam= %f m^3/Kg \n',Vwet);
printf('Internal energy= %f KJ/Kg \n ',u1);
printf('Internal energy of1.5Kg of the steam= %f KJ \n ',IES1);
printf('Entropy of wet steam= %f KJ/KgK \n ',s1);
printf('Entropy of 1.5Kg of wet steam= %f KJ/K \n ',EWS1);
printf('Enthalpy of superheated steam= %f KJ/Kg \n ',h2);
printf('Enthalpy of 1.5Kg of superheated steam= %f KJ \n ',EOSHS);
printf('Volume of superheated steam= %f m^3/Kg \n',Vsup);
printf('Internal energy= %f \n ',u2);
printf('Internal energy of1.5Kg of the steam= %f KJ \n ',IES2);
printf('Entropy of superheated steam= %f KJ/KgK \n ',s2);
printf('Entropy of 1.5Kg of superheated steam= %f KJ/K \n ',EOSHS1);
|
1a120cf456d6a352529dbe88b8774b6694c6d208 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3651/CH3/EX3.6/6.sce | e6cca4249d2c5d883d4613ed7281d9858c0d8e17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | sce | 6.sce |
//Variable declaration
E=2*1000*1.6*10**-19 //in joules
m=9.1*10**-31
h=6.6*10*10**-34
//Calculations
p=sqrt(2*m*E)
lamda= h/p
//Result
printf('Momentum%0.3f \n ',(p*10**23))
printf('de Brolie wavelength =%0.3f *10**-11 m \n ',(lamda*10**10)) |
5eb657000593ad46fc5c03eda301f6798131e22a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1574/CH7/EX7.4/N_Ex_7_4.sce | f0baa95d650a67fa85d8e6ba7dc12003e1f41dae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | N_Ex_7_4.sce | clc
//Chapter8
//Example7.4, page no 283
//Given
Ap1=10, Ap2=10, Ap3=10; // Gain of each states
F_1=6, F_2=6, F_3=6; //Noise figure of each state
F1= round(10^(F_1/10)), F2= round(10^(F_2/10)), F3= round(10^(F_3/10)); // approximating the values
F=F1+((F2-1)/Ap1)+((F3-1)/(Ap1*Ap2))
mprintf('overall noise Figure is: %f',F)
|
2f6ea2f8594afa8c3b544ecc05fcb0097ce90651 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH23/EX23.2/C23P2.sce | ea009c09c4237c47a0d16722fcd52ea5f2d24d59 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,024 | sce | C23P2.sce | clear
clc
//to find rate of heat energy pass through the insulation
//to find additional insulation required to reduce heat transfer rate by half
//Given:
//refer to figure 23-6 from page no. 520
////temperature of steam
TS = 100//in degree celsius
//diameter of pipe
d = 5.4//in cm
//thickness of insulation
t = 5.2//in cm
//length of pipe
D = 6.2//in meters
//temperature of room
TR = 11//in degree celsius
//thermal conductivity
k = 0.048//in W/m.K
//Solution:
//radius of cylinder
r1 = d/2//in cm
//radius of cylinder with insulation
r2 = r1+t//in cm
//applying fourier's law of heat conduction
//rate of heat energy pass through the insulation
H = (2*%pi*k*D*(TS-TR))/(log(r2/r1))//in W
//additional insulation required to reduce heat transfer rate by half
r2_dash = (r2^2)/r1//in cm
printf ("\n\n Rate of heat energy pass through the insulation H = \n\n %3i W" ,H);
printf ("\n\n Additional insulation required to reduce heat transfer rate by half r2_dash = \n\n %2i cm" ,r2_dash);
|
fc80fba71b7fd7ca6dfb8fc3095396fc9c3da0b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /728/CH9/EX9.4/Ex9_4.txt | 70fa5627665c5c644717363a02b643df81e34649 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 439 | txt | Ex9_4.txt | //Caption:Calculate (i)-critical voltage ,(ii)-breakdown voltage, (iii)-breakdown electric field
//Exa:9.4
clc;
clear;
close;
E_s=12.5;
E_o=8.85*10^-12;
E=E_o*E_s;
N=3.2*10^22;//per cubic meter
L=8*10^-6;//in m
q=1.6*10^-19;//in coulombs
V_c=q*N*L^2/(2*E);
V_bd=2*V_c;
E_bd=V_bd/L;
disp(V_c/10^3,'Critical voltage(in kV) =');
disp(V_bd/10^3,'Breakdown Voltage (in kV) =');
disp(E_bd,'Breakdown Electric field (in V/cm) ='); |
8cf04ecedbdb77dc28639c04280320ed2f490c73 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1202/CH14/EX14.1/14_1.sce | 5d22d637814d7ef644482cf522d38f975908ee8e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 123 | sce | 14_1.sce | clear
clc
//Example 14.1
disp('Example 14.1')
Sd=30;
Su=15;
Rd=1/3;
K_R=Rd*Sd/Su; //Eqn 14-3
mprintf(" K_R=%f",K_R)
|
2318d6deddda060bc80a396eb98c73053ec88957 | a0245764b2be57f52cefa70a2c0438b6287fc029 | /resources/views/account/create-test/views_test/txt-file/5db9f36f4eef9_10.30.19_JS.tst | 3c91305772f9d8e57e0a417297501fa826028f44 | [] | no_license | shillepython/kit_test | fa2cd635cf8fd52528f539155a0be7ad785634c8 | a3bbc8c9f64b746cc4933ddd04201c8fcf3191fc | refs/heads/master | 2021-07-11T17:49:06.478488 | 2019-11-08T22:54:14 | 2019-11-08T22:54:14 | 212,837,203 | 0 | 0 | null | 2021-06-22T15:20:41 | 2019-10-04T14:44:18 | PHP | UTF-8 | Scilab | false | false | 3,723 | tst | 5db9f36f4eef9_10.30.19_JS.tst | 12 12 <12>
11 11 <11>
10 10 <10>
9 9 <9>
8 8 <8>
7 7 <7>
6 6 <6>
5 5 <5>
4 4 <4>
3 3 <3>
2 2 <2>
0 1 <1>
7 05 <time>
{---------------------------------1----------------------------------}
1) Какое ключевое слово позволяет создавать объекты общего вида?
&
*object
prototype
this
class
var
&
{---------------------------------2----------------------------------}
2) Какая функция позволяет очищать конечную анимацию?
&
setInterval
*clearTimeout
setTimeout
TimeoutSet
IntervalGet
&
{---------------------------------3----------------------------------}
3) Какой оператор служит для создания нового экземпляра из класса однотипных объектов?
&
prototype
this
*new
object
class
&
{---------------------------------4----------------------------------}
4) В какой строке создастся новый объект Array?
&
var pattern = new Array[a,b,c];
var pattern = /s&/;
*var pattern = [a,b,c];
var pattern = New[a,b,c];
var pattern = Array[];
&
{---------------------------------5----------------------------------}
5) С помощью какого элемента можно разместить ссылку в JavaScript?
&
*<a href>
<noscript>
<script>
<p>
</href>
&
{---------------------------------6-----------------------------------}
6) Какой метод позволяет изменять порядок элементов массива на противоположный?
&
sort()
join()
pop()
push()
*reverse()
&
{---------------------------------7-----------------------------------}
7) Объекты, отвечающие, что содержится на Web-странице в окне браузера называются:
&
*клиентскими
пользовательскими
встроенными
классами
теги
&
{---------------------------------8-----------------------------------}
8) Какое событие возникает при нажатии любой из кнопок мыши?
&
onmouseup
*onmousedown
onmouseclick
onclick
buttonclick
&
{---------------------------------9-----------------------------------}
9) Какое свойство, из ниже перечисленных, позволяет узнать, какая функция вызвала данную функцию?
&
arguments[]
prototype
*caller
callback
class
&
{---------------------------------10----------------------------------}
10) Что такое ECMAScript?
&
технология для обмена данными с сервером
*встраиваемый расширяемый язык программирования
спецификация javascript
скрипт написанный на ECMA
плагин ECMA
&
{---------------------------------11----------------------------------}
11) Может ли свойство responseXml объекта XmlHttpRequest содержать после запроса XML-документ, отличный от принятого с сервера?
&
нет, либо принятый документ, либо пусто
во всем виновата Opera
всегда и везде сервер одинаковый
нет, но может в Опере
*да, в Firefox такое случается
&
{---------------------------------12----------------------------------}
12)Какой метод интерпретирует элементы массива как строковые литералы и сортирует массив в алфавитном порядке?
&
join()
*sort()
reverse()
alphabet()
$array_sort()
& |
aa75de64968280a23b8b7b13f679940dbcbbe155 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/IncNavierStokesSolver/Tests/ChanStability_Coupled.tst | eb8f57cb3c98bd52b005b6fd315700005927b170 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 862 | tst | ChanStability_Coupled.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>Linear stability with coupled solver (Arpack LI): Channel Largest real Ev = (0.00223554,+/-0.249844i)</description>
<executable>IncNavierStokesSolver</executable>
<parameters>ChanStability_Coupled.xml</parameters>
<files>
<file description="Session File">ChanStability_Coupled.xml</file>
<file description="Session File">ChanStability_Coupled.rst</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="0.0001">2.58904</value>
<value variable="v" tolerance="0.0001">0.00277094</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="0.00001">1.00142</value>
<value variable="v" tolerance="0.00001">0.00367426</value>
</metric>
</metrics>
</test>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.