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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c30681938440dabd5437abd7d8fb81be9e5147be | 449d555969bfd7befe906877abab098c6e63a0e8 | /3822/CH4/EX4.1/Ex4_1.sce | fd48bb46a06a72cd76b6a741998ee66a6453da3f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 972 | sce | Ex4_1.sce |
//Optoelectronics and Fiber Optics Communication by C.R. Sarkar and D.C. Sarkar
//Example 4.1
//OS = Windows 7
//Scilab version 5.5.2
clc;
clear;
//given
h=6.62*10^-34;//Plank's constant in SI units
c=3*10^8;//speed of the light in m/s
e=1.9*10^-19;//electric charge in columb
I=50*10^-3;//drive current in A
lamda=0.85*10^-6;//peak emission wavelength in m
taur=50*10^-9;//radiative carrier life time in s
taunr=100*10^-9;//nonradiative carrier life time in s
Tp=(taur*taunr)/(taur+taunr);///total carrier life time in s
etaint=Tp/taur;//equation of internal efficiency
c1=(I*h*c)/(e*lamda);//constant value
Pint=(etaint)*c1;//internal optical power generated in W
mprintf("\n Total carrier life time is =%.2fns ",Tp*1e9);//multiplication by 1e9 for conversion of unit from s to ns
mprintf("\n Optical power generated internally is= %.2f mW ",Pint*1e3);//multiplication by 1e3 for conversion of unit from W to mW//the answer vary due to rounding
|
08f41ba6d9dc7db7d59bc48e0bcd7d450c3376ec | 39c5c468df5e2bde0147a30cf092fc8da3e7ed3e | /UFRGS/calcNumerico/area2/P2_numerico_oberdan/M8 - Minimos_Quadrados/M8-Q1-5 - minimos-quadrados.sce | 6a69e3c01db3b10c12dfe74a522dd632adfb7726 | [] | no_license | andredxc/Files | 9dffc9fe5f7e923b83035d794dfa15c930cdb898 | e32309b9ab548b829b04be66c2776cf9c9c6656e | refs/heads/master | 2021-06-03T10:44:01.606242 | 2020-09-21T15:39:48 | 2020-09-21T15:39:48 | 107,410,076 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,951 | sce | M8-Q1-5 - minimos-quadrados.sce | /**
* Coloca em a os coeficientes do polinomio de GRAU ESPECIFICADO EM P que
* melhor se ajuste aos pares x,y.
* PARA RETAS -> p=1
* PARA PARABOLAS -> p=2...
*/
clear
p = 1 //q1 Ordem do polinomio a ser gerado
p = 1 //q2 Ordem do polinomio a ser gerado
p = 2 //q3 Ordem do polinomio a ser gerado
p = 2 //q4 Ordem do polinomio a ser gerado
p = 3 //q5 Ordem do polinomio a ser gerado
// Pares (x,y)
//x = [0:0.2:1]' //q1 Coordenada x transposta
//x = [0:0.2:1]' //q2 Coordenada x transposta
//x = [1:0.5:12]' //q3 Coordenada x transposta
//x = [1:0.5:12]' //q4 Coordenada x transposta
x = [1:0.5:12]' //q5 Coordenada x transposta
//y = sin(x+5) //q1 Coordenada y transposta
//y = cos(x+6) //q2 Coordenada y transposta
//y = 3*sin(x+10)+x^2 //q3 Coordenada y transposta
//y = 10*sin(x)+x^2 //q4 Coordenada y transposta
y = sin(8+1./x) //q5 Coordenada y transposta
n = size(x,1)
//plot(x,y,'ro-'),xgrid // Plota grafico dos pontos
// Monta matriz simetrica de minimos quadrados
for i=1:p+1 //for (i=1; i<= p+1; i++)
for j=1:p+1
M(i,j) = sum(x.^(i+j-2)) // . elemento a elemento
end
// Monta matriz de resultado b
for i=1:p+1
b(i) = sum(y.*x.^(i-1))
end
// Pegando os coeficientes do polinomio de ajuste
a = inv(M)*b;
// Monta polinomio para plotagem
XX = 1:0.5:12 // Colocar os mesmos pontos passados por X, ou que pegue todos pontos de X pra deixar o grafico melhor
YY = 0
residuo = 0
for i=1:p+1
YY = YY+a(i)*XX.^(i-1); // Polinomio
residuo = residuo+a(i)*x.^(i-1);
end
residuo = residuo - y;
//plot(XX,YY,'b-');xgrid
t=2;
f=(a(1,1)+a(2,1)*t) // ... +a(n,1)*t^n
//disp(a(1)); //questão 1
//disp(a(2)); //questão 2
//disp(a(3)); //questão 3
//disp(a(1)+(a(2)*3.14)+(a(3)*3.14^2))//questão 4 // Valor do polinomio de ajuste no ponto, polinomio
disp(a(1)+(a(2)*2.1)+(a(3)*2.1^2)+(a(4)*2.1^3))//questão 5 // Valor do polinomio de ajuste no ponto, polinomio
// YY = a(1) + a(2)*XX + a(2)*XX^2 ... a(n)*XX^n
|
1e1242793a47a00c10fcd3c09246afac221818db | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/CH8/EX8.13/example_8_13.sce | 878ac77991809a163579701ea6d8f4137f240905 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 184 | sce | example_8_13.sce | //example 8.13
clc;
clear;
disp('For SR flip flop Qn+1 = S + R`Qn and for D flip-flop Qn+1 = D .');
disp('Thus with D = S + R`Qn we get circuit which behaves like SR flip-flop.');
|
322eb7fb1d1fdab7dc6f0e45eb8c3f3b625e8136 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2231/CH2/EX2.2/Ex_2_2.sce | ff2d994a631ef00dfe0800d8fb645b82a59c6eb4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 302 | sce | Ex_2_2.sce | //Example 2_2
clc;
clear;close;
//Given data:
Vo=50;//V
R=10;//ohm
//Vin=100*sin(omega*t);//V
Vm=100;//V
//Solution :
omega_t=asin(Vo/Vm);//radian
Iavg=1/2/%pi*integrate('(Vm*sin(omega_t)-Vo)/R','omega_t',omega_t,omega_t+2*%pi/3);//A
disp(Iavg,"Average current in the circuit(A) : ");
|
19796a67d008ac065d240f03534aed54d40616ec | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.1.1/Unix/scilab-2.1.1/macros/metanet/anpath.sci | b844e561d453937af57f0e63a95e231bedf041a1 | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 201 | sci | anpath.sci | function p=anpath(i,j,g)
[lhs,rhs]=argn(0), if rhs==2 then g=the_g, end
if ( i<0 | i>g_nodnum(g) | j<0 | j>g_nodnum(g)) then
error('bad internal node number')
end
[l,v]=dfs(i,g)
p=prevn2p(i,j,v,g)
|
8176fc0e0296b356e01c17223e0a6d4842d41a5a | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH8/EX8.3/Example8_3.sce | 1a37c1761ef4600fe44ed07a8bff62ac1bd9efd1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 312 | sce | Example8_3.sce | //Given that
h = 8.5 //in meter\
g = 9.8 //in m/s^2
//Sample Problem 8-3
printf("**Sample Problem 8-3**\n")
//Using conservation of energy
//Change in Potential energy = Change in Kinetic energy
//m* g* h = .5* m* v^2
v = sqrt(2* g * h)
printf("The velocity of child at the bottom will be %fm/s", v) |
c879c09986cb780f76781a2977427107fb839366 | 46e52b7010c1dc6beb86c615f0d59494c00e6554 | /tp3/src/tests/test13.tst | d0e141c94cd3b7a1f3e9d866f97258a90f5bb620 | [] | no_license | impronunciable/so2015 | 22bd1cf0831c29d091a3f94bc36342ebb51b7aed | 8bdabf28dc17ca4c92a264036c0fbe9c31430de3 | refs/heads/master | 2020-04-14T12:25:47.123488 | 2015-11-10T22:00:51 | 2015-11-10T22:00:51 | 41,392,542 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | tst | test13.tst | cccccccccccccccccccccccccccccccccccccccc
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
dddddddddddddddddddddddddddddddddddddddd
cccccccccccccccccccccccccccccccccccccccc
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
cccccccccccccccccccccccccccccccccccccccc
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
cccccccccccccccccccccccccccccccccccccccc
|
a76a6cb235c29c2702935d588f5d3dcad6fbdd5e | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/hdrfilter.tst | fb37fa7276123ffdd240153cccdd2c2938f2affa | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | dougsong/reposurgeon | 394001c0da4c3503bc8bae14935808ffd6f45657 | ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b | refs/heads/master | 2023-03-09T15:22:45.041046 | 2023-02-25T08:33:06 | 2023-02-25T08:33:06 | 280,299,498 | 1 | 0 | NOASSERTION | 2023-02-25T08:33:08 | 2020-07-17T01:45:32 | Go | UTF-8 | Scilab | false | false | 104 | tst | hdrfilter.tst | ## Test msgout --filter option
read <sample1.fi
=C msgout --filter=/Author:|Committer:|Committer-Date:/
|
d2a38a696646f6d8ec59694e0b9afc0cfcbf0cee | dc628e7d8425aa0bb1460d2583f04c9969b4ec9c | /dlog-server/src/prolog_translator/zsl_test_subrole02.tst | 297b0a1bc160368c1d788cbf6a3c8c71a2fa3514 | [] | no_license | logicmoo/DLog | bc2c43523ccbc3747c381f2eb0e25960cfc8d6e1 | 855774c38c1eea119405fde0057cfdb1032006f0 | refs/heads/master | 2021-05-28T14:03:35.596790 | 2015-01-12T22:49:56 | 2015-01-12T22:49:56 | 27,461,790 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 577 | tst | zsl_test_subrole02.tst | % options([abox_target(allinonefile), tbox_target(allinonefile)]).
options([abox_target(allinonefile), tbox_target(allinonefile), projection(no), ground_optim(no)]).
options([abox_target(allinonefile), tbox_target(allinonefile), projection(no), ground_optim(no), unfold(yes)]).
concept(d).
role(a).
role(b).
role(c).
subrole(arole(b),arole(a)).
subrole(arole(c),arole(a)).
implies(some(arole(a),top),aconcept(d)).
rassertion(arole(b),i1,i2).
rassertion(arole(a),d1,d2).
cassertion(aconcept(d),d5).
% expected result: aconcept(c): i1
%query(instances(aconcept(c)), _).
|
21659a3bfe8dd4ff496619ecd202f378b3f1a314 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1484/CH1/EX1.10/1_10.sce | b0281ab691b2667b8abb92ca0c1732a2d3c39cbb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 219 | sce | 1_10.sce | clc
//initialisation of variables
w= 3 //ft
h= 15 //ft
d= 140 //lbs/ft^3
x= 6 //in
W= 62.4 //lbs/ft^3
//CALCULATIONS
W1= h*w*d
h= (W1*x*6/(W*12))^(1/3)
//RESULTS
printf (' height of water rise = %.2f ft',h)
|
e527aa96e8609836a0223b70cda262a96f2aa6eb | 63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa | /test/0082.tst | c45b6dffb4ef074f85af37fcb4a1603a39657800 | [] | no_license | fmeci/nfql-testing | e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c | 6b7d465b32fa50468e3694f63c803e3630c5187d | refs/heads/master | 2021-01-11T04:09:48.579127 | 2013-05-02T13:30:17 | 2013-05-02T13:30:17 | 71,239,280 | 0 | 0 | null | 2016-10-18T11:01:57 | 2016-10-18T11:01:55 | Python | UTF-8 | Scilab | false | false | 379 | tst | 0082.tst | spLitTEr y {}
FiLTeR lua { }
FILTer t {NOt iU NOt q }
j -> C
gROupEr j {AgGREgaTE UG.Y }
uNGroUPer I { }
gROUPfiLTER v {nOt A::2aCB:2:6dFf:fe:7:3/5 = C 96 >> G Or nOT o ( ) oR U << R oR BiTAnD ( 057, ) OR bitand ( ) OR bMnWHe ( 3, ) or m ( ) or 4 = 250.0.251.244 bItaNd ( ) }
MERgEr KDhNA { MOdulE O { brAncheS K, DIQjE nOT t ( 237.253.4.253 ) } eXpORT ER } |
25635abf6404f64104fd7c2f2c27ce160b580061 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH8/EX8.5.16/8_5_16.sce | 1fe96ec9770a4d6e60ff7364d5a6aed93cc0c3b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sce | 8_5_16.sce | clc
clear
//Input data
Mx=1.5 //Mach number
P=40 //Static pressure in kPa
//Calculation
p1=3.413 //Pressure ratio in (Poy/Px) from normal shock gas tables @Mx
Poy=p1*P //Pressure acting on front of the body in kPa
//Output
printf('Pressure acting on front of the body is %3.1f kPa',Poy)
|
012e71f3a284ef303437c92d7f36ed551209dca6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2594/CH3/EX3.11/Ex3_11.sce | d8acf7eb0a415db26885fbc1fe3b2aff9f8fcd05 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 962 | sce | Ex3_11.sce | clc
A=0.1*10^-4
disp("A = "+string(A)+" cm^2") //initializing value of area.
Dp=7.77*10^-4
disp("Dp= "+string(Dp)+" cm^2/s") //initializing value of diffusion cofficient.
Lp=0.233*10^-5
disp("Lp = "+string(Lp)+" cm") //initializing value of diffusion length.
x=500*10^-8
disp("x = "+string(x)+" cm") //initializing value of distance
P=10^17*10^6
disp("P(O)-po = "+string(P)) //initializing value of P(O)-po
e=1.6*10^-19
disp("e = "+string(e)+"column")//initializing value of charge of electron.
I=(((e*A*Dp*P)/Lp)*exp(-x/Lp))
disp("Hole current,I=(((e*A*Dp*[P(O)-po])/Lp)*exp(-x/Lp))= "+string(I)+"amphere")//calculation
Q=(e*A*Dp*Lp*P)
disp("stored excess hole ,Q=(e*A*Dp*Lp*P))= "+string(Q)+"C")//calculation
//the value of current(I) given after calculation in the book is wrong, (as the value of Lp used in the formula while finding value of hole current (I)at two places //is used different).
//I have used the value Lp=0.233*10^-5 cm
|
b99498566a05bf9330c39cf73b4eb850a1fca3e0 | eec7ebd86603d3208aacde26fd2abcbe9bd66968 | /EAPSI_PostScanRatings_Task2_7_9_17_CH.sce | e2a46de3a7d64b945514fdfb9af8e48b44a7403c | [] | no_license | sra27/Presentation-Scenarios | 897dd11dabbc31b6baafbbaa5e3d14b2eb8030ee | 856b244d97509847ac5c04bb3bdc305128b52326 | refs/heads/master | 2020-04-04T15:09:47.936450 | 2018-11-03T21:53:00 | 2018-11-03T21:53:00 | 156,026,804 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 33,343 | sce | EAPSI_PostScanRatings_Task2_7_9_17_CH.sce |
no_logfile = false;
active_buttons = 3;
button_codes = 1,2,3;
response_matching = simple_matching;
write_codes = true;
response_port_output=false;
default_monitor_sounds = false;
default_font = "NSimSun";
default_font_size = 40;
default_text_color = 0, 0, 0;
default_background_color = 122, 122, 122;
default_formatted_text = true;
stimulus_properties = letter, string, is_target, string, stim, string, x_pos, number, y_pos, number,
x_sel, number, y_sel, number;
event_code_delimiter = "/n";
default_path = "C:\Users\Psychology\Desktop\EAPSI_BEIJING\Presentation_Files\Stimuli";
begin;
#=================================================================================================
#TEXT
#=================================================================================================
picture {
text {
caption =
"退出程序";
}ExitProgramText;
x = 0; y = 0;
}ExitProgram;
picture {
text {
caption =
"...";
}TriggerWaitText;
x = 0; y = 0;
}TriggerWait;
picture {
text {
caption =
" ";
}IntroText1;
x = 0; y = 0;
}Intro;
#affect rating
trial {
trial_type = fixed;
stimulus_event {
nothing {};
} AffectRateEvent;
}AffectRateTrial;
#success rating
trial {
trial_type = fixed;
stimulus_event {
nothing {};
} SuccessRateEvent;
}SuccessRateTrial;
#---------------------------------------
#affect rating scale
picture {
box { height = 1; width = 1; };
x = -400; y = 200;
text { caption =
"请用1~9间的一个数字对
你看到每张照片时的感受进行评分"; font_size = 30; }AffectText1;
x = -400; y = 0; } scale7;
array {
LOOP $q 9;
text {caption = " "; font_size = 35;
# background_color = 100, 100, 100; #debugging code to show label position
};
ENDLOOP;
} scale_labels7;
#---------------------------------------
#success rating scale
picture {
box { height = 1; width = 1; };
x = -400; y = 200;
text { caption =
"请用1~9间的一个数字
表示当你看到每一张照片时
你多成功地压抑了自己的面部表情反应"; font_size = 30; }SuccessText1;
x = -400; y = 0; } scale8;
array {
LOOP $q 9;
text {caption = " "; font_size = 35;
# background_color = 100, 100, 100; #debugging code to show label position
};
ENDLOOP;
} scale_labels8;
#----- Get Version Number --------
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 3; #enter button is pressed
picture {
text { caption = " "; } Versiontext1;
x = 0; y = 0;
} Versionpic1;
} VersionInfoTrial;
picture {
text { caption = "请输入版本编号,按回车键继续"; };
x = 0; y = 0;
text { caption = " "; } Versiontext2;
x = 0; y = -180;
} Versionpic2;
trial {
stimulus_event {
nothing {};
} VersionEvent;
}VersionTrial;
#=================================================================================================
#IAPS STIMULUS ARRAYS
#=================================================================================================
array{
# Look Neutral
bitmap { filename = "iaps/5130.jpg"; preload = true; description = "stim_lookneu_5130_"; };
bitmap { filename = "iaps/7020.jpg"; preload = true; description = "stim_lookneu_7020_"; };
bitmap { filename = "iaps/7046.jpg"; preload = true; description = "stim_lookneu_7046_"; };
bitmap { filename = "iaps/2850.jpg"; preload = true; description = "stim_lookneu_2850_"; };
bitmap { filename = "iaps/5920.jpg"; preload = true; description = "stim_lookneu_5920_"; };
bitmap { filename = "iaps/1670.jpg"; preload = true; description = "stim_lookneu_1670_"; };
bitmap { filename = "iaps/1935.jpg"; preload = true; description = "stim_lookneu_1935_"; };
bitmap { filename = "iaps/1945.jpg"; preload = true; description = "stim_lookneu_1945_"; };
bitmap { filename = "iaps/2302.jpg"; preload = true; description = "stim_lookneu_2302_"; };
bitmap { filename = "iaps/5535.jpg"; preload = true; description = "stim_lookneu_5535_"; };
bitmap { filename = "iaps/5120.jpg"; preload = true; description = "stim_lookneu_5120_"; };
bitmap { filename = "iaps/5395.jpg"; preload = true; description = "stim_lookneu_5395_"; };
bitmap { filename = "iaps/2191.jpg"; preload = true; description = "stim_lookneu_2191_"; };
bitmap { filename = "iaps/2122.jpg"; preload = true; description = "stim_lookneu_2122_"; };
bitmap { filename = "iaps/2038.jpg"; preload = true; description = "stim_lookneu_2038_"; };
bitmap { filename = "iaps/2580.jpg"; preload = true; description = "stim_lookneu_2580_"; };
bitmap { filename = "iaps/7234.jpg"; preload = true; description = "stim_lookneu_7234_"; };
bitmap { filename = "iaps/2032.jpg"; preload = true; description = "stim_lookneu_2032_"; };
bitmap { filename = "iaps/6010.jpg"; preload = true; description = "stim_lookneu_6010_"; };
bitmap { filename = "iaps/2440.jpg"; preload = true; description = "stim_lookneu_2440_"; };
bitmap { filename = "iaps/2235.jpg"; preload = true; description = "stim_lookneu_2235_"; };
bitmap { filename = "iaps/2309.jpg"; preload = true; description = "stim_lookneu_2309_"; };
bitmap { filename = "iaps/5471.jpg"; preload = true; description = "stim_lookneu_5471_"; };
bitmap { filename = "iaps/2397.jpg"; preload = true; description = "stim_lookneu_2397_"; };
bitmap { filename = "iaps/8193.jpg"; preload = true; description = "stim_lookneu_8193_"; };
bitmap { filename = "iaps/7002.jpg"; preload = true; description = "stim_lookneu_7002_"; };
bitmap { filename = "iaps/7010.jpg"; preload = true; description = "stim_lookneu_7010_"; };
bitmap { filename = "iaps/7590.jpg"; preload = true; description = "stim_lookneu_7590_"; };
bitmap { filename = "iaps/7011.jpg"; preload = true; description = "stim_lookneu_7011_"; };
bitmap { filename = "iaps/7820.jpg"; preload = true; description = "stim_lookneu_7820_"; };
bitmap { filename = "iaps/9913.jpg"; preload = true; description = "stim_lookneu_9913_"; };
bitmap { filename = "iaps/1903.jpg"; preload = true; description = "stim_lookneu_1903_"; };
bitmap { filename = "iaps/2381.jpg"; preload = true; description = "stim_lookneu_2381_"; };
bitmap { filename = "iaps/2620.jpg"; preload = true; description = "stim_lookneu_2620_"; };
bitmap { filename = "iaps/7560.jpg"; preload = true; description = "stim_lookneu_7560_"; };
bitmap { filename = "iaps/7042.jpg"; preload = true; description = "stim_lookneu_7042_"; };
}IAPS_Look_Neutral;
array{
# Look Negative Version 1
bitmap { filename = "iaps/9220.jpg"; preload = true; description = "stim_lookneg_9220_"; };
bitmap { filename = "iaps/1090.jpg"; preload = true; description = "stim_lookneg_1090_"; };
bitmap { filename = "iaps/9410.jpg"; preload = true; description = "stim_lookneg_9410_"; };
bitmap { filename = "iaps/6230.jpg"; preload = true; description = "stim_lookneg_6230_"; };
bitmap { filename = "iaps/2141.jpg"; preload = true; description = "stim_lookneg_2141_"; };
bitmap { filename = "iaps/1220.jpg"; preload = true; description = "stim_lookneg_1220_"; };
bitmap { filename = "iaps/1274.jpg"; preload = true; description = "stim_lookneg_1274_"; };
bitmap { filename = "iaps/3030.jpg"; preload = true; description = "stim_lookneg_3030_"; };
bitmap { filename = "iaps/6020.jpg"; preload = true; description = "stim_lookneg_6020_"; };
bitmap { filename = "iaps/6415.jpg"; preload = true; description = "stim_lookneg_6415_"; };
bitmap { filename = "iaps/1525.jpg"; preload = true; description = "stim_lookneg_1525_"; };
bitmap { filename = "iaps/9322.jpg"; preload = true; description = "stim_lookneg_9322_"; };
bitmap { filename = "iaps/2053.jpg"; preload = true; description = "stim_lookneg_2053_"; };
bitmap { filename = "iaps/2800.jpg"; preload = true; description = "stim_lookneg_2800_"; };
bitmap { filename = "iaps/2375.1.jpg"; preload = true; description = "stim_lookneg_2375.1_"; };
bitmap { filename = "iaps/9927.jpg"; preload = true; description = "stim_lookneg_9927_"; };
bitmap { filename = "iaps/9920.jpg"; preload = true; description = "stim_lookneg_9920_"; };
bitmap { filename = "iaps/9832.jpg"; preload = true; description = "stim_lookneg_9832_"; };
bitmap { filename = "iaps/9635.1.jpg"; preload = true; description = "stim_lookneg_9635.1_"; };
bitmap { filename = "iaps/9620.jpg"; preload = true; description = "stim_lookneg_9620_"; };
bitmap { filename = "iaps/9500.jpg"; preload = true; description = "stim_lookneg_9500_"; };
bitmap { filename = "iaps/9491.jpg"; preload = true; description = "stim_lookneg_9491_"; };
bitmap { filename = "iaps/9423.jpg"; preload = true; description = "stim_lookneg_9423_"; };
bitmap { filename = "iaps/6830.jpg"; preload = true; description = "stim_lookneg_6830_"; };
bitmap { filename = "iaps/9400.jpg"; preload = true; description = "stim_lookneg_9400_"; };
bitmap { filename = "iaps/9340.jpg"; preload = true; description = "stim_lookneg_9340_"; };
bitmap { filename = "iaps/9187.jpg"; preload = true; description = "stim_lookneg_9187_"; };
bitmap { filename = "iaps/9075.jpg"; preload = true; description = "stim_lookneg_9075_"; };
bitmap { filename = "iaps/9440.jpg"; preload = true; description = "stim_lookneg_9440_"; };
bitmap { filename = "iaps/7359.jpg"; preload = true; description = "stim_lookneg_7359_"; };
bitmap { filename = "iaps/6300.jpg"; preload = true; description = "stim_lookneg_6300_"; };
bitmap { filename = "iaps/6570.jpg"; preload = true; description = "stim_lookneg_6570_"; };
bitmap { filename = "iaps/6231.jpg"; preload = true; description = "stim_lookneg_6231_"; };
bitmap { filename = "iaps/3550.jpg"; preload = true; description = "stim_lookneg_3550_"; };
bitmap { filename = "iaps/9254.jpg"; preload = true; description = "stim_lookneg_9254_"; };
bitmap { filename = "iaps/2981.jpg"; preload = true; description = "stim_lookneg_2981_"; };
}IAPS_Look_Negative_1;
array{
# Suppress Negative Version 1
bitmap { filename = "iaps/9941.jpg"; preload = true; description = "stim_suppress_9941_"; };
bitmap { filename = "iaps/2456.jpg"; preload = true; description = "stim_suppress_2456_"; };
bitmap { filename = "iaps/9560.jpg"; preload = true; description = "stim_suppress_9560_"; };
bitmap { filename = "iaps/9253.jpg"; preload = true; description = "stim_suppress_9253_"; };
bitmap { filename = "iaps/2683.jpg"; preload = true; description = "stim_suppress_2683_"; };
bitmap { filename = "iaps/2688.jpg"; preload = true; description = "stim_suppress_2688_"; };
bitmap { filename = "iaps/9280.jpg"; preload = true; description = "stim_suppress_9280_"; };
bitmap { filename = "iaps/1275.jpg"; preload = true; description = "stim_suppress_1275_"; };
bitmap { filename = "iaps/9300.jpg"; preload = true; description = "stim_suppress_9300_"; };
bitmap { filename = "iaps/2710.jpg"; preload = true; description = "stim_suppress_2710_"; };
bitmap { filename = "iaps/9181.jpg"; preload = true; description = "stim_suppress_9181_"; };
bitmap { filename = "iaps/6213.jpg"; preload = true; description = "stim_suppress_6213_"; };
bitmap { filename = "iaps/2751.jpg"; preload = true; description = "stim_suppress_2751_"; };
bitmap { filename = "iaps/9342.jpg"; preload = true; description = "stim_suppress_9342_"; };
bitmap { filename = "iaps/1111.jpg"; preload = true; description = "stim_suppress_1111_"; };
bitmap { filename = "iaps/8485.jpg"; preload = true; description = "stim_suppress_8485_"; };
bitmap { filename = "iaps/9911.jpg"; preload = true; description = "stim_suppress_9911_"; };
bitmap { filename = "iaps/9008.jpg"; preload = true; description = "stim_suppress_9008_"; };
bitmap { filename = "iaps/9630.jpg"; preload = true; description = "stim_suppress_9630_"; };
bitmap { filename = "iaps/9610.jpg"; preload = true; description = "stim_suppress_9610_"; };
bitmap { filename = "iaps/9561.jpg"; preload = true; description = "stim_suppress_9561_"; };
bitmap { filename = "iaps/9590.jpg"; preload = true; description = "stim_suppress_9590_"; };
bitmap { filename = "iaps/2811.jpg"; preload = true; description = "stim_suppress_2811_"; };
bitmap { filename = "iaps/9413.jpg"; preload = true; description = "stim_suppress_9413_"; };
bitmap { filename = "iaps/9295.jpg"; preload = true; description = "stim_suppress_9295_"; };
bitmap { filename = "iaps/3062.jpg"; preload = true; description = "stim_suppress_3062_"; };
bitmap { filename = "iaps/9325.jpg"; preload = true; description = "stim_suppress_9325_"; };
bitmap { filename = "iaps/9250.jpg"; preload = true; description = "stim_suppress_9250_"; };
bitmap { filename = "iaps/9007.jpg"; preload = true; description = "stim_suppress_9007_"; };
bitmap { filename = "iaps/3061.jpg"; preload = true; description = "stim_suppress_3061_"; };
bitmap { filename = "iaps/3051.jpg"; preload = true; description = "stim_suppress_3051_"; };
bitmap { filename = "iaps/6563.jpg"; preload = true; description = "stim_suppress_6563_"; };
bitmap { filename = "iaps/6210.jpg"; preload = true; description = "stim_suppress_6210_"; };
bitmap { filename = "iaps/9301.jpg"; preload = true; description = "stim_suppress_9301_"; };
bitmap { filename = "iaps/3160.jpg"; preload = true; description = "stim_suppress_3160_"; };
bitmap { filename = "iaps/3005.1.jpg"; preload = true; description = "stim_suppress_3005.1_"; };
}IAPS_Suppress_Negative_1;
array{
# Look Negative Version 2
bitmap { filename = "iaps/9941.jpg"; preload = true; description = "stim_suppress_9941_"; };
bitmap { filename = "iaps/2456.jpg"; preload = true; description = "stim_suppress_2456_"; };
bitmap { filename = "iaps/9560.jpg"; preload = true; description = "stim_suppress_9560_"; };
bitmap { filename = "iaps/9253.jpg"; preload = true; description = "stim_suppress_9253_"; };
bitmap { filename = "iaps/2683.jpg"; preload = true; description = "stim_suppress_2683_"; };
bitmap { filename = "iaps/2688.jpg"; preload = true; description = "stim_suppress_2688_"; };
bitmap { filename = "iaps/9280.jpg"; preload = true; description = "stim_suppress_9280_"; };
bitmap { filename = "iaps/1275.jpg"; preload = true; description = "stim_suppress_1275_"; };
bitmap { filename = "iaps/9300.jpg"; preload = true; description = "stim_suppress_9300_"; };
bitmap { filename = "iaps/2710.jpg"; preload = true; description = "stim_suppress_2710_"; };
bitmap { filename = "iaps/9181.jpg"; preload = true; description = "stim_suppress_9181_"; };
bitmap { filename = "iaps/6213.jpg"; preload = true; description = "stim_suppress_6213_"; };
bitmap { filename = "iaps/2751.jpg"; preload = true; description = "stim_suppress_2751_"; };
bitmap { filename = "iaps/9342.jpg"; preload = true; description = "stim_suppress_9342_"; };
bitmap { filename = "iaps/1111.jpg"; preload = true; description = "stim_suppress_1111_"; };
bitmap { filename = "iaps/8485.jpg"; preload = true; description = "stim_suppress_8485_"; };
bitmap { filename = "iaps/9911.jpg"; preload = true; description = "stim_suppress_9911_"; };
bitmap { filename = "iaps/9008.jpg"; preload = true; description = "stim_suppress_9008_"; };
bitmap { filename = "iaps/9630.jpg"; preload = true; description = "stim_suppress_9630_"; };
bitmap { filename = "iaps/9610.jpg"; preload = true; description = "stim_suppress_9610_"; };
bitmap { filename = "iaps/9561.jpg"; preload = true; description = "stim_suppress_9561_"; };
bitmap { filename = "iaps/9590.jpg"; preload = true; description = "stim_suppress_9590_"; };
bitmap { filename = "iaps/2811.jpg"; preload = true; description = "stim_suppress_2811_"; };
bitmap { filename = "iaps/9413.jpg"; preload = true; description = "stim_suppress_9413_"; };
bitmap { filename = "iaps/9295.jpg"; preload = true; description = "stim_suppress_9295_"; };
bitmap { filename = "iaps/3062.jpg"; preload = true; description = "stim_suppress_3062_"; };
bitmap { filename = "iaps/9325.jpg"; preload = true; description = "stim_suppress_9325_"; };
bitmap { filename = "iaps/9250.jpg"; preload = true; description = "stim_suppress_9250_"; };
bitmap { filename = "iaps/9007.jpg"; preload = true; description = "stim_suppress_9007_"; };
bitmap { filename = "iaps/3061.jpg"; preload = true; description = "stim_suppress_3061_"; };
bitmap { filename = "iaps/3051.jpg"; preload = true; description = "stim_suppress_3051_"; };
bitmap { filename = "iaps/6563.jpg"; preload = true; description = "stim_suppress_6563_"; };
bitmap { filename = "iaps/6210.jpg"; preload = true; description = "stim_suppress_6210_"; };
bitmap { filename = "iaps/9301.jpg"; preload = true; description = "stim_suppress_9301_"; };
bitmap { filename = "iaps/3160.jpg"; preload = true; description = "stim_suppress_3160_"; };
bitmap { filename = "iaps/3005.1.jpg"; preload = true; description = "stim_suppress_3005.1_"; };
}IAPS_Look_Negative_2;
array{
# Suppress Negative Version 2
bitmap { filename = "iaps/9220.jpg"; preload = true; description = "stim_lookneg_9220_"; };
bitmap { filename = "iaps/1090.jpg"; preload = true; description = "stim_lookneg_1090_"; };
bitmap { filename = "iaps/9410.jpg"; preload = true; description = "stim_lookneg_9410_"; };
bitmap { filename = "iaps/6230.jpg"; preload = true; description = "stim_lookneg_6230_"; };
bitmap { filename = "iaps/2141.jpg"; preload = true; description = "stim_lookneg_2141_"; };
bitmap { filename = "iaps/1220.jpg"; preload = true; description = "stim_lookneg_1220_"; };
bitmap { filename = "iaps/1274.jpg"; preload = true; description = "stim_lookneg_1274_"; };
bitmap { filename = "iaps/3030.jpg"; preload = true; description = "stim_lookneg_3030_"; };
bitmap { filename = "iaps/6020.jpg"; preload = true; description = "stim_lookneg_6020_"; };
bitmap { filename = "iaps/6415.jpg"; preload = true; description = "stim_lookneg_6415_"; };
bitmap { filename = "iaps/1525.jpg"; preload = true; description = "stim_lookneg_1525_"; };
bitmap { filename = "iaps/9322.jpg"; preload = true; description = "stim_lookneg_9322_"; };
bitmap { filename = "iaps/2053.jpg"; preload = true; description = "stim_lookneg_2053_"; };
bitmap { filename = "iaps/2800.jpg"; preload = true; description = "stim_lookneg_2800_"; };
bitmap { filename = "iaps/2375.1.jpg"; preload = true; description = "stim_lookneg_2375.1_"; };
bitmap { filename = "iaps/9927.jpg"; preload = true; description = "stim_lookneg_9927_"; };
bitmap { filename = "iaps/9920.jpg"; preload = true; description = "stim_lookneg_9920_"; };
bitmap { filename = "iaps/9832.jpg"; preload = true; description = "stim_lookneg_9832_"; };
bitmap { filename = "iaps/9635.1.jpg"; preload = true; description = "stim_lookneg_9635.1_"; };
bitmap { filename = "iaps/9620.jpg"; preload = true; description = "stim_lookneg_9620_"; };
bitmap { filename = "iaps/9500.jpg"; preload = true; description = "stim_lookneg_9500_"; };
bitmap { filename = "iaps/9491.jpg"; preload = true; description = "stim_lookneg_9491_"; };
bitmap { filename = "iaps/9423.jpg"; preload = true; description = "stim_lookneg_9423_"; };
bitmap { filename = "iaps/6830.jpg"; preload = true; description = "stim_lookneg_6830_"; };
bitmap { filename = "iaps/9400.jpg"; preload = true; description = "stim_lookneg_9400_"; };
bitmap { filename = "iaps/9340.jpg"; preload = true; description = "stim_lookneg_9340_"; };
bitmap { filename = "iaps/9187.jpg"; preload = true; description = "stim_lookneg_9187_"; };
bitmap { filename = "iaps/9075.jpg"; preload = true; description = "stim_lookneg_9075_"; };
bitmap { filename = "iaps/9440.jpg"; preload = true; description = "stim_lookneg_9440_"; };
bitmap { filename = "iaps/7359.jpg"; preload = true; description = "stim_lookneg_7359_"; };
bitmap { filename = "iaps/6300.jpg"; preload = true; description = "stim_lookneg_6300_"; };
bitmap { filename = "iaps/6570.jpg"; preload = true; description = "stim_lookneg_6570_"; };
bitmap { filename = "iaps/6231.jpg"; preload = true; description = "stim_lookneg_6231_"; };
bitmap { filename = "iaps/3550.jpg"; preload = true; description = "stim_lookneg_3550_"; };
bitmap { filename = "iaps/9254.jpg"; preload = true; description = "stim_lookneg_9254_"; };
bitmap { filename = "iaps/2981.jpg"; preload = true; description = "stim_lookneg_2981_"; };
}IAPS_Suppress_Negative_2;
bitmap { filename = "iaps/1121.jpg"; }IAPSBit;
picture { bitmap IAPSBit; x=0; y=0; }IAPSPic;
#=================================================================================================
#TRIALS
#=================================================================================================
#----- IAPS Picture Presentation --------
trial{
stimulus_event{
picture IAPSPic;
time=0;
duration=3000;
}IAPSEvent;
}IAPSTrial;
#----- ITI --------
trial {
trial_duration = 500;
trial_type = fixed;
stimulus_event {
picture {
text {caption = "+"; font_size = 60;}ITIText;
x = 0; y = 0;
}ITI1;
}ITIEvent;
}ITITrial;
#----- Exit Program --------
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 3;
stimulus_event {
picture {text ExitProgramText;x = 0; y = 0;};
} ExitProgramEvent;
}ExitProgramTrial;
#====================================================================================================
#BEGIN PCL
#====================================================================================================
begin_pcl;
# set up mouse
mouse mouse1 = response_manager.get_mouse(1);
mouse1.set_min_max( 2, -300, 300 );
mouse1.set_restricted( 2, true );
mouse1.set_xy( 0, -300 );
#====================================================================================================
#RATING SCALES IN PCL
#====================================================================================================
#-----Affect Rating----------
# Subroutine to draw the scale.
# Pass an array of double precision numbers for marker positions
# and an array of strings for the corresponding labels
sub
drawscale7( double& min7, double& max7, array<double,1>& markers7 , array<string,1>& labels7 )
begin
double ym7 = 600.0 / (max7 - min7); # calculate y multiplier for scale
# Build the scale:
line_graphic slider7 = new line_graphic;
slider7.set_line_width( 12.0 );
slider7.set_line_color( 0, 0, 0, 255 );
slider7.add_line( -25.0, 0.0, 25.0, 0.0 );
slider7.redraw();
scale7.add_part( slider7, 0, 0 );
line_graphic track7 = new line_graphic;
track7.set_line_width( 10.0 );
track7.set_line_color( 0, 0, 0, 255 );
track7.add_line( 0.0, -302.0, 0.0, 301.0 );
track7.redraw();
scale7.add_part( track7, 0, 0 );
line_graphic tick7 = new line_graphic;
tick7.set_line_width( 5.0 );
tick7.set_line_color( 0, 0, 0, 255 );
tick7.add_line( 0.0, 0.0, 40.0, 0.0 );
tick7.redraw();
loop
int j = 1
until
j > markers7.count()
begin
# add a tick mark to the scale:
scale7.add_part( tick7, 0, int( (markers7[j]-min7) * ym7 - 300.0 ) );
# define the text of the label:
scale_labels7[j].set_caption(labels7[j]);
scale_labels7[j].redraw();
# complicated stuff required to left-align the labels:
int xx = 50 + int( scale_labels7[j].width() / 2.0 );
# add the label to the scale:
scale7.add_part( scale_labels7[j], xx, int( (markers7[j]-min7) * ym7 - 298.0) );
j = j + 1
end;
scale7.set_part_on_top( 3, true );
end;
#-------------------------------------------------------------------
# Subroutine to display a vertical scale and collect a response.
# Pass an array of double precision numbers for marker positions
# and an array of strings for the corresponding labels
sub
double runvscale7( double& min7, double& max7, array<double,1>& markers7 , array<string,1>& labels7 )
begin
double ym7 = 600.0 / (max7 - min7); # calculate y multiplier for scale
int rt_start = clock.time();
# Show scale until button pressed:
loop
int count = response_manager.total_response_count( 1 )
until
response_manager.total_response_count( 1 ) > count
begin
mouse1.poll(); #read the mouse
scale7.set_part_y( 3, mouse1.y() ); #position the slider
scale7.present();
end;
double rating7a = double((mouse1.y() + 300)) / ym7 + min7;
AffectRateEvent.set_event_code( "affect_rating_" + string( rating7a ) );
AffectRateTrial.present();
return rating7a;
end;
double min7 = -100.0;
double max7 = 100.0;
array< double > markers7[9] = { -100.0, -75.0, -50.0, -25.0, 0, 25.0, 50.0, 75.0, 100.0};
array< string > labels7[9] = { "1 非常不愉快", "2", "3", "4", "5", "6", "7", "8", "9 非常愉快" };
#-----Success Rating----------
# Subroutine to draw the scale.
# Pass an array of double precision numbers for marker positions
# and an array of strings for the corresponding labels
sub
drawscale8( double& min8, double& max8, array<double,1>& markers8 , array<string,1>& labels8 )
begin
double ym8 = 600.0 / (max8 - min8); # calculate y multiplier for scale
# Build the scale:
line_graphic slider8 = new line_graphic;
slider8.set_line_width( 12.0 );
slider8.set_line_color( 0, 0, 0, 255 );
slider8.add_line( -25.0, 0.0, 25.0, 0.0 );
slider8.redraw();
scale8.add_part( slider8, 0, 0 );
line_graphic track8 = new line_graphic;
track8.set_line_width( 10.0 );
track8.set_line_color( 0, 0, 0, 255 );
track8.add_line( 0.0, -302.0, 0.0, 301.0 );
track8.redraw();
scale8.add_part( track8, 0, 0 );
line_graphic tick8 = new line_graphic;
tick8.set_line_width( 5.0 );
tick8.set_line_color( 0, 0, 0, 255 );
tick8.add_line( 0.0, 0.0, 40.0, 0.0 );
tick8.redraw();
loop
int j = 1
until
j > markers8.count()
begin
# add a tick mark to the scale:
scale8.add_part( tick8, 0, int( (markers8[j]-min8) * ym8 - 300.0 ) );
# define the text of the label:
scale_labels8[j].set_caption(labels8[j]);
scale_labels8[j].redraw();
# complicated stuff required to left-align the labels:
int xx = 50 + int( scale_labels8[j].width() / 2.0 );
# add the label to the scale:
scale8.add_part( scale_labels8[j], xx, int( (markers8[j]-min8) * ym8 - 298.0) );
j = j + 1
end;
scale8.set_part_on_top( 3, true );
end;
#-------------------------------------------------------------------
# Subroutine to display a vertical scale and collect a response.
# Pass an array of double precision numbers for marker positions
# and an array of strings for the corresponding labels
sub
double runvscale8( double& min8, double& max8, array<double,1>& markers8 , array<string,1>& labels8 )
begin
double ym8 = 600.0 / (max8 - min8); # calculate y multiplier for scale
int rt_start = clock.time();
# Show scale until button pressed:
loop
int count = response_manager.total_response_count( 1 )
until
response_manager.total_response_count( 1 ) > count
begin
mouse1.poll(); #read the mouse
scale8.set_part_y( 3, mouse1.y() ); #position the slider
scale8.present();
end;
double rating8a = double((mouse1.y() + 300)) / ym8 + min8;
SuccessRateEvent.set_event_code( "success_rating_" + string( rating8a ) );
SuccessRateTrial.present();
return rating8a;
end;
double min8 = -100.0;
double max8 = 100.0;
array< double > markers8[9] = { -100.0, -75.0, -50.0, -25.0, 0, 25.0, 50.0, 75.0, 100.0};
array< string > labels8[9] = { "1 完全没成功", "2", "3", "4", "5", "6", "7", "8", "9 非常成功" };
#draw scales
drawscale7(min7, max7, markers7, labels7 );
drawscale8(min8, max8, markers8, labels8 );
#====================================================================================================
#2D IMAGE ARRAYS FOR RANDOMIZATION
#====================================================================================================
#put IAPS condition arrays into one array for randomizing - Version 1
array<bitmap>IAPS_1[3][36];
IAPS_1[1].assign( IAPS_Look_Neutral ) ;
IAPS_1[2].assign ( IAPS_Look_Negative_1 ) ;
IAPS_1[3].assign ( IAPS_Suppress_Negative_1 ) ;
#put IAPS condition arrays into one array for randomizing - Version 2
array<bitmap>IAPS_2[3][36];
IAPS_2[1].assign( IAPS_Look_Neutral ) ;
IAPS_2[2].assign ( IAPS_Look_Negative_2 ) ;
IAPS_2[3].assign ( IAPS_Suppress_Negative_2 ) ;
#====================================================================================================
#IMAGE RANDOMIZATION
#====================================================================================================
#temporary array to hold all possible array numbers
array<int> which_array_IAPS_1[IAPS_1.count()];
which_array_IAPS_1.fill( 1, 0, 1, 1 );
which_array_IAPS_1.shuffle();
#temporary array to hold all possible stim numbers
array<int>which_stim_IAPS_1[IAPS_1.count()][0];
loop int i = 1 until i > which_stim_IAPS_1.count() begin
loop int j = 1 until j > IAPS_1[i].count() begin
which_stim_IAPS_1[i].add( j );
j = j + 1;
end;
which_stim_IAPS_1[i].shuffle();
i = i + 1;
end;
array<int>stim_order_IAPS_1[0][0];
#now use a loop to make a full stim order
array<int>stim_ctrs_IAPS_1[IAPS_1.count()];
stim_ctrs_IAPS_1.fill( 1, 0, 1, 0 );
loop
int array_ctr = 1;
int i = 1
until
i > IAPS_1.count() * IAPS_1[1].count()
begin
int this_array = which_array_IAPS_1[array_ctr];
int this_stim = which_stim_IAPS_1[this_array][stim_ctrs_IAPS_1[this_array]];
array<int> temp[2];
temp[1] = this_array;
temp[2] = this_stim;
stim_order_IAPS_1.add( temp );
#recycle the array counter once we've gone through them all
array_ctr = array_ctr + 1;
if ( array_ctr > IAPS_1.count() ) then
array_ctr = 1;
which_array_IAPS_1.shuffle();
end;
stim_ctrs_IAPS_1[this_array] = stim_ctrs_IAPS_1[this_array] + 1;
i = i + 1;
end;
#====================================================================================================
#MAIN
#====================================================================================================
#Baseline Fixation
ITITrial.set_duration(1000);
ITIEvent.set_event_code("fix");
ITITrial.present();
loop
int i = 1;
int stim_ctr = 1;
until
stim_ctr > 108
begin
int this_array = stim_order_IAPS_1[i][1];
int this_stim = stim_order_IAPS_1[i][2];
#Picture Presentation
IAPSPic.set_part( 1, IAPS_1[this_array][this_stim]);
IAPSEvent.set_event_code( IAPS_1[this_array][this_stim].description() + string( stim_ctr ) );
IAPSTrial.present();
#Affect Rating
line_graphic slider7 = new line_graphic;
scale7.remove_part(3);
slider7.set_line_width( 12.0 );
slider7.set_line_color( 255, 0, 0, 255 );
slider7.add_line( -25.0, 0.0, 25.0, 0.0 );
slider7.redraw();
scale7.insert_part(3, slider7, 0, 0);
scale7.set_part_on_top( 3, true );
#show scale
mouse1.set_min_max(2, -300, 300);
mouse1.set_xy( 0, -300 );
runvscale7 (min7, max7, markers7, labels7 );
#ITI
int fix = 1000;
ITITrial.set_duration(fix);
ITITrial.present();
#Success rating
line_graphic slider8 = new line_graphic;
scale8.remove_part(3);
slider8.set_line_width( 12.0 );
slider8.set_line_color( 255, 0, 0, 255 );
slider8.add_line( -25.0, 0.0, 25.0, 0.0 );
slider8.redraw();
scale8.insert_part(3, slider8, 0, 0);
scale8.set_part_on_top( 3, true );
#show scale
mouse1.set_min_max(2, -300, 300);
mouse1.set_xy( 0, -300 );
runvscale8 (min8, max8, markers8, labels8 );
#ITI
ITIEvent.set_duration(fix);
ITITrial.present();
i = i + 1;
stim_ctr = stim_ctr + 1;
end;
#Close Program
ExitProgramEvent.set_event_code("exit_program");
ExitProgramTrial.present();
|
4d7e321273e97c63989723c161ee745b1487f45c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1943/CH7/EX7.12/Ex7_12.sce | 688eca08fe85f8367a4ef942cc313ff4918c9d33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,198 | sce | Ex7_12.sce |
clc
clear
//Input data
p1=15//Pressure in bar
T1=300+273//Temperature in K
p2=10//Pressure in bar
nn=95//Nozzle efficiency in percent
a=20//Nozzle angle in degrees
x=5//The blade exit angle is 5 degrees less than the inlet angle
f=0.9//Friction factor
m=1350//Steam flow rate in kg/h
//Calculations
h1=3038.9//Enthalpy in kJ/kg
s1=6.9224//Entropy in kJ/kg.K
s2=s1//Entropy in kJ/kg.K
t2s=250//Temperature in degree C
h2s=2943.1//Enthalpy in kJ/kg
V1=44.72*sqrt((nn/100)*(h1-h2s))//Velocity in m/s
Vb=V1*(cosd(a)/2)//Velocity in m/s
b1=atand((V1*sind(a))/((V1*cosd(a))-Vb))//Blade angle in degrees
b2=b1-x//Blade angle in degrees
Vr1=((V1*sind(a))/sind(b1))//Velocity in m/s
Vr2=(f*Vr1)//Velocity in m/s
dVw=(Vr1*cosd(b1))+(Vr2*cosd(b2))//Velocity in m/s
dVa=(Vr1*sind(b1))-(Vr2*sind(b2))//Velocity in m/s
Pa=(m/3600)*dVa//Axial thrust in N
Pt=(m/3600)*dVw//Tangential thrust in N
WD=(Pt*Vb*10^-3)//Diagram Power in kW
dn=((WD*1000)/((1/2)*(m/3600)*V1^2))*100//Diagram efficiency in percent
//Output
printf('(a) Axial thrust is %3.2f N \n Tangential thrust is %3.2f N \n\n (b) Diagram Power is %3.3f kW \n\n (c) Diagram Efficiency is %3.1f percent',Pa,Pt,WD,dn)
|
24d0257c26f7f764c746ed32430d6e128685b156 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH2/EX2.8/2_08.sce | ae5289479f4dfd4aa85998954597cb97262fba45 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 546 | sce | 2_08.sce | //Chapter 2, Problem 8, Figure 2.8
clc;
V1=20; //Voltage of resistor A
I1=20*10^-3; //Current of resistor A
V2=16; //Voltage of resistor B
I2=5*10^-3; //Current of resistor B
R1=V1/I1; //Calculating resistance of resistor A using Ohms law
R2=V2/I2; //Calculating resistance of resistor B using Ohms law
printf("Resistance of resistor A = %d k.ohms\n\n\n",R1/1000);
printf("Resistance of resistor B = %f k.ohms\n\n\n",R2/1000);
|
07f413eff5c06872699040ac4b5f5586d82d5351 | 449d555969bfd7befe906877abab098c6e63a0e8 | /767/CH2/EX2.2.3/CH02Exa2_2_3.sci | 331259624b3375fff324dae75755ddb964e79b1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,531 | sci | CH02Exa2_2_3.sci | // Scilab code Exa2.2.3 To calculate the energy required to remove a neutron from Kr-81, Kr-82, Kr-83 : Page 68 (2011)
// For Kr-80,
m_p = 1.007825; // Mass of proton, amu
m_n = 1.008665; // Mass of neutron, amu
Z = 36; // Number of protons
N_80 = 44; // Number of neutrons
M_n_80 = 79.91628; // Mass of Kr nucleus
BE_Kr_80 = (Z*m_p+N_80*m_n-M_n_80)*931.49; // Binding energy for Kr-80, MeV
// For Kr-81,
N_81 = 45; // Number of neutrons
M_n_81 = 80.91661; // Mass of Kr-81 nucleus
BE_Kr_81 = (Z*m_p+N_81*m_n-M_n_81)*931.49; // Binding energy for Kr-81 nucleus
// For Kr-82
N_82 = 46; // Number of neutrons
M_n_82 = 81.913482; // Mass of Kr nucleus
BE_Kr_82 = (Z*m_p+N_82*m_n-M_n_82)*931.49; // Binding energy for Kr-82,MeV
// For Kr-83
N_83 = 47; // Number of protons
M_n_83 = 82.914134; // Mass of Kr-83 nucleus
BE_Kr_83 = (Z*m_p+N_83*m_n-M_n_83)*931.49; // Binding energy for Kr-83, MeV
E_sep_81 = BE_Kr_81-BE_Kr_80; // Energy seperation of neutron for Kr-81, MeV
E_sep_82 = BE_Kr_82-BE_Kr_81; // Energy seperation of neutron for Kr-82, MeV
E_sep_83 = BE_Kr_83-BE_Kr_82; // Energy seperation of neutron for Kr-83, MeV
,
printf("\nEnergy seperation of neutron for Kr-81 = %4.2f MeV\nEnergy seperation of neutron for Kr-82 = %4.2f MeV\nEnergy seperation of neutron for Kr-83 = %5.2f MeV", E_sep_81, E_sep_82, E_sep_83);
// Result
// Energy seperation of neutron for Kr-81 = 7.76 MeV
// Energy seperation of neutron for Kr-82 = 10.99 MeV
// Energy seperation of neutron for Kr-83 = 7.46 MeV |
4830b007eac9ab8d3d8718c4a78331fe2d087d89 | 449d555969bfd7befe906877abab098c6e63a0e8 | /343/CH2/EX2.40/ex2_40.sce | 834befe934b7f7d02a7250d741769adce22cd176 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex2_40.sce | clc
function v=f(t), v=200*sin(377*t), endfunction //Defining functions
function i=f1(t), i=8*sin(377*t-%pi/6), endfunction
V=200/sqrt(2); //Assigning values to parameters
I=8/sqrt(2);
P=V*I*cos(%pi/6)
disp("Watts",P,"Active Power");
Q=V*I*sin(%pi/6);
disp("VAR",Q,"Reactive Power");
S=V*I;
disp("VA",S,"Apparent Power"); |
176f66f7adfc5beb9c6f5d77d39624e1b33e9c81 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1100/CH10/EX10.2/10_2.sce | 0758ed55cd7f25e5ae4b2f5fc89ec9d8bf4264e2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 247 | sce | 10_2.sce | clc
//initialisation of variables
S= 1.6315 //Btu/lb R
//CALCULATIONS
P= 70 //psia
t= 302.92 //F
h= 1180.6 //Btu/lb
//RESULTS
printf ('Pressure= %.2f Psia',P)
printf (' \n Temperature = %.2f F',t)
printf (' \n Enthalpy= %.1f Btu/lb',h)
|
5de0485f608ed991959ceec72fb9bd6ff6077aad | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/icceps/icceps1.sce | 5b45bcc52accf37d2a033aeb7cf382d75a5efcf7 | [] | 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 | 201 | sce | icceps1.sce | xhat=[1 2 3 4 5];
nd=4;
y=icceps(xhat,nd);
disp(y);
// output
// column 1 to 3
//
// 653803.49 653803.47 653803.47
//
// column 4 to 5
//
// 653803.45 653803.5
|
4526723dc20f7b6ae71fb9feece025bf686f42bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1247/CH5/EX5.15/example5_15.sce | 49416723ccd3064c8a2e274af6b1929d4d96d71a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 438 | sce | example5_15.sce | clear;
clc;
// Stoichiometry
// Chapter 5
// Energy Balances
// Example 5.15
// Page 238
printf("Example 5.15, Page 238 \n \n");
// solution
qv1 = 50 // l/s
qm = qv1*1.08 // kg/s
fi = qm*3.08*(263.15-258.15) // kW
lv = 384.19-168.7 // kJ/kg
qm2 = fi/lv
H = 256.35 // kJ/kg
x = poly(0, 'x')
p = H*(qm2+x) - 168.7*qm2-x*384.19
a = qm2+roots(p)
printf(" Flow of vapor from he chiller = "+string(a)+" kg/s.")
|
fdc2d7a47557d3a44de3482a57a13e657c53b5a6 | 0fb7048b5e90092a534e24953463051301cec2d1 | /scriptScilab/scriptTrous.sce | 7587cbb75e23657ae5d86433308cf69f5a2b6579 | [] | no_license | ece2lr/ecricome2017 | 4fce2d365b28f1fcbbe4c59662eb223214f3653e | eba1e384cd314d58bb9aa7d4e2a283ff1985f1de | refs/heads/master | 2021-01-19T20:12:27.046456 | 2017-04-20T20:45:21 | 2017-04-20T20:45:21 | 88,203,505 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 189 | sce | scriptTrous.sce | function y=T(n)
S=.................
y=.................
while .............
tirage = grand(1,1,'uin',1,n)
S=S+tirage
y=.............
end
endfunction
|
58821092eb00dccf409bd78831142b57dbdcba2b | 08fe4df45181e37cb84ba1610cdfb219b4142434 | /macros/AutoGenSciHelpSet.sci | 1a0e126e09c1d8cdac796d7ec307bc8dc98c9dcc | [] | no_license | gzq763199198/AutoGenHelpToolBox | 17c7db64547e0e196806464f47b788d6ae33bf2e | c85275e8a7a1cd2ab3e19db5b283e9d1e9502843 | refs/heads/master | 2021-02-17T04:02:18.470172 | 2020-03-05T04:35:44 | 2020-03-05T04:35:44 | 245,069,411 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 865 | sci | AutoGenSciHelpSet.sci | function [Ack] = AutoGenSciHelpSet()
global bOK;
global sciobj;
Ack = %f;
SciDesSet();
if(bOK) then
setsize = strtod(sciobj.Input);
for i = 1 : setsize
SciParamSet("Input",i);
if ~bOK then
disp("在第"+string(i)+"个输入参数时退出.");
return;
end
end
else
disp("退出帮助文档自动生成流程.");
return;
end
if(bOK) then
setsize = strtod(sciobj.Output);
for i = 1 : setsize
SciParamSet("Output",i);
if ~bOK then
disp("在第"+string(i)+"个输出参数时退出.");
return;
end
end
else
disp("退出帮助文档自动生成流程.");
return;
end
GenSciHelpXml();
Ack = %t;
endfunction
|
87aa2fd09f8b150f9fda30663de7381dc67b243b | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set13/s_Introduction_To_Electric_Drives_V._Singhal_2231.zip/Introduction_To_Electric_Drives_V._Singhal_2231/CH1/EX1.2/Ex_1_2.sce | 5cd345de57edcc704665baad79deceb0e742c906 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 200 | sce | Ex_1_2.sce | errcatch(-1,"stop");mode(2);//Example 1_2
;
;
//Given data
dv_dt=190;//V/µs
IC=8*10^-3;//A
//Solution :
C=IC/(dv_dt/10^-6);//F
disp(C,"Capacitance of depletion layer in F : ");
exit();
|
8f7fff814cbc881522b30e35ed66de7ecb2a4a15 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2267/CH7/EX7.4/ex7_4.sce | 2a26aed24a7e7420d6f239010d39fd01408d9f55 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 373 | sce | ex7_4.sce | //Part A Chapter 7 Example 4
clc;
clear;
close;
T=110+273.15;//K
h=50;//cm
p=143.47;//kPa(at 110 degree C)
g=9.81;//ravity constant
p_dash=p-(1000*g*h/100)/1000;//kPa(pressure at 50 cm depth)
Tsat=108.866;//degree C(for pdash=138.365 kPa);
disp("Pressure at 50 cm depth is "+string(p_dash)+" kPa. From steam table, Boiling point = "+string(Tsat)+" degree C");
|
1ba2c4f8ba46c6a24fabd3e74a9cf5181adeb92c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH6/EX6.28/6_28.sce | 3046729ec1e49899ea329d9d1b899cf2a1e4d97f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 645 | sce | 6_28.sce | clc,clear
printf('Example 6.28\n\n')
kW=[250,300,150]
cosphi=[0.9,0.75,0.8] //all lagging
tanphi=tan(acos(cosphi))
kVAR=kW.*tanphi
kW_total=kW(1)+kW(2)+kW(3)
kVAR_total=kVAR(1)+kVAR(2)+kVAR(3)
phi_1=acos(0.8)//pf of machine 1
kW_1=100 //active component of machine 1
kVAR_1=kW_1*tan(phi_1) //reactive component of machine 1
kW_2=kW_total - kW_1 //active component of machine 1
kVAR_2=kVAR_total-kVAR_1 //reactive component of machine 2
phi_2=atan(kVAR_2/kW_2)
pf_2=cos(phi_2) //power factor of machine 2
printf('Output of second alternator= %.0f kW',kW_2)
printf('\npower factor of machine 2 = %.4f and lagging',pf_2)
|
64edd5968aa3865fcae108a0f624405ee64570d6 | 3cbdc2f272df05cfe8c6636d4504e9e3d2e4fe3f | /SciLab/laplacian.sce | b919333871f9aeeb06cae3cff994f1cb9b80c95f | [] | no_license | bozhink/Code-Chunks | 74355eb4c0d423c2f6484226e564030dff798678 | 860b7b8f53089ed96fd0ebead2e3eec16fa377cb | refs/heads/master | 2020-12-24T06:19:04.343239 | 2019-11-13T14:09:15 | 2019-11-13T14:09:15 | 42,819,484 | 0 | 1 | null | 2019-11-13T14:09:16 | 2015-09-20T16:09:09 | HTML | UTF-8 | Scilab | false | false | 2,037 | sce | laplacian.sce | i=-2.; e=1.; t=0.;
A20x20 = [ i e t t t t t t t t t t t t t t t t t t t t;
e i e t t t t t t t t t t t t t t t t t t t;
t e i e t t t t t t t t t t t t t t t t t t;
t t e i e t t t t t t t t t t t t t t t t t;
t t t e i e t t t t t t t t t t t t t t t t;
t t t t e i e t t t t t t t t t t t t t t t;
t t t t t e i e t t t t t t t t t t t t t t;
t t t t t t e i e t t t t t t t t t t t t t;
t t t t t t t e i e t t t t t t t t t t t t;
t t t t t t t t e i e t t t t t t t t t t t;
t t t t t t t t t e i e t t t t t t t t t t;
t t t t t t t t t t e i e t t t t t t t t t;
t t t t t t t t t t t e i e t t t t t t t t;
t t t t t t t t t t t t e i e t t t t t t t;
t t t t t t t t t t t t t e i e t t t t t t;
t t t t t t t t t t t t t t e i e t t t t t;
t t t t t t t t t t t t t t t e i e t t t t;
t t t t t t t t t t t t t t t t e i e t t t;
t t t t t t t t t t t t t t t t t e i e t t;
t t t t t t t t t t t t t t t t t t e i e t;
t t t t t t t t t t t t t t t t t t t e i e;
t t t t t t t t t t t t t t t t t t t t e i;
]*0.5;
B20x20 = inv(A20x20);
h = 0.1;
a = 2.0; b = a+max(size(A20x20))*h;
x = (linspace(a,b,max(size(A20x20))))';
k = sqrt(3.0);
s=0.1*(rand(1,max(size(x)))-0.5);
psi = exp(-%i*k*(x+s'))+s';
function z=border(psi)
z=psi;
z(1)=0.0;
z(max(size(psi)))=0.0;
//z=z/max(abs(real(z)));
return;
endfunction;
function z=setA(n)
if n<2 then
disp("ERROR: n must be at least 2");
z=0;
return;
end;
z=0.0*ones(n,n);
z(1,1)=-2.0;
z(1,2)=1.0;
z(n,n)=-2.0;
z(n,n-1)=1.0;
for i=2:n-1;
z(i,i) = -2.0;
z(i,i-1)=1.0;
z(i,i+1)=1.0;
end;
endfunction;
A=setA(300);
B=inv(A);
h = 0.001;
a = -0.1; b = a+max(size(A))*h;
x = (linspace(a,b,max(size(A))))';
k = sqrt(190.0);
s=(rand(1,max(size(x)))-0.5);
psi = exp(-%i*k*(x+s'))+s';
|
77044a26fadaf7cd19b49f7c4dc334a015cdcfb0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH5/EX5.2/Ex5_2.sce | be3b3247582870f0ff9977524891162fc39c2776 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 746 | sce | Ex5_2.sce | //===========================================================================
//chapter 5 example 2
clc;clear all;
//Variable declaration
I = 5; //current in A
d = 30; //deflection
I2 = 10;
//calculations
//L = 10+5*theta - 2*(theta^2) //inductancein uH
//partial differentiate w.r.t to theta
//dL/dtheta = x = 5- 4*theta
//dL/dtheta = 2*K*theta/(I^2)
//x = 10-4*theta
theta = %pi/(6);
K = (((5-(4*theta))*10^-6)*(I^2))/(2*theta) //spring constant in Nm/radian
x = ((2*K)/(I2^2))*10^6;
theta2 = (5)/(x+4);
//result
mprintf("spring constant = %3.4e Nm/radian",K);
mprintf("\ndeflection for 10 A current = %3.3f radian",theta2);
|
a6c4966b3175a5be265c95a7a9d5e62368a0f1e1 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Chi-RW-C/results/Chi-RW-C.led7digit-10-1tra/result1.tst | 6790d2a49bcae6b335ba664874912823bd188f5a | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 535 | tst | result1.tst | @relation led7digit
@attribute Led1 real[0.0,1.0]
@attribute Led2 real[0.0,1.0]
@attribute Led3 real[0.0,1.0]
@attribute Led4 real[0.0,1.0]
@attribute Led5 real[0.0,1.0]
@attribute Led6 real[0.0,1.0]
@attribute Led7 real[0.0,1.0]
@attribute number{0,1,2,3,4,5,6,7,8,9}
@inputs Led1,Led2,Led3,Led4,Led5,Led6,Led7
@outputs number
@data
0 0
4 4
0 0
1 1
2 ?
2 ?
2 2
3 1
3 ?
6 ?
8 ?
3 3
4 4
5 5
7 ?
8 6
3 3
7 1
8 8
0 ?
3 2
7 7
8 8
9 4
9 9
0 6
0 0
1 1
8 8
9 9
2 2
3 3
6 5
6 ?
5 5
6 5
6 6
7 1
1 1
4 4
4 9
5 5
6 6
7 7
8 ?
9 3
1 ?
4 4
5 5
8 8
|
a62dd94b47268b40002e031ec5486a15dbfb64d6 | e2cee73f9682b79c4a5d6a1e6381cf6679dc1094 | /TP_AN/TP2/tp.sce | 7227f34c7afea2debbe2af7d63c38b9384cf3a56 | [] | no_license | melurne/TP_ANgit | b1b91e444aef30706fef0cac4da9355d4d04e1aa | 59c1aa6a5261f9753e108877079a495d5b95fb50 | refs/heads/master | 2023-04-19T09:23:02.045251 | 2021-05-17T14:56:34 | 2021-05-17T14:56:34 | 350,416,537 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 291 | sce | tp.sce | exec("/home/m/n/mneus/TP_AN/TP2/gauss.sci");
h = 0.01;
n = 5;
A = 2*eye(n,n) + (-1)*(diag(ones(1, n-1), 1) + diag(ones(1, n-1), -1))
B = (h^2)*ones(n, 1)
//thetaG = GaussPivotPartiel(A, B)
//thetaG = inv(A)*B
X0 = 10*ones(n, 1);
eps = 0.001;
N = 100;
[X, i] = GaussSeidel(A, B, X0, eps, N)
|
f97899c99697da9ef3a3ab4e51685900c31e66c8 | 56938bc67f1727ac61cf330ce0ff113a40babdb4 | /TP3/TP31.sce | 1888cd8ce6180efad1e99a5c27cccefd7ccfd2f4 | [] | no_license | royceda/Math-finance | a3b1e54bf3311514760d3d025eb55a94c0d53965 | f9a28b6cd5baf2ded9cb2eed8ec6c94e0ec738fa | refs/heads/master | 2021-01-10T04:22:52.831869 | 2015-11-25T22:06:16 | 2015-11-25T22:06:16 | 43,753,795 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,923 | sce | TP31.sce | //Rappel
function [p] = d1(x,t,K,T,r,sigma)
a = log(x/K)+(r+sigma**2/2)*(T-t)
p = a /(sigma*sqrt(T-t))
endfunction
test = d1(10,100,100,30,0.05,0.1)
function [p] = d2(x,t,K,T,r,sigma)
p = d1(x,t,K,T,r,sigma) - sigma*sqrt(T-t)
endfunction
test = d2(10,100,100,30,0.05,0.1)
function [p] = Call(x, t, T, K, r, sigma)
first = x*cdfnor("PQ",d1(x,t,K,T,r,sigma),0,1);
second = K*exp(-r*(T-t))*cdfnor("PQ",d2(x,t,K,T,r,sigma),0,1);
p = first - second;
endfunction
function [p] = Put(x, t, T, K, r, sigma)
first = x*cdfnor("PQ",-d1(x,t,K,T,r,sigma),0,1);
second = K*exp(-r*(T-t))*cdfnor("PQ",-d2(x,t,K,T,r,sigma),0,1);
p = -first + second;
endfunction
//_______________________________________________________
t = 0;
x = 1000;
T = 100;
K = 1000;
r = 0.005;
sigma = 0.1;
n = 1000;
X = grand(n,1,'nor',0,1);
function [p] = g(X, x, t, T, K, r, sigma)
first = K*exp(-r*(T-t));
second = x*exp(sigma*X*sqrt(T-t)) *exp(-((T-t)*sigma**2)/2)
p = max(0, first - second);
endfunction
test = g(X(1), x, t, T, K, r, sigma);
//evaluation with Monte Carlo method
function [p] = eval_Put(X, x, t, T, K, r, sigma, n)
tmp = 0;
for i = 1:n
tmp = tmp + g(X(i), x, t, T, K, r, sigma)/n;
end
p = tmp
endfunction
function [p]= error_Rate(X, x, t, T, K, r, sigma, n)
tmp = 0;
I = eval_Put(X, x, t, T, K, r, sigma, n);
for i = 1:n
tmp = tmp + (g(X(i), x, t, T, K, r) - I)**2/(n-1);
end
p = tmp;
endfunction
function [p] = boundary(X, x, t, T, K, r, sigma, n)
I = eval_Put(X, x, t, T, K, r, sigma, n);
A = error_Rate(X, x, t, T, K, r, sigma, n)
p = [I - 1.96*sqrt(A/n), I + 1.96*sqrt(A/n)];
endfunction
function [p] = test1(X, x, t, T, K, r, sigma, y)
for i = 1:length(y)
a(i) = eval_Put(X, x, t, T, K, r, sigma, y(i));
end
p = [a];
endfunction
function [p] = test2(X, x, t, T, K, r, sigma, y)
for i = 1:length(y)
b(i) = Put(x, t, T, K, r, sigma);
end
p = [b];
endfunction
function [p] = test3(X, x, t, T, K, r, sigma, y,n)
b = boundary(X, x, t, T, K, r, sigma, n)
for i = 1:length(y)
c(i) = b(1);
end
p = [c];
endfunction
function [p] = test4(X, x, t, T, K, r, sigma, y, n)
b = boundary(X, x, t, T, K, r, sigma, n)
for i = 1:length(y)
c(i) = b(2);
end
p = [c];
endfunction
n = 10
y = [1:1:n];
X = grand(n,1,'nor',0,1);
//clf();
//plot2d(y, test1(X, x, t, T, K, r, sigma, y), logflag = 'ln', style=5);
//plot2d(y, test2(X, x, t, T, K, r, sigma, y), logflag = 'ln', style=4);
//plot2d(y, test3(X, x, t, T, K, r, sigma, y, n), logflag = 'ln', style=2);
//plot2d(y, test4(X, x, t, T, K, r, sigma, y, n), logflag = 'ln', style=2);
//legend(["Put par Monte Carlo";"Put exacte";"inte"])
|
4736ee5b0697f8211194fcfe04baeda64c9261b7 | fdd5981eadab338ec2624b6a22fd0eac6e72c6c5 | /fis_V.sci | e16f351b752a6bc4fafd1497a1855567a54a4a11 | [] | no_license | meshcheryakovva/DSS-2017 | 5e2c6b88b657ad7de62ffe658b7aadef73ae7828 | 0171975e96655b6fcc6c334523517d6517492369 | refs/heads/master | 2021-03-09T19:19:56.332398 | 2020-03-10T18:00:29 | 2020-03-10T18:00:29 | 246,371,971 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,071 | sci | fis_V.sci | function V_res = fis_V(inVector, inCodes)
// аргументы: входной вектор числовых значений и массив строк-имен переменных
f_V=newfls("m"); // тип Мамдани
f_V.name="fisV";
f_V.TNorm="min"; // and
f_V.SNorm="max"; // or
f_V.Comp="one"; // not
f_V.defuzzMethod="centroide"; // центр тяжести
f_V.ImpMethod = 'min'
f_V.AggMethod = 'max'
// переменные и функции принадлежности
for i=1:11
f_V = addvar(f_V, "input", inCodes(i), [-1 1]);
f_V = addmf(f_V,"input",i,"low","trimf",[-1.1 -1.0 0.0]);
f_V = addmf(f_V,"input",i,"mid","trimf", [-1.0 0.0 1.0]);
f_V = addmf(f_V,"input",i,"high","trimf", [0.0 1.0 1.1]);
end
f_V = addvar(f_V, "output", "V", [-1 1]);
f_V = addmf(f_V,"output", 1, "low","trimf",[-1.1 -1.0 0.0]);
f_V = addmf(f_V,"output", 1, "mid","trimf", [-1.0 0.0 1.0]);
f_V = addmf(f_V,"output", 1, "high","trimf", [0.0 1.0 1.1]);
// матрица правил из FisPro
rulesFISProV = [ 3 , 3 , 0 , 3 , 0 , 0 , 0 , 0 , 0 , 3 , 0 , 3;
2 , 3 , 0 , 3 , 0 , 0 , 0 , 0 , 0 , 3 , 0 , 3;
3 , 2 , 0 , 3 , 0 , 0 , 0 , 0 , 0 , 3 , 0 , 3;
3 , 3 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 3 , 0 , 3;
3 , 3 , 0 , 3 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 3;
3 , 3 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 3;
2 , 3 , 0 , 3 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 3;
2 , 2 , 0 , 3 , 0 , 0 , 0 , 0 , 0 , 3 , 0 , 3;
3 , 2 , 0 , 3 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 3;
2 , 3 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 3 , 0 , 3;
2 , 2 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 2;
1 , 2 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 2;
2 , 1 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 2;
2 , 2 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 2;
2 , 2 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 2;
1 , 1 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 1;
2 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 1;
2 , 2 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1;
1 , 2 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 1;
2 , 1 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1;
2 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1;
1 , 2 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1;
1 , 1 , 0 , 2 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1;
1 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 2 , 0 , 1;
1 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1;
0 , 0 , 3 , 0 , 0 , 3 , 0 , 0 , 3 , 0 , 3 , 3;
0 , 0 , 2 , 0 , 0 , 3 , 0 , 0 , 3 , 0 , 3 , 3;
0 , 0 , 3 , 0 , 0 , 2 , 0 , 0 , 3 , 0 , 3 , 3;
0 , 0 , 3 , 0 , 0 , 3 , 0 , 0 , 2 , 0 , 3 , 3;
0 , 0 , 3 , 0 , 0 , 3 , 0 , 0 , 3 , 0 , 2 , 3;
0 , 0 , 3 , 0 , 0 , 3 , 0 , 0 , 2 , 0 , 2 , 3;
0 , 0 , 2 , 0 , 0 , 3 , 0 , 0 , 3 , 0 , 2 , 3;
0 , 0 , 2 , 0 , 0 , 2 , 0 , 0 , 3 , 0 , 3 , 3;
0 , 0 , 3 , 0 , 0 , 2 , 0 , 0 , 3 , 0 , 2 , 3;
0 , 0 , 2 , 0 , 0 , 3 , 0 , 0 , 2 , 0 , 3 , 3;
0 , 0 , 2 , 0 , 0 , 2 , 0 , 0 , 2 , 0 , 2 , 2;
0 , 0 , 1 , 0 , 0 , 2 , 0 , 0 , 2 , 0 , 2 , 2;
0 , 0 , 2 , 0 , 0 , 1 , 0 , 0 , 2 , 0 , 2 , 2;
0 , 0 , 2 , 0 , 0 , 2 , 0 , 0 , 1 , 0 , 2 , 2;
0 , 0 , 2 , 0 , 0 , 2 , 0 , 0 , 2 , 0 , 1 , 2;
0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 2 , 0 , 2 , 1;
0 , 0 , 2 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 2 , 1;
0 , 0 , 2 , 0 , 0 , 2 , 0 , 0 , 1 , 0 , 1 , 1;
0 , 0 , 1 , 0 , 0 , 2 , 0 , 0 , 1 , 0 , 2 , 1;
0 , 0 , 2 , 0 , 0 , 1 , 0 , 0 , 2 , 0 , 1 , 1;
0 , 0 , 2 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 1;
0 , 0 , 1 , 0 , 0 , 2 , 0 , 0 , 1 , 0 , 1 , 1;
0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 2 , 0 , 1 , 1;
0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 2 , 1;
0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 1;
0 , 3 , 0 , 0 , 3 , 0 , 3 , 3 , 0 , 0 , 0 , 3;
0 , 2 , 0 , 0 , 3 , 0 , 3 , 3 , 0 , 0 , 0 , 3;
0 , 3 , 0 , 0 , 2 , 0 , 3 , 3 , 0 , 0 , 0 , 3;
0 , 3 , 0 , 0 , 3 , 0 , 2 , 3 , 0 , 0 , 0 , 3;
0 , 3 , 0 , 0 , 3 , 0 , 3 , 2 , 0 , 0 , 0 , 3;
0 , 3 , 0 , 0 , 3 , 0 , 2 , 2 , 0 , 0 , 0 , 3;
0 , 2 , 0 , 0 , 3 , 0 , 3 , 2 , 0 , 0 , 0 , 3;
0 , 2 , 0 , 0 , 2 , 0 , 3 , 3 , 0 , 0 , 0 , 3;
0 , 3 , 0 , 0 , 2 , 0 , 3 , 2 , 0 , 0 , 0 , 3;
0 , 2 , 0 , 0 , 3 , 0 , 2 , 3 , 0 , 0 , 0 , 3;
0 , 2 , 0 , 0 , 2 , 0 , 2 , 2 , 0 , 0 , 0 , 2;
0 , 1 , 0 , 0 , 2 , 0 , 2 , 2 , 0 , 0 , 0 , 1,
0 , 2 , 0 , 0 , 1 , 0 , 2 , 2 , 0 , 0 , 0 , 1;
0 , 2 , 0 , 0 , 2 , 0 , 1 , 2 , 0 , 0 , 0 , 2;
0 , 2 , 0 , 0 , 2 , 0 , 2 , 1 , 0 , 0 , 0 , 2;
0 , 1 , 0 , 0 , 1 , 0 , 2 , 2 , 0 , 0 , 0 , 1;
0 , 2 , 0 , 0 , 1 , 0 , 1 , 2 , 0 , 0 , 0 , 1;
0 , 2 , 0 , 0 , 2 , 0 , 1 , 1 , 0 , 0 , 0 , 1;
0 , 1 , 0 , 0 , 2 , 0 , 1 , 2 , 0 , 0 , 0 , 1;
0 , 2 , 0 , 0 , 1 , 0 , 2 , 1 , 0 , 0 , 0 , 1;
0 , 2 , 0 , 0 , 1 , 0 , 1 , 1 , 0 , 0 , 0 , 1;
0 , 1 , 0 , 0 , 2 , 0 , 1 , 1 , 0 , 0 , 0 , 1;
0 , 1 , 0 , 0 , 1 , 0 , 2 , 1 , 0 , 0 , 0 , 1;
0 , 1 , 0 , 0 , 1 , 0 , 1 , 2 , 0 , 0 , 0 , 1;
0 , 1 , 0 , 0 , 1 , 0 , 1 , 1 , 0 , 0 , 0 , 1];
// добавить столбцы для конъюнкции и весов правил
len = size(rulesFISProV,1);
rulesV = cat(2, rulesFISProV, ones(len,2));
f_V = addrule(f_V, rulesV); // база правил
editfls(f_V)
V_res = evalfls(inVector, f_V); // вывод
endfunction
|
28ddd7d5a2dae2967054fb5aa1f15c492969ce2a | 67549df2a087a841e4e04a54509843c18795a981 | /packets/echantillons/extjs/win-css.sci | 9e691900f73dd572339fbcb742ba44234db35652 | [] | no_license | scicasoft/CRUD-generator | 60494434091147e1f8aa62c02b7d34339747885e | 037a7dabdf4d84933ffec560c0bd1a85c45deb03 | refs/heads/master | 2020-05-03T11:30:19.887391 | 2011-06-12T10:33:38 | 2011-06-12T10:33:38 | 719,111 | 0 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 804 | sci | win-css.sci | .[[NOM_TABLE_SANS_PRE]]-icon {
background-image:url(images/grid16x16.gif) !important;
}
.demo-[[NOM_TABLE_SANS_PRE]]-shortcut img {
background-image: url(images/grid48x48.png);
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='system/modules/grid-win/images/grid48x48.png', sizingMethod='scale');
}
.demo-[[NOM_TABLE_SANS_PRE]]-option {
background-image: url(images/plugin.gif) !important;
}
.demo-[[NOM_TABLE_SANS_PRE]]-add {
background-image: url(images/add.gif) !important;
}
.demo-[[NOM_TABLE_SANS_PRE]]-remove {
background-image: url(images/delete.gif) !important;
}
.demo-[[NOM_TABLE_SANS_PRE]]-loading {
background-image: url(images/loading.gif) !important;
}
.upload-icon {
background: url('images/image_add.png') no-repeat 0 0 !important;
} |
2bd268e41c2d5facd5e17666153d90c63f35f3bd | 6d1f05d2074f1d6f18d3d473f2dbd867c94fc7ee | /giarratano/SOURCE/TESTING/drtest03.tst | 39a1315212fecf7b152eda427385fc808973ecaa | [] | no_license | arranger1044/icse-1516 | c40d2c86892cd90c14042a95581cbb0e238190fb | ee4bafb57bb549ef40e29b8edf8cdad038e97162 | refs/heads/master | 2020-12-24T19:04:01.588095 | 2016-05-31T07:46:47 | 2016-05-31T07:46:47 | 56,578,768 | 14 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | tst | drtest03.tst | (unwatch all)
(clear)
(set-strategy depth)
(open "drtest03.rsl" drtest03 "w")
(dribble-on "drtest03.out")
(batch "drtest03.bat")
(dribble-off)
(load "compline.clp")
(printout drtest03 "drtest03.bat differences are as follows:" crlf)
(compare-files drtest03.exp drtest03.out drtest03)
; close result file
(close drtest03)
|
894284d266de52f06679fcb219f6b541252896cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/CH2/EX2.5/2_5.sce | fdd1402657cad3b946d505c9fe24ee8daddedc5b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 178 | sce | 2_5.sce | pathname=get_absolute_file_path('2_5.sce')
filename=pathname+filesep()+'2_5_data.sci'
exec(filename)
//work done
Wd=patm*V
printf("\n\nRESULTS\n\n")
printf("\nWork done:%f\n",Wd) |
86d1ae1c137308bcd6913653f86050df5f0f89fb | 484e05962b62928b49ae2e8fd80d4c45031eb3dc | /zx/zx.tst | 2f412b1e2781e8cddd008ced385bb053c9f7345b | [] | no_license | Royallle/hdl_cfx | adbb9dce7e3ae69507a4c1b26cddbd3b3a9eb0dc | 52cbe66f365516b659b65909e86aacb60da0342b | refs/heads/master | 2022-02-24T06:54:22.169423 | 2019-09-15T15:29:35 | 2019-09-15T15:29:35 | 110,464,895 | 0 | 0 | null | 2017-11-14T13:40:42 | 2017-11-12T20:05:58 | Scilab | UTF-8 | Scilab | false | false | 203 | tst | zx.tst | // Chip de teste para função ZX
load zx.hdl,
output-file zx.out,
compare-to zx.cmp,
output-list in%B3.5.3 out%B3.1.3;
set in %B00000, // in=0
eval,
output;
set in %B00001, // in=1
eval,
output;
|
1325e306afae0ba289c0d226eed3c672ee0b8e8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1472/CH11/EX11.1/11_1.sce | cec65420e3bc2a440c7c6aaec462be5a73f62134 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sce | 11_1.sce | clc
//initialization of varaibles
P1=15 //psia
T1=80+460 //R
dm=3 //lb
T2=75+460 //R
P2=25 //psia
//calculations
mratio=P1*T2/(P2*T1)
m2=dm/(1-mratio)
V2=m2*55.16*T2/(P2*144)
//results
printf("Volume of the apparatus = %.1f cu ft",V2)
|
9a52f2c64a29cac8c5252d7219af21144b3a1720 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH14/EX14.8/14_8.sce | b6114e0c5aef90a824e72b305daec10ca128bd80 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 148 | sce | 14_8.sce |
f=50E6
w=2*%pi*f
theta=5*%pi/180
C=1E-12
R=1/theta/w/C
disp(R)
C=10E-12
R=1/theta/w/C
disp(R)
C=100E-12
R=1/theta/w/C
disp(R)
|
19ddf1d8f23f4a7a1ab0e3198953cdf4eb51f3cf | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testelseif.sce | 9365688d87f637d66cbd6c69165a2a87eb48af1c | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | sce | testelseif.sce | //if then elseif
x=1;
if x==1 then txt='x is equal to 1';
elseif x==2 then txt='x is equal to 2';
else txt='x is not equal to 1 nor 2';
end //<-- only one "end"
disp(txt)
//two nested if statements
x=2;
if x==1 then txt='x is equal to 1';
else if x==2 then txt='x is equal to 2';
else txt='x is not equal to 1 nor 2';
end //<-- "end" of second "if"
end //<-- "end" of first "if"
disp(txt)
|
87990ac1c56f1acfe9cdda42eb4a2789e2d4564a | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.1.1/Unix/scilab-2.1.1/macros/auto/contrss.sci | 6af2c527d2537005ec020c850689b3b8d9c18ad6 | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sci | contrss.sci | function slc=contrss(a,tol)
[lhs,rhs]=argn(0)
//
if a(1)<>'lss' then
error(91,1),
end;
if rhs==1 then tol=sqrt(%eps);end
if rhs>2 then error('1 or 2 inputs to contrss : sl [,tol]')
end;
[a,b,c,d,x0,dom]=a(2:7)
//
[nc,u]=contr(a,b,tol)
u=u(:,1:nc)
a=u'*a*u;b=u'*b;c=c*u
slc=list('lss',a,b,c,d,u'*x0,dom)
|
a0d83162f1aeaba000d0a8c254aed9d8e9145c88 | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH13/EX13.20/13_20.sce | c9550e416b8c209fa1478e9bb78f00c46d73c22f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 764 | sce | 13_20.sce | //To find teeth and torque
clc
//Given:
Ts=100 //Torque on the sun wheel, N-m
r=5 //Ratio of speeds of gear S to C, NS/NC
//Refer Fig. 13.27 and Table 13.22
//Number of teeth on different wheels:
//Calculating the values of x and y
y=1
x=5-y
//Calculating the number of teeth on wheel E
TS=16
TE=4*TS
//Calculating the number of teeth on wheel P
TP=(TE-TS)/2
//Torque necessary to keep the internal gear stationary:
Tc=Ts*r //Torque on CN-m
//Caluclating the torque necessary to keep the internal gear stationary
Ti=Tc-Ts //Torque necessary to keep the internal gear stationary, N-m
//Results:
printf("\n\n Number of teeth on different wheels, TE = %d.\n\n",TE)
printf(" Torque necessary to keep the internal gear stationary = %d N-m.\n\n",Ti) |
d00b61cd8d1fd3724b0ecc52050e5cfd5a0b1d73 | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH23/EX23.2/example2.sce | 6b31b4560d2d7961ea81c456a2af8150e4ca3a82 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 514 | sce | example2.sce | // find output voltage of oscillator
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 23-2 , page 897
clear;clc; close;
// Given data
R=10^3;// lamp resistance in ohms
V=2;// lamp voltage in volts
Rb=2*10^3;// feedback resistance in ohms
// Calculations
I=V/R;// lamp current in amperes
Vout=I*(R+Rb);// output voltage in volts
disp("Volts",Vout,"output voltage=")
// Result
// Output voltage of the oscillator is 6vrms |
cbc3705fac96ded5e78fa1f248cbf271e8f6cf1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH5/EX5.8/Example_5_8.sce | dadfa34029480e8e719e06fee21dbe10e28c13ce | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example_5_8.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 5
//Some Applications of the Laws of Thermodynamics
//Example 8
clear;
clc;
//Given:
P1 = 100; //initial pressure of saturated steam (kPa)
P2 = 500; //final pressure (kPa)
eff = 0.8; //compression efficiency
//Referring steam tables
//Properties of steam entering the compressor
H1 = 2675.5; //enthalpy (kJ/kg)
S1 = 7.3594; //entropy (kJ/kg K)
//Properties of compressed steam
H2 = 3008; //enthalpy (kJ/kg)
S2 = S1; //isentropic compression
//To calculate work required and temperature
Hs = H2-H1;
//Using eq. 5.44 (Page no. 128)
W_isentropic = -Hs;
W_act = W_isentropic/eff;
mprintf('The work required for compression is %f kJ/kg',-W_act);
H = Hs/eff; //actual change in enthalpy
H_act = H1+H; //actual enthalpy of steam leaving the compressor
//From steam tables for superheated steam at 500 kPa and enthalpy of H_act
T = 586; //temperature (K)
mprintf('\nTemperature of exhaust steam is %i K',T);
//end |
368ae2d5bdcabb71667c01d101e1afe3f3334a2b | 717ddeb7e700373742c617a95e25a2376565112c | /2474/CH7/EX7.1/Ch07Ex01.sce | 3c14fa14c6bf0a0837661e0dc0f4310dbe8f15b7 | [] | 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 | 915 | sce | Ch07Ex01.sce | // Scilab code Ex7.1: Pg.277 (2008)
clc; clear;
// Part (1)
l = 2; // Orbital quantum momentum
// For simplicity assume h_cross be unity
h_cross = 1; // Reduced plank's constant, J-s
printf("\nThe possible values of L_z (in units of h_cross) are ");
for i = -2:2
printf(" %1d ",i);
end
// Part (2)
m = 2; // Magnetic quantum number
L_z = m*h_cross; // Z-component of angular momentum
L = sqrt(l*(l+1))*h_cross; // Angular momentum
printf("\nThe magnitude of L (in units of h_cross) = %4.2f", L);
// Part (3)
theta = (180/%pi)*acos((L_z)/(L)); // Smallest angle between L & z-axis, degrees
printf("\nThe smallest angle between L and z-axis = %4.1f degrees", theta);
// Result
// The possible values of L_z (in units of h_cross) are -2 -1 0 1 2
// The magnitude of L (in units of h_cross) = 2.45
// The smallest angle between L and z-axis = 35.3 degrees |
ce31863f28e3408b5692dd414a425f08dc653c63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH6/EX6.10/Ch06Ex10.sce | 119608f3b2c35282b2e9bb60aa11eb935f86d990 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ch06Ex10.sce | // Scilab code Ex6.10: Pg:261 (2008)
clc;clear;
mu_O = 1.55336; // Refractive index for an ordinary beam
mu_E = 1.54425; // Refractive index for an extra-ordinary beam
lambda = 5.893e-05; // Wavelength of sodium light, cm
t = lambda/(4*(mu_O-mu_E)); // Thickness of quarter wave plate, cm
printf("\nThe thickness of the quarter wave plate for quartz = %4.2e cm", t);
// Result
// The thickness of the quarter wave plate for quartz = 1.62e-003 cm |
8790107842b6805521b5a7989c37bb5cafbf95a9 | 0e98ab5e5781e77e9f82deb89115123ee62e1726 | /scilab/plot_csv.sce | ae638f29d6e64cac11af7261a6b6c8c33818c3cf | [] | no_license | spreadq/SCDTR | edbfb2f3cfde27474eb12422b3c59fdf2c978c1d | 8034a9a2e39150674aef40422f176379e88ea640 | refs/heads/master | 2021-04-18T22:09:23.243983 | 2016-06-21T12:50:16 | 2016-06-21T12:50:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,168 | sce | plot_csv.sce | mode(0)
clear
// get a file location
filename = uigetfile('*.csv', pwd(), 'Choose a file');
separator = ',';
// get data from csv-file with using some separator. Ignore the first line
data_values = csvRead(filename, separator, [], [], [], [], [], 1);
// get the column names based on the first line
col_names = strsplit(mgetl(filename, 1), separator);
scale = evstr(x_mdialog('Enter scaling factors for each column', col_names(2:$), string(ones(col_names(2:$)))));
scaled_values = data_values
for i = 1:size(data_values,2)-1,
scaled_values(:,i+1) = data_values(:,i+1)*scale(i)
end
// define colors and descriptions for columns of data
colors = {'r-','g-','b-', 'c-', 'm-', 'k-', 'w-'};
descriptions = col_names(2:$);
// Create figure and loop through all columns and plot all data agains first column.
f = scf();
for i = 1:size(data_values,2)-1,
// plot columns, with different colors
plot(data_values(:,1), scaled_values(:,i+1), colors(i));
end
//
title("")
xlabel("Time (µs)");
ylabel("Volgage (V)");
h = legend(descriptions, 4);
xgrid()
xs2pdf(0, fileparts(filename, 'path') + fileparts(filename, 'fname'));
|
8cc6f31dd7a408df2f58379fe65a904de04aa649 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH6/EX6.3/Ex6_3.sce | 03a0f535e9a661fd9761009490ad7399c0a3317b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 444 | sce | Ex6_3.sce | //Chapter-6,Example 6_3,Page 6-27
clc()
//Given Values:
u=0.8*10^-23 //Magnetic dipole moment of an atom in paramagnetic gas in J/T
B=0.8 //Magnetic field in tesla
K=1.38*10^-23 //Boltzmann constant
//To find Temperature at which Average thermal energy is equal to Magnetic energy
//i.e. uB=3KT/2
T=2*u*B/(3*K) //Required temperature
printf('Required temperature is =%.3f Kelvin \n',T)
|
bd0ee3584e9f99a3ccfb200c8f5b5652f9152fa0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1985/CH11/EX11.2/Chapter11_Example2.sce | fe6640f99e4d95a938fa55c3e91f7d5e8fd68c62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 582 | sce | Chapter11_Example2.sce | clc
clear
//Input data
V=10*1000//Potential difference applied in V
I=2*10^-3//Current in A
e=(1.6*10^-19)//Charge of the electron in C
m=9.1*10^-31//Mass of the electron in kg
//Calculations
n=(I/e)/10^16//Number of electrons striking the target per second *10^16
v=sqrt((2*e*V)/m)/10^7//Velocity of the electron in m/s*10^7
lmin=12400/V//Wavelength of the X-rays in angstroms
//Output
printf('Number of electrons striking the target per second is %3.2f*10^16 \n Velocity of the electron is %3.2f*10^7 m/s \n Wavelength of the X-rays is %3.2f angstroms',n,v,lmin)
|
31fa3635417c9a3de7d0a5844bc4954fc09f03bc | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Simp Bolt Punish.sce | 5246d99eef80a2dcf4e5ec23176163c6dd527b67 | [] | 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 | 129,504 | sce | Simp Bolt Punish.sce | Name=Simp Bolt Punish
PlayerCharacters=SimpQuaker
BotCharacters=Quaker Bot Close.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=SimpQuaker
AddedBots=Quaker Bot Close.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=2
BotTeams=1
MapName=SimpVert.map
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=1.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Reflex
WeaponHeroTag=Rockets, RL, Lightning Gun, LG, Railgun, RG, Bolt, BR
DifficultyTag=2
AuthorsTag=KovaaK
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Target spawns up high, and you have all the main Reflex weapons available to punish him as he falls. Gain score by doing damage, lose score by taking damage.
GameVersion=1.0.4
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=Quaker Bot Close
DodgeProfileNames=Long Strafes 2
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Low Skill;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Quaker
SeeThroughWalls=false
[Character Profile]
Name=SimpQuaker
MaxHealth=10000.0
WeaponProfileNames=Railgun;Rocket Launcher;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=1600.0
Gravity=4.5
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=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.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.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
[Character Profile]
Name=Quaker
MaxHealth=300.0
WeaponProfileNames=Railgun;Rocket Launcher;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=1600.0
Gravity=4.5
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=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.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.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
[Dodge Profile]
Name=Long Strafes 2
MaxTargetDistance=1750.0
MinTargetDistance=500.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.5
MaxFBTimeChange=1.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=Railgun
Type=Hitscan
ShotsPerClick=1
DamagePerShot=80.0
KnockbackFactor=10.0
TimeBetweenShots=1.0
Pierces=true
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Beam
ProjectileGraphic=Ball
VisualLifetime=0.5
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=10.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
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
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,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=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.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=0.05
AAMaxSpeed=1.0
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=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.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Rocket Launcher
Type=Projectile
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=14.0
TimeBetweenShots=0.8
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=5090.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=5090.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Rocket
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=14.0
RecoilNegatable=false
DecalType=0
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
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
Explosive=true
Radius=500.0
DamageAtCenter=120.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
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=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=180.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.001
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.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=6.0
KnockbackFactor=14.0
TimeBetweenShots=0.046
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.05
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=14.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
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
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
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=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=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera score
ColourXRGB32 fogColor ff1a6073
Float fogDistanceEnd 9999.000000
Float fogHeightTop 170.000000
Float fogHeightBottom -200.000000
String256 title Simplicity
UInt8 playersMax 6
brush
vertices
-224.000000 144.000000 640.000000
-160.000000 144.000000 640.000000
-160.000000 144.000000 576.000000
-224.000000 136.000000 640.000000
-160.000000 136.000000 576.000000
-160.000000 136.000000 640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0xff000000 common/materials/fabric/cotton
brush
vertices
96.000000 480.000000 862.000000
128.000000 480.000000 862.000000
128.000000 480.000000 830.000000
96.000000 472.000000 862.000000
128.000000 472.000000 830.000000
128.000000 472.000000 862.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0xffebebeb common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xffebebeb common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 90.000000 3 0 2 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-312.000000 504.000000 856.000000
-304.000000 504.000000 856.000000
-304.000000 504.000000 848.000000
-312.000000 496.000000 856.000000
-312.000000 504.000000 848.000000
-312.000000 496.000000 848.000000
-304.000000 496.000000 856.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 6 0xff000000 common/materials/fabric/cotton
brush
vertices
-312.000000 504.000000 856.000000
-240.000000 504.000000 856.000000
-240.000000 504.000000 848.000000
-312.000000 496.000000 856.000000
-240.000000 496.000000 856.000000
-312.000000 504.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-240.000000 504.000000 856.000000
-232.000000 504.000000 856.000000
-232.000000 504.000000 848.000000
-240.000000 496.000000 856.000000
-240.000000 504.000000 848.000000
-232.000000 496.000000 848.000000
-232.000000 496.000000 856.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 6 0xff000000 common/materials/fabric/cotton
brush
vertices
-304.000000 504.000000 736.000000
-240.000000 504.000000 736.000000
-240.000000 504.000000 728.000000
-304.000000 496.000000 728.000000
-240.000000 496.000000 728.000000
-304.000000 504.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0xff302929 common/materials/stone/stone
brush
vertices
-240.000000 504.000000 736.000000
-232.000000 504.000000 736.000000
-232.000000 504.000000 728.000000
-240.000000 496.000000 728.000000
-240.000000 504.000000 728.000000
-232.000000 496.000000 728.000000
-232.000000 496.000000 736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 6 0xff000000 common/materials/fabric/cotton
brush
vertices
-312.000000 504.000000 736.000000
-304.000000 504.000000 736.000000
-304.000000 504.000000 728.000000
-312.000000 496.000000 736.000000
-312.000000 504.000000 728.000000
-304.000000 496.000000 728.000000
-312.000000 496.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 5 3 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 6 0xff000000 common/materials/fabric/cotton
brush
vertices
-312.000000 504.000000 848.000000
-304.000000 504.000000 848.000000
-304.000000 504.000000 736.000000
-312.000000 496.000000 848.000000
-312.000000 496.000000 736.000000
-312.000000 504.000000 736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 0 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-240.000000 504.000000 848.000000
-232.000000 504.000000 848.000000
-232.000000 504.000000 736.000000
-232.000000 496.000000 848.000000
-232.000000 496.000000 736.000000
-240.000000 504.000000 736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 0 5 0xff000000 common/materials/fabric/cotton
brush
vertices
465.000000 271.000000 706.000000
479.000000 271.000000 706.000000
479.000000 271.000000 704.000000
465.000000 271.000000 704.000000
465.000000 257.000000 706.000000
479.000000 257.000000 706.000000
479.000000 257.000000 704.000000
465.000000 257.000000 704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-304.000000 512.000000 832.000000
-296.000000 512.000000 832.000000
-296.000000 512.000000 816.000000
-304.000000 512.000000 816.000000
-304.000000 504.000000 832.000000
-296.000000 504.000000 832.000000
-296.000000 504.000000 816.000000
-304.000000 504.000000 816.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-304.000000 512.000000 768.000000
-296.000000 512.000000 768.000000
-296.000000 512.000000 752.000000
-304.000000 512.000000 752.000000
-304.000000 504.000000 768.000000
-296.000000 504.000000 768.000000
-296.000000 504.000000 752.000000
-304.000000 504.000000 752.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-304.000000 512.000000 800.000000
-296.000000 512.000000 800.000000
-296.000000 512.000000 784.000000
-304.000000 512.000000 784.000000
-304.000000 504.000000 800.000000
-296.000000 504.000000 800.000000
-296.000000 504.000000 784.000000
-304.000000 504.000000 784.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-248.000000 512.000000 832.000000
-240.000000 512.000000 832.000000
-240.000000 512.000000 816.000000
-248.000000 512.000000 816.000000
-248.000000 504.000000 832.000000
-240.000000 504.000000 832.000000
-240.000000 504.000000 816.000000
-248.000000 504.000000 816.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-248.000000 512.000000 800.000000
-240.000000 512.000000 800.000000
-240.000000 512.000000 784.000000
-248.000000 512.000000 784.000000
-248.000000 504.000000 800.000000
-240.000000 504.000000 800.000000
-240.000000 504.000000 784.000000
-248.000000 504.000000 784.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-248.000000 512.000000 768.000000
-240.000000 512.000000 768.000000
-240.000000 512.000000 752.000000
-248.000000 512.000000 752.000000
-248.000000 504.000000 768.000000
-240.000000 504.000000 768.000000
-240.000000 504.000000 752.000000
-248.000000 504.000000 752.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-296.000000 512.000000 768.000000
-248.000000 512.000000 768.000000
-248.000000 512.000000 752.000000
-296.000000 512.000000 752.000000
-296.000000 510.000000 768.000000
-248.000000 510.000000 768.000000
-248.000000 510.000000 752.000000
-296.000000 510.000000 752.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
-296.000000 512.000000 800.000000
-248.000000 512.000000 800.000000
-248.000000 512.000000 784.000000
-296.000000 512.000000 784.000000
-296.000000 510.000000 800.000000
-248.000000 510.000000 800.000000
-248.000000 510.000000 784.000000
-296.000000 510.000000 784.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
-296.000000 512.000000 832.000000
-248.000000 512.000000 832.000000
-248.000000 512.000000 816.000000
-296.000000 512.000000 816.000000
-296.000000 510.000000 832.000000
-248.000000 510.000000 832.000000
-248.000000 510.000000 816.000000
-296.000000 510.000000 816.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
-296.000000 510.000000 830.000000
-248.000000 510.000000 830.000000
-248.000000 510.000000 818.000000
-296.000000 510.000000 818.000000
-296.000000 506.000000 830.000000
-248.000000 506.000000 830.000000
-248.000000 506.000000 818.000000
-296.000000 506.000000 818.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/effects/energy
brush
vertices
-296.000000 510.000000 798.000000
-248.000000 510.000000 798.000000
-248.000000 510.000000 786.000000
-296.000000 510.000000 786.000000
-296.000000 506.000000 798.000000
-248.000000 506.000000 798.000000
-248.000000 506.000000 786.000000
-296.000000 506.000000 786.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/effects/energy
brush
vertices
256.000000 144.000000 704.000000
258.000000 144.000000 704.000000
258.000000 144.000000 696.000000
256.000000 144.000000 696.000000
256.000000 142.000000 704.000000
258.000000 142.000000 704.000000
258.000000 142.000000 696.000000
256.000000 142.000000 696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-320.000000 512.000000 848.000000
-304.000000 512.000000 848.000000
-304.000000 512.000000 736.000000
-320.000000 512.000000 736.000000
-320.000000 504.000000 848.000000
-304.000000 504.000000 848.000000
-304.000000 504.000000 736.000000
-320.000000 504.000000 736.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0xffebebeb common/materials/stone/stone
brush
vertices
-80.000000 112.000000 688.000000
-4.000000 112.000000 688.000000
-4.000000 112.000000 672.000000
-80.000000 112.000000 672.000000
-80.000000 96.000000 688.000000
-4.000000 96.000000 688.000000
-4.000000 96.000000 672.000000
-80.000000 96.000000 672.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-296.000000 510.000000 766.000000
-248.000000 510.000000 766.000000
-248.000000 510.000000 754.000000
-296.000000 510.000000 754.000000
-296.000000 506.000000 766.000000
-248.000000 506.000000 766.000000
-248.000000 506.000000 754.000000
-296.000000 506.000000 754.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/effects/energy
brush
vertices
-78.000000 22.000000 484.000000
78.000000 22.000000 484.000000
78.000000 22.000000 224.000000
-78.000000 22.000000 224.000000
-78.000000 20.000000 484.000000
78.000000 20.000000 484.000000
78.000000 20.000000 224.000000
-78.000000 20.000000 224.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
-416.000000 864.000000 880.000000
496.000000 864.000000 880.000000
496.000000 864.000000 864.000000
-416.000000 864.000000 864.000000
-416.000000 144.000000 880.000000
496.000000 144.000000 880.000000
496.000000 144.000000 864.000000
-416.000000 144.000000 864.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
254.000000 462.000000 706.000000
464.000000 462.000000 706.000000
464.000000 462.000000 224.000000
254.000000 462.000000 224.000000
254.000000 144.000000 706.000000
464.000000 144.000000 706.000000
464.000000 144.000000 224.000000
254.000000 144.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
464.000000 414.000000 864.000000
480.000000 414.000000 864.000000
480.000000 414.000000 706.000000
464.000000 414.000000 706.000000
464.000000 256.000000 864.000000
480.000000 256.000000 864.000000
480.000000 256.000000 706.000000
464.000000 256.000000 706.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
254.000000 462.000000 864.000000
464.000000 462.000000 864.000000
464.000000 462.000000 706.000000
254.000000 462.000000 706.000000
254.000000 414.000000 864.000000
464.000000 414.000000 864.000000
464.000000 414.000000 706.000000
254.000000 414.000000 706.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
288.000000 864.000000 864.000000
304.000000 864.000000 864.000000
304.000000 864.000000 224.000000
288.000000 864.000000 224.000000
288.000000 488.000000 864.000000
304.000000 488.000000 864.000000
304.000000 488.000000 224.000000
288.000000 488.000000 224.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
128.000000 488.000000 864.000000
288.000000 488.000000 864.000000
288.000000 488.000000 386.000000
128.000000 488.000000 386.000000
128.000000 462.000000 864.000000
288.000000 462.000000 864.000000
288.000000 462.000000 386.000000
128.000000 462.000000 386.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
-77.999985 864.000000 224.000000
288.000000 864.000000 224.000000
288.000000 864.000000 208.000000
-77.999985 864.000000 208.000000
-77.999985 462.000000 224.000000
288.000000 462.000000 224.000000
288.000000 462.000000 208.000000
-77.999985 462.000000 208.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
-78.000000 488.000000 386.000000
288.000000 488.000000 386.000000
288.000000 488.000000 224.000000
-78.000000 488.000000 224.000000
-78.000000 462.000000 386.000000
288.000000 462.000000 386.000000
288.000000 462.000000 224.000000
-78.000000 462.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 496.000000 386.000000
96.000000 496.000000 386.000000
96.000000 496.000000 224.000000
80.000000 496.000000 224.000000
80.000000 488.000000 386.000000
96.000000 488.000000 386.000000
96.000000 488.000000 224.000000
80.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
64.000000 504.000000 386.000000
80.000000 504.000000 386.000000
80.000000 504.000000 224.000000
64.000000 504.000000 224.000000
64.000000 488.000000 386.000000
80.000000 488.000000 386.000000
80.000000 488.000000 224.000000
64.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
48.000000 512.000000 386.000000
64.000000 512.000000 386.000000
64.000000 512.000000 224.000000
48.000000 512.000000 224.000000
48.000000 488.000000 386.000000
64.000000 488.000000 386.000000
64.000000 488.000000 224.000000
48.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
32.000000 520.000000 386.000000
48.000000 520.000000 386.000000
48.000000 520.000000 224.000000
32.000000 520.000000 224.000000
32.000000 488.000000 386.000000
48.000000 488.000000 386.000000
48.000000 488.000000 224.000000
32.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
16.000000 528.000000 386.000000
32.000000 528.000000 386.000000
32.000000 528.000000 224.000000
16.000000 528.000000 224.000000
16.000000 488.000000 386.000000
32.000000 488.000000 386.000000
32.000000 488.000000 224.000000
16.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
0.000000 536.000000 386.000000
16.000000 536.000000 386.000000
16.000000 536.000000 224.000000
0.000000 536.000000 224.000000
0.000000 488.000000 386.000000
16.000000 488.000000 386.000000
16.000000 488.000000 224.000000
0.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-384.000000 496.000000 864.000000
-368.000000 496.000000 864.000000
-368.000000 496.000000 720.000000
-384.000000 496.000000 720.000000
-384.000000 224.000000 864.000000
-368.000000 224.000000 864.000000
-368.000000 224.000000 720.000000
-384.000000 224.000000 720.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
-384.000000 224.000000 864.000000
-368.000000 224.000000 864.000000
-368.000000 224.000000 720.000000
-384.000000 224.000000 720.000000
-384.000000 208.000000 864.000000
-368.000000 208.000000 864.000000
-368.000000 208.000000 720.000000
-384.000000 208.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-368.000000 216.000000 864.000000
-352.000000 216.000000 864.000000
-352.000000 216.000000 720.000000
-368.000000 216.000000 720.000000
-368.000000 200.000000 864.000000
-352.000000 200.000000 864.000000
-352.000000 200.000000 720.000000
-368.000000 200.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-352.000000 208.000000 864.000000
-336.000000 208.000000 864.000000
-336.000000 208.000000 720.000000
-352.000000 208.000000 720.000000
-352.000000 192.000000 864.000000
-336.000000 192.000000 864.000000
-336.000000 192.000000 720.000000
-352.000000 192.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-336.000000 200.000000 864.000000
-320.000000 200.000000 864.000000
-320.000000 200.000000 720.000000
-336.000000 200.000000 720.000000
-336.000000 184.000000 864.000000
-320.000000 184.000000 864.000000
-320.000000 184.000000 720.000000
-336.000000 184.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-320.000000 192.000000 864.000000
-304.000000 192.000000 864.000000
-304.000000 192.000000 720.000000
-320.000000 192.000000 720.000000
-320.000000 176.000000 864.000000
-304.000000 176.000000 864.000000
-304.000000 176.000000 720.000000
-320.000000 176.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-304.000000 184.000000 864.000000
-288.000000 184.000000 864.000000
-288.000000 184.000000 720.000000
-304.000000 184.000000 720.000000
-304.000000 168.000000 864.000000
-288.000000 168.000000 864.000000
-288.000000 168.000000 720.000000
-304.000000 168.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-288.000000 176.000000 864.000000
-272.000000 176.000000 864.000000
-272.000000 176.000000 720.000000
-288.000000 176.000000 720.000000
-288.000000 160.000000 864.000000
-272.000000 160.000000 864.000000
-272.000000 160.000000 720.000000
-288.000000 160.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-272.000000 168.000000 864.000000
-256.000000 168.000000 864.000000
-256.000000 168.000000 720.000000
-272.000000 168.000000 720.000000
-272.000000 152.000000 864.000000
-256.000000 152.000000 864.000000
-256.000000 152.000000 720.000000
-272.000000 152.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-256.000000 160.000000 864.000000
-240.000000 160.000000 864.000000
-240.000000 160.000000 720.000000
-256.000000 160.000000 720.000000
-256.000000 144.000000 864.000000
-240.000000 144.000000 864.000000
-240.000000 144.000000 720.000000
-256.000000 144.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-240.000000 152.000000 864.000000
-224.000000 152.000000 864.000000
-224.000000 152.000000 720.000000
-240.000000 152.000000 720.000000
-240.000000 136.000000 864.000000
-224.000000 136.000000 864.000000
-224.000000 136.000000 720.000000
-240.000000 136.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-224.000000 144.000000 864.000000
256.000000 144.000000 864.000000
256.000000 144.000000 736.000000
-224.000000 144.000000 736.000000
-224.000000 128.000000 864.000000
256.000000 128.000000 864.000000
256.000000 128.000000 736.000000
-224.000000 128.000000 736.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-80.000000 136.000000 736.000000
80.000000 136.000000 736.000000
80.000000 136.000000 720.000000
-80.000000 136.000000 720.000000
-80.000000 120.000000 736.000000
80.000000 120.000000 736.000000
80.000000 120.000000 720.000000
-80.000000 120.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 128.000000 720.000000
80.000000 128.000000 720.000000
80.000000 128.000000 704.000000
-80.000000 128.000000 704.000000
-80.000000 112.000000 720.000000
80.000000 112.000000 720.000000
80.000000 112.000000 704.000000
-80.000000 112.000000 704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 120.000000 704.000000
80.000000 120.000000 704.000000
80.000000 120.000000 688.000000
-80.000000 120.000000 688.000000
-80.000000 104.000000 704.000000
80.000000 104.000000 704.000000
80.000000 104.000000 688.000000
-80.000000 104.000000 688.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 112.000000 688.000000
80.000000 112.000000 688.000000
80.000000 112.000000 672.000000
-80.000000 112.000000 672.000000
-80.000000 96.000000 688.000000
80.000000 96.000000 688.000000
80.000000 96.000000 672.000000
-80.000000 96.000000 672.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 104.000000 672.000000
80.000000 104.000000 672.000000
80.000000 104.000000 656.000000
-80.000000 104.000000 656.000000
-80.000000 88.000000 672.000000
80.000000 88.000000 672.000000
80.000000 88.000000 656.000000
-80.000000 88.000000 656.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 96.000000 656.000000
80.000000 96.000000 656.000000
80.000000 96.000000 640.000000
-80.000000 96.000000 640.000000
-80.000000 80.000000 656.000000
80.000000 80.000000 656.000000
80.000000 80.000000 640.000000
-80.000000 80.000000 640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 88.000000 640.000000
80.000000 88.000000 640.000000
80.000000 88.000000 624.000000
-80.000000 88.000000 624.000000
-80.000000 72.000000 640.000000
80.000000 72.000000 640.000000
80.000000 72.000000 624.000000
-80.000000 72.000000 624.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 80.000000 624.000000
80.000000 80.000000 624.000000
80.000000 80.000000 608.000000
-80.000000 80.000000 608.000000
-80.000000 64.000000 624.000000
80.000000 64.000000 624.000000
80.000000 64.000000 608.000000
-80.000000 64.000000 608.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 72.000000 608.000000
80.000000 72.000000 608.000000
80.000000 72.000000 592.000000
-80.000000 72.000000 592.000000
-80.000000 56.000000 608.000000
80.000000 56.000000 608.000000
80.000000 56.000000 592.000000
-80.000000 56.000000 592.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 64.000000 592.000000
80.000000 64.000000 592.000000
80.000000 64.000000 576.000000
-80.000000 64.000000 576.000000
-80.000000 48.000000 592.000000
80.000000 48.000000 592.000000
80.000000 48.000000 576.000000
-80.000000 48.000000 576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 56.000000 576.000000
80.000000 56.000000 576.000000
80.000000 56.000000 560.000000
-80.000000 56.000000 560.000000
-80.000000 40.000000 576.000000
80.000000 40.000000 576.000000
80.000000 40.000000 560.000000
-80.000000 40.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 48.000000 560.000000
80.000000 48.000000 560.000000
80.000000 48.000000 544.000000
-80.000000 48.000000 544.000000
-80.000000 32.000000 560.000000
80.000000 32.000000 560.000000
80.000000 32.000000 544.000000
-80.000000 32.000000 544.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 40.000000 544.000000
80.000000 40.000000 544.000000
80.000000 40.000000 528.000000
-80.000000 40.000000 528.000000
-80.000000 24.000000 544.000000
80.000000 24.000000 544.000000
80.000000 24.000000 528.000000
-80.000000 24.000000 528.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-224.000000 144.000000 736.000000
-78.000000 144.000000 736.000000
-78.000000 144.000000 226.000000
-224.000000 144.000000 226.000000
-224.000000 22.000008 736.000000
-78.000000 22.000008 736.000000
-78.000000 22.000008 226.000000
-224.000000 22.000008 226.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-78.000000 462.000000 226.000000
80.000000 462.000000 226.000000
80.000000 462.000000 210.000000
-78.000000 462.000000 210.000000
-78.000000 16.000000 226.000000
80.000000 16.000000 226.000000
80.000000 16.000000 210.000000
-78.000000 16.000000 210.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 32.000000 528.000000
-16.000000 32.000000 528.000000
-16.000000 32.000000 448.000000
-80.000000 32.000000 448.000000
-80.000000 22.000000 528.000000
-16.000000 22.000000 528.000000
-16.000000 22.000000 448.000000
-80.000000 22.000000 448.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
-16.000000 32.000000 480.000000
16.000000 32.000000 480.000000
-16.000000 22.000000 448.000000
-16.000000 22.000000 480.000000
16.000000 22.000000 480.000000
-16.000000 32.000000 448.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 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000
brush
vertices
-22.000000 32.000000 332.000000
78.000000 32.000000 332.000000
78.000000 32.000000 268.000000
-22.000000 32.000000 268.000000
-22.000000 22.000000 332.000000
78.000000 22.000000 332.000000
78.000000 22.000000 268.000000
-22.000000 22.000000 268.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
-16.000000 32.000000 528.000000
80.000000 32.000000 528.000000
80.000000 32.000000 480.000000
-16.000000 32.000000 480.000000
-16.000000 22.000000 528.000000
80.000000 22.000000 528.000000
80.000000 22.000000 480.000000
-16.000000 22.000000 480.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
-222.000000 200.000000 560.000000
-78.000000 200.000000 560.000000
-78.000000 200.000000 352.000000
-222.000000 200.000000 352.000000
-222.000000 144.000000 560.000000
-78.000000 144.000000 560.000000
-78.000000 144.000000 352.000000
-222.000000 144.000000 352.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
-222.000000 200.000000 642.000000
-161.000000 200.000000 642.000000
-161.000000 200.000000 560.000000
-222.000000 200.000000 560.000000
-222.000000 145.000000 642.000000
-161.000000 145.000000 642.000000
-161.000000 145.000000 560.000000
-222.000000 145.000000 560.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
-161.000000 200.000000 642.000000
-161.000000 145.000000 560.000000
-78.000000 200.000000 560.000000
-161.000000 145.000000 642.000000
-78.000000 145.000000 560.000000
-161.000000 200.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-224.000000 864.000000 640.000000
-224.000000 382.000000 496.000000
-78.000000 864.000000 496.000000
-224.000000 382.000000 640.000000
-78.000000 382.000000 496.000000
-224.000000 864.000000 496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
78.000000 192.000000 512.000000
254.000000 192.000000 512.000000
254.000000 192.000000 224.000000
78.000000 192.000000 224.000000
78.000000 22.000000 512.000000
254.000000 22.000000 512.000000
254.000000 22.000000 224.000000
78.000000 22.000000 224.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
78.000000 152.000000 592.000000
256.000000 152.000000 592.000000
256.000000 152.000000 576.000000
78.000000 152.000000 576.000000
78.000000 144.000000 592.000000
256.000000 144.000000 592.000000
256.000000 144.000000 576.000000
78.000000 144.000000 576.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 160.000000 576.000000
256.000000 160.000000 576.000000
256.000000 160.000000 560.000000
78.000000 160.000000 560.000000
78.000000 144.000000 576.000000
256.000000 144.000000 576.000000
256.000000 144.000000 560.000000
78.000000 144.000000 560.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 168.000000 560.000000
256.000000 168.000000 560.000000
256.000000 168.000000 544.000000
78.000000 168.000000 544.000000
78.000000 144.000000 560.000000
256.000000 144.000000 560.000000
256.000000 144.000000 544.000000
78.000000 144.000000 544.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 176.000000 544.000000
256.000000 176.000000 544.000000
256.000000 176.000000 528.000000
78.000000 176.000000 528.000000
78.000000 144.000000 544.000000
256.000000 144.000000 544.000000
256.000000 144.000000 528.000000
78.000000 144.000000 528.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 184.000000 528.000000
256.000000 184.000000 528.000000
256.000000 184.000000 512.000000
78.000000 184.000000 512.000000
78.000000 144.000000 528.000000
256.000000 144.000000 528.000000
256.000000 144.000000 512.000000
78.000000 144.000000 512.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
80.000000 462.000000 226.000000
256.000000 462.000000 226.000000
256.000000 462.000000 210.000000
80.000000 462.000000 210.000000
80.000000 192.000000 226.000000
256.000000 192.000000 226.000000
256.000000 192.000000 210.000000
80.000000 192.000000 210.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
-112.000000 320.000000 374.000000
-103.000000 320.000000 383.000000
-80.000000 320.000000 360.000000
-103.000000 256.000000 383.000000
-89.000000 320.000000 352.000000
-89.000000 256.000000 352.000000
-112.000000 256.000000 374.000000
-80.000000 256.000000 360.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 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-112.000000 320.000000 430.000000
-103.000000 320.000000 439.000000
-80.000000 320.000000 416.000000
-103.000000 256.000000 439.000000
-89.000000 320.000000 408.000000
-89.000000 256.000000 408.000000
-112.000000 256.000000 430.000000
-80.000000 256.000000 416.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 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-112.000000 320.000000 486.000000
-103.000000 320.000000 495.000000
-80.000000 320.000000 472.000000
-103.000000 256.000000 495.000000
-89.000000 320.000000 464.000000
-89.000000 256.000000 464.000000
-112.000000 256.000000 486.000000
-80.000000 256.000000 472.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 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
256.000000 152.000000 864.000000
272.000000 152.000000 864.000000
272.000000 152.000000 706.000000
256.000000 152.000000 706.000000
256.000000 136.000000 864.000000
272.000000 136.000000 864.000000
272.000000 136.000000 706.000000
256.000000 136.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
272.000000 160.000000 864.000000
288.000000 160.000000 864.000000
288.000000 160.000000 706.000000
272.000000 160.000000 706.000000
272.000000 144.000000 864.000000
288.000000 144.000000 864.000000
288.000000 144.000000 706.000000
272.000000 144.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
288.000000 168.000000 864.000000
304.000000 168.000000 864.000000
304.000000 168.000000 706.000000
288.000000 168.000000 706.000000
288.000000 152.000000 864.000000
304.000000 152.000000 864.000000
304.000000 152.000000 706.000000
288.000000 152.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
304.000000 176.000000 864.000000
320.000000 176.000000 864.000000
320.000000 176.000000 706.000000
304.000000 176.000000 706.000000
304.000000 160.000000 864.000000
320.000000 160.000000 864.000000
320.000000 160.000000 706.000000
304.000000 160.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
320.000000 184.000000 864.000000
336.000000 184.000000 864.000000
336.000000 184.000000 706.000000
320.000000 184.000000 706.000000
320.000000 168.000000 864.000000
336.000000 168.000000 864.000000
336.000000 168.000000 706.000000
320.000000 168.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
336.000000 192.000000 864.000000
352.000000 192.000000 864.000000
352.000000 192.000000 706.000000
336.000000 192.000000 706.000000
336.000000 176.000000 864.000000
352.000000 176.000000 864.000000
352.000000 176.000000 706.000000
336.000000 176.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
352.000000 200.000000 864.000000
368.000000 200.000000 864.000000
368.000000 200.000000 706.000000
352.000000 200.000000 706.000000
352.000000 184.000000 864.000000
368.000000 184.000000 864.000000
368.000000 184.000000 706.000000
352.000000 184.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
368.000000 208.000000 864.000000
384.000000 208.000000 864.000000
384.000000 208.000000 706.000000
368.000000 208.000000 706.000000
368.000000 192.000000 864.000000
384.000000 192.000000 864.000000
384.000000 192.000000 706.000000
368.000000 192.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
384.000000 216.000000 864.000000
400.000000 216.000000 864.000000
400.000000 216.000000 706.000000
384.000000 216.000000 706.000000
384.000000 200.000000 864.000000
400.000000 200.000000 864.000000
400.000000 200.000000 706.000000
384.000000 200.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
400.000000 224.000000 864.000000
416.000000 224.000000 864.000000
416.000000 224.000000 706.000000
400.000000 224.000000 706.000000
400.000000 208.000000 864.000000
416.000000 208.000000 864.000000
416.000000 208.000000 706.000000
400.000000 208.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
416.000000 232.000000 864.000000
432.000000 232.000000 864.000000
432.000000 232.000000 706.000000
416.000000 232.000000 706.000000
416.000000 216.000000 864.000000
432.000000 216.000000 864.000000
432.000000 216.000000 706.000000
416.000000 216.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
432.000000 240.000000 864.000000
448.000000 240.000000 864.000000
448.000000 240.000000 706.000000
432.000000 240.000000 706.000000
432.000000 224.000000 864.000000
448.000000 224.000000 864.000000
448.000000 224.000000 706.000000
432.000000 224.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
448.000000 248.000000 864.000000
464.000000 248.000000 864.000000
464.000000 248.000000 706.000000
448.000000 248.000000 706.000000
448.000000 232.000000 864.000000
464.000000 232.000000 864.000000
464.000000 232.000000 706.000000
448.000000 232.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
464.000000 256.000000 864.000000
480.000000 256.000000 864.000000
480.000000 256.000000 706.000000
464.000000 256.000000 706.000000
464.000000 240.000000 864.000000
480.000000 240.000000 864.000000
480.000000 240.000000 706.000000
464.000000 240.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 144.000000 736.000000
256.000000 144.000000 736.000000
256.000000 144.000000 512.000000
78.000000 144.000000 512.000000
78.000000 32.000000 736.000000
256.000000 32.000000 736.000000
256.000000 32.000000 512.000000
78.000000 32.000000 512.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-114.000000 256.000000 498.000000
-78.000000 256.000000 498.000000
-78.000000 256.000000 462.000000
-114.000000 256.000000 462.000000
-114.000000 200.000000 498.000000
-78.000000 200.000000 498.000000
-78.000000 200.000000 462.000000
-114.000000 200.000000 462.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
-114.000000 256.000000 442.000000
-78.000000 256.000000 442.000000
-78.000000 256.000000 406.000000
-114.000000 256.000000 406.000000
-114.000000 200.000000 442.000000
-78.000000 200.000000 442.000000
-78.000000 200.000000 406.000000
-114.000000 200.000000 406.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
-114.000000 256.000000 386.000000
-78.000000 256.000000 386.000000
-78.000000 256.000000 354.000000
-114.000000 256.000000 354.000000
-114.000000 200.000000 386.000000
-78.000000 200.000000 386.000000
-78.000000 200.000000 354.000000
-114.000000 200.000000 354.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
-110.000000 864.000000 496.000000
-78.000000 864.000000 496.000000
-78.000000 864.000000 224.000000
-110.000000 864.000000 224.000000
-110.000000 382.000000 496.000000
-78.000000 382.000000 496.000000
-78.000000 382.000000 224.000000
-110.000000 382.000000 224.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
-222.000000 382.000000 354.000000
-78.000000 382.000000 354.000000
-78.000000 382.000000 226.000000
-222.000000 382.000000 226.000000
-222.000000 144.000000 354.000000
-78.000000 144.000000 354.000000
-78.000000 144.000000 226.000000
-222.000000 144.000000 226.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
-222.000000 414.000000 496.000000
-110.000000 414.000000 496.000000
-110.000000 414.000000 354.000000
-222.000000 414.000000 354.000000
-222.000000 382.000000 496.000000
-110.000000 382.000000 496.000000
-110.000000 382.000000 354.000000
-222.000000 382.000000 354.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
-114.000000 382.000000 498.000000
-78.000000 382.000000 498.000000
-78.000000 382.000000 462.000000
-114.000000 382.000000 462.000000
-114.000000 320.000000 498.000000
-78.000000 320.000000 498.000000
-78.000000 320.000000 462.000000
-114.000000 320.000000 462.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
-114.000000 382.000000 442.000000
-78.000000 382.000000 442.000000
-78.000000 382.000000 406.000000
-114.000000 382.000000 406.000000
-114.000000 320.000000 442.000000
-78.000000 320.000000 442.000000
-78.000000 320.000000 406.000000
-114.000000 320.000000 406.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
-114.000000 382.000000 386.000000
-78.000000 382.000000 386.000000
-78.000000 382.000000 354.000000
-114.000000 382.000000 354.000000
-114.000000 320.000000 386.000000
-78.000000 320.000000 386.000000
-78.000000 320.000000 354.000000
-114.000000 320.000000 354.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
-78.000008 544.000000 386.000000
0.000000 544.000000 386.000000
0.000000 544.000000 224.000000
-78.000008 544.000000 224.000000
-78.000008 488.000000 386.000000
0.000000 488.000000 386.000000
0.000000 488.000000 224.000000
-78.000008 488.000000 224.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-232.000000 504.000000 856.000000
-224.000000 504.000000 856.000000
-224.000000 504.000000 728.000000
-232.000000 504.000000 728.000000
-232.000000 496.000000 856.000000
-224.000000 496.000000 856.000000
-224.000000 496.000000 728.000000
-232.000000 496.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-222.000000 503.000000 864.000000
-222.000000 503.000000 722.000000
-224.000000 503.000000 722.000000
-224.000000 503.000000 864.000000
-222.000000 497.000000 864.000000
-222.000000 497.000000 722.000000
-224.000000 497.000000 722.000000
-224.000000 497.000000 864.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-238.000000 382.000000 640.000000
-222.000000 382.000000 640.000000
-222.000000 382.000000 354.000000
-238.000000 382.000000 354.000000
-238.000000 200.000000 640.000000
-222.000000 200.000000 640.000000
-222.000000 200.000000 354.000000
-238.000000 200.000000 354.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
-320.000000 512.000000 736.000000
-222.000000 512.000000 736.000000
-222.000000 512.000000 722.000000
-320.000000 512.000000 722.000000
-320.000000 504.000000 736.000000
-222.000000 504.000000 736.000000
-222.000000 504.000000 722.000000
-320.000000 504.000000 722.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0xffebebeb common/materials/stone/stone
brush
vertices
-240.000000 512.000000 848.000000
-222.000000 512.000000 848.000000
-222.000000 512.000000 736.000000
-240.000000 512.000000 736.000000
-240.000000 504.000000 848.000000
-222.000000 504.000000 848.000000
-222.000000 504.000000 736.000000
-240.000000 504.000000 736.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0xffebebeb common/materials/stone/stone
brush
vertices
-320.000000 512.000000 864.000000
-222.000000 512.000000 864.000000
-222.000000 512.000000 848.000000
-320.000000 512.000000 848.000000
-320.000000 504.000000 864.000000
-222.000000 504.000000 864.000000
-222.000000 504.000000 848.000000
-320.000000 504.000000 848.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0xffebebeb common/materials/stone/stone
brush
vertices
-368.000000 512.000000 722.000000
-222.000000 512.000000 722.000000
-222.000000 512.000000 640.000000
-368.000000 512.000000 640.000000
-368.000000 144.000000 722.000000
-222.000000 144.000000 722.000000
-222.000000 144.000000 640.000000
-368.000000 144.000000 640.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
-366.000000 864.000000 688.000000
-222.000000 864.000000 688.000000
-222.000000 864.000000 640.000000
-366.000000 864.000000 640.000000
-366.000000 512.000000 688.000000
-222.000000 512.000000 688.000000
-222.000000 512.000000 640.000000
-366.000000 512.000000 640.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 686.000000 722.000000
-256.000000 512.000000 688.000000
-222.000000 686.000000 688.000000
-256.000000 512.000000 722.000000
-222.000000 512.000000 688.000000
-256.000000 686.000000 688.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-318.000000 864.000000 864.000000
-222.000000 864.000000 864.000000
-222.000000 864.000000 688.000000
-318.000000 864.000000 688.000000
-318.000000 686.000000 864.000000
-222.000000 686.000000 864.000000
-222.000000 686.000000 688.000000
-318.000000 686.000000 688.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
-368.000000 504.000000 864.000000
-224.000000 504.000000 864.000000
-224.000000 504.000000 856.000000
-368.000000 504.000000 856.000000
-368.000000 496.000000 864.000000
-224.000000 496.000000 864.000000
-224.000000 496.000000 856.000000
-368.000000 496.000000 856.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-334.000000 686.000000 866.000000
-318.000000 686.000000 866.000000
-318.000000 686.000000 722.000000
-334.000000 686.000000 722.000000
-334.000000 512.000000 866.000000
-318.000000 512.000000 866.000000
-318.000000 512.000000 722.000000
-334.000000 512.000000 722.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
-318.000000 686.000000 722.000000
-256.000000 686.000000 722.000000
-256.000000 686.000000 706.000000
-318.000000 686.000000 706.000000
-318.000000 512.000000 722.000000
-256.000000 512.000000 722.000000
-256.000000 512.000000 706.000000
-318.000000 512.000000 706.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
-366.000000 504.000000 861.000000
-313.000000 504.000000 861.000000
-313.000000 504.000000 721.000000
-366.000000 504.000000 721.000000
-366.000000 494.000000 861.000000
-313.000000 494.000000 861.000000
-313.000000 494.000000 721.000000
-366.000000 494.000000 721.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-224.000000 880.000000 864.000000
288.000000 880.000000 864.000000
288.000000 880.000000 224.000000
-224.000000 880.000000 224.000000
-224.000000 864.000000 864.000000
288.000000 864.000000 864.000000
288.000000 864.000000 224.000000
-224.000000 864.000000 224.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
UInt32 entityIdAttachedTo 74
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 232.000000 148.000000 824.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -296.000000 516.000000 744.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -296.000000 516.000000 776.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -296.000000 516.000000 808.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -296.000000 516.000000 840.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 232.000000 148.000000 648.000000
Vector3 angles 285.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 232.000000 196.000000 472.000000
Vector3 angles 300.000000 0.000000 0.000000
Bool8 teamA 0
|
7cec2d3d71f6aa6b40385c87af692f0d69c7e7a1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH6/EX6.1/c6_1.sce | 75a7edd2acdf22a31b26159bb84f24f9d4373130 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 822 | sce | c6_1.sce | // (6.1) Water, initially a saturated liquid at 100C, is contained in a piston–cylinder assembly. The water undergoes a process to the corresponding saturated vapor state, during which the piston moves freely in the cylinder. If the change of state is brought about by heating the water as it undergoes an internally reversible process at constant pressure and temperature, determine the work and heat transfer per unit of mass, each in kJ/kg.
//solution
T = 373.15 //temperature in kelvin
//from table A-2
p = 1.014*10^5 //pressure in pascal
vg = 1.673
vf = 1.0435e-3
sg = 7.3549
sf = 1.3069
w = p*(vg-vf)*10^(-3)
Q = T*(sg-sf)
printf('the work per unit mass in kj/kg is\n\t w = %f',w)
printf('\nthe heat transfer per unit mass in kj/kg is \n\t Q = %f',Q)
|
ae372d346eb4f2544f6328b10c4e1253a805c29e | 717ddeb7e700373742c617a95e25a2376565112c | /1766/CH2/EX2.11/EX2_11.sce | b3e0bb0ac1cfc00ddfd629d7f34b94cbd02cff12 | [] | 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 | 657 | sce | EX2_11.sce | clc;funcprot(0);//Example 2.11
//Initilisation of Variables
L=0.2;....//length of the steel rod in m
d=0.02;....//diameter of steel rod in m
Ta=30;....//air surrounding temparature of rod in degrees celcius
Tb=300;...//surface tempature of the rod in degrees celcius
K=45;....//thermal conductivity of rod in W/m*k
h=30;....//Convective heat transfer coefficient in W/m^2*K
//calculations
P=%pi*d;....//circumference of rod in m
A=(%pi*d^2)/4;....//area of rod in m^2
m=sqrt((h*P)/(K*A));....//
Q=(sqrt(h*P*K*A))*((Tb-Ta)*tanh(m*L));.....//Heat transfer through fluid from the rod in W
disp(Q,"Heat transfer through fluid from the rod in W:")
|
d7ff50748e30da65723a8e68bd3042f3ad1aa3a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH8/EX8.8/ex8_8.sce | 0db3e279814ebe4c416a16f2486294394e72ff99 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | sce | ex8_8.sce | clc;
m=20000; //mass in kg
A=60; //area in metre square
g=9.8; //gravitational constant in m/sec square
F=m*g; //calculating force in Newton
p=F/A; //calculating pressure in Pascal
disp(p,"Pressure in Pascal = "); //displaying result.
disp(p/(1.013*10^5),"Pressure in atm = "); //displaying result. |
5b5affa9165d7a04546c9efa46ffecb2551380ab | b829a470efb851fdd8700559c2092711adaa42e0 | /Data/OVI-CV-03-Facenet/CV-Groups/cv-group-114528472703/OVI-Test/cv-group-114528472703-run-04.tst | 8e2ba5a0077bb6c4e15b3ee55e710e4dee95fd80 | [] | no_license | achbogga/FaceRecognition | 6f9d50bd1f32f2eb7f23c7ae56f9e7b225d32325 | 165ebc7658228d2cceaee4619e129e248665c49a | refs/heads/master | 2021-07-04T21:47:57.252016 | 2017-08-01T18:53:12 | 2017-08-01T18:53:12 | 96,568,452 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | tst | cv-group-114528472703-run-04.tst | Huiping\Huiping_015.jpg
Huiping\Huiping_009.jpg
Don\Don_005.jpg
Don\Don_011.jpg
Shirley\Shirley_004.jpg
Shirley\Shirley_006.jpg
Ahmad\Ahmad_007.jpg
Ahmad\Ahmad_001.jpg
Sima\Sima_012.jpg
Sima\Sima_009.jpg
SungChun\SungChun_008.jpg
SungChun\SungChun_017.jpg
Kiran\Kiran_008.jpg
Kiran\Kiran_007.jpg
Allison\Allison_010.jpg
Allison\Allison_006.jpg
Amit\Amit_009.jpg
Amit\Amit_002.jpg
Nara\Nara_013.jpg
Nara\Nara_005.jpg
Weihong\Weihong_008.jpg
Weihong\Weihong_012.jpg
Dave\Dave_008.jpg
Dave\Dave_010.jpg
|
8d0518b0bd1c1736f5dc051118952ea7f90d9e64 | 717ddeb7e700373742c617a95e25a2376565112c | /3411/CH9/EX1.2.u2/Ex1_2_u2.sce | 2dbd6846b1a7f064f170b4e8ac3a4d37f090e232 | [] | 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 | 285 | sce | Ex1_2_u2.sce | //Example 1_2_u2
clc();
clear;
//To calculate the wavelength of the radiation emitted
h=6.63*10^-34
m=9.1*10^-31
l=10^-9
c=3*10^8
lamda=(8*m*c*l^2)/(27*h) //units in mts
lamda=lamda*10^9 //units in nm
printf("The wavelength of the radiation is lamda=%.1fnm",lamda)
|
c891ec0e7568c54ebed729e01d43b9453255c438 | 449d555969bfd7befe906877abab098c6e63a0e8 | /659/CH13/EX1.cs/Casestudy1.sci | 4a08e55b7616b0d163e7696e5845924b96a2e298 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,364 | sci | Casestudy1.sci | // Case Study: Chapter:13 ,Page No.:434
// 1.Insertion in a sorted list
funcprot(0);
//Create the list
function [List]=create(list1)
global List;
// Create the current node
list1.number=input("Input a number(Type -999 to end); ");
if list1.number==-999 then
list1.next=NULL;
list1.add=NULL;
else
list1.add=list1.add+1;
list1.next=NULL;
List(i)=list1;
if(i==1) then
else
List(i-1).next=List(i).add
end
i=i+1;
create(list1);// Create the next node
end
return;
endfunction
function []=print1(list1)
if list1(i)(1).next~=NULL then
printf("%d--->",list1(i)(1).number);//Print current item
i=i+1;
if list1(i)(1).next==NULL then
printf("%d",list1(i)(1).number);
end
print1(list1);//Move to next item
end
return;
endfunction
function [List]=insert(list1)
global List;
x=input("Input number to be inserted: ");//Read the number
//find the location so that number could be placed in sorted order
while (list1(i)(1).next~=NULL)
if(list1(i)(1).number>=x) then
break;
end
i=i+1;
end
key=i;
//Insetion at end
if(list1(i)(1).next==NULL & list1(i)(1).number < x) then
list1(i+1)(1).number=x;
list1(i+1)(1).add=i+1;
list1(i+1)(1).next=NULL;
list1(i)(1).next=list1(i+1)(1).add;
List=list1;
return;
end
i=1;
while (list1(i)(1).next~=NULL)
i=i+1;
end
j=i+1;
//Key node found and insert new node or item
while(list1(i)(1).add~=key)
list1(i+1)(1).number=list1(i)(1).number;
i=i-1;
end
list1(i+1)(1).number=list1(i)(1).number
list1(i)(1).number=x;
list1(j)(1).add=j;
list1(j)(1).next=NULL;
list1(j-1)(1).next=list1(j)(1).add;
List=list1;
endfunction
global List;
NULL=0;i=1;
//Create the structure i.e. node
node=struct('number',0,'add',0,'next',0);
head=node;
//Calling the functions
printf("Input a sorted(ascending) list");
List=create(head);
printf("\nOriginal List: ");
print1(List);
List=insert(List);
printf("\nNew List: ");
print1(List); |
58200f251e71a76d247eecbc6312ab5f37e3e3a8 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/bartlett/bartlett6.sce | db1ad25537d991faa10b95a19f87c0bd21f5a4ac | [] | 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 | 231 | sce | bartlett6.sce | //char i/p
w=bartlett('a');
disp(w);
//output
//!--error 144
//Undefined operation for the given operands.
//check or define function %c_3_s for overloading.
//at line 23 of function bartlett called by :
//w=bartlett('a');
|
8cbd77f83a82b9b4ea8677ff20dbcefb21531078 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH1/EX1.21/example1_21.sce | 97df7a5c8f6748ab6c8997e345054664a411a416 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 644 | sce | example1_21.sce | // Position of Fermi level at room temperature
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 1-22 in page 50
clear; clc; close;
// Data given
C_Ge=4.41*10^22; // Concentration of Ge atom /cm^3
N_D=4.41*10^15; // Number of free donor atoms
N_C=8.87*10^18; // Number of conduction electrons assuming full ionization
K_BT=0.026; // Measured in eV at room temperature
// Calculation
E_F=K_BT*log(N_D/N_C);
printf("Position of fermi level is %0.4f",E_F);
// Result
// Position of Fermi level from edge of conduction band is -0.1977
// Thus E_F is below E_C |
c228a49ee6ec013f80edf9afaf20962f8e5768c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2276/CH9/EX9.8/chapter9_ex8.sce | 016092a268f28cbeb6e5f30d28b998171641f14f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 718 | sce | chapter9_ex8.sce | clc
clear
//input
np=350;//number of turn in the primary
lm=0.8;//mean length of core in meters
am=0.006;//magnetic area in square meter
i0=0.8;//no load current in amperes
v=500;//supply voltage in volts
f=50;//frequency of supply in hertz
ur=2000;//relative permeability of the core
u0=1.257*(10^-6);//absolute permeability
//calculations
bm=v/(4.44*am*np*f);//maximum flux density in tesla
im=(bm*i0)/(u0*ur*np*(2^0.5));//magnetizing current in amperes
sinp=im/i0;//sine of no load phase angle
p=v*lm*cos(asin(im/i0));//power loss of core in watts
//output
mprintf('the maximum flux density in the core will be %3.3fT with a magnetizing current of %3.3fA and a core loss of %3.0fW',bm,im,p)
|
444700282fde6a8916d8c10f79ed3728425e0f79 | 449d555969bfd7befe906877abab098c6e63a0e8 | /668/CH9/EX9.6/eg9_6.sce | d0a64f80822ea4dcc8dde715227bbf4232805da0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 622 | sce | eg9_6.sce | Na = 10^16;
t = 500*10^-8;
kT = 26*10^-3; //in eV
q = 1.6*10^-19;
ni = 1.5*10^10;
eps0 = 8.85*10^-14; //in F/m
eps = 11.9*eps0;
eps1 = 3.9*eps0;
Cox = eps1/t;
disp(Cox,"The oxide capacitance (in F/cm2) = ")
phiF = kT*log(Na/ni);
disp(phiF,"φF(in V) = ")
Wmax = (4*eps*phiF/(q*Na))^0.5;
disp(Wmax,"The maximum depletion width (in cm) = ")
Cmin = eps1/(t+(eps1*Wmax/eps));
disp(Cmin,"The minimum capacitance (in F/cm2) = ")
Cfb = eps1/(t+(eps1/eps*(kT*eps/q/Na)^0.5));
disp(Cfb,"The capacitance (in F/cm2) under flat band conditions = ")
disp("Note that Cfb is ∼ 80% of Cox and Cmin is ∼ 33% of Cox.") |
5cce0f68b326fc72134be7548c6c476ef78dcbee | 449d555969bfd7befe906877abab098c6e63a0e8 | /3511/CH6/EX6.21/Ex6_21.sce | 8e6817029223b172099b8092c343539bcf0534ee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 585 | sce | Ex6_21.sce | clc;
T01=270+273; // Temperature at state 1 in kelvin
T03=T01;
p01=1; // Inlet pressure in bar
rp=6; // Pressure ratio
eff_c=0.85; // Compressor efficiency
T05=1150+273; // Temperature at inlet to expansion in kelvin
eff_T=0.9; // Turbine efficiency
n=1.24; // Polytropic index
R=10.05; // in kJ/kg K
T_02=T01*rp^((n-1)/n);
T02=T01+(T_02-T01)/eff_c;
Cv=R/(n-1);
Cp=R+Cv;
Wc=2*Cp*(T02-T01);
T_06=T05/rp^((n-1)/n);
T06=T05-eff_T*(T05-T_06);
WT=2*Cp*(T05-T06);
Q=Cp*(T05-T02)+Cp*(T05-T06);
WN=WT-Wc;
eff_th=WN/Q;
disp ("%",eff_th*100,"The Cycle efficiency = ");
|
250d6e31fc6b760221896e79fb6ffd357400db63 | b71010cb7f3a32a740cb4f979067f4bdc2ad0edd | /test2/all.sparc.tst | be6bae73ebf0a39758c009a5bf5f558108d47ed3 | [] | no_license | 8l/cmm | d1b76b044c2e1378e607e44d095350d1966ffb2f | e6365afe66f1a415608fdcbbf40f183d974ad3bb | refs/heads/master | 2021-01-22T13:12:18.199696 | 2014-12-20T01:58:29 | 2014-12-20T01:58:29 | 28,253,392 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | tst | all.sparc.tst | backend = Backend.sparc
Test.asmdir = Test.asmdir or "sparc"
Ld.rtend = "" --- don't need the run-time system
-- source files live in src directory
Test.source = "src"
Options.swap = 1
dofile('l32files.lua')
local i = 1
while Test.files[i] do
if type(Test.files[i]) == 'table' and Test.files[i].source == 'float-003.c--' then
Test.files[i].outdir = 'sparc'
end
i = i + 1
end
|
04673b0f609642cb82006dfd580d8772524ba596 | 417f69e36190edf7e19a030d2bb6aa4f15bb390c | /SMTTests/tests/err_defineSort4.tst | 7507a5655f7e8fcff30a66b21dc3b5b6352d3ef6 | [] | 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 | 85 | tst | err_defineSort4.tst | ; define-sort with not well-sorted expression
(set-logic QF_UF)
(define-sort A () B)
|
50630da3bb254eb201c7233e6e2dfb71f106c0e7 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electronic_Circuits_M._H._Tooley_995.zip/Electronic_Circuits_M._H._Tooley_995/CH4/EX4.7/Ex4_7.sce | ef04a469fef4ef6f5d558cbd45db3ffbda842b16 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sce | Ex4_7.sce | errcatch(-1,"stop");mode(2);//Ex:4.7
;
;
c=1*10^-6;
f1=100;
f2=10000;
X_c1=1/(2*%pi*f1*c);
X_c2=1/(2*%pi*f2*c);
printf("Reactance at 100Hz = %f mA",X_c1);
printf("\n Reactance at 10kHz = %f mA",X_c2);
exit();
|
eee63548b7cc7301b76783aa76c8b21e9bf09c37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH7/EX7.06/7_06.sce | 32fcc1009db492c589f866dcd331ff16ce3338fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 696 | sce | 7_06.sce | //Problem 7.06: A coil of 300 turns is wound uniformly on a ring of non-magnetic material. The ring has a mean circumference of 40 cm and a uniform cross sectional area of 4 cm2. If the current in the coil is 5 A, calculate (a) the magnetic field strength, (b) the flux density and (c) the total magnetic flux in the ring.
//initializing the variables:
N = 300; // no. of turns
l = 0.40; // in m
A = 4E-4; // in m2
I = 5; // in Amperes
u0 = 4*%pi*1E-7;
ur = 1
//calculation:
H = N*I/l
B = u0*ur*H
Phi = B*A
printf("\n\nResult\n\n")
printf("\n (a)Magnetic field strength H = %.0f A/m\",H)
printf("\n (b)Flux Density = %.2E T",B)
printf("\n (c)total magnetic flux = %.2E Wb",Phi) |
989d83d2329ce5847ffaded8101caa0535ce840a | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/macros/xdess/isoview.sci | 981e6ebd4452f8a8bbd910c7a398da9255c696bd | [
"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 | 151 | sci | isoview.sci | function []=isoview(xmin,xmax,ymin,ymax)
// setting default plotting to be isoview
// Copyright INRIA
plot2d(0,0,1,"030"," ",[xmin,ymin,xmax,ymax]);
|
6b42398d7d264ff8696c7aa679422cd48f64448d | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/jintgen/unr_var_02.tst | aeeb5d4812e9f415957d0cdd351d656a9c156daf | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 191 | tst | unr_var_02.tst | // @Harness: verifier
// @Purpose: "Test for variable resolution"
// @Result: "UnresolvedVariable @ 7:11"
architecture unr_var_02 {
subroutine foo(e: int): void {
e = a[0];
}
}
|
69cc746848d80757a3e06d5a543fc5a6a28ee778 | 449d555969bfd7befe906877abab098c6e63a0e8 | /615/CH2/EX2.23/2_23.sce | be9254ba8faa3074a4ab5837dd1424a6c8c75d37 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 367 | sce | 2_23.sce | //acids and bases//
//example 2.23//
OH=0.0025;//OH- concentration//
K=1*10^-14//water ionization constant//
H=K/OH;
H=H/10^-12;
printf("The concentration of H+ ions is %f*10^-12M",H);
printf("\nThe concentration of OH- ions is %fM",OH);
printf("\nAs concentration of H+ is lesser than the concentration of OH- the cleaning solution will be basic in nature"); |
b2f64bbea7c1d0881ec554c5fd302e68e3e33e25 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/robust/gamatest.sci | 1c851762074db9817a1df2258f6382f9d0eb89b4 | [
"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 | 2,053 | sci | gamatest.sci | function [ok,sk,stint]=gamatest(P12,P21,gama)
// Test if gama is ok. If ok, sk=controller. stint is true (%T) if
// internal stability is achieved.
// Copyright INRIA
write(%io(2),gama);
ok=%F;sk=[];stint=%F;
[A,B2,C1,D12]=P12(2:5);
[A,B1,C2,D21]=P21(2:5);
[nx,nx]=size(A);
[nx,nw]=size(B1);[ny,nx]=size(C2);
Q=C1'*C1;R=D12'*D12;S=C1'*D12;
V=B1*B1';L=D21*B1';N=D21*D21';
// Two Riccati
[K,X,errx]=leqr(P12,V/gama/gama);
[H,Y,erry]=leqe(P21,Q/gama/gama);
//tests
notok0=or([h==[],k==[]]);
if notok0 then write(%io(2),'fail');return;end
dom=p12(7);
// ------------------> Discrete time case:
if dom=='d' then
ok1=and(abs(spec(A+B2*K)) < ones(nx,1));
ok2=and(abs(spec(A+H*C2)) < ones(nx,1));
ok3=and(real(spec(gama*gama*eye-B1'*X*B1)) > zeros(nw,1));
ok4=and(real(spec(gama*gama*eye-C1*Y*C1')) > zeros(ny,1));
ok5=and(real(spec(inv(X)+B2*inv(R)*B2'-V/gama/gama)) > zeros(nx,1));
ok6=and(real(spec(inv(Y)+C2'*inv(N)*C2-Q/gama/gama)) > zeros(nx,1));
ok7=mini(real(spec(eye-Y*X/gama/gama))) > 100*%eps;
ok=and([ok3,ok4,ok7]);
if ~ok then write(%io(2),'fail');return;end
E=eye-Y*X/gama/gama;
W=(A-L'*inv(N)*C2)*inv((inv(X)+B2*inv(R)*B2'-V));
if rcond(E) > 1.d-4 then
Z=inv(E);
Ak=A+B2*K*Z+W*(S*K*Z+Q)/gama/gama+H*C2;Bk=H;Ck=-K*Z;
Sk=syslin('d',Ak,Bk,Ck);
stint=and(abs(spec(h_cl(P,size(C2*B2),sk))) < ones(2*nx,1))
//Sk1=lqg(P,size(c2*B2));
else
Ak=A*E+B2*K+W*(S*K+Q*E)/gama/gama+H*C2*E;Bk=H;Ck=-K;
Sk=des2ss(Ak,Bk,Ck,0*Ck*Bk,E);
stint=and(abs(spec(h_cl(P,size(C2*B2),sk))) < ones(2*nx,1))
end
end
// -----------------> Continuous time case
if dom=='c' then
ok1=and(real(spec(A+B2*K)) < zeros(nx,1));
ok2=and(real(spec(A+H*C2)) < zeros(nx,1));
ok3=mini(real(spec(eye-Y*X/gama/gama))) > 100*%eps;
ok=and([ok1,ok2,ok3]);
if ~ok then write(%io(2),'fail');return;end
Z=inv(eye-Y*X/gama/gama);;
Ak=A+B2*K*Z+Y*(S*K*Z+Q)/gama/gama+H*C2;Bk=H;Ck=-K*Z;
Sk=syslin('c',Ak,Bk,Ck);
stint=and(real(spec(h_cl(P,size(C2*B2),sk))) < zeros(2*nx,1))
//Sk1=lqg(P,size(c2*B2));
end
write(%io(2),'ok')
|
2ffbb221c4dd2a4be3550e4ed3eaf22d0247e8d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2513/CH6/EX6.1/6_1.sce | 59616fb86fd3ac10d0d35c3754937954e15c0b3b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 322 | sce | 6_1.sce | clc
//initialisation of variables
H=1360//ft
t=60//f
a=(10^3)*5.5*(10^-3)//f
q=(1.36*10^3)*5.5*(10^-3)//f
s=(4-1.36)*(10^3)*(3.2*10^-3)//f
//CALCULATIONS
T=t-q-s//F
T1=T+3*a//F
//RESULTS
printf('the temperature at the mountain top=% f F',T)
printf('the temperature on the plain beyond the mountain=% f F',T1)
|
b38309be0fb8c243bb54cff0fd11cf12522c648e | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH12/EX12.6/c12_6.sce | 675a8e27dca1ff71852a7e6ef6acff6b9ae6a343 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,820 | sce | c12_6.sce | //(12.6) At steady state, 100 m3/min of dry air at 32C and 1 bar is mixed adiabatically with a stream of oxygen (O2) at 127C and 1 bar to form a mixed stream at 47C and 1 bar. Kinetic and potential energy effects can be ignored. Determine (a) the mass flow rates of the dry air and oxygen, in kg/min, (b) the mole fractions of the dry air and oxygen in the exiting mixture, and (c) the time rate of entropy production, in kJ/K . min
//solution
//variable initialization
T1 = 32 //temperature of dry air in degree celcius
p1 = 1 //pressure of dry air in bar
AV1 = 100 //volume rate of dry air in m^3/min
T2 = 127 //temperature of oxygen stream in degree celcius
p2 = 1 //pressure of oxygen stream in bar
T3 = 47 //temperature of mixed stream in degree celcius
p3 = 1 //pressure of mixed stream in bar
//part(a)
Rbar = 8314 //universal gas constant
Ma = 28.97 //molar mass of air
Mo = 32 //molar mass of oxygen
va1 = (Rbar/Ma)*(T1+273)/(p1*10^5) //specific volume of air in m^3/kg
ma1dot = AV1/va1 //mass flow rate of dry air in kg/min
//from table A-22 and A-23
haT3 = 320.29 //in kj/kg
haT1 = 305.22 //in kj/kg
hnotT2 = 11711 //in kj/kmol
hnotT1 = 9325 //in kj/kmol
modot = ma1dot*(haT3-haT1)/[(1/Mo)*(hnotT2-hnotT1)] //in kg/min
printf('the mass flow rate of dry air in kg/min is: %f',ma1dot)
printf('\nthe mass flow rate of oxygen in kg/min is: %f',modot)
//part(b)
nadot = ma1dot/Ma //molar flow rate of air in kmol/min
nodot = modot/Mo //molar flow rate of oxygen in kmol/min
ya = nadot/(nadot+nodot) //mole fraction of air
yo = nodot/(nadot+nodot) //mole fraction of oxygen
printf('\n\nthe mole fraction of dry air in the exiting mixture is: %f',ya)
printf('\nthe mole fraction of dry oxygen in the exiting mixture is: %f',yo)
//part(c)
//with the help of tables A-22 and A-23
sanotT3 = 1.7669 //in kj/kg.K
sanotT1 = 1.71865 //in kj/kg.K
sbarT3 = 207.112 //in kj/kmol.K
sbarT2 = 213.765 //in kj/kmol.K
sigmadot = ma1dot*[sanotT3-sanotT1-(8.314/Ma)*log(ya)] + (modot/Mo)*[sbarT3-sbarT2-8.314*log(yo)]
printf('\n\nthe time rate of entropy production, in kJ/K . min is: %f',sigmadot)
|
591739e676374e433b718b268fdc3791a7b78074 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH5/EX5.13/ex5_13.sce | 580fa7d3628db67d53d24b1a882c87f7239ffc85 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 567 | sce | ex5_13.sce | // Exa 5.13
clc;
clear;
close;
format('v',6)
// Given data
R_S = 600;// in ohm
r_i = 400;// in ohm
Vs = 1;// in mV
Vs = Vs * 10^-3;// in V
//Input voltage
Vi = Vs*(r_i/(R_S+r_i));// in V
// Input current
Ii =Vs/(R_S+r_i);// in A
Vo = 100;// in mV
Vo = Vo * 10^-3;// in V
R_L = 5;// in k ohm
R_L = R_L * 10^3;// in ohm
// Output current
Io = Vo/R_L;// in A
// voltage gain
A_V =Vo/Vi ;
disp(A_V,"The voltage gain is");
// current gain
A_I = Io/Ii;
disp(A_I,"The current gain is");
// Power gain
P =A_V*A_I;
disp(P,"The power gain is");
|
c9b20d2f1dd17f0d17737ae81b0b10b1444ccaff | 449d555969bfd7befe906877abab098c6e63a0e8 | /2279/CH5/EX5.22/eg_5_22.sce | af89d94f629081a1add0c79bacd5f570e01d45a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 497 | sce | eg_5_22.sce | // Inverse Continuous Time Fourier Transform
// X(jW)= 2*pi, at W=-Wo
clear;
clc;
close;
// CTFT
A =1;
Dw = 0.005;
W1 = 4;
Wo=2//Assume Wo=2
w = -W1/2:Dw:W1/2;
for i = 1:length(w)
if w(i)==-Wo then
XW(i) = 2*%pi;
else
XW(i)=0;
end
end
XW = XW';
//Inverse Continuous-time Fourier Transform
t = -3*%pi:%pi/length(w):3*%pi;
xt =(1/(2*%pi))*XW *exp(sqrt(-1)*w'*t)*Dw;
xt = real(1+xt);
plot(t,xt);
xlabel(' t Sec');
title('Time domain signal x(t)')
|
d4fda188c61bba5d8febbe37efd913c87ec3f226 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH3/EX3.18/Ex3_18.sce | c3cd4dcfb8b67941027b47c6861ed36309f90d6c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 484 | sce | Ex3_18.sce | //Example 3_18
clc;
clear;
close;
format('v',6);
//given data :
//v=100*sin(314*t)
//i=10*sin(314*t-%pi/6)
Vm=100;//V
omega=314;//rad/s
V=Vm/sqrt(2);//V
f=omega/2/%pi;//Hz
Im=10;//A
I=Im/sqrt(2);//A
fi=%pi/6;//radian
pf=cos(fi);//power factor
disp(pf,"Power Factor(Lagging)");
P=V*I*cos(fi);//W
disp(P,"Powe Consumed(W)");
Z=V/(I*expm(%i*-fi));//ohm
R=real(Z);//ohm
disp(R,"Value of R(ohm)");
XL=imag(Z);//ohm
L=XL/2/%pi/f*1000;//mH
disp(L,"Value of L(mH)");
|
d2009812b6aeca0d29a5bf45c05f156edd94a851 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3819/CH2/EX2.7/Ex2_7.sce | e61848c8c28407ec835a0bc7c2dc68128a2ab820 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 617 | sce | Ex2_7.sce | // A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 2 - Pressure and its measurements
// Problem 2.7
//Given Data Set in the Problem
d=3
a=%pi/4*d^2
D=10
A=%pi/4*D^2
f=80
dens=1000
g=9.81
//Calculations
//When pistons are at same level
F=f/a*A
mprintf("The force on the large piston in level with the small piston is %f N\n",F)
//When smaller piston is 40 cm above tha large piston
p=(dens*g*40/100)/10^4 //pressure due to 40 cm of the liquid
F_=(f/a+p)*A
mprintf("The force on the large piston 40 cm below small piston is %f N\n",F_)
|
4f77acb7571ab169dfff6aa7aef471c829bed3a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3269/CH2/EX2.1/Ex2_1.sce | fb85106a5b302a5bec30701f8078748773f023c9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 414 | sce | Ex2_1.sce | // Example 2.1
clear all;
clc;
// Given data
atom_h = 6.6*10^24; // Number of atoms in Hydrogen
// Using the data given in Table II.2, Appendix II for isotropic abundance of deuterium
isoab_H2 = 0.015; // Isotropic abundance of deuterium
// Calculation
totatom_d=(isoab_H2*atom_h)/100;
// Result
printf('\n Number of deuterium atoms = %2.1E \n',totatom_d);
|
860a4e78502ce5f756c7bf3f0e3f02f9ed10951f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2762/CH3/EX3.2.2/3_2_2.sce | 8f18271b89384d1937cbc7d7e99a35dbc8f7ec33 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 519 | sce | 3_2_2.sce | //Transport Processes and Seperation Process Principles
//Chapter 3
//Example 3.2-2
//Principles of Momentum Transfer and Applications
//given data
delP=9.32e+4;//pressure diff in N/m2
D1=0.1541;//external diameter in m
D0=0.0566;//internal diameter in m
Dr=D0/D1;
Co=0.61;
rho=878; //oil density in kg/m3
v0=(Co/(sqrt(1-(Dr^4))))*sqrt((2*delP)/rho);//velocity calculation in m/s
A=(%pi/4)*D0*D0;//cross section area
V=A*v0;//volumetric flow rate
mprintf("the volumetric flow rate is %f m3/s",V);
//end
|
b617eff3807e4bb0d9b8f1a912b39f5b728dfa25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH2/EX2.11/Ex2_11.sce | 1c82e1bbcedd35ee04fbc647229b40a78b94e5d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex2_11.sce | clc;clear;
//Example 2.11
//given values
Win=20;
mair=0.25;
//calculation
v=sqrt(Win/2/mair)//Win = 1/2*m*v^2
if(v >= 8)
disp('True');
else
disp('False')
|
486d2775ece960b5c08c8f10c47ce407f3c8a9a4 | 297b29fb450286d0f7fa619e58c9f4a86949544a | /BarkerCode.sci | c2b0aa23d7ed9bd8bffc2cf7e43ad6a5eebe26dc | [] | no_license | harshal93shah/scilabcom | 46dc948c1e0d0b37b0a69dfa203347298cc01e40 | 09c5506089a4283968d963ed3812de9823c5a008 | refs/heads/master | 2020-04-06T07:03:23.954966 | 2016-10-04T11:49:41 | 2016-10-04T11:49:41 | 54,882,787 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,433 | sci | BarkerCode.sci | function [y] = BarkerCode(len,opsamples)
y=[];
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
//BarkerCode Generate Barker code
//Y = BarkerCode(len,opsamples)) outputs a frame of the Barker code in column vector Y
//opsamples specify output frame length properties
//length specifies length of barker code
//
//Author - Harshal Shah
//check conditions on length
if (~isreal(len) | length(len)~=1 | isnan(len)|~or(len ==[1 2 3 4 5 7 11 13])) then
error("BarkerCode:improper length");
end
//check condition on opsamples
if (~isreal(opsamples) | length(opsamples)~=1 | isnan(opsamples)|ceil(opsamples)~=opsamples|opsamples<=0) then
error("BarkerCode:improper output samples");
end
//create barker code os specified length
select len
case 1 then
baco = [1];
case 2 then
baco =[1 -1];
case 3 then
baco = [1 1 -1];
case 4 then
baco =[1 1 -1 1];
case 5 then
baco =[1 1 1 -1 1];
case 7 then
baco =[1 1 1 -1 -1 1 -1];
case 11 then
baco =[1 1 1 -1 -1 -1 1 -1 -1 1 -1];
case 13 then
baco =[1 1 1 1 1 -1 -1 1 1 -1 1 -1 1];
end
//create outputsequence
for i =0:opsamples-1
y(i+1)=baco(modulo(i,len)+1);
end
endfunction
|
53d3bd01ae1c321ad9d0e54122acc5c7e109878c | 717ddeb7e700373742c617a95e25a2376565112c | /1340/CH8/EX8.7/8_7.sce | 2050581b2733b239b317a5d25b1e30bda9500474 | [] | 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 | 672 | sce | 8_7.sce | clear; clc;
xdel(winsid()); //close all windows
s = %s;
G = syslin('c',(s^2-4*s+20)/((s+2)*(s+4)));
zeroes = roots(numer(G));
disp(zeroes,"zeroes are:");
poles = roots(denom(G));
disp(poles,"poles are:");
evans(G,10);
v = [-6 6 -6 6];
mtlb_axis(v)
sgrid([0.45,0],[0],32);//displays the zeta = 0,0.45 line
curve_handles=datatipGetEntities()//gets the entities required
curve_handles.visible='off';
curve_handles.visible='on';
zeta = 0.45;//damping ratio = 0.45
anglezeta = (%pi-acos(0.45))*180/%pi;
disp(anglezeta,"angle made by the line with zeta = 0.45 to the root locus:");
printf("from root locus plotwe have for stable system gain K =(0,1.5)");
|
472270fc5acfeaa96df46699e7e6641fdeaff4c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3841/CH5/EX5.8/Ex5_8.sce | 83892357f18f44de3287aa203fc5e116da4b313e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 110 | sce | Ex5_8.sce | clear
//given
o=0.14
h=0.86
O=120*o
H=120*h
O2=134.4+275.5
printf("\n \n Total O2 uniting with oil %.2f ",O2)
|
6bfd5ae981bbb9a4bd6d5aac3f8155cc358bb9d3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /51/CH9/EX9.15/9_15.sce | bbe9dca8873d04aa23b5bbd9f6db52cb5b69444a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 300 | sce | 9_15.sce | clc;
clear;
U=15;//ft/sec
b=96;//ft
c=7.5;//ft
W=210;//lb
CD=0.046;
eff=0.8;//power train efficiency
d=2.38*(10^(-3));//slugs/(ft^3)
//W=L
CL=2*W/(d*(U^2)*b*c);
D=0.5*d*(U^2)*b*c*CD;
P=D*U/(eff*550);//hp
disp(CL,"The lift coefficient=")
disp("hp",P,"The power required by the pilot=")
|
0732bb2e057d0246228e45821d1fd00946f60291 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1538/CH3/EX3.8/Ex3_8.sce | 0bdc2504bb7fdf97740946b2933194812ed05807 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 792 | sce | Ex3_8.sce | //example-3.8
//page no-85
//given
//the ratio of intercepts of orthorombic unit cell is a:b:c=0.429:1:0.379
//to find:- the miller indices of faces of the following intecepts
//(I) 0.214:1:0.188
//(II) 0.858:1:0.754
//(III) 0.429:1:0.126
//solution
//let
x=0.429
y=1
z=0.379
x1=0.214
y1=1
z1=0.188
p1=x1/x
q1=y1/y
r1=z1/z
//intercepts will be 1/2:1:1/2
//reciprocal is 2:1:2
//so miller indices is (212)
x2=0.858
y2=1
z2=0.754
p2=x2/x
q2=y2/y
r2=z2/z
//intercepts willbe 2:1:2
//reciprocal is 1/2:1:1/2
//so miller inces is (121)
x3=0.429
y3=1
z3=0.126
p3=x3/x
q3=y3/y
r3=z3/z
//th e intercept will be 1:1:1/3
//reciprocal is 1:1:3
//so miller indices is (113)
printf ("the miller indices for part (I),(II) and (III) are (212),(121)and (113) resp")
|
64f24dd2afffe3d4a2aaca20de27e762686b8e82 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH15/EX15.4/4.sce | 5fa1c2b768994b987cc08c68b1837e5c4814a545 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | 4.sce | clc
//Example 15.4
//Calculate the time taken by water in a long pipe to reach its steady state velocity
//let (new)*t/r0^2 be denoted by y
y=0.05//dimentionless
r0=0.077//m
mew=1//Pa.s
rho=1000//Kg/m^3
new=mew/rho//m^2/s
t=y*r0^2/new//s
printf("the time taken by water in a long pipe to reach its steady state velocity is % f seconds",t); |
7eb954cb6dfd236b65e1343d57b298e681c388ee | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH12/EX12.25/Ex12_25.sce | 3e903c684ea500b7c667d8907fdb9ad3d89c125b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 254 | sce | Ex12_25.sce | //chapter12
//example12.25
//page261
printf("since base voltage is zero, it means that there is no path \nfor current in the base circuit. So the transistor will be off i.e. I_C=0,I_E=0. \nSo V_C=10V and V_E=0.\nSo obvious fault is R1 is open.\n")
|
08fb6727bea4e414c1c5599cdfaaa81bababaa3a | 9545443abf3ba785ea80d459f01efa5be8df2087 | /cfs/apps/fm/test_and_ground/asist/image/FMRENAMESTRESS.TST | c366eda2162fdd575d623802b700474919e982e3 | [
"Apache-2.0",
"NASA-1.3"
] | permissive | anthonyneedles/WISE-HEADACHE-JASH | 9ab8f1bcd87a45ddc11fc115e512a5b4465e81e3 | 28199218a8855db88adc43c3daa4a5a832571012 | refs/heads/master | 2023-07-15T04:26:19.817108 | 2020-08-18T01:34:00 | 2020-08-18T01:34:00 | 272,212,651 | 2 | 1 | Apache-2.0 | 2021-09-02T03:58:33 | 2020-06-14T13:57:03 | C | UTF-8 | Scilab | false | false | 1,257 | tst | FMRENAMESTRESS.TST | This is the test file for the fm_filerename_stress test
Garbage to follow...
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
|
a000222b8f7e754192d659294eeeae5bd372c526 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH12/EX12.4/Ex12_4.sce | 8494de9203ba8a1a5f643289710f70034ee2ce41 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 238 | sce | Ex12_4.sce | //Example 12_4
clc();
clear;
//To describe the Temperature changes of the gas
printf("This type of process is termed as throttling process and described by the equation Delta U=- Delta W\n")
printf("Where Delta W is the work done")
|
1f636ae09efb7a376f43d32f964e931e813d464d | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set12/s_Higher_Engineering_Mathematics_B._S._Grewal_149.zip/Higher_Engineering_Mathematics_B._S._Grewal_149/CH2/EX2.25/ex25.sce | e6408c1631277da501b7a0d34b6f06845d6b6a0c | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 100 | sce | ex25.sce | errcatch(-1,"stop");mode(2);
A=[1 1 3;1 3 -3;-2 -4 -4]
disp("inverse of A is ")
inv(A)
exit();
|
f5f3610fd7fb6c30695d75967031c7028958d15e | 449d555969bfd7befe906877abab098c6e63a0e8 | /635/CH16/EX16.2/Ch16Ex2.sci | cd4cd4f305daecb255ce7d7fc599624e4a676523 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 805 | sci | Ch16Ex2.sci | // Scilab Code Ex16.2 Diamagnetic susceptibility of copper: Page-512 (2010)
e = 1.6e-019; // Charge on an electron, C
m = 9.1e-031; // Mass of an electron, kg
mu_0 = 4*%pi*1e-07; // Magnetic permeability of free space, henry/metre
Z = 1; // Number of electrons contributing to the magnetic moment
r = 1e-010; // Radius of copper atom, m
a = 3.608e-010; // Lattice parameter of copper, m
// For FCC lattice of Cu, there are 4 atoms per unit cell
n = 4; // Number of atoms per unit cell
N = n/a^3; // Number of electrons per unit volume, per metre cube
chi_dia = -mu_0*Z*e^2*N*r^2/(6*m); // Diamagnetic susceptibility of copper
printf("\nThe diamagnetic susceptibility of copper = %3.1e", chi_dia);
// Result
// The diamagnetic susceptibility of copper = -5.0e-006 |
d48f6f0a192669a06214c8d9c5b2b07415ae3cd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH10/EX10.30/Chapter10_Example30.sce | f86ef217585a545926958ba55eaa13e0be052f44 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,151 | sce | Chapter10_Example30.sce | //Chapter-10, Example 10.30, Page 462
//=============================================================================
clc
clear
//INPUT DATA
A=30;//Total surface area in m^2
V=10;//Volume in m^3
Ts=1000;//Temperature of the furnace in degree C
p=2;//Total pressure in atm
ph2o=0.1;//Partial pressure of water vapour in atm
pco2=0.3;//Partial pressure of CO2
//CALCULATIONS
lms=(3.6*V)/A;//Mean beam length in m
pco2lms=(pco2*lms);//pco2lms in m.atm
eco2=0.16;//From Fig.10.23 on page no. 458
cco2=1.11;//From Fig.10.23 on page no. 458
cco2eco2=(cco2*eco2);//cco2eco2 value
ph2olms=(ph2o*lms);//ph2olms in m.atm
eh2o=0.12;//From Fig.10.24 on page no. 459
P=(p+ph2o)/2;//P value in atm
ch2o=1.43;//From Fig.10.26 on page no. 460
ch2oeh2o=(ch2o*eh2o);//ch2oeh2o value
P1=(ph2o/(ph2o+pco2));//Ratio of pressures
X=(pco2lms+ph2olms);//X value in m.atm
e=0.035;//Error value from Fig. 10.27 on page no.461
et=(cco2eco2+ch2oeh2o-e);//Total emissivity of the gaseous mixture
//OUTPUT
mprintf('Emissivity of the gaseous mixture is %3.4f',et)
//=================================END OF PROGRAM==============================
|
3341135742c149ec91cf95efc4a4e14112afa194 | 30ad7dd5146dfff03b7639186330ec527bfc0524 | /Control Systems Programs/Bode Plot.sce | 772e9b5bf0e2a89261dd03949df1bf3767a13314 | [] | no_license | boberae/Other-Small-Projects | fcc79d8fd69c6d39de68a8b83360b32b28216d73 | 63d668d2f2c022f653cf44f55992dd05420437e3 | refs/heads/master | 2020-06-11T10:07:44.474211 | 2016-12-06T06:42:33 | 2016-12-06T06:42:33 | 75,697,420 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 851 | sce | Bode Plot.sce | steps_per_dec = 6;
decades = 6;
start_freq = 0.1;
// the transfer function
function foo=G(w)
D = %i*w;
foo = ((D+1000)/(D^2+5*D+100));
endfunction
// this section writes the values to a datafile that may be graphed in a spreadsheet
fd = mopen("data.txt", "w");
for step = 0:(steps_per_dec*decades),
f = start_freq*10^(step/steps_per_dec); //calculate the next frequency
w = f*2*%pi; //convert the frequency to radians
[gain,phase] = polar(G(w)); //find the gain and convert it to mag and angle
gaindb = 20*log10(gain); //convert magnitude to dB
phasedeg = 180*phase/%pi; //convert to degrees
//mfprint(fd, "%f, %f, %f \n", f, gaindb, phasedeg);
end
mclose(fd);
//to graph it directly the following is used
D = poly(0, 'D');
h = syslin('c', ((D+1000)/(D^2+5*D+100)));
bode(h, 0.1, 1000, 'Sample Transfer Function');
|
097bb2fdade79b38bf95f12cb4e3f84fce6e85e4 | b34461c9ddff1ba130b67023d6e568ada42830dc | /workspace/mission_B3.sce | ea66d72e59c8019aead908d3e50c43dac273201f | [] | no_license | AdrienKegler/Projet-Exolife | f72287fdc41a07b88f03b8346dafab93b4539b07 | 249f0861dc4ba3f2a7639ea60b7d12b45e717933 | refs/heads/master | 2020-05-25T14:05:45.213740 | 2017-03-17T09:16:20 | 2017-03-17T09:16:20 | 84,937,694 | 0 | 0 | null | 2017-03-15T10:15:55 | 2017-03-14T10:45:25 | Scilab | UTF-8 | Scilab | false | false | 619 | sce | mission_B3.sce | // Etape 1
// Convertion de l'image en matrice
path_name = 'D:\Users\ADRIEN KEGLER\Documents\Visual Studio 2015\Projects\Exolife\Projet-Exolife\images\HD215497.pbm';
img_in = readpbm (path_name);
// Etape 2
// Affichage de l'image de base
display_gray(img_in);
// Etape 3
// Convolution avec filtre de sobel
image_out = seuilSegment(img_in,64,128,192);
// Etape 4
// Affichage de l'image finale
figure;
display_gray (image_out);
//Etape 5
// Enregistrer la matrice sous forme d'image
writepbm (image_out,"D:\Users\ADRIEN KEGLER\Documents\Visual Studio 2015\Projects\Exolife\Projet-Exolife\images\mission_B3.pbm");
|
5a4c8594fa3e3451e095b3c206af62927fd9dfbc | 449d555969bfd7befe906877abab098c6e63a0e8 | /593/CH15/EX15.8/ex15_8.sce | 684000adc9b975dc3332747d726f2c6ab4fc80a9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 826 | sce | ex15_8.sce | clear;
//clc();
// Example 15.8
// Page: 405
printf("Example-15.8 Page no.-405\n\n");
//***Data***//
// The species, we are given are CaCO3, CaO and CO2
// First we write the reaction for the formation of the above species from their elemental part.
// So, we have
// Ca + C + 1.5O2 = CaCO3
// Ca + 0.5O2 = CaO
// C + O2 = CO2
// We must eliminate Ca, C and O2 from these equations because they do not appear in the species list.
// Now, solving the 3rd equation for C and substituting in the first equation, we have
// Ca + CO2 - O2 + 1.5O2 = CaCO3
// Now, this equation to the equation second, we have
// CO2 = -CaO + CaCO3
// or
// CaCO3 = CO2 + CaO
printf(" There is only one balanced chemical reaction between the species on the species list, viz.\n");
printf(" CaCO3 = CO2 + CaO "); |
2360e509915f70e90177ef1d490d9503f567f149 | db6c77c95fe7a97b791d5689c2ac3b39e791ea17 | /tests/cases/europepmc-json_003.tst | 3953e919c4dae44d1443427c325f9d9e943857ef | [] | no_license | sauliusg/bibliophile | 9623cd5e8b163d36a253eaa36b558ed87666450a | 1e6f63b1e08209af5c6c87ee05098d8fa53a4345 | refs/heads/master | 2021-01-19T05:49:43.075428 | 2018-11-20T19:30:36 | 2018-11-20T19:30:36 | 100,584,633 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 412 | tst | europepmc-json_003.tst | Test the '--count' option of europepmc-json script with only one result, queried
by its ID, fetched from the command line as an argument (using '--search'
option), using the default page size.
The post-processing just extracts the hitcount from Europe-pmc response (json
formated), and outputs it. We assume that the IDs will not change in the future,
so we always expect to get the same result for this query.
|
5344e547a0a46fcb38399dd9a3de387fc758e670 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH6/EX6.13/6_13.sce | 55218892130e5b49d55b69d318cfb15bc0b6c786 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 704 | sce | 6_13.sce | //Chapter 6, Problem 13, Figure 6.8
clc;
C1=3*10^-6; //Capacitance on each capacitor
C2=6*10^-6;
C3=12*10^-6;
V=350; //Total voltage across capacitors
C=(1/C1)+(1/C2)+(1/C3); //Calculating equivalent capacitance
C=1/C;
Q=C*V;
V1=Q/C1; //Calculating voltage across each capacitor
V2=Q/C2;
V3=Q/C3;
disp("(a)");
printf("Equivalent circuit capacitance = %f uF\n\n\n",C*10^6);
disp("(b)");
printf("Charge on each capacitor = %f uF\n\n",Q*10^6);
disp("(c)");
printf("Voltage across 3uF capacitor = %f V\n",V1);
printf("Voltage across 6uF capacitor = %f V\n",V2);
printf("Voltage across 12uF capacitor = %f V\n",V3);
|
51523d75405d5f47d1af2c8a83556cf49ad3b986 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3802/CH10/EX10.12/Ex10_12.sce | fd13ff34ca02779517934ee2adf85e0a03d2ce9f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | Ex10_12.sce | //Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex10_12.sce
clc;
clear;
p=4;
f=50;
R2=0.25;
N1=1425;
N2=1275;
Ns=(120*f)/p;
s1=(Ns-N1)/Ns;
s2=(Ns-N2)/Ns;
R=(R2*(s2/s1))-R2;
printf("\n External resistance per phase=%1.1f ohm per phase",R)
|
316fe0c21c78a7dddc82d5cc0833432ec1f18446 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH5/EX5.11/5_11.sci | fd4f725e75766482a4ac6b08ca0cdb04e590aca9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 90 | sci | 5_11.sci | // Calculating the possion's ratio
clc;
Gf=4.2;
v=(Gf-1)/2;
disp(v,'Possion s ratio=') |
f970da4ca9cc4ce1e257d6b2b40af48eba144339 | a159f59d19e2b03b234e9c2977ba4a932180e648 | /Software/GreenScilabV0.9/bin/gl_draw_organ.sci | 1c3a831b664724ca25cbd8cb1e3378c81196205c | [] | no_license | OpenAgricultureFoundation/openag_sim | e052bbcc31b1d7f9b84add066327b479785f8723 | 425e678b55e24b5848d17181d25770175b8c2c3f | refs/heads/master | 2021-07-01T06:25:08.753260 | 2017-09-20T21:44:18 | 2017-09-20T21:44:18 | 80,540,145 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,255 | sci | gl_draw_organ.sci |
organfilename = xgetfile('*.smb', GL_SYS_DIR+'smb',title='open smb file');
[path,organfname,extension]=fileparts(organfilename);
disp(organfname)
Flag_windows=1;
//open the smb file
[fid, err] = mopen(organfilename, 'rb',0);
if err
//disp("File "+filename+" does not exist!");
return
else
[P,nbfaces,Faces] = Draw_read_organ(fid,Flag_windows);
L=20;
O=[0,0,0];
//test different rotation matrice
w3=3.14159/2;
Vz=[cos(w3) -sin(w3) 0;sin(w3) cos(w3) 0; 0 0 1];
ap=3.14159/2;
Vy=[cos(ap) 0 sin(ap);0 1 0;-sin(ap) 0 cos(ap)]; //y-axis rotation matrix for axis angle
Vx=[1 0 0; 0 cos(ap) sin(ap); 0 -sin(ap) cos(ap)];
V=Vx;
V=eye(3,3);
//V=[0.866 -0.5 0; 0 0 -1; 0.5 -0.866 0]
C=[0;0.6;0];
[X,Y,Z,CP]=Draw_SMB(P,nbfaces,Faces,L,O,V,C);
g=gcf();
//g=scf();
//g.figure_name=smb;
g.visible='off';
drawlater();
for i=1:length(X)
if size(X(i),2)>1 then //a single facet has problem of 'monotonous'
plot3d(X(i),Y(i),list(Z(i),CP(i)))
h=get("hdl");
h.hiddencolor=-CP(i);
end
end
g.visible='on';
a=get("current_axes");
a.rotation_angles = [90,-90] ;
drawnow();
end
//close the file
mclose(fid);
|
95616bdbe21225ab4231bb537da7f1becb1b604e | 449d555969bfd7befe906877abab098c6e63a0e8 | /545/CH3/EX3.4/ch_3_eg_4.sce | 90ed748ec6ed6a0fa3c58575afd04e0f4d066d24 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,002 | sce | ch_3_eg_4.sce | a12=437.98*4.186, a21=1238*4.186, v1=76.92, v2=18.07
//calc of BPP
clc
disp("the soln of eg 3.4-->");
t=100
x1=.5, R=8.314
a1=16.678,b1=3640.2,c1=219.61
a2=16.2887,b2=3816.44,c2=227.02
x2=1-x1
p1sat=exp(a1-b1/(c1+t))
p2sat=exp(a2-b2/(c2+t))
h12=v2*exp(-a12/(R*(t+273.15)))/v1
h21=v1*exp(-a21/(R*(t+273.15)))/v2
m=h12/(x1+x2*h12)-h21/(x2+x1*h21)
g1=exp(-log(x1+x2*h12)+x2*m)
g2=exp(-log(x2+x1*h21)-x1*m)
p=x1*g1*p1sat+x2*g2*p2sat
disp(p,"boiling point pressure in kPa is");
//calc of BPT
p=101.325,x1=.5, e=1
x2=1-x1
t1sat=b1/(a1-log(p))-c1
t2sat=b2/(a2-log(p))-c2
tnew=x1*t1sat+x2*t2sat
while e>10^-4 do told=tnew,
p1sat=exp(a1-b1/(c1+told)),p2sat=exp(a2-b2/(c2+told)),
p1sat=p/(g1*x1+g2*x2*(p2sat/p1sat))
tnew=b1/(a1-log(p1sat))-c1,
e=abs(tnew-told)
end
disp(tnew,"boiling point temperature in Celsius is");
//calc of dpp
e1=1, e2=1, e3=1, pold=1
t=100,y1=.5
y2=1-y1
p1sat=exp(a1-b1/(c1+t))
p2sat=exp(a2-b2/(c2+t))
g1=1, g2=1, g11=1, g22=1
pnew=1/(y1/(g1*p1sat)+y2/(g2*p2sat))
while e1>.0001 do pold=pnew, while e2>.0001& e3>.0001 do g1=g11,g2=g22,
x1=y1*pold/(g1*p1sat)
x2=y2*pold/(g2*p2sat)
x1=x1/(x1+x2)
x2=1-x1
h12=v2*exp(-a12/(R*(t+273.15)))/v1
h21=v1*exp(-a21/(R*(t+273.15)))/v2
m=h12/(x1+x2*h12)-h21/(x2+x1*h21)
g11=exp(-log(x1+x2*h12)+x2*m)
g22=exp(-log(x2+x1*h21)-x1*m)
e2=abs(g11-g1), e3=abs(g22-g2)
end
pnew=1/(y1/(g1*p1sat)+y2/(g2*p2sat))
e1=abs(pnew-pold)
end
disp(pnew,"dew point pressure in kPa is");
//calc dpt
p=101.325,y1=.5, e4=1, e5=1,e6=1
y2=1-y1
t1sat=b1/(a1-log(p))-c1
t2sat=b2/(a2-log(p))-c2
tnew=y1*t1sat+y2*t2sat
g11=1, g22=1
while e4>.0001 do told=tnew,
p1sat=exp(a1-b1/(c1+told))
p2sat=exp(a2-b2/(c2+told)), while e5>.0001 & e6>.0001 do g1=g11, g2=g22,
x1=y1*p/(g1*p1sat)
x2=y2*p/(g2*p2sat)
x1=x1/(x1+x2)
x2=1-x1
h12=v2*exp(-a12/(R*(t+273.15)))/v1
h21=v1*exp(-a21/(R*(t+273.15)))/v2
m=h12/(x1+x2*h12)-h21/(x2+x1*h21)
g11=exp(-log(x1+x2*h12)+x2*m)
g22=exp(-log(x2+x1*h21)-x1*m)
e5=abs(g11-g1), e6=abs(g22-g2)
end
p1sat=p*(y1/g1+y2*p1sat/(g2*p2sat))
tnew=b1/(a1-log(p1sat))-c1
e4=abs(tnew-told)
end
disp(tnew,"dew point temperature in Celsius is"); |
03cc32afee1af8f3cce3e7284381709e94ae85f9 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.19_20.tst | 7a8bb3864a6549fa014b4f1dbcf86deaae566029 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 3,779 | tst | bow.19_20.tst | 19 62:1.0 76:0.125 118:1.0 448:1.0
19 1:0.020833333333333332 38:0.1 135:1.0 1470:1.0
19 3:0.3333333333333333 62:1.0 297:1.0 549:1.0
19 1:0.020833333333333332 38:0.1 135:1.0 197:1.0
19 15:0.08333333333333333 62:1.0
19 1:0.020833333333333332 15:0.08333333333333333 38:0.1 76:0.125 471:1.0
19 15:0.08333333333333333 62:1.0
19 1:0.020833333333333332 38:0.1 76:0.125 107:1.0
19 62:1.0 94:0.125 350:0.5
19 1:0.020833333333333332 38:0.1 76:0.125 94:0.125
19 62:1.0 123:0.5
19 1:0.020833333333333332 38:0.1 76:0.125 94:0.125
19 62:1.0 549:1.0
19 5:0.14285714285714285 6:1.0 68:1.0 197:1.0 1411:1.0
19 17:0.1111111111111111 45:1.0 94:0.125
19 18:1.0 94:0.125 1053:1.0
19 1:0.041666666666666664 3:0.3333333333333333 5:0.2857142857142857 6:1.0 15:0.25 44:0.3333333333333333 69:1.0 101:0.5 203:0.3333333333333333 206:1.0 244:1.0 280:1.0 462:1.0 466:1.0 481:1.0 518:1.0 618:1.0
19 6:1.0 18:1.0 27:0.3333333333333333 38:0.1 59:1.0 68:1.0 76:0.25 84:0.125 94:0.375 106:0.3333333333333333 124:1.0 125:1.0 352:1.0 555:1.0
19 1:0.020833333333333332 5:0.2857142857142857 24:1.0 32:1.0 117:1.0 126:1.0 172:1.0 310:0.25 316:0.2
19 1:0.020833333333333332 3:0.3333333333333333 15:0.08333333333333333 17:0.1111111111111111 35:0.5 47:0.14285714285714285 93:0.5 125:1.0 206:1.0 244:1.0 259:1.0 280:1.0 371:1.0 618:1.0 991:1.0 1017:2.0
19 3:0.3333333333333333 8:0.16666666666666666 17:0.1111111111111111 71:0.07692307692307693 94:0.125 125:1.0 160:1.0 174:1.0 203:0.3333333333333333 206:2.0 265:1.0 277:1.0 294:0.3333333333333333 459:1.0 477:1.0 603:1.0 611:1.0
19 1:0.020833333333333332 2:1.0 5:0.14285714285714285 15:0.08333333333333333 68:1.0 84:0.125 111:1.0 203:0.3333333333333333 206:3.0 268:1.0 302:1.0
19 17:0.1111111111111111 46:1.0 91:2.0 203:0.6666666666666666 264:1.0
19 1:0.041666666666666664 3:0.3333333333333333 9:0.16666666666666666 15:0.16666666666666666 38:0.1 56:0.5 84:0.125 93:1.0 111:1.0 122:1.0 162:0.2 203:0.3333333333333333 206:4.0 265:1.0 416:1.0 424:0.3333333333333333
19 63:0.5 68:1.0 179:1.0
19 1:0.041666666666666664 3:0.3333333333333333 17:0.1111111111111111 44:0.3333333333333333 63:0.5 68:1.0 93:0.5 203:0.3333333333333333 206:1.0 243:1.0 247:1.0 263:1.0 412:0.5 504:1.0 1060:1.0
19 19:1.0 36:1.0 47:0.14285714285714285 84:0.125 111:1.0 206:1.0 247:1.0 425:1.0
19 14:1.0 22:0.25 94:0.25 106:0.3333333333333333 220:1.0
19 15:0.08333333333333333
19 1:0.0625 6:1.0 8:0.16666666666666666 15:0.4166666666666667 26:0.5 38:0.3 56:0.5 58:1.0 107:1.0 121:0.125 172:1.0 216:0.2 247:1.0 254:0.6666666666666666 264:1.0 265:0.5 270:1.0 277:4.0 308:1.0 309:1.0 317:1.0 318:1.0 341:0.5 390:2.0 394:0.3333333333333333 591:1.0 592:1.0 600:1.0 618:1.0 791:1.0 872:0.3333333333333333 1140:1.0 1279:1.0 1425:1.0
19 5:0.42857142857142855 8:0.16666666666666666 15:0.08333333333333333 32:1.0 38:0.4 41:1.0 58:1.0 81:1.0 94:0.25 117:1.0 162:0.2 172:1.0 201:0.3333333333333333 216:0.4 223:0.5 247:1.0 254:0.3333333333333333 305:1.0 317:1.0 390:1.0 455:1.0 600:1.0 853:1.0 1425:1.0 1491:1.0
19 5:0.14285714285714285 12:1.0 15:0.08333333333333333 38:0.1 172:1.0 203:0.3333333333333333 206:1.0 216:0.2 341:0.5 853:1.0
19 38:0.1 68:1.0 91:1.0 206:1.0 215:1.0 216:0.2 230:1.0 233:1.0 254:0.3333333333333333 532:1.0
19 15:0.08333333333333333 46:1.0 92:1.0 206:1.0
19 3:0.3333333333333333 12:1.0 31:1.0 34:1.0 38:0.1 56:0.5 84:0.125 94:0.125 144:1.0 206:1.0 216:0.2 247:1.0 254:0.6666666666666666 268:1.0 408:1.0 477:1.0 872:0.3333333333333333 1425:1.0
19 84:0.125 206:1.0
19 1:0.020833333333333332 91:1.0 94:0.125 247:1.0
19 17:0.1111111111111111 58:1.0 186:1.0 206:1.0 295:1.0 390:1.0 818:0.3333333333333333 1278:1.0
19 1:0.020833333333333332 4:1.0 5:0.14285714285714285 46:1.0 47:0.14285714285714285 220:1.0 254:0.3333333333333333 422:1.0 438:0.5
19 1:0.020833333333333332 28:1.0 31:1.0 61:1.0 103:1.0
|
c8791188a311266b50249889ab655997bc23c6c2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH1/EX1.24/Ex1_24.sce | a260413e7d53a24b2cfc242cd3c9478d995966ae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 325 | sce | Ex1_24.sce | clc
//to calculate velocity
c=3*10^8 //light speed (m/s)
//K(kinetic energy)=(m-mo(rest mass))c^2
//it can also be written as mc^2=K+m0c^2
//given that K=2m0c^2(rest mass energy)
//m=3m0
m=3 //relativistic mass
//formula is v=c sqrt(1-(m0/m)^2)
v=c*sqrt(1-(1/m)^2)
disp("velocity of a body is v="+string(v)+"m/s")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.