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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
34d729bf1fa972fb9e60bfdd6d6f9803732f9242
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1430/CH7/EX7.5/exa7_5.sce
|
9f902f6b542fc4a24b13576661c5b3c0b6fc548a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 784
|
sce
|
exa7_5.sce
|
// Example 7.5
// Designing Power-Factor Correction
// From figure 7.10(a)
V_rms=500; // Volts
f=60; // Radian Frequency (rad/s)
omega=377; // (rad/s)
P_1=48*10^3; // Watts
pf_1=0.60; // Lagging
P_2=24*10^3;// Watts
pf_2=0.96; // Leading
// For Load 1
S_1= P_1/pf_1; // apparent power
Q_1=sqrt(S_1^2-P_1^2); // Reactive power
I_1= S_1/V_rms; // RMS current drawn by load 1
// For Load 2
S_2=P_2/pf_2; // apparent power
Q_2=-sqrt(S_2^2-P_2^2); // Reactive power
I_2= S_2/V_rms; // RMS current drawn by load 2
P_12= P_1+P_2;
Q_12=Q_1+Q_2;
S_12= sqrt(P_12^2+Q_12^2);
I_12=S_12/V_rms;
pf_12=P_12/abs(S_12);
// With reference to table 7.3
P_C=0;
Q_C=-Q_12;
V_C=V_rms;
C=-Q_C/(omega*abs(V_C)^2);
disp(C,"Value of Capacitance for unity power factor(in Farad)=")
|
c884425b464297511987a052ad1e43a9565b732f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/944/CH5/EX5.5/example5_5_TACC.sce
|
f37567929a4235e601b824dc010ac67653c64fe0
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 351
|
sce
|
example5_5_TACC.sce
|
//example 5.5
clear;
clc;
//Given:
T=298;//Temperature [K]
n=1;//no. of moles
V1=500;//initial volume [cm3]
V2=1000;//final volume [cm3]
R=8.314;//Universal gas constant [J/mol/K]
//to find the molar entropy change
S=R*log(V2/V1)//molar entropy change at constant temperature[J/K]
printf("Molar entropy change of argon = %f J/K", S);
|
bf5d46622b06e8b45328c3db60cefe76b52a6ac6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1088/CH24/EX24.15/Example15.sce
|
ab39ecc567935b9eec477012ca005115e57a88b3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,654
|
sce
|
Example15.sce
|
clear
flag=1
mode(-1)
clc
printf("Example 15 : Show the effect of [Ctrl-c] in the shell so as to do some operations \n")
disp("****************************************************************")
disp("Answer : ")
disp("INSTRUCTIONS : ")
halt(' ')
disp("1.These programs are part of systems programming PURELY in Unix and the commands have NO EQUIVALENT IN SCILAB")
halt(' ')
disp("2.However the .c files which are displayed here are also made into a seperate file.If you are a unix user then try compiling and running the programme with gcc or cc compiler")
halt(' ')
disp("3.The outputs displayed here are just MOCK OUTPUTS which are DISPLAYED IN THE TEXTBOOK")
halt(' ')
disp("4.The inconvenience is regretted.")
halt('.............Press [ENTER] to continue.....')
halt("")
clc
printf("\tUNIX SHELL SIMULATOR(DEMO VERSION WITH PRELOADED COMMANDS)\n\n\n")
i=0
i=i+1;f(i)='/* Program: signal2.c -- Handles SIGINT and SIGTSTP generated from terminal Required two [Ctrl-c]s to terminate */'+ascii(39)+''
i=i+1;f(i)='#include <stdio.h>'
i=i+1;f(i)='#include <unistd.h>'
i=i+1;f(i)='#include <signal.h>'
i=i+1;f(i)=''
i=i+1;f(i)='void quit(char *message, int exit_status) ;'
i=i+1;f(i)='void tstp_handler(int signo); /* Handler for [Ctrl-z] */'
i=i+1;f(i)='void int_handler(int signo); /* Handler for [Ctrl-c] */'
i=i+1;f(i)='int n, count=0;'
i=i+1;f(i)=''
i=i+1;f(i)='int main(void) {'
i=i+1;f(i)=' signal(SIGTSTP, tstp_handler); /* Disposition for these two signals */'
i=i+1;f(i)=' signal(SIGINT, int_handler); /* set to enter respective handler */'
i=i+1;f(i)=' signal(SIGQUIT, SIG_IGN); /* Disposition set to ignore */'
i=i+1;f(i)=' '
i=i+1;f(i)=' fprintf(stderr,'+ascii(34)+'Press [Ctrl-z] first, then [Ctrl-c]\n'+ascii(34)+');'
i=i+1;f(i)=' for(;;)'
i=i+1;f(i)=' pause(); /* Will return on reciept of help */'
i=i+1;f(i)='}'
i=i+1;f(i)=''
i=i+1;f(i)='void tstp_handler(int signo) {'
i=i+1;f(i)=' signal(SIGTSTP, tstp_handler); /* Not entirely reliable */'
i=i+1;f(i)=' fprintf(stderr, '+ascii(34)+'Can'+ascii(39)+'t stop this program\n'+ascii(34)+'); /* same signal can reset */'
i=i+1;f(i)='} /* disposition to default */'
i=i+1;f(i)=''
i=i+1;f(i)='void int_handler(int signo) { /* Will terminate program */'
i=i+1;f(i)=' signal(SIGINT, int_handler); /* on second invocation */'
i=i+1;f(i)=' (++count == 1) ? printf('+ascii(34)+'Press again\n'+ascii(34)+') : quit('+ascii(34)+'Quitting'+ascii(34)+', 1);'
n=i
printf("\n\n$ cat signal2.c # to open the file emp.lst")
halt(' ')
u=mopen('signal2.c','wt')
for i=1:n
mfprintf(u,"%s\n",f(i))
printf("%s\n",f(i))
end
mclose(u)
halt('')
clc
halt(' ')
printf("$ cc signal2.c")
halt(' ')
printf("$ a.out ")
halt(' ')
printf("Press [Ctrl-z] first, then [Ctrl-c]")
halt("")
printf("# [Ctrl - \\] pressed ")
sleep(2500)
printf(" Signal Ignored \n")
printf("# [Ctrl - z] pressed \n")
sleep(2500)
printf("Cannot stop this program From tstp_handler\n")
printf("# [Ctrl - c] pressed ")
sleep(2500)
printf("\nPress again From int_handler\n")
printf("# [Ctrl - c] pressed \n")
sleep(2500)
printf("Quitting: Interrupted system call From int_handler")
halt(' ')
printf("\n\n\n$ exit #To exit the current simulation terminal and return to Scilab console\n\n")
halt("........# (hit [ENTER] for result)")
//clc()
printf("\n\n\t\t\tBACK TO SCILAB CONSOLE...\nLoading initial environment')
sleep(1000)
|
e3d623025a2778d06cdd09e643fdddf8536b074e
|
66106821c3fd692db68c20ab2934f0ce400c0890
|
/test/disassembler/brcc.instr.tst
|
6ddce86b6a6e29c871344c7b8f354d32e299439f
|
[] |
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
| 5,670
|
tst
|
brcc.instr.tst
|
; @Harness: disassembler
; @Result: PASS
section .text size=0x00000100 vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0
section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x00000134 ;2**0
start .text:
label 0x00000000 ".text":
0x0: 0xf8 0xf5 brcc .+126 ; 0x80
0x2: 0xf0 0xf5 brcc .+124 ; 0x80
0x4: 0xe8 0xf5 brcc .+122 ; 0x80
0x6: 0xe0 0xf5 brcc .+120 ; 0x80
0x8: 0xd8 0xf5 brcc .+118 ; 0x80
0xa: 0xd0 0xf5 brcc .+116 ; 0x80
0xc: 0xc8 0xf5 brcc .+114 ; 0x80
0xe: 0xc0 0xf5 brcc .+112 ; 0x80
0x10: 0xb8 0xf5 brcc .+110 ; 0x80
0x12: 0xb0 0xf5 brcc .+108 ; 0x80
0x14: 0xa8 0xf5 brcc .+106 ; 0x80
0x16: 0xa0 0xf5 brcc .+104 ; 0x80
0x18: 0x98 0xf5 brcc .+102 ; 0x80
0x1a: 0x90 0xf5 brcc .+100 ; 0x80
0x1c: 0x88 0xf5 brcc .+98 ; 0x80
0x1e: 0x80 0xf5 brcc .+96 ; 0x80
0x20: 0x78 0xf5 brcc .+94 ; 0x80
0x22: 0x70 0xf5 brcc .+92 ; 0x80
0x24: 0x68 0xf5 brcc .+90 ; 0x80
0x26: 0x60 0xf5 brcc .+88 ; 0x80
0x28: 0x58 0xf5 brcc .+86 ; 0x80
0x2a: 0x50 0xf5 brcc .+84 ; 0x80
0x2c: 0x48 0xf5 brcc .+82 ; 0x80
0x2e: 0x40 0xf5 brcc .+80 ; 0x80
0x30: 0x38 0xf5 brcc .+78 ; 0x80
0x32: 0x30 0xf5 brcc .+76 ; 0x80
0x34: 0x28 0xf5 brcc .+74 ; 0x80
0x36: 0x20 0xf5 brcc .+72 ; 0x80
0x38: 0x18 0xf5 brcc .+70 ; 0x80
0x3a: 0x10 0xf5 brcc .+68 ; 0x80
0x3c: 0x08 0xf5 brcc .+66 ; 0x80
0x3e: 0x00 0xf5 brcc .+64 ; 0x80
0x40: 0xf8 0xf4 brcc .+62 ; 0x80
0x42: 0xf0 0xf4 brcc .+60 ; 0x80
0x44: 0xe8 0xf4 brcc .+58 ; 0x80
0x46: 0xe0 0xf4 brcc .+56 ; 0x80
0x48: 0xd8 0xf4 brcc .+54 ; 0x80
0x4a: 0xd0 0xf4 brcc .+52 ; 0x80
0x4c: 0xc8 0xf4 brcc .+50 ; 0x80
0x4e: 0xc0 0xf4 brcc .+48 ; 0x80
0x50: 0xb8 0xf4 brcc .+46 ; 0x80
0x52: 0xb0 0xf4 brcc .+44 ; 0x80
0x54: 0xa8 0xf4 brcc .+42 ; 0x80
0x56: 0xa0 0xf4 brcc .+40 ; 0x80
0x58: 0x98 0xf4 brcc .+38 ; 0x80
0x5a: 0x90 0xf4 brcc .+36 ; 0x80
0x5c: 0x88 0xf4 brcc .+34 ; 0x80
0x5e: 0x80 0xf4 brcc .+32 ; 0x80
0x60: 0x78 0xf4 brcc .+30 ; 0x80
0x62: 0x70 0xf4 brcc .+28 ; 0x80
0x64: 0x68 0xf4 brcc .+26 ; 0x80
0x66: 0x60 0xf4 brcc .+24 ; 0x80
0x68: 0x58 0xf4 brcc .+22 ; 0x80
0x6a: 0x50 0xf4 brcc .+20 ; 0x80
0x6c: 0x48 0xf4 brcc .+18 ; 0x80
0x6e: 0x40 0xf4 brcc .+16 ; 0x80
0x70: 0x38 0xf4 brcc .+14 ; 0x80
0x72: 0x30 0xf4 brcc .+12 ; 0x80
0x74: 0x28 0xf4 brcc .+10 ; 0x80
0x76: 0x20 0xf4 brcc .+8 ; 0x80
0x78: 0x18 0xf4 brcc .+6 ; 0x80
0x7a: 0x10 0xf4 brcc .+4 ; 0x80
0x7c: 0x08 0xf4 brcc .+2 ; 0x80
0x7e: 0x00 0xf4 brcc .+0 ; 0x80
0x80: 0xf8 0xf7 brcc .-2 ; 0x80
0x82: 0xf0 0xf7 brcc .-4 ; 0x80
0x84: 0xe8 0xf7 brcc .-6 ; 0x80
0x86: 0xe0 0xf7 brcc .-8 ; 0x80
0x88: 0xd8 0xf7 brcc .-10 ; 0x80
0x8a: 0xd0 0xf7 brcc .-12 ; 0x80
0x8c: 0xc8 0xf7 brcc .-14 ; 0x80
0x8e: 0xc0 0xf7 brcc .-16 ; 0x80
0x90: 0xb8 0xf7 brcc .-18 ; 0x80
0x92: 0xb0 0xf7 brcc .-20 ; 0x80
0x94: 0xa8 0xf7 brcc .-22 ; 0x80
0x96: 0xa0 0xf7 brcc .-24 ; 0x80
0x98: 0x98 0xf7 brcc .-26 ; 0x80
0x9a: 0x90 0xf7 brcc .-28 ; 0x80
0x9c: 0x88 0xf7 brcc .-30 ; 0x80
0x9e: 0x80 0xf7 brcc .-32 ; 0x80
0xa0: 0x78 0xf7 brcc .-34 ; 0x80
0xa2: 0x70 0xf7 brcc .-36 ; 0x80
0xa4: 0x68 0xf7 brcc .-38 ; 0x80
0xa6: 0x60 0xf7 brcc .-40 ; 0x80
0xa8: 0x58 0xf7 brcc .-42 ; 0x80
0xaa: 0x50 0xf7 brcc .-44 ; 0x80
0xac: 0x48 0xf7 brcc .-46 ; 0x80
0xae: 0x40 0xf7 brcc .-48 ; 0x80
0xb0: 0x38 0xf7 brcc .-50 ; 0x80
0xb2: 0x30 0xf7 brcc .-52 ; 0x80
0xb4: 0x28 0xf7 brcc .-54 ; 0x80
0xb6: 0x20 0xf7 brcc .-56 ; 0x80
0xb8: 0x18 0xf7 brcc .-58 ; 0x80
0xba: 0x10 0xf7 brcc .-60 ; 0x80
0xbc: 0x08 0xf7 brcc .-62 ; 0x80
0xbe: 0x00 0xf7 brcc .-64 ; 0x80
0xc0: 0xf8 0xf6 brcc .-66 ; 0x80
0xc2: 0xf0 0xf6 brcc .-68 ; 0x80
0xc4: 0xe8 0xf6 brcc .-70 ; 0x80
0xc6: 0xe0 0xf6 brcc .-72 ; 0x80
0xc8: 0xd8 0xf6 brcc .-74 ; 0x80
0xca: 0xd0 0xf6 brcc .-76 ; 0x80
0xcc: 0xc8 0xf6 brcc .-78 ; 0x80
0xce: 0xc0 0xf6 brcc .-80 ; 0x80
0xd0: 0xb8 0xf6 brcc .-82 ; 0x80
0xd2: 0xb0 0xf6 brcc .-84 ; 0x80
0xd4: 0xa8 0xf6 brcc .-86 ; 0x80
0xd6: 0xa0 0xf6 brcc .-88 ; 0x80
0xd8: 0x98 0xf6 brcc .-90 ; 0x80
0xda: 0x90 0xf6 brcc .-92 ; 0x80
0xdc: 0x88 0xf6 brcc .-94 ; 0x80
0xde: 0x80 0xf6 brcc .-96 ; 0x80
0xe0: 0x78 0xf6 brcc .-98 ; 0x80
0xe2: 0x70 0xf6 brcc .-100 ; 0x80
0xe4: 0x68 0xf6 brcc .-102 ; 0x80
0xe6: 0x60 0xf6 brcc .-104 ; 0x80
0xe8: 0x58 0xf6 brcc .-106 ; 0x80
0xea: 0x50 0xf6 brcc .-108 ; 0x80
0xec: 0x48 0xf6 brcc .-110 ; 0x80
0xee: 0x40 0xf6 brcc .-112 ; 0x80
0xf0: 0x38 0xf6 brcc .-114 ; 0x80
0xf2: 0x30 0xf6 brcc .-116 ; 0x80
0xf4: 0x28 0xf6 brcc .-118 ; 0x80
0xf6: 0x20 0xf6 brcc .-120 ; 0x80
0xf8: 0x18 0xf6 brcc .-122 ; 0x80
0xfa: 0x10 0xf6 brcc .-124 ; 0x80
0xfc: 0x08 0xf6 brcc .-126 ; 0x80
0xfe: 0x00 0xf6 brcc .-128 ; 0x80
start .data:
|
ec62ec5677d4a833438d81472c7e197d73bd9007
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3411/CH14/EX6.2.u2/Ex6_2_u2.sce
|
6535ea9848d7d63ea2ba23da12eecc249a5348cc
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
Ex6_2_u2.sce
|
//Example 6_2_u2
clc();
clear;
//To calculate the atomic polarizability
eo=8.85*10^-12 //units in F/meter
er=1.000435
n=2.7*10^25 //No of atoms/meter^3
alpha=(eo*(er-1))/n //units in meter^3
printf("The atomic polarizability is aplha=")
disp(alpha)
printf("meter^3")
|
0d02edf8aebb889e0f77497d7e8e0653d38cc628
|
99b4e2e61348ee847a78faf6eee6d345fde36028
|
/Toolbox Test/rms/rms10.sce
|
181965af998a39cb4ef125213bdf8a9c8637fd96
|
[] |
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
| 55
|
sce
|
rms10.sce
|
y=[%i 2 4];
Y=rms(y,2);
disp(Y);
//output
// 2.6457513
|
b45b882f929f69966c19804c1cd766b865b24515
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1202/CH6/EX6.3/6_3.sce
|
4f126ae776c4fb0083b798972783cf022ba6c15b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,969
|
sce
|
6_3.sce
|
clear
clc
//Example 6.3
disp('Example 6.3')
//Smith's method
t20=1.85;//min
t60=5;//min
ratio=t20/t60;
zeta=1.3;//Zeta obtained from Fig 6.7 page 109
tau=t60/2.8//Value 2.8 obtained from Fig 6.7
tau1=tau*zeta+tau*sqrt(zeta^2-1);
tau2=tau*zeta-tau*sqrt(zeta^2-1);
mprintf('From Smiths method \n tau1=%f min\n tau2=%f min \n',[tau1 tau2])
//Nonlinear regression
//This method cannot be directly used here because we do not have the data with us
//Had the data been given in tabular form we could have performed a regression
//Converting graphical data(Fig 7.8) printed in textbook to tabular form is not practical
//Towards the end of the program however a roundabout way has been implemented so
//that the user can learn the technique of non-linear optimization
s=%s;
G2=1/((tau1*s+1)*(tau2*s+1)) //Smith's method
G3=1/(4.60*s+1)//First order with time delay: Note that we cannot have exp(-0.7s) without symbolic toolbox so we use a roundaround trick for this
//Also note that we could have used Pade's approximation but that works well only for very small time delays
G1=1/((3.34*s+1)*(1.86*s+1)); //Nonlinear regression
Glist=syslin('c',[G1 G2 G3]') //Simply collating them together for further simulation
G=syslin('c',Glist);
t=0:0.1:20;
y=csim('step',t,G);
y(3,:)=[zeros(1,8) y(3,1:$-8)] //This is the roundabout trick to introduce time lag by manually
//shifting the respone by 0.7 min
plot(t,y)
xtitle('Ex-6.3(Fig 6.9)','Time(min)','y(t)/KM');
a=legend("Nonlinear regression","Smiths method","FOPTD",position=4);
a.font_size=2;
a=get("current_axes");b=a.title;b.font_size=5;c=a.x_label;c.font_size=5;
c=a.y_label;c.font_size=5;
//====NON-LINEAR REGRESSION====//
//Now that we have the response data and also taking the word from the book that
//simulation from Excel/Matlab is identical to experimental data, we can actually
//take this simulation and use it for showing regression
//So our experimental data is y(1)
//For nonlinear regression we define a cost function which we have to minimize
function err=experiment(tau)
s=%s;
G=syslin('c',1/((tau(1)*s+1)*(tau(2)*s+1)));
t=0:0.1:20;
response=csim('step',t,G);
err=sum((response-y(1,:)).^2);
endfunction
//f is value of cost function, g is gradient of cost function,
//ind is just a dummy variable required by optim function
function [f,g,ind]=cost(tau,ind)
f=experiment(tau)
g=numdiff(experiment,tau)
endfunction
x0=[3 1]'; //Initial guess for optimization routine
[cost_opt, tau_opt]=optim(cost,x0)
mprintf('\n Optimization using optim function done successfully \n')
mprintf('\n From nonlinear regression \n tau1=%f min\n tau2=%f min \n',[tau_opt]')
//Formatted output...
mprintf('\n tau1(min) tau2(min) Sum of squares')
mprintf('\n Smith %f %f %f',3.81,0.84,0.0769)
mprintf('\n First Order\n(delay=0.7min) %f %s %f',4.60,'--',0.0323)
mprintf('\n Excel and Matlab %f %f %f \n',3.34,1.86,0.0057)
|
2ecd77ba2e7fd1b2072ff6059f47b7cfbd56c553
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1223/CH12/EX12.3/Ex12_3.sce
|
a13e4756bcf2db0cdceedcee16d90711708a2f4d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 176
|
sce
|
Ex12_3.sce
|
clear;
clc;
//Example 12.3
Ao=10^4;
wh=2*%pi*100;//rad/s
Af=50;
//x=(1+bAo)
x=Ao/Af;
printf('\n(1+bAo)=%f\n',x)
wfh=wh*x;
printf('\nclosed loop bandwidth=%f\n',wfh)
|
af089f4d06ee18d67ac0ef38b7aabc6270cf0600
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3875/CH4/EX4.6/Ex4_6.sce
|
421951f8879a580e8315122bd4278d4aa20cb4f8
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 763
|
sce
|
Ex4_6.sce
|
clc;
clear;
Y1=1*10^-3 //distance of the point from the screen in m for first case
D=1 //distance between the slit and the screen in m
d=1*10^-3 //distance between the slits in m
lambda=5893*10^-10 //wavelength in m
phase_diff2=%pi/2 //phase difference when intensity is half the maximum
//calculation
delta_1=(Y1*d)/D //path difference in m
phase_diff=(2*%pi*delta_1)/lambda //phase difference in radian
Ratio=cos(phase_diff/2)^2
mprintf("\nThe ratio of intensity with the central maximum is = %1.4f\n",Ratio)
//The answer provided in the textbook is wrong.
delta_2=(phase_diff2*lambda)/2*%pi
Y2=(delta_2*D)/d
mprintf("The distance of the point on the screen from the centre is %1.3e m",Y2)
//The answer provided in the textbook is wrong.
|
bdf5ed54644f8c5a09ff6048178069c3596bbd5e
|
610a40b181f1497601b7ba08f2bbf02991b4a80f
|
/advent_of_code/2022/day-11b/example.input
|
c04eddb7916944a948afb80441b3cb6d2ac25daa
|
[
"MIT"
] |
permissive
|
SpicyLemon/SpicyLemon
|
a5e49eb17e6c1f637e2e47186481cbf4875ff630
|
c465555fdfba1ad9e22cf36b1324673f7bceaa19
|
refs/heads/master
| 2023-08-16T12:12:07.674172
| 2023-08-09T19:58:46
| 2023-08-09T19:58:46
| 229,794,690
| 10
| 0
|
MIT
| 2021-04-05T22:50:44
| 2019-12-23T17:18:56
|
Shell
|
UTF-8
|
Scilab
| false
| false
| 609
|
input
|
example.input
|
Monkey 0:
Starting items: 79, 98
Operation: new = old * 19
Test: divisible by 23
If true: throw to monkey 2
If false: throw to monkey 3
Monkey 1:
Starting items: 54, 65, 75, 74
Operation: new = old + 6
Test: divisible by 19
If true: throw to monkey 2
If false: throw to monkey 0
Monkey 2:
Starting items: 79, 60, 97
Operation: new = old * old
Test: divisible by 13
If true: throw to monkey 1
If false: throw to monkey 3
Monkey 3:
Starting items: 74
Operation: new = old + 3
Test: divisible by 17
If true: throw to monkey 0
If false: throw to monkey 1
|
7b7eafdbe1a2483e647cc21171508cd1cd393c47
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3685/CH10/EX10.6/Ex10_6.sce
|
24a2b42d6569b3c2ab4822c4cc4acf5e79832ac7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,111
|
sce
|
Ex10_6.sce
|
clc
P1 = 700 // Initial pressure of gas in kPa
T1 = 260 // Initial temperature of gas in degree Celcius
T3 = T1 // Temperature at state 3
V1 = 0.028 // Initial volume of gas in m^3
V2 = 0.084 // Final volume of gas in m^3
R = 0.287 // Gas constant
m = (P1*V1)/(R*(T1+273)) // mass of gas
P2 = P1 // Pressure at state 2
T2 = (T1+273)*((P2*V2)/(P1*V1)) // Temperature at state 2
n = 1.5 // polytropic index
P3 = P2*(((T3+273)/(T2))^(n/(n-1))) // Pressure at state 3
cp = 1.005 // COnstant pressure heat capacity in kJ/kgK
cv = 0.718 // COnstant volume heat capacity in kJ/kgK
Q12 = m*cp*(T2-T1-273) // HEat transfer
Q23 = m*cv*(T3+273-T2) + (m*R*(T2-T3-273))/(n-1) // Heat transfer
Q31 = m*R*(T1+273)*log(P3/P2) // Heat transfer
Q1 = Q12 // Heat equivalance
Q2 = -(Q23+Q31) // Net heat transfer
e = 1-(Q2/Q1) // First law efficiency
printf("\n Example 10.6")
printf("\n The heat received in the cycle is %f kJ",Q1)
printf("\n The heat rejected in the cycle %f kJ",Q2)
printf("\n The efficiency of the cycle is %d percent",ceil(e*100))
//The answers vary due to round off error
|
0c86cce9efe0f332fb271f2947e928d97e9c7858
|
d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3
|
/r35/xmpl/limits.tst
|
950e44119f8a017146cf2334555185c20296d912
|
[
"BSD-3-Clause"
] |
permissive
|
reduce-algebra/reduce-historical
|
8220e211b116e0e01ff1a38f51917cac9db6069f
|
e014152729c4d62bb1ce4f5c311a027042a5495a
|
refs/heads/master
| 2023-04-10T22:54:00.796596
| 2021-04-16T08:52:19
| 2021-04-16T08:52:19
| 343,245,204
| 7
| 1
|
NOASSERTION
| 2021-04-16T08:53:31
| 2021-03-01T00:15:22
|
TeX
|
UTF-8
|
Scilab
| false
| false
| 6,604
|
tst
|
limits.tst
|
% Tests of limits package.
limit(sin(x)/x,x,0); % 1
limit(sin(x)^2/x,x,0); % 0
limit(sin(x)/x,x,1); % sin(1)
limit(1/x,x,0); % infinity
limit(-1/x,x,0); % - infinity
limit((sin(x)-x)/x^3,x,0); % -1/6
limit(x*sin(1/x),x,infinity); % 1
limit(sin x/x^2,x,0); % infinity
limit(x^2*sin(1/x),x,infinity); % infinity
% Simple examples from Schaum's Theory & Problems of Advanced Calculus
limit(x^2-6x+4,x,2); % -4
limit((x+3)*(2x-1)/(x^2+3x-2),x,-1); % 3/2
limit((sqrt(4+h)-2)/h,h,0); % 1/4
limit((sqrt(x)-2)/(4-x),x,4); % -1/4
limit((x^2-4)/(x-2),x,2); % 4
limit(1/(2x-5),x,-1); % -1/7
limit(sqrt(x)/(x+1),x,1); % 1/2
limit((2x+5)/(3x-2),x,infinity); % 2/3
limit((1/(x+3)-2/(3x+5))/(x-1),x,1); % 1/32
limit(sin(3x)/x,x,0); % 3
limit((1-cos(x))/x^2,x,0); % 1/2
limit((6x-sin(2x))/(2x+3*sin(4x)),x,0); % 2/7
limit((1-2*cos(x)+cos(2x))/x^2,x,0); % -1
limit((3*sin(pi*x) - sin(3*pi*x))/x^3,x,0); % 4*pi^3
limit((cos(a*x)-cos(b*x))/x^2,x,0); % (-a^2 + b^2)/2
limit((e^x-1)/x,x,0); % 1
limit((a^x-b^x)/x,x,0); % log(a) - log(b)
% Examples taken from Hyslop's Real Variable
limit(sinh(2x)^2/log(1+x^2),x,0); % 4
limit(x^2*(e^(1/x)-1)*(log(x+2)-log(x)),x,infinity); % 2
limit(x^alpha*log(x+1)^2/log(x),x,infinity);
%% if repart alpha < 0 then 0 else infinity.
%% fails because answer depends in essential way on parameter.
limit((2*cosh(x)-2-x^2)/log(1+x^2)^2,x,0); % 1/12
limit((x*sinh(x)-2+2*cosh(x))/(x^4+2*x^2),x,0); % 1
limit((2*sinh(x)-tanh(x))/(e^x-1),x,0); % 1
limit(x*tanh(x)/(sqrt(1-x^2)-1),x,0); % -2
limit((2*log(1+x)+x^2-2*x)/x^3,x,0); % 2/3
limit((e^(5*x)-2*x)^(1/x),x,0); % e^3
limit(log(log(x))/log(x)^2,x,infinity); % 0
% These are adapted from Lession 4 from Stoutmyer
limit((e^x-1)/x, x, 0); % 1
limit(((1-x)/log(x))**2, x, 1); % 1
limit(x/(e**x-1), x, 0); % 1
%% One sided limits
limit!+(sin(x)/sqrt(x),x,0); % 0
limit!-(sin(x)/sqrt(x),x,0); % 0
limit(x/log x,x,0); % 0
limit(log(1 + x)/log x,x,infinity); % 1
limit(log x/sqrt x,x,infinity); % 0
limit!+(sqrt x/sin x,x,0); % infinity
limit(log x,x,0); % - infinity
limit(x*log x,x,0); % 0
limit(log x/log(2x),x,0); % 1
limit(log x*log(1+x)*(1+x),x,0); % 0
limit(log x/x,x,infinity); % 0
limit(log x/sqrt x,x,infinity); % 0
limit(log x,x,infinity); % infinity
limit(log(x+1)/sin x,x,0); % 1
limit(log(1+1/x)*sin x,x,0); % 0
limit(-log(1+x)*(x+2)/sin x,x,0); % -2
limit(-log x*(3+x)/log(2x),x,0); % -3
limit(log(x+1)^2/sqrt x,x,infinity); % 0
limit(log(x + 1) - log x,x,infinity); % 0
limit(-(log x)^2/log log x,x,infinity); % - infinity
limit(log(x-1)/sin x,x,0); % infinity
limit!-(sqrt x/sin x,x,0); % infinity
limit(log x-log(2x),x,0); % - log(2)
limit(sqrt x-sqrt(x+1),x,infinity); % 0
limit(sin sin x/x,x,0); % 1
limit!-(sin x/cos x,x,pi/2); % infinity % this works!
limit!+(sin x/cos x,x,pi/2); % - infinity % so does this!
limit(sin x/cosh x,x,infinity); % 0
limit(sin x/x,x,infinity); % 0
limit(x*sin(1/x),x,0); % 0
limit(exp x/((exp x + exp(-x))/2),x,infinity); % 2
% limit(exp x/cosh x,x,infinity); % fails in this form, but if cosh is
%defined using let, then it works.
limit((sin(x^2)/(x*sinh x)),x,0); % 1
limit(log x*sin(x^2)/(x*sinh x),x,0); % - infinity
limit(sin(x^2)/(x*sinh x*log x),x,0); % 0
limit(log x/log(x^2),x,0); % 1/2
limit(log(x^2)-log(x^2+8x),x,0); % - infinity
limit(log(x^2)-log(x^2+8x),x,infinity); % 0
limit(sqrt(x+5)-sqrt x,x,infinity); % 0
limit(2^(log x),x,0); % 0
% Additional examples
limit((sin tan x-tan sin x)/(asin atan x-atan asin x),x,0); % 1
% This one has the value infinity, but fails with de L'Hospital's rule:
limit((e+1)^(x^2)/e^x,x,infinity); % infinity % fails
comment
The following examples were not in the previous set$
% Simon test examples:
limit(log(x-a)/((a-b)*(a-c)) + log(2(x-b))/((b-c)*(b-a))
+ log(x-c)/((c-a)*(c-b)),x,infinity); % log(1/2)/((a-b)*(b-c))
limit(1/(e^x-e^(x-1/x^2)),x,infinity); % infinity % fails
% new capabilities: branch points at the origin, needed for definite
% integration.
limit(x+sqrt x,x,0); % 0
limit!+(sqrt x/(x+1),x,0); % 0
limit!+(x^(1/3)/(x+1),x,0); % 0
limit(log(x)^2/x^(1/3),x,0); % infinity
limit(log x/x^(1/3),x,0); % - infinity
h := (X^(1/3) + 3*X**(1/4))/(7*(SQRT(X + 9) - 3)**(1/4));
limit(h,x,0); % 3/7*6^(1/4)
% Examples from Paul S. Wang's thesis:
limit(x^log(1/x),x,infinity); % 0
limit(cos x - 1/(e^x^2 - 1),x,0); % - infinity
limit((1+a*x)^(1/x),x,infinity); % 1
limit(x^2*sqrt(4*x^4+5)-2*x^4,x,infinity); % 5/4
limit!+(1/x-1/sin x,x,0); % 0
limit(e^(x*sqrt(x^2+1))-e^(x^2),x,infinity); % 0 fails
limit((e^x+x*log x)/(log(x^4+x+1)+e^sqrt(x^3+1)),x,infinity); %0 % fails
limit!-(1/(x^3-6*x+11*x-6),x,2); % 1/12
limit((x*sqrt(x+5))/(sqrt(4*x^3+1)+x),x,infinity); % 1/2
limit!-(tan x/log cos x,x,pi/2); % - infinity
z0 := z*(z-2*pi*i)*(z-pi*i/2)/(sinh z - i);
limit(df(z0,z),z,pi*i/2); % infinity
z1 := z0*(z-pi*i/2);
limit(df(z1,z),z,pi*i/2); % -2*pi
% and the analogous problem:
z2 := z*(z-2*pi)*(z-pi/2)/(sin z - 1);
limit(df(z2,z),z,pi/2); % infinity
z3 := z2*(z-pi/2);
limit(df(z3,z),z,pi/2); % 2*pi
% A test by Wolfram Koepf.
f:=x^2/(3*(-27*x^2 - 2*x^3 + 3^(3/2)*(27*x^4 + 4*x^5)^(1/2))^(1/3));
L0:=limit(f,x,0); % L0 := 0
f1:=((f-L0)/x^(1/3))$
L1:=limit(f1,x,0); % L1 := 0
f2:=((f1-L1)/x^(1/3))$
L2:=limit(f2,x,0); % L2 := -1/2^(1/3)
f3:=((f2-L2)/x^(1/3))$
L3:=limit(f3,x,0); % L3 := 0
f4:=((f3-L3)/x^(1/3))$
L4:=limit(f4,x,0); % L4 := 0
f5:=((f4-L4)/x^(1/3))$
L5:=limit(f5,x,0); % L5 = -2^(2/3)/81
f6:=((f5-L5)/x^(1/3))$
L6:=limit(f6,x,0); % L6 := 0
f7:=((f6-L6)/x^(1/3))$
L7:=limit(f7,x,0); % L7 := 0
f8:=((f7-L7)/x^(1/3))$
L8:=limit(f8,x,0); % L8 := 7/(6561*2^(1/3))
limit(log(1+x)^2/x^(1/3),x,infinity); % 0
limit(e^(log(1+x)^2/x^(1/3)),x,infinity); % 1
ss := (sqrt(x^(2/5) +1) - x^(1/3)-1)/x^(1/3);
limit(ss,x,0); % -1
limit(exp(ss),x,0); % 1/e
limit(log x,x,-1); % log(-1)
limit(log(ss),x,0); % log(-1)
ss := ((x^(1/2) - 1)^(1/3) + (x^(1/5) + 1)^2)/x^(1/5);
limit(ss,x,0); % 2
h := (X^(1/5) + 3*X**(1/4))^2/(7*(SQRT(X + 9) - 3 - x/6))**(1/5);
limit(h,x,0); % -6^(3/5)/7^(1/5)
end;
comment The following examples all fail with the present limit package.
To make them all work it will be best to define a separate limit
evaluator, either to be used separately, or to be used when the present
evaluator has failed.$
limit((e+1)^(x^2)/e^x,x,infinity); % infinity
limit(e^x-e^(x-1/x^2),x,infinity); % infinity
limit(1/(e^x-e^(x-1/x^2)),x,infinity); % infinity
limit(e^(x*sqrt(x^2+1))-e^(x^2),x,infinity); % infinity
limit((e^x+x*log x)/(log(x^4+x+1)+e^sqrt(x^3+1)),x,infinity); % 0
limit!-(log(x)^2/x^(1/3),x,0); % infinity
limit (log(log(1+x)^2/x^(1/3)),x,infinity); % - infinity
end;
|
3afb9b21b66b497c721c0b76f5cfc45288289efe
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/980/CH12/EX12.3/12_3.sce
|
b950bd54dd49ca108648d7e8d92818dc13cfb7a6
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 372
|
sce
|
12_3.sce
|
clc;
clear;
format('v',11);
Z=75;
epsilone_r=2.56;
epsilone_0=8.85*10^-12;
m_0=4*%pi*10^-7; //The permeability of air.
a=1*10^-3;
b=a*exp(Z*2*%pi*sqrt(epsilone_0*epsilone_r/m_0));
disp(b,"b(in meter)=");
C=(2*%pi*epsilone_0*epsilone_r)/log(b/a);
disp(C,"The capacitance(in F/m)=");
L=(m_0/(2*%pi))*log(b/a);
disp(L,"The inductance(in H/m)=");
|
4cecc523fb4f325d06af9a66642a614dcd6b7b05
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2882/CH5/EX5.12/Ex5_12.sce
|
1f98ba667648364cf20f73f0bb8b7de8514433cd
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 395
|
sce
|
Ex5_12.sce
|
//Tested on Windows 7 Ultimate 32-bit
//Chapter 5 Bipolar Transistor Biasing Pg no. 165
clear;
clc;
//Given Data
//Figure 5.26
RL=10;//load resistance in ohms which is dc resistance of primary coil of transistor
R=20D3;//base collector parallel resistance in ohms
B=90;//DC CE current gain beta
//Solution
S=(B+1)/(1+(B*RL)/(RL+R));//stability factor S
printf("S = %.2f",S);
|
325c89e249ea941c47f86eb1511d93ac27167dd9
|
089894a36ef33cb3d0f697541716c9b6cd8dcc43
|
/NLP_Project/test/blog/bow/bow.5_12.tst
|
02f125f771055c181793c725de61966c73ea2a70
|
[] |
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
| 5,608
|
tst
|
bow.5_12.tst
|
5 56:1.0 119:0.14285714285714285 251:0.25 266:1.0 308:0.3333333333333333 1140:1.0 1256:0.5 1264:1.0
5 1:0.6666666666666666 3:0.015625 7:2.0 25:2.0 30:1.0 44:0.0625 57:0.07692307692307693 134:1.0 283:1.0 430:1.0 436:1.0 508:1.0 561:1.0 598:1.0 931:1.0 1029:1.0 1105:1.0 1268:1.0 1321:1.0
5 1:0.2222222222222222 3:0.015625 14:0.3333333333333333 25:1.0 56:1.0 57:0.07692307692307693 127:1.0 184:1.0 232:1.0 341:1.0 646:1.0 709:1.0 844:1.0 1048:0.5 1658:1.0
5 1:0.4444444444444444 3:0.015625 16:0.5 32:0.3333333333333333 51:1.0 56:1.0 57:0.07692307692307693 134:1.0 175:1.0 276:0.2 1210:1.0
5 1:0.4444444444444444 3:0.03125 32:0.3333333333333333 50:0.0625 57:0.23076923076923078 106:1.0 107:1.0 113:1.0 127:1.0 175:1.0 224:1.0 406:1.0 439:0.2 442:1.0 816:1.0 825:1.0 924:1.0 1021:1.0 1022:1.0 1249:1.0 1283:0.5 1438:1.0
5 1:0.4444444444444444 3:0.015625 16:0.5 32:0.3333333333333333 33:1.0 107:1.0 304:1.0 311:1.0 408:1.0 436:2.0 851:0.5 863:1.0 960:1.0 1302:1.0
5 3:0.015625 14:0.3333333333333333 25:1.0 32:0.3333333333333333 49:1.0 64:0.05 406:1.0 521:1.0 1176:1.0
5 3:0.015625 56:1.0 73:0.2 175:1.0 408:1.0 857:1.0
5 1:1.1111111111111112 3:0.015625 7:1.0 14:0.3333333333333333 16:1.0 25:1.0 57:0.07692307692307693 106:0.5 107:1.0 110:1.0 144:1.0 406:1.0 652:1.0 1438:1.0
5 1:0.1111111111111111 3:0.03125 6:1.0 14:0.3333333333333333 16:0.5 32:0.3333333333333333 50:0.0625 57:0.07692307692307693 106:0.5 112:1.0 175:1.0 304:1.0 436:1.0 610:1.0 809:1.0 917:0.25 1447:1.0
5 3:0.015625 5:1.0 14:0.3333333333333333 73:0.2 161:0.14285714285714285 246:1.0 261:0.125 406:1.0 765:1.0 978:1.0
5 1:0.1111111111111111 14:0.3333333333333333 57:0.07692307692307693 175:2.0 385:1.0 595:1.0 835:1.0 1500:1.0
5 1:0.3333333333333333 14:0.3333333333333333 16:1.0 32:0.3333333333333333 50:0.0625 55:1.0 57:0.38461538461538464 64:0.05 73:0.2 82:0.5 83:1.0 92:1.0 134:1.0 142:1.0 162:2.0 175:1.0 261:0.125 286:0.14285714285714285 299:0.3333333333333333 302:0.5 364:1.0 413:1.0 442:1.0 468:1.0 543:2.0 681:1.0 917:0.25 965:1.0 1140:1.0 1516:1.0
5 57:0.07692307692307693 64:0.05 142:1.0 162:1.0 175:1.0 252:1.0
5 3:0.015625 14:0.3333333333333333 96:0.2 141:1.0 173:1.0 175:1.0 485:1.0 810:1.0 816:1.0 1312:1.0 1313:1.0
5 3:0.03125 32:0.3333333333333333 43:0.2 56:3.0 57:0.07692307692307693 137:1.0 139:1.0 161:0.14285714285714285 162:1.0 165:1.0 175:1.0 233:1.0 261:0.125 333:1.0 402:1.0 440:1.0 809:1.0 828:1.0 1388:1.0 1562:1.0
5 1:0.1111111111111111 5:1.0 53:1.0 55:1.0 1380:1.0 1438:1.0
5 1:0.1111111111111111 3:0.015625 14:0.3333333333333333 25:1.0 71:1.0 141:1.0 175:1.0 261:0.125 298:1.0 501:1.0 567:1.0
5 1:0.2222222222222222 3:0.015625 191:1.0 697:0.06666666666666667 869:1.0 1339:1.0 1500:1.0
5 1:0.2222222222222222 3:0.015625 5:1.0 14:0.3333333333333333 16:0.5 44:0.0625 53:1.0 55:1.0 64:0.1 70:1.0 96:0.2 217:1.0 261:0.25 282:0.14285714285714285 295:1.0 308:0.3333333333333333 377:1.0 485:1.0 593:0.5 632:1.0 869:1.0 1184:1.0 1187:1.0 1518:1.0
5 1:0.2222222222222222 3:0.0625 44:0.0625 64:0.05 73:0.4 114:1.0 118:1.0 162:1.0 173:4.0 264:0.6666666666666666 295:1.0 307:0.5 416:0.07692307692307693 485:2.0 924:1.0
5 3:0.015625 32:0.3333333333333333 295:1.0 1507:1.0
5 1:0.2222222222222222 3:0.03125 25:1.0 50:0.25 57:0.15384615384615385 62:1.0 73:0.2 96:0.4 178:1.0 224:0.5 253:0.6 290:1.0 302:0.5 334:1.0 439:0.2 895:1.5 1438:1.0
5 3:0.015625 5:1.0 14:0.3333333333333333 16:0.5 43:0.2 96:0.2 109:1.0 114:1.0 175:1.0 246:1.0 253:0.2 280:1.0 381:1.0 435:1.0 869:1.0 1083:1.0
5 162:1.0 1334:1.0
5 1:0.2222222222222222 3:0.015625 16:0.5 43:0.2 44:0.0625 49:1.0 50:0.125 56:1.0 57:0.6923076923076923 83:1.0 96:0.4 142:1.0 173:1.0 175:1.0 246:1.0 301:1.0 357:1.0 536:1.0 628:1.0 650:1.0 870:1.0 933:1.0 1176:1.0
5 3:0.015625 14:0.3333333333333333 50:0.0625 68:0.5 73:0.2 88:0.16666666666666666 92:1.0 119:0.14285714285714285 246:1.0 548:1.0
5 1:0.2222222222222222 3:0.015625 16:0.5 51:1.0 106:0.5 162:1.0 246:1.0 264:0.3333333333333333 276:0.2 436:1.0 602:1.0 1143:1.0 1316:1.0
5 3:0.015625 14:0.3333333333333333 15:1.0 32:0.3333333333333333 161:0.14285714285714285 162:1.0 246:1.0 308:0.3333333333333333
5 1:0.1111111111111111 3:0.015625 16:0.5 57:0.3076923076923077 106:0.5 246:1.0 308:0.3333333333333333 411:1.0
5 3:0.046875 56:1.0 57:0.07692307692307693 246:1.0 253:0.2 259:1.0 302:0.5 308:0.3333333333333333 593:0.5 602:1.0
5 1:0.1111111111111111 3:0.03125 16:1.0 43:0.2 44:0.0625 51:1.0 56:1.0 57:0.23076923076923078 73:0.2 97:1.0 165:1.0 245:1.0 252:1.0 253:0.2 308:0.6666666666666666 333:1.0 410:2.0 450:1.0 463:1.0 777:1.0 1011:1.0 1077:1.0 1547:1.0
5 1:0.1111111111111111 3:0.015625 142:2.0 246:1.0 1339:1.0 1475:1.0
5 1:0.2222222222222222 3:0.015625 55:1.0 57:0.15384615384615385 124:1.0 161:0.14285714285714285 162:1.0 265:1.0 325:1.0 381:1.0 419:1.0 442:1.0 567:1.0
5 1:0.1111111111111111 3:0.03125 5:1.0 57:0.07692307692307693 246:1.0 302:0.5 308:0.3333333333333333 321:1.0 350:1.0 501:1.0 1645:1.0
5 3:0.015625 14:0.3333333333333333 16:0.5 44:0.0625 51:1.0 57:0.07692307692307693 73:0.2 96:0.2 162:1.0 233:1.0 281:0.5 298:1.0 308:0.3333333333333333 331:1.0 450:1.0 914:1.0 1559:1.0
5 16:0.5 25:1.0 44:0.0625 50:0.0625 51:1.0 57:0.07692307692307693 73:0.2 162:1.0 175:1.0 253:0.2 276:0.2 298:1.0 308:0.3333333333333333
5 3:0.015625 51:1.0 56:1.0 57:0.15384615384615385 71:1.0 90:1.0 141:1.0 162:1.0 175:2.0 245:1.0 282:0.14285714285714285 298:1.0 308:0.3333333333333333 638:1.0
5 1:0.1111111111111111 14:0.6666666666666666 44:0.0625 64:0.1 96:0.2 162:1.0 175:1.0 261:0.125 264:0.3333333333333333 298:2.0 406:1.0 479:0.5 524:1.0 638:1.0
5 1:0.2222222222222222 57:0.07692307692307693 175:1.0 589:1.0 859:1.0 1434:1.0
|
6a002e5cb27b2dd7a80a45e4d2bf9267c0c61354
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/2.3/Unix-Windows/scilab-2.3/macros/auto/dsimul.sci
|
e8fcd1dfc7921b46f37ce0589b1cabcb51f0b69c
|
[
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] |
permissive
|
clg55/Scilab-Workbench
|
4ebc01d2daea5026ad07fbfc53e16d4b29179502
|
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
|
refs/heads/master
| 2023-05-31T04:06:22.931111
| 2022-09-13T14:41:51
| 2022-09-13T14:41:51
| 258,270,193
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 78
|
sci
|
dsimul.sci
|
function [y]=dsimul(sld,u)
[a,b,c,d,x0]=sld(2:6);
y=c*ltitr(a,b,u,x0)+d*u;
|
d5a4b92c0831322ad3295420ae763d0c0ae6fde1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2459/CH12/EX12.14/Ex12_14.sce
|
df5ab4cff03d5199264ed3baa8250f55e9c9a454
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 421
|
sce
|
Ex12_14.sce
|
//chapter12
//example12.14
//page251
Vcc=20 // V
Re=5 // kilo ohm
Rc=1 // kilo ohm
Vbe=0 // considering it as negligible
R1=10 // kilo ohm
R2=10 // kilo ohm
V2=Vcc*R2/(R1+R2)
// since V2=Vbe+Ie*Re so
Ie=(V2-Vbe)/Re
Ic=Ie
Vce=Vcc-Ic*(Rc+Re)
Vc=Vcc-Ic*Rc
printf("emitter current = %.3f mA \n",Ie)
printf("collector emitter voltage = %.3f V \n",Vce)
printf("collector potential = %.3f V \n",Vc)
|
d4eb3541c973a9d346e492261cacf869d043f8e1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1379/CH7/EX7.1.2/example7_2.sce
|
b793f2281bed709acf1d24a4d2ec433dcdf65a97
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 564
|
sce
|
example7_2.sce
|
//exapple 7.2
clc; funcprot(0);
// Initialization of Variable
mu=2.5/1000;
rho=897;
g=9.81;
pi=3.1414;
K=5.1;
l=6.35/1000;
d=l;
hei=24.5+0.65;
len=24.5;
dc=2.65;//dia of column
thik=0.76/1000;
Vs=pi*d^2/4*l-pi*l/4*(d-2*thik)^2;//volume of each ring
n=3.023*10^6;
e=1-Vs*n;
e=round(e*1000)/1000;
Surfacearea=pi*d*l+2*pi*d^2/4+pi*(d-2*thik)*l-2*pi*(d-2*thik)^2/4;
S=Surfacearea/Vs;
S=round(S);
delP=hei*g*rho;
delP=round(delP/100)*100;
u=e^3*delP/K/S^2/mu/(1-e)^2/len;
Q=pi*dc^2/4*u;
disp(Q,"initial volumetric flow rate in (m^3/s):")
|
d46783d5b6b2cb2a0150bb28c4caf1cee571ba4a
|
efd8a524f4cb26e7523ef0e7211ba3ea3b60177d
|
/tests/test-tab-noskip.tst
|
326dfb43283ba4d6c37611a109770d372220c97a
|
[
"Apache-2.0"
] |
permissive
|
archiecobbs/csvprintf
|
2788ee5c236d0e3ea329c927f15464c09ecef118
|
270286b352559219b26127775238331e052150ec
|
refs/heads/master
| 2023-08-03T18:32:23.588637
| 2023-07-31T21:45:54
| 2023-07-31T21:45:54
| 34,139,639
| 38
| 4
| null | 2015-12-05T20:53:45
| 2015-04-17T20:53:56
|
C
|
UTF-8
|
Scilab
| false
| false
| 96
|
tst
|
test-tab-noskip.tst
|
FLAGS='-nj -s \t'
STDIN='aaa\tbbb\tccc\n\t\t\n'
STDOUT='\x1e["","",""]\n'
STDERR=''
EXITVAL='0'
|
ddfaa90436578d3a588002550abf78ce6f32f74e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1946/CH4/EX4.9/Ex_4_9.sce
|
f4ffb50f003c361a6fe41df477a342eadbbdddcc
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 397
|
sce
|
Ex_4_9.sce
|
// Example 4.9:Attenuation
clc;
clear;
close;
Pb=150;//Threshold optical power for brillouin scattering in milli watt
Pr=1.5;//Threshold optical power for Raman scattering in watt
d=8;//Core diameter in micro meter
v=1;//frequency in Giga Hertz
h=(5.9*10^-2*d^2*Pb*10^-3)/((4.4*10^-3*d^2*Pr));
alpha=(Pb*10^-3)/((4.4*10^-3*d^2*h^2));// Attenuation in db/Km
disp(alpha,"Loss in dB/Km")
|
4d7e93a5b9ee8ca06aa66807c6ebbd50c9673982
|
b4e34afbccba260cb01882a6e81a58851bc6ee2c
|
/min_square_non_lin.sce
|
c7963a3f93dc876dc0fd8ecf08b436f5660a0367
|
[] |
no_license
|
gabrielseibel1/num
|
258ce3b7a99a3bcd091ba4791be6f48de60a49c2
|
088ae943687d83d1cf4a84e59bcb70af1eea6ee5
|
refs/heads/master
| 2020-06-11T14:52:40.461998
| 2019-06-27T23:10:50
| 2019-06-27T23:10:50
| 194,003,761
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 485
|
sce
|
min_square_non_lin.sce
|
function a = non_lin_adjust(x, y, yTransform, varargin)
// Adjusts functions to points {x,y} minimizing squared error
//size of the system
n = size(x, 1)
//save number of provided functions
nFuncs = argn(2) - 3
//make V
V = zeros(n,nFuncs)
for i = 1:n
for j = 1:nFuncs
V(i,j) = varargin(j)(x(i))
end
end
//solve sys Ma=w for a (M = V'V, w = V'y --> a = (V'V)-1 V'y)
a = inv(V'*V)*V'*yTransform(y)
endfunction
|
6f8fdcba8aeee65b5d20905aee73f226a5f4ad68
|
683d2599aa2be1a5f74b928d545b20e7ea656cd1
|
/microdaq/macros/signal_get.sci
|
a3d34002b0fe0e7a85070ef385779b3edcfac939
|
[
"BSD-3-Clause"
] |
permissive
|
pj1974/Scilab
|
5c7fb67d5cae5ac0cdf78e3dd66b97ba50f9fc95
|
cd54f1bd8502d6914ad6ff5271ca0e6e3d323935
|
refs/heads/master
| 2020-12-25T17:12:56.934984
| 2015-10-06T17:16:11
| 2015-10-06T17:16:11
| 41,862,822
| 0
| 0
| null | 2015-09-03T14:00:56
| 2015-09-03T14:00:56
| null |
UTF-8
|
Scilab
| false
| false
| 247
|
sci
|
signal_get.sci
|
function [result, data] = signal_get(id, signal_rows, signal_cols)
[data result] = call("sci_signal_get",..
id, 1, "i",..
"out",..
[signal_rows, signal_cols], 2, "d",..
[1, 1], 3, "i");
endfunction
|
256754872ec45c258fb21d4180b69448dd40079e
|
e0124ace5e8cdd9581e74c4e29f58b56f7f97611
|
/3899/CH3/EX3.6/Ex3_6.sci
|
0083332db5a2959b14574f21d4d0485a978ac1a3
|
[] |
no_license
|
psinalkar1988/Scilab-TBC-Uploads-1
|
159b750ddf97aad1119598b124c8ea6508966e40
|
ae4c2ff8cbc3acc5033a9904425bc362472e09a3
|
refs/heads/master
| 2021-09-25T22:44:08.781062
| 2018-10-26T06:57:45
| 2018-10-26T06:57:45
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 508
|
sci
|
Ex3_6.sci
|
//finding the signal energy and power of signal//
//part-A//
n=-100:100
x=(0.9).^abs(n).*sin(2*%pi*n/4);
p=x.^2;
s=sum(p);
disp(['(a) s=',string(s)]);
//part-B//
N0=35;
delta5=4
delta7=-7
x1=delta5.*delta5+delta7.*delta7
//The impules in the two periodic impulses only coincide at integer multiple of 35.
//In this summation they coincide only at n=0
// The net impules strength at n=0 is -3
x1=-3.*-3;
x2=4.*delta7.*delta7+6.*delta5.*delta5;
px=(x1+x2)/35;
disp(['(b) px=',string(px)])
|
84bd9fe8e7581b6b426b320e92c14583b2b1a04d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/626/CH7/EX7.5/7_5.sce
|
60afc3f2f23191bb95963bebb231ebc6c90fc54c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 214
|
sce
|
7_5.sce
|
clear;
clc;
close;
disp("Example 7.5")
ps=1.5
es=0.9
gm=1.4
ts=1+(1/es)*(ps^((gm-1)/gm)-1)
ec=(gm-1)/gm*(log(ps))/log(ts)
disp(ts,"Total temperature ratio :")
disp(ec,"Compressor polytropic efficiency :")
|
bdc0b36565b1598821d3176a92402006069ae2db
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2453/CH2/EX2.16/2_16.sce
|
27f00d78dca9e8ffab1f2777f8a9f2f78a486fcf
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 339
|
sce
|
2_16.sce
|
//To calculate the highest order for which Bragg's reflection can be seen
lamda = 1.5; //wavelength, A.U
d = 1.6; //interplanar spacing, A.U
theta = 90; //maximum glancing angle possible, degrees
n = 2*d*sind(theta)/lamda; //maximum possible diffraction order
printf("maximum possible diffraction order is %d",n);
|
463d8396bb15cec16b4e5c8bab2b96f900d81ff8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/43/CH3/EX3.17.b/ex3_17b.sce
|
386da92f6039582b29de168d39005826e60bcec1
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 73
|
sce
|
ex3_17b.sce
|
//Ex 3.17b
clc;
syms z n;
x=1;
X=symsum(x*z^(-n),n,0,%inf);
disp(X);
|
69f9faba5a5cbd5c052007b6d32b263ca62ac3a6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1448/CH9/EX9.11.e/E9_11.sce
|
fcd0c93397fe35b62d64983d3335ebda482c250c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 361
|
sce
|
E9_11.sce
|
clc
//Initialization of variables
v=2
F=9.6485*10^4 //C/mol
E=0.2684 //V
V1=0.2699 //V
V2=0.2669 //V
T1=293 //K
T=298 //K
T2=303 //K
//calculations
Gr= -v*F*E
Sr=v*F*(V2-V1)/(T2-T1)
Hr=Gr+T*Sr
//results
printf("Gibbs enthalpy = %.2f kJ/mol",Gr/1000)
printf("\n Standard Entropy = %.1f J /K mol",Sr)
printf("\n Enthalpy = %.1f kJ/mol",Hr/1000)
|
e2d5666e8deedb976a1aba6eb4ccb822a73cf632
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1847/CH1/EX1.36/Ch01Ex36.sce
|
a9a5f1aae1a180a3b95263a2c90e035372ab8c5c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 816
|
sce
|
Ch01Ex36.sce
|
// Scilab Code Ex1.36:: Page-1.47 (2009)
clc; clear;
h = 6.6e-034; // Planck's constant, Js
m = 9.1e-031; // Electronic mass, kg
e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
l = 2.5e-010; // Length of one dimensional potential box, m
// First energy level
n = 1; // The lowest energy state of electron
E1 = h^2*n^2/(8*m*l^2); // Energy of the electron in first state, J
// Second energy level
n = 2; // The second energy state of electron
E2 = h^2*n^2/(8*m*l^2); // Energy of the electron in second state, J
printf("\nThe energy of the electron in lowest state = %5.2f eV", E1/e);
printf("\nThe energy of the electron in second state = %5.2f eV", E2/e);
// Result
// The energy of the electron in lowest state = 5.98 eV
// The energy of the electron in second state = 23.93 eV
|
05755dbd843f52f465dee32db59d0b99548c3427
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2609/CH6/EX6.9/Ex6_9.sce
|
540e9f913bdebad34802933a03b1c61d6f10e94d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 606
|
sce
|
Ex6_9.sce
|
//Ex 6.9
clc;
clear;
close;
format('v',6);
disp("Part (a)");
L1=25;//micro H
L2=10;//micro H
Rf=22;//kohm
C=0.01;//micro F
LT=L1+L2;//micro H
fr=1/(2*%pi*sqrt(C*10^-6*LT*10^-6));//Hz
fr=fr/1000;//kHz
f0=fr;///kHz
disp(f0,"Oscillation frequency(kHz)");
Ri=Rf/(L1/L2);//kohm
disp(Ri,"Resistance Ri(kohm)");
disp("Part (b)");
C1=220;//pF
C2=680;//pF
Rf=22;//kohm
L=1;//mH
CT=C1*C2/(C1+C2);//pF
fr=1/(2*%pi*sqrt(L*10^-3*CT*10^-12));//Hz
fr=fr/1000;//kHz
f0=fr;///kHz
f0=round(f0);//kHz
disp(f0,"Oscillation frequency(kHz)");
Ri=Rf/(C1/C2);//kohm
disp(Ri,"Resistance Ri(kohm)");
|
c7007ef9ec886a80aa707ddb4cdda804c2de05ce
|
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
|
/Sparky Comp 64 - Air 2.sce
|
a1d57adf2e591db4c4bbb1dd76889323db0ced24
|
[] |
no_license
|
MBHuman/Scenarios
|
be1a722825b3b960014b07cda2f12fa4f75c7fc8
|
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
|
refs/heads/master
| 2023-01-14T02:10:25.103083
| 2020-11-21T16:47:14
| 2020-11-21T16:47:14
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 68,531
|
sce
|
Sparky Comp 64 - Air 2.sce
|
Name=Sparky Comp 64 - Air 2
PlayerCharacters=A
BotCharacters=Air2 Rotation.rot
IsChallenge=true
Timelimit=1000.0
PlayerProfile=A
AddedBots=Air2 Rotation.rot
PlayerMaxLives=0
BotMaxLives=9
PlayerTeam=1
BotTeams=2
MapName=godwhygodpleasegod.map
MapScale=5.0
BlockProjectilePredictors=false
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=0.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=1.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=
WeaponHeroTag=Track Master 100
DifficultyTag=4
AuthorsTag=Ku, Tammas, Daan
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=An alternative to the Air no UFO no SKYBOTS
GameVersion=2.0.2.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
LockFOVRange=true
LockedFOVMin=103.0
LockedFOVMax=160.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=Air2 B1
DodgeProfileNames=Air2 Close Long;Air2 Close MidLong
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=2.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Air2
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.000 Y=0.000 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Air2 B2
DodgeProfileNames=Air2 Far Long;Air2 Far MidLong
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=2.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Air2
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.000 Y=0.000 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Air2 B3
DodgeProfileNames=Air2 Mid Long;Air2 Mid MidLong
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=2.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Air2v
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.000 Y=0.000 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Air2 B4
DodgeProfileNames=Air2 Close Short;Air2 Close MidShort
DodgeProfileWeights=1.3;1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Air2
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.000 Y=0.000 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Air2 B5
DodgeProfileNames=Air2 Far Short;Air2 Far MidShort
DodgeProfileWeights=1.3;1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Air2
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.000 Y=0.000 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Air2 B6
DodgeProfileNames=Air2 Mid MidShort;Air2 Mid Short
DodgeProfileWeights=1.3;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=2.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Air2v
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.000 Y=0.000 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Air2 B7
DodgeProfileNames=Air2 Close Short;Air2 Close MidShort
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Air2F
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.000 Y=0.000 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Air2 B8
DodgeProfileNames=Air2 Far Short;Air2 Far MidShort
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Air2F
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.000 Y=0.000 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Air2 B9
DodgeProfileNames=Air2 Mid MidShort;Air2 Mid Short
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=2.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Air2Fv
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=0.000 Y=0.000 Z=0.000
LaserAlpha=1.0
[Bot Rotation Profile]
Name=Air2 Rotation
ProfileNames=Air2 B1;Air2 B2;Air2 B3;Air2 B4;Air2 B5;Air2 B6;Air2 B7;Air2 B8;Air2 B9
ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
Randomized=false
[Character Profile]
Name=A
MaxHealth=100.0
WeaponProfileNames=Track Master 100;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=500.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=0.0
Gravity=3.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=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=50.0
BlockSpawnDistance=9001.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=true
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Air2
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=12000.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=550.0
Gravity=0.75
AirControl=1.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=8
AirJumpVelocity=450.0
MainBBType=Spheroid
MainBBHeight=200.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=3.0
JetpackFuelIncPerSec=1.2
JetpackFuelRegensInAir=true
JetpackThrust=4000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Air2v
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=900.0
MaxCrouchSpeed=500.0
Acceleration=12000.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=1100.0
Gravity=1.8
AirControl=1.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=10
AirJumpVelocity=300.0
MainBBType=Spheroid
MainBBHeight=200.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.02
JetpackFullFuelTime=999.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=true
JetpackThrust=7000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Air2F
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1500.0
MaxCrouchSpeed=500.0
Acceleration=12000.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=550.0
Gravity=0.75
AirControl=1.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=8
AirJumpVelocity=450.0
MainBBType=Spheroid
MainBBHeight=200.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=3.0
JetpackFuelIncPerSec=1.2
JetpackFuelRegensInAir=true
JetpackThrust=4000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Air2Fv
MaxHealth=1000.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=0.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1350.0
MaxCrouchSpeed=500.0
Acceleration=12000.0
AirAcceleration=16000.0
Friction=0.0
BrakingFrictionFactor=0.0
JumpVelocity=1100.0
Gravity=2.8
AirControl=1.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=10
AirJumpVelocity=360.0
MainBBType=Spheroid
MainBBHeight=200.0
MainBBRadius=100.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=true
JetpackActivationDelay=0.02
JetpackFullFuelTime=999.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=true
JetpackThrust=7000.0
JetpackMaxZVelocity=900.0
JetpackAirControlWithThrust=1.0
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=0.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=Air2 Close Long
MaxTargetDistance=800.0
MinTargetDistance=300.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.8
MaxLRTimeChange=1.5
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Close MidLong
MaxTargetDistance=800.0
MinTargetDistance=300.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.6
MaxLRTimeChange=1.1
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Far Long
MaxTargetDistance=2300.0
MinTargetDistance=2000.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.8
MaxLRTimeChange=1.5
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Far MidLong
MaxTargetDistance=2300.0
MinTargetDistance=2000.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.6
MaxLRTimeChange=1.1
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Mid Long
MaxTargetDistance=1600.0
MinTargetDistance=1300.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.8
MaxLRTimeChange=1.5
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Mid MidLong
MaxTargetDistance=1600.0
MinTargetDistance=1300.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.6
MaxLRTimeChange=1.1
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Close Short
MaxTargetDistance=800.0
MinTargetDistance=300.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=0.4
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Close MidShort
MaxTargetDistance=800.0
MinTargetDistance=300.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.35
MaxLRTimeChange=0.55
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Far Short
MaxTargetDistance=2300.0
MinTargetDistance=2000.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=0.4
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Far MidShort
MaxTargetDistance=2300.0
MinTargetDistance=2000.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.35
MaxLRTimeChange=0.55
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Mid MidShort
MaxTargetDistance=1600.0
MinTargetDistance=1300.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.35
MaxLRTimeChange=0.55
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Air2 Mid Short
MaxTargetDistance=1600.0
MinTargetDistance=1300.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=0.4
MinFBTimeChange=1.0
MaxFBTimeChange=3.0
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.1
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
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.01
MaxJumpTime=0.15
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Weapon Profile]
Name=Track Master 100
Type=Hitscan
ShotsPerClick=1
DamagePerShot=1.0
KnockbackFactor=0.0
TimeBetweenShots=0.01
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=1000000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.01
HitSoundCooldown=0.01
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=300.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=0.0
TaggingHitFactor=0.0
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=Horizontal (16:9)
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=None
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=1000.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-576.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
448.000000 272.000000 -784.000000
-576.000000 272.000000 -784.000000
-576.000000 0.000000 -768.000000
448.000000 0.000000 -768.000000
448.000000 0.000000 -784.000000
-576.000000 0.000000 -784.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 272.000000 272.000000
448.000000 272.000000 272.000000
448.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 0.000000 272.000000
448.000000 0.000000 272.000000
448.000000 0.000000 256.000000
-576.000000 0.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
448.000000 272.000000 256.000000
464.000000 272.000000 256.000000
464.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
448.000000 0.000000 256.000000
464.000000 0.000000 256.000000
464.000000 0.000000 -768.000000
448.000000 0.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-592.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 272.000000 -768.000000
-592.000000 272.000000 -768.000000
-592.000000 0.000000 256.000000
-576.000000 0.000000 256.000000
-576.000000 0.000000 -768.000000
-592.000000 0.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 0.000000 256.000000
448.000000 0.000000 256.000000
448.000000 0.000000 -768.000000
-576.000000 0.000000 -768.000000
-576.000000 -16.000000 256.000000
448.000000 -16.000000 256.000000
448.000000 -16.000000 -768.000000
-576.000000 -16.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
448.000000 512.000000 256.000000
464.000000 512.000000 256.000000
464.000000 512.000000 -768.000000
448.000000 512.000000 -768.000000
448.000000 272.000000 256.000000
464.000000 272.000000 256.000000
464.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 512.000000 -768.000000
448.000000 512.000000 -768.000000
448.000000 512.000000 -784.000000
-576.000000 512.000000 -784.000000
-576.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
448.000000 272.000000 -784.000000
-576.000000 272.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
-576.000000 512.000000 272.000000
448.000000 512.000000 272.000000
448.000000 512.000000 256.000000
-576.000000 512.000000 256.000000
-576.000000 272.000000 272.000000
448.000000 272.000000 272.000000
448.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-592.000000 512.000000 256.000000
-576.000000 512.000000 256.000000
-576.000000 512.000000 -768.000000
-592.000000 512.000000 -768.000000
-592.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 272.000000 -768.000000
-592.000000 272.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-64.000000 352.000000 -256.000000
448.000000 480.000000 -256.000000
448.000000 608.000000 -768.000000
448.000000 464.000000 -256.000000
-64.000000 480.000000 -768.000000
-64.000000 464.000000 -768.000000
-64.000000 336.000000 -256.000000
448.000000 512.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-64.000000 352.000000 -256.000000
-64.000031 480.000000 -768.000000
-576.000000 608.000000 -768.000000
-64.000031 464.000000 -768.000000
-576.000000 480.000000 -255.999969
-576.000000 464.000000 -255.999969
-64.000000 336.000000 -256.000000
-576.000000 512.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-64.000000 352.000000 -256.000000
-63.999908 480.000000 256.000000
448.000092 608.000000 256.000000
-63.999908 464.000000 256.000000
448.000000 480.000000 -256.000061
448.000000 464.000000 -256.000061
-64.000000 336.000000 -256.000000
448.000000 512.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-64.000000 352.000000 -256.000000
-576.000000 480.000000 -255.999954
-576.000000 608.000000 256.000061
-576.000000 464.000000 -255.999954
-63.999939 480.000000 256.000000
-63.999939 464.000000 256.000000
-64.000000 336.000000 -256.000000
-576.000000 512.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 2 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-32.000000 160.000000 -320.000000
-96.000000 160.000000 -320.000000
-112.000000 160.000000 -304.000000
-16.000000 0.000000 -304.000000
-16.000000 160.000000 -304.000000
-96.000000 0.000000 -320.000000
-112.000000 0.000000 -304.000000
-32.000000 0.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 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 4 3 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-128.000000 160.000000 -288.000000
-128.000000 160.000000 -223.999985
-112.000000 160.000000 -207.999985
-112.000000 0.000000 -304.000000
-112.000000 160.000000 -304.000000
-128.000000 0.000000 -223.999985
-112.000000 0.000000 -207.999985
-128.000000 0.000000 -288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 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 4 3 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-96.000000 160.000000 -192.000000
-31.999985 160.000000 -192.000000
-15.999985 160.000000 -208.000000
-112.000000 0.000000 -208.000000
-112.000000 160.000000 -208.000000
-31.999985 0.000000 -192.000000
-15.999985 0.000000 -208.000000
-96.000000 0.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 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 4 3 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
0.000000 160.000000 -224.000000
0.000000 160.000000 -288.000000
-16.000000 160.000000 -304.000000
-16.000000 0.000000 -208.000000
-16.000000 160.000000 -208.000000
0.000000 0.000000 -288.000000
-16.000000 0.000000 -304.000000
0.000000 0.000000 -224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 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 4 3 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-90.503319 160.000000 -202.830017
-117.169975 160.000000 -229.496689
-133.333344 160.000000 -154.666672
-165.333344 368.000000 -186.666672
-133.333344 368.000000 -154.666672
-165.333344 160.000000 -186.666672
-117.169975 368.000000 -229.496689
-90.503319 368.000000 -202.830017
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-104.043243 160.000000 -204.969131
-112.932121 160.000000 -249.413559
-165.333344 160.000000 -186.666672
-176.000000 368.000000 -240.000000
-165.333344 368.000000 -186.666672
-176.000000 160.000000 -240.000000
-112.932121 368.000000 -249.413559
-104.043243 368.000000 -204.969131
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-176.000000 368.000000 -240.000000
-112.000000 368.000000 -240.000000
-112.000000 368.000000 -272.000000
-176.000000 368.000000 -272.000000
-176.000000 160.000000 -240.000000
-112.000000 160.000000 -240.000000
-112.000000 160.000000 -272.000000
-176.000000 160.000000 -272.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
-70.586411 160.000000 -207.067871
-115.030861 160.000000 -215.956772
-80.000000 160.000000 -144.000000
-133.333344 368.000000 -154.666672
-80.000000 368.000000 -144.000000
-133.333344 160.000000 -154.666672
-115.030861 368.000000 -215.956772
-70.586411 368.000000 -207.067871
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-80.000000 368.000000 -144.000000
-48.000000 368.000000 -144.000000
-48.000000 368.000000 -208.000000
-80.000000 368.000000 -208.000000
-80.000000 160.000000 -144.000000
-48.000000 160.000000 -144.000000
-48.000000 160.000000 -208.000000
-80.000000 160.000000 -208.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
-48.000000 160.000000 -144.000000
5.333333 160.000000 -154.666672
-57.413589 160.000000 -207.067871
-12.969143 368.000000 -215.956772
-57.413589 368.000000 -207.067871
-12.969143 160.000000 -215.956772
5.333333 368.000000 -154.666672
-48.000000 368.000000 -144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
5.333333 160.000000 -154.666672
37.333336 160.000000 -186.666672
-37.496681 160.000000 -202.830017
-10.830013 368.000000 -229.496704
-37.496681 368.000000 -202.830017
-10.830013 160.000000 -229.496704
37.333336 368.000000 -186.666672
5.333333 368.000000 -154.666672
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
37.333336 160.000000 -186.666672
48.000000 160.000000 -240.000000
-23.956757 160.000000 -204.969147
-15.067871 368.000000 -249.413574
-23.956757 368.000000 -204.969147
-15.067871 160.000000 -249.413574
48.000000 368.000000 -240.000000
37.333336 368.000000 -186.666672
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-16.000000 368.000000 -240.000000
48.000000 368.000000 -240.000000
48.000000 368.000000 -272.000000
-16.000000 368.000000 -272.000000
-16.000000 160.000000 -240.000000
48.000000 160.000000 -240.000000
48.000000 160.000000 -272.000000
-16.000000 160.000000 -272.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
-23.956757 160.000000 -307.030884
-15.067871 160.000000 -262.586426
37.333336 160.000000 -325.333374
48.000000 368.000000 -272.000000
37.333336 368.000000 -325.333374
48.000000 160.000000 -272.000000
-15.067871 368.000000 -262.586426
-23.956757 368.000000 -307.030884
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-37.496689 160.000000 -309.170044
-10.830017 160.000000 -282.503357
5.333333 160.000000 -357.333344
37.333336 368.000000 -325.333374
5.333333 368.000000 -357.333344
37.333336 160.000000 -325.333374
-10.830017 368.000000 -282.503357
-37.496689 368.000000 -309.170044
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-57.413540 160.000000 -304.932129
-12.969096 160.000000 -296.043274
-48.000000 160.000000 -368.000000
5.333333 368.000000 -357.333344
-48.000000 368.000000 -368.000000
5.333333 160.000000 -357.333344
-12.969096 368.000000 -296.043274
-57.413540 368.000000 -304.932129
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-80.000000 368.000000 -304.000000
-48.000000 368.000000 -304.000000
-48.000000 368.000000 -368.000000
-80.000000 368.000000 -368.000000
-80.000000 160.000000 -304.000000
-48.000000 160.000000 -304.000000
-48.000000 160.000000 -368.000000
-80.000000 160.000000 -368.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
-115.030914 160.000000 -296.043274
-70.586456 160.000000 -304.932129
-133.333344 160.000000 -357.333344
-80.000000 368.000000 -368.000000
-133.333344 368.000000 -357.333344
-80.000000 160.000000 -368.000000
-70.586456 368.000000 -304.932129
-115.030914 368.000000 -296.043274
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-117.169975 160.000000 -282.503357
-90.503311 160.000000 -309.170044
-165.333344 160.000000 -325.333344
-133.333344 368.000000 -357.333344
-165.333344 368.000000 -325.333344
-133.333344 160.000000 -357.333344
-90.503311 368.000000 -309.170044
-117.169975 368.000000 -282.503357
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-112.932129 160.000000 -262.586426
-104.043243 160.000000 -307.030884
-176.000000 160.000000 -272.000000
-165.333344 368.000000 -325.333344
-176.000000 368.000000 -272.000000
-165.333344 160.000000 -325.333344
-104.043243 368.000000 -307.030884
-112.932129 368.000000 -262.586426
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000 internal/editor/textures/editor_clip
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -736.000000
Bool8 teamA 0
entity
type CameraPath
UInt32 entityIdAttachedTo 5
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 224.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 416.000000 0.000000 -256.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -544.000000 0.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
|
783024cac4957d61851b76733e86b316ec72fb44
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/842/CH11/EX11.7/Example11_7.sce
|
7cc4d3cac39208ad82b1a420840a67b82b908418
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 166
|
sce
|
Example11_7.sce
|
//clear//
//Example 11.7
//Nyquist Plot
s = %s;
T =1;
//Open Loop Transfer Function
G = syslin('c',[-%e^(-s*T)]);
clf;
nyquist(G)
show_margins(G,'nyquist')
|
7957ccee365e367c4b778fd0e5ef24d95028131c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/911/CH9/EX9.2/ex_9_2.sce
|
0d76906d315a21fc03f387b7364362dff2df4411
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 230
|
sce
|
ex_9_2.sce
|
//example 9.2//
clc
//clears the screen//
clear
//clears all existing variables//
close
//closes all other files//
a=log(6000)
//from the data//
b=log(2)
c=a/b;
N=round(c)
disp('Minimum number of flip flops=')
disp(N)
|
ea3dc5c68efb197a7b0e8cfeb9747061aa923936
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2885/CH15/EX15.4/ex15_4.sce
|
826892181fc19cfb5daa515f0f735e724ae39143
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 293
|
sce
|
ex15_4.sce
|
//Calculate multiplier resistance and voltage multiplying factor
clear;
clc;
//soltion
//given
Im=50*10^-6;//A
Rm=1000;//ohm
V=50;//V
Rs=V/Im-Rm;
printf("The value of multiplier resistance is %.0f kΩ\n",Rs/1000);
Vm=Im*Rm;
n=V/Vm;
printf("Voltage multiplying factor =%.0f",n);
|
400f15fb7a1df9dd3acb915705060c5894e6922b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2582/CH6/EX6.3/Ex6_3.sce
|
04c423d74667312eb69e7dc87bea585dfc4679eb
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 216
|
sce
|
Ex6_3.sce
|
//Ex 6.3
clc;clear;close;
format('v',5)
n=8;//no. of bits
Range=0:10;//range
LSB=max(Range)/2^n;//V
MSB=max(Range)/2^0;//V
VFS=MSB-LSB;//V
disp(LSB*1000,"LSB(mV)");
disp(MSB,"MSB(V)");
disp(VFS,"VFS(V)");
|
b66f9679d48274784d3af2579c9a1fbf63cc59ab
|
4f670294d6de9b3dff4c0eb15980b23d1ffaa629
|
/macros/pclknn.sci
|
0792288fe343c71a7f10a5d8c7e2467453444fe0
|
[] |
no_license
|
avinashr175/FOSSEE-Image-Processing-Toolbox
|
49cb1352c88f9a5c7d7e984a42e3ba4ed60b059d
|
ff4afb9f614c2dd401d56fa8b5ad35cf5427a5cc
|
refs/heads/master
| 2020-12-02T16:17:03.873509
| 2017-07-10T09:21:12
| 2017-07-10T09:21:12
| 96,529,053
| 0
| 0
| null | 2017-07-07T10:43:02
| 2017-07-07T10:43:01
| null |
UTF-8
|
Scilab
| false
| false
| 1,384
|
sci
|
pclknn.sci
|
// Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author: M Avinash Reddy
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [out] = pclknn(pcloud,q,k)
//Finds the k nearest neighbours of the query point q, in the point cloud.
//
//Calling Sequence
//pcloud=pcread('path of point cloud file')
//out = pclknn(pcloud,q,k)
//
//
//Parameters
//pcloud : a point cloud structure read using pcread function
//q : a three dimensional query point
//k : a positive integer specifying the number of nearest neighbours in pcloud for the query point p.
//
//Description
//out = knn(q,f,k) returns a 2xk matrix .
//The first row of out contains the indices of the k nearest points in the dataset(f) from the query point.
//The second row contains the corresponding distances(squared euclidean distance).
//
//Examples
//q=[0 0 0];
//data=pcread('data/cube.ply')
//k=3;
//out=pclknn(data,q,k);
//Authors
// M Avinash Reddy
if size(q)~=3
error(msprintf("Size of the query point must be three"))
end
data=pcloud.Location
out = knn(q,data,k)
endfunction
|
a0444b125cc65a63f9dca1e86ff2feeedafceb00
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2744/CH9/EX9.3/Ex9_3.sce
|
fcf86d81dd66a79a82963c478a4fa85ddde27d23
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 416
|
sce
|
Ex9_3.sce
|
clear;
clc;
b = 10;// inches
d = 6;//inches
l = 15;// feet
A = 11.77;// in^2
I_xx = 204.80;// in^4
I_yy = 21.76;// in^4
f_c = 21;// tons/in^2
a = 1/7500;
n = 3;//factor of safety
k = sqrt(I_yy/A);// radius of gyration
P = f_c*A/(1+(a/2)*(l*12/k)^2);// tons
P_s = P/n;// safe load
printf('The safe axial load = %.3f tons',P_s);
//there is a minute calculation error in the answer given in text book
|
7ad789b7d96bc86c00d092256cbe6287aff5819c
|
717ddeb7e700373742c617a95e25a2376565112c
|
/2474/CH10/EX10.11/Ch10Ex11.sce
|
9770b88c98f90ef76457640f3579c2122c6c11ac
|
[] |
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
| 632
|
sce
|
Ch10Ex11.sce
|
// Scilab code Ex10.11: Pg.464 (2008)
clc; clear;
T_c = 0.517; // Critical temperature for Cadmium, K
k = 1.38e-23; // Boltzmann constant, J/K
q = 1.6e-19; // Electronic charge, J/eV
h = 6.63e-34; // Planck's constant, J-s
c = 3e+08; // Velocity of light, m/s
E_g = 3.5*k*T_c/q; // Energy gap for cadmium, eV
lambda = h*c/(E_g*q); // Required wavelength of photon, m
printf("\nThe energy gap for cadmium = %4.2e eV ", E_g);
printf("\nThe required wavelength of photon = %4.2e m", lambda);
// Result
// The energy gap for cadmium = 1.56e-004 eV
// The required wavelength of photon = 7.97e-003 m
|
523266506f3a15a957f94c6e632f70503ec9aa4b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2789/CH6/EX6.5/Ex6_5.sce
|
dae1ae0d96583d1a3cee1165c2ed9b40e7e3a21c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 502
|
sce
|
Ex6_5.sce
|
clear;
clc;
//page no. 186
p1 = 14.7;//psia
V1 = 1732;//pfs
a1 = 862;//fps
M1 = V1/a1;
M2 = sqrt((1+0.4*0.5*M1^2)/(1.4*M1^2 - 0.4*0.5));
p2 = p1*(1+2*(1.4/2.4)*(M1^2 -1));
V2 = V1*(2+0.4*M1^2)/(2.4*M1^2);
a2 = V2/M2;
T2 = a2^2/(1.4*32.2*53.3);
T1 = a1^2/(1.4*32.2*53.3);
del_T = T2-T1;
printf('p2 = %.1f psia,\n V2 = %d fps,\n a2 = %d fps,\n T2 = %d degreeR',p2,V2,a2,T2);
printf('\n Rise of temperature = %d degreeF',del_T);
//There are errors in the answer given in textbook
|
7082880ccb60eca654bea6796debe92189bbef65
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3554/CH15/EX15.11/Ex15_11.sce
|
e8e877d749a88e476a208fea1ef33334cad36954
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 912
|
sce
|
Ex15_11.sce
|
// Exa 15.11
clc;
clear all;
// Given data
Fc=4;// kHz
Q=8;
// Solution
disp(" The FLT-U2 can be used as a notch filter by summing the inverted output of the bandpass filter designed with the input signal by means of the uncommitted opamp.");
// From table 15.3 given on page no 538
R2=100;// k Ohms
R3=100/((3.40*Q)-1);
// R1 treated as open circuit
printf(' The R1 is open while R2 and R3 are %.1f , %.2f K ohms respectively \n',R2,R3);
// From equations 15.54 given on page no 538 we get R4 and R5
R4=(5.03)*10^7/(Fc*10^3);
R5=R4;
printf(' The calculated value of R4=R5=%.2f k Ohms(12 k Ohms) \n',R4/1000);
disp(" Let R6=R7=R8=10 K ohms ");
R=10000;//R=R6=R7=R8=10 k Ohms
R9=(1/R+1/R+1/R)^-1;
printf(' The value of R9 =%.2f K ohms \n',R9/1000);
disp(" The complete circuit diagram is shown in fig. 15.26 on page no. 541.");
// The value of R3 vary due to round off error.
|
7c727149dd7bb4ecddd30b7b8e8c73defee317aa
|
c557cd21994aaa23ea4fe68fa779dd8b3aac0381
|
/test/dedup.tst
|
1f527d5be4c5fc987b8742d8180a04a42a6abbb5
|
[
"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
| 619
|
tst
|
dedup.tst
|
## test the dedup function
read <<EOF
blob
mark :1
data 75
This is a toy repo intended as a correctness test for the dedup operation.
blob
mark :2
data 50
This is a file with content in a duplicate blob.
blob
mark :3
data 50
This is a file with content in a duplicate blob.
reset refs/heads/master
commit refs/heads/master
mark :4
author Eric S. Raymond <esr@thyrsus.com> 1575197044 -0500
committer Eric S. Raymond <esr@thyrsus.com> 1575197044 -0500
data 36
This test only requires one commit.
M 100644 :1 README
M 100644 :3 duplicative2
M 100644 :2 duplicative
reset refs/heads/master
from :4
EOF
dedup
write -
|
74fa50cd6fe6c13fe314ee1682af5f008e251382
|
e82d1909ffc4f200b5f6d16cffb9868f3b695f2a
|
/Lista 11/Lista Baron/q2.sci
|
adab44b63477a9c89ede680e0fd0bc788fcedba1
|
[] |
no_license
|
AugustoCam95/Computational-Linear-Algebra
|
eb14307dd3b45ccc79617efe74d1faca639c36c5
|
99b1a1f9499fbc4343bd5c878444e9e281952774
|
refs/heads/master
| 2020-03-30T22:26:23.790763
| 2018-10-05T03:34:06
| 2018-10-05T03:34:06
| 151,666,289
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 833
|
sci
|
q2.sci
|
function [x,niter]=q2(A,b,w,e)
//dimensão da matriz A
[l,c]=size(A)
D=diag(diag(A))
L=(tril(A)-D)
M = w/(2 - w) * ( ( (1/w) * D ) + L ) * inv(D) * ( (1/w) * D + L')
niter=0
//x inicia como vetor de zeros
x=ones(l,1)
//r=b, pois A*x=0 dado x=(0,0,0)'
r=b-A*x
//p recebe (M^-1)*r
p=GradConj(M,r,e)
//lambda é o produto interno <r',r>
gama= r' * p
while(gama>e)
y = A*p
alfa = gama/((y')*p)
x = x+alfa*p
r = r - alfa*y
s = GradConj(M,x,e)
betaa = r' * s
p = s + (betaa/gama) * p
gama = betaa
niter=niter+1
end
endfunction
|
b05117a3a9fb4c03b27b78211a5dfad823de75cf
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/683/CH22/EX22.2/FC_22_2.sce
|
fa490678408704bc8a7bc261ac3641382f1e959e
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,117
|
sce
|
FC_22_2.sce
|
// 22-2
clc;
clear;
//Power P
P=80*10^3; //(Watt)
N=3000; //(Engine rpm)
w=2*%pi*3*10^3/60
Tf=8*10^4/w;
Rm=100;//(mm)
p=0.2 //N/mm^2
u=0.22
// let width b= (R1-R2).
//Axial force W=2*pi*Rm*b*p
//Torque T=u*W*Rm
b=Tf/(u*2*%pi*(Rm^2)*p);
b=50;
R2=Rm+b;
R1=Rm-b;
Di=2*R1; //inner diameter
W=2*%pi*Rm*b*p;
n=8; //n is number of springs
//Axial force per spring W1
W1=W/n;
W1=W1+15;
//axial deflection del
del=10;
//stiffness k
k=W1/del;
// Spring index C
C=6;
//number of coils n1
n1=6; //Assumption
d=k*n*n1*(C^3)/(80*10^3);
d=11; // Rounding off to nearest standard value
D=C*d;
clearance=2;
FL=((n1+2)*d)+(2*del)+clearance; // two end coils, therefore (2*del)
// printing data in scilab o/p window
printf("\nThe Torque is %0.2f Nm",Tf);
printf("\nThe width is %0.0f mm",b);
printf("\nThe force is %0.0f N",W);
printf("\nThe Axial force per spring is %0.0f N",W1);
printf("\nThe Spring stiffness is %0.0f N/mm",k);
printf("\nThe Spring wire diameter is %0.0f mm",d);
printf("\nThe Mean coil diameter is %0.0f mm",D);
printf("\nThe Free length is %0.0f mm",FL);
|
9a878db480e97caa17bcc41914e75c23c85cd79a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1151/CH1/EX1.46/example46.sce
|
db0d6b4c77c01984e0baa945d4f282f863f47717
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 464
|
sce
|
example46.sce
|
//to find transfer function using mason gain formula
printf("syms G1 G2 G3 G4 H1 H2 \n //gains of forward paths\n P1=G1*G2*G3;//forward path1 gain\n P2=G4;//forward path2 gain\n //gain of individual loops\n L1=-G2*H1;\n L2=-G1*G2*H1;\n L3=-G2*G3*H2;\n //there are no two non touching loops\n //since all the loops touches the forward path1 and loop 1,2,3 do not touch forward path 2\n d1=1;\n d2=1-(L1+L3+L2);\n G=(P1*d1+P2*d2)/d2;\n transfer function C/R=G")
|
30c2dbc197c4b3bcfa87140f50d70c0b57621814
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2762/CH12/EX12.5.2/12_5_2.sce
|
09f4d08815ed27c2e8333a628897207ba2309632
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 634
|
sce
|
12_5_2.sce
|
//Transport Processes and Seperation Process Principles
//Chapter 12
//Example 12.5-2
//Liquid Liquid and Fluid Solid Seperation Process
//given data
ya=0.04;//concn of A in upper layer
yb=0.02;//concn of B in upper layer
yc=0.94;//concn of C in upper layer
xa=0.12;//concn of A in lower layer
xb=0.86;//concn of B in lower layer
xc=0.02;//concn of C in lower layer
M=100;//mass of mixture in kg
xam=0.1;
//Material Balance Equations
//eq 1: V+L=M
//eq 2:ya*V+xa*L=xam*M
A=[1 1;ya xa];
B=[M; M*xam];
X=inv(A)*B
V=X(1,1);
L=X(2,1);
mprintf("amt of vapour phase=%f kg ",V)
mprintf("amt of liquid phase=%f kg ",L)
|
ca12483e3391569c5cc40fdf831e234533dc3484
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1382/CH6/EX6.26/EX_6_26.sce
|
423afb69ee70c7612ea444321d4d788815c5ec2f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 284
|
sce
|
EX_6_26.sce
|
// Example 6.26;// Gain
clc;
clear;
close;
a=60;// OPEN LOOP VOLTAGE GAIN IN dB
A= 10^(a/20);// open voltage gain
Beta=0.009;// feedback ratio
Af= (A/(1+(Beta*A)));//GAIN WITH FEEDBACL
AfdB= 20*(log10(Af));//gain with feedback in dB
disp(AfdB,"gain with feedback in dB is")
|
be81912a81d3088bd7b8a7a1397a04e6f1b2845f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1946/CH7/EX7.10.b/Ex_7_10_b.sce
|
1f225f15562b0e1eb5e719820031f7ceb57063f2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 607
|
sce
|
Ex_7_10_b.sce
|
// Example 7.10.b;//power emitted
clc;
clear;
close;
n=3.5;//refractive index
e=1.6*10^-19;//Electronic charge
ht=6.62*10^-34;//Constt
C=3*10^8;//sPPED OF LIGHT IN M/S
h=1310*10^-9;//wavelength in meter
tr=25;//radiative recombination time in nano second
tnr=90;//non radiative recombination time in nano second
i=35;//injected current in milli ampere
t=(tr*tnr)/(tr+tnr);//Bulk recombination life time in nano second
nint= (t/tr)
Pint= (nint*((ht*C*i*10^-3)/(e*h)))*10^2;//internal power level in milli watt
P=(Pint)/(n*(n+1)^2)*10;//Power emitted
disp(P,"power emitted in milli watt is")
|
54beaa1434257022c31e1834c2d24bb7374aa715
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/797/CH8/EX8.8.e/8_08_example.sci
|
298499649b413ddad46e29202d32fff489830752
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 664
|
sci
|
8_08_example.sci
|
//Example 8-8 Gravity-Driven Water Flow in a Pipe
T = 10 //temperature of water [degree C]
D = 5 //diameter of pipe [cm]
rho = 999.7 //density of water at 10 C [kg/m^3]
mu = 1.307 * 10**-3 //dynamic viscosity of water at 10C [kg/m.s]
epsilon = 0.00026 //roughness of cast iron pipe [m]
Vdot = 6 //flow rate required [L/s]
L = 89 //amount of piping [m]
K_Lentrance = 0.5 //loss coefficient for sharp edged entrance
K_Lelbow = 0.3 //loss coefficients for standard flanged elbows
K_Lvalve = 0.2 //loss coefficient for gate valve
K_Lexit = 1.06 //loss coefficient at submerged exit
g = 9.81 //gravitational acceleration [m/s^2]
z2 = 4 //elevation of waterlel in tank 2
|
d8185127363a8b575a68dc1cfe9353f57c6005d0
|
377a111fb7585caf110377625ad0e261a44e93ed
|
/herbie/writting/publish/codes/lockwood/aim_optimization/Lockwood/PATO_PLUS/tst/input1.tst
|
b1df2332d36a81fd0d06c89ea7997bfc7ff53fa2
|
[] |
no_license
|
gasduster99/theses
|
ba385499ea0a502b9067c243f7100d82ff1ef4ce
|
9c5f8b5d7564292e2e36547ed8d5563a8639f158
|
refs/heads/master
| 2023-08-25T18:14:09.741032
| 2023-08-22T05:33:06
| 2023-08-22T05:33:06
| 217,375,576
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 54
|
tst
|
input1.tst
|
12
1
1
1
1
0
1
353
6003
13526
2472
777
600
|
eb8670295f6275677ee18ff181db98841d840b33
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/698/CH14/EX14.3/P3_Friction_radii_for_different_conditions.sce
|
656cb6abd0f9e52a853100bb2669057522044959
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,767
|
sce
|
P3_Friction_radii_for_different_conditions.sce
|
clc
//Example 14.3
//Comparison of friction radius between clutches of different dimensions
//Ro= outer radius; Ri=inner radius
//-----------------------------------------------------------------------------
//Case 1: Ro=100mm ; Ri= 90mm
Ro1=100//mm
Ri1=90//mm
Ro31=Ro1^3
Ri31=Ri1^3
Ro21=Ro1^2
Ri21=Ri1^2
// with uniform pressure:
Rfp1=((2/3)*(Ro31-Ri31))/(Ro21-Ri21)
// with uniform wear
Rfw1=(Ro1+Ri1)/2
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//Case 2: Ro=100mm ; Ri= 25mm
Ro2=100//mm
Ri2=25//mm
Ro32=Ro2^3
Ri32=Ri2^3
Ro22=Ro2^2
Ri22=Ri2^2
// with uniform pressure:
Rfp2=((2/3)*(Ro32-Ri32))/(Ro22-Ri22)
// with uniform wear
Rfw2=(Ro2+Ri2)/2
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
//Printing result file to .txt
res3= mopen(TMPDIR+'/3_friction_radii_for_different_conditions.txt','wt');
mfprintf(res3,'CASE I: Ro=100mm and Ri=90mm\n')
mfprintf(res3,'The friction radius based on uniform pressure theory is %2.1f mm\n',Rfp1);
mfprintf(res3,'The friction radius based on uniform wear theory is %2.1f mm\n',Rfw1);
mfprintf(res3,"\n\nCASE II: Ro=100mm ; Ri= 25mm\n")
mfprintf(res3,"The friction radius based on uniform pressure theory is %2.1f mm\n",Rfp2)
mfprintf(res3,"The friction radius based on uniform wear theory is %2.1f mm",Rfw2)
mclose(res3);
editor(TMPDIR+'/3_friction_radii_for_different_conditions.txt')
//------------------------------------------------------------------------------
//--------------------------------End of program--------------------------------
|
bceddc56d905fd63ef9748b6e1753de4cbc3feda
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2495/CH8/EX8.18.11/Ex8_18_11.sce
|
5ad28026cc34dc0d2411c6bfeb681b14a5572c8b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 176
|
sce
|
Ex8_18_11.sce
|
clear
clc
E1=-0.151;//in V
E2=0.799;//in v
E=(E1-E2);//in V
RT_F=0.05913;//in V
Ksp=10^(E/RT_F);//solubility product
printf('Ksp=%.2f*10^-17',Ksp/10^-17)
//page 487
|
d89da8e59c2b6b3ad89b56b579931bbcafe17639
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/539/CH5/EX5.3/Example_5_3.sce
|
51fc97cb6bd6a96d78d44a7ec4e883087d3f6902
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 347
|
sce
|
Example_5_3.sce
|
//Nonsteady-State Diffusion Time Computation II
clear;
clc;
printf("\tExample 5.3\n");
D500=4.8*10^-14; //Diffusion coefficient at 500 C
D600=5.3*10^-13; //Diffusion coefficient at 600 C
t600=10; //Time in hours to diffuse
t500=D600*t600/D500;
printf("\nTime to diffuse at 500 C is %.1f h\n",t500);
//End
|
31df270b6aaeeccede5402f311542106f261bb19
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/992/CH9/EX9.4/Ex9_4.sce
|
697de7a2489749fc7bbbdb855ad4dc4ea9bf6519
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 243
|
sce
|
Ex9_4.sce
|
//Exa:9.4
clc;
clear;
close;
//Given:
Pe=10^-5;
v=0.5;
n=2*10^-6;
x=3.02;//at erfc(x)=2*10^-5 at x=3.02
T=(x^2*n)/(4*v^2);
B=1/T;
printf("\n Minimum Time Period= %f 10^-6",T*10^6);
printf("\n Maximum Bit rate = %fKb/sec",B/10^3);
|
4134f83fe767ffb8f83d4afa6489f6e65a0a375d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1172/CH1/EX1.5/Example1_5.sce
|
4f9e5b9118d67b95e2efd8da66fa273fd8f69916
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 537
|
sce
|
Example1_5.sce
|
clc
//Given that
x_n=1.88// fringe separation of nth fringe from central fringe in cm
N=20// order of fringe
beta=0.02//fringe width in cm
D=120// separation between source and eyepiece in cm
d=0.076// separation between sources in cm
//Sample Problem 5 Page No. 47
printf ("\n # Problem 5 # \n")
printf (" \n Standard formula used \n beta= lambda*D/d \n")
beta=x_n/N // calculation of angle formed
lambda=d*beta/D*1e8 // calculation of Wavelength of light
printf ("\n Wavelength of light used is %d Angstrom.", lambda)
|
238b1ca8646f4f678b4e8598d63822872c43bb99
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/995/CH2/EX2.3/Ex2_3.sce
|
0bd668d75571218258bbf0804f46fce7e36a9566
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
Ex2_3.sce
|
//Ex:2.3
clc;
clear;
close;
v=28;//in volts
i=0.1;//in A
r=v/i;
p=v*i;
printf("Resistance Value = %f ohms & Power dissipated = %f W",r,p);
|
d8c3225f08debca4956da1447b097d3b3dda40e3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1445/CH1/EX1.56/ch1_ex_56.sce
|
3ec8eff3ec4449f3fdee77146e08d75641095204
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 513
|
sce
|
ch1_ex_56.sce
|
//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
//Example 56
disp("CHAPTER 1");
disp("EXAMPLE 56");
//VARIABLE INITIALIZATION
r=1; //this is an assumption
r1=r*1; //in Ohms
r2=r*2; //in Ohms
r3=r*3; //in Ohms
//SOLUTION
ra=r1+r2+((r1*r2)/(r1+r2));
rb=r2+r3+((r2*r3)/(r2+r3));
rc=r1+r3+((r1*r3)/(r1+r3));
disp(sprintf("The equivalent delta values are %f Ω, %f Ω and %f Ω",ra,rb,rc));
//END
|
6f0feb84d2fbeea7c6b47e1afa463f1eafa6a55c
|
048b7c76423fe27dee2e31a52bae93c95883614e
|
/macros/autoreg_matrix.sci
|
bc36969ae0f6db784a77e408ebcfb2825804dead
|
[] |
no_license
|
vu2swz/FOSSEE-Signal-Processing-Toolbox
|
aa5f283d050be62418dddbf41552f197b9949c4c
|
d97a4b7e2f0f25fb5cd94bd90a3b822592179d1e
|
refs/heads/master
| 2021-08-19T20:06:19.346872
| 2017-11-27T09:57:21
| 2017-11-27T09:57:21
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 229
|
sci
|
autoreg_matrix.sci
|
function y = autoreg_matrix(Y, varargin)
funcprot(0);
rhs = argn(2)
if(rhs<2 | rhs>2)
error("Wrong number of input arguments.");
end
select(rhs)
case 2 then
y = callOctave("autoreg_matrix", Y, varargin(1));
end
endfunction
|
eed2dc0e139835425210a7fd07da5802748cbbea
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3507/CH22/EX22.2/Ex22_2.sce
|
cf9bc854a2398a6165460ba312ef3ac666b68fde
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 168
|
sce
|
Ex22_2.sce
|
//chapter22
//example22.2
//page491
I_DSS=32 // mA
V_GS=-4.5 // V
V_GS_off=-8 // V
I_D=I_DSS*(1-V_GS/V_GS_off)^2
printf("drain current = %.3f mA \n",I_D)
|
adbb6e77073ce164b26e2424a0f8ed05d22c21b9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/125/DEPENDENCIES/dft_mtx.sce
|
aaee76368494a1a4ae739e000f7242543732cf1a
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 545
|
sce
|
dft_mtx.sce
|
function [D] = dft_mtx(n)
f = 2*%pi/n; // Angular increment.
w = (0:f:2*%pi-f/2).' *%i; //Column.
//disp(w)
x = 0:n-1; // Row.
D = exp(-w*x); // Exponent of outer product.
for i = 1:n
for j = 1:n
if((abs(real(D(i,j)))<0.0001)&(abs(imag(D(i,j)))<0.0001))
D(i,j)=0;
elseif(abs(real(D(i,j)))<0.0001)
D(i,j)= 0+%i*imag(D(i,j));
elseif(abs(imag(D(i,j)))<0.0001)
D(i,j)= real(D(i,j))+0;
end
end
end
endfunction
|
08859ff2f530a20bb8124aa4da8615b1804871a3
|
f00b7886965ffc7ecabd54c526aa091a8777d7ce
|
/projects/04/divide/divide.tst
|
846143d6484b20cf78581086a95fc3a04a831fd5
|
[] |
no_license
|
mishelle123/nand2tetris
|
7917e1d28d6c3daeaef2c0709244294919e4cdea
|
50db787e3cb75d708a1af99f931a83038ade0a96
|
refs/heads/master
| 2020-04-26T04:10:48.137524
| 2015-04-21T16:46:41
| 2015-04-21T16:46:41
| 33,683,102
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,443
|
tst
|
divide.tst
|
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/04/divide/Divide.tst
load Divide.asm,
output-file Divide.out,
compare-to Divide.cmp,
output-list RAM[13]%D2.7.2 RAM[14]%D2.7.2 RAM[15]%D2.7.2;
set RAM[13] 0, // Set test arguments
set RAM[14] 1,
set RAM[15] -1; // Test that program initialized product to 0
repeat 300 {
ticktock;
}
output;
set PC 0,
set RAM[13] 1, // Set test arguments
set RAM[14] 1,
set RAM[15] -1; // Ensure that program initialized product to 0
repeat 300 {
ticktock;
}
output;
set PC 0,
set RAM[13] 4, // Set test arguments
set RAM[14] 4,
set RAM[15] -1; // Ensure that program initialized product to 0
repeat 300 {
ticktock;
}
output;
set PC 0,
set RAM[13] 3, // Set test arguments
set RAM[14] 1,
set RAM[15] -1; // Ensure that program initialized product to 0
repeat 300 {
ticktock;
}
output;
set PC 0,
set RAM[13] 4, // Set test arguments
set RAM[14] 2,
set RAM[15] -1; // Ensure that program initialized product to 0
repeat 300 {
ticktock;
}
output;
set PC 0,
set RAM[13] 5, // Set test arguments
set RAM[14] 2,
set RAM[15] -1; // Ensure that program initialized product to 0
repeat 300 {
ticktock;
}
output;
set PC 0,
set RAM[13] 2, // Set test arguments
set RAM[14] 4,
set RAM[15] -1; // Ensure that program initialized product to 0
repeat 300 {
ticktock;
}
output;
|
433c8a99a8941cc20e058e09129dc76ac83db1ea
|
46b2e0d9f2de6dc4ce132cc405494354129e9fb3
|
/False position.sce
|
2ffe3985d722cfd78addcf4d3a222298f887774e
|
[] |
no_license
|
nilaybhatia/Scilab-pracs
|
967f03fc5aa8ad000e221944f17e9b4a81b38883
|
a885af1da65d57bd66a6f9d546cd9595ca652b43
|
refs/heads/master
| 2020-04-09T07:23:47.318916
| 2018-12-08T16:58:25
| 2018-12-08T16:58:25
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 191
|
sce
|
False position.sce
|
clc
str=input('Enter y as a function of x ',"string")
//str='y=exp(-x)-sin(x)'
deff('[y]=f(x)',str)
n=input('Maximum number of iterations= ')
printf ("\t Iteration \t Value of x \n\n")
|
dc5343a07acb1d1f549c222f45f3f4baf846934d
|
3cbdc2f272df05cfe8c6636d4504e9e3d2e4fe3f
|
/SciLab/btw.sce
|
5318a0b0dd401f31fe51374bdf04cfd78036f7f6
|
[] |
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
| 906
|
sce
|
btw.sce
|
funcprot(0);
N=256;
A=int(4*rand(N,N));
//A=2*ones(N,N);
function z=btwUpdate(n,x)
zc=4; // Threshold value
zz=zeros(n+2,n+2);
zz(2:n+1,2:n+1)=x;
zz(n/2+1,n/2+1) = zz(n/2+1,n/2+1)+1;
toppled=%T;
while toppled
toppled=%F;
for i=2:n+1
for j=2:n+1
if zz(i,j)>=zc then
zz(i,j) = zz(i,j)-zc;
zz(i-1,j) = zz(i-1,j)+1;
zz(i+1,j) = zz(i+1,j)+1;
zz(i,j-1) = zz(i,j-1)+1;
zz(i,j+1) = zz(i,j+1)+1;
toppled=%T;
end
end
end
end
z=zz(2:n+1,2:n+1);
endfunction
function z=btwRun(n,niter,x)
z=x;
for j=1:niter
z=btwUpdate(n,z);
end
endfunction
X = btwRun(N,10000,A);
Y = fftshift(fft(X));
set(gcf(),"color_map",jetcolormap(128));
clf();
grayplot(0:255,0:255,abs(Y));
|
4e4f4e0696f3e5aa1698076f88a1c45eb608e4fc
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3863/CH12/EX12.2/Ex12_2.sce
|
cdd152ddcd9a0a36ee1296772da3304306217fd2
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 268
|
sce
|
Ex12_2.sce
|
clear
//
//Given
//Variable declaration
L=4*1000 //Length in mm
//Calculation
thetaA=((%pi/180)*(1)) //Slope at the ends in radians
yc=(thetaA*(L/3)) //Deflection at the centre in mm
//Result
printf("\n Deflection at the centre = %0.3f mm",yc)
|
5150a71d74cb871d74b3a6cda0c589845d195414
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1457/CH13/EX13.2/13_2.sce
|
828afb1f9d760953a970acab9ba5d7f9cb61a47f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 269
|
sce
|
13_2.sce
|
clc
//Initialization of variables
disp("For steady state, dV/dt =0")
Q=1600/449
A2=0.1963
g=32.2
rp2=2000
//calculations
V2=Q/A2
hp1=32*V2^2 /(2*g) -50
hp2=hp1*(rp2/1650)^2
hpf=169 //ft
Q=4.1 //cfs
//results
printf("Steady state flow rate = %.2f cfs",Q)
|
1f58de7ef137321534dc06ff38807a26d86529d7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1133/CH9/EX9.43/Example9_43.sce
|
06248f33937069f33affe1997b4e6e375ed1d383
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 150
|
sce
|
Example9_43.sce
|
//Example 9.43
clc
disp("The maximum frequency is given by,")
f=1/(2*%pi*(9*10^-6)*2^8)
format(6)
disp(f,"f_max(in Hz) = 1 / 2*pi*(T_C)*2^n =")
|
c920a38b0d7fb68d995b948fd529a703288202cd
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/199/CH7/EX7.7.b/Example_7_7_b.sce
|
cd5bc999722a95eb15092db0ef811edc63b7c86f
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,860
|
sce
|
Example_7_7_b.sce
|
// Chapter7
// Page.No-270
// Example_7_7_b
// Frequency response of bandpass filter
// Given
clear;clc;
Aft=4; // Passband gain of the filter
fl=200; // Lower Cut-off frequency
fh=1000; // Higher Cut-off frequency
f1=10; // Input freq in Hz
av1=(Aft*(f1/fl))/sqrt((1+(f1/fl)^2)*(1+(f1/fh)^2));
printf("\n Gain magnitude av1 at f1 is = %.4f \n",av1) // Result
f2=30; // Freq in Hz
av2=(Aft*(f2/fl))/sqrt((1+(f2/fl)^2)*(1+(f2/fh)^2));
printf("\n Gain magnitude av2 at f2 is = %.4f \n",av2) // Result
f3=100; // Freq in Hz
av3=(Aft*(f3/fl))/sqrt((1+(f3/fl)^2)*(1+(f3/fh)^2));
printf("\n Gain magnitude av3 at f3 is = %.4f \n",av3) // Result
f4=200; // Freq in Hz
av4=(Aft*(f4/fl))/sqrt((1+(f4/fl)^2)*(1+(f4/fh)^2));
printf("\n Gain magnitude av4 at f4 is = %.4f \n",av4) // Result
f5=447.2; // Freq in Hz
av5=(Aft*(f5/fl))/sqrt((1+(f5/fl)^2)*(1+(f5/fh)^2));
printf("\n Gain magnitude av5 at f5 is = %.4f \n",av5) // Result
f6=700; // Freq in Hz
av6=(Aft*(f6/fl))/sqrt((1+(f6/fl)^2)*(1+(f6/fh)^2));
printf("\n Gain magnitude av6 at f6 is = %.4f \n",av6) // Result
f7=1000; // Freq in Hz
av7=(Aft*(f7/fl))/sqrt((1+(f7/fl)^2)*(1+(f7/fh)^2));
printf("\n Gain magnitude av7 at f7 is = %.4f \n",av7) // Result
f8=2000; // Freq in Hz
av8=(Aft*(f8/fl))/sqrt((1+(f8/fl)^2)*(1+(f8/fh)^2));
printf("\n Gain magnitude av8 at f8 is = %.4f \n",av8) // Result
f9=7000; // Freq in Hz
av9=(Aft*(f9/fl))/sqrt((1+(f9/fl)^2)*(1+(f9/fh)^2));
printf("\n Gain magnitude av9 at f9 is = %.4f \n",av9) // Result
f10=10000; // Freq in Hz
av10=(Aft*(f10/fl))/sqrt((1+(f10/fl)^2)*(1+(f10/fh)^2));
printf("\n Gain magnitude av10 at f10 is = %.4f \n",av10) // Result
x=[f1 f2 f3 f4 f5 f6 f7 f8 f9 f10];
y=[av1 av2 av3 av4 av5 av6 av7 av8 av9 av10];
gainplot(x,y);
title('Frequency Response');
xlabel('Frequency(Hz)');
ylabel('Voltage gain(dB)');
|
21630b4c2db7effdad20da9408b4908f7f5257dc
|
ffda72af53128fa90b1d8ad1a8772b965c2e3442
|
/Collatz Conjecture/collatz-single.sci
|
b066d59c134330da1d9e31f0b0f0586e8dfd1d14
|
[
"MIT"
] |
permissive
|
linux-man/The-Travelling-Salesman-Problem
|
5ca99a3b0024273ed1f6404000fb28785ee18a9f
|
6e6d1020b3ae86dc928aeaeea773065d3a9145d7
|
refs/heads/main
| 2023-03-07T06:04:59.935447
| 2021-02-16T12:52:32
| 2021-02-16T12:52:32
| 333,133,666
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,875
|
sci
|
collatz-single.sci
|
// For this script to work, you need to install bigint toolbox (https://forge.scilab.org/index.php/p/bigint/)
SAVEPATH = "" //Working directory
exec(SAVEPATH + 'bigint/loader.sce',-1)
format("v",25)
warning("off")
scf(0)
n = brand("1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", ..
"10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
//n = bigint("5593453462105867303059672839305273454795820192759372658302057663936930396610304852723594386")
//n = bigint("5593453462105869")
p2Count = 0
nEven = 0
oddCount = 0
x = n
coll = mbigint(x)
while x ~= 1 do
if odd(x) then
x = x * 3 + 1
nEven = 0
oddCount = oddCount + 1
else
x = div2(x)
nEven = nEven + 1
// Counting multiples of powers of 2
if length(p2Count) < nEven then p2Count(nEven) = 0; end
if nEven > 1 then p2Count(nEven - 1) = p2Count(nEven - 1) - 1; end
p2Count(nEven) = p2Count(nEven) + 1
end
coll($ + 1) = x
if modulo(length(coll), 100) == 0 then
clf()
xtitle("collatz Conjecture: n = " + string(n), string(length(coll)), string(iconvert(x, 64)))
plot("nl", iconvert(coll, 64))
end
end
p2Freq = p2Count/sum(p2Count)
for i = 1:length(p2Count) p2(i)=2^i; end
for i = 1:length(p2Count) p2Weight(i) = p2(i)^p2Freq(i); end
disp("Count of powers of 2", p2Count)
disp("Frequency of powers of 2", p2Freq)
disp("Weight of powers of 2", p2Weight)
disp("Total weight of powers of 2", prod(p2Weight))
clf()
xtitle("collatz Conjecture: n = " + string(n), string(length(coll)), string(iconvert(x, 64)))
plot("nl", iconvert(coll, 64))
scf(1)
clf();
title("Collatz Conjecture: Powers of 2 frequency")
plot(p2Freq, "r")
plot((2^(1:length(p2Count)))^-1)
legend(['Real';'Expected']);
|
55158af6f63d39a6eb7bef0fbed8329aea434a04
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1026/CH12/EX12.2/Example12_2.sce
|
a9d5983f070f109c1235910fe0587805f2d7873b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 183
|
sce
|
Example12_2.sce
|
//chapter12,Example12_2,pg 357
lam=1*10^-6//wavelength
n1=1.53
n2=1.5
NA=sqrt((n1^2)-(n2^2))
a=(2.405*lam)/(2*%pi*NA)
printf("core radius\n")
printf("a=%.8f m",a)
|
eba9a46f06fab4c17f0636932fd60bcef067836c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3673/CH17/EX17.5/Ex17_5.sce
|
6eab4fc67de1e5477e79d9cf430b4b9225f8f41c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 992
|
sce
|
Ex17_5.sce
|
//Example 17_5 page no:838
clc;
k=500;
f1=1000;
f2=10000;
L1=k/(%pi*(f2-f1));
C1=(f2-f1)/(4*%pi*k*f1*f2);
L2=C1*k^2;
C2=L1/k^2;
//calculating the T-section filter
L11=16.68/2;//inductance of T-section filter is calculated wrongly in text book
L11=L11;//converting to milliHenry
disp("the value of T-section element is");
disp(L11,"the inductance is (in mH)");
C11=2*C1;
C11=C11*10^6;//converting to microFarad
disp(C11,"the capacitance is (in microFarad)");
C2=0.0707;
L2=3.57;
disp(C2,"the shunt element capacitance is (in microFarad)");
disp(L2,"the shunt element inductance is (in mH)");
//calculating the pi-section filter
C1=0.143;
L1=16.68;
C2=0.0707/2;
L2=2*0.0358;
disp("the value of pi seciton element is");
disp(L11*2,"the inductance is (in mH)");
disp(C11/2,"the capacitance is (in microFarad)");
disp(C2,"the capacitance is(in microFarad)");
disp(L2,"the inductance is (in mH)");
//inductance of T-section filter is calculated wrongly in text book
|
48b026ee3ea23b81798d427f55c5c841d482a5f2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1826/CH18/EX18.4/ex18_4.sce
|
586d08ea8b55f172bfcd9234f35158e5bd6c4057
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 220
|
sce
|
ex18_4.sce
|
// Example 18.4, page no-462
clear
clc
N= 2.7*10^25//atoms m^-3
alfe=0.35*10^-40 //F m^2
eps=8.854*10^-12
epsr=(1+(2*N*alfe)/(3*eps))/(1-(N*alfe)/(3*eps))
printf("The dielectric constant of Ne gas is %.8f",epsr)
|
2d7038717e0f94b0b3652372b22409b10f9bea4b
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2195/CH9/EX9.14.3/ex_9_14_3.sce
|
5deb16127f295442ce1166f942814040029096ba
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 278
|
sce
|
ex_9_14_3.sce
|
//Example 9.14.3 // period and frequency
clc;
clear;
close;
format('v',6)
vdv=2;//volts per division in micro seconds/div
n=12;//no. of divisions
Tp=vdv*n;// period in micro seconds
f=1/(Tp*10^-3);//frequency in kHz
disp(Tp,"period in micro seconds")
disp(f,"frequency in kHz")
|
25abe318e58db943c3769943ba679bf25ad7f884
|
78ff3e16a288175ff606f38ee5ee877d4844773e
|
/10_chapter/10_09_example.sci
|
a49379b5f03fb87e3811c3313b5dd8502d16b9a3
|
[] |
no_license
|
rngalvan/fluid-mech-cengel
|
16c12ed8f71f25c812700be4322328c5663b71cf
|
ee45f924e73cbb8b5716fac43504dac15ffd1f64
|
refs/heads/master
| 2021-05-27T20:52:22.586023
| 2013-04-17T04:25:37
| 2013-04-17T04:25:37
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 376
|
sci
|
10_09_example.sci
|
//Example 10-9 Laminar or Turbulent Boundary Layer?
V = 10 //velocity of water over the fin [km/h]
T = 5 //temperature of water [C]
c = 0.5 //chord length of the fin [m]
rho_water = 999.9 //density of water at 5 C [kg/m^3]
mu = 1.519 * 10**-3 //viscosity of water at 5 C [kg/m.s]
Re_cr = 5 * 10**5 //critical Reynolds number
Re_tran = 30 * 10**5 //transitional Reynolds number
|
9165ef934a3e28729cc0a021a1696d7b09e45ecc
|
d7087cf730b37f76170323e080c090f8094979ac
|
/test/eval_expr/more_3.tst
|
1312ecb98eecbf1a5cd8b1aa33dc210afa3797d3
|
[] |
no_license
|
VladimirMeshcheriakov/42sh
|
025dffe358b86f48eaf7751a5cb08d4d5d5366c4
|
52d782255592526d0838bc40269f6e71f6a51017
|
refs/heads/master
| 2023-03-15T17:26:20.575439
| 2015-06-26T12:44:05
| 2015-06-26T12:44:05
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 114
|
tst
|
more_3.tst
|
<cmd>
./main_test/eval_expr_tst "1+1+0"</cmd>
<ref>
echo "$((1+1+0))"</ref>
<stdout>
2
</stdout>
<ret>
0</ret>
|
05e9c31757ebf7ac0570d380a4b818879fec44be
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3308/CH9/EX9.1/Ex9_1.sce
|
84b918128f05eb2f966deb0ee6b1c3fb2561ed42
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 579
|
sce
|
Ex9_1.sce
|
clc
// Given that
x=0.2// Area fraction of the fibre in the composite
Ef= 300 // Elastic modulus of the fibre in GPa
Em= 100 // Elastic modulus of the matrix in GPa
// Sample Problem on page no. 229
printf("\n # application of reinforced plastics # \n")
Ec = x*Ef + (1-x)*Em
printf("\n\n The Elastic Modulus of the composite is = %d GPa",Ec)
//Let Pf/Pm be r
r=x*Ef/((1-x)*Em)
//Let Pc/Pf be R
R=1+(1/r) // from the relation Pc = Pf + Pm
P=(1*100)/R
printf("\n\n The Fraction of load supported by Fibre is = %f Percent",P)
// Answer in the book is approximated to 43 %
|
0d03363f4bc1c820532e2dfc592bf29515fab885
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1619/CH3/EX3.3.2/Example3_3_2.sce
|
fc65f780436a04f17c8a49aa923112c598038be7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 458
|
sce
|
Example3_3_2.sce
|
//Example 3.3.2page 3.27
clc;
clear;
n= 3.7;
lamda = 950*10^-9;
L= 500*10^-6;
c= 3*10^8;
DELv = c/(2*L*n)*10*10^-10; //converting in GHz...
printf("The frequency spacing is %d GHz",DELv);
DEL_lamda= lamda^2/(2*L*n)*10^9; //converting to nm..
printf("\n\nThe wavelength spacing is %.2f nm",DEL_lamda);
printf("\n\n***NOTE- The value of wavelength taken wrongly in book");
// value of lamda taken wrongly while soving for DEL_LAMDA inthe book..
|
985d9d01fc922140cffa5e0e290de80f5d6af2b9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/122/CH5/EX5.a.8/exaA_5_8.sce
|
ad6403fa7c4a034d684ccbb954ebf44bf38d3526
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 549
|
sce
|
exaA_5_8.sce
|
// Example A-5-8
// Unit step response and partial fraction expansion
clear; clc;
xdel(winsid()); //close all windows
// Please edit path
// cd "<your codes path>/";
// exec("pf_residu.sci");
// exec("plotresp.sci");
s = %s ;
N = poly( [80 72 25 3],'s','c');
D = poly( [80 96 40 8 1],'s','c');
G = syslin('c',N,D)
t = 0:0.05:5;
u = ones(1,length(t));
plotresp(u,t,G,'Unit Step Response of C(s) / D(s)');
// To find the residues of step response
D = D * s;
[r,z,p] = pf_residu(N,D);
disp(z,'zeros = ');disp([p,r],'poles : residues =');
|
c98df957134e0715fca8d6517ab5d5e69e78e493
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2192/CH10/EX10.2/10_2.sce
|
2748d92280a9f09417ef1e27e53c23bb9ad3e80d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 378
|
sce
|
10_2.sce
|
clc,clear
printf('Example 10.2\n\n')
area= 33*13 //length * breadth
E = 72 //illumination
UF = 0.4 //utilisation factor
DF = 1.4 //depreciation factor
wattage_of_lamp=200
lumens_per_lamp= 2730
E_reqd= E*area * DF/UF //total illumination required from source
lamps= E_reqd/lumens_per_lamp//total no of lamps required
printf('Number of lamps required = %.0f',lamps)
|
e0b7b3bcfbdb9bcc61333c5044a193e86d7c039c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2207/CH3/EX3.4.5/ex_3_4_5.sce
|
4ea8035c9531168db83759df97786460579896f9
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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,103
|
sce
|
ex_3_4_5.sce
|
// Example 3.4.5: delay angle,rms , averae output current ,average and rms thyristor current
clc;
clear;
close;
format('v',5)
Vrms=120;//RMS VOLTAGE
R=10;//in ohms
Vldc= (0.25*(2*sqrt(2)*Vrms))/%pi;//in volts
csd= (Vldc*%pi)/(sqrt(2)*Vrms);//
alpha= acosd(csd-1);//
disp("part (a)")
disp(alpha,"delay angle in degree is")
Vrms=120;//RMS VOLTAGE
Vm=sqrt(2)*Vrms;//assume
t=2*%pi/3:%pi;
Vlms=((Vm/(sqrt(2)))*(((1/%pi)*((%pi-(2*%pi)/3)+sind((4*%pi)/6))))^(1/2));
Vldc= (0.25*(2*sqrt(2)*Vrms))/%pi;//in volts
Ildc=Vldc/R;//average load current in ampere
Ilms=Vlms/R;// rms load current in ampere
disp("part (b)")
disp(Ilms,"rms load current in amperes")
disp(Ildc,"average load current in amperes")
//rms load current is calculated wrong in the textbook
Im=Vm/R;//
Ith=((Im/(2*%pi))*intsplin(t,sin(t)));//in amperes
Ithrms=sqrt((Im^2/(2*%pi))*intsplin(t,(sin(t))^2));//in amperes
disp("part (c)")
disp(Ith,"average thyristor current in amperes is")
disp(Ithrms,"rms thyristor current in amperes is")
//average and rms thyrister current is calculated wrong in the textbook
|
a8f80424a1855d4233fe3164aeff7f1ed0808414
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1964/CH5/EX5.10/ex5_10.sce
|
6681404caba2c96f878fe68b7b2f44e83b28d2fe
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
sce
|
ex5_10.sce
|
//Chapter-5, Example 5.10, Page 169
//=============================================================================
clc
clear
//INPUT DATA
//given v=141.4*sin(314*t)
P=700;//power in Watts
pf=0.707;//powerfactor------>leading------>cos(phi)
Vm=141.4;//maximum value of supply voltage
//CALCULATIONS
Vr=Vm/(sqrt(2));//rms value of supply voltage
I=P/(Vr*pf);//current in A
Z=Vr/I;//impedance in ohms
R=(Z)*(pf);//resistance in ohms
phi=acos(pf*180/%pi);//angle in degrees
Xc=(Z)*(sin(phi));//reactance in ohms
C=1/(3.14*7.13);//Capacitance in F
mprintf("Thus resistance and capacitance are %1.2f ohms and %g F respectively",R,C);
//=================================END OF PROGRAM======================================================================================================
;
|
280966aa46ca73b17beb451b0bc943c9c61e9cfe
|
b9781981d5ca15933d6c8d3cbdee299266220fc0
|
/projects/01/Mux4Way.tst
|
980d2975ce40a0d345bcae0583bd4f881cb7d010
|
[] |
no_license
|
zhuyoujun/nand2tetris
|
7740e80bb294068661cf78a939565581eabeec7e
|
ed0c0f5e42bf77df6094e719083513e673594872
|
refs/heads/master
| 2021-01-25T05:57:51.024309
| 2016-02-03T05:56:00
| 2016-02-03T05:56:00
| 39,622,339
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 637
|
tst
|
Mux4Way.tst
|
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/01/Mux4Way.tst
load Mux4Way.hdl,
output-file Mux4Way.out,
compare-to Mux4Way.cmp,
output-list a%B3.1.3 b%B3.1.3 c%B3.1.3 d%B3.1.3 sel%B3.2.3 out%B3.1.3;
set a 0,
set b 1,
set c 0,
set d 1,
set sel 0,
eval,
output;
set sel 1,
eval,
output;
set sel 2,
eval,
output;
set sel 3,
eval,
output;
set a 1,
set b 0,
set c 1,
set d 0,
set sel 0,
eval,
output;
set sel 1,
eval,
output;
set sel 2,
eval,
output;
set sel 3,
eval,
output;
|
d6c4dbc43e87b7f40362dbe8ca1d5fe13ffe5c4d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2594/CH3/EX3.12/Ex3_12.sce
|
2b992f91e695b5878dd2589d771b50eb71c767b6
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 921
|
sce
|
Ex3_12.sce
|
clc
I=2*10^-3
disp("I = "+string(I)+" amphere") //initializing value of current flowing through the sample.
B=1000*10^-4
disp("B= "+string(B)+" Tesla") //initializing value of magnetic field.
w=0.2*10^-3
disp("w = "+string(w)+" mm") //initializing value of width of sample.
l=2*10^-3
disp("l = "+string(l)+" m") //initializing value of length of sample.
t=0.02*10^-3
disp("t = "+string(t)+" m") //initializing value of thickness of sample.
Vaa=10
disp("Vaa = "+string(Vaa)+" V") //initializing value of applied voltage.
Vh=-10*10^-3
disp("Vh = "+string(Vh)+" V") //initializing value of hall voltage.
e=1.6*10^-19
disp("e = "+string(e)+" columb") //initializing value of charge of electron.
n=((I*B)/(e*t*Vh))
disp("electron concentration,n=((I*B)/(e*t*Vh))= "+string(n)+" m^-3")//calculation
un=(I*l/(e*abs(n)*Vaa*w*t))
disp("mobility,un=(I*L/(e*n*Vaa*w*t))= "+string(un)+" m^2/Vs")//calculation
|
b65d261400802dd3b4dca1fc553651c35f8b2979
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1697/CH1/EX1.15/Exa1_15.sce
|
c3616ecefe8df1d13b2e444ceb36b13669e641d3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 271
|
sce
|
Exa1_15.sce
|
//Exa 1.15
clc;
clear;
close;
//given data :
disp("Erms^2 = 30*Wt/r^2");
disp("Wt = Erms^2*r^2/30");
disp("Given : E = 10*I/r");
disp("Wt = (10*I/r)^2*r^2/30")
disp("Wt = 100*I^2/30")
disp("Rr = Wt/I^2 = 100/30");
disp(100/30,"Radiation resistance in Ohm : ");
|
ab4519de2c3e624e9c0ac04acd945dcaf3b265cf
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/569/CH2/EX2.15/2_15.sci
|
e826fa64fc437df136c8479b8e4fd82acfca728c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 294
|
sci
|
2_15.sci
|
//calculating the sum of resistances connected in series with appropriate number of significant figure
clc;
R1=28.7;
R2=3.624;
R=(R1+R2);
disp(R,'sum of resistances(ohm) =');
disp('the resultant resistance is 32.3 ohm as one of the resistance is accurate to three significant figure')
|
90ca2e161a626c1b3f809a855ca6be74f94df3b3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3785/CH6/EX6.12/Ex6_12.sce
|
8e540bd870cfee38e67c9e70a87dd0d4721e86c3
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 293
|
sce
|
Ex6_12.sce
|
// Example 6_12
clc;funcprot(0);
// Given data
// From Example 6_4
h=0.1;// The gap betwen the shaft and the bearing in mm
mu=6.7*10^-5;// Viscosity in Pa/s
rho=8.0*10^2;// kg/m^3
//Calculation
// (b)
t=(rho*(h*10^-3)^2)/mu;// s
printf("\nThe numerical value of t is %0.4f s",t);
|
270fe6d42718ea94b8414dac4a48bc18800e4ddc
|
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
|
/DJ Simulator.sce
|
1c0ef8980dce30ebd81ee787f08aa25d13dd7d67
|
[] |
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
| 156,961
|
sce
|
DJ Simulator.sce
|
Name=DJ Simulator
PlayerCharacters=Quaker
BotCharacters=Quaker Bot Fast Strafes.bot
IsChallenge=true
Timelimit=3600.0
PlayerProfile=Quaker
AddedBots=Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot;Quaker Bot Fast Strafes.bot
PlayerMaxLives=0
BotMaxLives=0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
PlayerTeam=1
BotTeams=2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2
MapName=rave.map
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=true
TimeRefilledByKill=0.0
ScoreToWin=0.0
ScorePerDamage=0.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=IRL
WeaponHeroTag=ur the weapon baby
DifficultyTag=3
AuthorsTag=bozott
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=EVERYONES A DJ
GameVersion=1.0.8.0
ScorePerDistance=0.0
MBSEnable=true
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=At Feet
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=-200.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=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=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 Fast Strafes
DodgeProfileNames=Short Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Quaker
SeeThroughWalls=false
NoDodging=false
NoAiming=true
[Character Profile]
Name=Quaker
MaxHealth=300.0
WeaponProfileNames=;;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=300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=true
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.4
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Dodge Profile]
Name=Short Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.8
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=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=6.0
KnockbackFactor=2.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
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
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
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.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=70.0
ADSFOVScale=Quake/Source
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=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
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-256.000000 0.000000 160.000000
256.000000 0.000000 160.000000
256.000000 0.000000 -160.000000
-256.000000 0.000000 -160.000000
-256.000000 -48.000000 160.000000
256.000000 -48.000000 160.000000
256.000000 -48.000000 -160.000000
-256.000000 -48.000000 -160.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 -16.000000 32.000000
272.000000 -16.000000 32.000000
272.000000 -16.000000 -48.000000
256.000000 -16.000000 -48.000000
256.000000 -48.000000 32.000000
272.000000 -48.000000 32.000000
272.000000 -48.000000 -48.000000
256.000000 -48.000000 -48.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
272.000000 -32.000000 32.000000
288.000000 -32.000000 32.000000
288.000000 -32.000000 -48.000000
272.000000 -32.000000 -48.000000
272.000000 -48.000000 32.000000
288.000000 -48.000000 32.000000
288.000000 -48.000000 -48.000000
272.000000 -48.000000 -48.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
-432.000000 256.000000 -160.000000
384.000000 256.000000 -160.000000
384.000000 256.000000 -176.000000
-432.000000 256.000000 -176.000000
-432.000000 -64.000000 -160.000000
384.000000 -64.000000 -160.000000
384.000000 -64.000000 -176.000000
-432.000000 -64.000000 -176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-448.000000 256.000000 1072.000000
-432.000000 256.000000 1072.000000
-432.000000 256.000000 -176.000000
-448.000000 256.000000 -176.000000
-448.000000 -80.000000 1072.000000
-432.000000 -80.000000 1072.000000
-432.000000 -80.000000 -176.000000
-448.000000 -80.000000 -176.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
384.000000 256.000000 1072.000000
400.000000 256.000000 1072.000000
400.000000 256.000000 -176.000000
384.000000 256.000000 -176.000000
384.000000 -80.000000 1072.000000
400.000000 -80.000000 1072.000000
400.000000 -80.000000 -176.000000
384.000000 -80.000000 -176.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 96.000000 32.000000
384.000000 96.000000 32.000000
384.000000 96.000000 -32.000000
368.000000 96.000000 -32.000000
368.000000 -48.000000 32.000000
384.000000 -48.000000 32.000000
384.000000 -48.000000 -32.000000
368.000000 -48.000000 -32.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
96.000000 208.000000 -80.000000
112.000000 208.000000 -80.000000
112.000000 208.000000 -96.000000
96.000000 208.000000 -96.000000
96.000000 0.000000 -80.000000
112.000000 0.000000 -80.000000
112.000000 0.000000 -96.000000
96.000000 0.000000 -96.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
-96.000000 208.000000 -80.000000
-80.000000 208.000000 -80.000000
-80.000000 208.000000 -96.000000
-96.000000 208.000000 -96.000000
-96.000000 0.000000 -80.000000
-80.000000 0.000000 -80.000000
-80.000000 0.000000 -96.000000
-96.000000 0.000000 -96.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
-224.000000 208.000000 128.000000
-208.000000 208.000000 128.000000
-208.000000 208.000000 112.000000
-224.000000 208.000000 112.000000
-224.000000 0.000000 128.000000
-208.000000 0.000000 128.000000
-208.000000 0.000000 112.000000
-224.000000 0.000000 112.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
208.000000 208.000000 128.000000
224.000000 208.000000 128.000000
224.000000 208.000000 112.000000
208.000000 208.000000 112.000000
208.000000 0.000000 128.000000
224.000000 0.000000 128.000000
224.000000 0.000000 112.000000
208.000000 0.000000 112.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
-432.000000 240.000000 144.000000
384.000000 240.000000 144.000000
384.000000 240.000000 112.000000
-432.000000 240.000000 112.000000
-432.000000 208.000000 144.000000
384.000000 208.000000 144.000000
384.000000 208.000000 112.000000
-432.000000 208.000000 112.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
-432.000000 240.000000 -64.000000
384.000000 240.000000 -64.000000
384.000000 240.000000 -96.000000
-432.000000 240.000000 -96.000000
-432.000000 208.000000 -64.000000
384.000000 208.000000 -64.000000
384.000000 208.000000 -96.000000
-432.000000 208.000000 -96.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
240.000000 224.000000 112.000000
384.000000 224.000000 112.000000
384.000000 224.000000 96.000000
240.000000 224.000000 96.000000
240.000000 0.000000 112.000000
384.000000 0.000000 112.000000
384.000000 0.000000 96.000000
240.000000 0.000000 96.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
352.000000 0.000000 128.000000
368.000000 0.000000 128.000000
368.000000 0.000000 112.000000
352.000000 0.000000 112.000000
352.000000 -48.000000 128.000000
368.000000 -48.000000 128.000000
368.000000 -48.000000 112.000000
352.000000 -48.000000 112.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
272.000000 16.000000 144.000000
288.000000 16.000000 144.000000
288.000000 16.000000 128.000000
272.000000 16.000000 128.000000
272.000000 -48.000000 144.000000
288.000000 -48.000000 144.000000
288.000000 -48.000000 128.000000
272.000000 -48.000000 128.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 0.000000 176.000000
336.000000 0.000000 176.000000
336.000000 0.000000 160.000000
320.000000 0.000000 160.000000
320.000000 -48.000000 176.000000
336.000000 -48.000000 176.000000
336.000000 -48.000000 160.000000
320.000000 -48.000000 160.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
-352.000000 0.000000 176.000000
-336.000000 0.000000 176.000000
-336.000000 0.000000 160.000000
-352.000000 0.000000 160.000000
-352.000000 -48.000000 176.000000
-336.000000 -48.000000 176.000000
-336.000000 -48.000000 160.000000
-352.000000 -48.000000 160.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
-304.000000 16.000000 128.000000
-288.000000 16.000000 128.000000
-288.000000 16.000000 112.000000
-304.000000 16.000000 112.000000
-304.000000 -48.000000 128.000000
-288.000000 -48.000000 128.000000
-288.000000 -48.000000 112.000000
-304.000000 -48.000000 112.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
-400.000000 16.000000 144.000000
-384.000000 16.000000 144.000000
-384.000000 16.000000 128.000000
-400.000000 16.000000 128.000000
-400.000000 -48.000000 144.000000
-384.000000 -48.000000 144.000000
-384.000000 -48.000000 128.000000
-400.000000 -48.000000 128.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
336.000000 16.000000 256.000000
352.000000 16.000000 256.000000
352.000000 16.000000 240.000000
336.000000 16.000000 240.000000
336.000000 -48.000000 256.000000
352.000000 -48.000000 256.000000
352.000000 -48.000000 240.000000
336.000000 -48.000000 240.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
-400.000000 0.000000 256.000000
-384.000000 0.000000 256.000000
-384.000000 0.000000 240.000000
-400.000000 0.000000 240.000000
-400.000000 -48.000000 256.000000
-384.000000 -48.000000 256.000000
-384.000000 -48.000000 240.000000
-400.000000 -48.000000 240.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
-416.000000 64.000000 256.000000
-384.000000 64.000000 256.000000
-384.000000 64.000000 208.000000
-416.000000 64.000000 208.000000
-416.000000 0.000000 256.000000
-384.000000 0.000000 256.000000
-384.000000 0.000000 208.000000
-416.000000 0.000000 208.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
-128.000000 224.000000 160.000000
96.000000 224.000000 160.000000
96.000000 224.000000 144.000000
-128.000000 224.000000 144.000000
-128.000000 144.000000 160.000000
96.000000 144.000000 160.000000
96.000000 144.000000 144.000000
-128.000000 144.000000 144.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
176.000000 256.000000 512.000000
224.000000 256.000000 512.000000
224.000000 256.000000 464.000000
176.000000 256.000000 464.000000
176.000000 -48.000000 512.000000
224.000000 -48.000000 512.000000
224.000000 -48.000000 464.000000
176.000000 -48.000000 464.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-448.000000 272.000000 1072.000000
384.000000 272.000000 1072.000000
384.000000 272.000000 -176.000000
-448.000000 272.000000 -176.000000
-448.000000 256.000000 1072.000000
384.000000 256.000000 1072.000000
384.000000 256.000000 -176.000000
-448.000000 256.000000 -176.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
-272.000000 256.000000 512.000000
-224.000000 256.000000 512.000000
-224.000000 256.000000 464.000000
-272.000000 256.000000 464.000000
-272.000000 -48.000000 512.000000
-224.000000 -48.000000 512.000000
-224.000000 -48.000000 464.000000
-272.000000 -48.000000 464.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
176.000000 256.000000 912.000000
224.000000 256.000000 912.000000
224.000000 256.000000 864.000000
176.000000 256.000000 864.000000
176.000000 -48.000000 912.000000
224.000000 -48.000000 912.000000
224.000000 -48.000000 864.000000
176.000000 -48.000000 864.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
-272.000000 256.000000 912.000000
-224.000000 256.000000 912.000000
-224.000000 256.000000 864.000000
-272.000000 256.000000 864.000000
-272.000000 -48.000000 912.000000
-224.000000 -48.000000 912.000000
-224.000000 -48.000000 864.000000
-272.000000 -48.000000 864.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
-432.000000 272.000000 1088.000000
400.000000 272.000000 1088.000000
400.000000 272.000000 1072.000000
-432.000000 272.000000 1072.000000
-432.000000 -64.000000 1088.000000
400.000000 -64.000000 1088.000000
400.000000 -64.000000 1072.000000
-432.000000 -64.000000 1072.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
-432.000000 112.000000 1072.000000
-416.000000 112.000000 1072.000000
-416.000000 112.000000 272.000000
-432.000000 112.000000 272.000000
-432.000000 96.000000 1072.000000
-416.000000 96.000000 1072.000000
-416.000000 96.000000 272.000000
-432.000000 96.000000 272.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 112.000000 1072.000000
384.000000 112.000000 1072.000000
384.000000 112.000000 272.000000
368.000000 112.000000 272.000000
368.000000 96.000000 1072.000000
384.000000 96.000000 1072.000000
384.000000 96.000000 272.000000
368.000000 96.000000 272.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
-16.000000 256.000000 336.000000
0.000000 256.000000 336.000000
0.000000 256.000000 320.000000
-16.000000 256.000000 320.000000
-16.000000 224.000000 336.000000
0.000000 224.000000 336.000000
0.000000 224.000000 320.000000
-16.000000 224.000000 320.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
-32.000000 224.000000 352.000000
16.000000 224.000000 352.000000
16.000000 224.000000 304.000000
-32.000000 224.000000 304.000000
-32.000000 192.000000 352.000000
16.000000 192.000000 352.000000
16.000000 192.000000 304.000000
-32.000000 192.000000 304.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
-32.000000 224.000000 672.000000
16.000000 224.000000 672.000000
16.000000 224.000000 624.000000
-32.000000 224.000000 624.000000
-32.000000 192.000000 672.000000
16.000000 192.000000 672.000000
16.000000 192.000000 624.000000
-32.000000 192.000000 624.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
-16.000000 256.000000 656.000000
0.000000 256.000000 656.000000
0.000000 256.000000 640.000000
-16.000000 256.000000 640.000000
-16.000000 224.000000 656.000000
0.000000 224.000000 656.000000
0.000000 224.000000 640.000000
-16.000000 224.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
144.000000 128.000000 -48.000000
204.140335 128.000000 -26.110716
226.029617 128.000000 -86.251068
165.889297 128.000000 -108.140335
144.000000 0.000000 -48.000000
204.140335 0.000000 -26.110716
226.029617 0.000000 -86.251068
165.889297 0.000000 -108.140335
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
-192.000000 128.000000 -64.000000
-133.996323 128.000000 -91.047554
-161.043884 128.000000 -149.051270
-219.047577 128.000000 -122.003700
-192.000000 0.000000 -64.000000
-133.996323 0.000000 -91.047554
-161.043884 0.000000 -149.051270
-219.047577 0.000000 -122.003700
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
124.000000 112.000000 108.000000
153.001801 112.000000 121.523849
166.525604 112.000000 92.521980
137.523743 112.000000 78.998199
124.000000 48.000000 108.000000
153.001801 48.000000 121.523849
166.525604 48.000000 92.521980
137.523743 48.000000 78.998199
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
112.000000 48.000000 128.000000
175.756470 48.000000 133.577972
179.939941 48.000000 85.760620
116.183495 48.000000 80.182655
112.000000 0.000000 128.000000
175.756470 0.000000 133.577972
179.939941 0.000000 85.760620
116.183495 0.000000 80.182655
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
-192.000000 64.000000 144.000000
-145.635605 64.000000 131.576691
-158.058914 64.000000 85.212242
-204.423340 64.000000 97.635544
-192.000000 0.000000 144.000000
-145.635605 0.000000 131.576691
-158.058914 0.000000 85.212242
-204.423340 0.000000 97.635544
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
-356.000000 176.000000 220.000000
-270.203156 176.000000 148.007874
-311.341614 176.000000 98.981010
-397.138550 176.000000 170.973190
-356.000000 16.000000 220.000000
-270.203156 16.000000 148.007874
-311.341614 16.000000 98.981010
-397.138550 16.000000 170.973190
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
240.000000 140.000000 152.000000
307.882233 140.000000 219.882248
353.137115 140.000000 174.627396
285.254852 140.000000 106.745132
240.000000 12.000000 152.000000
307.882233 12.000000 219.882248
353.137115 12.000000 174.627396
285.254852 12.000000 106.745132
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
312.000000 112.000000 244.000000
342.853638 112.000000 280.770142
367.367065 112.000000 260.200928
336.513245 112.000000 223.430756
312.000000 16.000000 244.000000
342.853638 16.000000 280.770142
367.367065 16.000000 260.200928
336.513245 16.000000 223.430756
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
192.000000 160.000000 528.000000
192.000000 160.000000 496.000000
160.000000 160.000000 496.000000
192.000000 128.000000 528.000000
160.000000 128.000000 528.000000
160.000000 128.000000 496.000000
192.000000 128.000000 496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 6 0x00000000
brush
vertices
192.000000 160.000000 880.000000
192.000000 160.000000 848.000000
160.000000 128.000000 880.000000
192.000000 128.000000 880.000000
160.000000 160.000000 880.000000
160.000000 128.000000 848.000000
192.000000 128.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 5 6 0x00000000
brush
vertices
-208.000000 160.000000 880.000000
-240.000000 128.000000 880.000000
-240.000000 160.000000 848.000000
-208.000000 128.000000 880.000000
-240.000000 160.000000 880.000000
-240.000000 128.000000 848.000000
-208.000000 128.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 6 0x00000000
brush
vertices
-240.000000 128.000000 528.000000
-208.000000 160.000000 496.000000
-240.000000 160.000000 496.000000
-208.000000 128.000000 496.000000
-208.000000 128.000000 528.000000
-240.000000 128.000000 496.000000
-240.000000 160.000000 528.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 1 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 5 0 6 0x00000000
brush
vertices
-400.000000 192.000000 496.000000
-432.000000 192.000000 528.000000
-432.000000 224.000000 496.000000
-400.000000 192.000000 528.000000
-432.000000 192.000000 496.000000
-432.000000 224.000000 528.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-400.000000 192.000000 592.000000
-432.000000 192.000000 624.000000
-432.000000 224.000000 592.000000
-400.000000 192.000000 624.000000
-432.000000 192.000000 592.000000
-432.000000 224.000000 624.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-400.000000 192.000000 864.000000
-432.000000 192.000000 896.000000
-432.000000 224.000000 864.000000
-400.000000 192.000000 896.000000
-432.000000 192.000000 864.000000
-432.000000 224.000000 896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-400.000000 192.000000 960.000000
-432.000000 192.000000 992.000000
-432.000000 224.000000 960.000000
-400.000000 192.000000 992.000000
-432.000000 192.000000 960.000000
-432.000000 224.000000 992.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-224.000000 192.000000 176.000000
-256.000000 192.000000 144.000000
-224.000000 224.000000 144.000000
-256.000000 192.000000 176.000000
-224.000000 192.000000 144.000000
-256.000000 224.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-320.000000 192.000000 176.000000
-352.000000 192.000000 144.000000
-320.000000 224.000000 144.000000
-352.000000 192.000000 176.000000
-320.000000 192.000000 144.000000
-352.000000 224.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
304.000000 192.000000 176.000000
272.000000 192.000000 144.000000
304.000000 224.000000 144.000000
272.000000 192.000000 176.000000
304.000000 192.000000 144.000000
272.000000 224.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
208.000000 192.000000 176.000000
176.000000 192.000000 144.000000
208.000000 224.000000 144.000000
176.000000 192.000000 176.000000
208.000000 192.000000 144.000000
176.000000 224.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
384.000000 224.000000 544.000000
384.000000 224.000000 512.000000
352.000000 192.000000 544.000000
384.000000 192.000000 544.000000
352.000000 192.000000 512.000000
384.000000 192.000000 512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
384.000000 224.000000 640.000000
384.000000 224.000000 608.000000
352.000000 192.000000 640.000000
384.000000 192.000000 640.000000
352.000000 192.000000 608.000000
384.000000 192.000000 608.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
384.000000 224.000000 912.000000
384.000000 224.000000 880.000000
352.000000 192.000000 912.000000
384.000000 192.000000 912.000000
352.000000 192.000000 880.000000
384.000000 192.000000 880.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
384.000000 224.000000 1008.000000
384.000000 224.000000 976.000000
352.000000 192.000000 1008.000000
384.000000 192.000000 1008.000000
352.000000 192.000000 976.000000
384.000000 192.000000 976.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000
brush
vertices
-112.000000 40.000000 128.000000
-104.000000 40.000000 128.000000
-104.000000 40.000000 120.000000
-112.000000 40.000000 120.000000
-112.000000 0.000000 128.000000
-104.000000 0.000000 128.000000
-104.000000 0.000000 120.000000
-112.000000 0.000000 120.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
-112.000000 48.000000 128.000000
96.000000 48.000000 128.000000
96.000000 48.000000 80.000000
-112.000000 48.000000 80.000000
-112.000000 40.000000 128.000000
96.000000 40.000000 128.000000
96.000000 40.000000 80.000000
-112.000000 40.000000 80.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
-112.000000 40.000000 88.000000
-104.000000 40.000000 88.000000
-104.000000 40.000000 80.000000
-112.000000 40.000000 80.000000
-112.000000 0.000000 88.000000
-104.000000 0.000000 88.000000
-104.000000 0.000000 80.000000
-112.000000 0.000000 80.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
88.000000 40.000000 88.000000
96.000000 40.000000 88.000000
96.000000 40.000000 80.000000
88.000000 40.000000 80.000000
88.000000 0.000000 88.000000
96.000000 0.000000 88.000000
96.000000 0.000000 80.000000
88.000000 0.000000 80.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
88.000000 40.000000 128.000000
96.000000 40.000000 128.000000
96.000000 40.000000 120.000000
88.000000 40.000000 120.000000
88.000000 0.000000 128.000000
96.000000 0.000000 128.000000
96.000000 0.000000 120.000000
88.000000 0.000000 120.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
-93.715347 52.000000 99.743279
-69.201920 52.000000 120.312469
-56.346157 52.000000 104.991623
-80.859596 52.000000 84.422394
-93.715347 48.000000 99.743279
-69.201920 48.000000 120.312469
-56.346157 48.000000 104.991623
-80.859596 48.000000 84.422394
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
-104.000000 68.000000 112.000000
-79.486496 68.000000 132.569199
-76.915367 68.000000 129.505035
-71.773048 48.000000 123.376663
-101.428802 68.000000 108.935822
-93.715347 52.000000 99.743279
-96.286484 48.000000 102.807442
-69.201920 52.000000 120.312469
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
16.000000 68.000000 132.000000
46.070198 68.000000 121.055267
44.702095 68.000000 117.296539
41.965942 48.000000 109.778961
14.631920 68.000000 128.241211
10.527664 52.000000 116.964874
11.895760 48.000000 120.723648
40.597824 52.000000 106.020218
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
10.527664 52.000000 116.964867
40.597824 52.000000 106.020218
33.757484 52.000000 87.226349
3.687279 52.000000 98.170998
10.527664 48.000000 116.964867
40.597824 48.000000 106.020218
33.757484 48.000000 87.226349
3.687279 48.000000 98.170998
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
52.000000 52.000000 120.000000
92.000000 52.000000 120.000000
92.000000 52.000000 92.000000
52.000000 52.000000 92.000000
52.000000 48.000000 120.000000
92.000000 48.000000 120.000000
92.000000 48.000000 92.000000
52.000000 48.000000 92.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
60.000000 56.000000 112.000000
64.000000 56.000000 112.000000
64.000000 56.000000 108.000000
60.000000 56.000000 108.000000
60.000000 52.000000 112.000000
64.000000 52.000000 112.000000
64.000000 52.000000 108.000000
60.000000 52.000000 108.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
68.000000 56.000000 108.000000
72.000000 56.000000 108.000000
72.000000 56.000000 104.000000
68.000000 56.000000 104.000000
68.000000 52.000000 108.000000
72.000000 52.000000 108.000000
72.000000 52.000000 104.000000
68.000000 52.000000 104.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 56.000000 112.000000
84.000000 56.000000 112.000000
84.000000 56.000000 108.000000
80.000000 56.000000 108.000000
80.000000 52.000000 112.000000
84.000000 52.000000 112.000000
84.000000 52.000000 108.000000
80.000000 52.000000 108.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
72.000000 56.000000 116.000000
76.000000 56.000000 116.000000
76.000000 56.000000 112.000000
72.000000 56.000000 112.000000
72.000000 52.000000 116.000000
76.000000 52.000000 116.000000
76.000000 52.000000 112.000000
72.000000 52.000000 112.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
76.000000 56.000000 96.000000
80.000000 56.000000 96.000000
80.000000 56.000000 92.000000
76.000000 56.000000 92.000000
76.000000 52.000000 96.000000
80.000000 52.000000 96.000000
80.000000 52.000000 92.000000
76.000000 52.000000 92.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
68.000000 56.000000 100.000000
72.000000 56.000000 100.000000
72.000000 56.000000 96.000000
68.000000 56.000000 96.000000
68.000000 52.000000 100.000000
72.000000 52.000000 100.000000
72.000000 52.000000 96.000000
68.000000 52.000000 96.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
64.000000 56.000000 100.000000
68.000000 56.000000 100.000000
68.000000 56.000000 96.000000
64.000000 56.000000 96.000000
64.000000 52.000000 100.000000
68.000000 52.000000 100.000000
68.000000 52.000000 96.000000
64.000000 52.000000 96.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
56.000000 56.000000 104.000000
60.000000 56.000000 104.000000
60.000000 56.000000 100.000000
56.000000 56.000000 100.000000
56.000000 52.000000 104.000000
60.000000 52.000000 104.000000
60.000000 52.000000 100.000000
56.000000 52.000000 100.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
-432.000000 -48.000000 1072.000000
384.000000 -48.000000 1072.000000
384.000000 -48.000000 -160.000000
-432.000000 -48.000000 -160.000000
-432.000000 -64.000000 1072.000000
384.000000 -64.000000 1072.000000
384.000000 -64.000000 -160.000000
-432.000000 -64.000000 -160.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
-56.512280 52.000000 113.855461
-32.876892 52.000000 118.023010
-27.320152 52.000000 86.509171
-50.955536 52.000000 82.341614
-56.512280 48.000000 113.855461
-32.876892 48.000000 118.023010
-27.320152 48.000000 86.509171
-50.955536 48.000000 82.341614
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
-49.794674 56.000000 98.793121
-34.037746 56.000000 101.571510
-31.953972 56.000000 89.753807
-47.710899 56.000000 86.975441
-49.794674 52.000000 98.793121
-34.037746 52.000000 101.571510
-31.953972 52.000000 89.753807
-47.710899 52.000000 86.975441
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
-51.878460 56.000000 110.610825
-47.939220 56.000000 111.305420
-47.244625 56.000000 107.366188
-51.183857 56.000000 106.671585
-51.878460 52.000000 110.610825
-47.939220 52.000000 111.305420
-47.244625 52.000000 107.366188
-51.183857 52.000000 106.671585
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
-44.000000 56.000000 112.000000
-36.121536 56.000000 113.389191
-34.732342 56.000000 105.510735
-42.610809 56.000000 104.121536
-44.000000 52.000000 112.000000
-36.121536 52.000000 113.389191
-34.732342 52.000000 105.510735
-42.610809 52.000000 104.121536
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
-16.000000 56.000000 120.000000
-8.030440 56.000000 120.697250
-7.333185 56.000000 112.727699
-15.302750 56.000000 112.030441
-16.000000 52.000000 120.000000
-8.030440 52.000000 120.697250
-7.333185 52.000000 112.727699
-15.302750 52.000000 112.030441
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
-23.969555 56.000000 119.302765
-19.984768 56.000000 119.651390
-19.636143 56.000000 115.666603
-23.620922 56.000000 115.317978
-23.969555 52.000000 119.302765
-19.984768 52.000000 119.651390
-19.636143 52.000000 115.666603
-23.620922 52.000000 115.317978
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
-22.923679 56.000000 107.348412
-6.984559 56.000000 108.742920
-5.938694 56.000000 96.788582
-21.877813 56.000000 95.394096
-22.923679 52.000000 107.348412
-6.984559 52.000000 108.742920
-5.938694 52.000000 96.788582
-21.877813 52.000000 95.394096
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
-28.302952 52.000000 122.938919
-4.394279 52.000000 125.030647
-1.605297 52.000000 93.152428
-25.513966 52.000000 91.060692
-28.302952 48.000000 122.938919
-4.394279 48.000000 125.030647
-1.605297 48.000000 93.152428
-25.513966 48.000000 91.060692
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
-66.000000 50.000000 118.000000
-24.000000 50.000000 118.000000
-24.000000 50.000000 116.000000
-66.000000 50.000000 116.000000
-66.000000 48.000000 118.000000
-24.000000 48.000000 118.000000
-24.000000 48.000000 116.000000
-66.000000 48.000000 116.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
-34.000000 52.000000 106.000000
-24.000000 52.000000 106.000000
-24.000000 52.000000 104.000000
-34.000000 52.000000 104.000000
-34.000000 50.000000 106.000000
-24.000000 50.000000 106.000000
-24.000000 50.000000 104.000000
-34.000000 50.000000 104.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
-4.000000 50.000000 122.000000
52.000000 50.000000 122.000000
52.000000 50.000000 120.000000
-4.000000 50.000000 120.000000
-4.000000 48.000000 122.000000
52.000000 48.000000 122.000000
52.000000 48.000000 120.000000
-4.000000 48.000000 120.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
68.000000 50.000000 126.000000
70.000000 50.000000 126.000000
70.000000 50.000000 120.000000
68.000000 50.000000 120.000000
68.000000 48.000000 126.000000
70.000000 48.000000 126.000000
70.000000 48.000000 120.000000
68.000000 48.000000 120.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 50.000000 126.000000
82.000000 50.000000 126.000000
82.000000 50.000000 120.000000
80.000000 50.000000 120.000000
80.000000 48.000000 126.000000
82.000000 48.000000 126.000000
82.000000 48.000000 120.000000
80.000000 48.000000 120.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
74.000000 50.000000 126.000000
76.000000 50.000000 126.000000
76.000000 50.000000 120.000000
74.000000 50.000000 120.000000
74.000000 48.000000 126.000000
76.000000 48.000000 126.000000
76.000000 48.000000 120.000000
74.000000 48.000000 120.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
72.000000 50.000000 126.000000
74.000000 50.000000 126.000000
74.000000 50.000000 120.000000
72.000000 50.000000 120.000000
72.000000 48.000000 126.000000
74.000000 48.000000 126.000000
74.000000 48.000000 120.000000
72.000000 48.000000 120.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
68.000000 50.000000 128.000000
69.969582 50.000000 127.652710
69.622284 50.000000 125.683167
69.736481 0.000000 137.848083
67.652718 50.000000 126.030426
72.053375 0.000000 139.470322
71.706062 0.000000 137.500717
70.083771 0.000000 139.817688
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
72.000000 50.000000 128.000000
73.931839 50.000000 127.482368
73.414200 50.000000 125.550529
74.588181 0.000000 137.659271
71.482353 50.000000 126.068161
77.037666 0.000000 139.073456
76.520020 0.000000 137.141602
75.105820 0.000000 139.591125
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
74.000000 50.000000 128.000000
75.812614 50.000000 127.154747
74.967384 50.000000 125.342155
78.226173 0.000000 137.063080
73.154770 50.000000 126.187378
80.884041 0.000000 138.030411
80.038811 0.000000 136.217819
79.071419 0.000000 138.875687
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
80.000000 50.000000 128.000000
81.931831 50.000000 127.482353
81.414200 50.000000 125.550514
82.588181 0.000000 137.659256
79.482346 50.000000 126.068146
85.037666 0.000000 139.073456
84.520027 0.000000 137.141617
83.105812 0.000000 139.591110
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
90.000000 2.000000 148.000000
91.532051 2.000000 146.714310
83.818604 2.000000 137.521790
82.286522 2.000000 138.807388
90.000000 0.000000 148.000000
91.532051 0.000000 146.714310
83.818604 0.000000 137.521790
82.286522 0.000000 138.807388
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
102.000000 2.000000 148.000000
101.999916 2.000000 146.000000
89.999924 2.000000 146.000015
89.999908 2.000000 147.999985
102.000000 0.000000 148.000000
101.999916 0.000000 146.000000
89.999924 0.000000 146.000015
89.999908 0.000000 147.999985
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
112.000000 2.000000 144.000000
111.154686 2.000000 142.187408
100.279007 2.000000 147.258835
101.124199 2.000000 149.071426
112.000000 0.000000 144.000000
111.154686 0.000000 142.187408
100.279007 0.000000 147.258835
101.124199 0.000000 149.071426
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
122.000000 2.000000 144.000000
121.825607 2.000000 142.007645
109.871277 2.000000 143.053543
110.045547 2.000000 145.045898
122.000000 0.000000 144.000000
121.825607 0.000000 142.007645
109.871277 0.000000 143.053543
110.045547 0.000000 145.045898
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
130.000000 2.000000 136.000000
128.714432 2.000000 134.468002
119.521896 2.000000 142.181458
120.807388 2.000000 143.713531
130.000000 0.000000 136.000000
128.714432 0.000000 134.468002
119.521896 0.000000 142.181458
120.807388 0.000000 143.713531
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
124.000000 2.000000 124.000000
122.361725 2.000000 122.852936
115.478790 2.000000 132.682770
117.117020 2.000000 133.829895
124.000000 0.000000 124.000000
122.361725 0.000000 122.852936
115.478790 0.000000 132.682770
117.117020 0.000000 133.829895
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
88.468788 2.000000 145.943878
89.615868 2.000000 144.305450
79.786041 2.000000 137.422546
78.638916 2.000000 139.060852
88.468788 0.000000 145.943878
89.615868 0.000000 144.305450
79.786041 0.000000 137.422546
78.638916 0.000000 139.060852
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
100.059883 2.000000 142.838013
99.542175 2.000000 140.906189
87.951080 2.000000 144.012024
88.468697 2.000000 145.943878
100.059883 0.000000 142.838013
99.542175 0.000000 140.906189
87.951080 0.000000 144.012024
88.468697 0.000000 145.943878
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
108.683876 2.000000 136.386139
107.398232 2.000000 134.854065
98.205711 2.000000 142.567566
99.491241 2.000000 144.099609
108.683876 0.000000 136.386139
107.398232 0.000000 134.854065
98.205711 0.000000 142.567566
99.491241 0.000000 144.099609
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
118.343140 2.000000 133.797974
117.659027 2.000000 131.918640
106.382736 2.000000 136.022888
107.066719 2.000000 137.902222
118.343140 0.000000 133.797974
117.659027 0.000000 131.918640
106.382736 0.000000 136.022888
107.066719 0.000000 137.902222
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
120.000000 2.000000 158.000000
119.482315 2.000000 156.068176
107.891212 2.000000 159.173965
108.408798 2.000000 161.105759
120.000000 0.000000 158.000000
119.482315 0.000000 156.068176
107.891212 0.000000 159.173965
108.408798 0.000000 161.105759
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.676270 2.000000 151.970871
80.608131 2.000000 151.453125
77.502296 2.000000 139.862030
75.570442 2.000000 140.379669
78.676270 0.000000 151.970871
80.608131 0.000000 151.453125
77.502296 0.000000 139.862030
75.570442 0.000000 140.379669
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
89.551964 2.000000 157.042282
90.397133 2.000000 155.229645
79.521439 2.000000 150.158234
78.676186 2.000000 151.970825
89.551964 0.000000 157.042282
90.397133 0.000000 155.229645
79.521439 0.000000 150.158234
78.676186 0.000000 151.970825
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
100.305519 2.000000 157.643280
100.305458 2.000000 155.643234
88.305412 2.000000 155.643265
88.305420 2.000000 157.643188
100.305519 0.000000 157.643280
100.305458 0.000000 155.643234
88.305412 0.000000 155.643265
88.305420 0.000000 157.643188
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
109.368584 2.000000 161.869431
110.052536 2.000000 159.990051
98.776215 2.000000 155.885849
98.092186 2.000000 157.765152
109.368584 0.000000 161.869431
110.052536 0.000000 159.990051
98.776215 0.000000 155.885849
98.092186 0.000000 157.765152
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
118.000000 2.000000 142.000000
116.852829 2.000000 140.361740
107.022995 2.000000 147.244629
108.170074 2.000000 148.882858
118.000000 0.000000 142.000000
116.852829 0.000000 140.361740
107.022995 0.000000 147.244629
108.170074 0.000000 148.882858
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.106331 2.000000 150.468018
78.744598 2.000000 149.320755
71.861687 2.000000 139.490952
70.223381 2.000000 140.638123
77.106331 0.000000 150.468018
78.744598 0.000000 149.320755
71.861687 0.000000 139.490952
70.223381 0.000000 140.638123
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
89.060669 2.000000 151.513885
89.234909 2.000000 149.521500
77.280563 2.000000 148.475632
77.106232 2.000000 150.468002
89.060669 0.000000 151.513885
89.234909 0.000000 149.521500
77.280563 0.000000 148.475632
77.106232 0.000000 150.468002
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
99.371246 2.000000 148.400696
98.687134 2.000000 146.521271
87.410797 2.000000 150.625580
88.094818 2.000000 152.504913
99.371246 0.000000 148.400696
98.687134 0.000000 146.521271
87.410797 0.000000 150.625580
88.094818 0.000000 152.504913
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
109.333176 2.000000 149.272232
109.333107 2.000000 147.272278
97.333099 2.000000 147.272308
97.333084 2.000000 149.272217
109.333176 0.000000 149.272232
109.333107 0.000000 147.272278
97.333099 0.000000 147.272308
97.333084 0.000000 149.272217
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
-432.000000 20.000000 208.000000
384.000000 20.000000 208.000000
384.000000 20.000000 204.000000
-432.000000 20.000000 204.000000
-432.000000 -48.000000 208.000000
384.000000 -48.000000 208.000000
384.000000 -48.000000 204.000000
-432.000000 -48.000000 204.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
-432.000000 224.000000 112.000000
-256.000000 224.000000 112.000000
-256.000000 224.000000 96.000000
-432.000000 224.000000 96.000000
-432.000000 0.000000 112.000000
-256.000000 0.000000 112.000000
-256.000000 0.000000 96.000000
-432.000000 0.000000 96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 48.000000
Bool8 teamB 0
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 320.000000 256.000000 320.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -154.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -170.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -186.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -202.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -218.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -234.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -250.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -266.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -282.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -298.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -314.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -330.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -346.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -362.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -378.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 230.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 198.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 182.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 166.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 150.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 134.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 118.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 102.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 1026.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 134.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 102.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -346.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -154.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -170.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -186.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -202.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -218.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -234.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -250.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -266.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -282.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -298.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -314.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -330.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 118.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 102.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 358.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 326.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 310.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 294.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 278.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 262.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 246.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 230.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 214.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 198.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 182.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 166.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 150.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 134.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 118.000000 -48.000000 578.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -266.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -154.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -170.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -186.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -202.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -218.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -234.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -250.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 134.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 102.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 118.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 354.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 326.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 294.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 278.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 262.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 246.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 230.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 214.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 198.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 182.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 166.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 150.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 134.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 118.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 102.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 306.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -298.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -154.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -170.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -186.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -202.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -218.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -234.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -250.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -266.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -282.000000 -48.000000 290.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -154.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 102.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 514.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -394.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -410.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -154.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -186.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -202.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -218.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -234.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -250.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -266.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -282.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -298.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -314.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -330.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -346.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -362.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -378.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -410.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -426.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -170.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -202.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -218.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -234.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -250.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -266.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -282.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -298.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -314.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -330.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -346.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -362.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -378.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -394.000000 -48.000000 658.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 246.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 214.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 198.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 182.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 166.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 150.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 134.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 118.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 102.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 802.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -154.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -170.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 882.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -154.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -170.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 978.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -154.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -170.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 738.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 182.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 150.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 134.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 118.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 102.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 642.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -138.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 118.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 562.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -106.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -122.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 134.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 102.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 86.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 70.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 54.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 38.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 22.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 6.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -10.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -26.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -42.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -58.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -74.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -90.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 246.000000 -48.000000 466.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 342.000000 -48.000000 466.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 310.000000 -48.000000 466.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 294.000000 -48.000000 466.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 278.000000 -48.000000 466.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 262.000000 -48.000000 466.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 198.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 294.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 262.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 246.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 230.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 214.000000 -48.000000 386.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 182.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 278.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 246.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 230.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 214.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 198.000000 -48.000000 690.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 246.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 342.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 310.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 294.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 278.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 262.000000 -48.000000 946.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -410.000000 -48.000000 898.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -314.000000 -48.000000 898.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -346.000000 -48.000000 898.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -362.000000 -48.000000 898.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -378.000000 -48.000000 898.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -394.000000 -48.000000 898.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -330.000000 -48.000000 722.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -234.000000 -48.000000 722.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -266.000000 -48.000000 722.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -282.000000 -48.000000 722.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -298.000000 -48.000000 722.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -314.000000 -48.000000 722.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -410.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -314.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -346.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -362.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -378.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -394.000000 -48.000000 594.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -394.000000 -48.000000 498.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -298.000000 -48.000000 498.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -330.000000 -48.000000 498.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -346.000000 -48.000000 498.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -362.000000 -48.000000 498.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -378.000000 -48.000000 498.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
|
d73eb1f069c5da61c335dd5c601db2b5718860d9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1970/CH2/EX2.15/Ch02Exa15.sce
|
07cc4bad5bb076efe56b98ad965a4e22da4d1ebc
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 756
|
sce
|
Ch02Exa15.sce
|
// Scilab code Exa2.15 : : Page 94 (2011)
clc; clear;
Y = 110e-03;// Yield of Na-24, mCi/hr
T = 14.8;// Half life of Na-24, hours
t = 8;// Time after which activity to be compute, hours
lambda = 0.693/T;// Disintegration constant, hours^-1
A = 1.44*Y*T;// Maximum activity of Na-24, Ci
A_C = A*[1-%e^(-lambda*t)];// Activity after a continuous bombardment, Ci
Activity = A_C*(%e^(-lambda*t));// Activity after 8hours, Ci
printf("\nThe maximum activity of Na-24 = %5.3f Ci\nThe activity after a continuous bombardment = %6.4f Ci\nThe activity after 8hours = %7.5f Ci",A, A_C, Activity);
// Result
// The maximum activity of Na-24 = 2.344 Ci
// The activity after a continuous bombardment = 0.7324 Ci
// The activity after 8hours = 0.50360 Ci
|
6b487e05b5d5b3149ce095869861402ff5b7cada
|
b24d354cfcd174c92760535d8b71e22ced005d81
|
/DSP functions/allpasslp2xn/test_1.sce
|
0a9fad69d7b41ce48ce24af2e60a4b3fcbc8831e
|
[] |
no_license
|
shreniknambiar/FOSSEE-Signal-Processing-Toolbox
|
57ad8e2a71d64f95c4ccfd131e00095cf2b9c6f8
|
143cf61eff31240870dc0c4f61e32818a4482365
|
refs/heads/master
| 2021-01-01T18:25:34.435606
| 2017-07-25T18:23:47
| 2017-07-25T18:23:47
| 98,334,322
| 0
| 0
| null | 2017-07-25T17:48:00
| 2017-07-25T17:47:59
| null |
UTF-8
|
Scilab
| false
| false
| 234
|
sce
|
test_1.sce
|
// Test # 1 : No Input Arguments
exec('./allpasslp2xn.sci',-1);
[n,d]=allpasslp2xn();
//!--error 10000
//Number of input arguments should either 2 or 3
//at line 30 of function allpasslp2xn called by :
//[n,d] = allpasslp2xn()
|
9d4499fd7087f98c679cc4810ec43d240fa41dc3
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3543/CH4/EX4.23/Ex4_23.sce
|
157821ccbc8b9c5008c1bdc56e16de68fa4db0c4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 445
|
sce
|
Ex4_23.sce
|
// Example 4.23
// Calculation of overall external efficiency of a Laser diode
// Page no 486
clc;
clear;
close;
//Given data
eg=1.43; // Bandgap energy
v=2.5; // Voltage applied
nd=0.30; // Optical efficiency of laser diode
//// Overall external efficiency
ne=(nd*eg/v)*100;
//Display result in the command window
printf("\n Overall external efficiency (percentage)= %0.0f .",ne);
|
e9ab3e4e9b8e7a4670eb7bf58ef75c060221676d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2132/CH3/EX3.22/Example3_22.sce
|
6ff9e701da879dad70d54daf464e2bfcd6a1f613
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 455
|
sce
|
Example3_22.sce
|
//Example 3.22
clc;
clear;
close;
format('v',7);
//Given data :
A=2*1;//m^2
xbar=2+2/2;//meter
w=9.81;//kN/m^2
PH=w*A*xbar;//kN
disp(PH,"Horizontal component of resultant Pressure in kN : ");
PV=w*[2*2+2*2-%pi*2^2/4]*1;//kN
disp(PV,"Verticalal component of resultant Pressure in kN : ");
P=sqrt(PH^2+PV^2);//kN
disp(P,"Resultant pressure in kN : ");
theta=atand(PV/PH);//degree
disp(theta,"Direction of resultant pressure in degree : ");
|
a51d7a28c930108df4a1c5229383c36bcaf0c9e5
|
a5f0fbcba032f945a9ee629716f6487647cafd5f
|
/Machine_Learning/demos/Perceptron_Demo.sce
|
c2d8707eb5de2106612e80504c0cdc90758fce31
|
[
"BSD-2-Clause"
] |
permissive
|
SoumitraAgarwal/Scilab-gsoc
|
692c00e3fb7a5faf65082e6c23765620f4ecdf35
|
678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f
|
refs/heads/master
| 2021-04-15T17:55:48.334164
| 2018-08-07T13:43:26
| 2018-08-07T13:43:26
| 126,500,126
| 1
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 481
|
sce
|
Perceptron_Demo.sce
|
// Demo for single perceptron -- Scilab
getd('../macros')
// Data preparation
M = csvRead('Datasets/titanic.csv')
x = M(:, [3,6]);
y = M(:, 2);
// Data cleaning
function xnorm = norma(x)
n = length(x)
disp(x)
mi = min(x)
ma = max(x)
for i=1:n
x(i) = 1.0*(x(i) - mi)/(ma - mi)
end
xnorm = x
endfunction
y(or(isnan(x),'c'),:) = []
x(or(isnan(x),'c'),:) = []
iter = 40
rate = 0.000002
theta = perceptronTrain(x, y, rate, iter)
ypred = perceptronPredict(x, theta)
|
c9b2ff3e1c0cebaf785842896f4e0a14093496eb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/377/CH15/EX15.4/15_4.sce
|
79c872aa665b3f2cc27091ef106d977cc16fb6aa
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 305
|
sce
|
15_4.sce
|
disp("λ=c*h/E");
h=6.626*10^-34;
c=2.998*10^8;
E=1.5*10^-19;
d=c*h/E;
printf('\nThe value of λ is %fμm',d*10^6);
n=0.65;
e=1.602*10^-19;
R=n*e/E;
printf('\nThe value of R is %fA/W',R);
disp("Po=Ip/R");
Ip=2.5*10^-6;
Po=Ip/R;
printf('\nThe required incident opticalpower is %fμW',Po*10^6);
|
ff358c383a22be2480ccb51b3a13dbd588e23711
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/69/CH11/EX11.5/11_5.sce
|
1f359fd3fd74e4f32d2c73a19551cb3cf741cad7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 194
|
sce
|
11_5.sce
|
clear; clc; close;
Rf = 500*10^3;
A1 = -10;
A2 = -20;
A3 = -50;
R1 = -Rf/A1;
R2 = -Rf/A2;
R3 = -Rf/A3;
disp(R1,'R1(ohms) = ');
disp(R2,'R2(ohms) = ');
disp(R3,'R3(ohms) = ');
|
5dade39a6441f09b331ae67c9f1608e75bdd3d02
|
f23e565144f1b0f63c7b613c0f549944d425a073
|
/Cours/TP_INFO/TP_note/TD4-CITAThibault.sce
|
4c33a3cfc58a007e2404c2990dc126e07b963036
|
[] |
no_license
|
Antoine-Gerard/Valar-Morghulis
|
c45766f03898241bd9c424256744b5ffa16dd82c
|
796363bfbc6f2e3249c90f1762e041ff5a4e705a
|
refs/heads/master
| 2021-08-31T06:06:55.296982
| 2017-12-20T13:54:33
| 2017-12-20T13:54:33
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 68
|
sce
|
TD4-CITAThibault.sce
|
//Cita Thibault
//Exercie A
v0= zeros(1,50)
v1= 10*ones(1,50)
v2=
|
3b896a82a087346520964df1ca454d09e5e46074
|
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
|
/dbt air rockets.sce
|
075a208b98007225f40b4c731200fb4ea4b68a4c
|
[] |
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
| 29,145
|
sce
|
dbt air rockets.sce
|
Name=dbt air rockets
PlayerCharacters=QC no movement
BotCharacters=target_decay_midair.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=QC no movement
AddedBots=target_decay_midair.bot
PlayerMaxLives=0
BotMaxLives=100
PlayerTeam=1
BotTeams=2
MapName=boxernobounds.map
MapScale=3.5
BlockProjectilePredictors=false
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=100.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=10.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=diabotical
WeaponHeroTag=Rocket launcher
DifficultyTag=5
AuthorsTag= Ass1st
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Target jumps in random direction and height, starting from different spawns with varying height. Hit it midair.
GameVersion=2.0.0.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=All over noob
MinReactionTime=0.1
MaxReactionTime=0.1
MinSelfMovementCorrectionTime=0.0001
MaxSelfMovementCorrectionTime=0.0001
FlickFOV=0.0
FlickSpeed=1.0
FlickError=100.0
TrackSpeed=1.0
TrackError=100.0
MaxTurnAngleFromPadCenter=360.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=360.0
OuterAimPenalty=0.0
MaxError=90.0
ShootFOV=90.0
VerticalAimOffset=1000.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=target_decay_midair
DodgeProfileNames=Balanced all directions
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=All over noob;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=target_decay_midair
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=QC no movement
MaxHealth=100.0
WeaponProfileNames=QC RL no splash;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=160.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=1600.0
Acceleration=32000.0
AirAcceleration=16000.0
Friction=6.0
BrakingFrictionFactor=6.0
JumpVelocity=2700.0
Gravity=10.0
AirControl=0.1
CanCrouch=true
CanPogoJump=true
CanCrouchInAir=true
CanJumpFromCrouch=true
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=Spheroid
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=;;;Launch.abilmelee
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=target_decay_midair
MaxHealth=200.0
WeaponProfileNames=no damage;;;;;;;
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=2000.0
Gravity=5.0
AirControl=0.2
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=150.0
MainBBRadius=75.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=Jump on ground.abilmov;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=10.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=Balanced all directions
MaxTargetDistance=9000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.2
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
[Weapon Profile]
Name=QC RL no splash
Type=Projectile
ShotsPerClick=1
DamagePerShot=100.0
KnockbackFactor=6.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=6787.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=6787.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
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Rocket
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.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
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.1
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=Quake Champions
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Flare
ParticleBodyImpact=Flare
ParticleProjectileTrail=Smoke
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=true
Radius=20.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=true
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
PBS0=0.0,0.0
[Weapon Profile]
Name=no damage
Type=Hitscan
ShotsPerClick=1
DamagePerShot=0.0
KnockbackFactor=0.0
TimeBetweenShots=0.01
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.1
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=0.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=999.0
HitSoundCooldown=999.0
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=0.1
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=false
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=0.1
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=None
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=0.0,0.1,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Movement Ability Profile]
Name=Jump on ground
MaxCharges=1.0
ChargeTimer=0.01
ChargesRefundedOnKill=0.0
DelayAfterUse=0.2
FullyAuto=false
AbilityDuration=0.0
LockDirectionForDuration=true
NegateGravityForDuration=false
MainVelocity=1500.0
MainVelocityCanGoVertical=true
MainVelocitySetToMovementKeys=true
UpVelocity=2000.0
EndVelocityFactor=1.0
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=true
AIUseOnGround=true
AIUseInAir=false
AIReuseTimer=0.01
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=900000.0
AIMaxTargFOV=360.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Melee Ability Profile]
Name=Launch
MaxCharges=1.0
ChargeTimer=1.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.15
HurtboxRadius=4000.0
HurtboxDamage=0.0
HurtboxGroundKnockbackFactor=0.0
HurtboxAirKnockbackFactor=0.0
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
FlatKnockbackHorizontal=4500.0
FlatKnockbackVertical=7500.0
FlatKnockbackHorizontalMin=-4500.0
FlatKnockbackVerticalMin=4500.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-576.000000 0.000000 256.000000
448.000000 0.000000 256.000000
448.000000 0.000000 -768.000000
-576.000000 0.000000 -768.000000
-576.000000 -16.000000 256.000000
448.000000 -16.000000 256.000000
448.000000 -16.000000 -768.000000
-576.000000 -16.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
448.000000 272.000000 -784.000000
-576.000000 272.000000 -784.000000
-576.000000 0.000000 -768.000000
448.000000 0.000000 -768.000000
448.000000 0.000000 -784.000000
-576.000000 0.000000 -784.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-576.000000 272.000000 272.000000
448.000000 272.000000 272.000000
448.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 0.000000 272.000000
448.000000 0.000000 272.000000
448.000000 0.000000 256.000000
-576.000000 0.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
448.000000 272.000000 256.000000
464.000000 272.000000 256.000000
464.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
448.000000 0.000000 256.000000
464.000000 0.000000 256.000000
464.000000 0.000000 -768.000000
448.000000 0.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-592.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 272.000000 -768.000000
-592.000000 272.000000 -768.000000
-592.000000 0.000000 256.000000
-576.000000 0.000000 256.000000
-576.000000 0.000000 -768.000000
-592.000000 0.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-592.000000 704.000000 256.000000
-576.000000 704.000000 256.000000
-576.000000 704.000000 -768.000000
-592.000000 704.000000 -768.000000
-592.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
-576.000000 272.000000 -768.000000
-592.000000 272.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
448.000000 704.000000 256.000000
464.000000 704.000000 256.000000
464.000000 704.000000 -768.000000
448.000000 704.000000 -768.000000
448.000000 272.000000 256.000000
464.000000 272.000000 256.000000
464.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 704.000000 -768.000000
448.000000 704.000000 -768.000000
448.000000 704.000000 -784.000000
-576.000000 704.000000 -784.000000
-576.000000 272.000000 -768.000000
448.000000 272.000000 -768.000000
448.000000 272.000000 -784.000000
-576.000000 272.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
-576.000000 704.000000 272.000000
448.000000 704.000000 272.000000
448.000000 704.000000 256.000000
-576.000000 704.000000 256.000000
-576.000000 272.000000 272.000000
448.000000 272.000000 272.000000
448.000000 272.000000 256.000000
-576.000000 272.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-576.000000 720.000000 256.000000
448.000000 720.000000 256.000000
448.000000 720.000000 -768.000000
-576.000000 720.000000 -768.000000
-576.000000 704.000000 256.000000
448.000000 704.000000 256.000000
448.000000 704.000000 -768.000000
-576.000000 704.000000 -768.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -736.000000
Bool8 teamA 0
entity
type CameraPath
UInt32 entityIdAttachedTo 5
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 352.000000 256.000000 224.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 224.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 416.000000 0.000000 -256.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -544.000000 0.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
|
1bc1ca842b3453cde0d555728fcc05fcd2d62ab4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1931/CH4/EX4.7/7.sce
|
f4a554df61b34fcd5081536d561cd3c8f073714c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 398
|
sce
|
7.sce
|
clc
clear
//INPUT DATA
w=5893*10^-10//wavelength of sodium light in m
Re=1.5532//Refractive index of quartz for e ray
Ro=1.5332//Refractive index of quartz for o ray
//CALCULATION
t=((w/(4*(Re-Ro))))/10^-6//thickness of a quarter wave plate of quartz for sodium light in m *10^-6
//OUTPUT
printf('The thickness of a quarter wave plate of quartz for sodium light is %3.4f *10^-6.m',t)
|
c26ca28dfd000134fed39208a4dee5ae2560e79a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1664/CH6/EX6.14/Ex6_14.sce
|
b93675d483150252d6444e40f9e06c463f5b0e64
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 290
|
sce
|
Ex6_14.sce
|
//Example No.6.14.
//Page No.191.
//To find interplanar distance.
clc;clear;
// (h,k,l) are the miller indices of the given lattice plane (212).
h = 2;
k = 1;
l = 2;
a = 2.04;//Lattice constant -[A].
d = (a/sqrt(h^2+k^2+l^2));
printf("\nThe interplanar distance is %.2f A",d);
|
f07bb5bc9c8cdc1b28ebda4f1e638a968c28836a
|
27e7499ddd3bb1d3c73a575f3555bac816e2c2b1
|
/testovac/task_data/order/03.tst
|
78f733c6d83b0866f620e44b57bc2b68853c9972
|
[] |
no_license
|
mirelon/ksp-editor
|
eeccf1ca22e6808cf10d49d03a2bbef53ab5b305
|
c750d25154a6b8cb7e765ce17e9bc5ccfdc9bfd8
|
refs/heads/master
| 2019-01-02T08:32:00.363803
| 2014-09-23T14:02:06
| 2014-09-23T14:02:06
| 33,381,936
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 113
|
tst
|
03.tst
|
914615
(
317403
(
0
(
)
(
)
)
(
11560
(
)
(
)
)
)
(
30725
(
611534
(
)
(
)
)
(
960600
(
)
(
778767
(
)
(
)
)
)
)
|
cc5d807bf42c5906cd7cc1f5562dddbf6a197efe
|
6e51f2fdd036612dc2b51c405904fed97d2ae8b0
|
/src/test_server_1_a.tst
|
67b6291053884e08af7cdf0eb3b18f6989cee775
|
[
"MIT",
"Zlib",
"BSD-3-Clause",
"OML"
] |
permissive
|
joe-nano/ciyam
|
92c6ccb58029a1b2a641a7e00417ab524cb9f957
|
a92c296b911b29620a7bb3b758eb55339e040219
|
refs/heads/master
| 2022-04-16T14:39:55.822434
| 2020-03-27T06:39:13
| 2020-03-27T06:39:13
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 4,368
|
tst
|
test_server_1_a.tst
|
> version
0.1
> session_list -min
1* session_list <none> <unknown> 0:0 0:0 2
> encrypt -no_ssl -no_salt for_testing_password
Zm9yX3Rlc3RpbmdfcGFzc3dvcmQ=
>
>
>
> X
> X.
> .X
> X
> X.
> .X
> XY
> XY.
> .XY
> X.Y.
> XY
> .XY
> XY.
> X.Y.
> XYZ
> XYZ.
> .XYZ.
> X.Y.Z.
> XYZ
> XYZ.
> .XYZ.
> X.Y.Z.
> crypto_keys XBT test
1Hri98tpTekszQQTBnKbBrMsecrjik4PX8
02b0dbb9b8c580f2cc7b45aaf10d8353cea7880903e1f07ce996614260c55db4a1
0f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08
>
>
>
> addr is: 1Hri98tpTekszQQTBnKbBrMsecrjik4PX8
> pubkey is 02b0dbb9b8c580f2cc7b45aaf10d8353cea7880903e1f07ce996614260c55db4a1
> privkey is 0f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08
>
> abcdefghi
>
> abcdefgh
>
> abcdefg
>
> defghi
>
> abcdef
>
> def
>
> abc<def>ghi
>
> def
>
>
> ff00000000000000
>
> 00000000000000ff
>
> ff000000
>
> 000000ff
>
> 4080
>
> 4100
>
> 4000
>
> 1
>
> ifdef true
>
>
>
>
>
>
> ifndef false
>
>
>
>
>
> ifdef false
>
>
> ifndef true
>
>
>
>
> 1234567890
>
> 31323334353637383930
>
> 1234567890
>
> c775e7b757ede630cd0aa1113bd102661ab38829ca52a6422ab782862f268646
>
>
>
>
>
> @ifeq x y false
>
>
> @ifneq x y true
>
>
>
>
>
> @ifeq y y true
>
>
>
>
>
>
> @ifneq y y false
>
>
> xxyyzz
>
> xxyyxx
>
> ab/cd/ef
>
> ab:cd:ef
>
> ab/cd/ef
>
> (no history is available)
> a
> b
> c
> d
> e
> 1 #a
2 #b
3 #c
4 #d
5 #e
>
> 1 #b
2 #c
3 #d
4 #e
>
> 1 #b
2 #c
3 #d
> b
> d
> c
> b
c
> e
> c
d
> c
d
e
> f
> g
> 1 #b
2 #c
3 #d
4 #e
5 #f
6 #g
>
> 1 #b
2 #c
3 #d
> b
c
d
> e
> f
> g
> 1 #b
2 #c
3 #d
4 #e
5 #f
6 #g
>
> 1 #b
2 #f
3 #g
> h
> i
> j
> 1 #b
2 #f
3 #g
4 #h
5 #i
6 #j
>
> 1 #b
2 #f
>
>
>
>
>
>
> Looping with aaa
>
>
>
>
>
> Looping with bbb
>
>
>
>
> Looping with ccc
>
>
>
>
> Looping with ddd
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> NEXT
>
>
> XXX YYY
>
>
>
>
>
>
>
>
> CONT
>
>
>
> CONT
CONT
DONE
>
>
> NEXT
XX YYYY
CONT
CONT
CONT
CONT
DONE
NEXT
X YYYYY
CONT
CONT
CONT
CONT
CONT
DONE
END
>
>
> session_variable @set aaa
> session_variable @set aaa
aaa
> session_variable @set bbb
> session_variable @set bbb
bbb
> session_variable @set ccc
> session_variable @set ccc
ccc
> session_variable @set aaa
aaa
> session_variable @set bbb
bbb
> session_variable @set ccc
ccc
> session_variable @set
aaa
bbb
ccc
> session_variable @deque @set
> session_variable @deque
aaa
bbb
ccc
> session_variable @deque @set
> session_variable @deque
aaa
bbb
ccc
aaa
bbb
ccc
> session_variable @deque "push_back yyy"
> session_variable @deque "push_front xxx"
> session_variable @deque
xxx
aaa
bbb
ccc
aaa
bbb
ccc
yyy
> session_variable @deque pop_back
> session_variable @deque pop_front
> session_variable @deque
aaa
bbb
ccc
aaa
bbb
ccc
> session_variable @deque "push_front eee"
> session_variable @deque "push_front ddd"
> session_variable @deque
ddd
eee
aaa
bbb
ccc
aaa
bbb
ccc
> session_variable @set @deque
> session_variable @set
aaa
bbb
ccc
ddd
eee
>
> arg $0 is "test_args.cin"
arg $1 is "XXX"
arg $2 is ""
arg $3 is ""
> arg $0 is "test_args.cin"
arg $1 is "XXX"
arg $2 is "YYY"
arg $3 is ""
> arg $0 is "test_args.cin"
arg $1 is "XXX"
arg $2 is "YYY"
arg $3 is "ZZZ"
> arg $0 is "test_args.cin"
arg $1 is "XXX"
arg $2 is ""
arg $3 is "ZZZ"
> arg $0 is "test_args.cin"
arg $1 is ""
arg $2 is ""
arg $3 is "ZZZ"
>
> utc_to_local AEST "2013-10-05 15:00"
2013-10-06 01:00 AEST
> utc_to_local AEST+ "2013-10-05 15:00"
2013-10-06 01:00 AEST
> utc_from_local AEST "2013-10-06 01:00"
2013-10-05 15:00
> utc_to_local AEST "2013-10-06 16:00"
2013-10-07 02:00 AEST
> utc_to_local AEST+ "2013-10-06 16:00"
2013-10-07 03:00 AEDT
> utc_from_local AEST "2013-10-07 03:00"
2013-10-06 17:00
> utc_from_local AEDT "2013-10-07 03:00"
2013-10-06 16:00
> utc_to_local AEST "2014-04-05 15:00"
2014-04-06 01:00 AEST
> utc_to_local AEST+ "2014-04-05 15:00"
2014-04-06 02:00 AEDT
> utc_from_local AEST "2014-04-06 02:00"
2014-04-05 16:00
> utc_from_local AEDT "2014-04-06 02:00"
2014-04-05 15:00
> utc_to_local AEST "2014-04-05 16:00"
2014-04-06 02:00 AEST
> utc_to_local AEST+ "2014-04-05 16:00"
2014-04-06 02:00 AEST
> utc_from_local AEST "2014-04-06 02:00"
2014-04-05 16:00
>
|
430aedc8e82b938d8ea99928f6e1b33f43eae4a8
|
e6d5f1d801a3fe887b5dc04b8cc0a9eabc1fd432
|
/Proyecto1/dijsktra.sce
|
46e02d8f812175d56b750623dda033feda8b3f43
|
[] |
no_license
|
lordjuacs/MateIII
|
70def332063e56eb10fb47678a7e6130dc0dca63
|
164c53b61c9e35e565121f77ba2c578680a3ab56
|
refs/heads/master
| 2021-05-24T15:56:01.078904
| 2020-07-27T19:57:34
| 2020-07-27T19:57:34
| 253,643,962
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,496
|
sce
|
dijsktra.sce
|
function D = dijkstra(G, pairs)
//This function takes an adjacency matrix called G
//and a p-by-2 matrix called pairs.
//The pairs matrix will contain pairs of indices.
// This function will determine the shortest distance from
// the first index in the pair to the second index for
// every pair in matrix pairs.
//
// The function will only return a p-by-1 matrix of shortest
// distances. I could use it to also return the shortest path, // but I don't need that data, so only shortest distance is
// calculated.
p = size(pairs, 1); // Number of pairs
v = size(G, 1); // Number of vertices
D = [];
for i = 1:v
for j = 1:v
if G(i,j) <= esp
G(i,j) = inf
end
end
end
for i = 1:p
dist = inf(1, v);
seen = ones(1, v);
not_seen = v;
dist(1, pairs(i,1)) = 0;
while not_seen > 0
[distance index] = min(dist .* seen);
if distance == inf
break;
end
if index == pairs(i,2)
break;
end
seen(index) = inf;
not_seen = not_seen - 1;
for n = 1:v
if seen(n) == 1
alt = distance + G(index, n);
if alt < dist(n)
dist(n) = alt;
end
end
end
end
D = [D ; dist(pairs(i,2))];
end
end
|
623f353c5c0b0fcb2de1b616fd717f3c85f8e3b9
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1319/CH6/EX6.4/6_4.sce
|
8fd66ac87b49c7a64e69ec633d2f29cf70b3e51d
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 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
|
6_4.sce
|
//Ratio of speeds of a generator and motor
clc;
clear;
V=250;
Il=80;
Ra=0.12;
Rf=100;// Field Resistance
Ish=V/Rf;// Field Current
Ia1=Il+Ish;// Machine Current genrated
Ia2=Il-Ish;// Motor Current taken by the motor
E=V+(Ia1*Ra);// Generator Induced EMF
Eb=V-(Ia2*Ra);// Motor Operating EMF
//Speeds are directly proportional to the EMFs
Nr=E/Eb; // Ratio of speeds
printf('The ratio of Generator speed to motor speed = %g \n',Nr)
|
87c9cf832aa538f1eec564c9636f83da02d4947d
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/2.1/Unix/scilab-2.1/macros/percent/%polss.sci
|
b1be350d108f62c347c1b8cb856de1e4ec0b7f89
|
[
"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
| 148
|
sci
|
%polss.sci
|
//[r]=%polss(s1,s2)
//%polss(s1,s2) effectue le test d'egalite entre polynome et systemes d'etat
//correspond a l'operation s1==s2
//!
r=%f
//end
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.